Commit ca0b7c78 authored by zhuxl's avatar zhuxl

提交

parent 9d684267
Pipeline #939 failed with stages

Too many changes to show.

To preserve performance only 263 of 263+ files are displayed.

/public/
/dist/
/node_modules/
# /*.js
/src/assets/style/theme/
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true,
node: true,
es6: true,
},
extends: ['plugin:vue/recommended', /*'eslint:recommended'*/],
// add your custom rules here
//it is base on https://github.com/vuejs/eslint-config-vue
rules: {
'vue/no-use-v-if-with-v-for': [
'error',
{
allowUsingIterationVar: true
}
],
'vue/max-attributes-per-line': [
2,
{
singleline: 10,
multiline: {
max: 1,
allowFirstLine: false
}
}
],
'vue/name-property-casing': [
'error',
'PascalCase'
],
'accessor-pairs': 2,
'arrow-spacing': [
2,
{
before: true,
after: true
}
],
'block-spacing': [
2,
'always'
],
'brace-style': [
2,
'1tbs',
{
allowSingleLine: true
}
],
camelcase: [
0,
{
properties: 'always'
}
],
'comma-dangle': [
2,
'never'
],
'comma-spacing': [
2,
{
before: false,
after: true
}
],
'comma-style': [
2,
'last'
],
'constructor-super': 2,
curly: [
2,
'multi-line'
],
'dot-location': [
2,
'property'
],
'eol-last': 2,
eqeqeq: [
2,
'allow-null'
],
'generator-star-spacing': [
2,
{
before: true,
after: true
}
],
'handle-callback-err': [
2,
'^(err|error)$'
],
indent: [
2,
2,
{
SwitchCase: 1
}
],
'jsx-quotes': [
2,
'prefer-single'
],
'key-spacing': [
2,
{
beforeColon: false,
afterColon: true
}
],
'keyword-spacing': [
2,
{
before: true,
after: true
}
],
'new-cap': [
2,
{
newIsCap: true,
capIsNew: false
}
],
'new-parens': 2,
'no-array-constructor': 2,
'no-caller': 2,
'no-console': 'off',
'no-class-assign': 2,
'no-cond-assign': 2,
'no-const-assign': 2,
'no-control-regex': 0,
'no-delete-var': 2,
'no-dupe-args': 2,
'no-dupe-class-members': 2,
'no-dupe-keys': 2,
'no-duplicate-case': 2,
'no-empty-character-class': 2,
'no-empty-pattern': 2,
'no-eval': 2,
'no-ex-assign': 2,
'no-extend-native': 2,
'no-extra-bind': 2,
'no-extra-boolean-cast': 2,
'no-extra-parens': [
2,
'functions'
],
'no-fallthrough': 2,
'no-floating-decimal': 2,
'no-func-assign': 2,
'no-implied-eval': 2,
'no-inner-declarations': [
2,
'functions'
],
'no-invalid-regexp': 2,
'no-irregular-whitespace': 2,
'no-iterator': 2,
'no-label-var': 2,
'no-labels': [
2,
{
allowLoop: false,
allowSwitch: false
}
],
'no-lone-blocks': 2,
'no-mixed-spaces-and-tabs': 2,
'no-multi-spaces': 2,
'no-multi-str': 2,
'no-multiple-empty-lines': [
2,
{
max: 1
}
],
'no-native-reassign': 2,
'no-negated-in-lhs': 2,
'no-new-object': 2,
'no-new-require': 2,
'no-new-symbol': 2,
'no-new-wrappers': 2,
'no-obj-calls': 2,
'no-octal': 2,
'no-octal-escape': 2,
'no-path-concat': 2,
'no-proto': 2,
'no-redeclare': 2,
'no-regex-spaces': 2,
'no-return-assign': [
2,
'except-parens'
],
'no-self-assign': 2,
'no-self-compare': 2,
'no-sequences': 2,
'no-shadow-restricted-names': 2,
'no-spaced-func': 2,
'no-sparse-arrays': 2,
'no-this-before-super': 2,
'no-throw-literal': 2,
'no-trailing-spaces': 2,
'no-undef': 2,
'no-undef-init': 2,
'no-unexpected-multiline': 2,
'no-unmodified-loop-condition': 2,
'no-unneeded-ternary': [
2,
{
defaultAssignment: false
}
],
'no-unreachable': 2,
'no-unsafe-finally': 2,
'no-unused-vars': [
2,
{
vars: 'all',
args: 'none'
}
],
'no-useless-call': 2,
'no-useless-computed-key': 2,
'no-useless-constructor': 2,
'no-useless-escape': 0,
'no-whitespace-before-property': 2,
'no-with': 2,
'one-var': [
2,
{
initialized: 'never'
}
],
'operator-linebreak': [
2,
'after',
{
overrides: {
'?': 'before',
':': 'before'
}
}
],
'padded-blocks': [
2,
'never'
],
quotes: [
2,
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
semi: [
2,
'never'
],
'semi-spacing': [
2,
{
before: false,
after: true
}
],
'space-before-blocks': [
2,
'always'
],
'space-before-function-paren': [
2,
'never'
],
'space-in-parens': [
2,
'never'
],
'space-infix-ops': 2,
'space-unary-ops': [
2,
{
words: true,
nonwords: false
}
],
'spaced-comment': [
2,
'always',
{
markers: [
'global',
'globals',
'eslint',
'eslint-disable',
'*package',
'!',
','
]
}
],
'template-curly-spacing': [
2,
'never'
],
'use-isnan': 2,
'valid-typeof': 2,
'wrap-iife': [
2,
'any'
],
'yield-star-spacing': [
2,
'both'
],
yoda: [
2,
'never'
],
'prefer-const': 2,
// 'no-debugger': 'error',
// 'no-console': ["error", { allow: ["warn"] }],
'object-curly-spacing': [
2,
'always',
{
objectsInObjects: false
}
],
'array-bracket-spacing': [
2,
'never'
],
'vue/no-v-html': 'off',
'vue/no-unused-vars': 'off',
'vue/require-prop-type-constructor': 'off',
'vue/no-unused-components': 'off',
},
'extends': [
'plugin:vue/recommended'
]
}
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset',
[
'@babel/preset-env',
{
useBuiltIns: 'entry'
}
]
]
}
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "hello-world",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --build_path",
"analyzer": "npm run build --report",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@tinymce/tinymce-vue": "^3.2.3",
"@types/axios": "^0.14.0",
"@types/js-base64": "^3.0.0",
"@types/js-cookie": "^2.2.6",
"@types/moment": "^2.13.0",
"@types/nprogress": "^0.2.0",
"@types/vue-i18n": "^7.0.0",
"@types/vue-router": "^2.0.0",
"@types/webpack-bundle-analyzer": "^3.8.0",
"apexcharts": "^3.20.2",
"axios": "^0.20.0",
"babel-polyfill": "^6.26.0",
"core-js": "^3.6.5",
"echarts": "^5.0.2",
"element-china-area-data": "^5.0.1",
"element-ui": "2.13.2",
"image-webpack-loader": "^7.0.1",
"js-base64": "^3.5.2",
"js-cookie": "^2.2.1",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"moment": "^2.28.0",
"nprogress": "^0.2.0",
"tinymce": "^5.4.2",
"vue": "^2.6.11",
"vue-apexcharts": "^1.6.0",
"vue-i18n": "^8.21.1",
"vue-router": "^3.4.3",
"vuex": "^3.5.1",
"webpack-bundle-analyzer": "^3.9.0"
},
"devDependencies": {
"@types/compression-webpack-plugin": "^4.0.1",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"compression-webpack-plugin": "1.1.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"style-resources-loader": "^1.4.1",
"vue-cli-plugin-style-resources-loader": "^0.1.5",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"IE 11",
"IE 10",
"IE 9"
]
}
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8">
<!-- 解决浏览器缓存问题-start -->
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
<!-- 解决浏览器缓存问题-end -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" />
<!-- 360极速浏览器设置默认用极速模式,详情请见 https://bbs.360.cn/thread-14983457-1-1.html -->
<meta name=renderer content=webkit>
<!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title> -->
<!-- <link rel="stylesheet" href=//at.alicdn.com/t/font_784493_p4hv842indq.css> -->
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<!-- 引入 ECharts 文件 -->
<script src="<%= BASE_URL %>cdn/echarts/echarts.min.js"></script>
</body>
</html>
{"type":"FeatureCollection","features":[{"id":"710000","geometry":{"type":"MultiPolygon","coordinates":[["@@°Ü¯Û","@@ƛĴÕƊÉɼģºðʀ\\ƎsÆNŌÔĚäœnÜƤɊĂǀĆĴžĤNJŨxĚĮǂƺòƌ‚–âÔ®ĮXŦţƸZûЋƕƑGđ¨ĭMó·ęcëƝɉlÝƯֹÅŃ^Ó·śŃNjƏďíåɛGɉ™¿IċããF¥ĘWǬÏĶñÄ","@@\\p|WoYG¿¥I†j@ž","@@…¡‰@ˆV^RqˆBbAŒnTXe„†žQr™©C","@@ÆEE—„kWqë Iœ"]],"encodeOffsets":[[[122886,24033],[123335,22980],[122375,24193],[122518,24117],[124427,22618]]]},"properties":{"cp":[121.509062,25.044332],"name":"台湾","childNum":5}},{"id":"130000","geometry":{"type":"MultiPolygon","coordinates":[["@@\\a“M`ǽÓnUK…Ĝēs¤­©yrý§uģŒc†JŠ»eIˆ€P]‚ªr‰ºc_ħ²G¼s`jΟnüsœľP","@@U`Ts¿mĂ","@@FŸƒ•›Oh‡đ©OŸ›iÃ`ww^ƒÌkŸ‘ÑH«ƇǤŗĺtFu…{Z}Ö@U‡´…ʚLg®¯Oı°ÃwŸ ^˜—€VbÉs‡ˆmA…ê]]w„§›RRl£‡ŭuw›N—Á`ÇFēÝčȻŽuT¡Ĺ—¯Õ¯sŗő£YªhV’ƍ£ƅnëYNgƒq¼ś¿µı²UºÝUąŽąŖóŒxV@tˆƯŒJ”]eƒR¾fe|rHA˜|h~Ėƍl§ÏŠjVë` ØoˆÅbbx³^zÃ͚¶Sj®A”yÂhðk`š«P€”ˈµEF†Û¬Y¨Ļrõqi¼‰Wi°§’б²°`[ˆÀ|ĠO@ÆxO\\tŽa\\p_Zõ^û{ġŒȧXýĪÓjùÎRb›š^λj{íděYfíÙTyމmńŵōHim½’éŅ­aVcř§ax¹XŻác‡žWU£ôãºQ¨÷Ñws¥qEH‰Ù|‰›šYQoŕÇyáĂ£MðoťÊ‰P¡mšWO¡€v†{ôvîēÜISpÌhp¨ ‘j†deŔQÖj˜X³à™Ĉ[n`Yp@Už–cM`’RKhŒEbœ”pŞlNut®Etq‚nsÁŠgA‹iú‹oH‡qCX‡”hfgu“~ϋWP½¢G^}¯ÅīGCŸÑ^ãziMáļMTÃƘrMc|O_ž¯Ŏ´|‡morDkO\\mĆJfl@c̬¢aĦtRıҙXòë¬WP{ŵǫƝ…›īÛ÷ąV×qƥV¿aȉd³B›qPBm›aËđŻģm“Å®Vйd^K‡KoŸnYg“¯Xhqa”Ldu¥•ÍpDž¡KąÅƒkĝęěhq‡}HyÓ]¹ǧ£…Í÷¿qá•gPmoeœi‰¤o^á¾ZE‡˜Y^…Ný{n•ƒOl±Í“@M’ċèk§da‹‘NaÇį¿]ø‰RiiñE‰€ū‹i„DZàUtėGylƒ}ŒÓM}€jpEC~¡FtoQi‘šHkk{ILgĽxqÈƋÄd–eVŽDJj£€J|Ådz•Ft~žKŨ¸IÆv|”‡¢r}膎onb˜}`RÎÄn°ÒdÞ²„^®’lnÐèĄlðӜ×]ªÆ}LiĂ±Ö`^°Ç¶p®đDcœŋ`–ZÔ’¶êqvFƚ†N®ĆTH®¦O’¾ŠIbÐã´BĐɢŴÆíȦp–ĐÞXR€·nndOž¤’OÀĈƒ­Qg˜µFo|gȒęSWb©osx|hYh•gŃfmÖĩnº€T̒Sp›¢dYĤ¶UĈjl’ǐpäðëx³kÛfw²Xjz~ÂqbTŠÑ„ěŨ@|oM‡’zv¢ZrÃVw¬ŧˏfŒ°ÐT€ªqŽs{Sž¯r æÝl¼ÖĞ džiGʂJ™¼lr}~K¨ŸƐÌWö€™¼œÞ°nÞoĦLš†|C~“D©|q]SvK€ÑcwpÏρ†ĿćènĪWlĄkT}¬Tpš~ƒ®Hgd„‰†˒劔ŽBVt„EÀ¢ôPĎƗè@~‚k–ü\\rÊĔÖæW_§¼F˜†´©òDòj’ˆYÈrbĞāøŀG{ƀ|¦ðrb|ÀH`pʞkv‚GpuARhÞÆǶgƊTǼƹS£¨¡ù³ŘÍ]¿Ây™ôEP xX¶¹܇O¡“gÚ¡IwÃ鑦ÅB‡Ï|ǰ…N«úmH¯‹âŸbę†U~xĈbȒ{^xÖlDž•¸dɂ‡„~"]],"encodeOffsets":[[[120023,41045],[121616,39981],[122102,42307]]]},"properties":{"cp":[114.502461,38.045474],"name":"河北","childNum":3}},{"id":"140000","geometry":{"type":"Polygon","coordinates":["@@žħÜ_ªlìwGkÛÃǏok‘ćiµVZģ¡coœ‘TS˹ĪmnÕńe–hZg{gtwªpXaĚThȑp{¶Eh—®RćƑP¿£‘PmcªaJyý{ƒýȥoÅîɡųAďä³aωJ‘½¥PG­ąSM­sWz½µÛ€‘YӀŖgxoOkĒCo­Èµ]¯_²ÕjāŽK~©ÅØ^ԛkïçămϑk]­±ƒcݯÑÃmQÍ~_a—pm…~ç¡q“ˆu{JÅŧ·Ls}–EyÁÆcI{¤IiCfUc•ƌÃp§]웫vD@¡SÀ‘µM‚ÅwuŽYY‡¡DbÑc¡hƒ×]nkoQdaMç~eD•ÛtT‰©±@¥ù@É¡‰ZcW|WqOJmĩl«ħşvOÓ«IqăV—¥ŸD[mI~Ó¢cehiÍ]Ɠ~ĥqXŠ·eƷœn±“}v•[ěďŽŕ]_‘œ•`‰¹ƒ§ÕōI™o©b­s^}Ét±ū«³p£ÿ¥WÑxçÁ«h×u׌¥ř„‹¾dÒ{ºvĴÎêÌɊ²¶€ü¨|ÞƸµȲ‘LLúÉƎ¤ϊęĔV`„_bª‹S^|ŸdŠzY|dz¥p†ZbÆ£¶ÒK}tĦÔņƠ‚PYzn€ÍvX¶Ěn ĠÔ„zý¦ª˜÷žÑĸَUȌ¸‚dòÜJð´’ìúNM¬ŒXZ´‘¤ŊǸ_tldIš{¦ƀðĠȤ¥NehXnYG‚‡R° ƬDj¬¸|CĞ„Kq‚ºfƐiĺ©ª~ĆOQª ¤@ìǦɌ²æBŒÊ”TœĞšHƘÁĪËĖ’šĴŞ–ȀœÆÿȄlŤĒö„t”νî¼ĨXhŒ‘˜|ªM¤ÐzÞĩ҃S‰rao³"],"encodeOffsets":[[117016,41452]]},"properties":{"cp":[112.549248,37.857014],"name":"山西","childNum":1}},{"id":"150000","geometry":{"type":"MultiPolygon","coordinates":[["@@ǪƫÌÛM…Ă[`՞Cn}¶Vc…ê“sƒ–¯‹PqƒFB…‰|S•³C|kñ•H‹d‘iÄ¥sˆʼnő…PóÑÑE^‘ÅPpy_YtS™hQ·aHwsOnʼnÚs©iqj›‰€USiº]ïWš‰«gW¡A–R붛ijʕ…Œů`çõh]y»ǃŸǛҤxÒm~zf}pf|ÜroÈzrKÈĵSƧ„ż؜Ġu~è¬vîS¼™Ăh–šĖMÈÄw‚\\fŦ°W ¢¾luŸD„wŠ\\Ŗĝ","@@ƒGVu»A—ylßí¹ãe’“]Eāò³C¹ð“¾ˆ²iŒÒAdkò^P“²CǜңDŽ z¼g^èöŰ_‹‚–†IJĕꄜ}gÁnUI«m‰…„‹]j‡vV¼euhwqA„aW˜ƒ_µj…»çjioQR¹ēÃßt@r³[ÛlćË^ÍÉáG“›OUۗOB±•XŸkŇ¹£k|e]ol™ŸkVͼÕqtaÏõjgÁ£§U^Œ”RLˆËnX°Ç’Bz†^~wfvˆypV ¯„ƫĉ˭ȫƗŷɿÿĿƑ˃ĝÿÃǃßËőó©ǐȍŒĖM×ÍEyx‹þp]Évïè‘vƀnÂĴÖ@‚‰†V~Ĉ™Š³MEˆĸÅĖt—ējyÄDXÄxGQuv_›i¦aBçw‘˛wD™©{ŸtāmQ€{EJ§KPśƘƿ¥@‰sCT•É}ɃwˆƇy±ŸgÑ“}T[÷kÐ禫…SÒ¥¸ëBX½‰HáŵÀğtSÝÂa[ƣ°¯¦P]£ġ“–“Òk®G²„èQ°óMq}EŠóƐÇ\\ƒ‡@áügQ͋u¥Fƒ“T՛¿Jû‡]|mvāÎYua^WoÀa·­ząÒot×¶CLƗi¯¤mƎHNJ¤îìɾŊìTdåwsRÖgĒųúÍġäÕ}Q¶—ˆ¿A•†‹[¡Œ{d×uQAƒ›M•xV‹vMOmăl«ct[wº_šÇʊŽŸjb£ĦS_é“QZ“_lwgOiýe`YYJq¥IÁˆdz£ÙË[ÕªuƏ³ÍT—s·bÁĽäė[›b[ˆŗfãcn¥îC¿÷µ[ŏÀQ­ōšĉm¿Á^£mJVm‡—L[{Ï_£›F¥Ö{ŹA}…×Wu©ÅaųijƳhB{·TQqÙIķˑZđ©Yc|M¡…L•eVUóK_QWk’_ĥ‘¿ãZ•»X\\ĴuUƒè‡lG®ěłTĠğDє›žG‚ÆÍz]‹±…ŭ©ŸÅ’]ŒÅÐ}UË¥©Tċ™ïxgckfWgi\\ÏĒ¥HkµE˜ë{»ÏetcG±ahUiñiWsɁˆ·c–C‚Õk]wȑ|ća}w…VaĚ᠞ŒG°ùnM¬¯†{ÈˆÐÆA’¥ÄêJxÙ¢”hP¢Ûˆº€µwWOŸóFŽšÁz^ÀŗÎú´§¢T¤ǻƺSė‰ǵhÝÅQgvBHouʝl_o¿Ga{ïq{¥|ſĿHĂ÷aĝÇq‡Z‘ñiñC³ª—…»E`¨åXēÕqÉû[l•}ç@čƘóO¿¡ƒFUsA‰“ʽīccšocƒ‚ƒÇS}„“£‡IS~ălkĩXçmĈ…ŀЂoÐdxÒuL^T{r@¢‘žÍƒĝKén£kQ™‰yšÅõËXŷƏL§~}kqš»IHėDžjĝŸ»ÑÞoŸå°qTt|r©ÏS‹¯·eŨĕx«È[eMˆ¿yuˆ‘pN~¹ÏyN£{©’—g‹ħWí»Í¾s“əšDž_ÃĀɗ±ą™ijĉʍŌŷ—S›É“A‹±åǥɋ@럣R©ąP©}ĹªƏj¹erƒLDĝ·{i«ƫC½ÉshVz…GS|úþX”gp›{ÁX¿Ÿć{ƱȏñZáĔyoÁhA™}ŅĆfdʼn„_¹„Y°ėǩÑ¡H¯¶oMQqð¡Ë™|‘Ñ`ƭŁX½·óۓxğįÅcQ‡ˆ“ƒs«tȋDžF“Ÿù^i‘t«Č¯[›hAi©á¥ÇĚ×l|¹y¯Kȝqgů{ñǙµï‚ċ™Ĺz—Śȭ¶¡˜›oŽäÕG\\ďT¿Òõr¯œŸLguÏYęRƩšɷŌO\\İТæ^Ŋ IJȶȆbÜGŽĝ¬¿ĚVĎgª^íu½jÿĕęjık@Ľƒ]ėl¥Ë‡ĭûÁ„ƒėéV©±ćn©­ȇžÍq¯½•YÃÔʼn“ÉNѝÅÝy¹NqáʅDǡËñ­ƁYÅy̱os§ȋµʽǘǏƬɱà‘ưN¢ƔÊuľýľώȪƺɂļžxœZĈ}ÌʼnŪ˜ĺœŽĭFЛĽ̅ȣͽÒŵìƩÇϋÿȮǡŏçƑůĕ~Ǎ›¼ȳÐUf†dIxÿ\\G ˆzâɏÙOº·pqy£†@ŒŠqþ@Ǟ˽IBäƣzsÂZ†ÁàĻdñ°ŕzéØűzșCìDȐĴĺf®ŽÀľưø@ɜÖÞKĊŇƄ§‚͑těï͡VAġÑÑ»d³öǍÝXĉĕÖ{þĉu¸ËʅğU̎éhɹƆ̗̮ȘNJ֥ड़ࡰţાíϲäʮW¬®ҌeרūȠkɬɻ̼ãüfƠSצɩςåȈHϚÎKdzͲOðÏȆƘ¼CϚǚ࢚˼ФԂ¤ƌžĞ̪Qʤ´¼mȠJˀŸƲÀɠmɆŠDŽĜƠ´ǠN~€ʢĜ‚¶ƌĆĘźʆȬ˪ĚǏĞGȖƴƀj`ĢçĶāàŃºē̃ĖćšYŒÀŎüôQÐÂŎŞdžŞêƖš˜oˆDĤÕºÑǘÛˤ³̀gńƘĔÀ^žªƂ`ªt¾äƚêĦĀ¼Ð€Ĕǎ¨Ȕ»͠^ˮÊȦƤøxRrŜH¤¸ÂxDĝŒ|ø˂˜ƮÐ¬ɚwɲFjĔ²Äw°dždÀɞ_ĸdîàŎjʜêTĞªŌ‡ŜWÈ|tqĢUB~´°ÎFC•ŽU¼pĀēƄN¦¾O¶ŠłKĊOj“Ě”j´ĜYp˜{¦„ˆSĚÍ\\Tš×ªV–÷Ší¨ÅDK°ßtŇĔKš¨ǵÂcḷ̌ĚǣȄĽF‡lġUĵœŇ‹ȣFʉɁƒMğįʏƶɷØŭOǽ«ƽū¹Ʊő̝Ȩ§ȞʘĖiɜɶʦ}¨֪ࠜ̀ƇǬ¹ǨE˦ĥªÔêFŽxúQ„Er´W„rh¤Ɛ \\talĈDJ˜Ü|[Pll̚¸ƎGú´Pž¬W¦†^¦–H]prR“n|or¾wLVnÇIujkmon£cX^Bh`¥V”„¦U¤¸}€xRj–[^xN[~ªŠxQ„‚[`ªHÆÂExx^wšN¶Ê˜|¨ì†˜€MrœdYp‚oRzNy˜ÀDs~€bcfÌ`L–¾n‹|¾T‚°c¨È¢a‚r¤–`[|òDŞĔöxElÖdH„ÀI`„Ď\\Àì~ƎR¼tf•¦^¢ķ¶e”ÐÚMŒptgj–„ɡČÅyġLû™ŇV®ŠÄÈƀ†Ď°P|ªVV†ªj–¬ĚÒêp¬–E|ŬÂ_~¼rƐK fˆ{ĘFǜƌXưăkÃĄ}nµ–oŸ×q£ç­kX‘{uĩ«āíÓUŅÝVUŌ]€Ť¥lyň[€oi{¦‹L‡ĸ…Ħ^ôâJˆ¨^UZðڔĒL„¿Ì‹ˆfŒ£K£ʺ™oqNŸƒwğc`ue—tOj×°KJ±qƒÆġm‰Ěŗos¬…qehqsuœƒH{¸kH¡Š…ÊRǪÇƌbȆ¢´ä܍¢NìÉʖ¦â©Ɨؗ"]],"encodeOffsets":[[[128500,52752],[127089,51784]]]},"properties":{"cp":[111.670801,40.818311],"name":"内蒙古","childNum":2}},{"id":"210000","geometry":{"type":"MultiPolygon","coordinates":[["@@L–Ž@@s‘]","@@MnNm","@@d†c","@@eÀ‚C@b‚“‰","@@f‡…Xwkbr–Ä`qg","@@^jtWQ","@@~ Y[c","@@I`ĖN^_¿Z‚ÁM","@@Ïxnj{q_×^Gigp","@@iX¶B…Y","@@„Y…Z","@@L_yG`b","@@^WqCTZ","@@\\[“‹§t|”ž]","@@m`p[","@@@œé^B†‡ntˆaÊU—˜Ÿ]x ¯ÄPIJ­°h€ʙK³†VˆÕ@Y~†|EvĹsDŽ¦­L^p²ŸÒG ’Ël]„xxÄ_˜fT¤Ď¤cŽœP„–C¨¸TVjbgH²sdÎdHt`Bˆ—²¬GJję¶[ÐhjeXdlwhšðSȦªVÊπ‹Æ‘Z˜ÆŶ®²†^ŒÎyÅ‚Hœń“ĚDMħĜŁH­ˆk„çvV[ij¼W–‚YÀäĦ’‘`XlžR`žôLUVžfK–¢†{NZdĒª’YĸÌÚJRr¸SA|ƴgŴĴÆbvªØX~†źBŽ|¦ÕœEž¤Ð`\\|Kˆ˜UnnI]¤ÀÂĊnŎ™R®Ő¿¶\\ÀøíDm¦ÎbŨab‰œaĘ\\ľã‚¸a˜tÎSƐ´©v\\ÖÚÌǴ¤Â‡¨JKr€Z_Z€fjþhPkx€`Y”’RIŒjJcVf~sCN¤ ˆE‚œhæm‰–sHy¨SðÑÌ\\\\ŸĐRÊwS¥fqŒßýáЍÙÉÖ[^¯ǤŲ„ê´\\¦¬ĆPM¯£Ÿˆ»uïpùzEx€žanµyoluqe¦W^£ÊL}ñrkqWňûP™‰UP¡ôJŠoo·ŒU}£Œ„[·¨@XŒĸŸ“‹‹DXm­Ûݏº‡›GU‹CÁª½{íĂ^cj‡k“¶Ã[q¤“LÉö³cux«|Zdƒ²BWÇ®Yß½ve±ÃC•ý£W{Ú^’q^sÑ·¨‹ËMƒr“¹·C¥‡GD›rí@wÕKţ݋˜Ÿ«V·i}xËÍ÷‘i©ĝ‡ɝǡ]ƒˆ{c™±OW‹³Ya±Ÿ‰_穂Hžĕoƫ€Ňqƒr³‰Lys[„ñ³¯OS–ďOMisZ†±ÅFC¥Pq{‚Ã[Pg}\\—¿ghćO…•k^ĩÁXaĕËĥM­oEqqZûěʼn³F‘¦oĵ—hŸÕP{¯~TÍlª‰N‰ßY“Ð{Ps{ÃVU™™eĎwk±ʼnVÓ½ŽJãÇÇ»Jm°dhcÀff‘dF~ˆ€ĀeĖ€d`sx² šƒ®EĦ¦–šdQ‹Âd^~ăÔHˆ¦\\›LKpĄVez¤NP ǹӗR™ÆąJSh­a[¦´Âghwm€BÐ¨źhI|žVVŽ—Ž|p] Â¼èNä¶ÜBÖ¼“L`‚¼bØæŒKV”ŸpoœúNZÞÒKxpw|ÊEMnzEQšŽIZ”ŽZ‡NBˆčÚFÜçmĩ‚WĪñt‘ÞĵÇñZ«uD‚±|ƏlǗw·±PmÍa‰–da‡ CL‡Ǒkùó¡³Ï«QaċϑOÃ¥ÕđQȥċƭy‹³ÁA"]],"encodeOffsets":[[[123686,41445],[126019,40435],[124393,40128],[126117,39963],[125322,40140],[126686,40700],[126041,40374],[125584,40168],[125509,40217],[125453,40165],[125362,40214],[125280,40291],[125774,39997],[125976,40496],[125822,39993],[122731,40949]]]},"properties":{"cp":[123.429096,41.796767],"name":"辽宁","childNum":16}},{"id":"220000","geometry":{"type":"Polygon","coordinates":["@@ñr½ÉKāGÁ¤ia É‰™È¹`\\xs€¬dĆkNnuNUŒ–wœNx¶c¸‹|\\¢…ŒGªóĄ~RãÖÎĢù‚đŴÕhQŽxtcæëSɽʼníëlj£ƍG£nj°KƘµDsØÑpyƸ®¿bXp‚]vbÍZuĂ{nˆ^IüœÀSք”¦EŒvRÎûh@℈[‚Əȉô~FNr¯ôçR±ƒ­HÑl•’Ģ–^¤¢‚OðŸŽætxsŒ]ÞÁTĠs¶¿âƊGW¾ìA¦·TѬ†è¥€ÏÐJ¨¼ÒÖ¼ƒƦɄxÊ~S–tD@ŠĂ¼Ŵ¡jlºWžvЉˆzƦZЎ²CH— „Axiukd‹ŒGgetqmcžÛ£Ozy¥cE}|…¾cZ…k‚‰¿uŐã[oxGikfeäT@…šSUwpiÚFM©’£è^ڟ‚`@v¶eň†f h˜eP¶žt“äOlÔUgƒÞzŸU`lœ}ÔÆUvØ_Ō¬Öi^ĉi§²ÃŠB~¡Ĉ™ÚEgc|DC_Ȧm²rBx¼MÔ¦ŮdĨÃâYx‘ƘDVÇĺĿg¿cwÅ\\¹˜¥Yĭlœ¤žOv†šLjM_a W`zļMž·\\swqÝSA‡š—q‰Śij¯Š‘°kŠRē°wx^Đkǂғ„œž“œŽ„‹\\]˜nrĂ}²ĊŲÒøãh·M{yMzysěnĒġV·°“G³¼XÀ““™¤¹i´o¤ŃšŸÈ`̃DzÄUĞd\\i֚ŒˆmÈBĤÜɲDEh LG¾ƀľ{WaŒYÍȏĢĘÔRîĐj‹}Ǟ“ccj‡oUb½š{“h§Ǿ{K‹ƖµÎ÷žGĄØŜçưÌs«l›•yiē«‹`姝H¥Ae^§„GK}iã\\c]v©ģZ“mÃ|“[M}ģTɟĵ‘Â`À–çm‰‘FK¥ÚíÁbXš³ÌQґHof{‰]e€pt·GŋĜYünĎųVY^’˜ydõkÅZW„«WUa~U·Sb•wGçǑ‚“iW^q‹F‚“›uNĝ—·Ew„‹UtW·Ýďæ©PuqEzwAV•—XR‰ãQ`­©GŠY…Yhc•UGorBd}ģɇb¡·µMicF«—YƅŒ»…é\\ƒɹ~ǙG³mØ©BšuT§Ĥ½¢Ã_ý‘L¡‘ûŸsT\\rke™\\PnwAK‚y}’ywdS™efµ]UhĿD@mÿvašÙNSkCun…cÿ`l‚‰W‹„ėVâ¦÷~^fÏ~œvwHCŽį„`xqT­­ƒlW«ï¸skm‹‹ßEG“qd¯•‹R…©Ýޝ¯S†\\cZ¹iűƏCuƍÓX‡oR}“M^o•£…R}oªU­F…uuXHlEŕ‡€Ï©¤ßgXˆþ¤D–²ÄufàÀ­XXȱAc„{Yw¬dvõ´KÊ£”\\rµÄl”iˆdā]|DÂVŒœH¹ˆÞ®ÜWnŒC”Œķ W‹§@\\¸‹ƒ~¤‹Vp¸‰póIO¢ŠVOšŇürXql~òÉK]¤¥Xrfkvzpm¶bwyFoúvð‡¼¤ N°ąO¥«³[ƒéǣű]°Õ\\ÚÊĝŽôîŇÔaâŸBYlďQ[ Ë[ïÒ¥RI|‘`jž]P"],"encodeOffsets":[[126831,44503]]},"properties":{"cp":[125.3245,43.886841],"name":"吉林","childNum":1}},{"id":"230000","geometry":{"type":"MultiPolygon","coordinates":[["@@UƒµNÿ¥īè灋•HÍøƕ¶LŒǽ|g¨|”™Ža¾pViˆdd”~ÈiŒíďÓQġėǐZ΋ŽXb½|ſÃH½ŸKFgɱCģÛÇA‡n™‹jÕc[VĝDZÃ˄Ç_™ £ń³pŽj£º”š¿”»WH´¯”U¸đĢmžtĜyzzNN|g¸÷äűѱĉā~mq^—Œ[ƒ”››”ƒǁÑďlw]¯xQĔ‰¯l‰’€°řĴrŠ™˜BˆÞTxr[tޏĻN_yŸX`biN™Ku…P›£k‚ZĮ—¦[ºxÆÀdhŽĹŀUÈƗCw’áZħÄŭcÓ¥»NAw±qȥnD`{ChdÙFćš}¢‰A±Äj¨]ĊÕjŋ«×`VuÓś~_kŷVÝyh„“VkÄãPs”Oµ—fŸge‚Ň…µf@u_Ù ÙcŸªNªÙEojVx™T@†ãSefjlwH\\pŏäÀvŠŽlY†½d{†F~¦dyz¤PÜndsrhf‹HcŒvlwjFœ£G˜±DύƥY‡yϊu¹XikĿ¦ÏqƗǀOŜ¨LI|FRĂn sª|Cš˜zxAè¥bœfudTrFWÁ¹Am|˜ĔĕsķÆF‡´Nš‰}ć…UŠÕ@Áijſmužç’uð^ÊýowŒFzØÎĕNőžǏȎôªÌŒDŽàĀÄ˄ĞŀƒʀĀƘŸˮȬƬĊ°ƒUŸzou‡xe]}Ž…AyȑW¯ÌmK‡“Q]‹Īºif¸ÄX|sZt|½ÚUΠlkš^p{f¤lˆºlÆW –€A²˜PVܜPH”Êâ]ÎĈÌÜk´\\@qàsĔÄQºpRij¼èi†`¶—„bXƒrBgxfv»ŽuUiˆŒ^v~”J¬mVp´£Œ´VWrnP½ì¢BX‚¬h™ŠðX¹^TjVœŠriªj™tŊÄm€tPGx¸bgRšŽsT`ZozÆO]’ÒFô҆Oƒ‡ŊŒvŞ”p’cGŒêŠsx´DR–Œ{A†„EOr°Œ•žx|íœbˆ³Wm~DVjºéNN†Ëܲɶ­GƒxŷCStŸ}]ûō•SmtuÇÃĕN•™āg»šíT«u}ç½BĵÞʣ¥ëÊ¡Mێ³ãȅ¡ƋaǩÈÉQ‰†G¢·lG|›„tvgrrf«†ptęŘnŠÅĢr„I²¯LiØsPf˜_vĠd„xM prʹšL¤‹¤‡eˌƒÀđK“žïÙVY§]I‡óáĥ]ķ†Kˆ¥Œj|pŇ\\kzţ¦šnņäÔVĂîά|vW’®l¤èØr‚˜•xm¶ă~lÄƯĄ̈́öȄEÔ¤ØQĄ–Ą»ƢjȦOǺ¨ìSŖÆƬy”Qœv`–cwƒZSÌ®ü±DŽ]ŀç¬B¬©ńzƺŷɄeeOĨS’Œfm Ċ‚ƀP̎ēz©Ċ‚ÄÕÊmgŸÇsJ¥ƔˆŊśæ’΁Ñqv¿íUOµª‰ÂnĦÁ_½ä@ê텣P}Ġ[@gġ}g“ɊדûÏWXá¢užƻÌsNͽƎÁ§č՛AēeL³àydl›¦ĘVçŁpśdžĽĺſʃQíÜçÛġԏsĕ¬—Ǹ¯YßċġHµ ¡eå`ļƒrĉŘóƢFì“ĎWøxÊk†”ƈdƬv|–I|·©NqńRŀƒ¤é”eŊœŀ›ˆàŀU²ŕƀB‚Q£Ď}L¹Îk@©ĈuǰųǨ”Ú§ƈnTËÇéƟÊcfčŤ^Xm‡—HĊĕË«W·ċëx³ǔķÐċJā‚wİ_ĸ˜Ȁ^ôWr­°oú¬Ħ…ŨK~”ȰCĐ´Ƕ£’fNÎèâw¢XnŮeÂÆĶŽ¾¾xäLĴĘlļO¤ÒĨA¢Êɚ¨®‚ØCÔ ŬGƠ”ƦYĜ‡ĘÜƬDJ—g_ͥœ@čŅĻA“¶¯@wÎqC½Ĉ»NŸăëK™ďÍQ“Ùƫ[«Ãí•gßÔÇOÝáW‘ñuZ“¯ĥ€Ÿŕā¡ÑķJu¤E Ÿå¯°WKɱ_d_}}vyŸõu¬ï¹ÓU±½@gÏ¿rýD‰†g…Cd‰µ—°MFYxw¿CG£‹Rƛ½Õ{]L§{qqąš¿BÇƻğëšܭNJË|c²}Fµ}›ÙRsÓpg±ŠQNqǫŋRwŕnéÑÉKŸ†«SeYR…ŋ‹@{¤SJ}šD Ûǖ֍Ÿ]gr¡µŷjqWÛham³~S«“„›Ü[","@@ƨƒĶTLÇyqpÇÛqe{~oyen}s‰`q‡iXG”ù]Ëp½“©lɇÁp]Þñ´FÔ^f‘äîºkà˜z¼BUv¬D"]],"encodeOffsets":[[[134456,44547],[127123,51780]]]},"properties":{"cp":[126.642464,45.756967],"name":"黑龙江","childNum":2}},{"id":"320000","geometry":{"type":"Polygon","coordinates":["@@Õg^vÁbnÀ‹`Jnĝ¬ŽòM¶ĘšTÖŒb‚˜e¦¦€{¸ZâćNpŒ©žHp|`ˆmjhŠSEb\\afv`sz^lkŽlj‹Ätg‹¤D˜­¾Xš¿À’|ДiZ„ȀåB·î}GL¢õcßjaŸyBFµÏC^ĭ•cÙt¿sğH]j{s©HM¢ƒQnDÀ©DaÜތ·jgàiDbPufjDk`dPOîƒhw¡ĥ‡¥šG˜ŸP²ĐobºrY†„î¶aHŢ´ ]´‚rılw³r_{£DB_Ûdåuk|ˆŨ¯F Cºyr{XFy™e³Þċ‡¿Â™kĭB¿„MvÛpm`rÚã”@ƹhågËÖƿxnlč¶Åì½Ot¾dJlŠVJʜǀœŞqvnOŠ^ŸJ”Z‘ż·Q}ê͎ÅmµÒ]Žƍ¦Dq}¬R^èĂ´ŀĻĊIԒtžIJyQŐĠMNtœR®òLh‰›Ěs©»œ}OӌGZz¶A\\jĨFˆäOĤ˜HYš†JvÞHNiÜaϚɖnFQlšNM¤ˆB´ĄNöɂtp–ŬdZÅgl•muÇUšŽ“Ş‡Úb¤uŃJŴu»¹Ą•lȖħŴw̌ŵ²ǹǠ͛hĭłƕrçü±Y™rřl¥’i`ã__¢ćSÅr[Çq^ùzWmOĈaŐÝɞï²ʯʊáĘijĒǭPħ͍ôƋĝÄ͎ī‰çÛɈǥ£­ÛmY`ó£Z«§°Ó³QafusNıDž_k}¢m[ÝóDµ—¡RLčiXy‡ÅNïă¡¸iĔϑNÌķoıdōîåŤûHcs}~Ûwbù¹£¦ÓCt‹OPrƒE^ÒoŠg™ĉIµžÛÅʹK…¤½phMˆú`m”R¸¦Pƚg†ÉLRŠs`£¯ãhD„¨|³¤‰C"],"encodeOffsets":[[121451,32518]]},"properties":{"cp":[118.767413,32.041544],"name":"江苏","childNum":1}},{"id":"330000","geometry":{"type":"MultiPolygon","coordinates":[["@@jX^n…","@@sfˆdM‰","@@qP\\xz[_i","@@o\\V’zRZ}mECy","@@‘Rƒ¢‚FX}°[m]","@@Cbœ\\•}","@@e|v\\laus","@@v~s{","@@QxÂF©}","@@¹nŒvÞs©m","@@rQgYIh","@@bi«Z„X","@@p[}ILd","@@À¿|","@@¹dnb’…","@@rS}[Kl","@@g~h}","@@FlCk","@@ůTG°ĄLHm°UF‰","@@OdRe","@@v[u\\","@@FjâL~wyoo~›sµLŒZ","@@¬e¹aH‚","@@\\nÔ¡q]L³ë\\ÿ®ŒQ̆","@@ÊA­©]ª","@@KxŒv{­","@@@hlIk_","@@pWc‡rxp","@@Md|_iA","@@¢…X£½z\\ðpN","@@hlÜ[LykAvyfw^Ež ","@@fp¤MusH","@@®_ma~•LÁ¬’`","@@†@°¡mۛGĕ¨§Ianá[ýƤjfæ‡ÐNž—äGp—","@@iM„t\\","@@Zc[b","@@™X®±GrưZæĉm","@@Z~dOSo|A¿qZv","@@@`”EN£p","@@|–s—","@@@nDi","@@n…a£¾u‰YL¯‰Qª…mĉÅdMˆ•gÇjcº«•ęœ¬­K­´ƒB«Âącoċ\\xK`cįŧ«®á’[~ıxu·Å”KsËɏc¢Ù\\ĭƛëbf¹­ģSƒĜkáƉÔ­ĈZB{ŠaM‘µ‰fzʼnfÓÔŹŁƋǝÊĉ{ğč±g³ne{ç­ií´S¬‚\\ßðK¦w\\™iqªĭiAu‡A­µ”_W¥ƣO\\lċĢttC¨£t`ˆ™PZäuXßBs‡Ļyek€OđġĵHuXBšµ]׌‡­­\\›°®¬F¢¾pµ¼kŘó¬Wät’¸|@ž•L¨¸µr“ºù³Ù~§WI‹ŸZWŽ®’±Ð¨ÒÉx€`‰²pĜ•rOògtÁZ{üÙ[|˜ûŒK‚wsPlU[}¦Rvn`hsª^–nQ´ĘRWb”‚_ rtČFI֊kŠŠĦPJ¶ÖÀÖJĈĄTĚòžC ²@Pú…Øzœ©PœCÈÚœĒ±„hŖ‡l¬â~nm¨f©–iļ«m‡nt–qŒÒTÜÄj“ŠLŽ®E̜Fª²iÊxبžIÈhhst’ˆ’[Ôx†}dtüGæţŔïĬaĸpMËВj碷ðĄÆMzˆjWKĎ¢Q¶˜À_꒖_@ı€i«pZ€gf€¤Nrq]§ĂN®«H±‡yƳí¾×ŊďŀĐÏŴǝĂíÀBŖÕªˆŠÁŐTFqĉ¯³ËCĕģi¨hÜ·ƒñt»¯Ï","@@ºwšZRkĕWK "]],"encodeOffsets":[[[125785,31436],[125729,31431],[125513,31380],[125329,30690],[125223,30438],[125115,30114],[124815,29155],[124419,28746],[124095,28635],[124005,28609],[125000,30713],[125111,30698],[125078,30682],[125150,30684],[124014,28103],[125008,31331],[125411,31468],[125329,31479],[125369,31139],[125626,30916],[125417,30956],[125254,30976],[125199,30997],[125095,31058],[125083,30915],[124885,31015],[125218,30798],[124867,30838],[124755,30788],[124802,30809],[125267,30657],[125218,30578],[125200,30562],[125192,30787],[124968,30474],[125167,30396],[125115,30363],[124955,29879],[124714,29781],[124762,29462],[124325,28754],[124863,30077],[125366,31477]]]},"properties":{"cp":[120.153576,30.287459],"name":"浙江","childNum":43}},{"id":"340000","geometry":{"type":"MultiPolygon","coordinates":[["@@^iuLV\\","@@‚e©Edh","@@´CE¶zAXœêeödK¡~H¸íæAˆȽ—d{ďő“À½W—®£ChŒÃsiŒkkly]_teu[bFa‰Tig‡n{]Gqªo‹ĈMYá|·¥f¥—őaSÕė™NµñĞ«ImŒ_m¿Âa]uĜp …Z_§{Cƒäg¤°r[_Yj‰ÆOdý“[ŽI[á·¥“Q_n‡ùgL¾mz›ˆDÜÆ¶ĊJhšp“c¹˜O]iŠ]œ¥ jtsggDÑ¡“w×jÉ©±›EFˍ­‰Ki”ÛÃÕYv…s•ˆm¬njĻª•§emná}k«ŕˆƒgđ²Ù›DǤ›í¡ªOy›†×Où±@DŸñSęćăÕIÕ¿IµĥO‰‰‰lJÕÍR›Í|JìĻÒåyķrĕq§ÄĩsWÆßŽF¶žX®¿‰mŒ™w…RIޓfßoG‘³¾©uyH‘į{Ɓħ¯AFnuP…ÍÔzšŒV—dàôº^Ðæd´€‡oG¤{S‰¬ćxã}›ŧ×Kǥĩ«žÕOEзÖdÖsƘѨ[’Û^Xr¢¼˜§xvěƵ`K”§ tÒ´Cvlo¸fzŨð¾NY´ı~ÉĔē…ßúLÃϖ_ÈÏ|]ÂÏHl’g`bšežž€n¾¢pU‚h~ƴ˶_‚r sĄ~cž”ƈ]|r c~`¼{À{ȒiJjz`îÀT¥Û³…]’u}›f…ïQl{skl“oNdŸjŸäËzDvčoQŠďHI¦rb“rHĖ~BmlNž“Ra„ĥTX\\{fÁKÁ®T‚œL‘ŠĄMt›ÊgĀD–ŠĄXœƔvDcÎJbt[¤€D@®hh~kt°ǾzÖ@¾ªdb„YhüóV´ŮŒ¨Üc”±r@J|àuYÇԋG·ĚąĐlŪÚpSJ¨ĸˆLvÞcPæķŨŽ®mАˆál‹sgd×mQ¨ųƩޖ¤IΖs’°ŒKZpĄ|XwWdĎµmkǀwÌÕæhºgBĝâqÙĊz›ÖgņtÀÁÊÆá’hEz|WzqD¹€Ÿ°E‡ŧl{ævÜcA`¤C`|´qžxIJkq^³³ŸGšµbƒíZ…¹qpa±ď OH—¦™Ħˆx¢„gPícOl_iCveaOjCh߸i݋bÛªCC¿€m„RV§¢A|tbkĜEÀtîm‚^g´fÄ"]],"encodeOffsets":[[[121722,32278],[119475,30423],[121606,33646]]]},"properties":{"cp":[117.283042,31.86119],"name":"安徽","childNum":3}},{"id":"350000","geometry":{"type":"MultiPolygon","coordinates":[["@@“zht´}[","@@aj^~ĆGå","@@edœŒH…se","@@@vˆPGsyQ","@@‰sBz‚ddW[O","@@SލQy","@@NŽVucW","@@qptB@q","@@‰’¸[iu","@@Q\\pD[_","@@jSwUappI","@@eXª~•","@@AjvFoo","@@fT–›_Çí\\Ÿ™—v|ba¦jZÆy|®","@@IjLg","@@wJI€ˆxš«¼AoNe{M¥Œ","@@K‰±¡Óˆ”Č~N¾™","@@k¡¹Eh~c®uDq‰Zì¡I•~Māe£bN¨gZý¡a±Öcp©PhžI”Ÿ¢Qq…ÇGj‹|¥U™ g[Ky¬ŏ–v@OpˆtÉEŸF„\\@ åA¬ˆV{Xģ‰ĐBy…cpě…¼³Ăp·¤ƒ¥o“hqqÚ¡ŅLsƒ^ᗞ§qlŸÀhH¨MCe»åÇGD¥zPO£čÙkJA¼ß–ėu›ĕeûҍiÁŧS[¡œUŠûŗ½ùěcݧSùĩąSWó«íęACµ›eR—åǃRCÒÇZÍ¢‹ź±^dlsŒtjD¸•‚ZpužÔâÒH¾oLUêÃÔjjēò´ĄW‚ƛ…^Ñ¥‹ĦŸ@Çò–ŠmŒƒOw¡õyJ†yD}¢ďÑÈġfŠZd–a©º²z£šN–ƒjD°Ötj¶¬ZSÎ~¾c°¶Ðm˜x‚O¸¢Pl´žSL|¥žA†ȪĖM’ņIJg®áIJČĒü` ŽQF‡¬h|ÓJ@zµ |ê³È ¸UÖŬŬÀCtrĸr‚]€˜ðŽM¤ĶIJHtÏ A’†žĬkvsq‡^aÎbvŒd–™fÊòSD€´Z^’xPsÞrv‹ƞŀ˜jJd×ŘÉ ®A–ΦĤd€xĆqAŒ†ZR”ÀMźŒnĊ»ŒİÐZ— YX–æJŠyĊ²ˆ·¶q§·–K@·{s‘Xãô«lŗ¶»o½E¡­«¢±¨Yˆ®Ø‹¶^A™vWĶGĒĢžPlzfˆļŽtàAvWYãšO_‡¤sD§ssČġ[kƤPX¦Ž`¶“ž®ˆBBvĪjv©šjx[L¥àï[F…¼ÍË»ğV`«•Ip™}ccÅĥZE‹ãoP…´B@ŠD—¸m±“z«Ƴ—¿å³BRضˆœWlâþäą`“]Z£Tc— ĹGµ¶H™m@_©—kŒ‰¾xĨ‡ôȉðX«½đCIbćqK³Á‹Äš¬OAwã»aLʼn‡ËĥW[“ÂGI—ÂNxij¤D¢ŽîĎÎB§°_JœGsƒ¥E@…¤uć…P‘å†cuMuw¢BI¿‡]zG¹guĮI‹"]],"encodeOffsets":[[[123250,27563],[122541,27268],[123020,27189],[122916,27125],[122887,26845],[122808,26762],[122568,25912],[122778,26197],[122515,26757],[122816,26587],[123388,27005],[122450,26243],[122578,25962],[121255,25103],[120987,24903],[122339,25802],[121042,25093],[122439,26024]]]},"properties":{"cp":[119.306239,26.075302],"name":"福建","childNum":18}},{"id":"360000","geometry":{"type":"Polygon","coordinates":["@@ÖP¬ǦĪØLœŨä~ĈwŠ«|TH£ˆp€c³Ïå¹]ĉđxe{ÎӐ†vOEm°BƂĨİ|G’vz½ª´€H’àp”eJ݆Qšxn‹ÀŠW­žEµàXÅĪt¨ÃĖrÄwÀFÎ|Ă¡”‡WÕ¸cf¥—‘XaęST±m[“r«_gŽmQu~¥V\\OkxtL E¢‹ƒ‘Ú^~ýØkbē–qo슱_Êw§Ñ²ÏƟ뼋mĉŹ‹¿NQ“…YB‹ąrwģcÍ¥B•Ÿ­ŗÊcØiI—žƝĿuŒqtāwO]‘³YCñTeɕš‹caub͈]trlu€ī…B‘ПGsĵıN£ï—^ķqsq¿DūūV՟·´Ç{éĈý‰ÿ›OEˆR_ŸđûIċâJh­ŅıN‘ȩĕB…¦K{Tk³¡OP·wn—µÏd¯}½TÍ«YiµÕsC¯„iM•¤™­•¦¯P|ÿUHv“he¥oFTu‰õ\\ŽOSs‹MòđƇiaºćXŸĊĵà·çhƃ÷ǜ{‘ígu^›đg’m[ÙxiIN‘¶Õ»lđÕwZSƉv©_ÈëJbVk„ĔVÀ¤P¾ºÈMÖxlò~ªÚàGĂ¢B„±’ÌŒK˜y’ñ`w²¹€·Ÿ…`g›ŸsÙfI›ěxŕeykpŽŒudjˆuTfb·hh„¿JdŠ[\\˜„L‚áƔĨƐAĈepˆÀÂMD~ņªe^\\^§„ý©j׍cZ†Ø¨zdÒa¶ˆlҍJŒìõ`oz÷@¤u޸´†ôęöY¼‰HČƶajlÞƩ¥éZ[”|h}^U Œ ¥p„ĄžƦO lt¸Æ €Q\\€ŠaÆ|CnÂOjt­ĚĤd’ÈŒF`’¶„@Ð딠¦ōҞ¨Sêv†HĢÛ@[ƅQoxHŒ—W[ŰîÀt¦DŽ~NĠ¢l–•ĄtZoœCƞÔºCxrpČN˜pj¢{f_Y`_ƒeq’’®Aot`@o‚DXfkp¨|Šs¬\\D‘ÄSfè©Hn¬…^DhÆyøJh“ØxĢĀLʈ„ƠPżċĄwĮ”¶ž"],"encodeOffsets":[[118923,30536]]},"properties":{"cp":[115.892151,28.676493],"name":"江西","childNum":1}},{"id":"370000","geometry":{"type":"MultiPolygon","coordinates":[["@@Xjd]mE","@@itnq","@@Dl@k","@@T‚ŒG—w","@@K¬˜•‰U","@@Wd`c","@@PtMs","@@•LnXlc","@@ppVƒu]Qn","@@cdzAU_","@@udRhnCE…","@@ˆoIƒpP„","@@M{Ŀčwbxƨî’Kš–ÎMĮ]†—ZFˆ½Y]â£ph’™š¶¨râøÀ†ÎǨ¤^ºÄ”Gzˆ~grĚĜlĞÆ„LĆdž¢Îo¦–cv“Kb€gr°Wh”mZp ˆL]LºcU‰Æ­n”żĤÌǜbAnrOAœ´žȊcÀbƦUØrĆUÜøœĬƞ†ŶǬĴóò_A̈«ªdÎɜnb²ĦhņBĖ›žįĦåXćì@L¯´ywƕCéõė ƿ¸‘lµ‚Zæyj|BíÂKN„NnoƈfÈMZwšnŐNàúĂsT„JUš›‚L„îVj„ǎ¾Ē؍‚Dz²XPn±ŴPè¸ŔLƔÜƺ_T‘üÃĤBBċȉöA´fa„˜M¨{«M`‡¶d¡ô‰Ö°šmȰBÔjjŒ´PM|”c^d¤u•ƒ¤Û´Œä«ƢfPk¶Môlˆ]Lb„}su^ke{lC‘…M•rDŠÇ­]NÑFsmoõľH‰yGă{{çrnÓE‰‹ƕZGª¹Fj¢ÿ©}ÌCǷ돡ąuhÛ¡^Kx•C`C\\bÅxì²ĝÝ¿_N‰īCȽĿåB¥¢·IŖÕy\\‡¹kx‡Ã£ČáKµË¤ÁçFQ¡„KtŵƋ]CgÏAùSed‡cÚź—ŠuYfƒyMmhUWpSyGwMPqŀ—›Á¼zK›¶†G•­Y§Ëƒ@–´śÇµƕBmœ@Io‚g——Z¯u‹TMx}C‘‰VK‚ï{éƵP—™_K«™pÛÙqċtkkù]gŽ‹Tğwo•ɁsMõ³ă‡AN£™MRkmEʕč™ÛbMjÝGu…IZ™—GPģ‡ãħE[iµBEuŸDPԛ~ª¼ętŠœ]ŒûG§€¡QMsğNPŏįzs£Ug{đJĿļā³]ç«Qr~¥CƎÑ^n¶ÆéÎR~ݏY’I“] P‰umŝrƿ›‰›Iā‹[x‰edz‹L‘¯v¯s¬ÁY…~}…ťuٌg›ƋpÝĄ_ņī¶ÏSR´ÁP~ž¿Cyžċßdwk´Ss•X|t‰`Ä Èð€AªìÎT°¦Dd–€a^lĎDĶÚY°Ž`ĪŴǒˆ”àŠv\\ebŒZH„ŖR¬ŢƱùęO•ÑM­³Fۃaj"]],"encodeOffsets":[[[123806,39303],[123821,39266],[123742,39256],[123702,39203],[123649,39066],[123847,38933],[123580,38839],[123894,37288],[123043,36624],[123344,38676],[123522,38857],[123628,38858],[118267,36772]]]},"properties":{"cp":[117.000923,36.675807],"name":"山东","childNum":13}},{"id":"410000","geometry":{"type":"MultiPolygon","coordinates":[["@@dXD}~Hgq~ÔNŽ‹„~zkĘHVsDzßjƒŬŒŠŢ`Pûàl¢˜\\ÀœEhŽİgÞē X¼`kš„h•ÍL™ùµP³swIÓzeŠĠð†´E®žÚPt†ºIŊ–ʺ˜L«šŕQGƒ‹Yfa[şu“ßǑ‡ĩų_Z¯ĵÙčC]kbc•¥CS¯ëÍB©ïŽÇߊ_{s–WTtž³xlàcȂzÀD}ÂOQ³ÐTĬµ‚ƑпŸghœł‹Ŧv~††}ÂZž«¤lPǕ£ªÝŴÅR§ØnhcŒtâk‡nύ­ľŹUÓÝdKuķ‡I§oTũÙďkęĆH¸ÓŒ\\ăŒ¿PcnS{wBIvɘĽ[GqµuŸŇôYgûƒZcaŽ©@½Õǽys¯}lgg@­C\\£as€IdÍuCQñ[L±ęk·‹ţb¨©kK—’»›KC²‘òGKmĨS`ƒ˜UQ™nk}AGē”sqaJ¥ĐGR‰ĎpCuÌy ã iMc”plk|tRk†ðœev~^‘´†¦ÜŽSí¿_iyjI|ȑ|¿_»d}qŸ^{“Ƈdă}Ÿtqµ`ŷ飩V¡om½ZÙϋÁRD|JOÈpÀ—Rs’•I{ùÓjuµ{t}uËR‘iŸvGŠçJFjµŠåkWꖴMƒHewixGw½Yŷpµú³XU›½ġy™łå‰kÚwZXˆ·l„¢Á¢K”zO„Λ΀jc¼htoDHr…|­J“½}JZ_¯iPq{tę½ĕ¦Zpĵø«kQ…Ťƒ]MÛfaQpě±ǽ¾]u­Fu‹÷nƒ™čįADp}AjmcEǒaª³o³ÆÍSƇĈÙDIzçƒñİŸ^ˆKNœ™i—Þñ€[œƒaA²zz‰Ì÷Dœ|[šíijgf‚ÕÞd®|`ƒĆ~„oĠƑô³Ŋ‘D×°¯CsˆøÂ«ì‰UMhTº¨¸ǝêWšÔ„DruÂÇZ£Ćš”PZ„žW”~؋Øv¬gèÂÒw¦X¤Ā´oŬ¬Ž²Ês~€€]®tªašpŎJ¨Öº„_ŠŔ–f”Ő\\Ѝ\\Ĝu–”~m²Ƹ›¸fW‰ĦrƔ}Î^gjdfÔ¡J}\\n C˜¦þWxªJRÔŠu¬ĨĨmF†dM{\\d\\ŠYÊ¢ú@@¦ª²SŠÜsC–}fNècbpRmlØ^g„d¢aÒ¢CZˆZxvÆ¶N¿’¢T@€uCœ¬^ĊðÄn|žlIlŽ—Xhun€[","@@hzUq"]],"encodeOffsets":[[[116744,37216],[116480,33048]]]},"properties":{"cp":[113.665412,34.757975],"name":"河南","childNum":2}},{"id":"420000","geometry":{"type":"MultiPolygon","coordinates":[["@@ASd","@@ls{d","@@¾«}{ra®pîÃ\\™›{øCŠËyyB±„b\\›ò˜Ý˜jK›‡L ]ĎĽÌ’JyÚCƈćÎT´Å´pb©È‘dFin~BCo°BĎĚømvŒ®E^vǾ½Ĝ²Ro‚bÜeNŽ„^ĺ£R†¬lĶ÷YoĖ¥Ě¾|sOr°jY`~I”¾®I†{GqpCgyl{‡£œÍƒÍyPL“¡ƒ¡¸kW‡xYlÙæŠšŁĢzœ¾žV´W¶ùŸo¾ZHxjwfx„GNÁ•³Xéæl¶‰EièIH‰ u’jÌQ~v|sv¶Ôi|ú¢Fh˜Qsğ¦ƒSiŠBg™ÐE^ÁÐ{–čnOÂȞUÎóĔ†ÊēIJ}Z³½Mŧïeyp·uk³DsѨŸL“¶_œÅuèw»—€¡WqÜ]\\‘Ò§tƗcÕ¸ÕFÏǝĉăxŻČƟO‡ƒKÉġÿ×wg”÷IÅzCg†]m«ªGeçÃTC’«[‰t§{loWeC@ps_Bp‘­r‘„f_``Z|ei¡—oċMqow€¹DƝӛDYpûs•–‹Ykıǃ}s¥ç³[§ŸcYЧHK„«Qy‰]¢“wwö€¸ïx¼ņ¾Xv®ÇÀµRĠЋžHMž±cÏd„ƒǍũȅȷ±DSyúĝ£ŤĀàtÖÿï[îb\\}pĭÉI±Ñy…¿³x¯N‰o‰|¹H™ÏÛm‹júË~Tš•u˜ęjCöAwě¬R’đl¯ Ñb­‰ŇT†Ŀ_[Œ‘IčĄʿnM¦ğ\\É[T·™k¹œ©oĕ@A¾w•ya¥Y\\¥Âaz¯ãÁ¡k¥ne£Ûw†E©Êō¶˓uoj_Uƒ¡cF¹­[Wv“P©w—huÕyBF“ƒ`R‹qJUw\\i¡{jŸŸEPïÿ½fć…QÑÀQ{ž‚°‡fLԁ~wXg—ītêݾ–ĺ‘Hdˆ³fJd]‹HJ²…E€ƒoU¥†HhwQsƐ»Xmg±çve›]Dm͂PˆoCc¾‹_h”–høYrŊU¶eD°Č_N~øĹĚ·`z’]Äþp¼…äÌQŒv\\rCŒé¾TnkžŐڀÜa‡“¼ÝƆ̶Ûo…d…ĔňТJq’Pb ¾|JŒ¾fXŠƐîĨ_Z¯À}úƲ‹N_ĒĊ^„‘ĈaŐyp»CÇĕKŠšñL³ŠġMŒ²wrIÒŭxjb[œžn«øœ˜—æˆàƒ ^²­h¯Ú€ŐªÞ¸€Y²ĒVø}Ā^İ™´‚LŠÚm„¥ÀJÞ{JVŒųÞŃx×sxxƈē ģMř–ÚðòIf–Ċ“Œ\\Ʈ±ŒdʧĘD†vČ_Àæ~DŒċ´A®µ†¨ØLV¦êHÒ¤"]],"encodeOffsets":[[[113712,34000],[115612,30507],[113649,34054]]]},"properties":{"cp":[114.298572,30.584355],"name":"湖北","childNum":3}},{"id":"430000","geometry":{"type":"MultiPolygon","coordinates":[["@@—n„FZw","@@かÆá‰½ÔXr—†CO™“…ËR‘ïÿĩ­TooQyšÓ[‹ŅBE¬–ÎÓXa„į§Ã¸G °ITxp‰úxÚij¥Ïš–̾ŠedžÄ©ĸG…œàGh‚€M¤–Â_U}Ċ}¢pczfŠþg¤€’ÇôAV‘","@@ȴÚŠĖÁĐiO“Ĝ«BxDõĚiv—ž–S™Ì}iùŒžÜnšÐºGŠ{Šp°M°yŠÂÒzJ²Ì ÂcXëöüiáÿñŽőФ‚ùTz²CȆȸǎۃƑÐc°dPÎŸğ˶[Ƚu¯½WM¡­Éž“’B·rížnZŸÒ `‡¨GA¾\\pē˜XhÆRC­üWGġu…T靧Ŏѝ©êL•M³}_‘‹E‘Çģc®ęisÁPDmÅ{‰b[Rşs·€kPŸŽƥƒóRo”O‹ŸVŸ~]{g\\“êYƪ¦kÝbiċƵŠGZ»Ěõ…ó·³vŝž£ø@pyö_‹ëŽIkѵ‡bcѧy…×dY؎ªiþžˆUjŸŅ³C}ÁN‡»hĻħƏâƓK—ƒA·³CQ±µ§¿AUŠƑ¹AŠtćOw™D]ŒJUÖgk¯b£‘ylƒ›ZƒFËѱH™­}˜•EbóľA–¡»Ku¦·‘³†åş¥ùBDž^{ÌC´­¦ŷJ£^[†‹—ª¿‡ğ|‹ƅ…•N… skóā‡¹¿€ï]ă~÷O§­@—Vm¡‹Qđ¦¢Ĥ{ºjԏŽŒª¥nf´•~ÕoŸž×Ûą‹Gû¥cÑ[Zœ‰¶˜ŨβSÊǔƐ˜ƀƒ’AÚŌ¦QؼrŭŽ­«}NÏürʬŒmjr€@ĘrTW ­SsdHzƓ^ÇÂyUi¯DÅYlŹu{hTœ}mĉ–¹¥ě‰Dÿë©ıÓ[Oº£ž“¥ót€ł¹MՄžƪƒ`Pš…Di–ÛUоÅ‌ìˆU’ñB“È£ýhe‰dy¡oċ€`pfmjP~‚kZa…ZsÐd°wj§ƒ@€Ĵ®w~^‚kÀÅKvNmX\\¨a“”сqvíó¿F„¤¡@ũÑVw}S@j}¾«pĂr–ªg àÀ²NJ¶¶Dô…K‚|^ª†Ž°LX¾ŴäPᜣEXd›”^¶›IJÞܓ~‘u¸ǔ˜Ž›MRhsR…e†`ÄofIÔ\\Ø  i”ćymnú¨cj ¢»–GČìƊÿШXeĈ¾Oð Fi ¢|[jVxrIQŒ„_E”zAN¦zLU`œcªx”OTu RLĪpUžĪ‚ȴ^ŎµªÉžFx…Ü€f¤ºgIJèy°Áb[¦Zb¦–z½xBĖ@ªpº›˜jS´rVźOd©ʪiĎă’JP‡ž`"]],"encodeOffsets":[[[115640,30489],[112577,27316],[114113,30649]]]},"properties":{"cp":[112.982279,28.19409],"name":"湖南","childNum":3}},{"id":"440000","geometry":{"type":"MultiPolygon","coordinates":[["@@QdˆAsa","@@ƒlxDRm","@@sbhNLo","@@Ă ý","@@WltOY[","@@Krœ]‰S","@@e„~AS}","@@I|„Mym","@@ƒÛ³LSŒž²Q","@@nvºB–ë¥cÕº","@@zdšÛ›JmŠ","@@†°³","@@a yAª¸ËJIx،@€ĀHÉÕZ™o•fo…o","@@šs‰ŗÃÔėAƁ›ZšÄ ~°ČP‚‹ºb","@@‹¶Ý’Ì‚vmĞh¹Ĺ","@@HœŠdSjĒ¢D}war…“u«ZqadY{K","@@elŒ\\LqqO","@@~rMmX","@@f„^E","@@øPªoj÷ÍÝħXČx”°Q¨ıXJp","@@gÇƳˆˆ–m’Žxa†tfu","@@E–ÆC½‘","@@¸B_¶ekWvSi‡vc•}p}Ăº¾NĎyj¦Èm thœ†_®žÄ}ˆ»âUzL™Ë‹²‘Aƒā¡ßH©Ùñ}wkNÕ¹ÇO½¿£ēUlƒaUìIžÇª`ŠuTÅxYĒÖ¼k֞’µ‚MžjJÚwn\\h‘œĒv]îh|’È›Ƅøègž¸Ķß ĉĈWb¹ƀdéƌNTtP[ŠöSvrCZžžaGuœbo´ŖÒÇА~¡zCI…özx¢„Pn‹•‰Èñ @ŒĥÒ¦†]ƜŽX³ăĔñiiÄÓVépKG½Ä‘ÓávYo–C·sit‹iaÀy„ŧΡÈYDÑům}‰ý|m[węõĉZÅxUO}÷N¹³ĉo_qtă“qwµŁYلǝŕ¹tïÛUïmRCº…ˆĭ|µ›ÕÊK™½R‘ē ó]‘–GªęAx–ŸNqSF•|ām‡¡diď×YïYWªʼnOeÚtĐ«zđ¹T…ā‡úE™áÎÁWw헟HcòßÎſ¿Çdğ·ùT×Çūʄ¡XgWÀLJğ·¿ÃˆOj YÇ÷Sğ³kzőõm‰™ĝ—[³‹¡VÙæÅöM̳¹pÁaËýý©D©Ü“JŹƕģGą¤{Ùū…ǘO²«BƱéA—Ò‰ĥ‡¡«BhlmtÃPµyU¯uc“d·w_bŝcīímGOŽ€GBȅ‰ŹãĻFŷŽŕ@Óoo¿ē‹±ß}Ž}ÓF÷tIJWÈCőâUâǙI›ğʼn©I›ijEׅÁ”³AĥDĈ±ÌŒÜӔĨ£L]ĈÙƺZǾĆĖMĸĤfŒÎĵl•ŨnȈ‘ĐtF”Š–FĤ–‚êk¶œ^k°f¶gŠŽœ}®Fa˜f`vXŲxl˜„¦–ÔÁ²¬ÐŸ¦pqÊ̲ˆi€XŸØRDÎ}†Ä@ZĠ’s„x®AR~®ETtĄZ†–ƈfŠŠHâÒÐA†µ\\S¸„^wĖkRzŠalŽŜ|E¨ÈNĀňZTŒ’pBh£\\ŒĎƀuXĖtKL–¶G|Ž»ĺEļĞ~ÜĢÛĊrˆO˜Ùîvd]nˆ¬VœÊĜ°R֟pM††–€ƀ¬HbwžEÀˆ˜©Œž\\…¤]ŸI®¥D³|ˎ]CúAЦ…æ’´¥¸Lv¼€•¢ĽBaô–F~—š®²GÌҐEY„„œzk¤’°ahlV՞I^‹šCxĈPŽsB‰ƒºV‰ÀB¶¨R²´D","@@OŽR"]],"encodeOffsets":[[[117381,22988],[116552,22934],[116790,22617],[116973,22545],[116444,22536],[116931,22515],[116496,22490],[116453,22449],[113301,21439],[118726,21604],[118709,21486],[113210,20816],[115482,22082],[113171,21585],[113199,21590],[115232,22102],[115739,22373],[115134,22184],[113056,21175],[119573,21271],[119957,24020],[115859,22356],[116680,26053],[116561,22649]]]},"properties":{"cp":[113.280637,23.125178],"name":"广东","childNum":24}},{"id":"450000","geometry":{"type":"MultiPolygon","coordinates":[["@@H– TI¡U","@@Ɣ_LÊFZg…čP­kini«‹qǀcz͔Y®¬Ů»qR×ō©DՄ‘§ƙǃŵTÉĩ±ŸıdÑnYY›IJvNĆÌØÜ Öp–}e³¦m‹©iÓ|¹Ÿħņ›|ª¦QF¢Â¬ʖovg¿em‡^ucäāmÇÖåB¡Õçĝ}FϼĹ{µHK•sLSđƃr‹č¤[Ag‘oS‹ŇYMÿ§Ç{Fśbky‰lQxĕƒ]T·¶[B…ÑÏGáşşƇe€…•ăYSs­FQ}­Bƒw‘tYğÃ@~…C̀Q ×W‡j˱rÉ¥oÏ ±«ÓÂ¥•ƒ€k—ŽwWűŽue_b—­E›~‰µh¯ecl¯›Ïr¯‡E쉕Jƒğƒ}žw³–Ƈē`ãògK_ÛsUʝ“ćğ¶hŒöŒO¤Ǜn³Žc‘`¡yi–ę–‘[ďĵűMę§]X˜Î_‚훘Û]é’ÛUćİÕBƣ±…dƒy¹T^džûÅÑŦ·‡PĻþÙ`K€¦˜…¢ÍeœĥR¿Œ³£[~Œäu¼dl‰t‚†W¸oRM¢ď\\zœ}Æzdvň–{ÎXF¶°Â_„ÒÂÏL©Ö•TmuŸ¼ãl‰›īkiqéfA„·Êµ\\őDc¥ÝF“y›Ôć˜c€űH_hL܋êĺШc}rn`½„Ì@¸¶ªVLŒŠhŒ‹\\•Ţĺk~ŽĠið°|gŒtTĭĸ^x‘vK˜VGréAé‘bUu›MJ‰VÃO¡…qĂXËS‰ģãlýàŸ_ju‡YÛÒB†œG^˜é֊¶§ŽƒEG”ÅzěƒƯ¤Ek‡N[kdåucé¬dnYpAyČ{`]þ±X’\\’ÞÈk‚¡Ĭj†àh„ÂƄ¢H茠Ŕ⪃LƒĒ^Öm¶ħĊAǦė¸zÚGn£¾›rªŀÜt¬@֛ڈSx~øOŒ˜ŶÐÂæȠ\\„ÈÜObĖw^oބLf¬°bI lTØB̈F£Ć¹gñĤaY“t¿¤VSñœK¸¤nM†¼‚JE±„½¸šŠño‹ÜCƆæĪ^ŠĚQÖ¦^‡ˆˆf´Q†üÜʝz¯šlzUĺš@쇀p¶n]sxtx¶@„~ÒĂJb©gk‚{°‚~c°`ԙ¬rV\\“la¼¤ôá`¯¹LC†ÆbŒxEræO‚v[H­˜„[~|aB£ÖsºdAĐzNÂðsŽÞƔ…Ĥªbƒ–ab`ho¡³F«èVZs„\\\\Œ™ÔRzpp®SŽĪº¨ÖƒºN…ij„d`’a”¦¤F³¢@„`¢ĨĀìhYvlŠĆº¦Ċ•~nS›|gźv^kGƄÀè·"]],"encodeOffsets":[[[111707,21520],[113706,26955]]]},"properties":{"cp":[108.320004,22.82402],"name":"广西","childNum":2}},{"id":"460000","geometry":{"type":"Polygon","coordinates":["@@š¦Ŝil¢”XƦ‘ƞò–ïè§ŞCêɕrŧůÇąĻõ™·ĉ³œ̅kÇm@ċȧƒŧĥ‰Ľʉ­ƅſ“ȓÒ˦ŝE}ºƑ[ÍĜȋ gÎfǐÏĤ¨êƺ\\Ɔ¸ĠĎvʄȀœÐ¾jNðĀÒRŒšZdž™zМŒĊ†¢DÀɘZ"],"encodeOffsets":[[112750,20508]]},"properties":{"cp":[110.33119,20.031971],"name":"海南","childNum":1}},{"id":"510000","geometry":{"type":"MultiPolygon","coordinates":[["@@LqSn","@@ĆOìÛÐ@Ğ™ǔNY{¤Á§d…i“´ezÝúØãwŒƒIŸþËQǦÃqɞSJ»ĂéʔõÔƁİlƞ¹„§Ĭqt‘ÀƄmÀêErĒtD®ċæcQƒ”E®³^ĭ¥©l}äQto˜ŖÜqƎkµ–„ªÔĻĴ¡@Ċ°B²Èw^^RsºT£ڿœQP‘JvÄz„^Đ¹Æ¯fLà´GC²‘dt˜­ĀRt¼¤ĦOðğfÔðDŨŁĞƘïžPȆ®âbMüÀXZ ¸£@Ś›»»QÉ­™]d“sÖ×_͖_ÌêŮPrĔĐÕGĂeZÜîĘqBhtO ¤tE[h|Y‹Ô‚ZśÎs´xº±UŒ’ñˆt|O’ĩĠºNbgþŠJy^dÂY Į„]Řz¦gC‚³€R`Šz’¢AjŒ¸CL„¤RÆ»@­Ŏk\\Ç´£YW}z@Z}‰Ã¶“oû¶]´^N‡Ò}èN‚ª–P˜Íy¹`S°´†ATe€VamdUĐwʄvĮÕ\\ƒu‹Æŗ¨Yp¹àZÂm™Wh{á„}WØǍ•Éüw™ga§ßAYŸrÅÂQĀÕ¬LŐý®X˜øxª½Ű¦¦[€—þ„`ÜUÖ´òrÙŠ°²Äk„ijnDX{Uƒ~ET{ļº¦PZc”jF²Ė@Žp˜g€ˆ¨“B{ƒu¨ŦyhoÚD®¯¢˜ WòàFΤ¨GDäz¦kŮPœġq˚¥À]€Ÿ˜eŽâÚ´ªKxī„Pˆ—Ö|æ[xäJÞĥ‚s’NÖ½ž€I†¬nĨY´®Ð—ƐŠ€mD™ŝuäđđEb…e’e_™v¡}ìęNJē}q”É埁T¯µRs¡M@}ůa†a­¯wvƉåZwž\\Z{åû`Ÿ†[±oi•‘JDŦ]‘‰ĕãïrG •réÏ·~ąSfy×͂·ºſƽĵȁŗūmHQ¡Y¡®ÁÃ×t«ƒ­Tƒ¤J–JJŒyJ•ÈŠ`Ohߦ¡uËhIyCjmÿw…ZG……Ti‹SˆsO‰žB²ŸfNmsPaˆ{M{ŠõE‘^Hj}gYpaeuž¯‘oáwHjÁ½M¡pM“–uå‡mni{fk”\\oƒÎqCw†EZ¼K›ĝŠƒAy{m÷L‡wO×SimRI¯rK™õBS«sFe‡]fµ¢óY_ÆPRcue°Cbo׌bd£ŌIHgtrnyPt¦foaXďx›lBowz‹_{ÊéWiêE„GhܸºuFĈIxf®Ž•Y½ĀǙ]¤EyŸF²ċ’w¸¿@g¢§RGv»–áŸW`ÃĵJwi]t¥wO­½a[׈]`Ãi­üL€¦LabbTÀå’c}Íh™Æhˆ‹®BH€î|Ék­¤S†y£„ia©taį·Ɖ`ō¥Uh“O…ƒĝLk}©Fos‰´›Jm„µlŁu—…ø–nÑJWΪ–YÀïAetTžŅ‚ӍG™Ë«bo‰{ıwodƟ½ƒžOġܑµxàNÖ¾P²§HKv¾–]|•B‡ÆåoZ`¡Ø`ÀmºĠ~ÌЧnDž¿¤]wğ@sƒ‰rğu‰~‘Io”[é±¹ ¿žſđӉ@q‹gˆ¹zƱřaí°KtǤV»Ã[ĩǭƑ^ÇÓ@ỗs›Zϕ‹œÅĭ€Ƌ•ěpwDóÖሯneQˌq·•GCœýS]xŸ·ý‹q³•O՜Œ¶Qzßti{ř‰áÍÇWŝŭñzÇW‹pç¿JŒ™‚Xœĩè½cŒF–ÂLiVjx}\\N†ŇĖ¥Ge–“JA¼ÄHfÈu~¸Æ«dE³ÉMA|b˜Ò…˜ćhG¬CM‚õŠ„ƤąAvƒüV€éŀ‰_V̳ĐwQj´·ZeÈÁ¨X´Æ¡Qu·»Ÿ“˜ÕZ³ġqDo‰y`L¬gdp°şŠp¦ėìÅĮZްIä”h‚‘ˆzŠĵœf²å ›ĚрKp‹IN|‹„Ñz]ń……·FU×é»R³™MƒÉ»GM«€ki€™ér™}Ã`¹ăÞmȝnÁîRǀ³ĜoİzŔwǶVÚ£À]ɜ»ĆlƂ²Ġ…þTº·àUȞÏʦ¶†I’«dĽĢdĬ¿–»Ĕ׊h\\c¬†ä²GêëĤł¥ÀǿżÃÆMº}BÕĢyFVvw–ˆxBèĻĒ©Ĉ“t@Ğû¸£B¯¨ˋäߜkŽķŒ½ª“ôNԓ~t¼Ŵ„u„œ^s¼{TA¼ø°¢İªDè¾Ň¶ÝJ‘®Z´ğ~Sn|ªWÚ©òzPOȸ‚bð¢|‹øĞŠŒœŠA"]],"encodeOffsets":[[[108815,30935],[100197,35028]]]},"properties":{"cp":[104.065735,30.659462],"name":"四川","childNum":2}},{"id":"520000","geometry":{"type":"MultiPolygon","coordinates":[["@@†G\\†lY£‘cj","@@q‚|ˆ‚mc¯vωV","@@hÑ£Is‡NgßH†›HªķÃh_¹ƒ¡ĝħń¦uيùŽgS¯JHŸ|sÝÅtÁïyMDč»eÕtA¤{b\\}—ƒG®u\\åPFq‹wÅaD…žK°ºâ_£ùbµ”mÁ‹ÛœĹM[q|hlaªāI}тƒµ@swtwm^oµˆD鼊yV™ky°ÉžûÛR…³‚‡eˆ‡¥]RՋěħ[ƅåÛDpŒ”J„iV™™‰ÂF²I…»mN·£›LbÒYb—WsÀbŽ™pki™TZĄă¶HŒq`……ĥ_JŸ¯ae«ƒKpÝx]aĕÛPƒÇȟ[ÁåŵÏő—÷Pw}‡TœÙ@Õs«ĿÛq©½œm¤ÙH·yǥĘĉBµĨÕnđ]K„©„œá‹ŸG纍§Õßg‡ǗĦTèƤƺ{¶ÉHÎd¾ŚÊ·OÐjXWrãLyzÉAL¾ę¢bĶėy_qMĔąro¼hĊžw¶øV¤w”²Ĉ]ʚKx|`ź¦ÂÈdr„cȁbe¸›`I¼čTF´¼Óýȃr¹ÍJ©k_șl³´_pН`oÒh޶pa‚^ÓĔ}D»^Xyœ`d˜[Kv…JPhèhCrĂĚÂ^Êƌ wˆZL­Ġ£šÁbrzOIl’MM”ĪŐžËr×ÎeŦŽtw|Œ¢mKjSǘňĂStÎŦEtqFT†¾†E쬬ôxÌO¢Ÿ KгŀºäY†„”PVgŎ¦Ŋm޼VZwVlŒ„z¤…ž£Tl®ctĽÚó{G­A‡ŒÇgeš~Αd¿æaSba¥KKûj®_ć^\\ؾbP®¦x^sxjĶI_Ä X‚⼕Hu¨Qh¡À@Ëô}ޱžGNìĎlT¸ˆ…`V~R°tbÕĊ`¸úÛtπFDu€[ƒMfqGH·¥yA‰ztMFe|R‚_Gk†ChZeÚ°to˜v`x‹b„ŒDnÐ{E}šZ˜è€x—†NEފREn˜[Pv@{~rĆAB§‚EO¿|UZ~ì„Uf¨J²ĂÝÆ€‚sª–B`„s¶œfvö¦ŠÕ~dÔq¨¸º»uù[[§´sb¤¢zþFœ¢Æ…Àhˆ™ÂˆW\\ıŽËI݊o±ĭŠ£þˆÊs}¡R]ŒěƒD‚g´VG¢‚j±®è†ºÃmpU[Á›‘Œëº°r›ÜbNu¸}Žº¼‡`ni”ºÔXĄ¤¼Ôdaµ€Á_À…†ftQQgœR—‘·Ǔ’v”}Ýלĵ]µœ“Wc¤F²›OĩųãW½¯K‚©…]€{†LóµCIµ±Mß¿hŸ•©āq¬o‚½ž~@i~TUxð´Đhw­ÀEîô‚uĶ‚’“‚b[§nWuMÆJl½]vuıµb"]],"encodeOffsets":[[[112158,27383],[112105,27474],[112095,27476]]]},"properties":{"cp":[106.713478,26.578343],"name":"贵州","childNum":3}},{"id":"530000","geometry":{"type":"Polygon","coordinates":["@@[„ùx½}ÑRH‘YīĺûsÍn‘iEoã½Ya²ė{c¬ĝg•ĂsA•ØÅwď‚õzFjw}—«Dx¿}UũlŸê™@•HÅ­F‰¨ÇoJ´Ónũuą¡Ã¢pÒŌ“Ø TF²‚xa²ËX€‚cʋlHîAßËŁkŻƑŷÉ©h™W­æßU‡“Ës¡¦}•teèÆ¶StǀÇ}Fd£j‹ĈZĆÆ‹¤T‚č\\Dƒ}O÷š£Uˆ§~ŃG™‚åŃDĝ¸œTsd¶¶Bªš¤u¢ŌĎo~t¾ÍŶÒtD¦Ú„iôö‰€z›ØX²ghįh½Û±¯€ÿm·zR¦Ɵ`ªŊÃh¢rOԍ´£Ym¼èêf¯ŪĽn„†cÚbŒw\\zlvWžªâˆ ¦g–mĿBş£¢ƹřbĥkǫßeeZkÙIKueT»sVesb‘aĕ  ¶®dNœĄÄpªyސ¼—„³BE˜®l‡ŽGœŭCœǶwêżĔÂe„pÍÀQƞpC„–¼ŲÈ­AÎô¶R„ä’Q^Øu¬°š_Èôc´¹ò¨P΢hlϦ´Ħ“Æ´sâDŽŲPnÊD^¯°’Upv†}®BP̪–jǬx–Söwlfòªv€qĸ|`H€­viļ€ndĜ­Ćhň•‚em·FyށqóžSᝑ³X_ĞçêtryvL¤§z„¦c¦¥jnŞk˜ˆlD¤øz½ĜàžĂŧMÅ|áƆàÊcðÂF܎‚áŢ¥\\\\º™İøÒÐJĴ‡„îD¦zK²ǏÎEh~’CD­hMn^ÌöÄ©ČZÀžaü„fɭyœpį´ěFűk]Ôě¢qlÅĆÙa¶~Äqššê€ljN¬¼H„ÊšNQ´ê¼VظE††^ŃÒyŒƒM{ŒJLoÒœęæŸe±Ķ›y‰’‡gã“¯JYÆĭĘëo¥Š‰o¯hcK«z_pŠrC´ĢÖY”—¼ v¸¢RŽÅW³Â§fǸYi³xR´ďUˊ`êĿU„û€uĆBƒƣö‰N€DH«Ĉg†——Ñ‚aB{ÊNF´¬c·Åv}eÇÃGB»”If•¦HňĕM…~[iwjUÁKE•Ž‹¾dĪçW›šI‹èÀŒoÈXòyŞŮÈXâÎŚŠj|àsRy‹µÖ›–Pr´þŒ ¸^wþTDŔ–Hr¸‹žRÌmf‡żÕâCôox–ĜƌÆĮŒ›Ð–œY˜tâŦÔ@]ÈǮƒ\\μģUsȯLbîƲŚºyh‡rŒŠ@ĒԝƀŸÀ²º\\êp“’JŠ}ĠvŠqt„Ġ@^xÀ£È†¨mËÏğ}n¹_¿¢×Y_æpˆÅ–A^{½•Lu¨GO±Õ½ßM¶w’ÁĢۂP‚›Ƣ¼pcIJxŠ|ap̬HšÐŒŊSfsðBZ¿©“XÏÒK•k†÷Eû¿‰S…rEFsÕūk”óVǥʼniTL‚¡n{‹uxţÏh™ôŝ¬ğōN“‘NJkyPaq™Âğ¤K®‡YŸxÉƋÁ]āęDqçgOg†ILu—\\_gz—]W¼ž~CÔē]bµogpў_oď`´³Țkl`IªºÎȄqÔþž»E³ĎSJ»œ_f·‚adÇqƒÇc¥Á_Źw{™L^ɱćx“U£µ÷xgĉp»ĆqNē`rĘzaĵĚ¡K½ÊBzyäKXqiWPÏɸ½řÍcÊG|µƕƣG˛÷Ÿk°_^ý|_zċBZocmø¯hhcæ\\lˆMFlư£Ĝ„ÆyH“„F¨‰µêÕ]—›HA…àӄ^it `þßäkŠĤÎT~Wlÿ¨„ÔPzUC–NVv [jâôDôď[}ž‰z¿–msSh‹¯{jïğl}šĹ[–őŒ‰gK‹©U·µË@¾ƒm_~q¡f¹…ÅË^»‘f³ø}Q•„¡Ö˳gͱ^ǁ…\\ëÃA_—¿bW›Ï[¶ƛ鏝£F{īZgm@|kHǭƁć¦UĔťƒ×ëǟ…eċ¼ȡȘÏíBə£āĘPªij¶“ʼnÿ‡y©n‰ď£G¹¡I›Š±LÉĺÑdĉ܇W¥˜‰}g˜Á†{aqÃ¥aŠıęÏZ—Á`"],"encodeOffsets":[[104636,22969]]},"properties":{"cp":[102.712251,25.040609],"name":"云南","childNum":1}},{"id":"540000","geometry":{"type":"Polygon","coordinates":["@@hžľxŽŖ‰xƒÒVކºÅâAĪÝȆµę¯Ňa±r_w~uSÕň‘qOj]ɄQ…£Z……UDûoY’»©M[‹L¼qãË{V͕çWViŽ]ë©Ä÷àyƛh›ÚU°ŒŒa”d„cQƒ~Mx¥™caŸÛcSyF—ցk­ŒuRýq¿Ôµ•QĽ³aG{¿FµëªéĜÿª@¬·–K‰·àariĕĀ«V»Ŷ™Ĵū˜gèLǴŇƶaf‹tŒèBŚ£^Šâ†ǐÝ®–šM¦ÁǞÿ¬LhŸŽJ¾óƾƺcxw‹f]Y…´ƒ¦|œQLn°aœdĊ…œ\\¨o’œǀÍŎœ´ĩĀd`tÊQŞŕ|‚¨C^©œĈ¦„¦ÎJĊ{ŽëĎjª²rЉšl`¼Ą[t|¦St辉PŒÜK¸€d˜Ƅı]s¤—î_v¹ÎVòŦj˜£Əsc—¬_Ğ´|٘¦Avަw`ăaÝaa­¢e¤ı²©ªSªšÈMĄwžÉØŔì@T‘¤—Ę™\\õª@”þo´­xA s”ÂtŎKzó²Çȵ¢rž^nĊ­Æ¬×üGž¢‚³ {âĊ]š™G‚~bÀgVjzlhǶf€žOšfdЉªB]pj„•TO–tĊ‚n¤}®¦ƒČ¥d¢¼»ddš”Y¼Žt—¢eȤJ¤}Ǿ¡°§¤AГlc@ĝ”sªćļđAç‡wx•UuzEÖġ~AN¹ÄÅȀݦ¿ģŁéì±H…ãd«g[؉¼ēÀ•cīľġ¬cJ‘µ…ÐʥVȝ¸ßS¹†ý±ğkƁ¼ą^ɛ¤Ûÿ‰b[}¬ōõÃ]ËNm®g@•Bg}ÍF±ǐyL¥íCˆƒIij€Ï÷њį[¹¦[⚍EÛïÁÉdƅß{âNÆāŨߝ¾ě÷yC£‡k­´ÓH@¹†TZ¥¢įƒ·ÌAЧ®—Zc…v½ŸZ­¹|ŕWZqgW“|ieZÅYVӁqdq•bc²R@†c‡¥Rã»Ge†ŸeƃīQ•}J[ғK…¬Ə|o’ėjġĠÑN¡ð¯EBčnwôɍėªƒ²•CλŹġǝʅįĭạ̃ūȹ]ΓͧgšsgȽóϧµǛ†ęgſ¶ҍć`ĘąŌJޚä¤rÅň¥ÖÁUětęuůÞiĊÄÀ\\Æs¦ÓRb|Â^řÌkÄŷ¶½÷‡f±iMݑ›‰@ĥ°G¬ÃM¥n£Øą‚ğ¯ß”§aëbéüÑOčœk£{\\‘eµª×M‘šÉfm«Ƒ{Å׃Gŏǩãy³©WÑăû‚··‘Q—òı}¯ã‰I•éÕÂZ¨īès¶ZÈsŽæĔTŘvŽgÌsN@îá¾ó@‰˜ÙwU±ÉT廣TđŸWxq¹Zo‘b‹s[׌¯cĩv‡Œėŧ³BM|¹k‰ªħ—¥TzNYnݍßpęrñĠĉRS~½ŠěVVе‚õ‡«ŒM££µB•ĉ¥áºae~³AuĐh`Ü³ç@BۘïĿa©|z²Ý¼D”£à貋ŸƒIƒû›I ā€óK¥}rÝ_Á´éMaň¨€~ªSĈ½Ž½KÙóĿeƃÆBŽ·¬ën×W|Uº}LJrƳ˜lŒµ`bÔ`QˆˆÐÓ@s¬ñIŒÍ@ûws¡åQÑßÁ`ŋĴ{Ī“T•ÚÅTSij‚‹Yo|Ç[ǾµMW¢ĭiÕØ¿@˜šMh…pÕ]j†éò¿OƇĆƇp€êĉâlØw–ěsˆǩ‚ĵ¸c…bU¹ř¨WavquSMzeo_^gsÏ·¥Ó@~¯¿RiīB™Š\\”qTGªÇĜçPoŠÿfñòą¦óQīÈáP•œābß{ƒZŗĸIæÅ„hnszÁCËìñšÏ·ąĚÝUm®ó­L·ăU›Èíoù´Êj°ŁŤ_uµ^‘°Œìǖ@tĶĒ¡Æ‡M³Ģ«˜İĨÅ®ğ†RŽāð“ggheÆ¢z‚Ê©Ô\\°ÝĎz~ź¤Pn–MĪÖB£Ÿk™n鄧żćŠ˜ĆK„ǰ¼L¶è‰âz¨u¦¥LDĘz¬ýÎmĘd¾ß”Fz“hg²™Fy¦ĝ¤ċņbΛ@y‚Ąæm°NĮZRÖíŽJ²öLĸÒ¨Y®ƌÐV‰à˜tt_ڀÂyĠzž]Ţh€zĎ{†ĢX”ˆc|šÐqŽšfO¢¤ög‚ÌHNŽ„PKŖœŽ˜Uú´xx[xˆvĐCûŠìÖT¬¸^}Ìsòd´_އKgžLĴ…ÀBon|H@–Êx˜—¦BpŰˆŌ¿fµƌA¾zLjRxжF”œkĄźRzŀˆ~¶[”´Hnª–VƞuĒ­È¨ƎcƽÌm¸ÁÈM¦x͊ëÀxdžB’šú^´W†£–d„kɾĬpœw‚˂ØɦļĬIŚœÊ•n›Ŕa¸™~J°î”lɌxĤÊÈðhÌ®‚g˜T´øŽàCˆŽÀ^ªerrƘdž¢İP|Ė ŸWœªĦ^¶´ÂL„aT±üWƜ˜ǀRšŶUńšĖ[QhlLüA†‹Ü\\†qR›Ą©"],"encodeOffsets":[[90849,37210]]},"properties":{"cp":[91.132212,29.660361],"name":"西藏","childNum":1}},{"id":"610000","geometry":{"type":"Polygon","coordinates":["@@¸œÂW¢xR­—ƒFq§uF—Œ@NŸ¢XLƒŠRMº[ğȣſï|¥J™kc`sʼnǷ’£Y³‹WN«ùM‘ëï³ÛIg÷±mTșڍÒķø©—þ¥ƒy‚ÓŸğęmWµÎumZyOŅƟĥÓ~sÑL¤µaŅY¦ocyZ{‰y c]{ŒTa©ƒ`U_Ěē£ωÊƍKù’K¶ȱÝƷ§{û»ÅÁȹÍéuij|¹cÑd‘ŠìUYƒŽO‘uF–ÕÈYvÁCqӃT•Ǣí§·S¹NgŠV¬ë÷Át‡°Dد’C´ʼnƒópģ}„ąiE˅FŸŸéGU¥×K…§­¶³B‹Č}C¿åċ`wġB·¤őcƭ²ő[Å^axwQO…ñJÙïŚ•ĤNĔŸwƇˆÄŠńwĪ­Šo[„_KÓª³“ÙnK‰Çƒěœÿ]ď€ă_d©·©Ýŏ°Ù®g]±„Ÿ‡ßš×¥¬÷m\\›iaǑkěX{¢|ZKlçhLt€Ňîŵ€œè[€É@ƉĄEœ‡tƇÏ˜³­ħZ«mJ…›×¾‘MtÝĦ£IwÄå\\Õ{‡˜ƒOwĬ©LÙ³ÙT“ª¿^™¦r̛ĢŭO¥lãyC§HÍ£ßEñŸX¡—­°ÙCgpťz‘ˆb`wI„vA|¥”‡—hoĕ@E±“iYd¥OÿµÇvPŒW|mCƒĴŜǂ҈W¶¸AĜh^Wx{@„¬‚­F¸¡„ķn£P|ŸªĴ@^ĠĈæb–Ôc¶l˜Yi…–^Mi˜cϰÂ[ä€vï¶gv@À“Ĭ·lJ¸sn|¼u~a]’ÆÈtŌºJp’ƒþ£KKf~ЦUbyäIšĺãn‡Ô¿^­žŵMT–hĠܤko¼Ŏìąǜh`[tŒRd²IJ_œXPrɲ‰l‘‚XžiL§àƒ–¹ŽH˜°Ȧqº®QC—bA†„ŌJ¸ĕÚ³ĺ§ `d¨YjžiZvRĺ±öVKkjGȊĐePОZmļKÀ€‚[ŠŽ`ösìh†ïÎoĬdtKÞ{¬èÒÒBŒÔpIJÇĬJŊ¦±J«ˆ[©ārH€µàåVKe§|P²ÇÓ·vUz‰gnN¾yI@oŸHĆۄķhx“e‘n¡QQ’±”ƝJ‹ǖRbzy€¸ËАl›¼EºpĤ¼Œx¼½~Ğ’”à@†ÚüdK^ˆmÌSjˆp²—ȮµšûG™Ħ}Ħšðǚ¶òƄ€jɂz°{ºØkÈęâ¦jª‚Bg‚\\œċ°s¬Ž’]jžú ‚E”Ȍdž¬s„t‡”RˆÆdĠݎwܔ¸ôW¾ƮłÒ_{’Ìšû¼„jº¹¢GǪÒ¯ĘƒZ`ºŊƒecņąš~BÂgzpâēòYƲȐπ"],"encodeOffsets":[[113634,40474]]},"properties":{"cp":[108.948024,34.263161],"name":"陕西","childNum":1}},{"id":"620000","geometry":{"type":"MultiPolygon","coordinates":[["@@Vu_^","@@ų‹EĠtt~nkh`Q‰¦ÅÄÜdw˜Ab×ĠąJˆ¤DüègĺqBqœj°lI¡Ĩ¶šĖIHdš‰ŠjΑBаaZˆ¢KJŽ’O[|A£žDx}Nì•HUnrk„ kp€¼Y kMJn[aG‚áÚÏ[½rc†}aQxOgsPMnUs‡nc‹Z…ž–sKúvA›t„Þġ’£®ĀYKdnFwš¢JE°”Latf`¼h¬we|€Æ‡šbj}GA€·~WŽ”—`†¢MC¤tL©IJ°qdf”O‚“bÞĬ¹ttu`^ZúE`Œ[@„Æsîz®¡’C„ƳƜG²“R‘¢R’m”fŽwĸg܃‚ą G@pzJM½mŠhVy¸uÈÔO±¨{LfæU¶ßGĂq\\ª¬‡²I‚¥IʼnÈīoı‹ÓÑAçÑ|«LÝcspīðÍg…të_õ‰\\ĉñLYnĝg’ŸRǡÁiHLlõUĹ²uQjYi§Z_c¨Ÿ´ĹĖÙ·ŋI…ƒaBD˜­R¹ȥr—¯G•ºß„K¨jWk’ɱŠOq›Wij\\a­‹Q\\sg_ĆǛōëp»£lğۀgS•ŶN®À]ˆÓäm™ĹãJaz¥V}‰Le¤L„ýo‘¹IsŋÅÇ^‘Žbz…³tmEÁ´aйcčecÇN•ĊãÁ\\蝗dNj•]j†—ZµkÓda•ćå]ğij@ ©O{¤ĸm¢ƒE·®ƒ«|@Xwg]A챝‡XǁÑdzªc›wQÚŝñsÕ³ÛV_ýƒ˜¥\\ů¥©¾÷w—Ž©WÕÊĩhÿÖÁRo¸V¬âDb¨šhûx–Ê×nj~Zâƒg|šXÁnßYoº§ZÅŘvŒ[„ĭÖʃuďxcVbnUSf…B¯³_Tzº—ΕO©çMÑ~Mˆ³]µ^püµ”ŠÄY~y@X~¤Z³€[Èōl@®Å¼£QKƒ·Di‹¡By‘ÿ‰Q_´D¥hŗyƒ^ŸĭÁZ]cIzý‰ah¹MĪğP‘s{ò‡‹‘²Vw¹t³Ŝˁ[ŽÑ}X\\gsFŸ£sPAgěp×ëfYHāďÖqēŭOÏë“dLü•\\iŒ”t^c®šRʺ¶—¢H°mˆ‘rYŸ£BŸ¹čIoľu¶uI]vģSQ{ƒUŻ”Å}QÂ|̋°ƅ¤ĩŪU ęĄžÌZҞ\\v˜²PĔ»ƢNHƒĂyAmƂwVmž`”]ȏb•”H`‰Ì¢²ILvĜ—H®¤Dlt_„¢JJÄämèÔDëþgºƫ™”aʎÌrêYi~ ÎݤNpÀA¾Ĕ¼b…ð÷’Žˆ‡®‚”üs”zMzÖĖQdȨý†v§Tè|ªH’þa¸|šÐ ƒwKĢx¦ivr^ÿ ¸l öæfƟĴ·PJv}n\\h¹¶v†·À|\\ƁĚN´Ĝ€çèÁz]ġ¤²¨QÒŨTIl‡ªťØ}¼˗ƦvÄùØE‹’«Fï˛Iq”ōŒTvāÜŏ‚íÛߜÛV—j³âwGăÂíNOŠˆŠPìyV³ʼnĖýZso§HіiYw[߆\\X¦¥c]ÔƩÜ·«j‡ÐqvÁ¦m^ċ±R™¦΋ƈťĚgÀ»IïĨʗƮްƝ˜ĻþÍAƉſ±tÍEÕÞāNU͗¡\\ſčåÒʻĘm ƭÌŹöʥ’ëQ¤µ­ÇcƕªoIýˆ‰Iɐ_mkl³ă‰Ɠ¦j—¡Yz•Ňi–}Msßõ–īʋ —}ƒÁVmŸ_[n}eı­Uĥ¼‘ª•I{ΧDӜƻėoj‘qYhĹT©oūĶ£]ďxĩ‹ǑMĝ‰q`B´ƃ˺Ч—ç~™²ņj@”¥@đ´ί}ĥtPńǾV¬ufӃÉC‹tÓ̻‰…¹£G³€]ƖƾŎĪŪĘ̖¨ʈĢƂlɘ۪üºňUðǜȢƢż̌ȦǼ‚ĤŊɲĖ­KqĘʼn¼ĔDzņɾªǀÞĈĂD†½ĄĎÌŗĞrôñnŽœN¼â¾ʄľԆ|DŽŽ֦ज़ȗlj̘̭ɺƅêgV̍ʆĠ·ÌĊv|ýĖÕWĊǎÞ´õ¼cÒÒBĢ͢UĜð͒s¨ňƃLĉÕÝ@ɛƯ÷¿Ľ­ĹeȏijëCȚDŲyê×Ŗyò¯ļcÂßY…tÁƤyAã˾J@ǝrý‹‰@¤…rz¸oP¹ɐÚyᐇHŸĀ[Jw…cVeȴϜ»ÈŽĖ}ƒŰŐèȭǢόĀƪÈŶë;Ñ̆ȤМľĮEŔ—ĹŊũ~ËUă{ŸĻƹɁύȩþĽvĽƓÉ@ē„ĽɲßǐƫʾǗĒpäWÐxnsÀ^ƆwW©¦cÅ¡Ji§vúF¶Ž¨c~c¼īŒeXǚ‹\\đ¾JŽwÀďksãA‹fÕ¦L}wa‚o”Z’‹D½†Ml«]eÒÅaɲáo½FõÛ]ĻÒ¡wYR£¢rvÓ®y®LF‹LzĈ„ôe]gx}•|KK}xklL]c¦£fRtív¦†PŨ£","@@Mš T‡¥"]],"encodeOffsets":[[[108619,36299],[108594,36341],[108600,36306]]]},"properties":{"cp":[103.823557,36.058039],"name":"甘肃","childNum":3}},{"id":"630000","geometry":{"type":"MultiPolygon","coordinates":[["@@InJo","@@CƒÆ½OŃĦsΰ~dz¦@@“Ņiš±è}ؘƄ˹A³r_ĞŠǒNΌĐw¤^ŬĵªpĺSZg’rpiƼĘԛ¨C|͖J’©Ħ»®VIJ~f\\m `Un„˜~ʌŸ•ĬàöNt•~ňjy–¢Zi˜Ɣ¥ĄŠk´nl`JʇŠJþ©pdƖ®È£¶ìRʦ‘źõƮËnŸʼėæÑƀĎ[‚˜¢VÎĂMÖÝÎF²sƊƀÎBļýƞ—¯ʘƭðħ¼Jh¿ŦęΌƇš¥²Q]Č¥nuÂÏriˆ¸¬ƪÛ^Ó¦d€¥[Wà…x\\ZŽjҕ¨GtpþYŊĕ´€zUO뇉P‰îMĄÁxH´á˜iÜUà›îÜՁĂÛSuŎ‹r“œJð̬EŒ‘FÁú×uÃÎkr“Ē{V}İ«O_ÌËĬ©ŽÓŧSRѱ§Ģ£^ÂyèçěM³Ƃę{[¸¿u…ºµ[gt£¸OƤĿéYŸõ·kŸq]juw¥Dĩƍ€õÇPéĽG‘ž©ã‡¤G…uȧþRcÕĕNy“yût“ˆ­‡ø‘†ï»a½ē¿BMoᣟÍj}éZËqbʍš“Ƭh¹ìÿÓAçãnIáI`ƒks£CG­ě˜Uy×Cy•…’Ÿ@¶ʡÊBnāzG„ơMē¼±O÷õJËĚăVŸĪũƆ£Œ¯{ËL½Ìzż“„VR|ĠTbuvJvµhĻĖH”Aëáa…­OÇðñęNw‡…œľ·L›mI±íĠĩPÉ×®ÿs—’cB³±JKßĊ«`…ađ»·QAmO’‘Vţéÿ¤¹SQt]]Çx€±¯A@ĉij¢Ó祖•ƒl¶ÅÛr—ŕspãRk~¦ª]Į­´“FR„åd­ČsCqđéFn¿Åƃm’Éx{W©ºƝºįkÕƂƑ¸wWūЩÈFž£\\tÈ¥ÄRÈýÌJ ƒlGr^×äùyÞ³fj”c†€¨£ÂZ|ǓMĝšÏ@ëÜőR‹›ĝ‰Œ÷¡{aïȷPu°ËXÙ{©TmĠ}Y³’­ÞIňµç½©C¡į÷¯B»|St»›]vƒųƒs»”}MÓ ÿʪƟǭA¡fs˜»PY¼c¡»¦c„ċ­¥£~msĉP•–Siƒ^o©A‰Šec‚™PeǵŽkg‚yUi¿h}aH™šĉ^|ᴟ¡HØûÅ«ĉ®]m€¡qċ¶±ÈyôōLÁst“BŸ®wn±ă¥HSò뚣˜S’ë@לÊăxÇN©™©T±ª£IJ¡fb®ÞbŽb_Ą¥xu¥B—ž{łĝ³«`d˜Ɛt—¤ťiñžÍUuºí`£˜^tƃIJc—·ÛLO‹½Šsç¥Ts{ă\\_»™kϊ±q©čiìĉ|ÍIƒ¥ć¥›€]ª§D{ŝŖÉR_sÿc³Īō›ƿΑ›§p›[ĉ†›c¯bKm›R¥{³„Z†e^ŽŒwx¹dƽŽôIg §Mĕ ƹĴ¿—ǣÜ̓]‹Ý–]snåA{‹eŒƭ`ǻŊĿ\\ijŬű”YÂÿ¬jĖqŽßbЏ•L«¸©@ěĀ©ê¶ìÀEH|´bRľž–Ó¶rÀQþ‹vl®Õ‚E˜TzÜdb ˜hw¤{LR„ƒd“c‹b¯‹ÙVgœ‚ƜßzÃô쮍^jUèXΖ|UäÌ»rKŽ\\ŒªN‘¼pZCü†VY††¤ɃRi^rPҒTÖ}|br°qňb̰ªiƶGQ¾²„x¦PœmlŜ‘[Ĥ¡ΞsĦŸÔÏâ\\ªÚŒU\\f…¢N²§x|¤§„xĔsZPòʛ²SÐqF`ª„VƒÞŜĶƨVZŒÌL`ˆ¢dŐIqr\\oäõ–F礻Ŷ×h¹]Clـ\\¦ďÌį¬řtTӺƙgQÇÓHţĒ”´ÃbEÄlbʔC”|CˆŮˆk„Ʈ[ʼ¬ňœ´KŮÈΰÌζƶlð”ļA†TUvdTŠG†º̼ŠÔ€ŒsÊDԄveMg"]],"encodeOffsets":[[[105308,37219],[95370,40081]]]},"properties":{"cp":[101.778916,36.623178],"name":"青海","childNum":2}},{"id":"640000","geometry":{"type":"Polygon","coordinates":["@@KëÀęĞ«OęȿȕŸı]ʼn¡åįÕÔ«Ǵõƪ™ĚQÐZhv K°›öqÀѐS[ÃÖHƖčË‡nL]ûc…Ùß@‚“ĝ‘¾}w»»‹oģF¹œ»kÌÏ·{zPƒ§B­¢íyÅt@ƒ@áš]Yv_ssģ¼i߁”ĻL¾ġsKD£¡N_…“˜X¸}B~Haiˆ™Åf{«x»ge_bs“KF¯¡Ix™mELcÿZ¤­Ģ‘ƒÝœsuBLù•t†ŒYdˆmVtNmtOPhRw~bd…¾qÐ\\âÙH\\bImlNZŸ»loƒŸqlVm–Gā§~QCw¤™{A\\‘PKŸNY‡¯bF‡kC¥’sk‹Šs_Ã\\ă«¢ħkJi¯r›rAhĹûç£CU‡ĕĊ_ԗBixÅُĄnªÑaM~ħpOu¥sîeQ¥¤^dkKwlL~{L~–hw^‚ófćƒKyEŒ­K­zuÔ¡qQ¤xZÑ¢^ļöܾEpž±âbÊÑÆ^fk¬…NC¾‘Œ“YpxbK~¥Že֎ŒäBlt¿Đx½I[ĒǙŒWž‹f»Ĭ}d§dµùEuj¨‚IÆ¢¥dXªƅx¿]mtÏwßR͌X¢͎vÆzƂZò®ǢÌʆCrâºMÞzžÆMҔÊÓŊZľ–r°Î®Ȉmª²ĈUªĚøºˆĮ¦ÌĘk„^FłĬhĚiĀ˾iİbjË"],"encodeOffsets":[[109366,40242]]},"properties":{"cp":[106.278179,38.46637],"name":"宁夏","childNum":1}},{"id":"650000","geometry":{"type":"Polygon","coordinates":["@@QØĔ²X¨”~ǘBºjʐߨvK”ƔX¨vĊOžÃƒ·¢i@~c—‡ĝe_«”Eš“}QxgɪëÏÃ@sÅyXoŖ{ô«ŸuX…ê•Îf`œC‚¹ÂÿÐGĮÕĞXŪōŸMźÈƺQèĽôe|¿ƸJR¤ĘEjcUóº¯Ĩ_ŘÁMª÷Ð¥Oéȇ¿ÖğǤǷÂF҇zÉx[]­Ĥĝ‰œ¦EP}ûƥé¿İƷTėƫœŕƅ™ƱB»Đ±’ēO…¦E–•}‘`cȺrĦáŖuҞª«IJ‡πdƺÏØZƴwʄ¤ĖGЙǂZ̓èH¶}ÚZצʥĪï|ÇĦMŔ»İĝLj‹ì¥Βœba­¯¥ǕǚkĆŵĦɑĺƯxūД̵nơʃĽá½M»›òmqóŘĝč˾ăC…ćāƿÝɽ©DZŅ»ēėŊLrÁ®ɱĕģʼnǻ̋ȥơŻǛȡVï¹Ň۩ûkɗġƁ§ʇė̕ĩũƽō^ƕŠUv£ƁQï“Ƶkŏ½ΉÃŭdzLқʻ«ƭ\\lƒ‡ŭD‡“{ʓDkaFÃÄa“³ŤđÔGRÈƚhSӹŚsİ«ĐË[¥ÚDkº^Øg¼ŵ¸£EÍö•€ůʼnT¡c_‡ËKY‹ƧUśĵ„݃U_©rETÏʜ±OñtYw獃{£¨uM³x½şL©Ùá[ÓÐĥ Νtģ¢\\‚ś’nkO›w¥±ƒT»ƷFɯàĩÞáB¹Æ…ÑUw„੍žĽw]•kE½Èå~‡Æ÷QyŠěCFmĭZī—ŵVÁ™ƿQƛ—ûXS²‰b½KϽĉS›©ŷXĕŸ{ŽĕK·¥Ɨcqq©f¿]‡ßDõU³h—­gËÇïģÉɋw“k¯í}I·šœbmœÉ–ř›īJɥĻˁ×xo›ɹī‡l•c…¤³Xù]‘™DžA¿w͉ì¥wÇN·ÂËnƾƍdǧđ®Ɲv•Um©³G\\“}µĿ‡QyŹl㓛µEw‰LJQ½yƋBe¶ŋÀů‡ož¥A—˜Éw@•{Gpm¿Aij†ŽKLhˆ³`ñcËtW‚±»ÕS‰ëüÿďD‡u\\wwwù³—V›LŕƒOMËGh£õP¡™er™Ïd{“‡ġWÁ…č|yšg^ğyÁzÙs`—s|ÉåªÇ}m¢Ń¨`x¥’ù^•}ƒÌ¥H«‰Yªƅ”Aйn~Ꝛf¤áÀz„gŠÇDIԝ´AňĀ҄¶ûEYospõD[{ù°]u›Jq•U•|Soċxţ[õÔĥkŋÞŭZ˺óYËüċrw €ÞkrťË¿XGÉbřaDü·Ē÷Aê[Ää€I®BÕИÞ_¢āĠpŠÛÄȉĖġDKwbm‡ÄNô‡ŠfœƫVÉvi†dz—H‘‹QµâFšù­Âœ³¦{YGžƒd¢ĚÜO „€{Ö¦ÞÍÀPŒ^b–ƾŠl[‚vt×ĈÍE˨¡Đ~´î¸ùÎh€uè`¸ŸHÕŔVºwĠââWò‡@{œÙNÝ´ə²ȕn{¿¥{l—÷eé^e’ďˆXj©î\\ªÑò˜Üìc\\üqˆÕ[Č¡xoÂċªbØ­Œø|€¶ȴZdÆÂšońéŒGš\\”¼C°ÌƁn´nxšÊOĨ’ہƴĸ¢¸òTxÊǪMīИÖŲÃɎOvˆʦƢ~FއRěò—¿ġ~åŊœú‰Nšžš¸qŽ’Ę[Ĕ¶ÂćnÒPĒÜvúĀÊbÖ{Äî¸~Ŕünp¤ÂH¾œĄYÒ©ÊfºmԈĘcDoĬMŬ’˜S¤„s²‚”ʘچžȂVŦ –ŽèW°ªB|IJXŔþÈJĦÆæFĚêŠYĂªĂ]øªŖNÞüA€’fɨJ€˜¯ÎrDDšĤ€`€mz\\„§~D¬{vJÂ˜«lµĂb–¤p€ŌŰNĄ¨ĊXW|ų ¿¾ɄĦƐMT”‡òP˜÷fØĶK¢ȝ˔Sô¹òEð­”`Ɩ½ǒÂň×äı–§ĤƝ§C~¡‚hlå‚ǺŦŞkâ’~}ŽFøàIJaĞ‚fƠ¥Ž„Ŕdž˜®U¸ˆźXœv¢aƆúŪtŠųƠjd•ƺŠƺÅìnrh\\ĺ¯äɝĦ]èpĄ¦´LƞĬŠ´ƤǬ˼Ēɸ¤rºǼ²¨zÌPðŀbþ¹ļD¢¹œ\\ĜÑŚŸ¶ZƄ³âjĦoâŠȴLʉȮŒĐ­ĚăŽÀêZǚŐ¤qȂ\\L¢ŌİfÆs|zºeªÙæ§΢{Ā´ƐÚ¬¨Ĵà²łhʺKÞºÖTŠiƢ¾ªì°`öøu®Ê¾ãÖ"],"encodeOffsets":[[88824,50096]]},"properties":{"cp":[87.617733,43.792818],"name":"新疆","childNum":1}},{"id":"110000","geometry":{"type":"Polygon","coordinates":["@@R„ºaY՜™QaúÍÔiþĩȨWĢ‹ü|Ėu[qb[swP@ÅğP¿{\\‡¯Y²·‘Ѩj¯ŠX\\¯œMSvU¯YIŕY{[fk­VÁ›ûtŷmiÍt_H»Ĩ±d`й­{bw…Yr“³S]§§o¹€qGtm_Sŧ€“oa›‹FLg‘QN_•dV€@Zom_ć\\ߚW´—€ÕiœRcfi…Ÿ’o§ËgToÛJíĔóu…|wP¤™XnO¢ÉŠŦ¯pNÄā¤zâŖÈRpŢZŠœÚ{GŠrFt¦Òx§ø¹RóäV¤XdˆżâºWbwڍUd®bêņ¾‘jnŎGŃŶŠnzÚScîĚZŠen¬"],"encodeOffsets":[[119421,42013]]},"properties":{"cp":[116.405285,39.904989],"name":"北京","childNum":1}},{"id":"120000","geometry":{"type":"Polygon","coordinates":["@@ŬgX§Ü«E…¶Ḟ“¬O_™ïlÁg“z±AXe™µÄĵ{¶]gitgšIj·›¥ì_iU€‰¨ÐƎk}ĕ{gB—qGf{¿a†U^fI“ư‹³õ{YƒıëNĿžk©ïËZukāA‘īlĕĥs¡bġ«@dekąI[nlPqCnp{ˆō³°`{PNdƗqSÄĻNNâyj]äžÒD ĬH°Æ]~¡HO¾ŒX}ÐxŒgp“gWˆrDGˆŒpù‚Š^L‚ˆrzWxˆZ^¨´T\\|~@I‰zƒ–bĤ‹œjeĊªz£®Ĕvě€L†mV¾Ô_ȔNW~zbĬvG†²ZmDM~”~"],"encodeOffsets":[[120237,41215]]},"properties":{"cp":[117.190182,39.125596],"name":"天津","childNum":1}},{"id":"310000","geometry":{"type":"MultiPolygon","coordinates":[["@@ɧư¬EpƸÁx]‡","@@©„²ƒ","@@”MA‹“˜","@@QpªK†WT…‰‰§¨","@@bŝՕÕEȣÚƥêImɇǦèÜĠŒÚÄÓŴ·ʌÇ","@@S‚ô¤r]ì†ƬįǜûȬɋŠŭ™×^‰sYŒɍDŋ‘ŽąñCG²«ªč@h–_p¯A{‡oloY€¬j@IJ`•gQڙpptǀ^MIJvtbe´Rh@–oj¨ž","@@ÆLH{a}Eo¦"]],"encodeOffsets":[[[124702,32062],[124547,32200],[124808,31991],[124726,32110],[124903,32376],[124065,32166],[124870,31965]]]},"properties":{"cp":[121.472644,31.231706],"name":"上海","childNum":7}},{"id":"500000","geometry":{"type":"Polygon","coordinates":["@@TÂÛ`Ùƅően½S‹êqDu[R‹å͹ˆ÷eXÍy‘¸_ĺę}÷`M¯ċfCVµqʼn÷Z•gg‘Œ^d½pDO‡ÎCnœ^uf²ènh¼WtƏxRGg¦…pV„†FI±ŽG^ŒIc´ec‡’G•ĹÞ½sëÆNä̤“Kӈe¯|‚R¸§L‘ÜkPoïƭNï¶}Gy“wdiù©nkĈzjŸ•@™Óc£»Wă¹Óf§c[µŠo·Ó|MvÛaqœ½«‡èœ’\\ÂoVnŽÓØÍ™²«‹bq¿eƒhCž„€‹Ĝ^Qž~ Évý‡ş¤²Į‰pEĶyhsŊwH‹½‡š¿gņ›¡ýE¡ya£³t\\¨\\vú¹¼©·Ñr_oÒý¥‚‘et³]—Et©uÖ¥±ă©KVeëƒ]}wVPÀFA¨ąB}qTjgRemfFm‰QF݅My˜ù•nцAmыCaƒwŒu_p—¯sfۍ_g†“I_pNysBЦzG¸rHe‚„N\\CvEsÐñÚkcD‘ÖĉsaQ¯€}_U‡†zÁēˆ}Ÿ^R •Äd^ÍĸZ¾·¶ƒ`wećJEž¹vÛ·Hgƒ‚éFXjÉê`|yŒpxkAwœWĐpb¥eOsmzwqChóUQl¥F^laf‹anòsr›EvfQdÁUVf—ÎvÜ^efˆtET¬ôA\\œ¢sJŽnQTjP؈xøK|nBz‰„œĞ»LY‚…FDxӄvr“[ehľš•vN”¢o¾NiÂxGp⬐z›bfZo~hGi’]öF|‰|Nb‡tOMn eA±ŠtPT‡LjpYQ|†SH††YĀxinzDJ€Ìg¢và¥Pg‰_–ÇzII‹€II•„£®S¬„Øsμ–¥¨^LšnGIJļIJƤjÎƀƾ¹¸ØÎezĆT¸}êЖqHŸðqĖ䒊¥^CƒIj–²p…\\_ æüY|[YxƊæuž°xb®…Űb@~¢NQt°¶‚S栓Ê~rljĔëĚ¢~šuf`‘‚†fa‚ĔJåĊ†nÔ]„jƎćÊ@Š£¾a®£Ű{ŶĕF‹ègLk{Y|¡ĜWƔtƬJÑxq‹±ĢN´‰òK‰™–LÈüD|s`ŋ’ć]ƒÃ‰`đŒMùƱ¿~Y°ħ`ƏíW‰½eI‹½{aŸ‘OIrÏ¡ĕŇa†p†µÜƃġ‰²"],"encodeOffsets":[[111728,31311]]},"properties":{"cp":[106.504962,29.533155],"name":"重庆","childNum":1}},{"id":"810000","geometry":{"type":"MultiPolygon","coordinates":[["@@AlFi","@@mŽp","@@EpHo","@@rMUw‡AS¬€]","@@ea¢pl¸Eõ¹‡hj[ƒ]ÔCΖ@lj˜¡uBXŸ…•´‹AI¹…[‹yDUˆ]W`çwZkmc–…M›žp€Åv›}I‹oJlcaƒfёKްä¬XJmРđhI®æÔtSHn€Eˆ„ÒrÄc"]],"encodeOffsets":[[[117111,23002],[117072,22876],[117045,22887],[116882,22747],[116975,23082]]]},"properties":{"cp":[114.173355,22.320048],"name":"香港","childNum":5}},{"id":"820000","geometry":{"type":"Polygon","coordinates":["@@œá—w{ÎrŽ"],"encodeOffsets":[[116285,22746]]},"properties":{"cp":[113.54909,22.198951],"name":"澳门","childNum":1}}],"UTF8Encoding":true}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"顺义区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.863170195313,40.2896681953126],[116.873267851563,40.2634804511719],[116.898316679688,40.2285353828125],[116.927345,40.223843],[116.934151640625,40.2196486640625],[116.927926054688,40.1996486640626],[116.944151640625,40.1896486640626],[116.940538359375,40.1780373359375],[116.970382109375,40.1596486640626],[116.960777617188,40.1288112617188],[116.973912382813,40.0888747382813],[116.970787382813,40.0788430000001],[116.974151640625,40.0680373359375],[116.961158476563,40.0600307441407],[116.957345,40.0438430000001],[116.927613554688,40.0511452460938],[116.912345,40.0477223945313],[116.902345,40.0499636054687],[116.872345,40.0432387519532],[116.83033328125,40.0526564765625],[116.813013945313,40.0275722480469],[116.802345,40.0299636054688],[116.792345,40.0277223945312],[116.7720715625,40.0322670722656],[116.767345,40.0138430000001],[116.733414335938,40.0220180488282],[116.712345,40.0178554511719],[116.702345,40.0198305488282],[116.677261992188,40.0148744941406],[116.6016028125,40.0299806953126],[116.597345,40.0138430000001],[116.5466028125,40.0430995917969],[116.51838015625,40.0758571601563],[116.457345,40.0838430000001],[116.46142703125,40.0897585273438],[116.486158476563,40.1068325019531],[116.475621367188,40.153843],[116.483565703125,40.1892897773437],[116.465953398438,40.2163381171876],[116.497345,40.263843],[116.512345,40.2583339667969],[116.550831328125,40.2724672675781],[116.604410429688,40.2578041816407],[116.622345,40.2592446113281],[116.637345,40.2580397773438],[116.653961210938,40.2593752265626],[116.676456328125,40.2332692695312],[116.737345,40.283843],[116.746568632813,40.27097190625],[116.762779570313,40.26776878125],[116.781519804688,40.2796681953125],[116.81666140625,40.2889394355469],[116.837345,40.3177956367188],[116.851519804688,40.2980178046876],[116.863170195313,40.2896681953126]],[[116.574132109375,40.0617617011719],[116.597345,40.0438430000001],[116.59297,40.0896742988281],[116.581832304688,40.0880287910156],[116.567506132813,40.1065908027344],[116.574132109375,40.0617617011719]]]]}},{"type":"Feature","properties":{"name":"昌平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.140767851563,40.3316506171876],[116.149537382813,40.3404201484375],[116.141793242188,40.3593959785156],[116.21209109375,40.3794960761719],[116.232345,40.376977765625],[116.257345,40.3800868964844],[116.281890898438,40.3770339179688],[116.287345,40.3838430000001],[116.33797,40.3775112128907],[116.364273710938,40.3342006660157],[116.417345,40.3275991035156],[116.44150515625,40.3306044746094],[116.443590117188,40.3138430000001],[116.440909453125,40.2923207832031],[116.481793242188,40.2682900214844],[116.497345,40.263843],[116.465953398438,40.2163381171876],[116.483565703125,40.1892897773437],[116.475621367188,40.153843],[116.486158476563,40.1068325019531],[116.46142703125,40.0897585273438],[116.457345,40.0838430000001],[116.453214140625,40.0510927558594],[116.427110625,40.0638417792969],[116.400704375,40.050483625],[116.393985625,40.037202375],[116.387345,40.033843],[116.382896757813,40.0393959785157],[116.360885039063,40.0486708808594],[116.38025515625,40.0641799140625],[116.327345,40.0575991035156],[116.29736453125,40.0613283515625],[116.282896757813,40.0793959785157],[116.266236601563,40.0927370429687],[116.252799101563,40.1095217109375],[116.241846953125,40.10815940625],[116.232896757813,40.1293959785156],[116.201793242188,40.1482900214844],[116.192545195313,40.1598378730469],[116.16138796875,40.1415248847657],[116.163404570313,40.1253383613282],[116.067164335938,40.1085903144531],[116.047345,40.0838430000001],[116.007642851563,40.0773207832032],[115.982345,40.081059796875],[115.961773710938,40.0780202460938],[115.95298953125,40.0994863105469],[115.909117460938,40.1333498359376],[115.847345,40.143843],[115.840396757813,40.1721401191407],[115.86326296875,40.1879274726563],[115.884346953125,40.2248671699219],[115.91978640625,40.2493361640625],[115.95326296875,40.2579274726563],[115.957345,40.263843],[115.981314726563,40.283755109375],[115.982896757813,40.299233625],[115.962808867188,40.3159181953125],[116.009464140625,40.3333303046875],[116.029420195313,40.3093056464844],[116.042808867188,40.3183803535156],[116.054298125,40.332212140625],[116.092345,40.3283339667969],[116.102735625,40.3293923164063],[116.119420195313,40.3093056464844],[116.132896757813,40.3184401679688],[116.130855742188,40.338452375],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"朝阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.617345,39.8938430000001],[116.630152617188,39.8888430000001],[116.617345,39.883843]]],[[[116.617345,39.8938430000001],[116.604537382813,39.8888430000001],[116.617345,39.883843],[116.613443632813,39.8577455878907],[116.601246367188,39.8499404121094],[116.5914465625,39.8220705390626],[116.536158476563,39.8376076484375],[116.527345,39.823843],[116.473433867188,39.8149867988282],[116.437838164063,39.8202480292969],[116.427345,39.833843],[116.454151640625,39.8484108710938],[116.437345,39.873843],[116.4308215625,39.9135451484376],[116.435811796875,39.9473073554688],[116.405264921875,39.9708876777344],[116.387345,39.9638430000001],[116.387345,39.9738430000001],[116.377345,39.9738430000001],[116.349678984375,40.0225026679688],[116.387345,40.033843],[116.393985625,40.037202375],[116.400704375,40.050483625],[116.427110625,40.0638417792969],[116.453214140625,40.0510927558594],[116.457345,40.0838430000001],[116.51838015625,40.0758571601563],[116.5466028125,40.0430995917969],[116.597345,40.0138430000001],[116.64142703125,40.0025295234375],[116.63326296875,39.9479274726563],[116.62142703125,39.9297585273438],[116.617345,39.8938430000001]]],[[[116.567506132813,40.1065908027344],[116.581832304688,40.0880287910156],[116.59297,40.0896742988281],[116.597345,40.0438430000001],[116.574132109375,40.0617617011719],[116.567506132813,40.1065908027344]]]]}},{"type":"Feature","properties":{"name":"大兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.417345,39.503843],[116.410499296875,39.5277809882813],[116.392896757813,39.5108327460938],[116.407345,39.4837270332032],[116.422345,39.47640159375],[116.43334109375,39.4817702460938],[116.447345,39.453843],[116.44005984375,39.4447475410156],[116.331793242188,39.4582900214844],[116.292896757813,39.4893959785156],[116.261793242188,39.4982900214844],[116.237345,39.5138430000001],[116.237345,39.563843],[116.217345,39.563843],[116.217345,39.573843],[116.2116028125,39.6088088203125],[116.213824492188,39.6238430000001],[116.210562773438,39.6458974433594],[116.24298953125,39.7481996894532],[116.247345,39.793843],[116.284703398438,39.7890627265625],[116.302413359375,39.7677419257813],[116.32748171875,39.8083803535157],[116.352808867188,39.7993056464844],[116.369420195313,39.7793056464844],[116.431300078125,39.7922487617188],[116.407515898438,39.8120082832032],[116.421881132813,39.8293056464844],[116.427345,39.833843],[116.437838164063,39.8202480292969],[116.473433867188,39.8149867988282],[116.527345,39.823843],[116.532882109375,39.8091078925782],[116.530816679688,39.788843],[116.532896757813,39.768452375],[116.515308867188,39.753843],[116.532896757813,39.7392336250001],[116.530011015625,39.7109609199219],[116.641480742188,39.7223220039063],[116.6428528125,39.7088430000001],[116.640968046875,39.6903578925781],[116.661881132813,39.6783803535156],[116.692808867188,39.6693056464844],[116.701881132813,39.6483803535157],[116.717345,39.6238430000001],[116.699390898438,39.6099831367187],[116.713160429688,39.5993544746094],[116.710972929688,39.5845546699219],[116.667174101563,39.6017726875],[116.638736601563,39.5975710273438],[116.58013796875,39.6206081367187],[116.54298953125,39.5981996894532],[116.52170046875,39.5894863105469],[116.512095976563,39.5660195136719],[116.471519804688,39.5494130683594],[116.4731653125,39.5383034492188],[116.44170046875,39.5194863105469],[116.43298953125,39.5081996894532],[116.417345,39.503843]]]]}},{"type":"Feature","properties":{"name":"房山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.773839140625,39.9269374824219],[115.84232546875,39.8984535957032],[115.898365507813,39.9185622382812],[115.94166140625,39.9066347480469],[115.912628203125,39.8806923652344],[115.952154570313,39.8685341621094],[115.982735625,39.8703566718751],[115.981436796875,39.8486074042969],[116.047345,39.843843],[116.072535429688,39.8290334296875],[116.085533476563,39.7879787421875],[116.122125273438,39.7894289375001],[116.122545195313,39.7788430000001],[116.1217590625,39.7590334296875],[116.152535429688,39.7686525703125],[116.162877226563,39.7798122382813],[116.192530546875,39.778637921875],[116.2157825,39.8279079414063],[116.247345,39.793843],[116.24298953125,39.7481996894532],[116.210562773438,39.6458974433594],[116.213824492188,39.6238430000001],[116.2116028125,39.6088088203125],[116.217345,39.573843],[116.163424101563,39.5856044746094],[116.131104765625,39.56757346875],[116.0123840625,39.5792482734376],[115.992667265625,39.5776638007813],[115.975640898438,39.5974306464844],[115.962345,39.5676381660156],[115.939742460938,39.5694533515626],[115.92271609375,39.5892153144532],[115.901168242188,39.5984706855469],[115.903526640625,39.5691664863281],[115.8780090625,39.54718284375],[115.843326445313,39.5499697089844],[115.820465117188,39.5372158027345],[115.822847929688,39.5075978828125],[115.773961210938,39.5115248847656],[115.767345,39.503843],[115.749595976563,39.5160964179688],[115.73326296875,39.5397585273438],[115.69142703125,39.5679274726563],[115.68326296875,39.5997585273438],[115.665211210938,39.6122206855469],[115.642789335938,39.5976222968751],[115.632345,39.5999636054688],[115.622345,39.5977223945313],[115.607345,39.6010842109375],[115.569581328125,39.5926186347657],[115.537345,39.6136110664062],[115.5080090625,39.5945082832032],[115.515709257813,39.6288430000001],[115.510079375,39.6539394355469],[115.475753203125,39.6462441230469],[115.493585234375,39.6887050605469],[115.478150664063,39.7385036445313],[115.434874296875,39.7496096015625],[115.42326296875,39.7776625800782],[115.4810559375,39.7924941230469],[115.507345,39.7866017890625],[115.552979765625,39.79683128125],[115.557345,39.8138430000001],[115.583902617188,39.8188002753907],[115.627891875,39.8680300117188],[115.672628203125,39.8885622382813],[115.692061796875,39.8991237617188],[115.722628203125,39.9085622382813],[115.773839140625,39.9269374824219]]]]}},{"type":"Feature","properties":{"name":"丰台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.317345,39.8938430000001],[116.321324492188,39.8769472480469],[116.35845828125,39.8653823066407],[116.377345,39.873843],[116.39634890625,39.8501113105469],[116.411793242188,39.8693959785156],[116.437345,39.873843],[116.454151640625,39.8484108710938],[116.427345,39.833843],[116.421881132813,39.8293056464844],[116.407515898438,39.8120082832032],[116.431300078125,39.7922487617188],[116.369420195313,39.7793056464844],[116.352808867188,39.7993056464844],[116.32748171875,39.8083803535157],[116.302413359375,39.7677419257813],[116.284703398438,39.7890627265625],[116.247345,39.793843],[116.2157825,39.8279079414063],[116.192530546875,39.778637921875],[116.162877226563,39.7798122382813],[116.152535429688,39.7686525703125],[116.1217590625,39.7590334296875],[116.122545195313,39.7788430000001],[116.122125273438,39.7894289375001],[116.085533476563,39.7879787421875],[116.072535429688,39.8290334296875],[116.047345,39.843843],[116.05388796875,39.8544655585938],[116.131158476563,39.8800307441406],[116.157345,39.883843],[116.210953398438,39.8771450019531],[116.231793242188,39.8893959785157],[116.247345,39.8938430000001],[116.292506132813,39.8882009101563],[116.317345,39.8938430000001]]]]}},{"type":"Feature","properties":{"name":"海淀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.232896757813,40.1293959785156],[116.241846953125,40.10815940625],[116.252799101563,40.1095217109375],[116.266236601563,40.0927370429687],[116.282896757813,40.0793959785157],[116.29736453125,40.0613283515625],[116.327345,40.0575991035156],[116.38025515625,40.0641799140625],[116.360885039063,40.0486708808594],[116.382896757813,40.0393959785157],[116.387345,40.033843],[116.349678984375,40.0225026679688],[116.377345,39.9738430000001],[116.377345,39.9638430000001],[116.367345,39.9638430000001],[116.367345,39.943843],[116.327345,39.943843],[116.327345,39.8938430000001],[116.317345,39.8938430000001],[116.292506132813,39.8882009101563],[116.247345,39.8938430000001],[116.243199492188,39.9201552558594],[116.199312773438,39.910317609375],[116.208101835938,39.9495131660157],[116.18142703125,39.9679274726563],[116.17326296875,39.9797585273438],[116.15142703125,39.9879274726563],[116.147345,39.993843],[116.16716921875,40.0075283027344],[116.130113554688,40.0286782050781],[116.07142703125,40.0379274726563],[116.06326296875,40.0597585273437],[116.047345,40.0838430000001],[116.067164335938,40.1085903144531],[116.163404570313,40.1253383613282],[116.16138796875,40.1415248847657],[116.192545195313,40.1598378730469],[116.201793242188,40.1482900214844],[116.232896757813,40.1293959785156]]]]}},{"type":"Feature","properties":{"name":"怀柔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.682413359375,41.0035353828125],[116.67326296875,40.9684670234375],[116.70326296875,40.9297585273438],[116.714508085938,40.8997035957032],[116.75326296875,40.8897585273438],[116.80142703125,40.8479274726563],[116.83326296875,40.8397585273438],[116.869464140625,40.8245522285157],[116.877345,40.793843],[116.861881132813,40.7893056464844],[116.831519804688,40.7719167304688],[116.8328528125,40.758843],[116.831685820313,40.7473818183595],[116.812345,40.7493520332032],[116.797345,40.7478237128906],[116.780748320313,40.7495156074219],[116.7844934375,40.7127577949219],[116.713394804688,40.6861269355469],[116.700079375,40.6260756660157],[116.705826445313,40.5696901679688],[116.6732434375,40.5555580878907],[116.706422148438,40.5279970527344],[116.685406523438,40.4720680976563],[116.712896757813,40.449233625],[116.711807890625,40.4385781074219],[116.723072539063,40.4086000800782],[116.708975859375,40.3968910957032],[116.714620390625,40.3415309882813],[116.761016875,40.3214076972656],[116.737345,40.283843],[116.676456328125,40.2332692695312],[116.653961210938,40.2593752265626],[116.637345,40.2580397773438],[116.622345,40.2592446113281],[116.604410429688,40.2578041816407],[116.550831328125,40.2724672675781],[116.512345,40.2583339667969],[116.497345,40.263843],[116.481793242188,40.2682900214844],[116.440909453125,40.2923207832031],[116.443590117188,40.3138430000001],[116.44150515625,40.3306044746094],[116.417345,40.3275991035156],[116.364273710938,40.3342006660157],[116.33797,40.3775112128907],[116.287345,40.3838430000001],[116.282110625,40.3987795234375],[116.29287234375,40.4605776191407],[116.291842070313,40.486577375],[116.34533328125,40.4993190742188],[116.363678007813,40.4985915351563],[116.38252078125,40.4782558417969],[116.407345,40.4792397285157],[116.427345,40.4784462714844],[116.497496367188,40.4812270332031],[116.512154570313,40.5028224921875],[116.452623320313,40.5216701484375],[116.492535429688,40.5586525703125],[116.502154570313,40.5690334296876],[116.521920195313,40.5873476386719],[116.535362578125,40.6158278632813],[116.5628528125,40.6288014960938],[116.517862578125,40.6617995429688],[116.474732695313,40.6821559882813],[116.492535429688,40.6986525703126],[116.50732546875,40.7299855781251],[116.489503203125,40.7636611152344],[116.457345,40.7738430000001],[116.451265898438,40.7935366035156],[116.406783476563,40.8332802558594],[116.387906523438,40.8544057441407],[116.323175078125,40.9122450996094],[116.352628203125,40.9385622382813],[116.357345,40.943843],[116.367725859375,40.934223859375],[116.399483671875,40.8999477363281],[116.437345,40.8984462714844],[116.452345,40.8990407539063],[116.46978640625,40.8983498359376],[116.442535429688,40.9760951972657],[116.453345976563,40.9793984199219],[116.472345,40.9786452460938],[116.482345,40.9790407539062],[116.509288359375,40.9779726386719],[116.562428007813,40.9890908027344],[116.60033328125,40.9690334296875],[116.612891875,41.0200930000001],[116.611363554688,41.0586525703125],[116.680499296875,41.0425014472656],[116.697345,41.013843],[116.682413359375,41.0035353828125]]]]}},{"type":"Feature","properties":{"name":"门头沟区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.909117460938,40.1333498359376],[115.95298953125,40.0994863105469],[115.961773710938,40.0780202460938],[115.982345,40.081059796875],[116.007642851563,40.0773207832032],[116.047345,40.0838430000001],[116.06326296875,40.0597585273437],[116.07142703125,40.0379274726563],[116.130113554688,40.0286782050781],[116.16716921875,40.0075283027344],[116.147345,39.993843],[116.111519804688,39.9794142890625],[116.113082304688,39.9688430000001],[116.111607695313,39.958843],[116.113082304688,39.948843],[116.111226835938,39.9362831855469],[116.13298953125,39.9194863105469],[116.157345,39.883843],[116.131158476563,39.8800307441406],[116.05388796875,39.8544655585938],[116.047345,39.843843],[115.981436796875,39.8486074042969],[115.982735625,39.8703566718751],[115.952154570313,39.8685341621094],[115.912628203125,39.8806923652344],[115.94166140625,39.9066347480469],[115.898365507813,39.9185622382812],[115.84232546875,39.8984535957032],[115.773839140625,39.9269374824219],[115.722628203125,39.9085622382813],[115.692061796875,39.8991237617188],[115.672628203125,39.8885622382813],[115.627891875,39.8680300117188],[115.583902617188,39.8188002753907],[115.557345,39.8138430000001],[115.510499296875,39.8389846015625],[115.513590117188,39.863843],[115.511099882813,39.883843],[115.513687773438,39.9046218085937],[115.436803007813,39.9513210273438],[115.417345,39.943843],[115.421793242188,39.9793959785156],[115.450982695313,40.0290554023438],[115.478912382813,40.0408242011719],[115.497345,40.063843],[115.51142703125,40.0697585273438],[115.54326296875,40.0779274726563],[115.55142703125,40.0897585273438],[115.58326296875,40.0979274726563],[115.59142703125,40.1097585273438],[115.63326296875,40.1179274726563],[115.676392851563,40.1312978339844],[115.692345,40.1277223945313],[115.707345,40.1310842109375],[115.72697390625,40.1266835761719],[115.74326296875,40.1379274726563],[115.753682890625,40.1657802558594],[115.772623320313,40.1700258613281],[115.815513945313,40.1520119453126],[115.847345,40.143843],[115.909117460938,40.1333498359376]]]]}},{"type":"Feature","properties":{"name":"平谷区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.217345,40.373843],[117.221676054688,40.3675722480469],[117.236475859375,40.3708901191406],[117.26326296875,40.3297585273438],[117.27142703125,40.3079274726563],[117.28326296875,40.2997585273438],[117.292345,40.2754799628906],[117.324664335938,40.2827260566406],[117.3423840625,40.2353823066406],[117.387345,40.223843],[117.38298953125,40.2181996894531],[117.369390898438,40.2077028632813],[117.401085234375,40.1832387519531],[117.35170046875,40.1694863105469],[117.34298953125,40.1381996894531],[117.296436796875,40.1283766914063],[117.262735625,40.1080458808594],[117.22978640625,40.1129152656251],[117.207345,40.0838430000001],[117.197345,40.0838430000001],[117.197345,40.063843],[117.187345,40.063843],[117.183360625,40.0807558417969],[117.132647734375,40.0640761542969],[117.097345,40.0750722480469],[117.052471953125,40.0610964179688],[117.023531523438,40.0376552558594],[116.988179960938,40.0300307441407],[116.957345,40.0438430000001],[116.961158476563,40.0600307441407],[116.974151640625,40.0680373359375],[116.970787382813,40.0788430000001],[116.973912382813,40.0888747382813],[116.960777617188,40.1288112617188],[116.970382109375,40.1596486640626],[116.940538359375,40.1780373359375],[116.944151640625,40.1896486640626],[116.927926054688,40.1996486640626],[116.934151640625,40.2196486640625],[116.927345,40.223843],[116.93197390625,40.2292153144531],[116.971959257813,40.2412538886719],[116.949932890625,40.2602272773438],[117.002979765625,40.3059291816407],[117.001202421875,40.3280568671876],[117.042139921875,40.3392604804688],[117.052584257813,40.3384218574219],[117.08197390625,40.3492153144531],[117.12271609375,40.3584706855469],[117.15197390625,40.3692153144532],[117.217345,40.373843]]]]}},{"type":"Feature","properties":{"name":"石景山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.208101835938,39.9495131660157],[116.199312773438,39.910317609375],[116.243199492188,39.9201552558594],[116.247345,39.8938430000001],[116.231793242188,39.8893959785157],[116.210953398438,39.8771450019531],[116.157345,39.883843],[116.13298953125,39.9194863105469],[116.111226835938,39.9362831855469],[116.113082304688,39.948843],[116.111607695313,39.958843],[116.113082304688,39.9688430000001],[116.111519804688,39.9794142890625],[116.147345,39.993843],[116.15142703125,39.9879274726563],[116.17326296875,39.9797585273438],[116.18142703125,39.9679274726563],[116.208101835938,39.9495131660157]]]]}},{"type":"Feature","properties":{"name":"通州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.604537382813,39.8888430000001],[116.617345,39.8938430000001],[116.617345,39.883843]]],[[[116.617345,39.883843],[116.630152617188,39.8888430000001],[116.617345,39.8938430000001],[116.62142703125,39.9297585273438],[116.63326296875,39.9479274726563],[116.64142703125,40.0025295234375],[116.597345,40.0138430000001],[116.6016028125,40.0299806953126],[116.677261992188,40.0148744941406],[116.702345,40.0198305488282],[116.712345,40.0178554511719],[116.733414335938,40.0220180488282],[116.767345,40.0138430000001],[116.763985625,39.9872023750001],[116.74927859375,39.9576137519532],[116.773985625,39.9504836250001],[116.780704375,39.887202375],[116.807345,39.883843],[116.812320585938,39.8773952460938],[116.858590117188,39.8430922675782],[116.892486601563,39.8380825019532],[116.917345,39.843843],[116.9286340625,39.799858625],[116.95142703125,39.7841188789063],[116.942843046875,39.7776100898438],[116.923013945313,39.782055890625],[116.91326296875,39.7679274726563],[116.90107546875,39.7595131660157],[116.906158476563,39.7368325019532],[116.873316679688,39.7141579414063],[116.89142703125,39.6879274726563],[116.897345,39.683843],[116.894801054688,39.6763869453125],[116.859644804688,39.6712636542969],[116.829888945313,39.6412990546876],[116.824801054688,39.6163869453125],[116.807345,39.613843],[116.79170046875,39.6094863105469],[116.779400664063,39.5935536933595],[116.75298953125,39.6094863105469],[116.717345,39.6238430000001],[116.701881132813,39.6483803535157],[116.692808867188,39.6693056464844],[116.661881132813,39.6783803535156],[116.640968046875,39.6903578925781],[116.6428528125,39.7088430000001],[116.641480742188,39.7223220039063],[116.530011015625,39.7109609199219],[116.532896757813,39.7392336250001],[116.515308867188,39.753843],[116.532896757813,39.768452375],[116.530816679688,39.788843],[116.532882109375,39.8091078925782],[116.527345,39.823843],[116.536158476563,39.8376076484375],[116.5914465625,39.8220705390626],[116.601246367188,39.8499404121094],[116.613443632813,39.8577455878907],[116.617345,39.883843]]]]}},{"type":"Feature","properties":{"name":"密云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.921793242188,40.7482900214844],[116.932896757813,40.7393959785156],[116.941793242188,40.7282900214844],[116.952896757813,40.7193959785157],[116.96736453125,40.7013283515626],[117.017345,40.6951113105469],[117.052345,40.6994643378907],[117.062345,40.6982216621094],[117.087345,40.7013307929687],[117.112345,40.6982216621094],[117.122369414063,40.6994680000001],[117.202896757813,40.6893959785157],[117.234508085938,40.6772463203125],[117.252706328125,40.6795095039063],[117.298331328125,40.65269065625],[117.361119414063,40.6768239570313],[117.410640898438,40.6829848457031],[117.501793242188,40.6682900214844],[117.507345,40.663843],[117.497345,40.643843],[117.486143828125,40.6298537421875],[117.452144804688,40.6498378730469],[117.434610625,40.6279396796875],[117.414410429688,40.6304518867188],[117.411099882813,40.603843],[117.415582304688,40.5678188300782],[117.402345,40.5694643378907],[117.376954375,40.5663063789063],[117.340284453125,40.5804018378907],[117.243448515625,40.5527150703125],[117.241676054688,40.5384828925781],[117.253472929688,40.5184145332031],[117.192999296875,40.5053298164063],[117.212896757813,40.4893959785157],[117.231793242188,40.4582900214844],[117.254327421875,40.4402443671876],[117.231793242188,40.4093959785156],[117.217345,40.373843],[117.15197390625,40.3692153144532],[117.12271609375,40.3584706855469],[117.08197390625,40.3492153144531],[117.052584257813,40.3384218574219],[117.042139921875,40.3392604804688],[117.001202421875,40.3280568671876],[117.002979765625,40.3059291816407],[116.949932890625,40.2602272773438],[116.971959257813,40.2412538886719],[116.93197390625,40.2292153144531],[116.927345,40.223843],[116.898316679688,40.2285353828125],[116.873267851563,40.2634804511719],[116.863170195313,40.2896681953126],[116.851519804688,40.2980178046876],[116.837345,40.3177956367188],[116.81666140625,40.2889394355469],[116.781519804688,40.2796681953125],[116.762779570313,40.26776878125],[116.746568632813,40.27097190625],[116.737345,40.283843],[116.761016875,40.3214076972656],[116.714620390625,40.3415309882813],[116.708975859375,40.3968910957032],[116.723072539063,40.4086000800782],[116.711807890625,40.4385781074219],[116.712896757813,40.449233625],[116.685406523438,40.4720680976563],[116.706422148438,40.5279970527344],[116.6732434375,40.5555580878907],[116.705826445313,40.5696901679688],[116.700079375,40.6260756660157],[116.713394804688,40.6861269355469],[116.7844934375,40.7127577949219],[116.780748320313,40.7495156074219],[116.797345,40.7478237128906],[116.812345,40.7493520332032],[116.831685820313,40.7473818183595],[116.8328528125,40.758843],[116.831519804688,40.7719167304688],[116.861881132813,40.7893056464844],[116.877345,40.793843],[116.882896757813,40.7893959785156],[116.891793242188,40.7782900214844],[116.912896757813,40.7693959785157],[116.921793242188,40.7482900214844]]]]}},{"type":"Feature","properties":{"name":"延庆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.149537382813,40.3404201484375],[116.140767851563,40.3316506171876],[116.137345,40.3438430000001]]],[[[116.137345,40.3438430000001],[116.130855742188,40.338452375],[116.132896757813,40.3184401679688],[116.119420195313,40.3093056464844],[116.102735625,40.3293923164063],[116.092345,40.3283339667969],[116.054298125,40.332212140625],[116.042808867188,40.3183803535156],[116.029420195313,40.3093056464844],[116.009464140625,40.3333303046875],[115.962808867188,40.3159181953125],[115.982896757813,40.299233625],[115.981314726563,40.283755109375],[115.957345,40.263843],[115.942061796875,40.2885622382813],[115.932628203125,40.3091237617187],[115.922061796875,40.3285622382813],[115.912628203125,40.3491237617187],[115.862423125,40.3608046699219],[115.76982546875,40.441567609375],[115.7726575,40.4891139960937],[115.742061796875,40.4985622382813],[115.737345,40.513843],[115.765655546875,40.5479250312501],[115.812808867188,40.5583803535157],[115.8257434375,40.5882118964844],[115.882808867188,40.5983803535157],[115.906553984375,40.6119814277344],[115.95650515625,40.606889875],[115.980391875,40.5781349921875],[115.995582304688,40.5796828437501],[116.011881132813,40.5993056464844],[116.062808867188,40.6083803535157],[116.071881132813,40.6193056464844],[116.084893828125,40.63011253125],[116.113018828125,40.6272450996095],[116.11068484375,40.6501125312501],[116.159781523438,40.6714052558594],[116.171881132813,40.6993056464844],[116.222808867188,40.7583803535157],[116.237784453125,40.7929189277344],[116.296436796875,40.7507094550782],[116.318980742188,40.7778493476563],[116.449610625,40.7645351386719],[116.457345,40.7738430000001],[116.489503203125,40.7636611152344],[116.50732546875,40.7299855781251],[116.492535429688,40.6986525703126],[116.474732695313,40.6821559882813],[116.517862578125,40.6617995429688],[116.5628528125,40.6288014960938],[116.535362578125,40.6158278632813],[116.521920195313,40.5873476386719],[116.502154570313,40.5690334296876],[116.492535429688,40.5586525703125],[116.452623320313,40.5216701484375],[116.512154570313,40.5028224921875],[116.497496367188,40.4812270332031],[116.427345,40.4784462714844],[116.407345,40.4792397285157],[116.38252078125,40.4782558417969],[116.363678007813,40.4985915351563],[116.34533328125,40.4993190742188],[116.291842070313,40.486577375],[116.29287234375,40.4605776191407],[116.282110625,40.3987795234375],[116.287345,40.3838430000001],[116.281890898438,40.3770339179688],[116.257345,40.3800868964844],[116.232345,40.376977765625],[116.21209109375,40.3794960761719],[116.141793242188,40.3593959785156],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"东城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.411793242188,39.8693959785156],[116.39634890625,39.8501113105469],[116.377345,39.873843],[116.39302859375,39.8783278632813],[116.384810820313,39.9444228339844],[116.377345,39.9638430000001],[116.387345,39.9638430000001],[116.405264921875,39.9708876777344],[116.435811796875,39.9473073554688],[116.4308215625,39.9135451484376],[116.437345,39.873843],[116.411793242188,39.8693959785156]]]]}},{"type":"Feature","properties":{"name":"西城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.377345,39.9638430000001],[116.384810820313,39.9444228339844],[116.39302859375,39.8783278632813],[116.377345,39.873843],[116.35845828125,39.8653823066407],[116.321324492188,39.8769472480469],[116.317345,39.8938430000001],[116.327345,39.8938430000001],[116.327345,39.943843],[116.367345,39.943843],[116.367345,39.9638430000001],[116.377345,39.9638430000001]]],[[[116.377345,39.9638430000001],[116.377345,39.9738430000001],[116.387345,39.9738430000001],[116.387345,39.9638430000001],[116.377345,39.9638430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南开区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.177345,39.103843],[117.177345,39.063843],[117.13900515625,39.0703566718751],[117.12298953125,39.1094863105469],[117.109014921875,39.1326528144531],[117.117345,39.153843],[117.130704375,39.1472023750001],[117.187345,39.143843],[117.187345,39.1338430000001],[117.177345,39.1338430000001],[117.177345,39.103843]]]]}},{"type":"Feature","properties":{"name":"宝坻区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.40271609375,39.7692153144531],[117.414556914063,39.755473859375],[117.47373171875,39.7772048164063],[117.537345,39.753843],[117.5841028125,39.7479946113282],[117.579600859375,39.7117751289063],[117.639327421875,39.6946987128907],[117.658375273438,39.6451406074219],[117.621129179688,39.5985683417969],[117.642896757813,39.5893959785157],[117.657345,39.5713552070313],[117.677183867188,39.5961293769532],[117.693155546875,39.5689589667969],[117.687345,39.5538430000001],[117.681373320313,39.5323940253907],[117.652345,39.5281044746094],[117.632857695313,39.5309841132813],[117.62298953125,39.5181996894532],[117.61170046875,39.5094863105469],[117.592857695313,39.48507346875],[117.551256132813,39.4912209296875],[117.554351835938,39.4702602363282],[117.509190703125,39.4570925117187],[117.484835234375,39.4606911445313],[117.480865507813,39.4338430000001],[117.487745390625,39.3873146796876],[117.472608671875,39.3677053046875],[117.417345,39.3459804511719],[117.37990359375,39.36069846875],[117.362345,39.3581044746094],[117.346095,39.3605055976563],[117.317345,39.3538430000001],[117.301060820313,39.3678713203126],[117.302745390625,39.388843],[117.301842070313,39.4000881171876],[117.336080351563,39.3973378730469],[117.30197390625,39.4584706855469],[117.291715117188,39.4814638496094],[117.27197390625,39.4984706855469],[117.261300078125,39.5108571601562],[117.263204375,39.5345351386719],[117.23197390625,39.5484706855469],[117.19271609375,39.5792153144531],[117.137345,39.613843],[117.145513945313,39.6256740546875],[117.165557890625,39.6395131660157],[117.160103789063,39.6638430000001],[117.168570585938,39.7016066718751],[117.147823515625,39.733462140625],[117.196827421875,39.7672951484375],[117.18142703125,39.7779274726563],[117.17326296875,39.7897585273438],[117.151016875,39.7980812812501],[117.157345,39.823843],[117.19170046875,39.8294863105469],[117.247345,39.833843],[117.301304960938,39.8031667304688],[117.385513945313,39.7840358710938],[117.40271609375,39.7692153144531]]]]}},{"type":"Feature","properties":{"name":"北辰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.210816679688,39.3570326972657],[117.252345,39.3477223945313],[117.266246367188,39.3508388496094],[117.30142703125,39.3279274726562],[117.317345,39.3238430000001],[117.357081328125,39.2941823554687],[117.395953398438,39.2782729316406],[117.39156375,39.2485512519532],[117.397345,39.233843],[117.292418242188,39.2395876289063],[117.282535429688,39.2186525703125],[117.250074492188,39.2083754707032],[117.227345,39.183843],[117.202388945313,39.1899733710938],[117.192345,39.1877223945312],[117.181676054688,39.1901137519532],[117.177345,39.183843],[117.152388945313,39.1899733710938],[117.135933867188,39.1862856269532],[117.127345,39.1738430000001],[117.07142703125,39.1697585273438],[117.062935820313,39.1574599433594],[117.021754179688,39.1702260566407],[117.012691679688,39.15710471875],[116.990230742188,39.1717311835938],[116.972345,39.1677223945313],[116.962301054688,39.1699733710938],[116.937345,39.163843],[116.94142703125,39.1897585273438],[116.96170046875,39.2037538886719],[116.97142703125,39.2297585273438],[117.014478789063,39.2543300605469],[117.00724734375,39.2865798164063],[117.022345,39.2899636054688],[117.032345,39.2877223945313],[117.042345,39.2899636054688],[117.064522734375,39.2849916816406],[117.08326296875,39.2979274726563],[117.09435671875,39.3139968085938],[117.14033328125,39.3036891914062],[117.15142703125,39.3197585273438],[117.17326296875,39.3279274726562],[117.210816679688,39.3570326972657]]]]}},{"type":"Feature","properties":{"name":"东丽区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.397345,39.233843],[117.403267851563,39.2230397773438],[117.43806765625,39.2373830390625],[117.473077421875,39.2216323066406],[117.487735625,39.1948830390625],[117.5027746875,39.2010805488282],[117.520885039063,39.1873830390625],[117.553804960938,39.1803029609375],[117.557345,39.1738430000001],[117.540889921875,39.1435646796876],[117.506265898438,39.1513271308594],[117.49673953125,39.108843],[117.546685820313,39.0990895820313],[117.555767851563,39.0585707832031],[117.515577421875,39.0482570625],[117.511217070313,39.0288014960938],[117.517345,39.003843],[117.502003203125,38.9978115058594],[117.49298953125,39.0094863105469],[117.47170046875,39.0181996894532],[117.462857695313,39.0296572089844],[117.397974882813,39.0200698066407],[117.375714140625,39.048911359375],[117.33170046875,39.0581996894532],[117.31298953125,39.0694863105469],[117.277345,39.073843],[117.257345,39.073843],[117.257345,39.083843],[117.293624296875,39.0875649238282],[117.311065703125,39.0984194160156],[117.263883085938,39.1092067695313],[117.274351835938,39.1396889472656],[117.261065703125,39.1475649238282],[117.257345,39.153843],[117.270152617188,39.158843],[117.257345,39.163843],[117.253985625,39.170483625],[117.227345,39.183843],[117.250074492188,39.2083754707032],[117.282535429688,39.2186525703125],[117.292418242188,39.2395876289063],[117.397345,39.233843]]]]}},{"type":"Feature","properties":{"name":"和平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.203985625,39.107202375],[117.177345,39.103843],[117.177345,39.1338430000001],[117.187345,39.1338430000001],[117.197345,39.1338430000001],[117.21062625,39.1271242500001],[117.217345,39.113843],[117.203985625,39.107202375]]]]}},{"type":"Feature","properties":{"name":"河北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.181676054688,39.1901137519532],[117.192345,39.1877223945312],[117.202388945313,39.1899733710938],[117.227345,39.183843],[117.253985625,39.170483625],[117.257345,39.163843],[117.257345,39.153843],[117.24255984375,39.1472194648438],[117.232345,39.1504006171875],[117.201656523438,39.1408425117188],[117.197345,39.1338430000001],[117.187345,39.1338430000001],[117.187345,39.143843],[117.180704375,39.1572023750001],[117.177345,39.183843],[117.181676054688,39.1901137519532]]]]}},{"type":"Feature","properties":{"name":"河东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.257345,39.153843],[117.261065703125,39.1475649238282],[117.274351835938,39.1396889472656],[117.263883085938,39.1092067695313],[117.311065703125,39.0984194160156],[117.293624296875,39.0875649238282],[117.257345,39.083843],[117.240704375,39.087202375],[117.23062625,39.10712425],[117.217345,39.113843],[117.21062625,39.1271242500001],[117.197345,39.1338430000001],[117.201656523438,39.1408425117188],[117.232345,39.1504006171875],[117.24255984375,39.1472194648438],[117.257345,39.153843]]],[[[117.257345,39.153843],[117.257345,39.163843],[117.270152617188,39.158843],[117.257345,39.153843]]]]}},{"type":"Feature","properties":{"name":"河西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.257345,39.083843],[117.257345,39.073843],[117.277345,39.073843],[117.269112578125,39.0575722480469],[117.217345,39.0538430000001],[117.192550078125,39.0702284980469],[117.177345,39.063843],[117.177345,39.103843],[117.203985625,39.107202375],[117.217345,39.113843],[117.23062625,39.10712425],[117.240704375,39.087202375],[117.257345,39.083843]]]]}},{"type":"Feature","properties":{"name":"红桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.180704375,39.1572023750001],[117.187345,39.143843],[117.130704375,39.1472023750001],[117.117345,39.153843],[117.127345,39.1738430000001],[117.135933867188,39.1862856269532],[117.152388945313,39.1899733710938],[117.177345,39.183843],[117.180704375,39.1572023750001]]]]}},{"type":"Feature","properties":{"name":"津南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.375714140625,39.048911359375],[117.397974882813,39.0200698066407],[117.462857695313,39.0296572089844],[117.47170046875,39.0181996894532],[117.49298953125,39.0094863105469],[117.502003203125,38.9978115058594],[117.517345,39.003843],[117.555123320313,38.9941481757813],[117.5426184375,38.9454189277344],[117.520069609375,38.9504738593751],[117.491051054688,38.9396169257813],[117.4977746875,38.9096169257813],[117.47142703125,38.8997585273438],[117.428072539063,38.8636013007813],[117.397301054688,38.8836391425781],[117.34326296875,38.8479274726563],[117.327345,38.843843],[117.33312625,38.8585512519532],[117.330484648438,38.8764174628906],[117.288360625,38.8936586738282],[117.248409453125,38.9454164863281],[117.288604765625,38.9951503730469],[117.2660559375,39.0125551582031],[117.25298953125,39.0294863105469],[117.22170046875,39.0481996894532],[117.217345,39.0538430000001],[117.269112578125,39.0575722480469],[117.277345,39.073843],[117.31298953125,39.0694863105469],[117.33170046875,39.0581996894532],[117.375714140625,39.048911359375]]]]}},{"type":"Feature","properties":{"name":"武清区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.233843],[116.880767851563,39.2216506171876],[116.889537382813,39.2304201484376],[116.873170195313,39.2396681953125],[116.86123171875,39.2994618964844],[116.88459109375,39.3162050605469],[116.8694934375,39.3529457832031],[116.832633085938,39.337798078125],[116.819678984375,39.3403578925782],[116.823331328125,39.3588430000001],[116.821236601563,39.3694631171875],[116.833453398438,39.3782228828126],[116.828521757813,39.4031850410157],[116.863453398438,39.4282228828125],[116.860455351563,39.4434096503907],[116.822965117188,39.436001203125],[116.812965117188,39.4499538398438],[116.792095976563,39.4458303046875],[116.787345,39.463843],[116.79142703125,39.4697585273438],[116.814215117188,39.4854921699219],[116.810103789063,39.503843],[116.81361453125,39.5195131660156],[116.777379179688,39.5445326972657],[116.803580351563,39.5783376289063],[116.799698515625,39.5956410957031],[116.807345,39.613843],[116.824801054688,39.6163869453125],[116.829888945313,39.6412990546876],[116.859644804688,39.6712636542969],[116.894801054688,39.6763869453125],[116.897345,39.683843],[116.90326296875,39.6879274726563],[116.9170715625,39.7079274726562],[116.939478789063,39.6966200996094],[116.943468046875,39.678843],[116.939791289063,39.6624477363282],[116.971954375,39.6375221992188],[117.017257109375,39.6515651679688],[117.087428007813,39.6335561347656],[117.11142703125,39.6179274726563],[117.137345,39.613843],[117.19271609375,39.5792153144531],[117.23197390625,39.5484706855469],[117.263204375,39.5345351386719],[117.261300078125,39.5108571601562],[117.27197390625,39.4984706855469],[117.291715117188,39.4814638496094],[117.30197390625,39.4584706855469],[117.336080351563,39.3973378730469],[117.301842070313,39.4000881171876],[117.302745390625,39.388843],[117.301060820313,39.3678713203126],[117.317345,39.3538430000001],[117.317345,39.3238430000001],[117.30142703125,39.3279274726562],[117.266246367188,39.3508388496094],[117.252345,39.3477223945313],[117.210816679688,39.3570326972657],[117.17326296875,39.3279274726562],[117.15142703125,39.3197585273438],[117.14033328125,39.3036891914062],[117.09435671875,39.3139968085938],[117.08326296875,39.2979274726563],[117.064522734375,39.2849916816406],[117.042345,39.2899636054688],[117.032345,39.2877223945313],[117.022345,39.2899636054688],[117.00724734375,39.2865798164063],[117.014478789063,39.2543300605469],[116.97142703125,39.2297585273438],[116.96170046875,39.2037538886719],[116.94142703125,39.1897585273438],[116.937345,39.163843],[116.930704375,39.160483625],[116.917345,39.1338430000001],[116.907345,39.1338430000001],[116.907345,39.153843],[116.857345,39.153843],[116.851905546875,39.2091567207032],[116.86271609375,39.2184706855469],[116.87197390625,39.2292153144531],[116.877345,39.233843]]]]}},{"type":"Feature","properties":{"name":"西青区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.127345,39.1738430000001],[117.117345,39.153843],[117.109014921875,39.1326528144531],[117.12298953125,39.1094863105469],[117.13900515625,39.0703566718751],[117.177345,39.063843],[117.192550078125,39.0702284980469],[117.217345,39.0538430000001],[117.22170046875,39.0481996894532],[117.25298953125,39.0294863105469],[117.2660559375,39.0125551582031],[117.288604765625,38.9951503730469],[117.248409453125,38.9454164863281],[117.288360625,38.8936586738282],[117.330484648438,38.8764174628906],[117.33312625,38.8585512519532],[117.327345,38.843843],[117.322642851563,38.8238784003907],[117.273531523438,38.8400307441407],[117.247345,38.843843],[117.238453398438,38.8549489570313],[117.17736453125,38.9038649726563],[117.126539335938,38.9673378730469],[117.06658328125,39.0012355781251],[117.032345,38.9969777656251],[117.020845976563,39.0242641425782],[116.971793242188,39.0382900214844],[116.952896757813,39.0493959785157],[116.91000125,39.0616616035156],[116.881832304688,39.0581569648438],[116.877345,39.073843],[116.887423125,39.093764875],[116.913985625,39.107202375],[116.917345,39.1338430000001],[116.930704375,39.160483625],[116.937345,39.163843],[116.962301054688,39.1699733710938],[116.972345,39.1677223945313],[116.990230742188,39.1717311835938],[117.012691679688,39.15710471875],[117.021754179688,39.1702260566407],[117.062935820313,39.1574599433594],[117.07142703125,39.1697585273438],[117.127345,39.1738430000001]]]]}},{"type":"Feature","properties":{"name":"蓟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.439625273438,40.252602765625],[117.507515898438,40.2259133125],[117.547086210938,40.2317604804688],[117.563160429688,40.2193544746094],[117.56156375,40.2085512519532],[117.567345,40.1938430000001],[117.575050078125,40.1675893378906],[117.600386992188,40.1701723457032],[117.643800078125,40.1181154609376],[117.641090117188,40.09151878125],[117.677345,40.0878237128907],[117.700474882813,40.090180890625],[117.732081328125,40.0783058906251],[117.742735625,40.0793923164063],[117.751881132813,40.0683803535157],[117.7714465625,40.0521279121094],[117.732808867188,40.0353700996094],[117.742447539063,40.0173244453125],[117.78158328125,40.0213137031251],[117.784483671875,39.9928456855469],[117.777345,39.9738430000001],[117.76545046875,39.9595241523438],[117.702608671875,39.9831386542969],[117.6220715625,39.9682448554688],[117.5801965625,39.9983803535157],[117.531788359375,39.9892885566407],[117.533780546875,39.9697353339844],[117.511798125,39.9391909003907],[117.51375125,39.9200307441406],[117.5015246875,39.8986782050782],[117.512808867188,39.8893056464844],[117.521881132813,39.8583803535156],[117.532808867188,39.8493056464844],[117.541881132813,39.8283803535156],[117.555933867188,39.803843],[117.541803007813,39.779165265625],[117.542882109375,39.7685781074219],[117.537345,39.753843],[117.47373171875,39.7772048164063],[117.414556914063,39.755473859375],[117.40271609375,39.7692153144531],[117.385513945313,39.7840358710938],[117.301304960938,39.8031667304688],[117.247345,39.833843],[117.24287234375,39.8595302558594],[117.218194609375,39.8564614082031],[117.172564726563,39.8694924140626],[117.15634890625,39.8674758125],[117.142896757813,39.8993959785156],[117.1297278125,39.9218056464844],[117.186246367188,39.9924770332032],[117.178272734375,40.0565785957032],[117.187345,40.063843],[117.197345,40.063843],[117.21547,40.0675014472657],[117.207345,40.0838430000001],[117.22978640625,40.1129152656251],[117.262735625,40.1080458808594],[117.296436796875,40.1283766914063],[117.34298953125,40.1381996894531],[117.35170046875,40.1694863105469],[117.401085234375,40.1832387519531],[117.369390898438,40.2077028632813],[117.38298953125,40.2181996894531],[117.387345,40.223843],[117.396436796875,40.2356240058594],[117.439625273438,40.252602765625]]]]}},{"type":"Feature","properties":{"name":"静海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.073843],[116.881832304688,39.0581569648438],[116.91000125,39.0616616035156],[116.952896757813,39.0493959785157],[116.971793242188,39.0382900214844],[117.020845976563,39.0242641425782],[117.032345,38.9969777656251],[117.06658328125,39.0012355781251],[117.126539335938,38.9673378730469],[117.17736453125,38.9038649726563],[117.238453398438,38.8549489570313],[117.247345,38.843843],[117.230787382813,38.819858625],[117.191041289063,38.8096584296875],[117.19853640625,38.7762282539063],[117.12326296875,38.7353188300782],[117.142081328125,38.7276625800781],[117.156148710938,38.7308168769532],[117.151221953125,38.7088430000001],[117.153565703125,38.6983962226563],[117.14060671875,38.6784950996094],[117.15361453125,38.6695131660156],[117.151221953125,38.658843],[117.1546496875,38.6435732246094],[117.147345,38.613843],[117.14267703125,38.6070839667969],[117.11326296875,38.5879274726563],[117.097345,38.583843],[117.091793242188,38.5882900214844],[117.082896757813,38.5993959785157],[117.071793242188,38.6082900214844],[117.048980742188,38.6367787910157],[117.054156523438,38.6783901191407],[117.041793242188,38.6882900214844],[117.030987578125,38.7017836738282],[116.946763945313,38.6913075996094],[116.912628203125,38.6781862617188],[116.8740246875,38.6829872871094],[116.861085234375,38.7137026191407],[116.864273710938,38.7393386054688],[116.757345,38.7438430000001],[116.753804960938,38.7503029609375],[116.73990359375,38.7579213691407],[116.74646609375,38.773843],[116.7341028125,38.803843],[116.744405546875,38.8288430000001],[116.735733671875,38.849887921875],[116.717345,38.853843],[116.71298953125,38.8894863105469],[116.7014465625,38.8983950019531],[116.716202421875,38.9620705390625],[116.761383085938,39.0230080390625],[116.747345,39.033843],[116.751529570313,39.0501467109375],[116.771676054688,39.0456301093751],[116.781754179688,39.0602260566406],[116.822725859375,39.0475258613282],[116.86326296875,39.0579274726563],[116.87142703125,39.0697585273437],[116.877345,39.073843]]]]}},{"type":"Feature","properties":{"name":"宁河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.847345,39.3538430000001],[117.850767851563,39.3660353828125],[117.859537382813,39.3572658515625],[117.847345,39.3538430000001]]],[[[117.847345,39.3538430000001],[117.8354309375,39.3298708320313],[117.847345,39.3238430000001],[117.84271609375,39.3184706855469],[117.831539335938,39.308843],[117.847232695313,39.2953224921876],[117.816651640625,39.2598256660157],[117.777047148438,39.3057961250001],[117.692999296875,39.2804921699219],[117.7166028125,39.2530995917969],[117.733780546875,39.2382997871094],[117.711920195313,39.1991213203126],[117.714322539063,39.1692153144532],[117.672086210938,39.1812990546875],[117.627706328125,39.21276878125],[117.611163359375,39.1985195136719],[117.613511992188,39.1693386054688],[117.595640898438,39.1679018378907],[117.557345,39.1738430000001],[117.553804960938,39.1803029609375],[117.520885039063,39.1873830390625],[117.5027746875,39.2010805488282],[117.487735625,39.1948830390625],[117.473077421875,39.2216323066406],[117.43806765625,39.2373830390625],[117.403267851563,39.2230397773438],[117.397345,39.233843],[117.39156375,39.2485512519532],[117.395953398438,39.2782729316406],[117.357081328125,39.2941823554687],[117.317345,39.3238430000001],[117.317345,39.3538430000001],[117.346095,39.3605055976563],[117.362345,39.3581044746094],[117.37990359375,39.36069846875],[117.417345,39.3459804511719],[117.472608671875,39.3677053046875],[117.487745390625,39.3873146796876],[117.480865507813,39.4338430000001],[117.484835234375,39.4606911445313],[117.509190703125,39.4570925117187],[117.554351835938,39.4702602363282],[117.551256132813,39.4912209296875],[117.592857695313,39.48507346875],[117.61170046875,39.5094863105469],[117.62298953125,39.5181996894532],[117.632857695313,39.5309841132813],[117.652345,39.5281044746094],[117.681373320313,39.5323940253907],[117.687345,39.5538430000001],[117.6937121875,39.5502114082032],[117.704996367188,39.5304201484376],[117.736676054688,39.5423598457032],[117.727022734375,39.5679579902344],[117.7437121875,39.5774745917969],[117.757345,39.603843],[117.774215117188,39.597505109375],[117.798038359375,39.5999330878907],[117.892808867188,39.5893056464844],[117.927345,39.573843],[117.900553007813,39.5329140449219],[117.90341921875,39.5184096503907],[117.889761992188,39.4969020820313],[117.8939465625,39.4757411933594],[117.871519804688,39.4596681953125],[117.855011015625,39.3773281074219],[117.841026640625,39.3800917792969],[117.793170195313,39.3674648261719],[117.801519804688,39.3580178046875],[117.847345,39.3538430000001]]]]}},{"type":"Feature","properties":{"name":"滨海新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.767345,38.923843],[117.798179960938,38.9376552558594],[117.821158476563,38.9262441230469],[117.803687773438,38.9065688300782],[117.771158476563,38.9176552558594],[117.767345,38.923843]]],[[[117.787345,38.983843],[117.783985625,39.020483625],[117.767345,39.0538430000001],[117.808673125,39.0491432929688],[117.827110625,38.9740749335938],[117.787345,38.983843]]],[[[117.727345,39.0938430000001],[117.723922148438,39.1060353828126],[117.715152617188,39.0972658515625],[117.737423125,39.073921125],[117.763985625,39.060483625],[117.767345,39.0538430000001],[117.76170046875,39.049486310547],[117.748551054688,39.0324489570313],[117.780894804688,38.9888198066406],[117.787345,38.983843],[117.780733671875,38.9681032539063],[117.89142703125,38.9401039863281],[117.863199492188,38.9325807929687],[117.79326296875,38.9497585273438],[117.757345,38.953843],[117.757345,38.963843],[117.727345,38.963843],[117.727345,38.9738430000001],[117.717345,38.9738430000001],[117.717345,38.983843],[117.729537382813,38.9872658515625],[117.720767851563,38.9960353828126],[117.717345,38.983843],[117.704537382813,38.9788430000001],[117.717345,38.9738430000001],[117.717345,38.963843],[117.727345,38.963843],[117.727345,38.953843],[117.757345,38.953843],[117.763985625,38.940483625],[117.767345,38.923843],[117.74170046875,38.9094863105469],[117.732857695313,38.8980287910157],[117.722345,38.8995815253907],[117.690709257813,38.894907453125],[117.69312625,38.8785512519532],[117.679576445313,38.8440798164062],[117.6272278125,38.8518154121094],[117.569503203125,38.7688112617188],[117.60298953125,38.7594863105469],[117.61170046875,38.7234096503907],[117.559625273438,38.6922634101563],[117.563160429688,38.6683315253907],[117.541182890625,38.6513661933594],[117.547345,38.613843],[117.529386015625,38.6064638496094],[117.48187625,38.6158522773438],[117.40314578125,38.5919350410157],[117.393170195313,38.5780178046875],[117.374132109375,38.5643727851562],[117.357345,38.5877956367188],[117.343170195313,38.5680178046875],[117.302115507813,38.5571865058594],[117.29279421875,38.5701918769532],[117.259386015625,38.5564638496094],[117.235875273438,38.561108625],[117.245186796875,38.6082228828126],[117.231519804688,38.6180178046876],[117.220518828125,38.6465407539063],[117.183170195313,38.6180178046876],[117.147345,38.613843],[117.1546496875,38.6435732246094],[117.151221953125,38.658843],[117.15361453125,38.6695131660156],[117.14060671875,38.6784950996094],[117.153565703125,38.6983962226563],[117.151221953125,38.7088430000001],[117.156148710938,38.7308168769532],[117.142081328125,38.7276625800781],[117.12326296875,38.7353188300782],[117.19853640625,38.7762282539063],[117.191041289063,38.8096584296875],[117.230787382813,38.819858625],[117.247345,38.843843],[117.273531523438,38.8400307441407],[117.322642851563,38.8238784003907],[117.327345,38.843843],[117.34326296875,38.8479274726563],[117.397301054688,38.8836391425781],[117.428072539063,38.8636013007813],[117.47142703125,38.8997585273438],[117.4977746875,38.9096169257813],[117.491051054688,38.9396169257813],[117.520069609375,38.9504738593751],[117.5426184375,38.9454189277344],[117.555123320313,38.9941481757813],[117.517345,39.003843],[117.511217070313,39.0288014960938],[117.515577421875,39.0482570625],[117.555767851563,39.0585707832031],[117.546685820313,39.0990895820313],[117.49673953125,39.108843],[117.506265898438,39.1513271308594],[117.540889921875,39.1435646796876],[117.557345,39.1738430000001],[117.595640898438,39.1679018378907],[117.613511992188,39.1693386054688],[117.611163359375,39.1985195136719],[117.627706328125,39.21276878125],[117.672086210938,39.1812990546875],[117.714322539063,39.1692153144532],[117.711920195313,39.1991213203126],[117.733780546875,39.2382997871094],[117.7166028125,39.2530995917969],[117.692999296875,39.2804921699219],[117.777047148438,39.3057961250001],[117.816651640625,39.2598256660157],[117.847232695313,39.2953224921876],[117.831539335938,39.308843],[117.84271609375,39.3184706855469],[117.847345,39.3238430000001],[117.860494414063,39.3385622382813],[117.882628203125,39.3291237617188],[117.902061796875,39.3185622382813],[117.962628203125,39.3091237617188],[117.993678007813,39.2874330878907],[118.022613554688,39.2891567207032],[118.032061796875,39.2685622382812],[118.061221953125,39.2425075507813],[118.032061796875,39.2291237617188],[118.027345,39.223843],[117.9445715625,39.2153993964845],[117.871417265625,39.1953786445313],[117.873629179688,39.1678627753907],[117.840050078125,39.1801943183594],[117.81271609375,39.1484706855469],[117.79197390625,39.1392153144532],[117.74271609375,39.0984706855469],[117.727345,39.0938430000001]],[[117.734346953125,38.977895734375],[117.757345,38.9738430000001],[117.751910429688,38.9865395332032],[117.734346953125,38.977895734375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"高邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.467345,37.583843],[114.467345,37.5738430000001],[114.457345,37.5738430000001],[114.457345,37.583843],[114.467345,37.583843]]],[[[114.697345,37.6438430000001],[114.700767851563,37.6560353828125],[114.709537382813,37.6472658515625],[114.697345,37.6438430000001]]],[[[114.697345,37.6438430000001],[114.697345,37.633843],[114.727345,37.633843],[114.727345,37.623843],[114.701158476563,37.6100307441407],[114.6898840625,37.5917372871094],[114.6960559375,37.5719240546875],[114.654678984375,37.5578224921875],[114.601158476563,37.5500307441407],[114.597345,37.543843],[114.580704375,37.5472023750001],[114.513985625,37.5804836250001],[114.467345,37.583843],[114.4966028125,37.6345864082032],[114.51271609375,37.6484706855469],[114.517345,37.673843],[114.542584257813,37.6676430488282],[114.572066679688,37.6800258613282],[114.583013945313,37.6775722480469],[114.59142703125,37.6897585273438],[114.637345,37.693843],[114.631314726563,37.6784987617188],[114.64298953125,37.6694863105469],[114.657564726563,37.6506008125001],[114.697345,37.6438430000001]]]]}},{"type":"Feature","properties":{"name":"长安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.527345,38.123843],[114.649439726563,38.1036000800782],[114.657345,38.113843],[114.689722929688,38.1055336738282],[114.697496367188,38.0708534980469],[114.68142703125,38.0597585273438],[114.67326296875,38.0479274726563],[114.667345,38.043843],[114.594620390625,38.0529286933594],[114.582896757813,38.0382900214844],[114.507345,38.033843],[114.510704375,38.070483625],[114.529185820313,38.0798329902344],[114.517432890625,38.10390159375],[114.527345,38.123843]]]]}},{"type":"Feature","properties":{"name":"晋州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.073585234375,38.1331288886719],[115.112345,38.1210561347657],[115.157345,38.1350722480469],[115.182345,38.1272853828125],[115.19255984375,38.1304665351563],[115.207345,38.123843],[115.202808867188,38.0983803535157],[115.187642851563,38.0719020820313],[115.21935671875,38.0455580878907],[115.180816679688,38.0288430000001],[115.2114465625,38.0155580878906],[115.191881132813,37.9993056464845],[115.182808867188,37.9883803535157],[115.171881132813,37.9793056464844],[115.158189726563,37.9477370429688],[115.132808867188,37.9503249335938],[115.141881132813,37.9383803535157],[115.156783476563,37.9260036445312],[115.142808867188,37.8783803535156],[115.119288359375,37.858843],[115.142896757813,37.839233625],[115.1418371875,37.8288430000001],[115.142882109375,37.8185781074219],[115.137345,37.8038430000001],[115.10466921875,37.8118691230469],[115.08326296875,37.7979274726563],[115.067345,37.7938430000001],[115.034937773438,37.8031081367188],[114.99400515625,37.8705019355469],[114.977345,37.883843],[114.954932890625,37.9031508613282],[114.973526640625,37.9191664863282],[114.971138945313,37.9488430000001],[114.973551054688,37.978843],[114.970719023438,38.0141030097656],[114.977345,38.093843],[114.992974882813,38.0983119941407],[115.048453398438,38.1427370429688],[115.061793242188,38.1593959785156],[115.087345,38.163843],[115.073585234375,38.1331288886719]]]]}},{"type":"Feature","properties":{"name":"井陉矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.002545195313,38.026157453125],[114.007345,38.003843],[113.983804960938,38.0167470527344],[114.002545195313,38.026157453125]]],[[[114.05197390625,38.0292153144532],[114.047345,38.0238430000001],[113.98271609375,38.0611037421876],[113.995072050781,38.0986269355469],[114.033919707031,38.1203005195313],[114.083565703125,38.1090224433594],[114.081917753906,38.0885195136719],[114.093284941406,38.0787245917969],[114.07197390625,38.0692153144532],[114.06271609375,38.0384706855469],[114.05197390625,38.0292153144532]]],[[[114.093922148438,38.1360353828125],[114.097345,38.123843],[114.085152617188,38.1272658515626],[114.093922148438,38.1360353828125]]]]}},{"type":"Feature","properties":{"name":"井陉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.02923953125,38.2181618476563],[114.082078886719,38.198305890625],[114.092345,38.1993520332032],[114.102345,38.1983339667969],[114.130211210938,38.2011733222657],[114.161883574219,38.1783803535156],[114.177345,38.1738430000001],[114.25197390625,38.1662306953125],[114.240548125,38.1319655585938],[114.19716921875,38.1126088691407],[114.21271609375,38.0992153144531],[114.22197390625,38.0784706855469],[114.27197390625,38.0471535468751],[114.261519804688,38.0260549140626],[114.23312625,38.0015920234375],[114.277345,37.9980397773438],[114.30197390625,38.0000185371094],[114.284320097656,37.9398525214844],[114.27197390625,37.9292153144532],[114.267345,37.923843],[114.235328398438,37.91866721875],[114.220416289063,37.8442836738281],[114.170301542969,37.8541872382813],[114.174971953125,37.8305434394531],[114.205308867188,37.818843],[114.201356230469,37.7988430000001],[114.205186796875,37.7794631171876],[114.197345,37.773843],[114.178795195313,37.7686769843751],[114.142689238281,37.721899640625],[114.13298953125,37.6981996894531],[114.127345,37.693843],[114.09298953125,37.7094863105469],[114.047662382813,37.7221083808594],[113.997345,37.713843],[113.991610136719,37.7181081367188],[113.983079863281,37.7372646308594],[114.029034453125,37.7497231269532],[114.041610136719,37.7757924628907],[113.999764433594,37.8069216132812],[113.957178984375,37.823843],[113.964928007813,37.8688430000001],[113.960094023438,37.8969216132813],[113.923055449219,37.9244728828125],[113.913079863281,37.9495778632813],[113.890035429688,37.9868141914063],[113.861373320313,37.9982021308594],[113.870933867188,38.053734357422],[113.851610136719,38.0681081367188],[113.834547148438,38.0910463691407],[113.811610136719,38.1081081367188],[113.807345,38.113843],[113.823985625,38.147202375],[113.827345,38.163843],[113.843114042969,38.1914638496094],[113.902174101563,38.1783156562501],[113.922345,38.1803713203125],[113.988831816406,38.1735951972657],[114.001883574219,38.1893056464844],[114.012806425781,38.1983803535157],[114.02923953125,38.2181618476563]],[[114.085152617188,38.1272658515626],[114.097345,38.123843],[114.093922148438,38.1360353828125],[114.085152617188,38.1272658515626]],[[113.98271609375,38.0611037421876],[114.047345,38.0238430000001],[114.05197390625,38.0292153144532],[114.06271609375,38.0384706855469],[114.07197390625,38.0692153144532],[114.093284941406,38.0787245917969],[114.081917753906,38.0885195136719],[114.083565703125,38.1090224433594],[114.033919707031,38.1203005195313],[113.995072050781,38.0986269355469],[113.98271609375,38.0611037421876]],[[114.007345,38.003843],[114.002545195313,38.026157453125],[113.983804960938,38.0167470527344],[114.007345,38.003843]]]]}},{"type":"Feature","properties":{"name":"灵寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.067337675781,38.6763393378907],[114.081890898438,38.6581642890625],[114.092345,38.6594643378907],[114.102628203125,38.6581862617187],[114.131790800781,38.6693959785157],[114.167345,38.6738430000001],[114.174129667969,38.6494814277344],[114.241207304688,38.5977053046875],[114.27170046875,38.5581996894532],[114.28298953125,38.5494863105469],[114.291832304688,38.5380287910157],[114.319351835938,38.542094953125],[114.340362578125,38.5072634101563],[114.344486113281,38.4793544746094],[114.32298953125,38.4627614570313],[114.34170046875,38.4481996894532],[114.38843875,38.4383364082031],[114.416058378906,38.4025551582031],[114.4386340625,38.3851308417969],[114.45170046875,38.3681996894532],[114.477345,38.353843],[114.450308867188,38.3176210761719],[114.45373171875,38.2944509101563],[114.439136992188,38.2587856269531],[114.387345,38.2538430000001],[114.37697390625,38.2688649726563],[114.339329863281,38.2779274726563],[114.293260527344,38.2479274726563],[114.277345,38.243843],[114.259383574219,38.2826332832031],[114.276178007813,38.3379238105469],[114.236673613281,38.3608278632813],[114.223170195313,38.3796681953126],[114.195028105469,38.3905214667969],[114.183170195313,38.4496681953125],[114.169913359375,38.4933034492188],[114.141636992188,38.4877150703125],[114.133170195313,38.5096681953125],[114.111070585938,38.5255068183594],[114.066571074219,38.51671409375],[114.047213164063,38.4897084785157],[114.023194609375,38.4796681953125],[114.013170195313,38.5296681953126],[113.951519804688,38.5380178046875],[113.943170195313,38.5496681953125],[113.921217070313,38.5581349921875],[113.925235625,38.5784706855469],[113.891519804688,38.5980178046875],[113.879503203125,38.6579616523438],[113.851519804688,38.6780178046875],[113.83093875,38.7067311835938],[113.83443484375,38.724419171875],[113.827345,38.7538430000001],[113.841790800781,38.7482900214844],[113.882899199219,38.7393959785157],[113.9611340625,38.6896230292969],[114.067337675781,38.6763393378907]]]]}},{"type":"Feature","properties":{"name":"鹿泉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.41062625,38.0171242500001],[114.420704375,37.997202375],[114.453985625,37.990483625],[114.460704375,37.9772023750001],[114.467345,37.973843],[114.487345,37.973843],[114.497345,37.973843],[114.497345,37.963843],[114.510396757813,37.93647971875],[114.487345,37.923843],[114.457613554688,37.9165407539063],[114.441842070313,37.9200771308594],[114.413260527344,37.8979274726563],[114.379691191406,37.8853664375],[114.332491484375,37.8999965644531],[114.317345,37.8966017890625],[114.302345,37.8999636054688],[114.282345,37.8954799628907],[114.257747832031,37.9009938789063],[114.267345,37.923843],[114.27197390625,37.9292153144532],[114.284320097656,37.9398525214844],[114.30197390625,38.0000185371094],[114.277345,37.9980397773438],[114.23312625,38.0015920234375],[114.261519804688,38.0260549140626],[114.27197390625,38.0471535468751],[114.22197390625,38.0784706855469],[114.21271609375,38.0992153144531],[114.19716921875,38.1126088691407],[114.240548125,38.1319655585938],[114.25197390625,38.1662306953125],[114.177345,38.1738430000001],[114.201429472656,38.2097585273438],[114.233648710938,38.2180275703126],[114.230819121094,38.2306545234375],[114.271429472656,38.2397585273438],[114.277345,38.243843],[114.293260527344,38.2479274726563],[114.339329863281,38.2779274726563],[114.37697390625,38.2688649726563],[114.387345,38.2538430000001],[114.397567167969,38.2171364570313],[114.437345,38.163843],[114.431158476563,38.1600307441407],[114.423531523438,38.1476552558594],[114.411158476563,38.1400307441406],[114.400990019531,38.1101967597657],[114.37048953125,38.0998024726562],[114.373968535156,38.0886293769532],[114.367345,38.073843],[114.390704375,38.027202375],[114.41062625,38.0171242500001]]]]}},{"type":"Feature","properties":{"name":"平山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.727345,38.1738430000001],[113.723922148438,38.1616506171876],[113.715152617188,38.1704201484375],[113.727345,38.1738430000001]]],[[[113.727345,38.1738430000001],[113.72298953125,38.1894863105469],[113.71170046875,38.1981996894531],[113.702857695313,38.2096572089844],[113.683922148438,38.2068593574219],[113.6471496875,38.2290407539063],[113.56170046875,38.2381996894531],[113.55298953125,38.2494863105469],[113.54170046875,38.2581996894532],[113.53298953125,38.3050429511719],[113.554456816406,38.3406337714844],[113.53170046875,38.3581996894531],[113.519427519531,38.3741005683594],[113.525775175781,38.4170619941406],[113.55298953125,38.4281996894531],[113.56170046875,38.4494863105469],[113.586009550781,38.4594362617188],[113.553033476563,38.4848891425781],[113.537345,38.5238430000001],[113.54298953125,38.5281996894532],[113.55170046875,38.5594863105469],[113.590560332031,38.5894814277344],[113.606651640625,38.6472621894531],[113.642345,38.6525368476563],[113.678695097656,38.6471657539063],[113.702413359375,38.665473859375],[113.712042265625,38.7111037421876],[113.761204863281,38.7038393378906],[113.785064726563,38.7621352363281],[113.81263796875,38.7580605292969],[113.827345,38.763843],[113.827345,38.7538430000001],[113.83443484375,38.724419171875],[113.83093875,38.7067311835938],[113.851519804688,38.6780178046875],[113.879503203125,38.6579616523438],[113.891519804688,38.5980178046875],[113.925235625,38.5784706855469],[113.921217070313,38.5581349921875],[113.943170195313,38.5496681953125],[113.951519804688,38.5380178046875],[114.013170195313,38.5296681953126],[114.023194609375,38.4796681953125],[114.047213164063,38.4897084785157],[114.066571074219,38.51671409375],[114.111070585938,38.5255068183594],[114.133170195313,38.5096681953125],[114.141636992188,38.4877150703125],[114.169913359375,38.4933034492188],[114.183170195313,38.4496681953125],[114.195028105469,38.3905214667969],[114.223170195313,38.3796681953126],[114.236673613281,38.3608278632813],[114.276178007813,38.3379238105469],[114.259383574219,38.2826332832031],[114.277345,38.243843],[114.271429472656,38.2397585273438],[114.230819121094,38.2306545234375],[114.233648710938,38.2180275703126],[114.201429472656,38.2097585273438],[114.177345,38.1738430000001],[114.161883574219,38.1783803535156],[114.130211210938,38.2011733222657],[114.102345,38.1983339667969],[114.092345,38.1993520332032],[114.082078886719,38.198305890625],[114.02923953125,38.2181618476563],[114.012806425781,38.1983803535157],[114.001883574219,38.1893056464844],[113.988831816406,38.1735951972657],[113.922345,38.1803713203125],[113.902174101563,38.1783156562501],[113.843114042969,38.1914638496094],[113.827345,38.163843],[113.76170046875,38.1681996894531],[113.727345,38.1738430000001]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,37.973843],[114.467345,37.973843],[114.48142703125,38.0297585273438],[114.487345,38.043843],[114.49312625,38.0790224433594],[114.481392851563,38.1192507148438],[114.49298953125,38.1281996894531],[114.497345,38.1338430000001],[114.513985625,38.130483625],[114.527345,38.123843],[114.517432890625,38.10390159375],[114.529185820313,38.0798329902344],[114.510704375,38.070483625],[114.507345,38.033843],[114.504801054688,38.0163869453125],[114.489888945313,38.0012990546876],[114.487345,37.973843]]]]}},{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.48142703125,38.0297585273438],[114.467345,37.973843],[114.460704375,37.9772023750001],[114.453985625,37.990483625],[114.420704375,37.997202375],[114.41062625,38.0171242500001],[114.390704375,38.027202375],[114.367345,38.073843],[114.418631621094,38.0651308417969],[114.43170046875,38.0481996894531],[114.487345,38.043843],[114.48142703125,38.0297585273438]]]]}},{"type":"Feature","properties":{"name":"深泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.256046171875,38.2790444160157],[115.273267851563,38.2330165839844],[115.317345,38.243843],[115.322281523438,38.2234865546875],[115.346344023438,38.2080800605469],[115.34093875,38.188843],[115.34375125,38.1788430000001],[115.333580351563,38.1426552558594],[115.353443632813,38.1299404121094],[115.357345,38.123843],[115.351676054688,38.115630109375],[115.332345,38.1199636054688],[115.322301054688,38.1177126289063],[115.272388945313,38.1299733710938],[115.252345,38.1254799628907],[115.225548125,38.1314882636719],[115.207345,38.123843],[115.19255984375,38.1304665351563],[115.182345,38.1272853828125],[115.157345,38.1350722480469],[115.112345,38.1210561347657],[115.073585234375,38.1331288886719],[115.087345,38.163843],[115.091793242188,38.1693959785157],[115.10322390625,38.17855003125],[115.08912234375,38.2152284980469],[115.137345,38.2538430000001],[115.15455203125,38.2606081367188],[115.20548953125,38.2298805976563],[115.22170046875,38.2694863105469],[115.23298953125,38.2781996894531],[115.237345,38.283843],[115.256046171875,38.2790444160157]]]]}},{"type":"Feature","properties":{"name":"无极县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.133804960938,38.2603029609375],[115.137345,38.2538430000001],[115.08912234375,38.2152284980469],[115.10322390625,38.17855003125],[115.091793242188,38.1693959785157],[115.087345,38.163843],[115.061793242188,38.1593959785156],[115.048453398438,38.1427370429688],[114.992974882813,38.0983119941407],[114.977345,38.093843],[114.96197390625,38.0892153144531],[114.94271609375,38.0784706855469],[114.85150515625,38.0438588691407],[114.81271609375,38.0626247382813],[114.832999296875,38.0989736152344],[114.803980742188,38.1239723945313],[114.7914075,38.1521535468751],[114.793526640625,38.1785195136719],[114.781763945313,38.1886501289063],[114.795621367188,38.2263808417969],[114.827213164063,38.2404787421876],[114.847345,38.263843],[114.872994414063,38.2575429511719],[114.877345,38.263843],[114.903804960938,38.2673830390626],[114.925440703125,38.2837490058594],[114.947345,38.2747206855469],[114.9635559375,38.2814028144531],[114.983804960938,38.2703029609375],[114.991422148438,38.2564028144532],[115.017345,38.2670864082031],[115.048404570313,38.2542836738282],[115.05646609375,38.273843],[115.047784453125,38.2949025703125],[115.063267851563,38.3012831855469],[115.070885039063,38.2873830390625],[115.083804960938,38.2803029609376],[115.090885039063,38.2673830390626],[115.133804960938,38.2603029609375]]]]}},{"type":"Feature","properties":{"name":"辛集市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.225548125,38.1314882636719],[115.252345,38.1254799628907],[115.272388945313,38.1299733710938],[115.322301054688,38.1177126289063],[115.332345,38.1199636054688],[115.351676054688,38.115630109375],[115.357345,38.123843],[115.3637121875,38.1202114082031],[115.381431914063,38.0866139960938],[115.402345,38.0944972968751],[115.439693632813,38.0804201484376],[115.447345,38.093843],[115.478428984375,38.0858657050781],[115.46142703125,38.0597585273438],[115.45326296875,38.0379274726563],[115.44107546875,38.0295131660156],[115.44361453125,38.0181728339844],[115.430103789063,38.008843],[115.44361453125,37.9995131660157],[115.440103789063,37.9838430000001],[115.451397734375,37.9334499335937],[115.412345,37.9422060371094],[115.40326296875,37.9179274726562],[115.35326296875,37.8992189765625],[115.36142703125,37.8779274726562],[115.39142703125,37.8667018867188],[115.38326296875,37.8579274726563],[115.360303984375,37.8493361640625],[115.348980742188,37.7988430000001],[115.355235625,37.7709572578125],[115.336261015625,37.7418202949219],[115.367345,37.733843],[115.367345,37.7238430000001],[115.387345,37.7238430000001],[115.37521609375,37.7008144355469],[115.33853640625,37.7172927070313],[115.3091028125,37.691059796875],[115.31865359375,37.6698000312501],[115.300797148438,37.6603932929688],[115.284991484375,37.6303932929688],[115.250797148438,37.6372927070313],[115.247345,37.6438430000001],[115.254444609375,37.6870705390626],[115.236549101563,37.7167372871094],[115.211690703125,37.7359242988282],[115.150445585938,37.7609914375001],[115.15478640625,37.7903786445313],[115.137345,37.8038430000001],[115.142882109375,37.8185781074219],[115.1418371875,37.8288430000001],[115.142896757813,37.839233625],[115.119288359375,37.858843],[115.142808867188,37.8783803535156],[115.156783476563,37.9260036445312],[115.141881132813,37.9383803535157],[115.132808867188,37.9503249335938],[115.158189726563,37.9477370429688],[115.171881132813,37.9793056464844],[115.182808867188,37.9883803535157],[115.191881132813,37.9993056464845],[115.2114465625,38.0155580878906],[115.180816679688,38.0288430000001],[115.21935671875,38.0455580878907],[115.187642851563,38.0719020820313],[115.202808867188,38.0983803535157],[115.207345,38.123843],[115.225548125,38.1314882636719]]]]}},{"type":"Feature","properties":{"name":"新华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.49312625,38.0790224433594],[114.487345,38.043843],[114.43170046875,38.0481996894531],[114.418631621094,38.0651308417969],[114.367345,38.073843],[114.373968535156,38.0886293769532],[114.37048953125,38.0998024726562],[114.400990019531,38.1101967597657],[114.411158476563,38.1400307441406],[114.423531523438,38.1476552558594],[114.431158476563,38.1600307441407],[114.437345,38.163843],[114.49271609375,38.1392153144531],[114.497345,38.1338430000001],[114.49298953125,38.1281996894531],[114.481392851563,38.1192507148438],[114.49312625,38.0790224433594]]]]}},{"type":"Feature","properties":{"name":"新乐市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,38.303843],[114.580152617188,38.308843],[114.567345,38.313843],[114.574913359375,38.3290724921875],[114.562974882813,38.347202375],[114.553985625,38.3206008125],[114.567345,38.313843],[114.530318632813,38.3101332832032],[114.535220976563,38.343296125],[114.497345,38.353843],[114.50920046875,38.3710170722657],[114.55548953125,38.3566689277344],[114.57509890625,38.38507346875],[114.602345,38.3673305488281],[114.62142703125,38.3797585273438],[114.653648710938,38.3880275703125],[114.64709109375,38.4172817207032],[114.688936796875,38.4411672187501],[114.667345,38.473843],[114.684586210938,38.4790334296876],[114.703038359375,38.5004494453125],[114.729049101563,38.4702553535157],[114.741998320313,38.4992739082032],[114.807345,38.493843],[114.82353640625,38.4591640449219],[114.82037234375,38.4450380683595],[114.843013945313,38.4501137519531],[114.85142703125,38.4379274726563],[114.86326296875,38.4297585273438],[114.871676054688,38.417572248047],[114.888741484375,38.4213979316407],[114.92076296875,38.3800795722657],[114.935308867188,38.3331508613282],[114.9005871875,38.3091762519532],[114.88142703125,38.2797585273438],[114.877345,38.263843],[114.872994414063,38.2575429511719],[114.847345,38.263843],[114.84326296875,38.2697585273437],[114.803682890625,38.2970839667969],[114.748297148438,38.3112978339844],[114.732345,38.3077223945313],[114.722301054688,38.3099733710938],[114.697345,38.303843],[114.675562773438,38.2940859199219],[114.635201445313,38.3267787910156],[114.6460559375,38.2919240546875],[114.597965117188,38.2755348945312],[114.572115507813,38.2835866523438],[114.567345,38.303843]]]]}},{"type":"Feature","properties":{"name":"行唐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.312669707031,38.7101430488281],[114.359329863281,38.6797585273438],[114.383260527344,38.6879274726563],[114.391429472656,38.6997585273438],[114.407345,38.703843],[114.413316679688,38.6969118476563],[114.4593371875,38.7006093574219],[114.530279570313,38.6430825019532],[114.542764921875,38.6090810371094],[114.5419153125,38.5984889960938],[114.575670195313,38.5883266425782],[114.62197390625,38.5284706855469],[114.667345,38.473843],[114.688936796875,38.4411672187501],[114.64709109375,38.4172817207032],[114.653648710938,38.3880275703125],[114.62142703125,38.3797585273438],[114.602345,38.3673305488281],[114.57509890625,38.38507346875],[114.55548953125,38.3566689277344],[114.50920046875,38.3710170722657],[114.497345,38.353843],[114.477345,38.353843],[114.45170046875,38.3681996894532],[114.4386340625,38.3851308417969],[114.416058378906,38.4025551582031],[114.38843875,38.4383364082031],[114.34170046875,38.4481996894532],[114.32298953125,38.4627614570313],[114.344486113281,38.4793544746094],[114.340362578125,38.5072634101563],[114.319351835938,38.542094953125],[114.291832304688,38.5380287910157],[114.28298953125,38.5494863105469],[114.27170046875,38.5581996894532],[114.241207304688,38.5977053046875],[114.174129667969,38.6494814277344],[114.167345,38.6738430000001],[114.197523222656,38.6865175605469],[114.257074003906,38.7011452460938],[114.272491484375,38.6976894355469],[114.312669707031,38.7101430488281]],[[114.515152617188,38.5872658515625],[114.527345,38.583843],[114.523922148438,38.5960353828125],[114.515152617188,38.5872658515625]]]]}},{"type":"Feature","properties":{"name":"裕华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.647550078125,38.0037990546876],[114.667345,37.973843],[114.651793242188,37.9782900214844],[114.618546171875,37.9978322578125],[114.600987578125,37.9759023261719],[114.572183867188,37.9794850898438],[114.522506132813,37.9682009101563],[114.512061796875,37.9694997382813],[114.497345,37.963843],[114.497345,37.973843],[114.487345,37.973843],[114.489888945313,38.0012990546876],[114.504801054688,38.0163869453125],[114.507345,38.033843],[114.582896757813,38.0382900214844],[114.594620390625,38.0529286933594],[114.667345,38.043843],[114.66326296875,38.0279274726563],[114.647550078125,38.0037990546876]]]]}},{"type":"Feature","properties":{"name":"元氏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.517345,37.883843],[114.520767851563,37.8960353828126],[114.529537382813,37.8872658515625],[114.517345,37.883843]]],[[[114.517345,37.883843],[114.521881132813,37.8783803535156],[114.5514465625,37.8655580878906],[114.522808867188,37.8417678046876],[114.57556765625,37.8166237617188],[114.612345,37.8203713203125],[114.621881132813,37.7983803535156],[114.627345,37.7938430000001],[114.623531523438,37.7776552558594],[114.607486601563,37.76776878125],[114.621158476563,37.7276552558594],[114.633531523438,37.7200307441406],[114.637345,37.693843],[114.59142703125,37.6897585273438],[114.583013945313,37.6775722480469],[114.572066679688,37.6800258613282],[114.542584257813,37.6676430488282],[114.517345,37.673843],[114.501519804688,37.6780178046875],[114.490220976563,37.7073159003907],[114.439244414063,37.6972426582032],[114.423170195313,37.7196681953125],[114.401519804688,37.7280178046875],[114.392345,37.7518068671875],[114.351798125,37.743794171875],[114.312633085938,37.759887921875],[114.302345,37.7578554511719],[114.283914824219,37.7614968085937],[114.252701445313,37.7376589179688],[114.202899199219,37.7527883125001],[114.197345,37.773843],[114.205186796875,37.7794631171876],[114.201356230469,37.7988430000001],[114.205308867188,37.818843],[114.174971953125,37.8305434394531],[114.170301542969,37.8541872382813],[114.220416289063,37.8442836738281],[114.235328398438,37.91866721875],[114.267345,37.923843],[114.257747832031,37.9009938789063],[114.282345,37.8954799628907],[114.302345,37.8999636054688],[114.317345,37.8966017890625],[114.332491484375,37.8999965644531],[114.379691191406,37.8853664375],[114.413260527344,37.8979274726563],[114.441842070313,37.9200771308594],[114.457613554688,37.9165407539063],[114.487345,37.923843],[114.490845976563,37.885669171875],[114.502359648438,37.8912917304688],[114.517345,37.883843]]]]}},{"type":"Feature","properties":{"name":"赞皇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.202899199219,37.7527883125001],[114.252701445313,37.7376589179688],[114.283914824219,37.7614968085937],[114.302345,37.7578554511719],[114.312633085938,37.759887921875],[114.351798125,37.743794171875],[114.392345,37.7518068671875],[114.401519804688,37.7280178046875],[114.423170195313,37.7196681953125],[114.439244414063,37.6972426582032],[114.490220976563,37.7073159003907],[114.501519804688,37.6780178046875],[114.517345,37.673843],[114.51271609375,37.6484706855469],[114.4966028125,37.6345864082032],[114.467345,37.583843],[114.457345,37.583843],[114.457345,37.5738430000001],[114.450943632813,37.5655471015625],[114.375794707031,37.5347914863282],[114.358377714844,37.5122267890626],[114.263316679688,37.4966103339844],[114.22170046875,37.5081996894531],[114.190765410156,37.5268593574219],[114.152916289063,37.5324526191406],[114.135562773438,37.4900575996094],[114.117345,37.4873647285157],[114.090877714844,37.4912770820313],[114.07170046875,37.4594863105469],[114.067345,37.443843],[114.042105742188,37.4376430488282],[114.027345,37.443843],[114.033856230469,37.4936061835938],[114.06271609375,37.5184706855469],[114.114241972656,37.5902284980469],[114.111219511719,37.6278627753906],[114.12271609375,37.6484706855469],[114.127345,37.693843],[114.13298953125,37.6981996894531],[114.142689238281,37.721899640625],[114.178795195313,37.7686769843751],[114.197345,37.773843],[114.202899199219,37.7527883125001]]]]}},{"type":"Feature","properties":{"name":"赵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.697345,37.6438430000001],[114.709537382813,37.6472658515625],[114.700767851563,37.6560353828125],[114.657564726563,37.6506008125001],[114.64298953125,37.6694863105469],[114.631314726563,37.6784987617188],[114.637345,37.693843],[114.633531523438,37.7200307441406],[114.621158476563,37.7276552558594],[114.607486601563,37.76776878125],[114.623531523438,37.7776552558594],[114.627345,37.7938430000001],[114.632735625,37.8003322578125],[114.665982695313,37.7969435859375],[114.753331328125,37.8341860175781],[114.750836210938,37.8586586738282],[114.782808867188,37.8783803535156],[114.787345,37.883843],[114.822310820313,37.8780995917969],[114.837345,37.8803212714844],[114.874010039063,37.8749025703125],[114.911793242188,37.8521120429688],[114.962345,37.8595815253906],[114.972955351563,37.8580141425782],[114.977345,37.883843],[114.99400515625,37.8705019355469],[115.034937773438,37.8031081367188],[115.067345,37.7938430000001],[115.0600403125,37.7641127753907],[115.064830351563,37.7427626777344],[115.037345,37.7366017890626],[115.010592070313,37.7425991035156],[114.96326296875,37.7279274726562],[114.895089140625,37.7189211250001],[114.84142703125,37.6897585273438],[114.83326296875,37.6779274726563],[114.809595976563,37.6615895820313],[114.789176054688,37.6320119453126],[114.757345,37.623843],[114.727345,37.623843],[114.727345,37.633843],[114.697345,37.633843],[114.697345,37.6438430000001]]]]}},{"type":"Feature","properties":{"name":"正定县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,38.303843],[114.567345,38.313843],[114.580152617188,38.308843],[114.567345,38.303843]]],[[[114.567345,38.313843],[114.553985625,38.3206008125],[114.562974882813,38.347202375],[114.574913359375,38.3290724921875],[114.567345,38.313843]]],[[[114.567345,38.303843],[114.572115507813,38.2835866523438],[114.597965117188,38.2755348945312],[114.6460559375,38.2919240546875],[114.635201445313,38.3267787910156],[114.675562773438,38.2940859199219],[114.697345,38.303843],[114.70099734375,38.2857436347657],[114.717486601563,38.2937953925781],[114.725269804688,38.2778530097657],[114.709420195313,38.2698329902344],[114.715269804688,38.2578530097656],[114.700704375,38.250483625],[114.693985625,38.2372023750001],[114.680704375,38.2304836250001],[114.673985625,38.147202375],[114.659420195313,38.1398329902344],[114.664796171875,38.1288283515625],[114.657345,38.113843],[114.649439726563,38.1036000800782],[114.527345,38.123843],[114.513985625,38.130483625],[114.497345,38.1338430000001],[114.49271609375,38.1392153144531],[114.437345,38.163843],[114.397567167969,38.2171364570313],[114.387345,38.2538430000001],[114.439136992188,38.2587856269531],[114.45373171875,38.2944509101563],[114.450308867188,38.3176210761719],[114.477345,38.353843],[114.497345,38.353843],[114.535220976563,38.343296125],[114.530318632813,38.3101332832032],[114.567345,38.303843]]]]}},{"type":"Feature","properties":{"name":"藁城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.748297148438,38.3112978339844],[114.803682890625,38.2970839667969],[114.84326296875,38.2697585273437],[114.847345,38.263843],[114.827213164063,38.2404787421876],[114.795621367188,38.2263808417969],[114.781763945313,38.1886501289063],[114.793526640625,38.1785195136719],[114.7914075,38.1521535468751],[114.803980742188,38.1239723945313],[114.832999296875,38.0989736152344],[114.81271609375,38.0626247382813],[114.85150515625,38.0438588691407],[114.94271609375,38.0784706855469],[114.96197390625,38.0892153144531],[114.977345,38.093843],[114.970719023438,38.0141030097656],[114.973551054688,37.978843],[114.971138945313,37.9488430000001],[114.973526640625,37.9191664863282],[114.954932890625,37.9031508613282],[114.977345,37.883843],[114.972955351563,37.8580141425782],[114.962345,37.8595815253906],[114.911793242188,37.8521120429688],[114.874010039063,37.8749025703125],[114.837345,37.8803212714844],[114.822310820313,37.8780995917969],[114.787345,37.883843],[114.779693632813,37.8972658515626],[114.744928007813,37.8841616035157],[114.75814578125,37.9192287421876],[114.7209778125,37.9274745917969],[114.681871367188,37.9457448554687],[114.667345,37.973843],[114.647550078125,38.0037990546876],[114.66326296875,38.0279274726563],[114.667345,38.043843],[114.67326296875,38.0479274726563],[114.68142703125,38.0597585273438],[114.697496367188,38.0708534980469],[114.689722929688,38.1055336738282],[114.657345,38.113843],[114.664796171875,38.1288283515625],[114.659420195313,38.1398329902344],[114.673985625,38.147202375],[114.680704375,38.2304836250001],[114.693985625,38.2372023750001],[114.700704375,38.250483625],[114.715269804688,38.2578530097656],[114.709420195313,38.2698329902344],[114.725269804688,38.2778530097657],[114.717486601563,38.2937953925781],[114.70099734375,38.2857436347657],[114.697345,38.303843],[114.722301054688,38.3099733710938],[114.732345,38.3077223945313],[114.748297148438,38.3112978339844]]]]}},{"type":"Feature","properties":{"name":"栾城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.517345,37.883843],[114.529537382813,37.8872658515625],[114.520767851563,37.8960353828126],[114.502359648438,37.8912917304688],[114.490845976563,37.885669171875],[114.487345,37.923843],[114.510396757813,37.93647971875],[114.497345,37.963843],[114.512061796875,37.9694997382813],[114.522506132813,37.9682009101563],[114.572183867188,37.9794850898438],[114.600987578125,37.9759023261719],[114.618546171875,37.9978322578125],[114.651793242188,37.9782900214844],[114.667345,37.973843],[114.681871367188,37.9457448554687],[114.7209778125,37.9274745917969],[114.75814578125,37.9192287421876],[114.744928007813,37.8841616035157],[114.779693632813,37.8972658515626],[114.787345,37.883843],[114.782808867188,37.8783803535156],[114.750836210938,37.8586586738282],[114.753331328125,37.8341860175781],[114.665982695313,37.7969435859375],[114.632735625,37.8003322578125],[114.627345,37.7938430000001],[114.621881132813,37.7983803535156],[114.612345,37.8203713203125],[114.57556765625,37.8166237617188],[114.522808867188,37.8417678046876],[114.5514465625,37.8655580878906],[114.521881132813,37.8783803535156],[114.517345,37.883843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"路北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.187345,39.7038430000001],[118.19138796875,39.6871694160156],[118.226011992188,39.696899640625],[118.218131132813,39.6688430000001],[118.226344023438,39.6396059394532],[118.211246367188,39.6299404121094],[118.207345,39.6238430000001],[118.127345,39.6238430000001],[118.127345,39.5838430000001],[118.117345,39.5838430000001],[118.077345,39.5838430000001],[118.071671171875,39.62925315625],[118.112896757813,39.6782900214844],[118.121846953125,39.69952659375],[118.152799101563,39.6956764960938],[118.167345,39.713843],[118.187345,39.7038430000001]]],[[[118.187345,39.7038430000001],[118.190767851563,39.7160353828126],[118.199537382813,39.7072658515625],[118.187345,39.7038430000001]]]]}},{"type":"Feature","properties":{"name":"路南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.237345,39.563843],[118.219923125,39.5571450019532],[118.128409453125,39.5700283027344],[118.117345,39.5838430000001],[118.127345,39.5838430000001],[118.127345,39.6238430000001],[118.207345,39.6238430000001],[118.225094023438,39.6115895820313],[118.237345,39.563843]]]]}},{"type":"Feature","properties":{"name":"丰润区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.927345,39.803843],[117.915152617188,39.8072658515625],[117.923922148438,39.8160353828125],[117.927345,39.803843]]],[[[117.927345,39.803843],[117.956221953125,39.8081618476563],[117.941246367188,39.8177455878907],[117.933443632813,39.8299404121094],[117.913580351563,39.8426552558594],[117.925870390625,39.886391828125],[117.905440703125,39.9162233710938],[117.917345,39.923843],[117.9351965625,39.9169814277344],[118.028175078125,39.9305129218751],[118.051871367188,39.9695241523438],[118.079210234375,39.9661232734375],[118.102345,39.979720685547],[118.12267703125,39.96776878125],[118.13560671875,39.9984438300782],[118.217345,40.063843],[118.291265898438,40.0591542792969],[118.30158328125,40.0077040839844],[118.328360625,40.0129958320313],[118.34341921875,39.9892763496094],[118.341236601563,39.9782228828126],[118.347345,39.9738430000001],[118.35412234375,39.9427614570313],[118.281060820313,39.8798146796876],[118.282769804688,39.8585366035157],[118.241612578125,39.8087807441407],[118.247345,39.803843],[118.240811796875,39.7886244941407],[118.259420195313,39.7607619453125],[118.213062773438,39.7724416328125],[118.203350859375,39.757837140625],[118.172374296875,39.74659690625],[118.167345,39.713843],[118.152799101563,39.6956764960938],[118.121846953125,39.69952659375],[118.112896757813,39.6782900214844],[118.071671171875,39.62925315625],[118.077345,39.5838430000001],[118.067535429688,39.5512685371095],[118.014586210938,39.5470143867188],[117.99271609375,39.5592153144532],[117.927345,39.573843],[117.892808867188,39.5893056464844],[117.798038359375,39.5999330878907],[117.774215117188,39.597505109375],[117.757345,39.603843],[117.76170046875,39.6194863105469],[117.800142851563,39.6491579414063],[117.84298953125,39.6581996894532],[117.854019804688,39.6724941230469],[117.850699492188,39.6949831367188],[117.883170195313,39.7082729316407],[117.880128203125,39.728843],[117.883824492188,39.753843],[117.881519804688,39.7694362617188],[117.91298953125,39.7781996894532],[117.927345,39.803843]]]]}},{"type":"Feature","properties":{"name":"古冶区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.58170046875,39.7270607734375],[118.556783476563,39.7017153144531],[118.522857695313,39.6967018867188],[118.503077421875,39.7223281074219],[118.444488554688,39.6983498359375],[118.43845828125,39.6575295234375],[118.468194609375,39.6619240546875],[118.4730871875,39.6288088203125],[118.467345,39.593843],[118.450704375,39.590483625],[118.437345,39.5838430000001],[118.419595976563,39.5960964179688],[118.40326296875,39.6197585273438],[118.39142703125,39.6279274726563],[118.381329375,39.6425551582032],[118.337345,39.653843],[118.34142703125,39.6697585273438],[118.380860625,39.6845119453125],[118.36142703125,39.6979274726563],[118.353116484375,39.7201369453125],[118.342345,39.7177223945313],[118.319859648438,39.7227626777344],[118.32572390625,39.7489150214844],[118.365094023438,39.7760964179687],[118.377345,39.793843],[118.427452421875,39.8166591621094],[118.44170046875,39.7981996894531],[118.46298953125,39.7894863105469],[118.48170046875,39.7781996894532],[118.530943632813,39.7644875312501],[118.54170046875,39.7381996894532],[118.58170046875,39.7270607734375]]]]}},{"type":"Feature","properties":{"name":"开平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.187345,39.7038430000001],[118.199537382813,39.7072658515625],[118.190767851563,39.7160353828126],[118.167345,39.713843],[118.172374296875,39.74659690625],[118.203350859375,39.757837140625],[118.213062773438,39.7724416328125],[118.259420195313,39.7607619453125],[118.240811796875,39.7886244941407],[118.247345,39.803843],[118.284190703125,39.7872072578126],[118.307345,39.7900868964844],[118.322799101563,39.7881642890625],[118.331890898438,39.7995217109375],[118.377345,39.793843],[118.365094023438,39.7760964179687],[118.32572390625,39.7489150214844],[118.319859648438,39.7227626777344],[118.342345,39.7177223945313],[118.353116484375,39.7201369453125],[118.36142703125,39.6979274726563],[118.380860625,39.6845119453125],[118.34142703125,39.6697585273438],[118.337345,39.653843],[118.294957304688,39.6486623359375],[118.28146609375,39.5692348457032],[118.237345,39.563843],[118.225094023438,39.6115895820313],[118.207345,39.6238430000001],[118.211246367188,39.6299404121094],[118.226344023438,39.6396059394532],[118.218131132813,39.6688430000001],[118.226011992188,39.696899640625],[118.19138796875,39.6871694160156],[118.187345,39.7038430000001]]]]}},{"type":"Feature","properties":{"name":"乐亭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.827345,39.153843],[118.841612578125,39.1432314277344],[118.814034453125,39.1207265449219],[118.827345,39.153843]]],[[[119.263922148438,39.3760353828126],[119.267345,39.3638430000001],[119.255152617188,39.3672658515625],[119.263922148438,39.3760353828126]]],[[[118.727345,39.4338430000001],[118.723922148438,39.4216506171876],[118.715152617188,39.4304201484375],[118.727345,39.4338430000001]]],[[[119.297345,39.423843],[119.297345,39.4338430000001],[119.310152617188,39.428843],[119.297345,39.423843]]],[[[119.297345,39.423843],[119.29271609375,39.4184706855469],[119.281539335938,39.408843],[119.300548125,39.3924684882813],[119.197345,39.383843],[119.193922148438,39.3960353828125],[119.185152617188,39.3872658515625],[119.197345,39.383843],[119.19298953125,39.3781996894531],[119.18170046875,39.3694863105469],[119.119478789063,39.2870497871094],[119.101832304688,39.2896572089844],[119.09298953125,39.2781996894532],[119.087345,39.273843],[119.083922148438,39.2860353828125],[119.075152617188,39.2772658515625],[119.087345,39.273843],[119.08326296875,39.2679274726563],[119.061051054688,39.2596169257813],[119.064503203125,39.2442116523437],[119.053013945313,39.2275722480469],[119.041842070313,39.2300771308594],[119.004249296875,39.2009426093751],[118.9656653125,39.1847365546875],[118.941900664063,39.190063703125],[118.90888796875,39.1685671210938],[118.83142703125,39.1597585273438],[118.827345,39.153843],[118.752857695313,39.1375966621094],[118.732345,39.1392446113282],[118.717345,39.1380397773437],[118.693526640625,39.1399538398438],[118.687345,39.1738430000001],[118.690885039063,39.2103029609375],[118.704581328125,39.2284133125],[118.69822390625,39.2438430000001],[118.7105871875,39.273843],[118.69654421875,39.3079213691406],[118.713804960938,39.3173830390625],[118.717345,39.333843],[118.722808867188,39.3383803535157],[118.741881132813,39.3666957832031],[118.711373320313,39.4090859199219],[118.7414465625,39.4221279121094],[118.727345,39.4338430000001],[118.731793242188,39.4493959785156],[118.747076445313,39.4616347480469],[118.79455203125,39.443384015625],[118.82963015625,39.4640041328125],[118.807906523438,39.4814003730469],[118.7820325,39.4781825996094],[118.772896757813,39.4822743964844],[118.8040246875,39.5072011542969],[118.857345,39.573843],[118.8919153125,39.548040998047],[118.924810820313,39.5529018378907],[118.973170195313,39.5394362617188],[118.970167265625,39.5191164375001],[119.00588015625,39.4977577949219],[119.000924101563,39.4642250800782],[119.042735625,39.4580458808595],[119.065889921875,39.4720131660156],[119.122345,39.4636708808594],[119.16263796875,39.4696254707031],[119.19170046875,39.4581996894531],[119.22298953125,39.4494863105469],[119.25170046875,39.4281996894532],[119.277345,39.423843],[119.287345,39.423843],[119.297345,39.423843]]]]}},{"type":"Feature","properties":{"name":"滦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.347345,39.9738430000001],[118.387047148438,39.9673207832032],[118.410767851563,39.9708266425782],[118.43170046875,39.9581996894531],[118.447345,39.953843],[118.460299101563,39.943843],[118.440865507813,39.9288430000001],[118.455811796875,39.9173073554688],[118.449429960938,39.8741005683594],[118.466954375,39.8513967109375],[118.527642851563,39.8603652167969],[118.61172,39.8465541816406],[118.627838164063,39.8674379707031],[118.651832304688,39.8709841132813],[118.668424101563,39.8494863105469],[118.68298953125,39.8581996894532],[118.691773710938,39.8796657539063],[118.713433867188,39.8764650703125],[118.710518828125,39.8962026191407],[118.754327421875,39.9316091132813],[118.7886340625,39.9051308417969],[118.81041140625,39.8769118476563],[118.827345,39.863843],[118.823985625,39.847202375],[118.807432890625,39.81390159375],[118.815391875,39.7976076484375],[118.789298125,39.7900783515625],[118.794796171875,39.7788283515625],[118.787345,39.763843],[118.768033476563,39.7588869453126],[118.7855871875,39.7022585273438],[118.81326296875,39.6597585273438],[118.817345,39.643843],[118.778609648438,39.6388869453126],[118.7342590625,39.6134828925782],[118.712589140625,39.6395705390625],[118.67834109375,39.6267031074219],[118.643531523438,39.6302504707032],[118.622808867188,39.6183803535157],[118.517960234375,39.6066225410157],[118.502808867188,39.5883803535157],[118.484508085938,39.5731801582032],[118.467345,39.593843],[118.4730871875,39.6288088203125],[118.468194609375,39.6619240546875],[118.43845828125,39.6575295234375],[118.444488554688,39.6983498359375],[118.503077421875,39.7223281074219],[118.522857695313,39.6967018867188],[118.556783476563,39.7017153144531],[118.58170046875,39.7270607734375],[118.54170046875,39.7381996894532],[118.530943632813,39.7644875312501],[118.48170046875,39.7781996894532],[118.46298953125,39.7894863105469],[118.44170046875,39.7981996894531],[118.427452421875,39.8166591621094],[118.377345,39.793843],[118.331890898438,39.7995217109375],[118.322799101563,39.7881642890625],[118.307345,39.7900868964844],[118.284190703125,39.7872072578126],[118.247345,39.803843],[118.241612578125,39.8087807441407],[118.282769804688,39.8585366035157],[118.281060820313,39.8798146796876],[118.35412234375,39.9427614570313],[118.347345,39.9738430000001]]]]}},{"type":"Feature","properties":{"name":"迁安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.73298953125,40.2094863105469],[118.74490359375,40.1940492988281],[118.797086210938,40.2017604804687],[118.81298953125,40.1894863105469],[118.823883085938,40.1753749824219],[118.860767851563,40.1808266425781],[118.88170046875,40.1681996894532],[118.917345,40.153843],[118.911143828125,40.1286025214844],[118.92392703125,40.0981764960938],[118.899176054688,40.0889150214844],[118.860474882813,40.0621938300782],[118.863468046875,40.0488430000001],[118.859454375,40.0309572578126],[118.88142703125,39.9972145820313],[118.87326296875,39.9379274726562],[118.86142703125,39.9297585273438],[118.841827421875,39.873843],[118.827345,39.863843],[118.81041140625,39.8769118476563],[118.7886340625,39.9051308417969],[118.754327421875,39.9316091132813],[118.710518828125,39.8962026191407],[118.713433867188,39.8764650703125],[118.691773710938,39.8796657539063],[118.68298953125,39.8581996894532],[118.668424101563,39.8494863105469],[118.651832304688,39.8709841132813],[118.627838164063,39.8674379707031],[118.61172,39.8465541816406],[118.527642851563,39.8603652167969],[118.466954375,39.8513967109375],[118.449429960938,39.8741005683594],[118.455811796875,39.9173073554688],[118.440865507813,39.9288430000001],[118.460299101563,39.943843],[118.447345,39.953843],[118.45310671875,39.9787001777344],[118.450128203125,39.998843],[118.45375125,40.0233498359376],[118.488492460938,40.0501650214844],[118.521798125,40.1096620917969],[118.532345,40.1081044746094],[118.544405546875,40.1098867011719],[118.540621367188,40.1354982734376],[118.583375273438,40.1684987617188],[118.571314726563,40.1991872382813],[118.58968875,40.2133718085938],[118.617345,40.253843],[118.657921171875,40.242544171875],[118.695343046875,40.2199697089844],[118.73298953125,40.2094863105469]]]]}},{"type":"Feature","properties":{"name":"迁西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.267139921875,40.4316091132812],[118.3024621875,40.418032453125],[118.327222929688,40.4325893378906],[118.362345,40.4282216621094],[118.38095828125,40.4305361152344],[118.404581328125,40.4166493964845],[118.513970976563,40.4030434394532],[118.546763945313,40.4223171210938],[118.56334109375,40.4090419746094],[118.550650664063,40.38745628125],[118.553023710938,40.3683901191406],[118.534830351563,40.3538210273438],[118.529405546875,40.3102016425782],[118.542896757813,40.2993959785157],[118.551793242188,40.2882900214844],[118.567345,40.283843],[118.570704375,40.267202375],[118.603985625,40.260483625],[118.617345,40.253843],[118.58968875,40.2133718085938],[118.571314726563,40.1991872382813],[118.583375273438,40.1684987617188],[118.540621367188,40.1354982734376],[118.544405546875,40.1098867011719],[118.532345,40.1081044746094],[118.521798125,40.1096620917969],[118.488492460938,40.0501650214844],[118.45375125,40.0233498359376],[118.450128203125,39.998843],[118.45310671875,39.9787001777344],[118.447345,39.953843],[118.43170046875,39.9581996894531],[118.410767851563,39.9708266425782],[118.387047148438,39.9673207832032],[118.347345,39.9738430000001],[118.341236601563,39.9782228828126],[118.34341921875,39.9892763496094],[118.328360625,40.0129958320313],[118.30158328125,40.0077040839844],[118.291265898438,40.0591542792969],[118.217345,40.063843],[118.209830351563,40.0976003242188],[118.2231653125,40.1086782050781],[118.20818484375,40.1348403144532],[118.163267851563,40.1721498847656],[118.182808867188,40.1883803535157],[118.191881132813,40.2117678046875],[118.151475859375,40.2453298164063],[118.153780546875,40.2679506660157],[118.131588164063,40.2987905097656],[118.14310671875,40.3189015937501],[118.117345,40.3538430000001],[118.130704375,40.380483625],[118.143985625,40.387202375],[118.150704375,40.420483625],[118.179771757813,40.428872296875],[118.187345,40.443843],[118.212896757813,40.4482900214844],[118.24416140625,40.4603066230469],[118.267139921875,40.4316091132812]]]]}},{"type":"Feature","properties":{"name":"玉田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.927345,39.803843],[117.923922148438,39.8160353828125],[117.915152617188,39.8072658515625],[117.91298953125,39.7781996894532],[117.881519804688,39.7694362617188],[117.883824492188,39.753843],[117.880128203125,39.728843],[117.883170195313,39.7082729316407],[117.850699492188,39.6949831367188],[117.854019804688,39.6724941230469],[117.84298953125,39.6581996894532],[117.800142851563,39.6491579414063],[117.76170046875,39.6194863105469],[117.757345,39.603843],[117.7437121875,39.5774745917969],[117.727022734375,39.5679579902344],[117.736676054688,39.5423598457032],[117.704996367188,39.5304201484376],[117.6937121875,39.5502114082032],[117.687345,39.5538430000001],[117.693155546875,39.5689589667969],[117.677183867188,39.5961293769532],[117.657345,39.5713552070313],[117.642896757813,39.5893959785157],[117.621129179688,39.5985683417969],[117.658375273438,39.6451406074219],[117.639327421875,39.6946987128907],[117.579600859375,39.7117751289063],[117.5841028125,39.7479946113282],[117.537345,39.753843],[117.542882109375,39.7685781074219],[117.541803007813,39.779165265625],[117.555933867188,39.803843],[117.541881132813,39.8283803535156],[117.532808867188,39.8493056464844],[117.521881132813,39.8583803535156],[117.512808867188,39.8893056464844],[117.5015246875,39.8986782050782],[117.51375125,39.9200307441406],[117.511798125,39.9391909003907],[117.533780546875,39.9697353339844],[117.531788359375,39.9892885566407],[117.5801965625,39.9983803535157],[117.6220715625,39.9682448554688],[117.702608671875,39.9831386542969],[117.76545046875,39.9595241523438],[117.777345,39.9738430000001],[117.813111601563,39.9826284003907],[117.891329375,39.9625551582031],[117.90142703125,39.9479274726563],[117.91326296875,39.9397585273438],[117.917345,39.923843],[117.905440703125,39.9162233710938],[117.925870390625,39.886391828125],[117.913580351563,39.8426552558594],[117.933443632813,39.8299404121094],[117.941246367188,39.8177455878907],[117.956221953125,39.8081618476563],[117.927345,39.803843]]]]}},{"type":"Feature","properties":{"name":"遵化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.131588164063,40.2987905097656],[118.153780546875,40.2679506660157],[118.151475859375,40.2453298164063],[118.191881132813,40.2117678046875],[118.182808867188,40.1883803535157],[118.163267851563,40.1721498847656],[118.20818484375,40.1348403144532],[118.2231653125,40.1086782050781],[118.209830351563,40.0976003242188],[118.217345,40.063843],[118.13560671875,39.9984438300782],[118.12267703125,39.96776878125],[118.102345,39.979720685547],[118.079210234375,39.9661232734375],[118.051871367188,39.9695241523438],[118.028175078125,39.9305129218751],[117.9351965625,39.9169814277344],[117.917345,39.923843],[117.91326296875,39.9397585273438],[117.90142703125,39.9479274726563],[117.891329375,39.9625551582031],[117.813111601563,39.9826284003907],[117.777345,39.9738430000001],[117.784483671875,39.9928456855469],[117.78158328125,40.0213137031251],[117.742447539063,40.0173244453125],[117.732808867188,40.0353700996094],[117.7714465625,40.0521279121094],[117.751881132813,40.0683803535157],[117.742735625,40.0793923164063],[117.732081328125,40.0783058906251],[117.700474882813,40.090180890625],[117.677345,40.0878237128907],[117.641090117188,40.09151878125],[117.643800078125,40.1181154609376],[117.600386992188,40.1701723457032],[117.575050078125,40.1675893378906],[117.567345,40.1938430000001],[117.646783476563,40.2037795234376],[117.661851835938,40.2395436835938],[117.742686796875,40.2281642890625],[117.761793242188,40.2393959785157],[117.782896757813,40.2482900214844],[117.801983671875,40.2595095039063],[117.812418242188,40.2582118964844],[117.882271757813,40.2694741035157],[117.892799101563,40.2681642890625],[117.906261015625,40.2849770332031],[117.942345,40.2894643378907],[117.953917265625,40.2880251289062],[118.032095976563,40.3016310859375],[118.061632109375,40.3252834296876],[118.071793242188,40.3493959785157],[118.117345,40.3538430000001],[118.14310671875,40.3189015937501],[118.131588164063,40.2987905097656]]]]}},{"type":"Feature","properties":{"name":"丰南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.137345,39.193843],[118.147345,39.193843],[118.157345,39.1738430000001],[118.147345,39.1738430000001],[118.137345,39.1738430000001],[118.137345,39.193843]]],[[[118.137345,39.193843],[118.082896757813,39.2093959785157],[118.027345,39.223843],[118.032061796875,39.2291237617188],[118.061221953125,39.2425075507813],[118.032061796875,39.2685622382812],[118.022613554688,39.2891567207032],[117.993678007813,39.2874330878907],[117.962628203125,39.3091237617188],[117.902061796875,39.3185622382813],[117.882628203125,39.3291237617188],[117.860494414063,39.3385622382813],[117.847345,39.3238430000001],[117.8354309375,39.3298708320313],[117.847345,39.3538430000001],[117.859537382813,39.3572658515625],[117.850767851563,39.3660353828125],[117.847345,39.3538430000001],[117.801519804688,39.3580178046875],[117.793170195313,39.3674648261719],[117.841026640625,39.3800917792969],[117.855011015625,39.3773281074219],[117.871519804688,39.4596681953125],[117.8939465625,39.4757411933594],[117.889761992188,39.4969020820313],[117.90341921875,39.5184096503907],[117.900553007813,39.5329140449219],[117.927345,39.573843],[117.99271609375,39.5592153144532],[118.014586210938,39.5470143867188],[118.067535429688,39.5512685371095],[118.077345,39.5838430000001],[118.117345,39.5838430000001],[118.128409453125,39.5700283027344],[118.219923125,39.5571450019532],[118.237345,39.563843],[118.28146609375,39.5692348457032],[118.294957304688,39.6486623359375],[118.337345,39.653843],[118.381329375,39.6425551582032],[118.39142703125,39.6279274726563],[118.40326296875,39.6197585273438],[118.419595976563,39.5960964179688],[118.437345,39.5838430000001],[118.415811796875,39.5303774238282],[118.401529570313,39.5193544746094],[118.403082304688,39.5088430000001],[118.401573515625,39.4986318183594],[118.415792265625,39.4498757148438],[118.381104765625,39.4291298652344],[118.397345,39.4038430000001],[118.391158476563,39.4000307441407],[118.3798840625,39.3817372871094],[118.390347929688,39.3481557441407],[118.397345,39.343843],[118.397345,39.333843],[118.369058867188,39.3232143378907],[118.322203398438,39.3569374824219],[118.312808867188,39.3993056464844],[118.291793242188,39.4084194160156],[118.2928528125,39.418843],[118.2918371875,39.428843],[118.293941679688,39.4495156074219],[118.267345,39.4468044257813],[118.232735625,39.4503322578126],[118.202808867188,39.4142250800782],[118.239283476563,39.3505397773438],[118.253370390625,39.3388393378907],[118.229420195313,39.3193056464844],[118.212808867188,39.3393056464844],[118.196182890625,39.3531142402344],[118.162808867188,39.3442250800782],[118.182886992188,39.309165265625],[118.173673125,39.218755109375],[118.151881132813,39.2093056464844],[118.147345,39.2038430000001],[118.137345,39.2038430000001],[118.137345,39.193843]]]]}},{"type":"Feature","properties":{"name":"滦南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.209713164063,39.1121034980469],[118.266959257813,39.0742726875],[118.292789335938,39.0800637031251],[118.31142703125,39.0679274726563],[118.36326296875,39.0597585273438],[118.377345,39.0538430000001],[118.36931765625,39.0438210273438],[118.332345,39.0220864082031],[118.302896757813,39.0393959785157],[118.235650664063,39.0491835761719],[118.2028528125,39.0754470039062],[118.171793242188,39.1282900214844],[118.157345,39.163843],[118.157345,39.1738430000001],[118.190948515625,39.1685463691406],[118.215318632813,39.13710471875],[118.209713164063,39.1121034980469]]],[[[118.637345,39.263843],[118.660343046875,39.259790265625],[118.642779570313,39.2511464667969],[118.637345,39.263843]]],[[[118.637345,39.263843],[118.627345,39.263843],[118.627345,39.273843],[118.637345,39.273843],[118.637345,39.263843]]],[[[118.727345,39.4338430000001],[118.715152617188,39.4304201484375],[118.723922148438,39.4216506171876],[118.7414465625,39.4221279121094],[118.711373320313,39.4090859199219],[118.741881132813,39.3666957832031],[118.722808867188,39.3383803535157],[118.717345,39.333843],[118.637564726563,39.3257045722656],[118.617457304688,39.3023635078125],[118.632926054688,39.2890358710938],[118.627345,39.273843],[118.47427859375,39.2919496894531],[118.462281523438,39.3298317695313],[118.414224882813,39.3279262519532],[118.397345,39.333843],[118.397345,39.343843],[118.42326296875,39.3579274726563],[118.44142703125,39.3742812324219],[118.397345,39.4038430000001],[118.381104765625,39.4291298652344],[118.415792265625,39.4498757148438],[118.401573515625,39.4986318183594],[118.403082304688,39.5088430000001],[118.401529570313,39.5193544746094],[118.415811796875,39.5303774238282],[118.437345,39.5838430000001],[118.450704375,39.590483625],[118.467345,39.593843],[118.484508085938,39.5731801582032],[118.502808867188,39.5883803535157],[118.517960234375,39.6066225410157],[118.622808867188,39.6183803535157],[118.643531523438,39.6302504707032],[118.67834109375,39.6267031074219],[118.712589140625,39.6395705390625],[118.7342590625,39.6134828925782],[118.778609648438,39.6388869453126],[118.817345,39.643843],[118.844815703125,39.6248744941407],[118.84115359375,39.6085219550782],[118.857345,39.573843],[118.8040246875,39.5072011542969],[118.772896757813,39.4822743964844],[118.7820325,39.4781825996094],[118.807906523438,39.4814003730469],[118.82963015625,39.4640041328125],[118.79455203125,39.443384015625],[118.747076445313,39.4616347480469],[118.731793242188,39.4493959785156],[118.727345,39.4338430000001]]]]}},{"type":"Feature","properties":{"name":"曹妃甸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.451910429688,38.9665395332031],[118.457345,38.953843],[118.434346953125,38.9578957343751],[118.451910429688,38.9665395332031]]],[[[118.157345,39.1738430000001],[118.157345,39.163843],[118.147345,39.163843],[118.147345,39.1738430000001],[118.157345,39.1738430000001]]],[[[118.42326296875,39.3579274726563],[118.397345,39.343843],[118.390347929688,39.3481557441407],[118.3798840625,39.3817372871094],[118.391158476563,39.4000307441407],[118.397345,39.4038430000001],[118.44142703125,39.3742812324219],[118.42326296875,39.3579274726563]]],[[[118.627345,39.273843],[118.627345,39.263843],[118.637345,39.263843],[118.642779570313,39.2511464667969],[118.660343046875,39.259790265625],[118.637345,39.263843],[118.637345,39.273843],[118.632926054688,39.2890358710938],[118.617457304688,39.3023635078125],[118.637564726563,39.3257045722656],[118.717345,39.333843],[118.713804960938,39.3173830390625],[118.69654421875,39.3079213691406],[118.7105871875,39.273843],[118.69822390625,39.2438430000001],[118.704581328125,39.2284133125],[118.690885039063,39.2103029609375],[118.687345,39.1738430000001],[118.666402617188,39.1665016914063],[118.602203398438,39.1690468574219],[118.539986601563,39.1527443671876],[118.552550078125,39.1290065742188],[118.551988554688,39.1148110175782],[118.502139921875,39.0990285468751],[118.50295046875,39.0786208320313],[118.471510039063,39.0798671699219],[118.487198515625,39.0502211738281],[118.541685820313,39.0329701972657],[118.511470976563,39.0187111640625],[118.561065703125,38.9466371894531],[118.501412382813,38.9090334296875],[118.4758215625,38.9632631660156],[118.462535429688,39.0190334296875],[118.452154570313,39.0286525703126],[118.447345,39.033843],[118.467345,39.033843],[118.467345,39.043843],[118.479537382813,39.0472658515625],[118.470767851563,39.0560353828125],[118.467345,39.043843],[118.447345,39.043843],[118.447345,39.033843],[118.419049101563,39.0268923164063],[118.40326296875,39.0497585273438],[118.377345,39.0538430000001],[118.36326296875,39.0597585273438],[118.31142703125,39.0679274726563],[118.292789335938,39.0800637031251],[118.266959257813,39.0742726875],[118.209713164063,39.1121034980469],[118.215318632813,39.13710471875],[118.190948515625,39.1685463691406],[118.157345,39.1738430000001],[118.147345,39.193843],[118.147345,39.2038430000001],[118.151881132813,39.2093056464844],[118.173673125,39.218755109375],[118.182886992188,39.309165265625],[118.162808867188,39.3442250800782],[118.196182890625,39.3531142402344],[118.212808867188,39.3393056464844],[118.229420195313,39.3193056464844],[118.253370390625,39.3388393378907],[118.239283476563,39.3505397773438],[118.202808867188,39.4142250800782],[118.232735625,39.4503322578126],[118.267345,39.4468044257813],[118.293941679688,39.4495156074219],[118.2918371875,39.428843],[118.2928528125,39.418843],[118.291793242188,39.4084194160156],[118.312808867188,39.3993056464844],[118.322203398438,39.3569374824219],[118.369058867188,39.3232143378907],[118.397345,39.333843],[118.414224882813,39.3279262519532],[118.462281523438,39.3298317695313],[118.47427859375,39.2919496894531],[118.627345,39.273843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北戴河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.527345,39.883843],[119.5188684375,39.849341046875],[119.525836210938,39.8182680488281],[119.46142703125,39.8097585273438],[119.437345,39.803843],[119.40599734375,39.8086562324219],[119.413604765625,39.838843],[119.403922148438,39.8772634101563],[119.443062773438,39.8674025703125],[119.451339140625,39.879848859375],[119.467345,39.883843],[119.4824621875,39.8602272773437],[119.511246367188,39.8799404121094],[119.527345,39.883843]]]]}},{"type":"Feature","properties":{"name":"昌黎县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.287345,39.4338430000001],[119.297345,39.4338430000001],[119.297345,39.423843],[119.287345,39.423843],[119.287345,39.4338430000001]]],[[[119.293922148438,39.4760353828125],[119.297345,39.463843],[119.285152617188,39.4672658515625],[119.293922148438,39.4760353828125]]],[[[119.247345,39.4738430000001],[119.235152617188,39.4704201484375],[119.243922148438,39.4616506171876],[119.267345,39.4738430000001],[119.267345,39.463843],[119.255152617188,39.4604201484375],[119.263922148438,39.4516506171876],[119.267345,39.463843],[119.295289335938,39.4498293281251],[119.287345,39.4338430000001],[119.277345,39.4338430000001],[119.273922148438,39.4460353828125],[119.265152617188,39.4372658515625],[119.277345,39.4338430000001],[119.277345,39.423843],[119.25170046875,39.4281996894532],[119.22298953125,39.4494863105469],[119.19170046875,39.4581996894531],[119.16263796875,39.4696254707031],[119.122345,39.4636708808594],[119.065889921875,39.4720131660156],[119.042735625,39.4580458808595],[119.000924101563,39.4642250800782],[119.00588015625,39.4977577949219],[118.970167265625,39.5191164375001],[118.973170195313,39.5394362617188],[118.924810820313,39.5529018378907],[118.8919153125,39.548040998047],[118.857345,39.573843],[118.84115359375,39.6085219550782],[118.844815703125,39.6248744941407],[118.817345,39.643843],[118.81326296875,39.6597585273438],[118.7855871875,39.7022585273438],[118.768033476563,39.7588869453126],[118.787345,39.763843],[118.83463015625,39.7260182929688],[118.862799101563,39.7295217109375],[118.873702421875,39.7159023261719],[118.922345,39.7219521308594],[118.965206328125,39.7166213203125],[118.995904570313,39.7295571113281],[119.011793242188,39.7493959785156],[119.089273710938,39.7661611152344],[119.111793242188,39.7793959785157],[119.127345,39.7838430000001],[119.162310820313,39.7895864082031],[119.181832304688,39.7867018867188],[119.198424101563,39.8081996894531],[119.2172278125,39.7969509101563],[119.238795195313,39.7690090156251],[119.27298953125,39.7594863105469],[119.313253203125,39.729634015625],[119.347345,39.723843],[119.33170046875,39.6894863105469],[119.30298953125,39.6181996894531],[119.257877226563,39.5212660957032],[119.25170046875,39.4794863105469],[119.247345,39.4738430000001]]]]}},{"type":"Feature","properties":{"name":"抚宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,40.2338430000001],[119.615152617188,40.2304201484375],[119.623922148438,40.2216506171876],[119.64205203125,40.2280605292969],[119.66111453125,40.2308779121094],[119.706485625,40.1972377753906],[119.740748320313,40.2023012519531],[119.756256132813,40.1353871894531],[119.74298953125,40.1181996894532],[119.737345,40.113843],[119.722359648438,40.1063942695313],[119.711353789063,40.1117690253907],[119.699771757813,40.088872296875],[119.670704375,40.080483625],[119.667345,40.063843],[119.58111453125,40.0591677070312],[119.582745390625,40.038843],[119.581734648438,40.0262404609375],[119.56197390625,40.0092153144532],[119.55271609375,39.9984706855469],[119.46287234375,39.9847805000001],[119.482769804688,39.9491213203125],[119.481734648438,39.9362404609376],[119.46000125,39.9175148750001],[119.467345,39.883843],[119.451339140625,39.879848859375],[119.443062773438,39.8674025703125],[119.403922148438,39.8772634101563],[119.413604765625,39.838843],[119.40599734375,39.8086562324219],[119.437345,39.803843],[119.43326296875,39.7979274726563],[119.42142703125,39.7897585273438],[119.41326296875,39.7779274726563],[119.359859648438,39.7419667792969],[119.347345,39.723843],[119.313253203125,39.729634015625],[119.27298953125,39.7594863105469],[119.238795195313,39.7690090156251],[119.2172278125,39.7969509101563],[119.198424101563,39.8081996894531],[119.181832304688,39.7867018867188],[119.162310820313,39.7895864082031],[119.127345,39.7838430000001],[119.133678007813,39.8014907050781],[119.13123171875,39.8424990058594],[119.102061796875,39.8685622382813],[119.092628203125,39.8791237617188],[119.0720325,39.8885768867188],[119.073389921875,39.9113747382813],[119.0926575,39.9285903144532],[119.091851835938,39.9421511054688],[119.06611453125,39.9895119453125],[119.141148710938,39.9850405097657],[119.111910429688,40.038843],[119.1226575,40.0586171699219],[119.122047148438,40.068843],[119.122652617188,40.0790016914063],[119.117345,40.103843],[119.15170046875,40.1294863105469],[119.18298953125,40.1381996894531],[119.20170046875,40.1494863105469],[119.26298953125,40.1581996894532],[119.288511992188,40.1735964179688],[119.330084257813,40.1565822578126],[119.345264921875,40.1194948554688],[119.376143828125,40.0794863105469],[119.482525664063,40.1046425605469],[119.50170046875,40.1294863105469],[119.51298953125,40.1381996894531],[119.529049101563,40.1774391914063],[119.553463164063,40.1962831855469],[119.550865507813,40.213843],[119.555299101563,40.243843],[119.5515246875,40.2693825507813],[119.5831653125,40.2883034492188],[119.580074492188,40.3092104316407],[119.607345,40.3138430000001],[119.610704375,40.307202375],[119.631090117188,40.2968898750001],[119.644976835938,40.2684511542969],[119.630704375,40.2504836250001],[119.627345,40.2338430000001]]]]}},{"type":"Feature","properties":{"name":"海港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.677750273438,39.9894167304688],[119.691539335938,39.9670351386719],[119.703428984375,39.9707387519532],[119.707345,39.943843],[119.65142703125,39.9297585273438],[119.602652617188,39.9076528144532],[119.573326445313,39.9142275214844],[119.527345,39.883843],[119.511246367188,39.8799404121094],[119.4824621875,39.8602272773437],[119.467345,39.883843],[119.46000125,39.9175148750001],[119.481734648438,39.9362404609376],[119.482769804688,39.9491213203125],[119.46287234375,39.9847805000001],[119.55271609375,39.9984706855469],[119.56197390625,40.0092153144532],[119.581734648438,40.0262404609375],[119.582745390625,40.038843],[119.58111453125,40.0591677070312],[119.667345,40.063843],[119.663531523438,40.0576552558594],[119.634156523438,40.039555890625],[119.62041140625,39.9977638984376],[119.677750273438,39.9894167304688]]]]}},{"type":"Feature","properties":{"name":"卢龙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.95834109375,40.1675746894531],[118.983702421875,40.1359023261719],[119.012799101563,40.1395217109375],[119.021793242188,40.1282900214844],[119.045904570313,40.1181288886719],[119.066578398438,40.0923110175781],[119.117345,40.103843],[119.122652617188,40.0790016914063],[119.122047148438,40.068843],[119.1226575,40.0586171699219],[119.111910429688,40.038843],[119.141148710938,39.9850405097657],[119.06611453125,39.9895119453125],[119.091851835938,39.9421511054688],[119.0926575,39.9285903144532],[119.073389921875,39.9113747382813],[119.0720325,39.8885768867188],[119.092628203125,39.8791237617188],[119.102061796875,39.8685622382813],[119.13123171875,39.8424990058594],[119.133678007813,39.8014907050781],[119.127345,39.7838430000001],[119.111793242188,39.7793959785157],[119.089273710938,39.7661611152344],[119.011793242188,39.7493959785156],[118.995904570313,39.7295571113281],[118.965206328125,39.7166213203125],[118.922345,39.7219521308594],[118.873702421875,39.7159023261719],[118.862799101563,39.7295217109375],[118.83463015625,39.7260182929688],[118.787345,39.763843],[118.794796171875,39.7788283515625],[118.789298125,39.7900783515625],[118.815391875,39.7976076484375],[118.807432890625,39.81390159375],[118.823985625,39.847202375],[118.827345,39.863843],[118.841827421875,39.873843],[118.86142703125,39.9297585273438],[118.87326296875,39.9379274726562],[118.88142703125,39.9972145820313],[118.859454375,40.0309572578126],[118.863468046875,40.0488430000001],[118.860474882813,40.0621938300782],[118.899176054688,40.0889150214844],[118.92392703125,40.0981764960938],[118.911143828125,40.1286025214844],[118.917345,40.153843],[118.942725859375,40.1480776191407],[118.95834109375,40.1675746894531]]]]}},{"type":"Feature","properties":{"name":"青龙满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.147345,40.6138430000001],[119.147345,40.603843],[119.237345,40.603843],[119.214136992188,40.5687233710938],[119.261900664063,40.537622296875],[119.272789335938,40.540063703125],[119.291900664063,40.527622296875],[119.312345,40.5322060371094],[119.332789335938,40.527622296875],[119.363975859375,40.5479274726562],[119.38326296875,40.5397585273438],[119.391842070313,40.5273305488281],[119.425548125,40.5414882636719],[119.472550078125,40.5309511542969],[119.501900664063,40.550063703125],[119.517345,40.5466017890625],[119.539112578125,40.5514821601563],[119.553858671875,40.528843],[119.54060671875,40.5084950996094],[119.55326296875,40.4997585273438],[119.565513945313,40.4820119453125],[119.58978640625,40.4652529121094],[119.593472929688,40.4488014960937],[119.587345,40.4238430000001],[119.581676054688,40.3784841132813],[119.593013945313,40.3592031074219],[119.590533476563,40.3392958808594],[119.602896757813,40.3293959785156],[119.607345,40.3138430000001],[119.580074492188,40.3092104316407],[119.5831653125,40.2883034492188],[119.5515246875,40.2693825507813],[119.555299101563,40.243843],[119.550865507813,40.213843],[119.553463164063,40.1962831855469],[119.529049101563,40.1774391914063],[119.51298953125,40.1381996894531],[119.50170046875,40.1294863105469],[119.482525664063,40.1046425605469],[119.376143828125,40.0794863105469],[119.345264921875,40.1194948554688],[119.330084257813,40.1565822578126],[119.288511992188,40.1735964179688],[119.26298953125,40.1581996894532],[119.20170046875,40.1494863105469],[119.18298953125,40.1381996894531],[119.15170046875,40.1294863105469],[119.117345,40.103843],[119.066578398438,40.0923110175781],[119.045904570313,40.1181288886719],[119.021793242188,40.1282900214844],[119.012799101563,40.1395217109375],[118.983702421875,40.1359023261719],[118.95834109375,40.1675746894531],[118.942725859375,40.1480776191407],[118.917345,40.153843],[118.88170046875,40.1681996894532],[118.860767851563,40.1808266425781],[118.823883085938,40.1753749824219],[118.81298953125,40.1894863105469],[118.797086210938,40.2017604804687],[118.74490359375,40.1940492988281],[118.73298953125,40.2094863105469],[118.695343046875,40.2199697089844],[118.657921171875,40.242544171875],[118.617345,40.253843],[118.603985625,40.260483625],[118.570704375,40.267202375],[118.567345,40.283843],[118.571881132813,40.2993056464844],[118.596636992188,40.3100405097656],[118.643116484375,40.3687685371094],[118.631881132813,40.3883803535157],[118.622808867188,40.4093056464844],[118.607965117188,40.4352211738282],[118.655045195313,40.4490370917969],[118.679107695313,40.47800315625],[118.697345,40.4798622871094],[118.764332304688,40.4730348945313],[118.782808867188,40.4883803535157],[118.7995715625,40.5270314765625],[118.822345,40.5293520332031],[118.84834109375,40.5267031074219],[118.884215117188,40.540180890625],[118.950650664063,40.5334096503906],[118.962745390625,40.5612990546876],[119.05814578125,40.6019753242188],[119.082345,40.5881154609375],[119.114464140625,40.6065102363282],[119.141881132813,40.6093056464844],[119.147345,40.6138430000001]]]]}},{"type":"Feature","properties":{"name":"山海关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.737345,40.113843],[119.741988554688,40.09226096875],[119.76478640625,40.0797646308594],[119.754263945313,40.0542348457031],[119.787345,40.0405995917969],[119.8135559375,40.0514028144532],[119.84966921875,40.0316078925782],[119.83654421875,39.9997646308594],[119.847345,39.993843],[119.84298953125,39.9881996894531],[119.81170046875,39.9794863105469],[119.7803528125,39.9562453437501],[119.707345,39.943843],[119.703428984375,39.9707387519532],[119.691539335938,39.9670351386719],[119.677750273438,39.9894167304688],[119.62041140625,39.9977638984376],[119.634156523438,40.039555890625],[119.663531523438,40.0576552558594],[119.667345,40.063843],[119.670704375,40.080483625],[119.699771757813,40.088872296875],[119.711353789063,40.1117690253907],[119.722359648438,40.1063942695313],[119.737345,40.113843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"肥乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.902686796875,36.6469203925782],[114.972345,36.6366262031251],[114.9962121875,36.6401540351563],[115.02298953125,36.6194863105469],[115.027345,36.6138430000001],[115.001920195313,36.5791408515625],[115.003526640625,36.5591664863281],[114.99197390625,36.5492153144532],[114.98271609375,36.5384706855469],[114.9666028125,36.5245864082032],[114.95271609375,36.5084706855469],[114.93197390625,36.4992153144531],[114.911104765625,36.48757346875],[114.847345,36.493843],[114.83978640625,36.5036367011719],[114.787345,36.4958876777344],[114.741256132813,36.5026992011719],[114.645025664063,36.4868910957031],[114.627345,36.493843],[114.613980742188,36.5011696601563],[114.637584257813,36.5323805976563],[114.619625273438,36.5700307441406],[114.637345,36.5738430000001],[114.652896757813,36.5782900214844],[114.663702421875,36.5917836738281],[114.692799101563,36.5881642890625],[114.701793242188,36.5993959785157],[114.713023710938,36.6083901191407],[114.711666289063,36.6192958808594],[114.725440703125,36.6303237128906],[114.74763796875,36.6275624824219],[114.801793242188,36.6593959785157],[114.832896757813,36.6682900214844],[114.837345,36.673843],[114.8886340625,36.6651308417969],[114.902686796875,36.6469203925782]]]]}},{"type":"Feature","properties":{"name":"峰峰矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.093170195313,36.5696681953125],[114.107345,36.5498903632813],[114.122034941406,36.5703884101563],[114.170423613281,36.5396681953125],[114.213170195313,36.5480178046875],[114.237345,36.5633657050782],[114.26216921875,36.5476064277344],[114.277345,36.553843],[114.282686796875,36.5086159492188],[114.262625761719,36.4906923652344],[114.272532988281,36.4779604316407],[114.301995878906,36.4797158027344],[114.3026575,36.4685903144532],[114.292064238281,36.4591237617188],[114.282625761719,36.4485622382812],[114.231612578125,36.4161183906251],[114.2326575,36.3986061835938],[114.212064238281,36.3691237617188],[114.198521757813,36.3396181464844],[114.146883574219,36.3676784492188],[114.122345,36.3691408515625],[114.109881621094,36.3683986640626],[114.088726835938,36.5041530585938],[114.057345,36.513843],[114.065694609375,36.5254933906251],[114.083455839844,36.5382228828125],[114.075592070313,36.5780178046875],[114.093170195313,36.5696681953125]]]]}},{"type":"Feature","properties":{"name":"成安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.757345,36.303843],[114.757345,36.283843],[114.747345,36.283843],[114.747345,36.303843],[114.757345,36.303843]]],[[[114.507345,36.393843],[114.503922148438,36.3816506171875],[114.495152617188,36.3904201484375],[114.507345,36.393843]]],[[[114.757345,36.303843],[114.753804960938,36.3203029609375],[114.720885039063,36.3273830390625],[114.709073515625,36.3489333320313],[114.66806765625,36.3673830390625],[114.632345,36.3526601386719],[114.607345,36.3629653144531],[114.581710234375,36.3523976875001],[114.573619414063,36.4014284492188],[114.552345,36.3926601386719],[114.52687625,36.4031594062501],[114.507345,36.393843],[114.507345,36.403843],[114.487345,36.403843],[114.478521757813,36.4099355292969],[114.50326296875,36.4479274726563],[114.507345,36.493843],[114.552345,36.4882204414063],[114.570181914063,36.4904396796875],[114.611807890625,36.4744399238282],[114.627345,36.493843],[114.645025664063,36.4868910957031],[114.741256132813,36.5026992011719],[114.787345,36.4958876777344],[114.83978640625,36.5036367011719],[114.847345,36.493843],[114.85326296875,36.4797585273437],[114.86142703125,36.4379274726563],[114.89142703125,36.4267018867188],[114.874166289063,36.4081606269531],[114.81888796875,36.3939748359375],[114.827345,36.373843],[114.821158476563,36.3700307441407],[114.807135039063,36.3288832832032],[114.781158476563,36.3200307441407],[114.773531523438,36.3076552558594],[114.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"磁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.373531523438,36.5500307441407],[114.398033476563,36.5328273750001],[114.439928007813,36.5458779121094],[114.451539335938,36.5270351386719],[114.485636015625,36.5376552558594],[114.514488554688,36.509790265625],[114.507345,36.493843],[114.50326296875,36.4479274726563],[114.478521757813,36.4099355292969],[114.487345,36.403843],[114.481217070313,36.3799697089844],[114.440870390625,36.3696157050782],[114.421429472656,36.3397585273438],[114.413260527344,36.3179274726562],[114.401429472656,36.3097585273438],[114.383260527344,36.2779274726562],[114.337345,36.253843],[114.32263796875,36.2480605292969],[114.312345,36.2495815253907],[114.295496855469,36.2470925117188],[114.252554960938,36.2596132636719],[114.233922148438,36.2568593574219],[114.210553007813,36.2709560371094],[114.19298953125,36.2481996894532],[114.178426542969,36.2394863105469],[114.16298953125,36.2594863105469],[114.136214628906,36.2801540351563],[114.073761015625,36.2709242988282],[114.037620878906,36.2927236152344],[114.053140898438,36.3184523750001],[114.051302519531,36.3309059882813],[114.021253691406,36.3264650703126],[114.024945097656,36.3514443183594],[114.002310820313,36.3480995917969],[113.967345,36.3538430000001],[113.962899199219,36.3593959785156],[113.901790800781,36.3682900214844],[113.892899199219,36.3832692695312],[113.952899199219,36.4582900214844],[113.967345,36.483843],[113.991429472656,36.4997585273438],[114.043260527344,36.5079274726562],[114.057345,36.513843],[114.088726835938,36.5041530585938],[114.109881621094,36.3683986640626],[114.122345,36.3691408515625],[114.146883574219,36.3676784492188],[114.198521757813,36.3396181464844],[114.212064238281,36.3691237617188],[114.2326575,36.3986061835938],[114.231612578125,36.4161183906251],[114.282625761719,36.4485622382812],[114.292064238281,36.4591237617188],[114.3026575,36.4685903144532],[114.301995878906,36.4797158027344],[114.272532988281,36.4779604316407],[114.262625761719,36.4906923652344],[114.282686796875,36.5086159492188],[114.277345,36.553843],[114.285269804688,36.5578530097657],[114.277484160156,36.5737953925782],[114.297345,36.5838430000001],[114.33763796875,36.5795986152344],[114.351158476563,36.5576552558594],[114.373531523438,36.5500307441407]],[[114.392806425781,36.4859181953125],[114.412806425781,36.4693056464844],[114.421883574219,36.4583803535157],[114.427345,36.453843],[114.442886992188,36.4785097480469],[114.440323515625,36.5036525703126],[114.392806425781,36.4859181953125]]]]}},{"type":"Feature","properties":{"name":"丛台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.497345,36.663843],[114.51326296875,36.6397585273438],[114.517345,36.603843],[114.467345,36.603843],[114.47142703125,36.6297585273437],[114.477345,36.6538430000001],[114.477345,36.663843],[114.497345,36.663843]]],[[[114.497345,36.663843],[114.500767851563,36.6760353828126],[114.509537382813,36.6672658515625],[114.497345,36.663843]]]]}},{"type":"Feature","properties":{"name":"大名县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.20326296875,36.4597585273438],[115.224459257813,36.4459548164063],[115.264249296875,36.4548744941407],[115.277345,36.473843],[115.3067590625,36.4535341621094],[115.2979309375,36.4141518378906],[115.33326296875,36.3897585273438],[115.337345,36.3838430000001],[115.34142703125,36.3579274726563],[115.357496367188,36.3468325019532],[115.348443632813,36.3064333320313],[115.411651640625,36.3260268378906],[115.423204375,36.2810048652344],[115.453873320313,36.2695290351563],[115.473565703125,36.2392897773438],[115.468980742188,36.218843],[115.473468046875,36.1988430000001],[115.4700403125,36.1835732246094],[115.477345,36.1538430000001],[115.451793242188,36.1707289863281],[115.44326296875,36.1479274726563],[115.414620390625,36.137212140625],[115.402345,36.1399636054688],[115.382271757813,36.13546409375],[115.358678007813,36.1012868476563],[115.323975859375,36.0797585273438],[115.28970828125,36.1020729804688],[115.295709257813,36.128843],[115.27142703125,36.1379274726563],[115.24154421875,36.1929177070312],[115.192476835938,36.2112770820313],[115.18326296875,36.1979274726563],[115.1570715625,36.1897585273438],[115.14326296875,36.2097585273438],[115.117345,36.213843],[115.111832304688,36.2209841132813],[115.084088164063,36.2168837714844],[115.070494414063,36.2813124824219],[115.073824492188,36.303843],[115.07093875,36.3233498359376],[115.05170046875,36.3381996894531],[115.01298953125,36.3894863105469],[114.98170046875,36.4081996894531],[114.967345,36.433843],[115.001846953125,36.4423171210938],[115.028375273438,36.4363698554688],[115.06798953125,36.4937429023438],[115.107345,36.5038430000001],[115.11142703125,36.4979274726563],[115.153756132813,36.4694264960938],[115.20326296875,36.4597585273438]]]]}},{"type":"Feature","properties":{"name":"复兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.467345,36.603843],[114.457345,36.563843],[114.40271609375,36.5738075996095],[114.41197390625,36.5992153144531],[114.422772246094,36.6085195136719],[114.421942167969,36.6188430000001],[114.422747832031,36.628843],[114.421197539063,36.6481154609376],[114.477345,36.6538430000001],[114.47142703125,36.6297585273437],[114.467345,36.603843]]]]}},{"type":"Feature","properties":{"name":"馆陶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.403170195313,36.6680178046875],[115.385694609375,36.655493390625],[115.368995390625,36.6321926093751],[115.335186796875,36.6079616523438],[115.323170195313,36.5480178046875],[115.30947390625,36.5264455390626],[115.2916028125,36.5299782539063],[115.283170195313,36.4980178046875],[115.27099734375,36.48929221875],[115.277345,36.473843],[115.264249296875,36.4548744941407],[115.224459257813,36.4459548164063],[115.20326296875,36.4597585273438],[115.153756132813,36.4694264960938],[115.11142703125,36.4979274726563],[115.107345,36.5038430000001],[115.113531523438,36.5076552558594],[115.121158476563,36.5200307441407],[115.16318484375,36.5343520332031],[115.167345,36.5738430000001],[115.193980742188,36.5883180976563],[115.21408328125,36.6191909003907],[115.1994934375,36.629262921875],[115.217345,36.633843],[115.2339465625,36.6457411933594],[115.2307434375,36.6619448066407],[115.263785429688,36.6856264472657],[115.2975403125,36.6641970039063],[115.311519804688,36.6736830878907],[115.283394804688,36.6938430000001],[115.315675078125,36.7169826484375],[115.3077746875,36.7569826484375],[115.323170195313,36.7680178046875],[115.327345,36.773843],[115.338785429688,36.786645734375],[115.372061796875,36.7685622382813],[115.467345,36.753843],[115.46271609375,36.7384706855469],[115.437345,36.6938430000001],[115.411519804688,36.6796681953125],[115.403170195313,36.6680178046875]]]]}},{"type":"Feature","properties":{"name":"广平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.137345,36.603843],[115.12922,36.5875014472656],[115.163985625,36.580483625],[115.167345,36.5738430000001],[115.16318484375,36.5343520332031],[115.121158476563,36.5200307441407],[115.113531523438,36.5076552558594],[115.107345,36.5038430000001],[115.06798953125,36.4937429023438],[115.028375273438,36.4363698554688],[115.001846953125,36.4423171210938],[114.967345,36.433843],[114.963131132813,36.4406801582032],[114.90041140625,36.4200502753907],[114.907642851563,36.3968325019531],[114.895636015625,36.3700307441407],[114.85033328125,36.3841408515625],[114.827345,36.373843],[114.81888796875,36.3939748359375],[114.874166289063,36.4081606269531],[114.89142703125,36.4267018867188],[114.86142703125,36.4379274726563],[114.85326296875,36.4797585273437],[114.847345,36.493843],[114.911104765625,36.48757346875],[114.93197390625,36.4992153144531],[114.95271609375,36.5084706855469],[114.9666028125,36.5245864082032],[114.98271609375,36.5384706855469],[114.99197390625,36.5492153144532],[115.003526640625,36.5591664863281],[115.001920195313,36.5791408515625],[115.027345,36.6138430000001],[115.068531523438,36.5952455878907],[115.137345,36.603843]]],[[[115.137345,36.603843],[115.142906523438,36.6168398261719],[115.160069609375,36.6078481269532],[115.137345,36.603843]]]]}},{"type":"Feature","properties":{"name":"邯郸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,36.723843],[114.342938261719,36.7037587714844],[114.387345,36.7103212714844],[114.412345,36.7066262031251],[114.432345,36.7095815253906],[114.442857695313,36.7080287910157],[114.453883085938,36.7223110175782],[114.497345,36.7158876777344],[114.544810820313,36.7229018378907],[114.594761992188,36.7089931464844],[114.635811796875,36.6773073554688],[114.631607695313,36.648843],[114.633082304688,36.638843],[114.630045195313,36.6182802558594],[114.637345,36.5738430000001],[114.619625273438,36.5700307441406],[114.637584257813,36.5323805976563],[114.613980742188,36.5011696601563],[114.627345,36.493843],[114.611807890625,36.4744399238282],[114.570181914063,36.4904396796875],[114.552345,36.4882204414063],[114.507345,36.493843],[114.514488554688,36.509790265625],[114.485636015625,36.5376552558594],[114.451539335938,36.5270351386719],[114.439928007813,36.5458779121094],[114.398033476563,36.5328273750001],[114.373531523438,36.5500307441407],[114.351158476563,36.5576552558594],[114.33763796875,36.5795986152344],[114.297345,36.5838430000001],[114.29062625,36.59712425],[114.263985625,36.6106008125],[114.271522246094,36.6216872382813],[114.286031523438,36.6146010566406],[114.304976835938,36.6384511542969],[114.299420195313,36.6498329902344],[114.313985625,36.657202375],[114.321370878906,36.7157619453125],[114.337345,36.723843]],[[114.497345,36.663843],[114.477345,36.663843],[114.477345,36.6538430000001],[114.421197539063,36.6481154609376],[114.422747832031,36.628843],[114.421942167969,36.6188430000001],[114.422772246094,36.6085195136719],[114.41197390625,36.5992153144531],[114.40271609375,36.5738075996095],[114.457345,36.563843],[114.472330351563,36.5563942695313],[114.493829375,36.5668935371094],[114.504918242188,36.5888137031251],[114.540675078125,36.5991335273438],[114.517345,36.603843],[114.51326296875,36.6397585273438],[114.509537382813,36.6672658515625],[114.500767851563,36.6760353828126],[114.497345,36.663843]],[[114.515152617188,36.5772658515625],[114.527345,36.5738430000001],[114.523922148438,36.5860353828125],[114.515152617188,36.5772658515625]]]]}},{"type":"Feature","properties":{"name":"邯山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.442886992188,36.4785097480469],[114.427345,36.453843],[114.421883574219,36.4583803535157],[114.412806425781,36.4693056464844],[114.392806425781,36.4859181953125],[114.440323515625,36.5036525703126],[114.442886992188,36.4785097480469]]],[[[114.523922148438,36.5860353828125],[114.527345,36.5738430000001],[114.515152617188,36.5772658515625],[114.523922148438,36.5860353828125]]],[[[114.493829375,36.5668935371094],[114.472330351563,36.5563942695313],[114.457345,36.563843],[114.467345,36.603843],[114.517345,36.603843],[114.540675078125,36.5991335273438],[114.504918242188,36.5888137031251],[114.493829375,36.5668935371094]]]]}},{"type":"Feature","properties":{"name":"鸡泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.877345,36.753843],[114.877345,36.743843],[114.867345,36.743843],[114.867345,36.753843],[114.877345,36.753843]]],[[[114.877345,36.753843],[114.867906523438,36.7644057441407],[114.844893828125,36.7849684882813],[114.770269804688,36.7988967109376],[114.742628203125,36.8591237617188],[114.703428984375,36.877114484375],[114.764303007813,36.8912783027344],[114.757345,36.9238430000001],[114.791256132813,36.9159853339844],[114.833160429688,36.9483315253907],[114.830709257813,36.9649074531251],[114.862486601563,36.9696034980469],[114.887345,36.9638430000001],[114.91326296875,36.9597585273438],[114.942105742188,36.9476430488281],[114.967345,36.9538430000001],[114.962808867188,36.8883803535156],[114.9465246875,36.8748549628906],[114.941324492188,36.823843],[114.942896757813,36.8084523750001],[114.913375273438,36.783930890625],[114.9118371875,36.7688430000001],[114.914801054688,36.7397695136719],[114.877345,36.753843]]]]}},{"type":"Feature","properties":{"name":"临漳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.507345,36.393843],[114.495152617188,36.3904201484375],[114.503922148438,36.3816506171875],[114.52687625,36.4031594062501],[114.552345,36.3926601386719],[114.573619414063,36.4014284492188],[114.581710234375,36.3523976875001],[114.607345,36.3629653144531],[114.632345,36.3526601386719],[114.66806765625,36.3673830390625],[114.709073515625,36.3489333320313],[114.720885039063,36.3273830390625],[114.753804960938,36.3203029609375],[114.757345,36.303843],[114.747345,36.303843],[114.747345,36.283843],[114.74142703125,36.2797585273438],[114.72896609375,36.2617092109376],[114.74326296875,36.2397585273438],[114.75142703125,36.2179274726563],[114.765235625,36.1967287421875],[114.761221953125,36.178843],[114.765225859375,36.1609975410157],[114.737345,36.1538430000001],[114.731612578125,36.1495778632812],[114.6782434375,36.1369667792969],[114.655050078125,36.1409596992188],[114.602569609375,36.1198635078125],[114.563077421875,36.1495778632812],[114.541612578125,36.1581081367188],[114.523077421875,36.1695778632813],[114.484771757813,36.1799623847657],[114.453077421875,36.1995778632813],[114.411610136719,36.2081081367188],[114.403079863281,36.2195778632813],[114.355562773438,36.2293532539063],[114.337345,36.253843],[114.383260527344,36.2779274726562],[114.401429472656,36.3097585273438],[114.413260527344,36.3179274726562],[114.421429472656,36.3397585273438],[114.440870390625,36.3696157050782],[114.481217070313,36.3799697089844],[114.487345,36.403843],[114.507345,36.403843],[114.507345,36.393843]]]]}},{"type":"Feature","properties":{"name":"邱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.170992460938,36.8946364570313],[115.147266875,36.8497951484376],[115.202154570313,36.8690334296875],[115.217345,36.873843],[115.223013945313,36.865630109375],[115.242345,36.8699636054688],[115.27330203125,36.8630251289063],[115.317345,36.873843],[115.313985625,36.847202375],[115.299400664063,36.8398244453126],[115.313985625,36.810483625],[115.320704375,36.777202375],[115.327345,36.773843],[115.323170195313,36.7680178046875],[115.3077746875,36.7569826484375],[115.315675078125,36.7169826484375],[115.283394804688,36.6938430000001],[115.311519804688,36.6736830878907],[115.2975403125,36.6641970039063],[115.263785429688,36.6856264472657],[115.2307434375,36.6619448066407],[115.2339465625,36.6457411933594],[115.217345,36.633843],[115.202916289063,36.6696657539063],[115.172916289063,36.6652333808594],[115.162095976563,36.6916664863282],[115.12170046875,36.7081996894531],[115.11095828125,36.7344509101563],[115.114561796875,36.758843],[115.087340117188,36.7699831367188],[115.093160429688,36.8093544746094],[115.08170046875,36.8181996894532],[115.0664075,36.838012921875],[115.10298953125,36.8481996894532],[115.11170046875,36.8570607734375],[115.049674101563,36.8743325019532],[115.065562773438,36.9147499824219],[115.08298953125,36.9281996894532],[115.09170046875,36.9494863105469],[115.097345,36.9538430000001],[115.131685820313,36.9429701972657],[115.095972929688,36.9261159492188],[115.112154570313,36.9086525703125],[115.170992460938,36.8946364570313]]]]}},{"type":"Feature","properties":{"name":"曲周县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.137345,36.603843],[115.160069609375,36.6078481269532],[115.142906523438,36.6168398261719],[115.068531523438,36.5952455878907],[115.027345,36.6138430000001],[115.02298953125,36.6194863105469],[114.9962121875,36.6401540351563],[114.972345,36.6366262031251],[114.902686796875,36.6469203925782],[114.8886340625,36.6651308417969],[114.837345,36.673843],[114.85326296875,36.6979274726562],[114.86142703125,36.7397585273438],[114.867345,36.743843],[114.877345,36.743843],[114.877345,36.753843],[114.914801054688,36.7397695136719],[114.9118371875,36.7688430000001],[114.913375273438,36.783930890625],[114.942896757813,36.8084523750001],[114.941324492188,36.823843],[114.9465246875,36.8748549628906],[114.962808867188,36.8883803535156],[114.967345,36.9538430000001],[115.021256132813,36.9626992011719],[115.057642851563,36.9573207832032],[115.097345,36.9638430000001],[115.097345,36.9538430000001],[115.09170046875,36.9494863105469],[115.08298953125,36.9281996894532],[115.065562773438,36.9147499824219],[115.049674101563,36.8743325019532],[115.11170046875,36.8570607734375],[115.10298953125,36.8481996894532],[115.0664075,36.838012921875],[115.08170046875,36.8181996894532],[115.093160429688,36.8093544746094],[115.087340117188,36.7699831367188],[115.114561796875,36.758843],[115.11095828125,36.7344509101563],[115.12170046875,36.7081996894531],[115.162095976563,36.6916664863282],[115.172916289063,36.6652333808594],[115.202916289063,36.6696657539063],[115.217345,36.633843],[115.1994934375,36.629262921875],[115.21408328125,36.6191909003907],[115.193980742188,36.5883180976563],[115.167345,36.5738430000001],[115.163985625,36.580483625],[115.12922,36.5875014472656],[115.137345,36.603843]]]]}},{"type":"Feature","properties":{"name":"涉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.967345,36.3438430000001],[113.987345,36.3438430000001],[113.987345,36.3138430000001],[113.977345,36.3138430000001],[113.970704375,36.327202375],[113.967345,36.3438430000001]]],[[[113.737345,36.363843],[113.737345,36.3538430000001],[113.727345,36.3538430000001],[113.727345,36.363843],[113.737345,36.363843]]],[[[113.547345,36.493843],[113.543922148438,36.4816506171876],[113.535152617188,36.4904201484375],[113.547345,36.493843]]],[[[113.967345,36.3438430000001],[113.951363554688,36.3517873359375],[113.943985625,36.3372023750001],[113.930704375,36.3304836250001],[113.927345,36.323843],[113.907415800781,36.3139369941407],[113.889561796875,36.3492299628907],[113.8541028125,36.357202375],[113.843985625,36.3372023750001],[113.814185820313,36.3304836250001],[113.753985625,36.3604836250001],[113.737345,36.363843],[113.71170046875,36.3981996894532],[113.70298953125,36.4194863105469],[113.66170046875,36.4281996894532],[113.613333769531,36.4640590644531],[113.587345,36.453843],[113.580704375,36.457202375],[113.573985625,36.4804836250001],[113.547345,36.493843],[113.555032988281,36.5276869941407],[113.540704375,36.5391603828125],[113.582899199219,36.5482900214844],[113.591790800781,36.5531447578125],[113.530096464844,36.5965114570313],[113.543455839844,36.6192372871094],[113.483929472656,36.6362563300782],[113.462899199219,36.6562587714844],[113.504154082031,36.6892958808594],[113.50150515625,36.7106044746094],[113.453082304688,36.7045815253907],[113.478516875,36.7478493476563],[113.511986113281,36.7281764960938],[113.526217070313,36.729946515625],[113.537345,36.743843],[113.545936308594,36.7562856269532],[113.562345,36.7599636054688],[113.591124296875,36.7535121894531],[113.631429472656,36.7797585273438],[113.664932890625,36.7922951484375],[113.661087675781,36.8094557929688],[113.678377714844,36.8768325019532],[113.720797148438,36.8863417792969],[113.731429472656,36.8579274726563],[113.747345,36.853843],[113.762418242188,36.8408571601562],[113.773079863281,36.7824001289063],[113.822345,36.7784413886719],[113.835257597656,36.7794789863282],[113.86197390625,36.7484706855469],[113.872772246094,36.7391664863282],[113.871920195313,36.7285463691406],[113.893492460938,36.6981215644532],[113.891942167969,36.678843],[113.893917265625,36.6542690253907],[113.852843046875,36.5963368964844],[113.876529570313,36.5759291816407],[113.871170683594,36.5092153144532],[113.887191191406,36.5220583320313],[113.909947539063,36.5484706855469],[113.933553496094,36.5388747382813],[113.931419707031,36.5123281074219],[113.95197390625,36.4884706855469],[113.967345,36.483843],[113.952899199219,36.4582900214844],[113.892899199219,36.3832692695312],[113.901790800781,36.3682900214844],[113.962899199219,36.3593959785156],[113.967345,36.3538430000001],[113.967345,36.3438430000001]]]]}},{"type":"Feature","properties":{"name":"魏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.01298953125,36.3894863105469],[115.05170046875,36.3381996894531],[115.07093875,36.3233498359376],[115.073824492188,36.303843],[115.070494414063,36.2813124824219],[115.084088164063,36.2168837714844],[115.111832304688,36.2209841132813],[115.117345,36.213843],[115.090406523438,36.1736733222657],[115.061676054688,36.1801137519532],[115.05326296875,36.1679274726563],[115.04107546875,36.1595131660156],[115.045377226563,36.1403127265625],[115.03013796875,36.0995790839844],[115.007345,36.0838430000001],[114.980264921875,36.0659474921876],[114.962022734375,36.0700356269532],[114.927345,36.053843],[114.905972929688,36.0442690253907],[114.9241809375,36.0996303535157],[114.8995325,36.1148171210938],[114.907203398438,36.1394435859375],[114.855855742188,36.1476552558594],[114.843150664063,36.1270351386719],[114.832345,36.1304006171875],[114.817345,36.1257277656251],[114.78443484375,36.1359792304688],[114.757345,36.1238430000001],[114.737345,36.1538430000001],[114.765225859375,36.1609975410157],[114.761221953125,36.178843],[114.765235625,36.1967287421875],[114.75142703125,36.2179274726563],[114.74326296875,36.2397585273438],[114.72896609375,36.2617092109376],[114.74142703125,36.2797585273438],[114.747345,36.283843],[114.757345,36.283843],[114.757345,36.303843],[114.773531523438,36.3076552558594],[114.781158476563,36.3200307441407],[114.807135039063,36.3288832832032],[114.821158476563,36.3700307441407],[114.827345,36.373843],[114.85033328125,36.3841408515625],[114.895636015625,36.3700307441407],[114.907642851563,36.3968325019531],[114.90041140625,36.4200502753907],[114.963131132813,36.4406801582032],[114.967345,36.433843],[114.98170046875,36.4081996894531],[115.01298953125,36.3894863105469]]]]}},{"type":"Feature","properties":{"name":"武安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.867345,37.023843],[113.88740359375,36.9996950507813],[113.922806425781,36.9893056464844],[113.936419707031,36.9729177070313],[113.968524199219,36.9462502265625],[113.996651640625,36.900649640625],[114.022806425781,36.8893056464844],[114.034295683594,36.875473859375],[114.072779570313,36.8793971992188],[114.084522734375,36.8393813300782],[114.187345,36.8498622871094],[114.221173125,36.8464138007813],[114.232735625,36.8603322578126],[114.252345,36.8583339667969],[114.262667265625,36.8593849921875],[114.289285917969,36.8441408515625],[114.302103300781,36.8595705390625],[114.3322278125,36.8482509589844],[114.357345,36.853843],[114.365811796875,36.8173036933594],[114.36156375,36.7885512519531],[114.375440703125,36.7532485175781],[114.337345,36.723843],[114.321370878906,36.7157619453125],[114.313985625,36.657202375],[114.299420195313,36.6498329902344],[114.304976835938,36.6384511542969],[114.286031523438,36.6146010566406],[114.271522246094,36.6216872382813],[114.263985625,36.6106008125],[114.29062625,36.59712425],[114.297345,36.5838430000001],[114.277484160156,36.5737953925782],[114.285269804688,36.5578530097657],[114.277345,36.553843],[114.26216921875,36.5476064277344],[114.237345,36.5633657050782],[114.213170195313,36.5480178046875],[114.170423613281,36.5396681953125],[114.122034941406,36.5703884101563],[114.107345,36.5498903632813],[114.093170195313,36.5696681953125],[114.075592070313,36.5780178046875],[114.083455839844,36.5382228828125],[114.065694609375,36.5254933906251],[114.057345,36.513843],[114.043260527344,36.5079274726562],[113.991429472656,36.4997585273438],[113.967345,36.483843],[113.95197390625,36.4884706855469],[113.931419707031,36.5123281074219],[113.933553496094,36.5388747382813],[113.909947539063,36.5484706855469],[113.887191191406,36.5220583320313],[113.871170683594,36.5092153144532],[113.876529570313,36.5759291816407],[113.852843046875,36.5963368964844],[113.893917265625,36.6542690253907],[113.891942167969,36.678843],[113.893492460938,36.6981215644532],[113.871920195313,36.7285463691406],[113.872772246094,36.7391664863282],[113.86197390625,36.7484706855469],[113.835257597656,36.7794789863282],[113.822345,36.7784413886719],[113.773079863281,36.7824001289063],[113.762418242188,36.8408571601562],[113.747345,36.853843],[113.751429472656,36.8597585273437],[113.7867590625,36.8841518378907],[113.777135039063,36.9270839667969],[113.757191191406,36.9408534980469],[113.76490359375,36.9752529121094],[113.783260527344,36.9879274726563],[113.787345,36.9938430000001],[113.814427519531,37.0117385078126],[113.832667265625,37.0076503730469],[113.867345,37.023843]]]]}},{"type":"Feature","properties":{"name":"永年县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.742628203125,36.8591237617188],[114.770269804688,36.7988967109376],[114.844893828125,36.7849684882813],[114.867906523438,36.7644057441407],[114.877345,36.753843],[114.867345,36.753843],[114.867345,36.743843],[114.86142703125,36.7397585273438],[114.85326296875,36.6979274726562],[114.837345,36.673843],[114.832896757813,36.6682900214844],[114.801793242188,36.6593959785157],[114.74763796875,36.6275624824219],[114.725440703125,36.6303237128906],[114.711666289063,36.6192958808594],[114.713023710938,36.6083901191407],[114.701793242188,36.5993959785157],[114.692799101563,36.5881642890625],[114.663702421875,36.5917836738281],[114.652896757813,36.5782900214844],[114.637345,36.5738430000001],[114.630045195313,36.6182802558594],[114.633082304688,36.638843],[114.631607695313,36.648843],[114.635811796875,36.6773073554688],[114.594761992188,36.7089931464844],[114.544810820313,36.7229018378907],[114.497345,36.7158876777344],[114.453883085938,36.7223110175782],[114.442857695313,36.7080287910157],[114.432345,36.7095815253906],[114.412345,36.7066262031251],[114.387345,36.7103212714844],[114.342938261719,36.7037587714844],[114.337345,36.723843],[114.375440703125,36.7532485175781],[114.36156375,36.7885512519531],[114.365811796875,36.8173036933594],[114.357345,36.853843],[114.372742949219,36.8597621894531],[114.381846953125,36.83815940625],[114.402345,36.840708234375],[114.422345,36.8382216621094],[114.447345,36.8413307929688],[114.54103640625,36.8296767402344],[114.553765898438,36.8885158515626],[114.645084257813,36.8985292792969],[114.657345,36.913843],[114.69326296875,36.9179274726563],[114.723912382813,36.93788596875],[114.757345,36.9238430000001],[114.764303007813,36.8912783027344],[114.703428984375,36.877114484375],[114.742628203125,36.8591237617188]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.407345,36.973843],[114.407345,36.9638430000001],[114.397345,36.9638430000001],[114.397345,36.973843],[114.407345,36.973843]]],[[[114.407345,36.973843],[114.397161894531,36.9956386542969],[114.430975371094,37.0361818671875],[114.423714628906,37.0602114082032],[114.40857546875,37.0688430000001],[114.425950957031,37.0787502265625],[114.413714628906,37.1002114082032],[114.393714628906,37.1116152167969],[114.406468535156,37.1267128730469],[114.447345,37.1113039375001],[114.487027617188,37.1262612128907],[114.478795195313,37.1044203925782],[114.497345,37.093843],[114.481124296875,37.0692946601563],[114.483468046875,37.058843],[114.481163359375,37.0485646796875],[114.493546171875,37.0190834785157],[114.487345,36.9938430000001],[114.462388945313,36.9999733710938],[114.445933867188,36.9962856269531],[114.425247832031,36.96632346875],[114.407345,36.973843]]]]}},{"type":"Feature","properties":{"name":"柏乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.617345,37.483843],[114.629537382813,37.4872658515625],[114.620767851563,37.4960353828125],[114.597486601563,37.4938906074219],[114.60478640625,37.508843],[114.59990359375,37.518843],[114.609185820313,37.5378530097656],[114.597345,37.543843],[114.601158476563,37.5500307441407],[114.654678984375,37.5578224921875],[114.6960559375,37.5719240546875],[114.6898840625,37.5917372871094],[114.701158476563,37.6100307441407],[114.727345,37.623843],[114.757345,37.623843],[114.787345,37.543843],[114.781519804688,37.5396681953126],[114.772652617188,37.4848146796876],[114.75080203125,37.4691518378907],[114.768253203125,37.4416616035157],[114.743233671875,37.4237270332032],[114.674205351563,37.4373671699219],[114.6482434375,37.4011452460938],[114.617345,37.4138430000001],[114.623980742188,37.4286611152344],[114.610709257813,37.4690248847657],[114.617345,37.483843]]]]}},{"type":"Feature","properties":{"name":"广宗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.273189726563,37.2686977363281],[115.25937625,37.25722190625],[115.271881132813,37.2283803535156],[115.291871367188,37.2117763496095],[115.22572390625,37.1869985175782],[115.221793242188,37.1484523750001],[115.232896757813,37.139233625],[115.229874296875,37.10960471875],[115.251158476563,37.1074355292969],[115.277838164063,37.1227150703125],[115.262808867188,37.0383803535156],[115.251881132813,37.0293056464844],[115.241954375,37.0173537421876],[115.212808867188,37.0203249335938],[115.221881132813,37.0083803535156],[115.243053007813,36.9907949042969],[115.241324492188,36.973843],[115.242901640625,36.9584011054688],[115.199796171875,36.948843],[115.249586210938,36.9378017402344],[115.221881132813,36.8993056464844],[115.217345,36.873843],[115.202154570313,36.8690334296875],[115.147266875,36.8497951484376],[115.170992460938,36.8946364570313],[115.112154570313,36.9086525703125],[115.095972929688,36.9261159492188],[115.131685820313,36.9429701972657],[115.097345,36.9538430000001],[115.097345,36.9638430000001],[115.120069609375,36.9700038886719],[115.0996496875,37.0564076972657],[115.121197539063,37.0912282539062],[115.0995325,37.0874977851562],[115.103258085938,37.1091371894531],[115.097345,37.123843],[115.10326296875,37.1279274726563],[115.121529570313,37.2001467109376],[115.132789335938,37.1976222968751],[115.15142703125,37.2097585273438],[115.173638945313,37.2180690742188],[115.170557890625,37.2318056464844],[115.1515246875,37.2275380683594],[115.14326296875,37.2620009589844],[115.171676054688,37.2556301093751],[115.181676054688,37.2701137519531],[115.202345,37.2654799628906],[115.226939726563,37.2709938789063],[115.217345,37.293843],[115.22314578125,37.3022426582032],[115.257345,37.293843],[115.273189726563,37.2686977363281]]]]}},{"type":"Feature","properties":{"name":"巨鹿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.947345,37.323843],[114.935152617188,37.3272658515626],[114.943922148438,37.3360353828125],[114.947345,37.323843]]],[[[114.947345,37.323843],[114.963985625,37.3272023750001],[114.987359648438,37.3737331367188],[115.013985625,37.387202375],[115.017345,37.403843],[115.02142703125,37.4097585273438],[115.0476184375,37.4179274726563],[115.061676054688,37.3975722480469],[115.077345,37.4010842109376],[115.100191679688,37.3959633613281],[115.107345,37.423843],[115.133985625,37.420483625],[115.147345,37.4138430000001],[115.157345,37.4138430000001],[115.162877226563,37.3903603339844],[115.177345,37.4138430000001],[115.191158476563,37.4053322578125],[115.183531523438,37.3676552558594],[115.164146757813,37.3400453925782],[115.2060559375,37.3257619453125],[115.197564726563,37.298501203125],[115.217345,37.293843],[115.226939726563,37.2709938789063],[115.202345,37.2654799628906],[115.181676054688,37.2701137519531],[115.171676054688,37.2556301093751],[115.14326296875,37.2620009589844],[115.1515246875,37.2275380683594],[115.170557890625,37.2318056464844],[115.173638945313,37.2180690742188],[115.15142703125,37.2097585273438],[115.132789335938,37.1976222968751],[115.121529570313,37.2001467109376],[115.10326296875,37.1279274726563],[115.097345,37.123843],[115.092857695313,37.1296572089844],[115.077345,37.1273647285157],[115.014190703125,37.1366982246094],[114.99298953125,37.1494863105469],[114.94170046875,37.1581996894532],[114.917345,37.163843],[114.887345,37.1715419746094],[114.893565703125,37.1992897773438],[114.868487578125,37.2378029609375],[114.84142703125,37.2479274726563],[114.837345,37.2638430000001],[114.8741028125,37.2497145820313],[114.871490507813,37.2707314277344],[114.93302859375,37.2883278632813],[114.931666289063,37.2992958808594],[114.942896757813,37.3082900214844],[114.947345,37.323843]]]]}},{"type":"Feature","properties":{"name":"临城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.617345,37.483843],[114.620767851563,37.4960353828125],[114.629537382813,37.4872658515625],[114.617345,37.483843]]],[[[114.617345,37.483843],[114.610709257813,37.4690248847657],[114.623980742188,37.4286611152344],[114.617345,37.4138430000001],[114.557345,37.4138430000001],[114.557345,37.383843],[114.567345,37.383843],[114.56298953125,37.3781996894532],[114.50170046875,37.3694863105469],[114.470719023438,37.3465163398438],[114.446851835938,37.3774379707032],[114.420809355469,37.3812868476563],[114.393048125,37.3453224921876],[114.35298953125,37.3694863105469],[114.306439238281,37.3793093085938],[114.259198027344,37.4078054023438],[114.233729277344,37.3455727363282],[114.22298953125,37.3594863105469],[114.17170046875,37.3681996894531],[114.162366972656,37.3802907539062],[114.12298953125,37.4094863105469],[114.09170046875,37.4281996894532],[114.082857695313,37.4396572089844],[114.071832304688,37.4380287910157],[114.067345,37.443843],[114.07170046875,37.4594863105469],[114.090877714844,37.4912770820313],[114.117345,37.4873647285157],[114.135562773438,37.4900575996094],[114.152916289063,37.5324526191406],[114.190765410156,37.5268593574219],[114.22170046875,37.5081996894531],[114.263316679688,37.4966103339844],[114.358377714844,37.5122267890626],[114.375794707031,37.5347914863282],[114.450943632813,37.5655471015625],[114.457345,37.5738430000001],[114.467345,37.5738430000001],[114.467345,37.583843],[114.513985625,37.5804836250001],[114.580704375,37.5472023750001],[114.597345,37.543843],[114.609185820313,37.5378530097656],[114.59990359375,37.518843],[114.60478640625,37.508843],[114.597486601563,37.4938906074219],[114.617345,37.483843]]]]}},{"type":"Feature","properties":{"name":"临西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,36.943843],[115.602647734375,36.9211684394532],[115.698829375,36.9434560371094],[115.757345,36.933843],[115.767345,36.913843],[115.73170046875,36.8994863105469],[115.698839140625,36.8751235175782],[115.68298953125,36.8181996894532],[115.65170046875,36.8094863105469],[115.63298953125,36.7981996894531],[115.576304960938,36.7775185371094],[115.562345,36.7795815253907],[115.552345,36.7781044746094],[115.533922148438,36.7808266425781],[115.512735625,36.7680458808594],[115.502017851563,36.7696303535157],[115.467345,36.753843],[115.372061796875,36.7685622382813],[115.338785429688,36.786645734375],[115.327345,36.773843],[115.320704375,36.777202375],[115.313985625,36.810483625],[115.299400664063,36.8398244453126],[115.313985625,36.847202375],[115.317345,36.873843],[115.353170195313,36.8780178046875],[115.363365507813,36.8922389960938],[115.423170195313,36.9080178046876],[115.452056914063,36.9198879218751],[115.47802859375,36.9147548652344],[115.501519804688,36.9296681953126],[115.552276640625,36.9398439765625],[115.562965117188,36.9377321601563],[115.567345,36.943843]]]]}},{"type":"Feature","properties":{"name":"隆尧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.897345,37.463843],[114.900767851563,37.4760353828126],[114.909537382813,37.4672658515625],[114.897345,37.463843]]],[[[114.897345,37.463843],[114.89271609375,37.4584706855469],[114.87064578125,37.4486232734375],[114.955733671875,37.4388686347657],[115.017345,37.403843],[115.013985625,37.387202375],[114.987359648438,37.3737331367188],[114.963985625,37.3272023750001],[114.947345,37.323843],[114.943922148438,37.3360353828125],[114.935152617188,37.3272658515626],[114.947345,37.323843],[114.942896757813,37.3082900214844],[114.931666289063,37.2992958808594],[114.93302859375,37.2883278632813],[114.871490507813,37.2707314277344],[114.8741028125,37.2497145820313],[114.837345,37.2638430000001],[114.832735625,37.2693923164063],[114.822022734375,37.2683010078126],[114.802808867188,37.2793056464844],[114.778331328125,37.2883803535157],[114.735445585938,37.2280178046875],[114.722345,37.2293520332032],[114.687257109375,37.2257765937501],[114.66545046875,37.1995241523438],[114.612608671875,37.219380109375],[114.602081328125,37.2183058906251],[114.587345,37.2238430000001],[114.611881132813,37.2593056464844],[114.646641875,37.2881801582032],[114.590064726563,37.3047829414063],[114.572808867188,37.3334609199219],[114.621783476563,37.3741420722657],[114.567345,37.383843],[114.557345,37.383843],[114.557345,37.4138430000001],[114.617345,37.4138430000001],[114.6482434375,37.4011452460938],[114.674205351563,37.4373671699219],[114.743233671875,37.4237270332032],[114.768253203125,37.4416616035157],[114.75080203125,37.4691518378907],[114.772652617188,37.4848146796876],[114.781519804688,37.5396681953126],[114.787345,37.543843],[114.79298953125,37.5394863105469],[114.808365507813,37.5195644355469],[114.83298953125,37.5094863105469],[114.863824492188,37.4695375800782],[114.897345,37.463843]],[[114.845152617188,37.4572658515625],[114.857345,37.4538430000001],[114.853922148438,37.4660353828126],[114.845152617188,37.4572658515625]]]]}},{"type":"Feature","properties":{"name":"清河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.768492460938,36.9917726875001],[115.79095828125,36.9589614082031],[115.761246367188,36.9399404121094],[115.757345,36.933843],[115.698829375,36.9434560371094],[115.602647734375,36.9211684394532],[115.567345,36.943843],[115.56298953125,36.9494863105469],[115.55170046875,36.9581996894532],[115.542916289063,36.9796657539063],[115.522784453125,36.9766909003907],[115.50298953125,37.0042470527344],[115.54314578125,37.0584133125],[115.540162382813,37.0786244941407],[115.567345,37.093843],[115.66810671875,37.0981337714844],[115.660011015625,37.1342617011719],[115.71326296875,37.1479274726563],[115.726475859375,37.1670656562501],[115.757345,37.1838430000001],[115.761090117188,37.1430080390625],[115.790704375,37.117202375],[115.823985625,37.110483625],[115.83181765625,37.0716994453125],[115.847345,37.063843],[115.835636015625,37.045551984375],[115.811246367188,37.0299404121094],[115.799537382813,37.0116493964844],[115.768492460938,36.9917726875001]]]]}},{"type":"Feature","properties":{"name":"南宫市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.157345,37.4138430000001],[115.177345,37.4138430000001],[115.162877226563,37.3903603339844],[115.157345,37.4138430000001]]],[[[115.157345,37.4138430000001],[115.147345,37.4138430000001],[115.152345,37.4266506171875],[115.157345,37.4138430000001]]],[[[115.177345,37.4138430000001],[115.198004179688,37.4426650214844],[115.227345,37.4368666816406],[115.251724882813,37.4416847968751],[115.267345,37.4198903632813],[115.28189578125,37.4401918769532],[115.297345,37.433843],[115.28818484375,37.4154189277344],[115.31093875,37.400483625],[115.320704375,37.4220253730469],[115.297345,37.433843],[115.297345,37.443843],[115.337345,37.443843],[115.361890898438,37.4276210761719],[115.37697390625,37.4310024238281],[115.399176054688,37.4156740546875],[115.418995390625,37.3869704414063],[115.432345,37.3899636054688],[115.442345,37.3877223945313],[115.464522734375,37.3926943183594],[115.48326296875,37.3797585273438],[115.49142703125,37.3679274726563],[115.509176054688,37.3556740546875],[115.528609648438,37.3275258613282],[115.573013945313,37.3175722480469],[115.58142703125,37.3297585273438],[115.607345,37.333843],[115.60271609375,37.3284706855469],[115.582730742188,37.3112538886719],[115.6227746875,37.2991970039063],[115.621099882813,37.2783412910156],[115.661651640625,37.2815993476563],[115.671998320313,37.2584133125],[115.693316679688,37.2601259589844],[115.728233671875,37.2195973945313],[115.747345,37.213843],[115.753985625,37.2004836250001],[115.757345,37.1838430000001],[115.726475859375,37.1670656562501],[115.71326296875,37.1479274726563],[115.660011015625,37.1342617011719],[115.66810671875,37.0981337714844],[115.567345,37.093843],[115.562105742188,37.1338967109376],[115.513853789063,37.1754653144532],[115.498595,37.1247768378907],[115.472623320313,37.1392665839844],[115.461099882813,37.1383412910157],[115.463526640625,37.1685195136719],[115.451646757813,37.1787526679688],[115.473043242188,37.2089333320313],[115.46197390625,37.2184706855469],[115.45271609375,37.2292153144532],[115.44197390625,37.2384706855469],[115.417901640625,37.2769008613282],[115.335323515625,37.2894838691407],[115.316803007813,37.2879958320312],[115.257345,37.293843],[115.22314578125,37.3022426582032],[115.217345,37.293843],[115.197564726563,37.298501203125],[115.2060559375,37.3257619453125],[115.164146757813,37.3400453925782],[115.183531523438,37.3676552558594],[115.191158476563,37.4053322578125],[115.177345,37.4138430000001]],[[115.264346953125,37.3978957343751],[115.287345,37.393843],[115.281910429688,37.4065395332031],[115.264346953125,37.3978957343751]]]]}},{"type":"Feature","properties":{"name":"南和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.680592070313,37.1025905585938],[114.692857695313,37.0867018867188],[114.712735625,37.0896401191407],[114.746143828125,37.0694863105469],[114.77298953125,37.0781996894532],[114.787974882813,37.0976161933594],[114.852345,37.0881044746094],[114.877174101563,37.0917726875],[114.897345,37.083843],[114.891163359375,37.0691213203126],[114.895557890625,37.0495131660157],[114.880206328125,37.0389150214844],[114.869449492188,36.9909242988281],[114.887345,36.9638430000001],[114.862486601563,36.9696034980469],[114.830709257813,36.9649074531251],[114.833160429688,36.9483315253907],[114.791256132813,36.9159853339844],[114.757345,36.9238430000001],[114.723912382813,36.93788596875],[114.69326296875,36.9179274726563],[114.657345,36.913843],[114.653531523438,36.9200307441406],[114.6295325,36.9348171210938],[114.63422,36.949868390625],[114.593702421875,36.9594118476562],[114.614879179688,36.9895717597657],[114.591158476563,36.9976552558594],[114.587345,37.003843],[114.605909453125,37.0152809882813],[114.623365507813,37.0665102363282],[114.627345,37.093843],[114.680592070313,37.1025905585938]]]]}},{"type":"Feature","properties":{"name":"内丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.067345,37.443843],[114.071832304688,37.4380287910157],[114.082857695313,37.4396572089844],[114.09170046875,37.4281996894532],[114.12298953125,37.4094863105469],[114.162366972656,37.3802907539062],[114.17170046875,37.3681996894531],[114.22298953125,37.3594863105469],[114.233729277344,37.3455727363282],[114.259198027344,37.4078054023438],[114.306439238281,37.3793093085938],[114.35298953125,37.3694863105469],[114.393048125,37.3453224921876],[114.420809355469,37.3812868476563],[114.446851835938,37.3774379707032],[114.470719023438,37.3465163398438],[114.50170046875,37.3694863105469],[114.56298953125,37.3781996894532],[114.567345,37.383843],[114.621783476563,37.3741420722657],[114.572808867188,37.3334609199219],[114.590064726563,37.3047829414063],[114.646641875,37.2881801582032],[114.611881132813,37.2593056464844],[114.587345,37.2238430000001],[114.5786340625,37.2178273750001],[114.567345,37.173843],[114.542203398438,37.1795546699219],[114.5081653125,37.166469953125],[114.462896757813,37.1793959785157],[114.416971464844,37.1893325019532],[114.392899199219,37.2193959785157],[114.359605742188,37.2460549140625],[114.261790800781,37.2582900214844],[114.23216921875,37.3106862617188],[114.193704863281,37.3059023261719],[114.171334257813,37.3338356757812],[114.098968535156,37.3173976875],[114.060081816406,37.3222341132813],[114.020565214844,37.3511013007813],[113.947345,37.363843],[113.951429472656,37.3797585273438],[113.970584746094,37.4091762519531],[113.987713652344,37.4210024238282],[114.008377714844,37.4163698554688],[114.027345,37.443843],[114.042105742188,37.4376430488282],[114.067345,37.443843]]]]}},{"type":"Feature","properties":{"name":"宁晋县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.853922148438,37.4660353828126],[114.857345,37.4538430000001],[114.845152617188,37.4572658515625],[114.853922148438,37.4660353828126]]],[[[114.897345,37.463843],[114.909537382813,37.4672658515625],[114.900767851563,37.4760353828126],[114.863824492188,37.4695375800782],[114.83298953125,37.5094863105469],[114.808365507813,37.5195644355469],[114.79298953125,37.5394863105469],[114.787345,37.543843],[114.757345,37.623843],[114.789176054688,37.6320119453126],[114.809595976563,37.6615895820313],[114.83326296875,37.6779274726563],[114.84142703125,37.6897585273438],[114.895089140625,37.7189211250001],[114.96326296875,37.7279274726562],[115.010592070313,37.7425991035156],[115.037345,37.7366017890626],[115.064830351563,37.7427626777344],[115.0600403125,37.7641127753907],[115.067345,37.7938430000001],[115.08326296875,37.7979274726563],[115.10466921875,37.8118691230469],[115.137345,37.8038430000001],[115.15478640625,37.7903786445313],[115.150445585938,37.7609914375001],[115.211690703125,37.7359242988282],[115.236549101563,37.7167372871094],[115.254444609375,37.6870705390626],[115.247345,37.6438430000001],[115.195553007813,37.6389003730469],[115.18298953125,37.6081996894532],[115.171090117188,37.5990163398438],[115.197345,37.5638430000001],[115.18197390625,37.5592153144531],[115.16271609375,37.5484706855469],[115.14197390625,37.5392153144532],[115.12271609375,37.5284706855469],[115.082730742188,37.5164321113282],[115.103043242188,37.4989333320313],[115.07271609375,37.4561598945313],[115.0920325,37.4384157539063],[115.102701445313,37.4392726875001],[115.107345,37.423843],[115.100191679688,37.3959633613281],[115.077345,37.4010842109376],[115.061676054688,37.3975722480469],[115.0476184375,37.4179274726563],[115.02142703125,37.4097585273438],[115.017345,37.403843],[114.955733671875,37.4388686347657],[114.87064578125,37.4486232734375],[114.89271609375,37.4584706855469],[114.897345,37.463843]]]]}},{"type":"Feature","properties":{"name":"平乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.014190703125,37.1366982246094],[115.077345,37.1273647285157],[115.092857695313,37.1296572089844],[115.097345,37.123843],[115.103258085938,37.1091371894531],[115.0995325,37.0874977851562],[115.121197539063,37.0912282539062],[115.0996496875,37.0564076972657],[115.120069609375,36.9700038886719],[115.097345,36.9638430000001],[115.057642851563,36.9573207832032],[115.021256132813,36.9626992011719],[114.967345,36.9538430000001],[114.942105742188,36.9476430488281],[114.91326296875,36.9597585273438],[114.887345,36.9638430000001],[114.869449492188,36.9909242988281],[114.880206328125,37.0389150214844],[114.895557890625,37.0495131660157],[114.891163359375,37.0691213203126],[114.897345,37.083843],[114.911383085938,37.0935341621094],[114.899132109375,37.1481728339844],[114.91326296875,37.1579274726563],[114.917345,37.163843],[114.94170046875,37.1581996894532],[114.99298953125,37.1494863105469],[115.014190703125,37.1366982246094]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.507345,36.9938430000001],[114.487345,36.9938430000001],[114.493546171875,37.0190834785157],[114.481163359375,37.0485646796875],[114.483468046875,37.058843],[114.481124296875,37.0692946601563],[114.497345,37.093843],[114.504678984375,37.102671125],[114.551422148438,37.063843],[114.514327421875,37.0330300117188],[114.507345,36.9938430000001]]]]}},{"type":"Feature","properties":{"name":"任县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.802808867188,37.2793056464844],[114.822022734375,37.2683010078126],[114.832735625,37.2693923164063],[114.837345,37.2638430000001],[114.84142703125,37.2479274726563],[114.868487578125,37.2378029609375],[114.893565703125,37.1992897773438],[114.887345,37.1715419746094],[114.917345,37.163843],[114.91326296875,37.1579274726563],[114.899132109375,37.1481728339844],[114.911383085938,37.0935341621094],[114.897345,37.083843],[114.877174101563,37.0917726875],[114.852345,37.0881044746094],[114.787974882813,37.0976161933594],[114.77298953125,37.0781996894532],[114.746143828125,37.0694863105469],[114.712735625,37.0896401191407],[114.692857695313,37.0867018867188],[114.680592070313,37.1025905585938],[114.627345,37.093843],[114.63537234375,37.12651878125],[114.62142703125,37.1479274726563],[114.61326296875,37.1697585273438],[114.567345,37.173843],[114.5786340625,37.2178273750001],[114.587345,37.2238430000001],[114.602081328125,37.2183058906251],[114.612608671875,37.219380109375],[114.66545046875,37.1995241523438],[114.687257109375,37.2257765937501],[114.722345,37.2293520332032],[114.735445585938,37.2280178046875],[114.778331328125,37.2883803535157],[114.802808867188,37.2793056464844]]]]}},{"type":"Feature","properties":{"name":"沙河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.028997832031,37.010317609375],[114.057345,37.0080397773438],[114.08162234375,37.0099904609375],[114.112049589844,36.9884169746094],[114.122345,36.9892446113282],[114.132691679688,36.9884133125],[114.148626738281,37.0241249824219],[114.225272246094,37.0302834296875],[114.22111453125,36.9785280585938],[114.36271609375,36.9692153144532],[114.397345,36.9638430000001],[114.407345,36.9638430000001],[114.407345,36.973843],[114.425247832031,36.96632346875],[114.445933867188,36.9962856269531],[114.462388945313,36.9999733710938],[114.487345,36.9938430000001],[114.507345,36.9938430000001],[114.541846953125,37.0023171210938],[114.562388945313,36.9977126289063],[114.587345,37.003843],[114.591158476563,36.9976552558594],[114.614879179688,36.9895717597657],[114.593702421875,36.9594118476562],[114.63422,36.949868390625],[114.6295325,36.9348171210938],[114.653531523438,36.9200307441406],[114.657345,36.913843],[114.645084257813,36.8985292792969],[114.553765898438,36.8885158515626],[114.54103640625,36.8296767402344],[114.447345,36.8413307929688],[114.422345,36.8382216621094],[114.402345,36.840708234375],[114.381846953125,36.83815940625],[114.372742949219,36.8597621894531],[114.357345,36.853843],[114.3322278125,36.8482509589844],[114.302103300781,36.8595705390625],[114.289285917969,36.8441408515625],[114.262667265625,36.8593849921875],[114.252345,36.8583339667969],[114.232735625,36.8603322578126],[114.221173125,36.8464138007813],[114.187345,36.8498622871094],[114.084522734375,36.8393813300782],[114.072779570313,36.8793971992188],[114.034295683594,36.875473859375],[114.022806425781,36.8893056464844],[113.996651640625,36.900649640625],[113.968524199219,36.9462502265625],[113.936419707031,36.9729177070313],[113.922806425781,36.9893056464844],[113.88740359375,36.9996950507813],[113.867345,37.023843],[113.888563261719,37.0484706855469],[114.006080351563,37.0369179511719],[114.028997832031,37.010317609375]]]]}},{"type":"Feature","properties":{"name":"威县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.257345,37.293843],[115.316803007813,37.2879958320312],[115.335323515625,37.2894838691407],[115.417901640625,37.2769008613282],[115.44197390625,37.2384706855469],[115.45271609375,37.2292153144532],[115.46197390625,37.2184706855469],[115.473043242188,37.2089333320313],[115.451646757813,37.1787526679688],[115.463526640625,37.1685195136719],[115.461099882813,37.1383412910157],[115.472623320313,37.1392665839844],[115.498595,37.1247768378907],[115.513853789063,37.1754653144532],[115.562105742188,37.1338967109376],[115.567345,37.093843],[115.540162382813,37.0786244941407],[115.54314578125,37.0584133125],[115.50298953125,37.0042470527344],[115.522784453125,36.9766909003907],[115.542916289063,36.9796657539063],[115.55170046875,36.9581996894532],[115.56298953125,36.9494863105469],[115.567345,36.943843],[115.562965117188,36.9377321601563],[115.552276640625,36.9398439765625],[115.501519804688,36.9296681953126],[115.47802859375,36.9147548652344],[115.452056914063,36.9198879218751],[115.423170195313,36.9080178046876],[115.363365507813,36.8922389960938],[115.353170195313,36.8780178046875],[115.317345,36.873843],[115.27330203125,36.8630251289063],[115.242345,36.8699636054688],[115.223013945313,36.865630109375],[115.217345,36.873843],[115.221881132813,36.8993056464844],[115.249586210938,36.9378017402344],[115.199796171875,36.948843],[115.242901640625,36.9584011054688],[115.241324492188,36.973843],[115.243053007813,36.9907949042969],[115.221881132813,37.0083803535156],[115.212808867188,37.0203249335938],[115.241954375,37.0173537421876],[115.251881132813,37.0293056464844],[115.262808867188,37.0383803535156],[115.277838164063,37.1227150703125],[115.251158476563,37.1074355292969],[115.229874296875,37.10960471875],[115.232896757813,37.139233625],[115.221793242188,37.1484523750001],[115.22572390625,37.1869985175782],[115.291871367188,37.2117763496095],[115.271881132813,37.2283803535156],[115.25937625,37.25722190625],[115.273189726563,37.2686977363281],[115.257345,37.293843]]]]}},{"type":"Feature","properties":{"name":"新河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.281910429688,37.4065395332031],[115.287345,37.393843],[115.264346953125,37.3978957343751],[115.281910429688,37.4065395332031]]],[[[115.297345,37.433843],[115.320704375,37.4220253730469],[115.31093875,37.400483625],[115.28818484375,37.4154189277344],[115.297345,37.433843]]],[[[115.347345,37.5338430000001],[115.350767851563,37.5216506171875],[115.359537382813,37.5304201484375],[115.361612578125,37.5523281074219],[115.39298953125,37.5394863105469],[115.4060559375,37.5225551582031],[115.441378203125,37.4952907539062],[115.384595976563,37.5036818671875],[115.40298953125,37.489486310547],[115.41170046875,37.4781996894531],[115.43170046875,37.4627614570313],[115.422706328125,37.4580507636719],[115.407345,37.4603212714844],[115.391832304688,37.4580287910156],[115.382345,37.4703212714845],[115.371832304688,37.4567018867188],[115.34978640625,37.4599599433594],[115.337345,37.443843],[115.297345,37.443843],[115.297345,37.433843],[115.28189578125,37.4401918769532],[115.267345,37.4198903632813],[115.251724882813,37.4416847968751],[115.227345,37.4368666816406],[115.198004179688,37.4426650214844],[115.177345,37.4138430000001],[115.157345,37.4138430000001],[115.152345,37.4266506171875],[115.147345,37.4138430000001],[115.133985625,37.420483625],[115.107345,37.423843],[115.102701445313,37.4392726875001],[115.0920325,37.4384157539063],[115.07271609375,37.4561598945313],[115.103043242188,37.4989333320313],[115.082730742188,37.5164321113282],[115.12271609375,37.5284706855469],[115.14197390625,37.5392153144532],[115.16271609375,37.5484706855469],[115.18197390625,37.5592153144531],[115.197345,37.5638430000001],[115.207345,37.5498903632813],[115.229732695313,37.58112815625],[115.299000273438,37.5628542304688],[115.331519804688,37.5380178046875],[115.347345,37.5338430000001]]]]}},{"type":"Feature","properties":{"name":"邢台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.060081816406,37.3222341132813],[114.098968535156,37.3173976875],[114.171334257813,37.3338356757812],[114.193704863281,37.3059023261719],[114.23216921875,37.3106862617188],[114.261790800781,37.2582900214844],[114.359605742188,37.2460549140625],[114.392899199219,37.2193959785157],[114.416971464844,37.1893325019532],[114.462896757813,37.1793959785157],[114.5081653125,37.166469953125],[114.542203398438,37.1795546699219],[114.567345,37.173843],[114.61326296875,37.1697585273438],[114.62142703125,37.1479274726563],[114.63537234375,37.12651878125],[114.627345,37.093843],[114.623365507813,37.0665102363282],[114.605909453125,37.0152809882813],[114.587345,37.003843],[114.562388945313,36.9977126289063],[114.541846953125,37.0023171210938],[114.507345,36.9938430000001],[114.514327421875,37.0330300117188],[114.551422148438,37.063843],[114.504678984375,37.102671125],[114.497345,37.093843],[114.478795195313,37.1044203925782],[114.487027617188,37.1262612128907],[114.447345,37.1113039375001],[114.406468535156,37.1267128730469],[114.393714628906,37.1116152167969],[114.413714628906,37.1002114082032],[114.425950957031,37.0787502265625],[114.40857546875,37.0688430000001],[114.423714628906,37.0602114082032],[114.430975371094,37.0361818671875],[114.397161894531,36.9956386542969],[114.407345,36.973843],[114.397345,36.973843],[114.397345,36.9638430000001],[114.36271609375,36.9692153144532],[114.22111453125,36.9785280585938],[114.225272246094,37.0302834296875],[114.148626738281,37.0241249824219],[114.132691679688,36.9884133125],[114.122345,36.9892446113282],[114.112049589844,36.9884169746094],[114.08162234375,37.0099904609375],[114.057345,37.0080397773438],[114.028997832031,37.010317609375],[114.006080351563,37.0369179511719],[113.888563261719,37.0484706855469],[113.867345,37.023843],[113.832667265625,37.0076503730469],[113.814427519531,37.0117385078126],[113.787345,36.9938430000001],[113.757379179688,37.0145326972656],[113.784185820313,37.0491200996094],[113.762393828125,37.064165265625],[113.757345,37.083843],[113.761790800781,37.0893959785156],[113.769115019531,37.1482680488282],[113.792899199219,37.1582900214844],[113.819320097656,37.1738210273438],[113.871749296875,37.2392922187501],[113.893270292969,37.3145632148438],[113.922899199219,37.3382900214844],[113.927345,37.3438430000001],[113.947345,37.3438430000001],[113.947345,37.363843],[114.020565214844,37.3511013007813],[114.060081816406,37.3222341132813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阜平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.096280546875,39.0771633125001],[114.12748171875,39.0396022773438],[114.162022734375,39.0593849921875],[114.194544707031,39.0560707832031],[114.241883574219,39.0693056464844],[114.347345,39.073843],[114.390926542969,39.0685170722656],[114.4522278125,39.0434267402344],[114.467345,39.023843],[114.472345,39.0110353828125],[114.477345,39.023843],[114.52156375,39.0105300117188],[114.527345,38.953843],[114.5215246875,38.9376198554688],[114.5226575,38.9185768867187],[114.493121367188,38.9050197578125],[114.51373171875,38.8670912910157],[114.5120325,38.8386171699219],[114.52373171875,38.8170912910156],[114.522047148438,38.7888430000001],[114.523199492188,38.7695314765625],[114.492545195313,38.7585329414063],[114.477345,38.759438703125],[114.452345,38.7579494453126],[114.411058378906,38.7604091621094],[114.422779570313,38.738843],[114.4120325,38.7190688300782],[114.4126575,38.7085903144532],[114.407345,38.703843],[114.391429472656,38.6997585273438],[114.383260527344,38.6879274726563],[114.359329863281,38.6797585273438],[114.312669707031,38.7101430488281],[114.272491484375,38.6976894355469],[114.257074003906,38.7011452460938],[114.197523222656,38.6865175605469],[114.167345,38.6738430000001],[114.131790800781,38.6693959785157],[114.102628203125,38.6581862617187],[114.092345,38.6594643378907],[114.081890898438,38.6581642890625],[114.067337675781,38.6763393378907],[113.9611340625,38.6896230292969],[113.882899199219,38.7393959785157],[113.841790800781,38.7482900214844],[113.827345,38.7538430000001],[113.827345,38.763843],[113.821849394531,38.7890395332032],[113.851485625,38.8308400703126],[113.794947539063,38.8560683417969],[113.768851347656,38.8928749824219],[113.761812773438,38.9804616523438],[113.777345,38.993843],[113.803985625,38.9972023750001],[113.810704375,39.010483625],[113.843985625,39.027202375],[113.880704375,39.060483625],[113.913985625,39.067202375],[113.940704375,39.090483625],[113.957345,39.0938430000001],[113.982806425781,39.0983803535156],[114.005406523438,39.1255873847657],[114.042752714844,39.1293947578126],[114.061883574219,39.0983803535156],[114.096280546875,39.0771633125001]]]]}},{"type":"Feature","properties":{"name":"高碑店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.807345,39.383843],[115.857330351563,39.3775978828125],[115.872457304688,39.3794789863282],[115.931793242188,39.3682900214844],[116.030972929688,39.3558852363281],[116.042076445313,39.369751203125],[116.094093046875,39.3472963691406],[116.107345,39.3638430000001],[116.12197390625,39.3584706855469],[116.200523710938,39.3465016914062],[116.203004179688,39.3156362128907],[116.1818371875,39.2185890937501],[116.19271609375,39.2092153144532],[116.207345,39.143843],[116.191065703125,39.1475649238282],[116.181500273438,39.1637038398438],[116.157345,39.1554091621094],[116.122345,39.1674282050781],[116.081978789063,39.1535659003906],[116.073624296875,39.121977765625],[116.097213164063,39.1079921699219],[116.031065703125,39.1001210761719],[116.027345,39.0938430000001],[115.985953398438,39.1101149726563],[115.96478640625,39.10698753125],[115.947345,39.113843],[115.953350859375,39.1387612128907],[115.951353789063,39.1488466621094],[115.96345828125,39.2094618964844],[115.951519804688,39.2180178046875],[115.942965117188,39.2299538398438],[115.929244414063,39.2272426582032],[115.913170195313,39.2496681953125],[115.885201445313,39.2697145820313],[115.904166289063,39.2995864082031],[115.801519804688,39.3080178046876],[115.787345,39.333843],[115.787345,39.343843],[115.807345,39.343843],[115.807345,39.373843],[115.797345,39.373843],[115.797345,39.383843],[115.807345,39.383843]]]]}},{"type":"Feature","properties":{"name":"安国市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.467345,38.3338430000001],[115.477345,38.3338430000001],[115.472345,38.3210353828125],[115.467345,38.3338430000001]]],[[[115.467345,38.3338430000001],[115.45263796875,38.3280605292969],[115.422345,38.3325368476563],[115.369156523438,38.3246767402344],[115.383424101563,38.2883779121094],[115.350699492188,38.2749831367187],[115.354371367188,38.2501332832031],[115.317345,38.243843],[115.273267851563,38.2330165839844],[115.256046171875,38.2790444160157],[115.237345,38.283843],[115.23326296875,38.2997585273438],[115.218038359375,38.3102700019532],[115.20170046875,38.3539321113282],[115.175621367188,38.371938703125],[115.214586210938,38.398843],[115.19970828125,38.4091152167969],[115.22326296875,38.4179274726563],[115.23142703125,38.4497585273438],[115.24326296875,38.4679274726563],[115.247345,38.513843],[115.300250273438,38.5176540351562],[115.289893828125,38.5388576484375],[115.297345,38.553843],[115.307345,38.553843],[115.311793242188,38.5382900214844],[115.364249296875,38.5291603828125],[115.360611601563,38.4999062324219],[115.382896757813,38.4693959785157],[115.392379179688,38.4255800605469],[115.436143828125,38.3998537421875],[115.452935820313,38.4208229804688],[115.493917265625,38.4091054511719],[115.4755871875,38.3944289375],[115.487345,38.3638430000001],[115.487345,38.353843],[115.467345,38.353843],[115.467345,38.343843],[115.467345,38.3338430000001]]]]}},{"type":"Feature","properties":{"name":"安新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.66062625,38.75056175],[115.647345,38.7438430000001],[115.632862578125,38.7572597480469],[115.667345,38.763843],[115.66062625,38.75056175]]],[[[115.987896757813,38.9719057441407],[116.012266875,38.958305890625],[116.027345,38.963843],[116.036612578125,38.9314211250001],[116.067359648438,38.9275978828125],[116.117345,38.933843],[116.110191679688,38.9059633613282],[116.083814726563,38.9118764472657],[116.037686796875,38.8946169257813],[116.04349734375,38.868696515625],[116.03119265625,38.828989484375],[116.033638945313,38.8180690742188],[116.003082304688,38.8066347480469],[115.970787382813,38.7598586250001],[115.947345,38.7538430000001],[115.9363684375,38.7716542792969],[115.902345,38.7610561347656],[115.87213015625,38.7704665351563],[115.842345,38.7571230292969],[115.80435671875,38.7741408515625],[115.767345,38.7626137519531],[115.741383085938,38.7706996894531],[115.730426054688,38.738540265625],[115.664136992188,38.7300307441407],[115.684698515625,38.7593129707032],[115.677345,38.763843],[115.673985625,38.7704836250001],[115.650704375,38.7772023750001],[115.643985625,38.7971083808594],[115.6852746875,38.8178493476563],[115.677486601563,38.8337953925781],[115.710318632813,38.8504055000001],[115.7476965625,38.8579518867188],[115.760704375,38.8770851875],[115.747345,38.883843],[115.743985625,38.910483625],[115.729288359375,38.9179189277344],[115.740704375,38.940483625],[115.753985625,38.947202375],[115.760704375,38.970483625],[115.767345,38.9738430000001],[115.779840117188,38.9593410468751],[115.82197390625,38.9892153144532],[115.876002226563,38.9990700507813],[115.909947539063,39.0384706855469],[115.93271609375,39.0292153144532],[115.94197390625,39.0184706855469],[116.007232695313,39.0065663886719],[115.987896757813,38.9719057441407]]]]}},{"type":"Feature","properties":{"name":"北市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,38.8638430000001],[115.477345,38.853843],[115.467345,38.853843],[115.467345,38.8638430000001],[115.477345,38.8638430000001]]],[[[115.477345,38.8638430000001],[115.485455351563,38.8844728828125],[115.477345,38.933843],[115.477345,38.953843],[115.51142703125,38.9379274726563],[115.56326296875,38.9297585273438],[115.587345,38.913843],[115.593023710938,38.8683901191407],[115.581793242188,38.8593959785157],[115.577345,38.853843],[115.50142703125,38.8579274726563],[115.477345,38.8638430000001]]]]}},{"type":"Feature","properties":{"name":"博野县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.487345,38.353843],[115.487345,38.3338430000001],[115.477345,38.3338430000001],[115.477345,38.343843],[115.467345,38.343843],[115.467345,38.353843],[115.487345,38.353843]]],[[[115.467345,38.573843],[115.481793242188,38.5482900214844],[115.524898710938,38.4943886542969],[115.520445585938,38.4585805488281],[115.564244414063,38.4491054511719],[115.561666289063,38.4283681464844],[115.5941809375,38.4086159492188],[115.591666289063,38.3883901191406],[115.603023710938,38.3792958808594],[115.599361601563,38.3498451972656],[115.647345,38.343843],[115.634190703125,38.3247927070313],[115.571695585938,38.3401430488282],[115.563013945313,38.3275722480469],[115.551676054688,38.3301137519532],[115.543013945313,38.3175722480469],[115.532345,38.3199636054688],[115.51037234375,38.3150380683594],[115.514503203125,38.3334743476563],[115.499176054688,38.3556740546875],[115.487345,38.3638430000001],[115.4755871875,38.3944289375],[115.493917265625,38.4091054511719],[115.452935820313,38.4208229804688],[115.436143828125,38.3998537421875],[115.392379179688,38.4255800605469],[115.382896757813,38.4693959785157],[115.360611601563,38.4999062324219],[115.364249296875,38.5291603828125],[115.311793242188,38.5382900214844],[115.307345,38.553843],[115.33326296875,38.5579274726563],[115.382301054688,38.5699733710937],[115.392345,38.5677223945313],[115.407345,38.5710842109375],[115.442183867188,38.5632753730469],[115.467345,38.573843]]]]}},{"type":"Feature","properties":{"name":"定兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.867345,39.1338430000001],[115.863922148438,39.1460353828126],[115.855152617188,39.1372658515625],[115.856358671875,39.1129811835938],[115.832345,39.1315944648438],[115.805421171875,39.1107228828126],[115.77330203125,39.1251528144532],[115.763892851563,39.1072927070313],[115.757345,39.103843],[115.7141809375,39.0968849921875],[115.654058867188,39.1322267890625],[115.642896757813,39.1182900214844],[115.594928007813,39.1093959785156],[115.542896757813,39.1293959785157],[115.511793242188,39.1382900214844],[115.507345,39.153843],[115.52326296875,39.1579274726563],[115.53599734375,39.2075551582031],[115.531065703125,39.2295510078126],[115.5734778125,39.2537599921875],[115.59142703125,39.2797585273438],[115.62326296875,39.2879274726562],[115.627345,39.313843],[115.67271609375,39.3092153144531],[115.700162382813,39.2939015937501],[115.72197390625,39.3192153144532],[115.787345,39.333843],[115.801519804688,39.3080178046876],[115.904166289063,39.2995864082031],[115.885201445313,39.2697145820313],[115.913170195313,39.2496681953125],[115.929244414063,39.2272426582032],[115.942965117188,39.2299538398438],[115.951519804688,39.2180178046875],[115.96345828125,39.2094618964844],[115.951353789063,39.1488466621094],[115.953350859375,39.1387612128907],[115.947345,39.113843],[115.933985625,39.107202375],[115.883985625,39.1067263007813],[115.895494414063,39.1302931953125],[115.867345,39.1338430000001]]]]}},{"type":"Feature","properties":{"name":"定州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.970011015625,38.6724184394531],[114.983526640625,38.6197585273438],[115.00326296875,38.6279274726563],[115.0170715625,38.6479274726563],[115.02357546875,38.639341046875],[115.021041289063,38.6280275703126],[115.037345,38.623843],[115.05939578125,38.6153664375],[115.092345,38.6194643378907],[115.124610625,38.6154518867188],[115.158912382813,38.6582900214844],[115.182896757813,38.6393959785157],[115.191793242188,38.6182900214844],[115.221016875,38.6059743476563],[115.247345,38.513843],[115.24326296875,38.4679274726563],[115.23142703125,38.4497585273438],[115.22326296875,38.4179274726563],[115.19970828125,38.4091152167969],[115.214586210938,38.398843],[115.175621367188,38.371938703125],[115.20170046875,38.3539321113282],[115.218038359375,38.3102700019532],[115.23326296875,38.2997585273438],[115.237345,38.283843],[115.23298953125,38.2781996894531],[115.22170046875,38.2694863105469],[115.20548953125,38.2298805976563],[115.15455203125,38.2606081367188],[115.137345,38.2538430000001],[115.133804960938,38.2603029609375],[115.090885039063,38.2673830390626],[115.083804960938,38.2803029609376],[115.070885039063,38.2873830390625],[115.063267851563,38.3012831855469],[115.047784453125,38.2949025703125],[115.05646609375,38.273843],[115.048404570313,38.2542836738282],[115.017345,38.2670864082031],[114.991422148438,38.2564028144532],[114.983804960938,38.2703029609375],[114.9635559375,38.2814028144531],[114.947345,38.2747206855469],[114.925440703125,38.2837490058594],[114.903804960938,38.2673830390626],[114.877345,38.263843],[114.88142703125,38.2797585273438],[114.9005871875,38.3091762519532],[114.935308867188,38.3331508613282],[114.92076296875,38.3800795722657],[114.888741484375,38.4213979316407],[114.871676054688,38.417572248047],[114.86326296875,38.4297585273438],[114.85142703125,38.4379274726563],[114.843013945313,38.4501137519531],[114.82037234375,38.4450380683595],[114.82353640625,38.4591640449219],[114.807345,38.493843],[114.814971953125,38.5062184882813],[114.850220976563,38.5279384589844],[114.861158476563,38.5600307441406],[114.876202421875,38.5814577460938],[114.870787382813,38.5988430000001],[114.873902617188,38.608843],[114.870787382813,38.618843],[114.874166289063,38.6296950507813],[114.847345,38.643843],[114.83326296875,38.6535671210938],[114.871998320313,38.6667678046875],[114.918297148438,38.6563881660157],[114.970011015625,38.6724184394531]]]]}},{"type":"Feature","properties":{"name":"高阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.80435671875,38.7741408515625],[115.842345,38.7571230292969],[115.87213015625,38.7704665351563],[115.902345,38.7610561347656],[115.9363684375,38.7716542792969],[115.947345,38.7538430000001],[115.941612578125,38.7285976386719],[115.953013945313,38.7092031074219],[115.951695585938,38.6986257148438],[115.967803984375,38.6422182441407],[115.95052859375,38.6283864570313],[115.957345,38.573843],[115.928819609375,38.5541469550782],[115.937345,38.533843],[115.902843046875,38.5253688789063],[115.873013945313,38.5320558906251],[115.860094023438,38.5133425117188],[115.817345,38.5238430000001],[115.824874296875,38.5681703925782],[115.843516875,38.599077375],[115.83170046875,38.6081996894532],[115.8186340625,38.6251308417969],[115.796378203125,38.6423073554688],[115.772623320313,38.6279787421876],[115.659566679688,38.6551064277345],[115.637345,38.663843],[115.643590117188,38.6793752265625],[115.613336210938,38.6913967109375],[115.647345,38.7438430000001],[115.66062625,38.75056175],[115.667345,38.763843],[115.677345,38.763843],[115.684698515625,38.7593129707032],[115.664136992188,38.7300307441407],[115.730426054688,38.738540265625],[115.741383085938,38.7706996894531],[115.767345,38.7626137519531],[115.80435671875,38.7741408515625]],[[115.845152617188,38.5272658515625],[115.857345,38.5238430000001],[115.853922148438,38.5360353828126],[115.845152617188,38.5272658515625]]]]}},{"type":"Feature","properties":{"name":"满城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.337345,39.123843],[115.321124296875,39.0992946601563],[115.323468046875,39.0888430000001],[115.320714140625,39.0765651679687],[115.333892851563,39.0413442207032],[115.3826184375,39.0522670722656],[115.391710234375,39.0168312812501],[115.437345,39.0066017890625],[115.453433867188,39.0102077460938],[115.47326296875,38.9797585273438],[115.477345,38.953843],[115.477345,38.933843],[115.44263796875,38.9493825507813],[115.422345,38.9473146796875],[115.36877078125,38.9527748847656],[115.352808867188,38.8983803535157],[115.325889921875,38.8609792304688],[115.3614465625,38.8455580878907],[115.341275664063,38.8288002753907],[115.377345,38.803843],[115.377345,38.7838430000001],[115.320992460938,38.790884015625],[115.302896757813,38.7682900214844],[115.286236601563,38.7549489570313],[115.272345,38.7375991035157],[115.262725859375,38.7496083808594],[115.237345,38.7438430000001],[115.23025515625,38.773266828125],[115.23447390625,38.7946181464844],[115.256866484375,38.8106691718751],[115.237652617188,38.8574269843751],[115.273170195313,38.8780178046875],[115.274674101563,38.9180178046875],[115.242779570313,38.89776878125],[115.223267851563,38.9016237617187],[115.198995390625,38.935493390625],[115.169014921875,38.9569826484375],[115.173331328125,38.9788430000001],[115.169718046875,38.9971425605469],[115.135303984375,39.0104152656251],[115.107345,39.0048903632813],[115.082345,39.0098305488281],[115.072345,39.0078554511719],[115.062345,39.0098305488281],[115.047345,39.0068666816406],[114.991793242188,39.0178444648438],[114.957550078125,39.0395839667969],[114.96341921875,39.0692763496094],[114.94861453125,39.0925954414063],[114.957345,39.113843],[114.982506132813,39.11933128125],[115.002066679688,39.1084194160157],[115.021148710938,39.1099513984375],[115.032769804688,39.0891213203126],[115.0319153125,39.0785195136719],[115.04271609375,39.0692153144532],[115.053316679688,39.0569118476562],[115.100103789063,39.0606716132813],[115.133580351563,39.0419936347656],[115.177345,39.0730239082031],[115.215191679688,39.0461891914063],[115.255523710938,39.0641860175781],[115.238878203125,39.0940163398438],[115.260728789063,39.1193752265626],[115.272349882813,39.1184401679688],[115.337345,39.123843]]]]}},{"type":"Feature","properties":{"name":"南市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.577345,38.853843],[115.562984648438,38.7968325019531],[115.507017851563,38.7842861152344],[115.482345,38.8003554511719],[115.452345,38.7808193183594],[115.417345,38.8036110664063],[115.39326296875,38.7879274726563],[115.377345,38.7838430000001],[115.377345,38.803843],[115.3807825,38.810639875],[115.422330351563,38.8312917304688],[115.441353789063,38.8220009589844],[115.45406375,38.84712425],[115.467345,38.853843],[115.477345,38.853843],[115.477345,38.8638430000001],[115.50142703125,38.8579274726563],[115.577345,38.853843]]]]}},{"type":"Feature","properties":{"name":"清苑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.643985625,38.7971083808594],[115.650704375,38.7772023750001],[115.673985625,38.7704836250001],[115.677345,38.763843],[115.667345,38.763843],[115.632862578125,38.7572597480469],[115.647345,38.7438430000001],[115.613336210938,38.6913967109375],[115.643590117188,38.6793752265625],[115.637345,38.663843],[115.622584257813,38.6692641425781],[115.609742460938,38.6682326484375],[115.5880871875,38.6430995917969],[115.560738554688,38.6195351386719],[115.5727746875,38.6091664863282],[115.571812773438,38.5972194648438],[115.467345,38.573843],[115.442183867188,38.5632753730469],[115.407345,38.5710842109375],[115.392345,38.5677223945313],[115.382301054688,38.5699733710937],[115.33326296875,38.5579274726563],[115.307345,38.553843],[115.297345,38.553843],[115.290728789063,38.6454067207032],[115.262061796875,38.6585622382812],[115.252174101563,38.6905947089844],[115.232061796875,38.7085622382813],[115.227345,38.7438430000001],[115.237345,38.7438430000001],[115.262725859375,38.7496083808594],[115.272345,38.7375991035157],[115.286236601563,38.7549489570313],[115.302896757813,38.7682900214844],[115.320992460938,38.790884015625],[115.377345,38.7838430000001],[115.39326296875,38.7879274726563],[115.417345,38.8036110664063],[115.452345,38.7808193183594],[115.482345,38.8003554511719],[115.507017851563,38.7842861152344],[115.562984648438,38.7968325019531],[115.577345,38.853843],[115.581793242188,38.8593959785157],[115.593023710938,38.8683901191407],[115.587345,38.913843],[115.6218371875,38.9280178046876],[115.67255984375,38.9177712226563],[115.711519804688,38.8880178046876],[115.747345,38.883843],[115.760704375,38.8770851875],[115.7476965625,38.8579518867188],[115.710318632813,38.8504055000001],[115.677486601563,38.8337953925781],[115.6852746875,38.8178493476563],[115.643985625,38.7971083808594]]]]}},{"type":"Feature","properties":{"name":"曲阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.523922148438,38.5960353828125],[114.527345,38.583843],[114.515152617188,38.5872658515625],[114.523922148438,38.5960353828125]]],[[[114.527345,38.953843],[114.582125273438,38.9383107734375],[114.600474882813,38.940180890625],[114.631881132813,38.9283803535157],[114.703546171875,38.9156105781251],[114.698038359375,38.8615749335938],[114.712808867188,38.8493056464844],[114.741881132813,38.8123159003907],[114.7032434375,38.7955580878907],[114.722808867188,38.7793056464844],[114.731881132813,38.7283803535157],[114.762808867188,38.7093056464844],[114.777432890625,38.6916994453125],[114.791881132813,38.6583803535157],[114.802808867188,38.6493056464844],[114.811881132813,38.6383803535156],[114.835269804688,38.6293056464844],[114.847345,38.643843],[114.874166289063,38.6296950507813],[114.870787382813,38.618843],[114.873902617188,38.608843],[114.870787382813,38.5988430000001],[114.876202421875,38.5814577460938],[114.861158476563,38.5600307441406],[114.850220976563,38.5279384589844],[114.814971953125,38.5062184882813],[114.807345,38.493843],[114.741998320313,38.4992739082032],[114.729049101563,38.4702553535157],[114.703038359375,38.5004494453125],[114.684586210938,38.4790334296876],[114.667345,38.473843],[114.62197390625,38.5284706855469],[114.575670195313,38.5883266425782],[114.5419153125,38.5984889960938],[114.542764921875,38.6090810371094],[114.530279570313,38.6430825019532],[114.4593371875,38.7006093574219],[114.413316679688,38.6969118476563],[114.407345,38.703843],[114.4126575,38.7085903144532],[114.4120325,38.7190688300782],[114.422779570313,38.738843],[114.411058378906,38.7604091621094],[114.452345,38.7579494453126],[114.477345,38.759438703125],[114.492545195313,38.7585329414063],[114.523199492188,38.7695314765625],[114.522047148438,38.7888430000001],[114.52373171875,38.8170912910156],[114.5120325,38.8386171699219],[114.51373171875,38.8670912910157],[114.493121367188,38.9050197578125],[114.5226575,38.9185768867187],[114.5215246875,38.9376198554688],[114.527345,38.953843]]]]}},{"type":"Feature","properties":{"name":"容城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.867345,39.1338430000001],[115.895494414063,39.1302931953125],[115.883985625,39.1067263007813],[115.933985625,39.107202375],[115.947345,39.113843],[115.96478640625,39.10698753125],[115.985953398438,39.1101149726563],[116.027345,39.0938430000001],[116.033160429688,39.0893544746094],[116.029508085938,39.0646450019532],[116.063595,39.0186684394532],[116.05170046875,39.0094863105469],[116.027345,38.963843],[116.012266875,38.958305890625],[115.987896757813,38.9719057441407],[116.007232695313,39.0065663886719],[115.94197390625,39.0184706855469],[115.93271609375,39.0292153144532],[115.909947539063,39.0384706855469],[115.876002226563,38.9990700507813],[115.82197390625,38.9892153144532],[115.779840117188,38.9593410468751],[115.767345,38.9738430000001],[115.776392851563,38.9968593574219],[115.757550078125,39.0114028144532],[115.764644804688,39.0594057441407],[115.757345,39.103843],[115.763892851563,39.1072927070313],[115.77330203125,39.1251528144532],[115.805421171875,39.1107228828126],[115.832345,39.1315944648438],[115.856358671875,39.1129811835938],[115.867345,39.1338430000001]]],[[[115.867345,39.1338430000001],[115.855152617188,39.1372658515625],[115.863922148438,39.1460353828126],[115.867345,39.1338430000001]]]]}},{"type":"Feature","properties":{"name":"顺平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.957345,39.113843],[114.94861453125,39.0925954414063],[114.96341921875,39.0692763496094],[114.957550078125,39.0395839667969],[114.991793242188,39.0178444648438],[115.047345,39.0068666816406],[115.062345,39.0098305488281],[115.072345,39.0078554511719],[115.082345,39.0098305488281],[115.107345,39.0048903632813],[115.135303984375,39.0104152656251],[115.169718046875,38.9971425605469],[115.173331328125,38.9788430000001],[115.169014921875,38.9569826484375],[115.198995390625,38.935493390625],[115.223267851563,38.9016237617187],[115.242779570313,38.89776878125],[115.274674101563,38.9180178046875],[115.273170195313,38.8780178046875],[115.237652617188,38.8574269843751],[115.256866484375,38.8106691718751],[115.23447390625,38.7946181464844],[115.23025515625,38.773266828125],[115.237345,38.7438430000001],[115.227345,38.7438430000001],[115.211158476563,38.7476552558594],[115.174542265625,38.7773134589844],[115.132345,38.7641713691406],[115.091656523438,38.7768434882813],[115.077750273438,38.7994167304688],[115.047345,38.803843],[115.04326296875,38.8297585273438],[115.028345976563,38.8526638007813],[114.9921496875,38.8374599433594],[114.961988554688,38.8570998359376],[114.927628203125,38.9081252265626],[114.88486453125,38.9241262031251],[114.90392703125,38.9695095039063],[114.88142703125,38.9779274726563],[114.8344153125,39.0171340156251],[114.872296171875,39.0313088203125],[114.89142703125,39.0603102851563],[114.85142703125,39.0879274726563],[114.847345,39.103843],[114.862105742188,39.0976430488282],[114.887345,39.103843],[114.906705351563,39.1119741035157],[114.942623320313,39.1200258613282],[114.957345,39.113843]]]]}},{"type":"Feature","properties":{"name":"唐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.477345,39.023843],[114.472345,39.0110353828125],[114.467345,39.023843],[114.477345,39.023843]]],[[[114.477345,39.023843],[114.486553984375,39.0569130683594],[114.55298953125,39.0681996894532],[114.568170195313,39.1052931953125],[114.59170046875,39.1194863105469],[114.61298953125,39.1281996894532],[114.653453398438,39.1581996894531],[114.721671171875,39.1482155585938],[114.75298953125,39.1294863105469],[114.76170046875,39.1181996894531],[114.847345,39.103843],[114.85142703125,39.0879274726563],[114.89142703125,39.0603102851563],[114.872296171875,39.0313088203125],[114.8344153125,39.0171340156251],[114.88142703125,38.9779274726563],[114.90392703125,38.9695095039063],[114.88486453125,38.9241262031251],[114.927628203125,38.9081252265626],[114.961988554688,38.8570998359376],[114.9921496875,38.8374599433594],[115.028345976563,38.8526638007813],[115.04326296875,38.8297585273438],[115.047345,38.803843],[115.0616809375,38.7648085761719],[115.031163359375,38.7385195136719],[115.032745390625,38.718843],[115.031138945313,38.698843],[115.054327421875,38.6884963203125],[115.051944609375,38.658843],[115.052769804688,38.6485561347656],[115.037345,38.623843],[115.021041289063,38.6280275703126],[115.02357546875,38.639341046875],[115.0170715625,38.6479274726563],[115.00326296875,38.6279274726563],[114.983526640625,38.6197585273438],[114.970011015625,38.6724184394531],[114.918297148438,38.6563881660157],[114.871998320313,38.6667678046875],[114.83326296875,38.6535671210938],[114.847345,38.643843],[114.835269804688,38.6293056464844],[114.811881132813,38.6383803535156],[114.802808867188,38.6493056464844],[114.791881132813,38.6583803535157],[114.777432890625,38.6916994453125],[114.762808867188,38.7093056464844],[114.731881132813,38.7283803535157],[114.722808867188,38.7793056464844],[114.7032434375,38.7955580878907],[114.741881132813,38.8123159003907],[114.712808867188,38.8493056464844],[114.698038359375,38.8615749335938],[114.703546171875,38.9156105781251],[114.631881132813,38.9283803535157],[114.600474882813,38.940180890625],[114.582125273438,38.9383107734375],[114.527345,38.953843],[114.52156375,39.0105300117188],[114.477345,39.023843]]]]}},{"type":"Feature","properties":{"name":"望都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.091656523438,38.7768434882813],[115.132345,38.7641713691406],[115.174542265625,38.7773134589844],[115.211158476563,38.7476552558594],[115.227345,38.7438430000001],[115.232061796875,38.7085622382813],[115.252174101563,38.6905947089844],[115.262061796875,38.6585622382812],[115.290728789063,38.6454067207032],[115.297345,38.553843],[115.289893828125,38.5388576484375],[115.300250273438,38.5176540351562],[115.247345,38.513843],[115.221016875,38.6059743476563],[115.191793242188,38.6182900214844],[115.182896757813,38.6393959785157],[115.158912382813,38.6582900214844],[115.124610625,38.6154518867188],[115.092345,38.6194643378907],[115.05939578125,38.6153664375],[115.037345,38.623843],[115.052769804688,38.6485561347656],[115.051944609375,38.658843],[115.054327421875,38.6884963203125],[115.031138945313,38.698843],[115.032745390625,38.718843],[115.031163359375,38.7385195136719],[115.0616809375,38.7648085761719],[115.047345,38.803843],[115.077750273438,38.7994167304688],[115.091656523438,38.7768434882813]]]]}},{"type":"Feature","properties":{"name":"新市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.36877078125,38.9527748847656],[115.422345,38.9473146796875],[115.44263796875,38.9493825507813],[115.477345,38.933843],[115.485455351563,38.8844728828125],[115.477345,38.8638430000001],[115.467345,38.8638430000001],[115.467345,38.853843],[115.45406375,38.84712425],[115.441353789063,38.8220009589844],[115.422330351563,38.8312917304688],[115.3807825,38.810639875],[115.377345,38.803843],[115.341275664063,38.8288002753907],[115.3614465625,38.8455580878907],[115.325889921875,38.8609792304688],[115.352808867188,38.8983803535157],[115.36877078125,38.9527748847656]]]]}},{"type":"Feature","properties":{"name":"雄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.237345,38.933843],[116.233922148438,38.9216506171876],[116.225152617188,38.9304201484375],[116.237345,38.933843]]],[[[116.237345,38.933843],[116.227345,38.9477956367188],[116.213170195313,38.9280178046876],[116.197345,38.923843],[116.155733671875,38.9432729316407],[116.117345,38.933843],[116.067359648438,38.9275978828125],[116.036612578125,38.9314211250001],[116.027345,38.963843],[116.05170046875,39.0094863105469],[116.063595,39.0186684394532],[116.029508085938,39.0646450019532],[116.033160429688,39.0893544746094],[116.027345,39.0938430000001],[116.031065703125,39.1001210761719],[116.097213164063,39.1079921699219],[116.073624296875,39.121977765625],[116.081978789063,39.1535659003906],[116.122345,39.1674282050781],[116.157345,39.1554091621094],[116.181500273438,39.1637038398438],[116.191065703125,39.1475649238282],[116.207345,39.143843],[116.257345,39.143843],[116.257345,39.1338430000001],[116.26142703125,39.1179274726563],[116.29326296875,39.0997585273438],[116.30142703125,39.0879274726563],[116.313643828125,39.0794936347656],[116.301217070313,39.0288845039063],[116.30361453125,39.0181728339844],[116.283829375,39.0045119453126],[116.32326296875,38.9897585273438],[116.327345,38.983843],[116.31435671875,38.9650295234376],[116.291573515625,38.9701369453125],[116.2823059375,38.9453823066407],[116.237345,38.933843]]]]}},{"type":"Feature","properties":{"name":"徐水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.45357546875,39.1608779121094],[115.472345,39.1581044746094],[115.48990359375,39.16069846875],[115.507345,39.153843],[115.511793242188,39.1382900214844],[115.542896757813,39.1293959785157],[115.594928007813,39.1093959785156],[115.642896757813,39.1182900214844],[115.654058867188,39.1322267890625],[115.7141809375,39.0968849921875],[115.757345,39.103843],[115.764644804688,39.0594057441407],[115.757550078125,39.0114028144532],[115.776392851563,38.9968593574219],[115.767345,38.9738430000001],[115.760704375,38.970483625],[115.753985625,38.947202375],[115.740704375,38.940483625],[115.729288359375,38.9179189277344],[115.743985625,38.910483625],[115.747345,38.883843],[115.711519804688,38.8880178046876],[115.67255984375,38.9177712226563],[115.6218371875,38.9280178046876],[115.587345,38.913843],[115.56326296875,38.9297585273438],[115.51142703125,38.9379274726563],[115.477345,38.953843],[115.47326296875,38.9797585273438],[115.453433867188,39.0102077460938],[115.437345,39.0066017890625],[115.391710234375,39.0168312812501],[115.3826184375,39.0522670722656],[115.333892851563,39.0413442207032],[115.320714140625,39.0765651679687],[115.323468046875,39.0888430000001],[115.321124296875,39.0992946601563],[115.337345,39.123843],[115.375596953125,39.1523928046876],[115.419078398438,39.1352992988282],[115.45357546875,39.1608779121094]]]]}},{"type":"Feature","properties":{"name":"易县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.20271609375,39.5592153144532],[115.212213164063,39.5481911445313],[115.237633085938,39.5623744941406],[115.333345976563,39.5363210273438],[115.331236601563,39.5100405097656],[115.357345,39.495473859375],[115.38197390625,39.5092153144531],[115.41271609375,39.5184706855469],[115.437769804688,39.5584706855469],[115.45271609375,39.5492153144532],[115.47595828125,39.5121096015626],[115.547720976563,39.4958058906251],[115.56197390625,39.4484706855469],[115.57271609375,39.4292153144531],[115.58197390625,39.3884706855469],[115.613072539063,39.3791078925781],[115.59603640625,39.3485756660156],[115.62197390625,39.3184706855469],[115.627345,39.313843],[115.62326296875,39.2879274726562],[115.59142703125,39.2797585273438],[115.5734778125,39.2537599921875],[115.531065703125,39.2295510078126],[115.53599734375,39.2075551582031],[115.52326296875,39.1579274726563],[115.507345,39.153843],[115.48990359375,39.16069846875],[115.472345,39.1581044746094],[115.45357546875,39.1608779121094],[115.419078398438,39.1352992988282],[115.375596953125,39.1523928046876],[115.337345,39.123843],[115.272349882813,39.1184401679688],[115.260728789063,39.1193752265626],[115.238878203125,39.0940163398438],[115.255523710938,39.0641860175781],[115.215191679688,39.0461891914063],[115.177345,39.0730239082031],[115.133580351563,39.0419936347656],[115.100103789063,39.0606716132813],[115.053316679688,39.0569118476562],[115.04271609375,39.0692153144532],[115.0319153125,39.0785195136719],[115.032769804688,39.0891213203126],[115.021148710938,39.1099513984375],[115.002066679688,39.1084194160157],[114.982506132813,39.11933128125],[114.957345,39.113843],[114.942623320313,39.1200258613282],[114.906705351563,39.1119741035157],[114.887345,39.103843],[114.882159453125,39.1219802070313],[114.85361453125,39.14483909375],[114.887335234375,39.1718447089844],[114.871793242188,39.1982900214844],[114.862896757813,39.2193959785156],[114.851793242188,39.2282900214844],[114.842896757813,39.2556484199219],[114.872896757813,39.2682900214844],[114.911285429688,39.3162233710938],[114.942345,39.2979653144531],[114.96931765625,39.3138210273438],[114.981793242188,39.3293959785156],[115.0234778125,39.3547170234375],[115.020650664063,39.3774562812501],[115.034039335938,39.40022971875],[115.030479765625,39.428843],[115.052896757813,39.4382900214844],[115.081793242188,39.4661086250001],[115.021793242188,39.4882900214844],[115.002896757813,39.5054164863282],[115.027345,39.543843],[115.121954375,39.5489723945312],[115.122877226563,39.5604616523438],[115.09271609375,39.5864455390626],[115.1141028125,39.5928432441406],[115.20271609375,39.5592153144532]]]]}},{"type":"Feature","properties":{"name":"涞水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.552979765625,39.79683128125],[115.507345,39.7866017890625],[115.4810559375,39.7924941230469],[115.42326296875,39.7776625800782],[115.434874296875,39.7496096015625],[115.478150664063,39.7385036445313],[115.493585234375,39.6887050605469],[115.475753203125,39.6462441230469],[115.510079375,39.6539394355469],[115.515709257813,39.6288430000001],[115.5080090625,39.5945082832032],[115.537345,39.6136110664062],[115.569581328125,39.5926186347657],[115.607345,39.6010842109375],[115.622345,39.5977223945313],[115.632345,39.5999636054688],[115.642789335938,39.5976222968751],[115.665211210938,39.6122206855469],[115.68326296875,39.5997585273438],[115.69142703125,39.5679274726563],[115.73326296875,39.5397585273438],[115.749595976563,39.5160964179688],[115.767345,39.503843],[115.76298953125,39.4981996894531],[115.74375125,39.4833498359376],[115.741402617188,39.4674550605469],[115.7760559375,39.4225551582032],[115.79298953125,39.4094863105469],[115.807345,39.383843],[115.797345,39.383843],[115.784537382813,39.378843],[115.797345,39.373843],[115.807345,39.373843],[115.807345,39.343843],[115.787345,39.343843],[115.787345,39.333843],[115.72197390625,39.3192153144532],[115.700162382813,39.2939015937501],[115.67271609375,39.3092153144531],[115.627345,39.313843],[115.62197390625,39.3184706855469],[115.59603640625,39.3485756660156],[115.613072539063,39.3791078925781],[115.58197390625,39.3884706855469],[115.57271609375,39.4292153144531],[115.56197390625,39.4484706855469],[115.547720976563,39.4958058906251],[115.47595828125,39.5121096015626],[115.45271609375,39.5492153144532],[115.437769804688,39.5584706855469],[115.41271609375,39.5184706855469],[115.38197390625,39.5092153144531],[115.357345,39.495473859375],[115.331236601563,39.5100405097656],[115.333345976563,39.5363210273438],[115.237633085938,39.5623744941406],[115.212213164063,39.5481911445313],[115.20271609375,39.5592153144532],[115.1141028125,39.5928432441406],[115.09271609375,39.5864455390626],[115.122877226563,39.5604616523438],[115.121954375,39.5489723945312],[115.027345,39.543843],[115.001065703125,39.5581264472656],[115.005709257813,39.578843],[115.001065703125,39.5995510078125],[115.03326296875,39.6179274726563],[115.04142703125,39.6297585273438],[115.057027617188,39.6405275703125],[115.007345,39.673843],[115.007345,39.683843],[115.017345,39.683843],[115.02326296875,39.6879274726563],[115.0370715625,39.7079274726562],[115.10326296875,39.6997585273438],[115.111676054688,39.6875722480469],[115.122623320313,39.6900258613282],[115.169332304688,39.6704079414063],[115.173468046875,39.688843],[115.171041289063,39.6996584296875],[115.219176054688,39.7120119453125],[115.23142703125,39.7297585273438],[115.267789335938,39.7433632636719],[115.31142703125,39.7797585273438],[115.333638945313,39.7880690742188],[115.329312773438,39.8073732734375],[115.34142703125,39.8397585273438],[115.35326296875,39.8579274726563],[115.36142703125,39.8797585273438],[115.393648710938,39.8880275703126],[115.391124296875,39.8992897773438],[115.40326296875,39.9179274726563],[115.41142703125,39.9397585273438],[115.417345,39.943843],[115.436803007813,39.9513210273438],[115.513687773438,39.9046218085937],[115.511099882813,39.883843],[115.513590117188,39.863843],[115.510499296875,39.8389846015625],[115.557345,39.8138430000001],[115.552979765625,39.79683128125]]]]}},{"type":"Feature","properties":{"name":"涞源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.657345,39.593843],[114.647345,39.593843],[114.652345,39.6066506171876],[114.657345,39.593843]]],[[[114.647345,39.593843],[114.652345,39.5810353828125],[114.657345,39.593843],[114.699503203125,39.579067609375],[114.712178984375,39.6191078925782],[114.762213164063,39.6086391425781],[114.77935671875,39.6093190742188],[114.822535429688,39.5990334296875],[114.837345,39.5830507636719],[114.852154570313,39.5990334296875],[114.867725859375,39.613462140625],[114.890323515625,39.6378530097656],[114.922535429688,39.6586525703125],[114.93216921875,39.669048078125],[114.957340117188,39.6680507636719],[115.007345,39.673843],[115.057027617188,39.6405275703125],[115.04142703125,39.6297585273438],[115.03326296875,39.6179274726563],[115.001065703125,39.5995510078125],[115.005709257813,39.578843],[115.001065703125,39.5581264472656],[115.027345,39.543843],[115.002896757813,39.5054164863282],[115.021793242188,39.4882900214844],[115.081793242188,39.4661086250001],[115.052896757813,39.4382900214844],[115.030479765625,39.428843],[115.034039335938,39.40022971875],[115.020650664063,39.3774562812501],[115.0234778125,39.3547170234375],[114.981793242188,39.3293959785156],[114.96931765625,39.3138210273438],[114.942345,39.2979653144531],[114.911285429688,39.3162233710938],[114.872896757813,39.2682900214844],[114.842896757813,39.2556484199219],[114.851793242188,39.2282900214844],[114.862896757813,39.2193959785156],[114.871793242188,39.1982900214844],[114.887335234375,39.1718447089844],[114.85361453125,39.14483909375],[114.882159453125,39.1219802070313],[114.887345,39.103843],[114.862105742188,39.0976430488282],[114.847345,39.103843],[114.76170046875,39.1181996894531],[114.75298953125,39.1294863105469],[114.721671171875,39.1482155585938],[114.653453398438,39.1581996894531],[114.61298953125,39.1281996894532],[114.59170046875,39.1194863105469],[114.568170195313,39.1052931953125],[114.55298953125,39.0681996894532],[114.486553984375,39.0569130683594],[114.477345,39.023843],[114.467345,39.023843],[114.4522278125,39.0434267402344],[114.390926542969,39.0685170722656],[114.347345,39.073843],[114.364246855469,39.1109645820312],[114.360203886719,39.1383315253906],[114.373160429688,39.1483315253907],[114.370318632813,39.1675527167969],[114.43298953125,39.1781996894532],[114.44170046875,39.1894863105469],[114.46298953125,39.1981996894531],[114.47170046875,39.2170607734375],[114.419075957031,39.2317153144531],[114.423822050781,39.263843],[114.420867949219,39.2838430000001],[114.424129667969,39.3059242988281],[114.473765898438,39.3442360664063],[114.465611601563,39.3993947578126],[114.4886340625,39.4375551582031],[114.50306765625,39.4728212714844],[114.533463164063,39.4962831855469],[114.531549101563,39.5092336250001],[114.54298953125,39.5281996894531],[114.557345,39.563843],[114.56271609375,39.5684706855469],[114.576046171875,39.5839443183594],[114.624342070313,39.5497011542969],[114.64197390625,39.5892153144532],[114.647345,39.593843]]]]}},{"type":"Feature","properties":{"name":"涿州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,39.383843],[115.797345,39.373843],[115.784537382813,39.378843],[115.797345,39.383843]]],[[[115.939742460938,39.5694533515626],[115.962345,39.5676381660156],[115.975640898438,39.5974306464844],[115.992667265625,39.5776638007813],[116.0123840625,39.5792482734376],[116.131104765625,39.56757346875],[116.163424101563,39.5856044746094],[116.217345,39.573843],[116.217345,39.563843],[116.237345,39.563843],[116.237345,39.5138430000001],[116.222628203125,39.5081862617188],[116.203287382813,39.5105910468751],[116.135460234375,39.4563442207032],[116.122896757813,39.3982900214844],[116.107345,39.3638430000001],[116.094093046875,39.3472963691406],[116.042076445313,39.369751203125],[116.030972929688,39.3558852363281],[115.931793242188,39.3682900214844],[115.872457304688,39.3794789863282],[115.857330351563,39.3775978828125],[115.807345,39.383843],[115.79298953125,39.4094863105469],[115.7760559375,39.4225551582032],[115.741402617188,39.4674550605469],[115.74375125,39.4833498359376],[115.76298953125,39.4981996894531],[115.767345,39.503843],[115.773961210938,39.5115248847656],[115.822847929688,39.5075978828125],[115.820465117188,39.5372158027345],[115.843326445313,39.5499697089844],[115.8780090625,39.54718284375],[115.903526640625,39.5691664863281],[115.901168242188,39.5984706855469],[115.92271609375,39.5892153144532],[115.939742460938,39.5694533515626]]]]}},{"type":"Feature","properties":{"name":"蠡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.659566679688,38.6551064277345],[115.772623320313,38.6279787421876],[115.796378203125,38.6423073554688],[115.8186340625,38.6251308417969],[115.83170046875,38.6081996894532],[115.843516875,38.599077375],[115.824874296875,38.5681703925782],[115.817345,38.5238430000001],[115.78170046875,38.5094863105469],[115.77298953125,38.4881996894532],[115.74170046875,38.4794863105469],[115.7286340625,38.4625551582032],[115.709014921875,38.4474135566406],[115.725675078125,38.3902724433594],[115.7060559375,38.3751308417969],[115.697345,38.3638430000001],[115.689263945313,38.3478676582032],[115.657345,38.343843],[115.647345,38.343843],[115.599361601563,38.3498451972656],[115.603023710938,38.3792958808594],[115.591666289063,38.3883901191406],[115.5941809375,38.4086159492188],[115.561666289063,38.4283681464844],[115.564244414063,38.4491054511719],[115.520445585938,38.4585805488281],[115.524898710938,38.4943886542969],[115.481793242188,38.5482900214844],[115.467345,38.573843],[115.571812773438,38.5972194648438],[115.5727746875,38.6091664863282],[115.560738554688,38.6195351386719],[115.5880871875,38.6430995917969],[115.609742460938,38.6682326484375],[115.622584257813,38.6692641425781],[115.637345,38.663843],[115.659566679688,38.6551064277345]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇礼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.471676054688,41.2901137519532],[115.482345,41.2877223945313],[115.492960234375,41.2901015449219],[115.53326296875,41.2797585273437],[115.55142703125,41.2679274726563],[115.567345,41.2638430000001],[115.555308867188,41.2488112617188],[115.493795195313,41.2355019355469],[115.490748320313,41.2110048652344],[115.517720976563,41.1408351875],[115.499810820313,41.0942360664063],[115.503004179688,41.0685549140626],[115.46951296875,40.9836208320313],[115.481793242188,40.9682900214844],[115.51593875,40.9539003730469],[115.502281523438,40.906137921875],[115.4312121875,40.8629689765626],[115.433590117188,40.8438307929688],[115.427345,40.793843],[115.371514921875,40.7728639960938],[115.342808867188,40.7893056464844],[115.28642703125,40.8018068671875],[115.175621367188,40.790512921875],[115.142808867188,40.8093056464844],[115.121881132813,40.8183803535156],[115.102345,40.8295705390625],[115.073604765625,40.8131081367188],[114.991593046875,40.8214675117187],[114.957345,40.813843],[114.957345,40.823843],[114.927345,40.823843],[114.927345,40.833843],[114.922296171875,40.853520734375],[114.889595976563,40.8760964179688],[114.867022734375,40.9087929511719],[114.81826296875,40.9213063789063],[114.807345,40.9638430000001],[114.83271609375,40.9684706855469],[114.84197390625,40.9750844550781],[114.809722929688,40.9894753242188],[114.786768828125,41.0161171699219],[114.814361601563,41.0398867011719],[114.839049101563,41.0379018378907],[114.9122278125,41.0492543769532],[114.932345,41.0476381660156],[114.957042265625,41.0496218085938],[114.97197390625,41.0992153144531],[114.98271609375,41.1084706855469],[115.009429960938,41.1394789863281],[115.022667265625,41.1384157539063],[115.03197390625,41.1492153144532],[115.04271609375,41.1584706855469],[115.063267851563,41.1823281074219],[115.061783476563,41.2008071113282],[115.025660429688,41.1979042792969],[115.04533328125,41.2331630683594],[115.11271609375,41.2484706855469],[115.126046171875,41.2639443183594],[115.165440703125,41.2360134101563],[115.323228789063,41.2502284980469],[115.345460234375,41.2244228339844],[115.374586210938,41.2406716132813],[115.407345,41.2380397773437],[115.427642851563,41.2396706367187],[115.447345,41.273843],[115.46326296875,41.2779274726563],[115.471676054688,41.2901137519532]]]]}},{"type":"Feature","properties":{"name":"赤城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.687345,40.5738430000001],[115.683922148438,40.5860353828125],[115.675152617188,40.5772658515625],[115.680914335938,40.565512921875],[115.631939726563,40.5797927070313],[115.616265898438,40.5594863105469],[115.54170046875,40.5681996894531],[115.507345,40.5738430000001],[115.50326296875,40.5897585273438],[115.489322539063,40.6111647773438],[115.51326296875,40.6479274726563],[115.52142703125,40.6750954414062],[115.487345,40.683843],[115.483624296875,40.7301210761719],[115.438980742188,40.7540419746094],[115.450806914063,40.7884792304688],[115.427345,40.793843],[115.433590117188,40.8438307929688],[115.4312121875,40.8629689765626],[115.502281523438,40.906137921875],[115.51593875,40.9539003730469],[115.481793242188,40.9682900214844],[115.46951296875,40.9836208320313],[115.503004179688,41.0685549140626],[115.499810820313,41.0942360664063],[115.517720976563,41.1408351875],[115.490748320313,41.2110048652344],[115.493795195313,41.2355019355469],[115.555308867188,41.2488112617188],[115.567345,41.2638430000001],[115.582896757813,41.2682900214844],[115.624644804688,41.3204225898438],[115.651402617188,41.317094953125],[115.723077421875,41.3744167304688],[115.784644804688,41.3311403632813],[115.821793242188,41.2782900214844],[115.86771609375,41.2683534980469],[115.893702421875,41.2359023261719],[115.927345,41.2400868964844],[115.95150515625,41.2370815253907],[115.952965117188,41.248843],[115.951261015625,41.2625624824219],[115.961793242188,41.2993959785157],[116.001265898438,41.3106825996094],[116.029420195313,41.37749534375],[116.037345,41.3838430000001],[116.05373171875,41.3898598457031],[116.112105742188,41.3684218574219],[116.138648710938,41.3705544257813],[116.201768828125,41.3310182929688],[116.202764921875,41.3186049628906],[116.18310671875,41.2650771308594],[116.223492460938,41.2081215644532],[116.221217070313,41.1798232246094],[116.234176054688,41.1566030097657],[116.231710234375,41.1259291816406],[116.281612578125,41.0829335761719],[116.283629179688,41.0578713203125],[116.257457304688,41.0353224921875],[116.27197390625,41.0184706855469],[116.28271609375,41.0092153144532],[116.29197390625,40.988470685547],[116.337589140625,40.9781081367188],[116.357345,40.943843],[116.352628203125,40.9385622382813],[116.323175078125,40.9122450996094],[116.387906523438,40.8544057441407],[116.406783476563,40.8332802558594],[116.451265898438,40.7935366035156],[116.457345,40.7738430000001],[116.449610625,40.7645351386719],[116.318980742188,40.7778493476563],[116.296436796875,40.7507094550782],[116.237784453125,40.7929189277344],[116.222808867188,40.7583803535157],[116.171881132813,40.6993056464844],[116.159781523438,40.6714052558594],[116.11068484375,40.6501125312501],[116.113018828125,40.6272450996095],[116.084893828125,40.63011253125],[116.071881132813,40.6193056464844],[116.062808867188,40.6083803535157],[116.011881132813,40.5993056464844],[115.995582304688,40.5796828437501],[115.980391875,40.5781349921875],[115.95650515625,40.606889875],[115.906553984375,40.6119814277344],[115.882808867188,40.5983803535157],[115.8257434375,40.5882118964844],[115.812808867188,40.5583803535157],[115.765655546875,40.5479250312501],[115.737345,40.513843],[115.720347929688,40.5189614082032],[115.725894804688,40.5879994941407],[115.687345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"沽源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,41.503843],[114.970045195313,41.4999282050781],[114.937393828125,41.4839821601563],[114.927345,41.503843]]],[[[114.927345,41.503843],[114.88297,41.4965541816407],[114.87298953125,41.5094863105469],[114.837345,41.513843],[114.843985625,41.527202375],[114.851534453125,41.5758461738281],[114.873985625,41.5872023750001],[114.877345,41.593843],[114.888687773438,41.6065395332031],[114.947345,41.6100356269532],[114.977345,41.608247296875],[115.010592070313,41.6102284980469],[115.043629179688,41.5922768378907],[115.086456328125,41.6221926093751],[115.183189726563,41.5996865058594],[115.210494414063,41.5691237617188],[115.248878203125,41.5803981757813],[115.266392851563,41.6185622382813],[115.292628203125,41.6091237617188],[115.310494414063,41.5891237617188],[115.362906523438,41.5986122871094],[115.341475859375,41.6380446601562],[115.35322390625,41.6596572089844],[115.302857695313,41.7046559882812],[115.39713015625,41.7265895820313],[115.446783476563,41.7444057441406],[115.523189726563,41.7679994941407],[115.562061796875,41.7891237617188],[115.628765898438,41.8197389960938],[115.712628203125,41.8685622382813],[115.731588164063,41.8897817207032],[115.770220976563,41.8874794746094],[115.782628203125,41.8985622382812],[115.792061796875,41.9091237617187],[115.797345,41.9138430000001],[115.812628203125,41.9185622382813],[115.822061796875,41.9291237617188],[115.917345,41.943843],[115.936788359375,41.8968288398437],[115.99271609375,41.8292153144531],[116.00834109375,41.7773159003907],[116.070079375,41.7822768378907],[116.077345,41.773843],[116.07170046875,41.7694863105469],[116.049244414063,41.7319411445313],[116.01170046875,41.7094863105469],[115.9686340625,41.6775551582031],[115.908585234375,41.6416432929688],[115.92310671875,41.5789858222657],[115.921519804688,41.5682729316406],[115.94298953125,41.5594863105469],[115.9652746875,41.5460439277344],[115.98170046875,41.4681996894532],[116.00162234375,41.4528212714844],[116.01170046875,41.4281996894532],[116.0325403125,41.4121120429688],[116.037345,41.3838430000001],[116.029420195313,41.37749534375],[116.001265898438,41.3106825996094],[115.961793242188,41.2993959785157],[115.951261015625,41.2625624824219],[115.952965117188,41.248843],[115.95150515625,41.2370815253907],[115.927345,41.2400868964844],[115.893702421875,41.2359023261719],[115.86771609375,41.2683534980469],[115.821793242188,41.2782900214844],[115.784644804688,41.3311403632813],[115.723077421875,41.3744167304688],[115.651402617188,41.317094953125],[115.624644804688,41.3204225898438],[115.582896757813,41.2682900214844],[115.567345,41.2638430000001],[115.55142703125,41.2679274726563],[115.53326296875,41.2797585273437],[115.492960234375,41.2901015449219],[115.482345,41.2877223945313],[115.471676054688,41.2901137519532],[115.46326296875,41.2779274726563],[115.447345,41.273843],[115.454298125,41.3161598945313],[115.439127226563,41.3547499824219],[115.4160559375,41.3725551582031],[115.387183867188,41.409964826172],[115.32170046875,41.4281996894532],[115.30427859375,41.4507741523438],[115.28170046875,41.4681996894532],[115.2676575,41.4863906074219],[115.21170046875,41.4981996894532],[115.188800078125,41.5120131660157],[115.137345,41.50440940625],[115.102345,41.5095815253907],[115.085499296875,41.5070925117188],[115.025738554688,41.524516828125],[114.963883085938,41.5153749824219],[114.95298953125,41.529486310547],[114.936910429688,41.5381996894532],[114.927345,41.503843]]]]}},{"type":"Feature","properties":{"name":"怀安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.27298953125,40.7494863105469],[114.328802519531,40.7365541816407],[114.347345,40.743843],[114.352315703125,40.7152736640625],[114.418197050781,40.6964614082031],[114.442652617188,40.6995034003907],[114.507525664063,40.6714980292969],[114.645406523438,40.6915651679688],[114.728975859375,40.7236891914063],[114.762896757813,40.7093959785156],[114.767345,40.703843],[114.77197390625,40.6784706855469],[114.793116484375,40.6690358710938],[114.77173953125,40.6388869453126],[114.786280546875,40.6128273750001],[114.779664335938,40.5304616523438],[114.801754179688,40.5114284492188],[114.7519153125,40.4891896796875],[114.753526640625,40.4691664863282],[114.74197390625,40.4592153144531],[114.73271609375,40.4484706855469],[114.700123320313,40.4203908515626],[114.707345,40.373843],[114.65197390625,40.3692153144532],[114.622584257813,40.3584218574219],[114.601832304688,40.3600893378906],[114.527345,40.3438430000001],[114.510181914063,40.3504396796876],[114.47486453125,40.3460463691406],[114.44263796875,40.3695876289063],[114.388968535156,40.3573976875001],[114.301810332031,40.3682387519531],[114.279793730469,40.4277956367188],[114.293587675781,40.438843],[114.264100371094,40.4624575019532],[114.287803984375,40.5454677558594],[114.270535917969,40.5592958808594],[114.274039335938,40.5874562812501],[114.260504179688,40.6104799628907],[114.217345,40.6051113105469],[114.202899199219,40.6393959785157],[114.181790800781,40.6682900214844],[114.162899199219,40.6993959785157],[114.137345,40.7338430000001],[114.155264921875,40.7570571113281],[114.194388457031,40.7628395820313],[114.27298953125,40.7494863105469]]]]}},{"type":"Feature","properties":{"name":"怀来县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.687345,40.5738430000001],[115.675152617188,40.5772658515625],[115.683922148438,40.5860353828125],[115.687345,40.5738430000001]]],[[[115.687345,40.5738430000001],[115.725894804688,40.5879994941407],[115.720347929688,40.5189614082032],[115.737345,40.513843],[115.742061796875,40.4985622382813],[115.7726575,40.4891139960937],[115.76982546875,40.441567609375],[115.862423125,40.3608046699219],[115.912628203125,40.3491237617187],[115.922061796875,40.3285622382813],[115.932628203125,40.3091237617187],[115.942061796875,40.2885622382813],[115.957345,40.263843],[115.95326296875,40.2579274726563],[115.91978640625,40.2493361640625],[115.884346953125,40.2248671699219],[115.86326296875,40.1879274726563],[115.840396757813,40.1721401191407],[115.847345,40.143843],[115.815513945313,40.1520119453126],[115.772623320313,40.1700258613281],[115.753682890625,40.1657802558594],[115.74326296875,40.1379274726563],[115.72697390625,40.1266835761719],[115.707345,40.1310842109375],[115.692345,40.1277223945313],[115.676392851563,40.1312978339844],[115.63326296875,40.1179274726563],[115.59142703125,40.1097585273438],[115.58326296875,40.0979274726563],[115.55142703125,40.0897585273438],[115.54326296875,40.0779274726563],[115.51142703125,40.0697585273438],[115.497345,40.063843],[115.502984648438,40.0886818671875],[115.500850859375,40.1058705878907],[115.481793242188,40.1382900214844],[115.468204375,40.1705397773438],[115.473023710938,40.2092958808594],[115.461793242188,40.2182900214844],[115.440074492188,40.2454128242188],[115.46552859375,40.3043788886719],[115.484156523438,40.3192958808594],[115.481353789063,40.3418288398438],[115.452345,40.3382216621094],[115.442345,40.3394643378907],[115.42021609375,40.3367116523438],[115.423546171875,40.3634926582031],[115.323092070313,40.3922145820313],[115.282896757813,40.4493959785156],[115.277345,40.453843],[115.2816028125,40.4699782539063],[115.292345,40.4678554511719],[115.311422148438,40.4716237617188],[115.340499296875,40.5121974921875],[115.412965117188,40.49772971875],[115.421519804688,40.5096681953125],[115.467711210938,40.5364479804688],[115.487345,40.563843],[115.507345,40.563843],[115.507345,40.5738430000001],[115.54170046875,40.5681996894531],[115.616265898438,40.5594863105469],[115.631939726563,40.5797927070313],[115.680914335938,40.565512921875],[115.687345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"康保县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.812896757813,42.1393959785157],[114.857345,42.1038430000001],[114.863248320313,42.0459902167969],[114.883150664063,42.0288430000001],[114.871402617188,42.0187245917969],[114.901314726563,42.0053774238281],[114.91197390625,41.9584706855469],[114.922999296875,41.9387123847656],[114.911163359375,41.9285195136719],[114.913150664063,41.903843],[114.909664335938,41.8604616523438],[114.93197390625,41.8412404609376],[114.90271609375,41.8184706855469],[114.866842070313,41.8076699042969],[114.89158328125,41.7633229804688],[114.901143828125,41.6443459296876],[114.862955351563,41.6114455390625],[114.8619153125,41.5984889960938],[114.877345,41.593843],[114.873985625,41.5872023750001],[114.851534453125,41.5758461738281],[114.843985625,41.527202375],[114.837345,41.513843],[114.81451296875,41.4742397285157],[114.722345,41.4668337226563],[114.673424101563,41.4707643867188],[114.61271609375,41.4484706855469],[114.55197390625,41.4392153144532],[114.523590117188,41.4233791328125],[114.470885039063,41.4845571113282],[114.360482207031,41.5758791328125],[114.31271609375,41.5384706855469],[114.257818632813,41.5259987617188],[114.242537871094,41.5082631660156],[114.227345,41.513843],[114.220477324219,41.5688198066407],[114.223587675781,41.593843],[114.220479765625,41.618843],[114.247039824219,41.6300356269531],[114.211431914063,41.6787831855469],[114.228929472656,41.70855003125],[114.197345,41.733843],[114.202764921875,41.7486049628907],[114.199141875,41.7936989570313],[114.276292753906,41.8601674628907],[114.32197390625,41.9192153144532],[114.34271609375,41.9284706855469],[114.359742460938,41.9482326484375],[114.377345,41.9496462226563],[114.4414075,41.9444997382813],[114.486793242188,41.9647524238282],[114.503951445313,41.9795351386719],[114.474205351563,42.0051638007813],[114.460992460938,42.0411391425782],[114.49271609375,42.0684706855469],[114.517511015625,42.1240346503907],[114.593179960938,42.1301149726563],[114.640206328125,42.1038771796875],[114.683902617188,42.1199233222656],[114.756715117188,42.1140724921875],[114.797345,42.1438430000001],[114.812896757813,42.1393959785157]]]]}},{"type":"Feature","properties":{"name":"桥东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,40.833843],[114.927345,40.823843],[114.957345,40.823843],[114.957345,40.813843],[114.963155546875,40.7784743476563],[114.951256132813,40.7587490058594],[114.983365507813,40.7190224433594],[114.967345,40.683843],[114.957345,40.683843],[114.95271609375,40.6892153144531],[114.883170195313,40.72931175],[114.872174101563,40.7284279609376],[114.847345,40.7338430000001],[114.85142703125,40.7497585273437],[114.871295195313,40.7802638984375],[114.887550078125,40.8436171699219],[114.927345,40.833843]]]]}},{"type":"Feature","properties":{"name":"桥西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.922296171875,40.853520734375],[114.927345,40.833843],[114.887550078125,40.8436171699219],[114.871295195313,40.7802638984375],[114.85142703125,40.7497585273437],[114.847345,40.7338430000001],[114.84142703125,40.7297585273438],[114.830191679688,40.6859633613281],[114.7941028125,40.6940529609375],[114.787345,40.703843],[114.793350859375,40.717837140625],[114.801339140625,40.749848859375],[114.813350859375,40.757837140625],[114.834469023438,40.7954177070313],[114.826285429688,40.8278993964844],[114.811339140625,40.837837140625],[114.800064726563,40.8547927070313],[114.803717070313,40.8692983222657],[114.78365359375,40.8993447089844],[114.793604765625,40.938843],[114.791016875,40.9491054511719],[114.797345,40.9638430000001],[114.807345,40.9638430000001],[114.81826296875,40.9213063789063],[114.867022734375,40.9087929511719],[114.889595976563,40.8760964179688],[114.922296171875,40.853520734375]]]]}},{"type":"Feature","properties":{"name":"尚义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.104388457031,41.5328395820313],[114.197122832031,41.5170851875],[114.207345,41.503843],[114.191441679688,41.4911074042969],[114.194154082031,41.4692958808594],[114.180887480469,41.4586708808594],[114.202899199219,41.4493959785157],[114.223741484375,41.4150783515625],[114.220535917969,41.3892958808594],[114.238450957031,41.3749489570313],[114.251790800781,41.3582900214844],[114.289776640625,41.3352175117187],[114.311790800781,41.2941542792969],[114.271431914063,41.2389028144532],[114.30443484375,41.182759015625],[114.371109648438,41.1422597480469],[114.35134890625,41.1086440253907],[114.362899199219,41.0993959785157],[114.371790800781,41.087046125],[114.344053984375,41.0904958320313],[114.355291777344,41.0001479316407],[114.392899199219,40.9893959785157],[114.423082304688,40.9716518378907],[114.437345,40.9538430000001],[114.419544707031,40.9096486640625],[114.396324492188,40.8795644355469],[114.367349882813,40.8677053046876],[114.361549101563,40.828452375],[114.38170046875,40.7950429511719],[114.366846953125,40.7492739082032],[114.347345,40.743843],[114.328802519531,40.7365541816407],[114.27298953125,40.7494863105469],[114.194388457031,40.7628395820313],[114.155264921875,40.7570571113281],[114.137345,40.7338430000001],[114.117345,40.743843],[114.112625761719,40.7491237617188],[114.102064238281,40.7585622382813],[114.092625761719,40.7891237617188],[114.072064238281,40.7985622382813],[114.035360136719,40.8241994453125],[114.062830839844,40.84874534375],[114.052064238281,40.8685622382812],[114.040545683594,40.893657453125],[114.042659941406,40.9291164375001],[113.983841582031,40.9428017402344],[113.972625761719,40.9791237617188],[113.922064238281,41.0185622382813],[113.912625761719,41.0291237617188],[113.872064238281,41.0585622382812],[113.862625761719,41.0691237617187],[113.832064238281,41.0785622382813],[113.814888945313,41.0977846503906],[113.872625761719,41.1085622382813],[113.882064238281,41.1291237617188],[113.89322390625,41.1390956855469],[113.89166140625,41.1653163886719],[113.991185332031,41.183891828125],[114.006278105469,41.2327748847657],[113.976395292969,41.2685622382813],[113.96193484375,41.2370546699219],[113.939481230469,41.2859780097656],[113.910257597656,41.299389875],[113.897345,41.313843],[113.919769316406,41.3311525703125],[113.934234648438,41.3935707832032],[113.86298953125,41.4134096503906],[113.87170046875,41.4294863105469],[113.910811796875,41.4528774238282],[113.92170046875,41.4794863105469],[113.95298953125,41.4881996894532],[114.00259890625,41.5181240058594],[114.062261992188,41.5295937324219],[114.072345,41.5281044746094],[114.104388457031,41.5328395820313]]]]}},{"type":"Feature","properties":{"name":"万全县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.801339140625,40.749848859375],[114.793350859375,40.717837140625],[114.787345,40.703843],[114.767345,40.703843],[114.762896757813,40.7093959785156],[114.728975859375,40.7236891914063],[114.645406523438,40.6915651679688],[114.507525664063,40.6714980292969],[114.442652617188,40.6995034003907],[114.418197050781,40.6964614082031],[114.352315703125,40.7152736640625],[114.347345,40.743843],[114.366846953125,40.7492739082032],[114.38170046875,40.7950429511719],[114.361549101563,40.828452375],[114.367349882813,40.8677053046876],[114.396324492188,40.8795644355469],[114.419544707031,40.9096486640625],[114.437345,40.9538430000001],[114.48298953125,40.9581996894532],[114.53170046875,40.9894863105469],[114.609610625,40.999009015625],[114.668468046875,41.0221462226563],[114.77853640625,41.0034487128907],[114.79298953125,40.9794863105469],[114.797345,40.9638430000001],[114.791016875,40.9491054511719],[114.793604765625,40.938843],[114.78365359375,40.8993447089844],[114.803717070313,40.8692983222657],[114.800064726563,40.8547927070313],[114.811339140625,40.837837140625],[114.826285429688,40.8278993964844],[114.834469023438,40.7954177070313],[114.813350859375,40.757837140625],[114.801339140625,40.749848859375]]]]}},{"type":"Feature","properties":{"name":"蔚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.647345,39.593843],[114.657345,39.593843],[114.652345,39.5810353828125],[114.647345,39.593843]]],[[[114.657345,39.593843],[114.652345,39.6066506171876],[114.647345,39.593843],[114.64197390625,39.5892153144532],[114.624342070313,39.5497011542969],[114.576046171875,39.5839443183594],[114.56271609375,39.5684706855469],[114.557345,39.563843],[114.553306914063,39.5809926582032],[114.513585234375,39.5631984687501],[114.493531523438,39.6000307441407],[114.457965117188,39.6121511054688],[114.429930449219,39.6034181953125],[114.409720488281,39.6362184882812],[114.397345,39.643843],[114.404447050781,39.7872621894531],[114.391375761719,39.7993740058594],[114.392740507813,39.833843],[114.391617460938,39.8621828437501],[114.302345,39.8586452460937],[114.292345,39.8590407539063],[114.282166777344,39.858637921875],[114.272523222656,39.869048078125],[114.211060820313,39.8666115546875],[114.192535429688,39.8708559394532],[114.223138457031,39.8992104316406],[114.207345,39.913843],[114.197594023438,39.9559242988281],[114.232345,39.961059796875],[114.243546171875,39.9336940742187],[114.312203398438,39.9496034980469],[114.322916289063,39.9480202460938],[114.338170195313,39.9852931953125],[114.388316679688,40.0155409980469],[114.403975859375,39.9952516914063],[114.465928984375,39.9860964179688],[114.4960559375,40.0251308417969],[114.550811796875,40.0403774238282],[114.566007109375,40.0949513984375],[114.61521609375,40.0876796699219],[114.65888796875,40.0998427558594],[114.673297148438,40.1492507148438],[114.65375125,40.1643361640625],[114.651256132813,40.1812209296876],[114.672735625,40.1780458808594],[114.706143828125,40.1981996894532],[114.76298953125,40.1894863105469],[114.797345,40.1638430000001],[114.817642851563,40.1558632636719],[114.88404421875,40.1848818183594],[114.916256132813,40.1654506660157],[114.967345,40.173843],[114.98123171875,40.1577272773438],[115.003526640625,40.1385195136719],[115.000748320313,40.1039748359376],[115.03529421875,40.0204457832032],[115.06064578125,39.9750063300782],[115.0627746875,39.9484963203125],[115.037628203125,39.9372768378906],[115.021807890625,39.9089199042969],[115.032926054688,39.8786501289062],[115.0030090625,39.8528774238282],[115.02482546875,39.7934755683594],[114.9969934375,39.7273940253906],[115.01271609375,39.6992153144531],[115.017345,39.683843],[115.007345,39.683843],[115.007345,39.673843],[114.957340117188,39.6680507636719],[114.93216921875,39.669048078125],[114.922535429688,39.6586525703125],[114.890323515625,39.6378530097656],[114.867725859375,39.613462140625],[114.852154570313,39.5990334296875],[114.837345,39.5830507636719],[114.822535429688,39.5990334296875],[114.77935671875,39.6093190742188],[114.762213164063,39.6086391425781],[114.712178984375,39.6191078925782],[114.699503203125,39.579067609375],[114.657345,39.593843]]]]}},{"type":"Feature","properties":{"name":"下花园区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.419346953125,40.5996511054688],[115.437393828125,40.5639821601563],[115.462447539063,40.5762184882813],[115.487345,40.563843],[115.467711210938,40.5364479804688],[115.421519804688,40.5096681953125],[115.412965117188,40.49772971875],[115.340499296875,40.5121974921875],[115.311422148438,40.4716237617188],[115.292345,40.4678554511719],[115.2816028125,40.4699782539063],[115.277345,40.453843],[115.25142703125,40.4497585273438],[115.231998320313,40.4371047187501],[115.209254179688,40.4700478339844],[115.215103789063,40.4961428046876],[115.167345,40.473843],[115.173272734375,40.4994264960938],[115.130367460938,40.5084804511719],[115.193922148438,40.5564504218751],[115.21978640625,40.5899599433594],[115.23673953125,40.5874550605469],[115.26298953125,40.5981996894531],[115.298590117188,40.6245937324219],[115.332486601563,40.6296034980469],[115.357345,40.6238430000001],[115.365343046875,40.6080348945313],[115.419346953125,40.5996511054688]]]]}},{"type":"Feature","properties":{"name":"宣化区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.127345,40.5738430000001],[115.123922148438,40.5860353828125],[115.115152617188,40.5772658515625],[115.1032825,40.547874982422],[115.072535429688,40.5690334296876],[114.922535429688,40.6500514960938],[114.932154570313,40.6690334296875],[114.952535429688,40.6786525703125],[114.957345,40.683843],[114.967345,40.683843],[114.992896757813,40.6793959785157],[115.02013796875,40.663384015625],[115.067603789063,40.6816298652344],[115.123287382813,40.637094953125],[115.146236601563,40.6399489570313],[115.132896757813,40.5782900214844],[115.127345,40.5738430000001]]],[[[115.450572539063,40.6909438300782],[115.47220828125,40.6778932929688],[115.487345,40.683843],[115.52142703125,40.6750954414062],[115.51326296875,40.6479274726563],[115.489322539063,40.6111647773438],[115.50326296875,40.5897585273438],[115.507345,40.5738430000001],[115.507345,40.563843],[115.487345,40.563843],[115.462447539063,40.5762184882813],[115.437393828125,40.5639821601563],[115.419346953125,40.5996511054688],[115.365343046875,40.6080348945313],[115.357345,40.6238430000001],[115.36312625,40.6385512519531],[115.357642851563,40.6756777167969],[115.450572539063,40.6909438300782]]]]}},{"type":"Feature","properties":{"name":"宣化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.127345,40.5738430000001],[115.115152617188,40.5772658515625],[115.123922148438,40.5860353828125],[115.127345,40.5738430000001]]],[[[115.127345,40.5738430000001],[115.132896757813,40.5782900214844],[115.146236601563,40.6399489570313],[115.123287382813,40.637094953125],[115.067603789063,40.6816298652344],[115.02013796875,40.663384015625],[114.992896757813,40.6793959785157],[114.967345,40.683843],[114.983365507813,40.7190224433594],[114.951256132813,40.7587490058594],[114.963155546875,40.7784743476563],[114.957345,40.813843],[114.991593046875,40.8214675117187],[115.073604765625,40.8131081367188],[115.102345,40.8295705390625],[115.121881132813,40.8183803535156],[115.142808867188,40.8093056464844],[115.175621367188,40.790512921875],[115.28642703125,40.8018068671875],[115.342808867188,40.7893056464844],[115.371514921875,40.7728639960938],[115.427345,40.793843],[115.450806914063,40.7884792304688],[115.438980742188,40.7540419746094],[115.483624296875,40.7301210761719],[115.487345,40.683843],[115.47220828125,40.6778932929688],[115.450572539063,40.6909438300782],[115.357642851563,40.6756777167969],[115.36312625,40.6385512519531],[115.357345,40.6238430000001],[115.332486601563,40.6296034980469],[115.298590117188,40.6245937324219],[115.26298953125,40.5981996894531],[115.23673953125,40.5874550605469],[115.21978640625,40.5899599433594],[115.193922148438,40.5564504218751],[115.130367460938,40.5084804511719],[115.173272734375,40.4994264960938],[115.167345,40.473843],[115.16170046875,40.4694863105469],[115.15298953125,40.4581996894531],[115.13170046875,40.4494863105469],[115.12298953125,40.4281996894532],[115.111529570313,40.4193544746094],[115.11312625,40.4085512519531],[115.099053984375,40.37274925],[115.06216921875,40.4000942207032],[115.05298953125,40.3881996894532],[115.04170046875,40.3794863105469],[115.025553007813,40.3585634589844],[114.956236601563,40.3487099433594],[114.94298953125,40.3217653632813],[114.978448515625,40.3072524238281],[114.956549101563,40.2709487128906],[114.925303984375,40.2468288398438],[114.95298953125,40.2094863105469],[114.967345,40.173843],[114.916256132813,40.1654506660157],[114.88404421875,40.1848818183594],[114.817642851563,40.1558632636719],[114.797345,40.1638430000001],[114.806304960938,40.183843],[114.787047148438,40.2268325019532],[114.793902617188,40.248843],[114.790787382813,40.258843],[114.794151640625,40.2696486640626],[114.781158476563,40.2776552558594],[114.7706653125,40.3084474921875],[114.776202421875,40.3262282539063],[114.758424101563,40.351548078125],[114.711158476563,40.3676552558594],[114.707345,40.373843],[114.700123320313,40.4203908515626],[114.73271609375,40.4484706855469],[114.74197390625,40.4592153144531],[114.753526640625,40.4691664863282],[114.7519153125,40.4891896796875],[114.801754179688,40.5114284492188],[114.779664335938,40.5304616523438],[114.786280546875,40.6128273750001],[114.77173953125,40.6388869453126],[114.793116484375,40.6690358710938],[114.77197390625,40.6784706855469],[114.767345,40.703843],[114.787345,40.703843],[114.7941028125,40.6940529609375],[114.830191679688,40.6859633613281],[114.84142703125,40.7297585273438],[114.847345,40.7338430000001],[114.872174101563,40.7284279609376],[114.883170195313,40.72931175],[114.95271609375,40.6892153144531],[114.957345,40.683843],[114.952535429688,40.6786525703125],[114.932154570313,40.6690334296875],[114.922535429688,40.6500514960938],[115.072535429688,40.5690334296876],[115.1032825,40.547874982422],[115.127345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"阳原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.711158476563,40.3676552558594],[114.758424101563,40.351548078125],[114.776202421875,40.3262282539063],[114.7706653125,40.3084474921875],[114.781158476563,40.2776552558594],[114.794151640625,40.2696486640626],[114.790787382813,40.258843],[114.793902617188,40.248843],[114.787047148438,40.2268325019532],[114.806304960938,40.183843],[114.797345,40.1638430000001],[114.76298953125,40.1894863105469],[114.706143828125,40.1981996894532],[114.672735625,40.1780458808594],[114.651256132813,40.1812209296876],[114.65375125,40.1643361640625],[114.673297148438,40.1492507148438],[114.65888796875,40.0998427558594],[114.61521609375,40.0876796699219],[114.566007109375,40.0949513984375],[114.550811796875,40.0403774238282],[114.4960559375,40.0251308417969],[114.465928984375,39.9860964179688],[114.403975859375,39.9952516914063],[114.388316679688,40.0155409980469],[114.338170195313,39.9852931953125],[114.322916289063,39.9480202460938],[114.312203398438,39.9496034980469],[114.243546171875,39.9336940742187],[114.232345,39.961059796875],[114.197594023438,39.9559242988281],[114.207345,39.913843],[114.172659941406,39.8981825996094],[114.157345,39.9000868964844],[114.142127714844,39.8981935859375],[114.058648710938,39.9220314765625],[114.037345,39.913843],[114.015892363281,39.9888747382813],[113.91343875,40.006704328125],[113.902899199219,40.0168532539063],[113.948065214844,40.0297670722657],[113.97490359375,40.0632802558594],[113.968792753906,40.1123940253906],[114.007962675781,40.1075221992188],[114.038219023438,40.0577077460938],[114.069534941406,40.0616030097657],[114.099210234375,40.0986586738282],[114.081790800781,40.1282900214844],[114.077345,40.143843],[114.061207304688,40.1792848945313],[114.096175566406,40.1935964179687],[114.130101347656,40.1731325507813],[114.174783964844,40.19069846875],[114.192345,40.1881044746094],[114.218138457031,40.1919155097656],[114.247738066406,40.2302626777344],[114.282464628906,40.2251308417969],[114.33170046875,40.2394863105469],[114.41298953125,40.2481996894532],[114.470035429688,40.2614174628906],[114.49170046875,40.2894863105469],[114.511656523438,40.3048891425782],[114.527345,40.3438430000001],[114.601832304688,40.3600893378906],[114.622584257813,40.3584218574219],[114.65197390625,40.3692153144532],[114.707345,40.373843],[114.711158476563,40.3676552558594]]]]}},{"type":"Feature","properties":{"name":"张北县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.927345,41.503843],[114.937393828125,41.4839821601563],[114.970045195313,41.4999282050781],[114.936910429688,41.5381996894532],[114.95298953125,41.529486310547],[114.963883085938,41.5153749824219],[115.025738554688,41.524516828125],[115.085499296875,41.5070925117188],[115.102345,41.5095815253907],[115.137345,41.50440940625],[115.188800078125,41.5120131660157],[115.21170046875,41.4981996894532],[115.2676575,41.4863906074219],[115.28170046875,41.4681996894532],[115.30427859375,41.4507741523438],[115.32170046875,41.4281996894532],[115.387183867188,41.409964826172],[115.4160559375,41.3725551582031],[115.439127226563,41.3547499824219],[115.454298125,41.3161598945313],[115.447345,41.273843],[115.427642851563,41.2396706367187],[115.407345,41.2380397773437],[115.374586210938,41.2406716132813],[115.345460234375,41.2244228339844],[115.323228789063,41.2502284980469],[115.165440703125,41.2360134101563],[115.126046171875,41.2639443183594],[115.11271609375,41.2484706855469],[115.04533328125,41.2331630683594],[115.025660429688,41.1979042792969],[115.061783476563,41.2008071113282],[115.063267851563,41.1823281074219],[115.04271609375,41.1584706855469],[115.03197390625,41.1492153144532],[115.022667265625,41.1384157539063],[115.009429960938,41.1394789863281],[114.98271609375,41.1084706855469],[114.97197390625,41.0992153144531],[114.957042265625,41.0496218085938],[114.932345,41.0476381660156],[114.9122278125,41.0492543769532],[114.839049101563,41.0379018378907],[114.814361601563,41.0398867011719],[114.786768828125,41.0161171699219],[114.809722929688,40.9894753242188],[114.84197390625,40.9750844550781],[114.83271609375,40.9684706855469],[114.807345,40.9638430000001],[114.797345,40.9638430000001],[114.79298953125,40.9794863105469],[114.77853640625,41.0034487128907],[114.668468046875,41.0221462226563],[114.609610625,40.999009015625],[114.53170046875,40.9894863105469],[114.48298953125,40.9581996894532],[114.437345,40.9538430000001],[114.423082304688,40.9716518378907],[114.392899199219,40.9893959785157],[114.355291777344,41.0001479316407],[114.344053984375,41.0904958320313],[114.371790800781,41.087046125],[114.362899199219,41.0993959785157],[114.35134890625,41.1086440253907],[114.371109648438,41.1422597480469],[114.30443484375,41.182759015625],[114.271431914063,41.2389028144532],[114.311790800781,41.2941542792969],[114.289776640625,41.3352175117187],[114.251790800781,41.3582900214844],[114.238450957031,41.3749489570313],[114.220535917969,41.3892958808594],[114.223741484375,41.4150783515625],[114.202899199219,41.4493959785157],[114.180887480469,41.4586708808594],[114.194154082031,41.4692958808594],[114.191441679688,41.4911074042969],[114.207345,41.503843],[114.227345,41.513843],[114.242537871094,41.5082631660156],[114.257818632813,41.5259987617188],[114.31271609375,41.5384706855469],[114.360482207031,41.5758791328125],[114.470885039063,41.4845571113282],[114.523590117188,41.4233791328125],[114.55197390625,41.4392153144532],[114.61271609375,41.4484706855469],[114.673424101563,41.4707643867188],[114.722345,41.4668337226563],[114.81451296875,41.4742397285157],[114.837345,41.513843],[114.87298953125,41.5094863105469],[114.88297,41.4965541816407],[114.927345,41.503843]]]]}},{"type":"Feature","properties":{"name":"涿鹿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.209254179688,40.4700478339844],[115.231998320313,40.4371047187501],[115.25142703125,40.4497585273438],[115.277345,40.453843],[115.282896757813,40.4493959785156],[115.323092070313,40.3922145820313],[115.423546171875,40.3634926582031],[115.42021609375,40.3367116523438],[115.442345,40.3394643378907],[115.452345,40.3382216621094],[115.481353789063,40.3418288398438],[115.484156523438,40.3192958808594],[115.46552859375,40.3043788886719],[115.440074492188,40.2454128242188],[115.461793242188,40.2182900214844],[115.473023710938,40.2092958808594],[115.468204375,40.1705397773438],[115.481793242188,40.1382900214844],[115.500850859375,40.1058705878907],[115.502984648438,40.0886818671875],[115.497345,40.063843],[115.478912382813,40.0408242011719],[115.450982695313,40.0290554023438],[115.421793242188,39.9793959785156],[115.417345,39.943843],[115.41142703125,39.9397585273438],[115.40326296875,39.9179274726563],[115.391124296875,39.8992897773438],[115.393648710938,39.8880275703126],[115.36142703125,39.8797585273438],[115.35326296875,39.8579274726563],[115.34142703125,39.8397585273438],[115.329312773438,39.8073732734375],[115.333638945313,39.7880690742188],[115.31142703125,39.7797585273438],[115.267789335938,39.7433632636719],[115.23142703125,39.7297585273438],[115.219176054688,39.7120119453125],[115.171041289063,39.6996584296875],[115.173468046875,39.688843],[115.169332304688,39.6704079414063],[115.122623320313,39.6900258613282],[115.111676054688,39.6875722480469],[115.10326296875,39.6997585273438],[115.0370715625,39.7079274726562],[115.02326296875,39.6879274726563],[115.017345,39.683843],[115.01271609375,39.6992153144531],[114.9969934375,39.7273940253906],[115.02482546875,39.7934755683594],[115.0030090625,39.8528774238282],[115.032926054688,39.8786501289062],[115.021807890625,39.9089199042969],[115.037628203125,39.9372768378906],[115.0627746875,39.9484963203125],[115.06064578125,39.9750063300782],[115.03529421875,40.0204457832032],[115.000748320313,40.1039748359376],[115.003526640625,40.1385195136719],[114.98123171875,40.1577272773438],[114.967345,40.173843],[114.95298953125,40.2094863105469],[114.925303984375,40.2468288398438],[114.956549101563,40.2709487128906],[114.978448515625,40.3072524238281],[114.94298953125,40.3217653632813],[114.956236601563,40.3487099433594],[115.025553007813,40.3585634589844],[115.04170046875,40.3794863105469],[115.05298953125,40.3881996894532],[115.06216921875,40.4000942207032],[115.099053984375,40.37274925],[115.11312625,40.4085512519531],[115.111529570313,40.4193544746094],[115.12298953125,40.4281996894532],[115.13170046875,40.4494863105469],[115.15298953125,40.4581996894531],[115.16170046875,40.4694863105469],[115.167345,40.473843],[115.215103789063,40.4961428046876],[115.209254179688,40.4700478339844]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鹰手营子矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.66326296875,40.5697585273438],[117.675694609375,40.5517482734375],[117.727261992188,40.5633071113282],[117.761226835938,40.5194826484375],[117.71142703125,40.5097585273438],[117.69326296875,40.4979274726563],[117.657667265625,40.4887929511719],[117.647345,40.473843],[117.6201965625,40.4808107734376],[117.583463164063,40.5282033515625],[117.63365359375,40.5380043769532],[117.624703398438,40.5779274726563],[117.66326296875,40.5697585273438]]],[[[117.847345,40.6238430000001],[117.847345,40.6138430000001],[117.867345,40.6138430000001],[117.885142851563,40.5618386054688],[117.83224734375,40.5489430976563],[117.794288359375,40.5359511542969],[117.762789335938,40.5970973945313],[117.82244265625,40.6087429023438],[117.847345,40.6238430000001]]]]}},{"type":"Feature","properties":{"name":"双桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.872178984375,41.0823928046875],[117.884820585938,41.0369924140625],[117.909874296875,41.0406948066406],[117.96298953125,41.0294863105469],[117.99170046875,41.0081996894532],[118.015401640625,40.9984987617188],[118.06093875,40.9633498359376],[118.065611601563,40.9317372871094],[118.04154421875,40.8992726875],[118.044303007813,40.8805873847657],[117.988975859375,40.8689113593751],[117.969425078125,40.8435842109375],[117.922345,40.836626203125],[117.887515898438,40.8417726875001],[117.867345,40.833843],[117.833326445313,40.8631508613281],[117.86271609375,40.8884706855469],[117.867345,40.893843],[117.901285429688,40.8804994941407],[117.87170046875,40.9481996894531],[117.86298953125,40.9794863105469],[117.845758085938,41.0233144355469],[117.857345,41.093843],[117.872178984375,41.0823928046875]]]]}},{"type":"Feature","properties":{"name":"围场满族蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,42.0638430000001],[118.159537382813,42.0604201484375],[118.150767851563,42.0516506171876],[118.147345,42.0638430000001]]],[[[118.147345,42.0638430000001],[118.14142703125,42.0597585273438],[118.13326296875,42.0479274726563],[118.106641875,42.0379677558594],[118.1706653125,42.0236147285157],[118.21326296875,42.0479274726563],[118.224547148438,42.0918996406251],[118.257345,42.083843],[118.26271609375,42.0792153144532],[118.27197390625,42.0684706855469],[118.29197390625,42.0512404609375],[118.27271609375,42.0284706855469],[118.241099882813,42.0086696601563],[118.301451445313,41.9949587226563],[118.302745390625,41.978843],[118.301944609375,41.968843],[118.303389921875,41.9508571601562],[118.29271609375,41.9384706855469],[118.25611453125,41.9221388984375],[118.311685820313,41.8873329902344],[118.3327746875,41.8691664863281],[118.331944609375,41.858843],[118.33281375,41.8480165839844],[118.287642851563,41.7696706367188],[118.247345,41.7664321113281],[118.227691679688,41.8104775214844],[118.197345,41.8080397773437],[118.153844023438,41.8115346503906],[118.133287382813,41.7555605292969],[118.131163359375,41.7291664863282],[118.15025515625,41.7127223945313],[118.157345,41.673843],[118.15197390625,41.6692153144531],[118.133961210938,41.6483107734375],[118.113902617188,41.6499233222657],[118.0812121875,41.6379189277344],[118.084210234375,41.6006252265625],[118.04634890625,41.5792153144532],[118.053565703125,41.6690224433594],[118.01197390625,41.6784706855469],[117.991363554688,41.6899697089844],[117.962345,41.6876381660157],[117.932345,41.6900478339844],[117.886900664063,41.6863967109375],[117.829390898438,41.7106142402344],[117.792345,41.7076381660157],[117.762667265625,41.7100221992188],[117.743961210938,41.6883107734375],[117.732345,41.6892446113282],[117.687345,41.6856288886719],[117.627095976563,41.6904701972657],[117.64271609375,41.7184706855469],[117.65197390625,41.7408217597657],[117.597491484375,41.7364443183594],[117.56271609375,41.7492153144531],[117.53197390625,41.7584706855469],[117.522345,41.7800478339844],[117.492345,41.7776381660156],[117.461241484375,41.7801369453125],[117.4627746875,41.7991970039063],[117.43197390625,41.8084706855469],[117.408136015625,41.836137921875],[117.292345,41.8268337226563],[117.255484648438,41.8297963691407],[117.196988554688,41.7839858222657],[117.13197390625,41.7692153144532],[117.091202421875,41.7580568671875],[117.092764921875,41.7386049628906],[117.081925078125,41.7090810371094],[117.083526640625,41.6891664863282],[117.064508085938,41.6727858710938],[117.04345828125,41.7199587226563],[117.02197390625,41.7384706855469],[117.01271609375,41.7492153144531],[116.99197390625,41.7584706855469],[116.963912382813,41.7741274238282],[116.951651640625,41.8015993476563],[116.912345,41.7984413886719],[116.89562625,41.7997841621094],[116.84271609375,41.8192153144532],[116.807345,41.823843],[116.798238554688,41.8455251289063],[116.803468046875,41.8688430000001],[116.79896609375,41.8889150214845],[116.755513945313,41.9189150214844],[116.73142703125,41.9279274726563],[116.71326296875,41.9397585273438],[116.697345,41.943843],[116.701881132813,41.9493056464844],[116.722808867188,41.9583803535156],[116.753111601563,41.9948598457032],[116.783531523438,41.9774355292969],[116.808062773438,41.9799355292969],[116.841881132813,41.9993056464845],[116.873448515625,42.0129958320313],[116.8718371875,42.0288430000001],[116.873873320313,42.048843],[116.871803007813,42.069165265625],[116.886436796875,42.0947182441406],[116.84345828125,42.1490224433594],[116.805357695313,42.1655471015625],[116.782808867188,42.2037575507813],[116.852174101563,42.18831565625],[116.872345,42.1903713203126],[116.897345,42.1878237128907],[116.914815703125,42.1896047187501],[116.9118371875,42.2188430000001],[116.912896757813,42.229233625],[116.899918242188,42.2400136542969],[116.904527617188,42.28526878125],[116.878824492188,42.3455580878907],[116.887345,42.383843],[116.914893828125,42.4013686347657],[116.961793242188,42.4193959785156],[116.992896757813,42.4282900214844],[117.009381132813,42.4488747382813],[117.057628203125,42.4593129707032],[117.092154570313,42.4796083808594],[117.132125273438,42.4681935859376],[117.142345,42.4694643378907],[117.174996367188,42.4654042792969],[117.26250125,42.4795095039063],[117.332935820313,42.4593959785156],[117.411793242188,42.4710927558594],[117.402896757813,42.5093959785157],[117.38361453125,42.52483909375],[117.433472929688,42.5647670722657],[117.43138796875,42.5815248847657],[117.464888945313,42.6012160468751],[117.522725859375,42.5880776191407],[117.538912382813,42.6082900214844],[117.592896757813,42.5993959785157],[117.662935820313,42.5793959785156],[117.73611453125,42.5956825996094],[117.771793242188,42.6093959785156],[117.797345,42.613843],[117.790787382813,42.5849733710938],[117.835714140625,42.5576845527344],[117.871793242188,42.4982900214844],[117.926539335938,42.4673378730469],[117.95767703125,42.4284511542969],[118.020064726563,42.4021620917969],[118.023013945313,42.3784828925781],[118.002896757813,42.3442665839844],[118.016002226563,42.3207302070313],[118.0615246875,42.301548078125],[118.039097929688,42.2735439277344],[117.962896757813,42.2414345527344],[118.001793242188,42.2182900214844],[118.022896757813,42.2093959785157],[118.031793242188,42.1982900214844],[118.109517851563,42.1695546699219],[118.082896757813,42.1242665839844],[118.092935820313,42.106235578125],[118.153785429688,42.0805947089844],[118.147345,42.0638430000001]]]]}},{"type":"Feature","properties":{"name":"承德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.350128203125,41.358843],[118.353082304688,41.3388430000001],[118.350562773438,41.3217897773438],[118.397345,41.313843],[118.41170046875,41.2881996894531],[118.433595,41.2586684394532],[118.40791140625,41.238843],[118.44093875,41.2133498359375],[118.443082304688,41.198843],[118.439957304688,41.1776723457031],[118.47170046875,41.1250429511719],[118.46298953125,41.1081996894532],[118.406456328125,41.0924562812501],[118.38170046875,41.0294863105469],[118.37298953125,40.9981996894532],[118.353604765625,40.9832387519531],[118.404459257813,40.9690773750001],[118.370167265625,40.9485695625001],[118.37314578125,40.9284133125001],[118.35154421875,40.8992726875],[118.353082304688,40.8888430000001],[118.347388945313,40.8503139472656],[118.37369265625,40.8464272285157],[118.44298953125,40.8581996894532],[118.454127226563,40.8854116035157],[118.490767851563,40.8908266425782],[118.51170046875,40.8781996894532],[118.56170046875,40.8642763496094],[118.55298953125,40.8381996894531],[118.53154421875,40.8092726875],[118.533082304688,40.798843],[118.531607695313,40.788843],[118.53373171875,40.7744509101563],[118.52298953125,40.7481996894531],[118.51170046875,40.7394863105469],[118.49427859375,40.7169118476563],[118.477345,40.703843],[118.392530546875,40.6977126289063],[118.332628203125,40.6485622382813],[118.300396757813,40.6280654121094],[118.282345,40.6291408515626],[118.258687773438,40.6277309394532],[118.237345,40.603843],[118.221793242188,40.6082900214844],[118.192896757813,40.6193959785157],[118.157105742188,40.6296291328126],[118.198414335938,40.6627077460938],[118.145479765625,40.6561232734375],[118.122896757813,40.6693959785156],[118.01978640625,40.6844033027344],[118.02302859375,40.658344953125],[118.001793242188,40.6493959785157],[117.982896757813,40.6382900214844],[117.941793242188,40.6293959785156],[117.912896757813,40.6182900214844],[117.867345,40.6138430000001],[117.847345,40.6138430000001],[117.847345,40.6238430000001],[117.852896757813,40.6282900214844],[117.863775664063,40.6663283515626],[117.850460234375,40.7129616523437],[117.784049101563,40.7047011542969],[117.762896757813,40.6782900214844],[117.725543242188,40.6625490546875],[117.672237578125,40.6177346015625],[117.651983671875,40.6430226875],[117.592896757813,40.6082900214844],[117.541793242188,40.5893959785156],[117.522896757813,40.5782900214844],[117.492896757813,40.5772206855469],[117.525245390625,40.6215016914063],[117.497345,40.643843],[117.507345,40.663843],[117.519674101563,40.6938430000001],[117.497296171875,40.7482949042969],[117.504971953125,40.7871425605469],[117.539386015625,40.8004152656251],[117.566138945313,40.7951296210938],[117.601519804688,40.8096681953125],[117.6528528125,40.8180178046875],[117.705303984375,40.7964638496094],[117.762345,40.8077358222657],[117.812345,40.7978554511719],[117.8463684375,40.8045790839844],[117.867345,40.833843],[117.887515898438,40.8417726875001],[117.922345,40.836626203125],[117.969425078125,40.8435842109375],[117.988975859375,40.8689113593751],[118.044303007813,40.8805873847657],[118.04154421875,40.8992726875],[118.065611601563,40.9317372871094],[118.06093875,40.9633498359376],[118.015401640625,40.9984987617188],[117.99170046875,41.0081996894532],[117.96298953125,41.0294863105469],[117.909874296875,41.0406948066406],[117.884820585938,41.0369924140625],[117.872178984375,41.0823928046875],[117.857345,41.093843],[117.853985625,41.110483625],[117.829888945313,41.1588405585938],[117.837345,41.173843],[117.919288359375,41.1657851386719],[117.962345,41.1692446113281],[117.980328398438,41.1677992988281],[117.996553984375,41.1817775703125],[118.0027746875,41.2591664863281],[117.981173125,41.2777773261719],[117.992769804688,41.2985646796875],[117.991539335938,41.313843],[117.993951445313,41.3438430000001],[117.9919153125,41.3691664863281],[118.00271609375,41.3784706855469],[118.0173840625,41.3954958320313],[118.051485625,41.4145229316407],[118.052745390625,41.398843],[118.050719023438,41.3736208320313],[118.105391875,41.3535439277344],[118.12271609375,41.368470685547],[118.147095976563,41.4073964667969],[118.202574492188,41.4467324042969],[118.267345,41.463843],[118.311051054688,41.4564174628907],[118.353765898438,41.4234499335938],[118.350865507813,41.403843],[118.353824492188,41.3838430000001],[118.350128203125,41.358843]]]]}},{"type":"Feature","properties":{"name":"丰宁满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.40759890625,41.9872817207032],[116.396944609375,41.9397585273438],[116.45326296875,41.9479274726563],[116.49236453125,41.9805373359375],[116.546510039063,41.9335134101562],[116.577345,41.9266017890626],[116.607345,41.9333266425781],[116.632789335938,41.927622296875],[116.65142703125,41.9397585273438],[116.697345,41.943843],[116.71326296875,41.9397585273438],[116.73142703125,41.9279274726563],[116.755513945313,41.9189150214844],[116.79896609375,41.8889150214845],[116.803468046875,41.8688430000001],[116.798238554688,41.8455251289063],[116.807345,41.823843],[116.811793242188,41.8182900214844],[116.847999296875,41.7892958808594],[116.841676054688,41.7384828925782],[116.853013945313,41.7192031074219],[116.84978640625,41.6932802558594],[116.861793242188,41.6782900214844],[116.87736453125,41.6658180976563],[116.893258085938,41.6387831855469],[116.871676054688,41.6092348457031],[116.873531523438,41.5943019843751],[116.809078398438,41.5578615546875],[116.883897734375,41.5263332343751],[116.880054960938,41.4954482246094],[116.912652617188,41.4995034003907],[116.964234648438,41.4772353339844],[117.002896757813,41.4882900214844],[117.024254179688,41.5008425117187],[117.102896757813,41.4893959785157],[117.131793242188,41.4682900214844],[117.152896757813,41.4593959785157],[117.165426054688,41.4296669746094],[117.201793242188,41.4082900214844],[117.222896757813,41.3993959785156],[117.231793242188,41.3882900214844],[117.24736453125,41.3758180976563],[117.262896757813,41.3493959785156],[117.271793242188,41.3282900214844],[117.282896757813,41.3093959785157],[117.291793242188,41.2882900214844],[117.313258085938,41.2589028144532],[117.292935820313,41.2243263984375],[117.337843046875,41.1682460761719],[117.371793242188,41.1482900214844],[117.387345,41.143843],[117.393204375,41.1289382148438],[117.381573515625,41.0890541816406],[117.383170195313,41.0782497382813],[117.35170046875,41.0694863105469],[117.312789335938,41.0380385566407],[117.302345,41.0395815253907],[117.283922148438,41.0368593574219],[117.248546171875,41.0581996894531],[117.211822539063,41.0326015449219],[117.19298953125,41.0081996894532],[117.150982695313,40.9830751777344],[117.154537382813,40.9590041328125],[117.102803984375,40.9206471992188],[117.042345,40.9295815253907],[117.032345,40.9281044746094],[116.992345,40.9340151191407],[116.935889921875,40.9256728339844],[116.900767851563,40.9468593574219],[116.852345,40.9540151191406],[116.806485625,40.9472377753907],[116.76298953125,40.9794863105469],[116.697345,41.013843],[116.680499296875,41.0425014472656],[116.611363554688,41.0586525703125],[116.612891875,41.0200930000001],[116.60033328125,40.9690334296875],[116.562428007813,40.9890908027344],[116.509288359375,40.9779726386719],[116.482345,40.9790407539062],[116.472345,40.9786452460938],[116.453345976563,40.9793984199219],[116.442535429688,40.9760951972657],[116.46978640625,40.8983498359376],[116.452345,40.8990407539063],[116.437345,40.8984462714844],[116.399483671875,40.8999477363281],[116.367725859375,40.934223859375],[116.357345,40.943843],[116.337589140625,40.9781081367188],[116.29197390625,40.988470685547],[116.28271609375,41.0092153144532],[116.27197390625,41.0184706855469],[116.257457304688,41.0353224921875],[116.283629179688,41.0578713203125],[116.281612578125,41.0829335761719],[116.231710234375,41.1259291816406],[116.234176054688,41.1566030097657],[116.221217070313,41.1798232246094],[116.223492460938,41.2081215644532],[116.18310671875,41.2650771308594],[116.202764921875,41.3186049628906],[116.201768828125,41.3310182929688],[116.138648710938,41.3705544257813],[116.112105742188,41.3684218574219],[116.05373171875,41.3898598457031],[116.037345,41.3838430000001],[116.0325403125,41.4121120429688],[116.01170046875,41.4281996894532],[116.00162234375,41.4528212714844],[115.98170046875,41.4681996894532],[115.9652746875,41.5460439277344],[115.94298953125,41.5594863105469],[115.921519804688,41.5682729316406],[115.92310671875,41.5789858222657],[115.908585234375,41.6416432929688],[115.9686340625,41.6775551582031],[116.01170046875,41.7094863105469],[116.049244414063,41.7319411445313],[116.07170046875,41.7694863105469],[116.077345,41.773843],[116.105826445313,41.7811513496094],[116.125474882813,41.8113259101563],[116.09326296875,41.8335671210938],[116.10177859375,41.8504506660156],[116.131900664063,41.8700637031251],[116.177867460938,41.8597585273438],[116.204566679688,41.8739284492188],[116.200338164063,41.8928041816407],[116.227799101563,41.9409157539063],[116.29091921875,41.9645339179687],[116.31677859375,42.0019911933594],[116.363487578125,42.0124611640625],[116.40759890625,41.9872817207032]]]]}},{"type":"Feature","properties":{"name":"宽城满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.207345,40.5738430000001],[118.203922148438,40.5616506171876],[118.195152617188,40.5704201484375],[118.207345,40.5738430000001]]],[[[118.207345,40.5738430000001],[118.214918242188,40.5888137031251],[118.248116484375,40.59839378125],[118.237345,40.603843],[118.258687773438,40.6277309394532],[118.282345,40.6291408515626],[118.300396757813,40.6280654121094],[118.332628203125,40.6485622382813],[118.392530546875,40.6977126289063],[118.477345,40.703843],[118.4991028125,40.6803591132813],[118.542530546875,40.678637921875],[118.55240359375,40.69956565625],[118.632535429688,40.7186525703125],[118.65912234375,40.732719953125],[118.672281523438,40.7185170722657],[118.697076445313,40.7316384101563],[118.752535429688,40.6990334296875],[118.766402617188,40.6840688300782],[118.897345,40.753843],[118.937125273438,40.7470851875],[118.980113554688,40.6913893867188],[119.002345,40.6881044746094],[119.027086210938,40.6917604804688],[119.04298953125,40.6794863105469],[119.052857695313,40.6667018867188],[119.077345,40.6703212714844],[119.10013796875,40.6669533515626],[119.170308867188,40.6976186347657],[119.174400664063,40.6699440742188],[119.141358671875,40.6290651679688],[119.147345,40.6138430000001],[119.141881132813,40.6093056464844],[119.114464140625,40.6065102363282],[119.082345,40.5881154609375],[119.05814578125,40.6019753242188],[118.962745390625,40.5612990546876],[118.950650664063,40.5334096503906],[118.884215117188,40.540180890625],[118.84834109375,40.5267031074219],[118.822345,40.5293520332031],[118.7995715625,40.5270314765625],[118.782808867188,40.4883803535157],[118.764332304688,40.4730348945313],[118.697345,40.4798622871094],[118.679107695313,40.47800315625],[118.655045195313,40.4490370917969],[118.607965117188,40.4352211738282],[118.622808867188,40.4093056464844],[118.631881132813,40.3883803535157],[118.643116484375,40.3687685371094],[118.596636992188,40.3100405097656],[118.571881132813,40.2993056464844],[118.567345,40.283843],[118.551793242188,40.2882900214844],[118.542896757813,40.2993959785157],[118.529405546875,40.3102016425782],[118.534830351563,40.3538210273438],[118.553023710938,40.3683901191406],[118.550650664063,40.38745628125],[118.56334109375,40.4090419746094],[118.546763945313,40.4223171210938],[118.513970976563,40.4030434394532],[118.404581328125,40.4166493964845],[118.38095828125,40.4305361152344],[118.362345,40.4282216621094],[118.327222929688,40.4325893378906],[118.3024621875,40.418032453125],[118.267139921875,40.4316091132812],[118.24416140625,40.4603066230469],[118.212896757813,40.4482900214844],[118.187345,40.443843],[118.181929960938,40.4686708808594],[118.184561796875,40.5014455390626],[118.251754179688,40.5314284492188],[118.2319153125,40.5485195136719],[118.2333215625,40.5660219550782],[118.207345,40.5738430000001]]]]}},{"type":"Feature","properties":{"name":"隆化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.408136015625,41.836137921875],[117.43197390625,41.8084706855469],[117.4627746875,41.7991970039063],[117.461241484375,41.7801369453125],[117.492345,41.7776381660156],[117.522345,41.7800478339844],[117.53197390625,41.7584706855469],[117.56271609375,41.7492153144531],[117.597491484375,41.7364443183594],[117.65197390625,41.7408217597657],[117.64271609375,41.7184706855469],[117.627095976563,41.6904701972657],[117.687345,41.6856288886719],[117.732345,41.6892446113282],[117.743961210938,41.6883107734375],[117.762667265625,41.7100221992188],[117.792345,41.7076381660157],[117.829390898438,41.7106142402344],[117.886900664063,41.6863967109375],[117.932345,41.6900478339844],[117.962345,41.6876381660157],[117.991363554688,41.6899697089844],[118.01197390625,41.6784706855469],[118.053565703125,41.6690224433594],[118.04634890625,41.5792153144532],[118.084210234375,41.6006252265625],[118.0812121875,41.6379189277344],[118.113902617188,41.6499233222657],[118.133961210938,41.6483107734375],[118.15197390625,41.6692153144531],[118.157345,41.673843],[118.174761992188,41.6689931464844],[118.213160429688,41.6393544746094],[118.2085559375,41.6081874824219],[118.23170046875,41.5781996894532],[118.27298953125,41.5694863105469],[118.281846953125,41.5580117011719],[118.317345,41.5638430000001],[118.300826445313,41.5388503242188],[118.321358671875,41.5073256660157],[118.275513945313,41.4756740546875],[118.267345,41.463843],[118.202574492188,41.4467324042969],[118.147095976563,41.4073964667969],[118.12271609375,41.368470685547],[118.105391875,41.3535439277344],[118.050719023438,41.3736208320313],[118.052745390625,41.398843],[118.051485625,41.4145229316407],[118.0173840625,41.3954958320313],[118.00271609375,41.3784706855469],[117.9919153125,41.3691664863281],[117.993951445313,41.3438430000001],[117.991539335938,41.313843],[117.992769804688,41.2985646796875],[117.981173125,41.2777773261719],[118.0027746875,41.2591664863281],[117.996553984375,41.1817775703125],[117.980328398438,41.1677992988281],[117.962345,41.1692446113281],[117.919288359375,41.1657851386719],[117.837345,41.173843],[117.8325403125,41.19108909375],[117.812310820313,41.1880995917969],[117.777345,41.1938430000001],[117.733062773438,41.2112514472656],[117.72298953125,41.1981996894532],[117.670660429688,41.1794863105469],[117.577857695313,41.1932009101563],[117.551954375,41.1775759101563],[117.540811796875,41.2048085761719],[117.50170046875,41.2281996894532],[117.49298953125,41.2494863105469],[117.443272734375,41.2633303046875],[117.43298953125,41.2381996894532],[117.40170046875,41.1994863105469],[117.387345,41.143843],[117.371793242188,41.1482900214844],[117.337843046875,41.1682460761719],[117.292935820313,41.2243263984375],[117.313258085938,41.2589028144532],[117.291793242188,41.2882900214844],[117.282896757813,41.3093959785157],[117.271793242188,41.3282900214844],[117.262896757813,41.3493959785156],[117.24736453125,41.3758180976563],[117.231793242188,41.3882900214844],[117.222896757813,41.3993959785156],[117.201793242188,41.4082900214844],[117.165426054688,41.4296669746094],[117.152896757813,41.4593959785157],[117.131793242188,41.4682900214844],[117.102896757813,41.4893959785157],[117.024254179688,41.5008425117187],[117.002896757813,41.4882900214844],[116.964234648438,41.4772353339844],[116.912652617188,41.4995034003907],[116.880054960938,41.4954482246094],[116.883897734375,41.5263332343751],[116.809078398438,41.5578615546875],[116.873531523438,41.5943019843751],[116.871676054688,41.6092348457031],[116.893258085938,41.6387831855469],[116.87736453125,41.6658180976563],[116.861793242188,41.6782900214844],[116.84978640625,41.6932802558594],[116.853013945313,41.7192031074219],[116.841676054688,41.7384828925782],[116.847999296875,41.7892958808594],[116.811793242188,41.8182900214844],[116.807345,41.823843],[116.84271609375,41.8192153144532],[116.89562625,41.7997841621094],[116.912345,41.7984413886719],[116.951651640625,41.8015993476563],[116.963912382813,41.7741274238282],[116.99197390625,41.7584706855469],[117.01271609375,41.7492153144531],[117.02197390625,41.7384706855469],[117.04345828125,41.7199587226563],[117.064508085938,41.6727858710938],[117.083526640625,41.6891664863282],[117.081925078125,41.7090810371094],[117.092764921875,41.7386049628906],[117.091202421875,41.7580568671875],[117.13197390625,41.7692153144532],[117.196988554688,41.7839858222657],[117.255484648438,41.8297963691407],[117.292345,41.8268337226563],[117.408136015625,41.836137921875]]]]}},{"type":"Feature","properties":{"name":"滦平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.540811796875,41.2048085761719],[117.551954375,41.1775759101563],[117.577857695313,41.1932009101563],[117.670660429688,41.1794863105469],[117.72298953125,41.1981996894532],[117.733062773438,41.2112514472656],[117.777345,41.1938430000001],[117.77271609375,41.1484706855469],[117.761929960938,41.0990151191406],[117.763951445313,41.0738430000001],[117.761920195313,41.048540265625],[117.80197390625,40.9973952460938],[117.774307890625,40.9702053046875],[117.732345,40.9668337226562],[117.692838164063,40.9700087714844],[117.691666289063,40.9553810859375],[117.727100859375,40.9356093574219],[117.794527617188,40.9410268378906],[117.76615359375,40.9010109687501],[117.81216921875,40.8884169746094],[117.867345,40.893843],[117.86271609375,40.8884706855469],[117.833326445313,40.8631508613281],[117.867345,40.833843],[117.8463684375,40.8045790839844],[117.812345,40.7978554511719],[117.762345,40.8077358222657],[117.705303984375,40.7964638496094],[117.6528528125,40.8180178046875],[117.601519804688,40.8096681953125],[117.566138945313,40.7951296210938],[117.539386015625,40.8004152656251],[117.504971953125,40.7871425605469],[117.497296171875,40.7482949042969],[117.519674101563,40.6938430000001],[117.507345,40.663843],[117.501793242188,40.6682900214844],[117.410640898438,40.6829848457031],[117.361119414063,40.6768239570313],[117.298331328125,40.65269065625],[117.252706328125,40.6795095039063],[117.234508085938,40.6772463203125],[117.202896757813,40.6893959785157],[117.122369414063,40.6994680000001],[117.112345,40.6982216621094],[117.087345,40.7013307929687],[117.062345,40.6982216621094],[117.052345,40.6994643378907],[117.017345,40.6951113105469],[116.96736453125,40.7013283515626],[116.952896757813,40.7193959785157],[116.941793242188,40.7282900214844],[116.932896757813,40.7393959785156],[116.921793242188,40.7482900214844],[116.912896757813,40.7693959785157],[116.891793242188,40.7782900214844],[116.882896757813,40.7893959785156],[116.877345,40.793843],[116.869464140625,40.8245522285157],[116.83326296875,40.8397585273438],[116.80142703125,40.8479274726563],[116.75326296875,40.8897585273438],[116.714508085938,40.8997035957032],[116.70326296875,40.9297585273438],[116.67326296875,40.9684670234375],[116.682413359375,41.0035353828125],[116.697345,41.013843],[116.76298953125,40.9794863105469],[116.806485625,40.9472377753907],[116.852345,40.9540151191406],[116.900767851563,40.9468593574219],[116.935889921875,40.9256728339844],[116.992345,40.9340151191407],[117.032345,40.9281044746094],[117.042345,40.9295815253907],[117.102803984375,40.9206471992188],[117.154537382813,40.9590041328125],[117.150982695313,40.9830751777344],[117.19298953125,41.0081996894532],[117.211822539063,41.0326015449219],[117.248546171875,41.0581996894531],[117.283922148438,41.0368593574219],[117.302345,41.0395815253907],[117.312789335938,41.0380385566407],[117.35170046875,41.0694863105469],[117.383170195313,41.0782497382813],[117.381573515625,41.0890541816406],[117.393204375,41.1289382148438],[117.387345,41.143843],[117.40170046875,41.1994863105469],[117.43298953125,41.2381996894532],[117.443272734375,41.2633303046875],[117.49298953125,41.2494863105469],[117.50170046875,41.2281996894532],[117.540811796875,41.2048085761719]]]]}},{"type":"Feature","properties":{"name":"平泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.831671171875,41.3525746894531],[118.879249296875,41.2993251777344],[118.89250125,41.2985353828125],[118.94611453125,41.3099904609375],[119.04650515625,41.2966408515625],[119.191798125,41.2879811835938],[119.222061796875,41.3091237617188],[119.237345,41.313843],[119.243199492188,41.2761159492187],[119.21197390625,41.2492153144531],[119.20271609375,41.2284706855469],[119.162730742188,41.2164321113282],[119.191080351563,41.1920095039063],[119.12271609375,41.1384706855469],[119.08197390625,41.1292153144532],[119.068834257813,41.0713735175781],[119.017345,41.0672365546876],[118.956920195313,41.0720912910156],[118.92271609375,41.0426247382813],[118.953819609375,41.01694846875],[119.02197390625,40.9964284492188],[118.98404421875,40.9601845527344],[118.952345,40.9576381660157],[118.903038359375,40.9615993476563],[118.89271609375,40.9384706855469],[118.881920195313,40.9191213203126],[118.884766875,40.8836782050782],[118.86271609375,40.8484706855469],[118.842955351563,40.8314455390625],[118.841158476563,40.8090566230469],[118.891632109375,40.7728115058594],[118.897345,40.753843],[118.766402617188,40.6840688300782],[118.752535429688,40.6990334296875],[118.697076445313,40.7316384101563],[118.672281523438,40.7185170722657],[118.65912234375,40.732719953125],[118.632535429688,40.7186525703125],[118.55240359375,40.69956565625],[118.542530546875,40.678637921875],[118.4991028125,40.6803591132813],[118.477345,40.703843],[118.49427859375,40.7169118476563],[118.51170046875,40.7394863105469],[118.52298953125,40.7481996894531],[118.53373171875,40.7744509101563],[118.531607695313,40.788843],[118.533082304688,40.798843],[118.53154421875,40.8092726875],[118.55298953125,40.8381996894531],[118.56170046875,40.8642763496094],[118.51170046875,40.8781996894532],[118.490767851563,40.8908266425782],[118.454127226563,40.8854116035157],[118.44298953125,40.8581996894532],[118.37369265625,40.8464272285157],[118.347388945313,40.8503139472656],[118.353082304688,40.8888430000001],[118.35154421875,40.8992726875],[118.37314578125,40.9284133125001],[118.370167265625,40.9485695625001],[118.404459257813,40.9690773750001],[118.353604765625,40.9832387519531],[118.37298953125,40.9981996894532],[118.38170046875,41.0294863105469],[118.406456328125,41.0924562812501],[118.46298953125,41.1081996894532],[118.47170046875,41.1250429511719],[118.439957304688,41.1776723457031],[118.443082304688,41.198843],[118.44093875,41.2133498359375],[118.40791140625,41.238843],[118.433595,41.2586684394532],[118.41170046875,41.2881996894531],[118.397345,41.313843],[118.402628203125,41.3185622382813],[118.417511015625,41.3352223945313],[118.52533328125,41.3495595527344],[118.542345,41.3485451484375],[118.567345,41.3500356269532],[118.622345,41.3467568183595],[118.662554960938,41.3491530585938],[118.734752226563,41.3191237617188],[118.752628203125,41.3285622382812],[118.777921171875,41.3568740058594],[118.833111601563,41.3766762519531],[118.831671171875,41.3525746894531]]]]}},{"type":"Feature","properties":{"name":"双滦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.777345,41.1938430000001],[117.812310820313,41.1880995917969],[117.8325403125,41.19108909375],[117.837345,41.173843],[117.829888945313,41.1588405585938],[117.853985625,41.110483625],[117.857345,41.093843],[117.845758085938,41.0233144355469],[117.86298953125,40.9794863105469],[117.87170046875,40.9481996894531],[117.901285429688,40.8804994941407],[117.867345,40.893843],[117.81216921875,40.8884169746094],[117.76615359375,40.9010109687501],[117.794527617188,40.9410268378906],[117.727100859375,40.9356093574219],[117.691666289063,40.9553810859375],[117.692838164063,40.9700087714844],[117.732345,40.9668337226562],[117.774307890625,40.9702053046875],[117.80197390625,40.9973952460938],[117.761920195313,41.048540265625],[117.763951445313,41.0738430000001],[117.761929960938,41.0990151191406],[117.77271609375,41.1484706855469],[117.777345,41.1938430000001]]]]}},{"type":"Feature","properties":{"name":"兴隆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.207345,40.5738430000001],[118.195152617188,40.5704201484375],[118.203922148438,40.5616506171876],[118.2333215625,40.5660219550782],[118.2319153125,40.5485195136719],[118.251754179688,40.5314284492188],[118.184561796875,40.5014455390626],[118.181929960938,40.4686708808594],[118.187345,40.443843],[118.179771757813,40.428872296875],[118.150704375,40.420483625],[118.143985625,40.387202375],[118.130704375,40.380483625],[118.117345,40.3538430000001],[118.071793242188,40.3493959785157],[118.061632109375,40.3252834296876],[118.032095976563,40.3016310859375],[117.953917265625,40.2880251289062],[117.942345,40.2894643378907],[117.906261015625,40.2849770332031],[117.892799101563,40.2681642890625],[117.882271757813,40.2694741035157],[117.812418242188,40.2582118964844],[117.801983671875,40.2595095039063],[117.782896757813,40.2482900214844],[117.761793242188,40.2393959785157],[117.742686796875,40.2281642890625],[117.661851835938,40.2395436835938],[117.646783476563,40.2037795234376],[117.567345,40.1938430000001],[117.56156375,40.2085512519532],[117.563160429688,40.2193544746094],[117.547086210938,40.2317604804688],[117.507515898438,40.2259133125],[117.439625273438,40.252602765625],[117.396436796875,40.2356240058594],[117.387345,40.223843],[117.3423840625,40.2353823066406],[117.324664335938,40.2827260566406],[117.292345,40.2754799628906],[117.28326296875,40.2997585273438],[117.27142703125,40.3079274726563],[117.26326296875,40.3297585273438],[117.236475859375,40.3708901191406],[117.221676054688,40.3675722480469],[117.217345,40.373843],[117.231793242188,40.4093959785156],[117.254327421875,40.4402443671876],[117.231793242188,40.4582900214844],[117.212896757813,40.4893959785157],[117.192999296875,40.5053298164063],[117.253472929688,40.5184145332031],[117.241676054688,40.5384828925781],[117.243448515625,40.5527150703125],[117.340284453125,40.5804018378907],[117.376954375,40.5663063789063],[117.402345,40.5694643378907],[117.415582304688,40.5678188300782],[117.411099882813,40.603843],[117.414410429688,40.6304518867188],[117.434610625,40.6279396796875],[117.452144804688,40.6498378730469],[117.486143828125,40.6298537421875],[117.497345,40.643843],[117.525245390625,40.6215016914063],[117.492896757813,40.5772206855469],[117.522896757813,40.5782900214844],[117.541793242188,40.5893959785156],[117.592896757813,40.6082900214844],[117.651983671875,40.6430226875],[117.672237578125,40.6177346015625],[117.725543242188,40.6625490546875],[117.762896757813,40.6782900214844],[117.784049101563,40.7047011542969],[117.850460234375,40.7129616523437],[117.863775664063,40.6663283515626],[117.852896757813,40.6282900214844],[117.847345,40.6238430000001],[117.82244265625,40.6087429023438],[117.762789335938,40.5970973945313],[117.794288359375,40.5359511542969],[117.83224734375,40.5489430976563],[117.885142851563,40.5618386054688],[117.867345,40.6138430000001],[117.912896757813,40.6182900214844],[117.941793242188,40.6293959785156],[117.982896757813,40.6382900214844],[118.001793242188,40.6493959785157],[118.02302859375,40.658344953125],[118.01978640625,40.6844033027344],[118.122896757813,40.6693959785156],[118.145479765625,40.6561232734375],[118.198414335938,40.6627077460938],[118.157105742188,40.6296291328126],[118.192896757813,40.6193959785157],[118.221793242188,40.6082900214844],[118.237345,40.603843],[118.248116484375,40.59839378125],[118.214918242188,40.5888137031251],[118.207345,40.5738430000001]],[[117.761226835938,40.5194826484375],[117.727261992188,40.5633071113282],[117.675694609375,40.5517482734375],[117.66326296875,40.5697585273438],[117.624703398438,40.5779274726563],[117.63365359375,40.5380043769532],[117.583463164063,40.5282033515625],[117.6201965625,40.4808107734376],[117.647345,40.473843],[117.657667265625,40.4887929511719],[117.69326296875,40.4979274726563],[117.71142703125,40.5097585273438],[117.761226835938,40.5194826484375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"泊头市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.652823515625,38.219702375],[116.662081328125,38.2077053046875],[116.71478640625,38.18698753125],[116.741832304688,38.1909841132813],[116.747345,38.1838430000001],[116.74267703125,38.1770839667969],[116.695094023438,38.1460964179688],[116.649176054688,38.1289150214844],[116.61970828125,38.1085707832031],[116.6601965625,38.0934206367188],[116.663746367188,38.0775966621094],[116.643013945313,38.0475722480469],[116.632345,38.0499636054688],[116.622345,38.0477223945313],[116.59435671875,38.0539968085938],[116.583013945313,38.0375722480469],[116.5526184375,38.0443862128907],[116.547345,38.0238430000001],[116.51595828125,38.0171376777344],[116.482345,38.0191408515625],[116.472345,38.0185451484376],[116.46209109375,38.0191555],[116.45255984375,38.0084865546876],[116.3768371875,38.020005109375],[116.337564726563,38.0176638007813],[116.30259890625,37.9785305000001],[116.292120390625,37.9791542792969],[116.272628203125,37.9685622382813],[116.227154570313,37.9545204902344],[116.172174101563,37.9692458320313],[116.161539335938,37.9573464179688],[116.163804960938,37.9193691230469],[116.087345,37.9138430000001],[116.104093046875,37.9391847968751],[116.09142703125,37.9479274726563],[116.07326296875,37.9797585273438],[116.057345,37.9838430000001],[116.049893828125,37.9988283515626],[116.054976835938,38.0092348457032],[116.038585234375,38.0298720527344],[116.068116484375,38.03839378125],[116.050704375,38.0472023750001],[116.047345,38.0638430000001],[116.062808867188,38.0683803535156],[116.100616484375,38.0825868964844],[116.14275515625,38.0782912421875],[116.163487578125,38.1119106269531],[116.212633085938,38.0981703925781],[116.223604765625,38.1113784003907],[116.265455351563,38.1295290351562],[116.281881132813,38.1493056464844],[116.292896757813,38.158452375],[116.2884778125,38.2017848945313],[116.317891875,38.1849379707031],[116.438741484375,38.2016347480469],[116.477652617188,38.1793495917969],[116.497345,38.2138430000001],[116.51298953125,38.2094863105469],[116.528424101563,38.1894863105469],[116.56298953125,38.1981996894531],[116.581954375,38.2096401191406],[116.592428007813,38.2080922675782],[116.652823515625,38.219702375]]]]}},{"type":"Feature","properties":{"name":"沧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.111846953125,38.4813491035156],[117.078619414063,38.4344838691407],[117.103780546875,38.3893862128907],[117.080738554688,38.3695351386719],[117.0980871875,38.3545864082032],[117.119722929688,38.3294753242187],[117.143551054688,38.318843],[117.141944609375,38.298843],[117.142764921875,38.2886403632813],[117.13185671875,38.2487892890625],[117.137345,38.233843],[117.109874296875,38.2148744941407],[117.1178528125,38.1792653632813],[117.14326296875,38.1697585273438],[117.15142703125,38.1609841132813],[117.12142703125,38.1497585273438],[117.086246367188,38.1268471503907],[117.072198515625,38.1299965644531],[117.025382109375,38.1154860664063],[117.017345,38.1038430000001],[117.002623320313,38.0976601386719],[116.992198515625,38.0999965644532],[116.945245390625,38.0854433417969],[116.906246367188,38.1108388496095],[116.8726184375,38.1032997871094],[116.86326296875,38.1397585273438],[116.834620390625,38.1504738593751],[116.80435671875,38.1436891914063],[116.785694609375,38.1707155585938],[116.771890898438,38.1676210761719],[116.747345,38.1838430000001],[116.741832304688,38.1909841132813],[116.71478640625,38.18698753125],[116.662081328125,38.2077053046875],[116.652823515625,38.219702375],[116.592428007813,38.2080922675782],[116.581954375,38.2096401191406],[116.56298953125,38.1981996894531],[116.528424101563,38.1894863105469],[116.51298953125,38.2094863105469],[116.497345,38.2138430000001],[116.49281375,38.2568679023438],[116.461158476563,38.2676552558594],[116.457345,38.313843],[116.461158476563,38.3300307441406],[116.493531523438,38.3476552558594],[116.511383085938,38.4006996894532],[116.537315703125,38.392622296875],[116.572261992188,38.4209242988282],[116.5959778125,38.4042714667969],[116.617345,38.413843],[116.643170195313,38.4096681953125],[116.66177859375,38.3837050605469],[116.733170195313,38.3980178046876],[116.75216921875,38.4100795722656],[116.782345,38.3976784492188],[116.817345,38.4120619941406],[116.837345,38.4038430000001],[116.78154421875,38.3292739082031],[116.783140898438,38.318452375],[116.771549101563,38.299233625],[116.773160429688,38.2883315253907],[116.760611601563,38.2786452460938],[116.783424101563,38.2693080878906],[116.770621367188,38.2367397285157],[116.77220828125,38.2094863105469],[116.821900664063,38.2496474433594],[116.842711210938,38.2465724921876],[116.847345,38.273843],[116.857345,38.273843],[116.857345,38.283843],[116.874215117188,38.2721938300782],[116.8710559375,38.2580861640626],[116.890714140625,38.2497585273438],[116.93267703125,38.2770839667969],[116.944503203125,38.2942116523438],[116.941221953125,38.308843],[116.947496367188,38.3368325019532],[116.93142703125,38.3479274726563],[116.92326296875,38.3597585273438],[116.90088015625,38.3679274726563],[116.867345,38.353843],[116.861690703125,38.358716046875],[116.887345,38.4038430000001],[116.89166140625,38.4946303535157],[116.938619414063,38.4749062324219],[116.96142703125,38.4897585273438],[117.01326296875,38.5079274726563],[117.02142703125,38.5197585273438],[117.05326296875,38.5279274726562],[117.077345,38.543843],[117.08271609375,38.5292153144532],[117.09197390625,38.4984706855469],[117.111846953125,38.4813491035156]]]]}},{"type":"Feature","properties":{"name":"东光县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,37.843843],[116.842843046875,37.8353688789063],[116.815343046875,37.8415334296875],[116.758053007813,37.8155666328125],[116.74326296875,37.7579274726563],[116.697345,37.733843],[116.689869414063,37.7606935859375],[116.655889921875,37.7556728339844],[116.632345,37.7698744941406],[116.605636015625,37.7537624335938],[116.56298953125,37.7794863105469],[116.496954375,37.7907045722657],[116.467345,37.783843],[116.467345,37.813843],[116.47312625,37.8285512519532],[116.471607695313,37.8388430000001],[116.473082304688,37.848843],[116.471519804688,37.8594130683594],[116.496324492188,37.8695644355469],[116.532003203125,37.915786359375],[116.552877226563,37.9667983222657],[116.557345,38.0238430000001],[116.653077421875,38.0298110175782],[116.672061796875,38.0085622382813],[116.682628203125,37.9991237617188],[116.69435671875,37.9859963203125],[116.823961210938,37.9657997871094],[116.8426575,37.949095685547],[116.84146609375,37.9290956855469],[116.8537903125,37.9180849433594],[116.8520325,37.8885817695313],[116.885714140625,37.8671620917969],[116.877345,37.843843]]]]}},{"type":"Feature","properties":{"name":"海兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.807764921875,38.2392055488281],[117.791519804688,38.1996681953125],[117.783170195313,38.1680178046876],[117.761217070313,38.1595510078126],[117.765675078125,38.1369826484375],[117.735694609375,38.115493390625],[117.705445585938,38.0732900214844],[117.672340117188,38.0798317695313],[117.612349882813,38.0678542304688],[117.581456328125,38.0739589667969],[117.5507434375,38.0519448066406],[117.55341921875,38.0384096503907],[117.541519804688,38.0196681953125],[117.537345,38.003843],[117.522789335938,37.9948732734375],[117.503531523438,37.9376552558594],[117.497345,37.933843],[117.491676054688,37.942055890625],[117.455650664063,37.93397971875],[117.464136992188,37.9718349433594],[117.40142703125,37.9879274726563],[117.39326296875,38.0097585273438],[117.365235625,38.0202455878906],[117.384283476563,38.0494960761719],[117.35142703125,38.0579274726563],[117.340186796875,38.0742116523438],[117.345225859375,38.0966884589844],[117.317345,38.1038430000001],[117.320704375,38.1204836250001],[117.34287234375,38.1316994453125],[117.347345,38.153843],[117.352896757813,38.1582900214844],[117.361793242188,38.1793959785157],[117.373013945313,38.1984828925782],[117.370582304688,38.218001935547],[117.412345,38.2231960273438],[117.491275664063,38.2133791328126],[117.562183867188,38.2294850898438],[117.577486601563,38.2275820136719],[117.60302859375,38.2383449531251],[117.601085234375,38.2539833808594],[117.615538359375,38.2882900214844],[117.719429960938,38.2745729804688],[117.761793242188,38.2582900214844],[117.787345,38.2538430000001],[117.807764921875,38.2392055488281]]]]}},{"type":"Feature","properties":{"name":"河间市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.451519804688,38.5764479804688],[116.443170195313,38.5580178046875],[116.423394804688,38.543843],[116.443170195313,38.5296681953126],[116.457393828125,38.4927846503907],[116.5132825,38.4817409492188],[116.55088015625,38.5056093574219],[116.561519804688,38.4780178046875],[116.587345,38.473843],[116.5933996875,38.4608486152344],[116.621612578125,38.4770217109376],[116.639620390625,38.453559796875],[116.620523710938,38.4306642890625],[116.617345,38.413843],[116.5959778125,38.4042714667969],[116.572261992188,38.4209242988282],[116.537315703125,38.392622296875],[116.511383085938,38.4006996894532],[116.493531523438,38.3476552558594],[116.461158476563,38.3300307441406],[116.457345,38.313843],[116.44197390625,38.3184706855469],[116.429522734375,38.3598220039063],[116.392345,38.3568337226563],[116.333961210938,38.3615248847656],[116.318668242188,38.3437734199219],[116.192056914063,38.3794008613282],[116.18271609375,38.3584706855469],[116.17197390625,38.3492153144532],[116.162667265625,38.3384157539063],[116.141510039063,38.3401149726563],[116.102535429688,38.3183693671876],[116.017345,38.3338430000001],[116.021881132813,38.3493056464844],[116.032896757813,38.358452375],[116.030069609375,38.3861440253907],[116.043233671875,38.4091213203125],[116.0132434375,38.4221279121094],[116.033365507813,38.4388430000001],[116.021881132813,38.4483803535156],[116.010621367188,38.474349591797],[115.91713015625,38.4910097480469],[115.932808867188,38.5183803535157],[115.937345,38.533843],[115.928819609375,38.5541469550782],[115.957345,38.573843],[115.973975859375,38.5497585273438],[116.00326296875,38.5579274726563],[116.032623320313,38.5806825996094],[116.041998320313,38.56710471875],[116.069581328125,38.5850673652345],[116.102345,38.5777223945312],[116.112345,38.5799636054688],[116.157867460938,38.5697585273438],[116.173585234375,38.5883107734375],[116.169537382813,38.6063637519532],[116.20142703125,38.6197585273438],[116.23326296875,38.6279274726563],[116.24201296875,38.6406020332032],[116.279097929688,38.6647524238282],[116.317672148438,38.6733998847657],[116.34142703125,38.6579274726563],[116.357345,38.653843],[116.380074492188,38.6124318671876],[116.413170195313,38.5996681953125],[116.421519804688,38.5880178046876],[116.451519804688,38.5764479804688]]]]}},{"type":"Feature","properties":{"name":"黄骅市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.887345,38.313843],[117.890767851563,38.3260353828125],[117.899537382813,38.3172658515626],[117.887345,38.313843]]],[[[117.887345,38.313843],[117.883985625,38.307202375],[117.857423125,38.293764875],[117.847345,38.273843],[117.839693632813,38.2604201484375],[117.799693632813,38.2754970527344],[117.787345,38.2538430000001],[117.761793242188,38.2582900214844],[117.719429960938,38.2745729804688],[117.615538359375,38.2882900214844],[117.601085234375,38.2539833808594],[117.60302859375,38.2383449531251],[117.577486601563,38.2275820136719],[117.562183867188,38.2294850898438],[117.491275664063,38.2133791328126],[117.412345,38.2231960273438],[117.370582304688,38.218001935547],[117.373013945313,38.1984828925782],[117.361793242188,38.1793959785157],[117.352896757813,38.1582900214844],[117.347345,38.153843],[117.307642851563,38.1603652167969],[117.292027617188,38.1580568671876],[117.242662382813,38.1796291328125],[117.203487578125,38.1738393378906],[117.192095976563,38.2016664863281],[117.15170046875,38.2181996894532],[117.14298953125,38.2294863105469],[117.137345,38.233843],[117.13185671875,38.2487892890625],[117.142764921875,38.2886403632813],[117.141944609375,38.298843],[117.143551054688,38.318843],[117.119722929688,38.3294753242187],[117.0980871875,38.3545864082032],[117.080738554688,38.3695351386719],[117.103780546875,38.3893862128907],[117.078619414063,38.4344838691407],[117.111846953125,38.4813491035156],[117.09197390625,38.4984706855469],[117.08271609375,38.5292153144532],[117.077345,38.543843],[117.08298953125,38.5481996894531],[117.097345,38.583843],[117.11326296875,38.5879274726563],[117.14267703125,38.6070839667969],[117.147345,38.613843],[117.183170195313,38.6180178046876],[117.220518828125,38.6465407539063],[117.231519804688,38.6180178046876],[117.245186796875,38.6082228828126],[117.235875273438,38.561108625],[117.259386015625,38.5564638496094],[117.29279421875,38.5701918769532],[117.302115507813,38.5571865058594],[117.343170195313,38.5680178046875],[117.357345,38.5877956367188],[117.374132109375,38.5643727851562],[117.393170195313,38.5780178046875],[117.40314578125,38.5919350410157],[117.48187625,38.6158522773438],[117.529386015625,38.6064638496094],[117.547345,38.613843],[117.567896757813,38.5954811835938],[117.622061796875,38.4985622382813],[117.642628203125,38.4691237617188],[117.687784453125,38.3981179023438],[117.735714140625,38.3444777656251],[117.828048125,38.3060732246094],[117.860240507813,38.3235683417969],[117.887345,38.313843]]]]}},{"type":"Feature","properties":{"name":"孟村回族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.192095976563,38.2016664863281],[117.203487578125,38.1738393378906],[117.242662382813,38.1796291328125],[117.292027617188,38.1580568671876],[117.307642851563,38.1603652167969],[117.347345,38.153843],[117.34287234375,38.1316994453125],[117.320704375,38.1204836250001],[117.317345,38.1038430000001],[117.291519804688,38.1080178046875],[117.248580351563,38.1210622382813],[117.232345,38.1178554511719],[117.219386015625,38.120415265625],[117.1805871875,38.1054506660157],[117.143526640625,38.0470754218751],[117.171724882813,38.0077321601563],[117.187613554688,38.0108718085938],[117.205943632813,37.95054221875],[117.153780546875,37.9402346015625],[117.123170195313,37.9596681953126],[117.061519804688,37.9680178046875],[117.053170195313,37.9796681953125],[117.027345,37.993843],[117.03312625,38.0085512519531],[117.030865507813,38.0238430000001],[117.03314578125,38.0392726875],[117.011529570313,38.06843284375],[117.017345,38.1038430000001],[117.025382109375,38.1154860664063],[117.072198515625,38.1299965644531],[117.086246367188,38.1268471503907],[117.12142703125,38.1497585273438],[117.15142703125,38.1609841132813],[117.14326296875,38.1697585273438],[117.1178528125,38.1792653632813],[117.109874296875,38.2148744941407],[117.137345,38.233843],[117.14298953125,38.2294863105469],[117.15170046875,38.2181996894532],[117.192095976563,38.2016664863281]]]]}},{"type":"Feature","properties":{"name":"南皮县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.747345,38.1838430000001],[116.771890898438,38.1676210761719],[116.785694609375,38.1707155585938],[116.80435671875,38.1436891914063],[116.834620390625,38.1504738593751],[116.86326296875,38.1397585273438],[116.8726184375,38.1032997871094],[116.906246367188,38.1108388496095],[116.945245390625,38.0854433417969],[116.992198515625,38.0999965644532],[117.002623320313,38.0976601386719],[117.017345,38.1038430000001],[117.011529570313,38.06843284375],[117.03314578125,38.0392726875],[117.030865507813,38.0238430000001],[117.03312625,38.0085512519531],[117.027345,37.993843],[116.99791140625,37.9711244941407],[117.02744265625,37.9483315253906],[117.021607695313,37.9088430000001],[117.024561796875,37.888843],[117.0216028125,37.8688088203126],[117.027345,37.8338430000001],[116.96281375,37.8401894355469],[116.957345,37.8338430000001],[116.947345,37.8338430000001],[116.947345,37.843843],[116.937345,37.843843],[116.877345,37.843843],[116.885714140625,37.8671620917969],[116.8520325,37.8885817695313],[116.8537903125,37.9180849433594],[116.84146609375,37.9290956855469],[116.8426575,37.949095685547],[116.823961210938,37.9657997871094],[116.69435671875,37.9859963203125],[116.682628203125,37.9991237617188],[116.672061796875,38.0085622382813],[116.653077421875,38.0298110175782],[116.557345,38.0238430000001],[116.547345,38.0238430000001],[116.5526184375,38.0443862128907],[116.583013945313,38.0375722480469],[116.59435671875,38.0539968085938],[116.622345,38.0477223945313],[116.632345,38.0499636054688],[116.643013945313,38.0475722480469],[116.663746367188,38.0775966621094],[116.6601965625,38.0934206367188],[116.61970828125,38.1085707832031],[116.649176054688,38.1289150214844],[116.695094023438,38.1460964179688],[116.74267703125,38.1770839667969],[116.747345,38.1838430000001]]]]}},{"type":"Feature","properties":{"name":"青县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.8740246875,38.6829872871094],[116.912628203125,38.6781862617188],[116.946763945313,38.6913075996094],[117.030987578125,38.7017836738282],[117.041793242188,38.6882900214844],[117.054156523438,38.6783901191407],[117.048980742188,38.6367787910157],[117.071793242188,38.6082900214844],[117.082896757813,38.5993959785157],[117.091793242188,38.5882900214844],[117.097345,38.583843],[117.08298953125,38.5481996894531],[117.077345,38.543843],[117.05326296875,38.5279274726562],[117.02142703125,38.5197585273438],[117.01326296875,38.5079274726563],[116.96142703125,38.4897585273438],[116.938619414063,38.4749062324219],[116.89166140625,38.4946303535157],[116.887345,38.4038430000001],[116.855797148438,38.4115920234376],[116.837345,38.4038430000001],[116.817345,38.4120619941406],[116.782345,38.3976784492188],[116.75216921875,38.4100795722656],[116.733170195313,38.3980178046876],[116.66177859375,38.3837050605469],[116.643170195313,38.4096681953125],[116.617345,38.413843],[116.620523710938,38.4306642890625],[116.639620390625,38.453559796875],[116.621612578125,38.4770217109376],[116.5933996875,38.4608486152344],[116.587345,38.473843],[116.59197390625,38.4792153144531],[116.6080871875,38.4930995917969],[116.622667265625,38.5100221992188],[116.643961210938,38.5083107734375],[116.667232695313,38.5353224921876],[116.640347929688,38.5584889960938],[116.6627746875,38.5684963203125],[116.661163359375,38.5885195136719],[116.67271609375,38.5984706855469],[116.68197390625,38.6092153144532],[116.72271609375,38.6184706855469],[116.74197390625,38.6292153144531],[116.77752078125,38.6450771308594],[116.7619153125,38.6585195136719],[116.762745390625,38.6688430000001],[116.761944609375,38.6788430000001],[116.762750273438,38.6888808417969],[116.757345,38.7438430000001],[116.864273710938,38.7393386054688],[116.861085234375,38.7137026191407],[116.8740246875,38.6829872871094]]]]}},{"type":"Feature","properties":{"name":"任丘市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.197345,38.923843],[116.201881132813,38.8783803535156],[116.24302859375,38.8605361152344],[116.241793242188,38.8484194160157],[116.262808867188,38.8393056464844],[116.271881132813,38.8183803535157],[116.334068632813,38.8091176582031],[116.405455351563,38.7781569648438],[116.421881132813,38.7583803535156],[116.427345,38.7538430000001],[116.423985625,38.717202375],[116.361373320313,38.685805890625],[116.357345,38.653843],[116.34142703125,38.6579274726563],[116.317672148438,38.6733998847657],[116.279097929688,38.6647524238282],[116.24201296875,38.6406020332032],[116.23326296875,38.6279274726563],[116.20142703125,38.6197585273438],[116.169537382813,38.6063637519532],[116.173585234375,38.5883107734375],[116.157867460938,38.5697585273438],[116.112345,38.5799636054688],[116.102345,38.5777223945312],[116.069581328125,38.5850673652345],[116.041998320313,38.56710471875],[116.032623320313,38.5806825996094],[116.00326296875,38.5579274726563],[115.973975859375,38.5497585273438],[115.957345,38.573843],[115.95052859375,38.6283864570313],[115.967803984375,38.6422182441407],[115.951695585938,38.6986257148438],[115.953013945313,38.7092031074219],[115.941612578125,38.7285976386719],[115.947345,38.7538430000001],[115.970787382813,38.7598586250001],[116.003082304688,38.8066347480469],[116.033638945313,38.8180690742188],[116.03119265625,38.828989484375],[116.04349734375,38.868696515625],[116.037686796875,38.8946169257813],[116.083814726563,38.9118764472657],[116.110191679688,38.9059633613282],[116.117345,38.933843],[116.155733671875,38.9432729316407],[116.197345,38.923843]]]]}},{"type":"Feature","properties":{"name":"肃宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.937345,38.533843],[115.932808867188,38.5183803535157],[115.91713015625,38.4910097480469],[116.010621367188,38.474349591797],[116.021881132813,38.4483803535156],[116.033365507813,38.4388430000001],[116.0132434375,38.4221279121094],[116.043233671875,38.4091213203125],[116.030069609375,38.3861440253907],[116.032896757813,38.358452375],[116.021881132813,38.3493056464844],[116.017345,38.3338430000001],[116.00978640625,38.3240492988281],[115.955220976563,38.3321120429687],[115.874342070313,38.2717458320313],[115.86298953125,38.2994863105469],[115.847345,38.303843],[115.832896757813,38.3393959785156],[115.76259890625,38.3594960761719],[115.751890898438,38.3581642890625],[115.742545195313,38.3698378730469],[115.722589140625,38.3581081367187],[115.697345,38.3638430000001],[115.7060559375,38.3751308417969],[115.725675078125,38.3902724433594],[115.709014921875,38.4474135566406],[115.7286340625,38.4625551582032],[115.74170046875,38.4794863105469],[115.77298953125,38.4881996894532],[115.78170046875,38.5094863105469],[115.817345,38.5238430000001],[115.860094023438,38.5133425117188],[115.873013945313,38.5320558906251],[115.902843046875,38.5253688789063],[115.937345,38.533843]]],[[[115.853922148438,38.5360353828126],[115.857345,38.5238430000001],[115.845152617188,38.5272658515625],[115.853922148438,38.5360353828126]]]]}},{"type":"Feature","properties":{"name":"吴桥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.56298953125,37.7794863105469],[116.605636015625,37.7537624335938],[116.632345,37.7698744941406],[116.655889921875,37.7556728339844],[116.689869414063,37.7606935859375],[116.697345,37.733843],[116.671793242188,37.7193959785157],[116.662896757813,37.6982900214844],[116.610709257813,37.6330336738281],[116.5601575,37.6023281074219],[116.532896757813,37.5682900214844],[116.516236601563,37.5549489570313],[116.507345,37.543843],[116.444464140625,37.5043508125],[116.428678007813,37.4699648261719],[116.397906523438,37.5044057441407],[116.372515898438,37.5270912910156],[116.362628203125,37.5591237617188],[116.340260039063,37.569389875],[116.327345,37.583843],[116.3335559375,37.6061537910157],[116.365953398438,37.6194130683594],[116.361529570313,37.6493544746094],[116.37298953125,37.6581996894532],[116.38170046875,37.6894863105469],[116.410894804688,37.7288661933594],[116.423160429688,37.7383315253907],[116.421519804688,37.7494130683595],[116.449659453125,37.7609291816407],[116.467345,37.783843],[116.496954375,37.7907045722657],[116.56298953125,37.7794863105469]]]]}},{"type":"Feature","properties":{"name":"献县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.192056914063,38.3794008613282],[116.318668242188,38.3437734199219],[116.333961210938,38.3615248847656],[116.392345,38.3568337226563],[116.429522734375,38.3598220039063],[116.44197390625,38.3184706855469],[116.457345,38.313843],[116.461158476563,38.2676552558594],[116.49281375,38.2568679023438],[116.497345,38.2138430000001],[116.477652617188,38.1793495917969],[116.438741484375,38.2016347480469],[116.317891875,38.1849379707031],[116.2884778125,38.2017848945313],[116.292896757813,38.158452375],[116.281881132813,38.1493056464844],[116.265455351563,38.1295290351562],[116.223604765625,38.1113784003907],[116.212633085938,38.0981703925781],[116.163487578125,38.1119106269531],[116.14275515625,38.0782912421875],[116.100616484375,38.0825868964844],[116.062808867188,38.0683803535156],[116.047345,38.0638430000001],[116.028189726563,38.0936659980469],[116.04298953125,38.1181996894531],[116.043863554688,38.1481996894532],[115.987345,38.1259804511719],[115.932081328125,38.1477053046875],[115.92298953125,38.1594863105469],[115.897345,38.163843],[115.88603640625,38.1698000312501],[115.90037234375,38.2017128730469],[115.861905546875,38.2219765449219],[115.853892851563,38.2603932929688],[115.839464140625,38.267993390625],[115.82541140625,38.2992714667969],[115.847345,38.303843],[115.86298953125,38.2994863105469],[115.874342070313,38.2717458320313],[115.955220976563,38.3321120429687],[116.00978640625,38.3240492988281],[116.017345,38.3338430000001],[116.102535429688,38.3183693671876],[116.141510039063,38.3401149726563],[116.162667265625,38.3384157539063],[116.17197390625,38.3492153144532],[116.18271609375,38.3584706855469],[116.192056914063,38.3794008613282]]]]}},{"type":"Feature","properties":{"name":"新华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.857345,38.283843],[116.857345,38.273843],[116.847345,38.273843],[116.847345,38.283843],[116.857345,38.283843]]],[[[116.857345,38.283843],[116.86170046875,38.3194863105469],[116.867345,38.353843],[116.90088015625,38.3679274726563],[116.92326296875,38.3597585273438],[116.93142703125,38.3479274726563],[116.947496367188,38.3368325019532],[116.941221953125,38.308843],[116.944503203125,38.2942116523438],[116.93267703125,38.2770839667969],[116.890714140625,38.2497585273438],[116.8710559375,38.2580861640626],[116.874215117188,38.2721938300782],[116.857345,38.283843]]]]}},{"type":"Feature","properties":{"name":"盐山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.248580351563,38.1210622382813],[117.291519804688,38.1080178046875],[117.317345,38.1038430000001],[117.345225859375,38.0966884589844],[117.340186796875,38.0742116523438],[117.35142703125,38.0579274726563],[117.384283476563,38.0494960761719],[117.365235625,38.0202455878906],[117.39326296875,38.0097585273438],[117.40142703125,37.9879274726563],[117.464136992188,37.9718349433594],[117.455650664063,37.93397971875],[117.491676054688,37.942055890625],[117.497345,37.933843],[117.47922,37.9213295722656],[117.424346953125,37.8398415351563],[117.316046171875,37.8664430976563],[117.307345,37.853843],[117.291881132813,37.8493056464844],[117.262608671875,37.838305890625],[117.207345,37.8439394355469],[117.152345,37.8383339667969],[117.06341921875,37.8473976875],[117.027345,37.8338430000001],[117.0216028125,37.8688088203126],[117.024561796875,37.888843],[117.021607695313,37.9088430000001],[117.02744265625,37.9483315253906],[116.99791140625,37.9711244941407],[117.027345,37.993843],[117.053170195313,37.9796681953125],[117.061519804688,37.9680178046875],[117.123170195313,37.9596681953126],[117.153780546875,37.9402346015625],[117.205943632813,37.95054221875],[117.187613554688,38.0108718085938],[117.171724882813,38.0077321601563],[117.143526640625,38.0470754218751],[117.1805871875,38.1054506660157],[117.219386015625,38.120415265625],[117.232345,38.1178554511719],[117.248580351563,38.1210622382813]]]]}},{"type":"Feature","properties":{"name":"运河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.847345,38.273843],[116.842711210938,38.2465724921876],[116.821900664063,38.2496474433594],[116.77220828125,38.2094863105469],[116.770621367188,38.2367397285157],[116.783424101563,38.2693080878906],[116.760611601563,38.2786452460938],[116.773160429688,38.2883315253907],[116.771549101563,38.299233625],[116.783140898438,38.318452375],[116.78154421875,38.3292739082031],[116.837345,38.4038430000001],[116.855797148438,38.4115920234376],[116.887345,38.4038430000001],[116.861690703125,38.358716046875],[116.867345,38.353843],[116.86170046875,38.3194863105469],[116.857345,38.283843],[116.847345,38.283843],[116.847345,38.273843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安次区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.877345,39.233843],[116.889537382813,39.2304201484376],[116.880767851563,39.2216506171876],[116.877345,39.233843]]],[[[116.877345,39.233843],[116.87197390625,39.2292153144531],[116.86271609375,39.2184706855469],[116.851905546875,39.2091567207032],[116.857345,39.153843],[116.792144804688,39.1484242988282],[116.747281523438,39.1607021308594],[116.727345,39.183843],[116.73326296875,39.1879274726563],[116.75142703125,39.2168947578125],[116.69142703125,39.2379274726563],[116.680186796875,39.2542116523438],[116.69000125,39.2980055976563],[116.669888945313,39.3628932929688],[116.676158476563,39.3908534980469],[116.65142703125,39.4079274726563],[116.628375273438,39.4413161445313],[116.604498320313,39.4359633613282],[116.597345,39.463843],[116.60849734375,39.4999660468751],[116.662042265625,39.4967751289063],[116.602628203125,39.5345644355469],[116.612125273438,39.5391542792969],[116.622345,39.5385451484376],[116.651890898438,39.5403066230469],[116.722628203125,39.4991237617188],[116.772061796875,39.4685622382813],[116.787345,39.463843],[116.792095976563,39.4458303046875],[116.812965117188,39.4499538398438],[116.822965117188,39.436001203125],[116.860455351563,39.4434096503907],[116.863453398438,39.4282228828125],[116.828521757813,39.4031850410157],[116.833453398438,39.3782228828126],[116.821236601563,39.3694631171875],[116.823331328125,39.3588430000001],[116.819678984375,39.3403578925782],[116.832633085938,39.337798078125],[116.8694934375,39.3529457832031],[116.88459109375,39.3162050605469],[116.86123171875,39.2994618964844],[116.873170195313,39.2396681953125],[116.877345,39.233843]]]]}},{"type":"Feature","properties":{"name":"霸州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.497345,39.023843],[116.493922148438,39.0116506171875],[116.485152617188,39.0204201484375],[116.497345,39.023843]]],[[[116.497345,39.023843],[116.489176054688,39.0356740546875],[116.464522734375,39.0526943183594],[116.437345,39.0466017890625],[116.422345,39.0499636054688],[116.407345,39.0466017890625],[116.376573515625,39.0534999824219],[116.35857546875,39.0054055000001],[116.327345,38.983843],[116.32326296875,38.9897585273438],[116.283829375,39.0045119453126],[116.30361453125,39.0181728339844],[116.301217070313,39.0288845039063],[116.313643828125,39.0794936347656],[116.30142703125,39.0879274726563],[116.29326296875,39.0997585273438],[116.26142703125,39.1179274726563],[116.257345,39.1338430000001],[116.283170195313,39.1380178046875],[116.293892851563,39.1915016914063],[116.312779570313,39.1877687812501],[116.3419153125,39.2062685371094],[116.352037382813,39.2203884101563],[116.372652617188,39.2072975898438],[116.377345,39.213843],[116.442452421875,39.1880275703125],[116.463897734375,39.2006349921875],[116.484776640625,39.1745632148438],[116.543609648438,39.1371340156251],[116.562706328125,39.1395095039062],[116.590982695313,39.1228871894532],[116.592965117188,39.138843],[116.5905871875,39.1579946113281],[116.672896757813,39.1682900214844],[116.690152617188,39.18983909375],[116.727345,39.183843],[116.747281523438,39.1607021308594],[116.792144804688,39.1484242988282],[116.857345,39.153843],[116.907345,39.153843],[116.907345,39.1338430000001],[116.917345,39.1338430000001],[116.913985625,39.107202375],[116.887423125,39.093764875],[116.877345,39.073843],[116.87142703125,39.0697585273437],[116.86326296875,39.0579274726563],[116.822725859375,39.0475258613282],[116.781754179688,39.0602260566406],[116.771676054688,39.0456301093751],[116.751529570313,39.0501467109375],[116.747345,39.033843],[116.722506132813,39.0282009101563],[116.695479765625,39.0315627265626],[116.658546171875,39.0098537421875],[116.642896757813,39.0293959785156],[116.629249296875,39.0403237128906],[116.612345,39.0382216621094],[116.59021609375,39.0409743476562],[116.593004179688,39.0185414863282],[116.584928007813,38.9993959785156],[116.532896757813,39.0193959785157],[116.497345,39.023843]],[[116.3351575,39.027075421875],[116.357345,39.023843],[116.354195585938,39.0454579902344],[116.3351575,39.027075421875]]]]}},{"type":"Feature","properties":{"name":"大厂回族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.002271757813,39.8922219062501],[117.022345,39.8877223945313],[117.033590117188,39.8902431464844],[117.06408328125,39.8691909003907],[117.05142703125,39.8497585273438],[117.047345,39.823843],[117.02142703125,39.8279274726563],[116.986246367188,39.8508388496094],[116.967345,39.8466017890625],[116.925694609375,39.8559377265625],[116.917345,39.843843],[116.892486601563,39.8380825019532],[116.858590117188,39.8430922675782],[116.812320585938,39.8773952460938],[116.807345,39.883843],[116.81142703125,39.8897585273438],[116.860416289063,39.8993251777344],[116.88142703125,39.9297585273438],[116.893858671875,39.9383388496094],[116.878609648438,39.9746425605469],[116.902960234375,39.9801015449219],[116.955225859375,39.9666884589844],[116.950186796875,39.9442116523438],[116.96142703125,39.9279274726563],[116.98326296875,39.9197585273438],[117.002271757813,39.8922219062501]]]]}},{"type":"Feature","properties":{"name":"大城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.675860625,38.8687233710938],[116.69189578125,38.8479457832032],[116.717345,38.853843],[116.735733671875,38.849887921875],[116.744405546875,38.8288430000001],[116.7341028125,38.803843],[116.74646609375,38.773843],[116.73990359375,38.7579213691407],[116.753804960938,38.7503029609375],[116.757345,38.7438430000001],[116.762750273438,38.6888808417969],[116.761944609375,38.6788430000001],[116.762745390625,38.6688430000001],[116.7619153125,38.6585195136719],[116.77752078125,38.6450771308594],[116.74197390625,38.6292153144531],[116.72271609375,38.6184706855469],[116.68197390625,38.6092153144532],[116.67271609375,38.5984706855469],[116.661163359375,38.5885195136719],[116.6627746875,38.5684963203125],[116.640347929688,38.5584889960938],[116.667232695313,38.5353224921876],[116.643961210938,38.5083107734375],[116.622667265625,38.5100221992188],[116.6080871875,38.4930995917969],[116.59197390625,38.4792153144531],[116.587345,38.473843],[116.561519804688,38.4780178046875],[116.55088015625,38.5056093574219],[116.5132825,38.4817409492188],[116.457393828125,38.4927846503907],[116.443170195313,38.5296681953126],[116.423394804688,38.543843],[116.443170195313,38.5580178046875],[116.451519804688,38.5764479804688],[116.421519804688,38.5880178046876],[116.413170195313,38.5996681953125],[116.380074492188,38.6124318671876],[116.357345,38.653843],[116.361373320313,38.685805890625],[116.423985625,38.717202375],[116.427345,38.7538430000001],[116.47172,38.7611318183594],[116.48978640625,38.7377260566407],[116.502345,38.7395815253906],[116.527086210938,38.7359255195313],[116.553463164063,38.7562831855469],[116.551519804688,38.7694130683594],[116.607340117188,38.7922585273438],[116.62298953125,38.8181996894532],[116.63170046875,38.8394863105469],[116.643140898438,38.858452375],[116.640225859375,38.8781996894532],[116.675860625,38.8687233710938]]]]}},{"type":"Feature","properties":{"name":"固安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.237345,39.5138430000001],[116.261793242188,39.4982900214844],[116.292896757813,39.4893959785156],[116.331793242188,39.4582900214844],[116.44005984375,39.4447475410156],[116.447345,39.453843],[116.457345,39.453843],[116.46197390625,39.4184706855469],[116.473013945313,39.3986843085938],[116.43197390625,39.3692153144532],[116.42271609375,39.3584706855469],[116.380396757813,39.3280837226563],[116.383565703125,39.28866721875],[116.377345,39.213843],[116.372652617188,39.2072975898438],[116.352037382813,39.2203884101563],[116.3419153125,39.2062685371094],[116.312779570313,39.1877687812501],[116.293892851563,39.1915016914063],[116.283170195313,39.1380178046875],[116.257345,39.1338430000001],[116.257345,39.143843],[116.207345,39.143843],[116.19271609375,39.2092153144532],[116.1818371875,39.2185890937501],[116.203004179688,39.3156362128907],[116.200523710938,39.3465016914062],[116.12197390625,39.3584706855469],[116.107345,39.3638430000001],[116.122896757813,39.3982900214844],[116.135460234375,39.4563442207032],[116.203287382813,39.5105910468751],[116.222628203125,39.5081862617188],[116.237345,39.5138430000001]]]]}},{"type":"Feature","properties":{"name":"广阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.417345,39.503843],[116.392896757813,39.5108327460938],[116.410499296875,39.5277809882813],[116.417345,39.503843]]],[[[116.417345,39.503843],[116.43298953125,39.5081996894532],[116.44170046875,39.5194863105469],[116.4731653125,39.5383034492188],[116.471519804688,39.5494130683594],[116.512095976563,39.5660195136719],[116.52170046875,39.5894863105469],[116.54298953125,39.5981996894532],[116.58013796875,39.6206081367187],[116.638736601563,39.5975710273438],[116.667174101563,39.6017726875],[116.710972929688,39.5845546699219],[116.713160429688,39.5993544746094],[116.699390898438,39.6099831367187],[116.717345,39.6238430000001],[116.75298953125,39.6094863105469],[116.779400664063,39.5935536933595],[116.79170046875,39.6094863105469],[116.807345,39.613843],[116.799698515625,39.5956410957031],[116.803580351563,39.5783376289063],[116.777379179688,39.5445326972657],[116.81361453125,39.5195131660156],[116.810103789063,39.503843],[116.814215117188,39.4854921699219],[116.79142703125,39.4697585273438],[116.787345,39.463843],[116.772061796875,39.4685622382813],[116.722628203125,39.4991237617188],[116.651890898438,39.5403066230469],[116.622345,39.5385451484376],[116.612125273438,39.5391542792969],[116.602628203125,39.5345644355469],[116.662042265625,39.4967751289063],[116.60849734375,39.4999660468751],[116.597345,39.463843],[116.548170195313,39.4719203925782],[116.512345,39.466626203125],[116.491832304688,39.4696572089844],[116.48298953125,39.4581996894531],[116.457345,39.453843],[116.447345,39.453843],[116.43334109375,39.4817702460938],[116.422345,39.47640159375],[116.407345,39.4837270332032],[116.417345,39.503843]]]]}},{"type":"Feature","properties":{"name":"三河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.183360625,40.0807558417969],[117.187345,40.063843],[117.178272734375,40.0565785957032],[117.186246367188,39.9924770332032],[117.1297278125,39.9218056464844],[117.142896757813,39.8993959785156],[117.15634890625,39.8674758125],[117.172564726563,39.8694924140626],[117.218194609375,39.8564614082031],[117.24287234375,39.8595302558594],[117.247345,39.833843],[117.19170046875,39.8294863105469],[117.157345,39.823843],[117.110704375,39.820483625],[117.103336210938,39.8059169746094],[117.082345,39.8161684394532],[117.057393828125,39.8039821601563],[117.047345,39.823843],[117.05142703125,39.8497585273438],[117.06408328125,39.8691909003907],[117.033590117188,39.8902431464844],[117.022345,39.8877223945313],[117.002271757813,39.8922219062501],[116.98326296875,39.9197585273438],[116.96142703125,39.9279274726563],[116.950186796875,39.9442116523438],[116.955225859375,39.9666884589844],[116.902960234375,39.9801015449219],[116.878609648438,39.9746425605469],[116.893858671875,39.9383388496094],[116.88142703125,39.9297585273438],[116.860416289063,39.8993251777344],[116.81142703125,39.8897585273438],[116.807345,39.883843],[116.780704375,39.887202375],[116.773985625,39.9504836250001],[116.74927859375,39.9576137519532],[116.763985625,39.9872023750001],[116.767345,40.0138430000001],[116.7720715625,40.0322670722656],[116.792345,40.0277223945312],[116.802345,40.0299636054688],[116.813013945313,40.0275722480469],[116.83033328125,40.0526564765625],[116.872345,40.0432387519532],[116.902345,40.0499636054687],[116.912345,40.0477223945313],[116.927613554688,40.0511452460938],[116.957345,40.0438430000001],[116.988179960938,40.0300307441407],[117.023531523438,40.0376552558594],[117.052471953125,40.0610964179688],[117.097345,40.0750722480469],[117.132647734375,40.0640761542969],[117.183360625,40.0807558417969]]],[[[117.21547,40.0675014472657],[117.197345,40.063843],[117.197345,40.0838430000001],[117.207345,40.0838430000001],[117.21547,40.0675014472657]]]]}},{"type":"Feature","properties":{"name":"文安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.354195585938,39.0454579902344],[116.357345,39.023843],[116.3351575,39.027075421875],[116.354195585938,39.0454579902344]]],[[[116.497345,39.023843],[116.485152617188,39.0204201484375],[116.493922148438,39.0116506171875],[116.532896757813,39.0193959785157],[116.584928007813,38.9993959785156],[116.593004179688,39.0185414863282],[116.59021609375,39.0409743476562],[116.612345,39.0382216621094],[116.629249296875,39.0403237128906],[116.642896757813,39.0293959785156],[116.658546171875,39.0098537421875],[116.695479765625,39.0315627265626],[116.722506132813,39.0282009101563],[116.747345,39.033843],[116.761383085938,39.0230080390625],[116.716202421875,38.9620705390625],[116.7014465625,38.8983950019531],[116.71298953125,38.8894863105469],[116.717345,38.853843],[116.69189578125,38.8479457832032],[116.675860625,38.8687233710938],[116.640225859375,38.8781996894532],[116.643140898438,38.858452375],[116.63170046875,38.8394863105469],[116.62298953125,38.8181996894532],[116.607340117188,38.7922585273438],[116.551519804688,38.7694130683594],[116.553463164063,38.7562831855469],[116.527086210938,38.7359255195313],[116.502345,38.7395815253906],[116.48978640625,38.7377260566407],[116.47172,38.7611318183594],[116.427345,38.7538430000001],[116.421881132813,38.7583803535156],[116.405455351563,38.7781569648438],[116.334068632813,38.8091176582031],[116.271881132813,38.8183803535157],[116.262808867188,38.8393056464844],[116.241793242188,38.8484194160157],[116.24302859375,38.8605361152344],[116.201881132813,38.8783803535156],[116.197345,38.923843],[116.213170195313,38.9280178046876],[116.227345,38.9477956367188],[116.237345,38.933843],[116.225152617188,38.9304201484375],[116.233922148438,38.9216506171876],[116.237345,38.933843],[116.2823059375,38.9453823066407],[116.291573515625,38.9701369453125],[116.31435671875,38.9650295234376],[116.327345,38.983843],[116.35857546875,39.0054055000001],[116.376573515625,39.0534999824219],[116.407345,39.0466017890625],[116.422345,39.0499636054688],[116.437345,39.0466017890625],[116.464522734375,39.0526943183594],[116.489176054688,39.0356740546875],[116.497345,39.023843]]]]}},{"type":"Feature","properties":{"name":"香河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.925694609375,39.8559377265625],[116.967345,39.8466017890625],[116.986246367188,39.8508388496094],[117.02142703125,39.8279274726563],[117.047345,39.823843],[117.057393828125,39.8039821601563],[117.082345,39.8161684394532],[117.103336210938,39.8059169746094],[117.110704375,39.820483625],[117.157345,39.823843],[117.151016875,39.7980812812501],[117.17326296875,39.7897585273438],[117.18142703125,39.7779274726563],[117.196827421875,39.7672951484375],[117.147823515625,39.733462140625],[117.168570585938,39.7016066718751],[117.160103789063,39.6638430000001],[117.165557890625,39.6395131660157],[117.145513945313,39.6256740546875],[117.137345,39.613843],[117.11142703125,39.6179274726563],[117.087428007813,39.6335561347656],[117.017257109375,39.6515651679688],[116.971954375,39.6375221992188],[116.939791289063,39.6624477363282],[116.943468046875,39.678843],[116.939478789063,39.6966200996094],[116.9170715625,39.7079274726562],[116.90326296875,39.6879274726563],[116.897345,39.683843],[116.89142703125,39.6879274726563],[116.873316679688,39.7141579414063],[116.906158476563,39.7368325019532],[116.90107546875,39.7595131660157],[116.91326296875,39.7679274726563],[116.923013945313,39.782055890625],[116.942843046875,39.7776100898438],[116.95142703125,39.7841188789063],[116.9286340625,39.799858625],[116.917345,39.843843],[116.925694609375,39.8559377265625]]]]}},{"type":"Feature","properties":{"name":"永清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.548170195313,39.4719203925782],[116.597345,39.463843],[116.604498320313,39.4359633613282],[116.628375273438,39.4413161445313],[116.65142703125,39.4079274726563],[116.676158476563,39.3908534980469],[116.669888945313,39.3628932929688],[116.69000125,39.2980055976563],[116.680186796875,39.2542116523438],[116.69142703125,39.2379274726563],[116.75142703125,39.2168947578125],[116.73326296875,39.1879274726563],[116.727345,39.183843],[116.690152617188,39.18983909375],[116.672896757813,39.1682900214844],[116.5905871875,39.1579946113281],[116.592965117188,39.138843],[116.590982695313,39.1228871894532],[116.562706328125,39.1395095039062],[116.543609648438,39.1371340156251],[116.484776640625,39.1745632148438],[116.463897734375,39.2006349921875],[116.442452421875,39.1880275703125],[116.377345,39.213843],[116.383565703125,39.28866721875],[116.380396757813,39.3280837226563],[116.42271609375,39.3584706855469],[116.43197390625,39.3692153144532],[116.473013945313,39.3986843085938],[116.46197390625,39.4184706855469],[116.457345,39.453843],[116.48298953125,39.4581996894531],[116.491832304688,39.4696572089844],[116.512345,39.466626203125],[116.548170195313,39.4719203925782]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"景县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.267345,37.473843],[116.279537382813,37.4704201484376],[116.270767851563,37.4616506171875],[116.267345,37.473843]]],[[[116.293922148438,37.5160353828126],[116.297345,37.503843],[116.285152617188,37.5072658515626],[116.293922148438,37.5160353828126]]],[[[116.267345,37.473843],[116.253985625,37.480483625],[116.215733671875,37.487202375],[116.227345,37.463843],[116.189576445313,37.4685671210938],[116.170865507813,37.4919362617187],[116.174893828125,37.524341046875],[116.137486601563,37.5401039863282],[116.104581328125,37.53601096875],[116.092896757813,37.5082900214844],[116.056920195313,37.4993959785157],[116.017633085938,37.5224904609376],[115.917345,37.4938430000001],[115.9069153125,37.5573183417969],[115.926607695313,37.6074013496094],[115.9611340625,37.6215322089844],[115.967345,37.6438430000001],[115.98556765625,37.6481349921875],[116.013975859375,37.7086025214844],[116.00373171875,37.7414882636719],[116.037345,37.751958234375],[116.059263945313,37.7451308417969],[116.071158476563,37.7800307441407],[116.097345,37.783843],[116.10435671875,37.7736891914063],[116.133013945313,37.7801137519532],[116.14509890625,37.76261253125],[116.174459257813,37.7817311835938],[116.210079375,37.7737465644532],[116.213468046875,37.788843],[116.20724734375,37.8165798164063],[116.222388945313,37.8199733710938],[116.280518828125,37.8056948066407],[116.283468046875,37.818843],[116.281221953125,37.8288430000001],[116.283468046875,37.8388430000001],[116.281051054688,37.8496169257813],[116.30326296875,37.8579274726563],[116.326939726563,37.8733486152344],[116.36326296875,37.8597585273438],[116.397374296875,37.8333205390625],[116.427345,37.8266017890625],[116.442799101563,37.8300649238282],[116.467345,37.813843],[116.467345,37.783843],[116.449659453125,37.7609291816407],[116.421519804688,37.7494130683595],[116.423160429688,37.7383315253907],[116.410894804688,37.7288661933594],[116.38170046875,37.6894863105469],[116.37298953125,37.6581996894532],[116.361529570313,37.6493544746094],[116.365953398438,37.6194130683594],[116.3335559375,37.6061537910157],[116.327345,37.583843],[116.281529570313,37.5493581367188],[116.283082304688,37.538843],[116.277174101563,37.498841779297],[116.267345,37.473843]]]]}},{"type":"Feature","properties":{"name":"安平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,38.3338430000001],[115.467345,38.3338430000001],[115.467345,38.343843],[115.477345,38.343843],[115.477345,38.3338430000001]]],[[[115.467345,38.3338430000001],[115.472345,38.3210353828125],[115.477345,38.3338430000001],[115.487345,38.3338430000001],[115.487345,38.353843],[115.487345,38.3638430000001],[115.499176054688,38.3556740546875],[115.514503203125,38.3334743476563],[115.51037234375,38.3150380683594],[115.532345,38.3199636054688],[115.543013945313,38.3175722480469],[115.551676054688,38.3301137519532],[115.563013945313,38.3275722480469],[115.571695585938,38.3401430488282],[115.634190703125,38.3247927070313],[115.647345,38.343843],[115.657345,38.343843],[115.664464140625,38.326137921875],[115.661412382813,38.3084279609375],[115.681197539063,38.2764577460938],[115.640318632813,38.2834950996095],[115.608902617188,38.2601235175782],[115.62861453125,38.2454616523438],[115.601402617188,38.2093044257813],[115.606163359375,38.1816555000001],[115.561080351563,38.1694325996094],[115.567345,38.153843],[115.541793242188,38.1582900214844],[115.532896757813,38.1693959785157],[115.521793242188,38.1782900214844],[115.506143828125,38.1978322578126],[115.472896757813,38.1782900214844],[115.431397734375,38.1693117500001],[115.443941679688,38.1366811347657],[115.439405546875,38.1002016425782],[115.447345,38.093843],[115.439693632813,38.0804201484376],[115.402345,38.0944972968751],[115.381431914063,38.0866139960938],[115.3637121875,38.1202114082031],[115.357345,38.123843],[115.353443632813,38.1299404121094],[115.333580351563,38.1426552558594],[115.34375125,38.1788430000001],[115.34093875,38.188843],[115.346344023438,38.2080800605469],[115.322281523438,38.2234865546875],[115.317345,38.243843],[115.354371367188,38.2501332832031],[115.350699492188,38.2749831367187],[115.383424101563,38.2883779121094],[115.369156523438,38.3246767402344],[115.422345,38.3325368476563],[115.45263796875,38.3280605292969],[115.467345,38.3338430000001]]]]}},{"type":"Feature","properties":{"name":"阜城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.077345,37.8738430000001],[116.070260039063,37.8603932929688],[116.04439578125,37.8695619941407],[116.077345,37.8738430000001]]],[[[116.077345,37.8738430000001],[116.0654309375,37.8978151679688],[116.083985625,37.907202375],[116.087345,37.9138430000001],[116.163804960938,37.9193691230469],[116.161539335938,37.9573464179688],[116.172174101563,37.9692458320313],[116.227154570313,37.9545204902344],[116.272628203125,37.9685622382813],[116.292120390625,37.9791542792969],[116.30259890625,37.9785305000001],[116.337564726563,38.0176638007813],[116.3768371875,38.020005109375],[116.45255984375,38.0084865546876],[116.46209109375,38.0191555],[116.472345,38.0185451484376],[116.482345,38.0191408515625],[116.51595828125,38.0171376777344],[116.547345,38.0238430000001],[116.557345,38.0238430000001],[116.552877226563,37.9667983222657],[116.532003203125,37.915786359375],[116.496324492188,37.8695644355469],[116.471519804688,37.8594130683594],[116.473082304688,37.848843],[116.471607695313,37.8388430000001],[116.47312625,37.8285512519532],[116.467345,37.813843],[116.442799101563,37.8300649238282],[116.427345,37.8266017890625],[116.397374296875,37.8333205390625],[116.36326296875,37.8597585273438],[116.326939726563,37.8733486152344],[116.30326296875,37.8579274726563],[116.281051054688,37.8496169257813],[116.283468046875,37.8388430000001],[116.281221953125,37.8288430000001],[116.283468046875,37.818843],[116.280518828125,37.8056948066407],[116.222388945313,37.8199733710938],[116.20724734375,37.8165798164063],[116.213468046875,37.788843],[116.210079375,37.7737465644532],[116.174459257813,37.7817311835938],[116.14509890625,37.76261253125],[116.133013945313,37.7801137519532],[116.10435671875,37.7736891914063],[116.097345,37.783843],[116.114093046875,37.809184796875],[116.086588164063,37.8281728339844],[116.095767851563,37.8691152167969],[116.077345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"故城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,37.363843],[115.785152617188,37.3672658515625],[115.793922148438,37.3760353828125],[115.797345,37.363843]]],[[[116.257345,37.423843],[116.260767851563,37.4360353828126],[116.269537382813,37.4272658515625],[116.257345,37.423843]]],[[[116.257345,37.423843],[116.271041289063,37.3926113105469],[116.245152617188,37.3760366035156],[116.237345,37.363843],[116.18170046875,37.3681996894531],[116.159854765625,37.3813759589844],[116.102486601563,37.3680825019531],[116.077515898438,37.3717726875001],[116.04298953125,37.3581996894531],[115.98041140625,37.3407741523438],[115.961363554688,37.2504921699219],[115.96341921875,37.2365615058594],[115.918365507813,37.2181215644531],[115.900670195313,37.1951918769532],[115.90314578125,37.1784133125],[115.87974734375,37.1468508125],[115.867345,37.0738430000001],[115.847345,37.063843],[115.83181765625,37.0716994453125],[115.823985625,37.110483625],[115.790704375,37.117202375],[115.761090117188,37.1430080390625],[115.757345,37.1838430000001],[115.753985625,37.2004836250001],[115.747345,37.213843],[115.753170195313,37.2180178046876],[115.779947539063,37.255376203125],[115.771358671875,37.2988430000001],[115.781378203125,37.3495680976563],[115.793170195313,37.3580178046875],[115.797345,37.363843],[115.8308215625,37.3724330878907],[115.8541028125,37.3885097480469],[115.884342070313,37.4349416328126],[115.881085234375,37.4494557929688],[115.89142703125,37.4897585273438],[115.917345,37.4938430000001],[116.017633085938,37.5224904609376],[116.056920195313,37.4993959785157],[116.092896757813,37.5082900214844],[116.104581328125,37.53601096875],[116.137486601563,37.5401039863282],[116.174893828125,37.524341046875],[116.170865507813,37.4919362617187],[116.189576445313,37.4685671210938],[116.227345,37.463843],[116.234986601563,37.4484658027344],[116.218272734375,37.4274245429688],[116.257345,37.423843]]]]}},{"type":"Feature","properties":{"name":"冀州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.347345,37.5338430000001],[115.359537382813,37.5304201484375],[115.350767851563,37.5216506171875],[115.347345,37.5338430000001]]],[[[115.347345,37.5338430000001],[115.331519804688,37.5380178046875],[115.299000273438,37.5628542304688],[115.229732695313,37.58112815625],[115.207345,37.5498903632813],[115.197345,37.5638430000001],[115.171090117188,37.5990163398438],[115.18298953125,37.6081996894532],[115.195553007813,37.6389003730469],[115.247345,37.6438430000001],[115.250797148438,37.6372927070313],[115.284991484375,37.6303932929688],[115.300797148438,37.6603932929688],[115.31865359375,37.6698000312501],[115.3091028125,37.691059796875],[115.33853640625,37.7172927070313],[115.37521609375,37.7008144355469],[115.387345,37.7238430000001],[115.415640898438,37.7307936835938],[115.427345,37.713843],[115.43142703125,37.7079274726563],[115.462476835938,37.686489484375],[115.477345,37.713843],[115.482896757813,37.7093959785157],[115.491793242188,37.6982900214844],[115.502896757813,37.6893959785156],[115.511793242188,37.6782900214844],[115.522896757813,37.6693959785157],[115.533648710938,37.6318007636719],[115.647330351563,37.6175978828125],[115.682174101563,37.6219313789062],[115.687345,37.6038430000001],[115.681925078125,37.5890810371094],[115.6827746875,37.5785195136719],[115.6666028125,37.5645864082032],[115.65271609375,37.5484706855469],[115.620650664063,37.5208437324219],[115.6330871875,37.4985549140625],[115.5919153125,37.4892018867188],[115.5927746875,37.4785121894531],[115.551470976563,37.448852765625],[115.5819934375,37.3684133125],[115.618624296875,37.3713564277344],[115.64197390625,37.3512404609376],[115.62271609375,37.3384706855469],[115.607345,37.333843],[115.58142703125,37.3297585273438],[115.573013945313,37.3175722480469],[115.528609648438,37.3275258613282],[115.509176054688,37.3556740546875],[115.49142703125,37.3679274726563],[115.48326296875,37.3797585273438],[115.464522734375,37.3926943183594],[115.442345,37.3877223945313],[115.432345,37.3899636054688],[115.418995390625,37.3869704414063],[115.399176054688,37.4156740546875],[115.37697390625,37.4310024238281],[115.361890898438,37.4276210761719],[115.337345,37.443843],[115.34978640625,37.4599599433594],[115.371832304688,37.4567018867188],[115.382345,37.4703212714845],[115.391832304688,37.4580287910156],[115.407345,37.4603212714844],[115.422706328125,37.4580507636719],[115.43170046875,37.4627614570313],[115.41170046875,37.4781996894531],[115.40298953125,37.489486310547],[115.384595976563,37.5036818671875],[115.441378203125,37.4952907539062],[115.4060559375,37.5225551582031],[115.39298953125,37.5394863105469],[115.361612578125,37.5523281074219],[115.347345,37.5338430000001]]],[[[115.387345,37.7238430000001],[115.367345,37.7238430000001],[115.367345,37.733843],[115.374605742188,37.7470864082032],[115.387345,37.7238430000001]]]]}},{"type":"Feature","properties":{"name":"饶阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.742545195313,38.3698378730469],[115.751890898438,38.3581642890625],[115.76259890625,38.3594960761719],[115.832896757813,38.3393959785156],[115.847345,38.303843],[115.82541140625,38.2992714667969],[115.839464140625,38.267993390625],[115.853892851563,38.2603932929688],[115.861905546875,38.2219765449219],[115.90037234375,38.2017128730469],[115.88603640625,38.1698000312501],[115.897345,38.163843],[115.893531523438,38.1576552558594],[115.8328528125,38.1372365546876],[115.827345,38.113843],[115.802574492188,38.1291542792969],[115.787515898438,38.1282570625001],[115.729698515625,38.1075112128907],[115.692345,38.1097365546875],[115.678521757813,38.0796181464844],[115.64158328125,38.0996913886719],[115.573409453125,38.0956288886719],[115.567345,38.153843],[115.561080351563,38.1694325996094],[115.606163359375,38.1816555000001],[115.601402617188,38.2093044257813],[115.62861453125,38.2454616523438],[115.608902617188,38.2601235175782],[115.640318632813,38.2834950996095],[115.681197539063,38.2764577460938],[115.661412382813,38.3084279609375],[115.664464140625,38.326137921875],[115.657345,38.343843],[115.689263945313,38.3478676582032],[115.697345,38.3638430000001],[115.722589140625,38.3581081367187],[115.742545195313,38.3698378730469]]]]}},{"type":"Feature","properties":{"name":"深州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,38.153843],[115.573409453125,38.0956288886719],[115.64158328125,38.0996913886719],[115.678521757813,38.0796181464844],[115.692345,38.1097365546875],[115.729698515625,38.1075112128907],[115.787515898438,38.1282570625001],[115.802574492188,38.1291542792969],[115.827345,38.113843],[115.84107546875,38.10284690625],[115.809908476563,38.0778896308594],[115.781676054688,38.0392348457031],[115.785064726563,38.0119765449219],[115.771236601563,37.9884487128907],[115.805670195313,37.9786037421875],[115.792896757813,37.9482900214844],[115.772896757813,37.9322743964844],[115.781793242188,37.9182900214844],[115.787345,37.9138430000001],[115.779176054688,37.9020119453126],[115.751026640625,37.8825771308594],[115.74107546875,37.8381728339844],[115.75326296875,37.8297585273438],[115.757345,37.823843],[115.691612578125,37.8195778632813],[115.659639921875,37.8067263007813],[115.642345,37.8097035957032],[115.629508085938,37.8074941230469],[115.61291140625,37.8298012519532],[115.592345,37.8262599921876],[115.564210234375,37.8311049628907],[115.574967070313,37.7686196113281],[115.5344153125,37.7576259589844],[115.517203398438,37.7605886054688],[115.50177859375,37.7813271308594],[115.477345,37.7771218085938],[115.443922148438,37.7828749824219],[115.423077421875,37.7531325507812],[115.473077421875,37.7395778632813],[115.477345,37.713843],[115.452345,37.7199831367188],[115.427345,37.713843],[115.415640898438,37.7307936835938],[115.387345,37.7238430000001],[115.374605742188,37.7470864082032],[115.367345,37.733843],[115.336261015625,37.7418202949219],[115.355235625,37.7709572578125],[115.348980742188,37.7988430000001],[115.360303984375,37.8493361640625],[115.38326296875,37.8579274726563],[115.39142703125,37.8667018867188],[115.36142703125,37.8779274726562],[115.35326296875,37.8992189765625],[115.40326296875,37.9179274726562],[115.412345,37.9422060371094],[115.451397734375,37.9334499335937],[115.440103789063,37.9838430000001],[115.44361453125,37.9995131660157],[115.430103789063,38.008843],[115.44361453125,38.0181728339844],[115.44107546875,38.0295131660156],[115.45326296875,38.0379274726563],[115.46142703125,38.0597585273438],[115.478428984375,38.0858657050781],[115.447345,38.093843],[115.439405546875,38.1002016425782],[115.443941679688,38.1366811347657],[115.431397734375,38.1693117500001],[115.472896757813,38.1782900214844],[115.506143828125,38.1978322578126],[115.521793242188,38.1782900214844],[115.532896757813,38.1693959785157],[115.541793242188,38.1582900214844],[115.567345,38.153843]]]]}},{"type":"Feature","properties":{"name":"桃城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.477345,37.713843],[115.462476835938,37.686489484375],[115.43142703125,37.7079274726563],[115.427345,37.713843],[115.452345,37.7199831367188],[115.477345,37.713843]]],[[[115.477345,37.713843],[115.473077421875,37.7395778632813],[115.423077421875,37.7531325507812],[115.443922148438,37.7828749824219],[115.477345,37.7771218085938],[115.50177859375,37.7813271308594],[115.517203398438,37.7605886054688],[115.5344153125,37.7576259589844],[115.574967070313,37.7686196113281],[115.564210234375,37.8311049628907],[115.592345,37.8262599921876],[115.61291140625,37.8298012519532],[115.629508085938,37.8074941230469],[115.642345,37.8097035957032],[115.659639921875,37.8067263007813],[115.691612578125,37.8195778632813],[115.757345,37.823843],[115.790201445313,37.8190602851563],[115.774854765625,37.7698024726563],[115.810992460938,37.7574892402344],[115.82281375,37.7227968574219],[115.844366484375,37.709516828125],[115.828385039063,37.673843],[115.837345,37.653843],[115.821519804688,37.6494362617188],[115.8236340625,37.6351039863282],[115.73170046875,37.6194863105469],[115.70298953125,37.6081996894532],[115.687345,37.6038430000001],[115.682174101563,37.6219313789062],[115.647330351563,37.6175978828125],[115.533648710938,37.6318007636719],[115.522896757813,37.6693959785157],[115.511793242188,37.6782900214844],[115.502896757813,37.6893959785156],[115.491793242188,37.6982900214844],[115.482896757813,37.7093959785157],[115.477345,37.713843]]]]}},{"type":"Feature","properties":{"name":"武强县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.987345,37.9838430000001],[115.999537382813,37.9804201484375],[115.990767851563,37.9716506171876],[115.987345,37.9838430000001]]],[[[115.987345,37.9838430000001],[115.961881132813,37.9793056464844],[115.93634890625,37.9646804023438],[115.915704375,37.9398268867188],[115.821881132813,37.9293056464844],[115.802667265625,37.9183010078126],[115.791954375,37.9193923164063],[115.787345,37.9138430000001],[115.781793242188,37.9182900214844],[115.772896757813,37.9322743964844],[115.792896757813,37.9482900214844],[115.805670195313,37.9786037421875],[115.771236601563,37.9884487128907],[115.785064726563,38.0119765449219],[115.781676054688,38.0392348457031],[115.809908476563,38.0778896308594],[115.84107546875,38.10284690625],[115.827345,38.113843],[115.8328528125,38.1372365546876],[115.893531523438,38.1576552558594],[115.897345,38.163843],[115.92298953125,38.1594863105469],[115.932081328125,38.1477053046875],[115.987345,38.1259804511719],[116.043863554688,38.1481996894532],[116.04298953125,38.1181996894531],[116.028189726563,38.0936659980469],[116.047345,38.0638430000001],[116.050704375,38.0472023750001],[116.068116484375,38.03839378125],[116.038585234375,38.0298720527344],[116.054976835938,38.0092348457032],[116.049893828125,37.9988283515626],[116.057345,37.9838430000001],[116.040885039063,37.9873830390625],[116.024605742188,38.0170864082032],[116.013267851563,37.9964028144532],[115.997735625,38.0028029609375],[115.987345,37.9838430000001]]]]}},{"type":"Feature","properties":{"name":"武邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.077345,37.8738430000001],[116.04439578125,37.8695619941407],[116.070260039063,37.8603932929688],[116.095767851563,37.8691152167969],[116.086588164063,37.8281728339844],[116.114093046875,37.809184796875],[116.097345,37.783843],[116.071158476563,37.7800307441407],[116.059263945313,37.7451308417969],[116.037345,37.751958234375],[116.00373171875,37.7414882636719],[116.013975859375,37.7086025214844],[115.98556765625,37.6481349921875],[115.967345,37.6438430000001],[115.923219023438,37.6264968085938],[115.884996367188,37.6321462226563],[115.837345,37.653843],[115.828385039063,37.673843],[115.844366484375,37.709516828125],[115.82281375,37.7227968574219],[115.810992460938,37.7574892402344],[115.774854765625,37.7698024726563],[115.790201445313,37.8190602851563],[115.757345,37.823843],[115.75326296875,37.8297585273438],[115.74107546875,37.8381728339844],[115.751026640625,37.8825771308594],[115.779176054688,37.9020119453126],[115.787345,37.9138430000001],[115.791954375,37.9193923164063],[115.802667265625,37.9183010078126],[115.821881132813,37.9293056464844],[115.915704375,37.9398268867188],[115.93634890625,37.9646804023438],[115.961881132813,37.9793056464844],[115.987345,37.9838430000001],[115.990767851563,37.9716506171876],[115.999537382813,37.9804201484375],[115.987345,37.9838430000001],[115.997735625,38.0028029609375],[116.013267851563,37.9964028144532],[116.024605742188,38.0170864082032],[116.040885039063,37.9873830390625],[116.057345,37.9838430000001],[116.07326296875,37.9797585273438],[116.09142703125,37.9479274726563],[116.104093046875,37.9391847968751],[116.087345,37.9138430000001],[116.083985625,37.907202375],[116.0654309375,37.8978151679688],[116.077345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"枣强县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.797345,37.363843],[115.793922148438,37.3760353828125],[115.785152617188,37.3672658515625],[115.793170195313,37.3580178046875],[115.781378203125,37.3495680976563],[115.771358671875,37.2988430000001],[115.779947539063,37.255376203125],[115.753170195313,37.2180178046876],[115.747345,37.213843],[115.728233671875,37.2195973945313],[115.693316679688,37.2601259589844],[115.671998320313,37.2584133125],[115.661651640625,37.2815993476563],[115.621099882813,37.2783412910156],[115.6227746875,37.2991970039063],[115.582730742188,37.3112538886719],[115.60271609375,37.3284706855469],[115.607345,37.333843],[115.62271609375,37.3384706855469],[115.64197390625,37.3512404609376],[115.618624296875,37.3713564277344],[115.5819934375,37.3684133125],[115.551470976563,37.448852765625],[115.5927746875,37.4785121894531],[115.5919153125,37.4892018867188],[115.6330871875,37.4985549140625],[115.620650664063,37.5208437324219],[115.65271609375,37.5484706855469],[115.6666028125,37.5645864082032],[115.6827746875,37.5785195136719],[115.681925078125,37.5890810371094],[115.687345,37.6038430000001],[115.70298953125,37.6081996894532],[115.73170046875,37.6194863105469],[115.8236340625,37.6351039863282],[115.821519804688,37.6494362617188],[115.837345,37.653843],[115.884996367188,37.6321462226563],[115.923219023438,37.6264968085938],[115.967345,37.6438430000001],[115.9611340625,37.6215322089844],[115.926607695313,37.6074013496094],[115.9069153125,37.5573183417969],[115.917345,37.4938430000001],[115.89142703125,37.4897585273438],[115.881085234375,37.4494557929688],[115.884342070313,37.4349416328126],[115.8541028125,37.3885097480469],[115.8308215625,37.3724330878907],[115.797345,37.363843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"小店区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.669449492188,37.8167617011719],[112.673577910156,37.7983376289063],[112.651112089844,37.7693483710938],[112.657889433594,37.7391139960938],[112.639176054688,37.7120119453126],[112.621429472656,37.6997585273437],[112.613260527344,37.6779274726563],[112.60060671875,37.6584950996094],[112.620858183594,37.6445119453125],[112.581429472656,37.6297585273438],[112.577345,37.6038430000001],[112.562584257813,37.5973708320313],[112.532471953125,37.6058327460938],[112.518533964844,37.6276076484375],[112.482345,37.6174379707031],[112.46310671875,37.6228444648438],[112.444632597656,37.5939846015626],[112.410279570313,37.6036391425782],[112.397345,37.623843],[112.408365507813,37.6381215644531],[112.43298953125,37.6481996894532],[112.473446074219,37.6808974433594],[112.492796660156,37.6780373359375],[112.548563261719,37.7253041816406],[112.530394316406,37.7715261054688],[112.537345,37.813843],[112.537345,37.8338430000001],[112.593822050781,37.8292226386719],[112.572806425781,37.8117678046875],[112.645679960938,37.8197988105469],[112.670811796875,37.8500551582032],[112.687345,37.843843],[112.669449492188,37.8167617011719]]]]}},{"type":"Feature","properties":{"name":"杏花岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.680682402344,37.9509682441406],[112.723131132813,37.9370058417969],[112.733834257813,37.9543752265625],[112.757345,37.943843],[112.769261503906,37.9198708320313],[112.757345,37.9138430000001],[112.752735625,37.9193923164063],[112.742345,37.9183339667969],[112.727345,37.9198622871094],[112.684569121094,37.9155019355469],[112.660650664063,37.8603517890625],[112.566163359375,37.8699831367188],[112.527345,37.863843],[112.527345,37.883843],[112.536600371094,37.8945864082032],[112.562877226563,37.9172243476562],[112.561165800781,37.9385195136719],[112.572772246094,37.9485195136719],[112.5719153125,37.9592018867188],[112.637345,37.973843],[112.653531523438,37.9700307441407],[112.680682402344,37.9509682441406]]]]}},{"type":"Feature","properties":{"name":"万柏林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.349537382813,37.941322248047],[112.385545683594,37.9261977363282],[112.409422636719,37.9315505195313],[112.492371855469,37.8928188300782],[112.527345,37.883843],[112.527345,37.863843],[112.527345,37.8338430000001],[112.537345,37.8338430000001],[112.537345,37.813843],[112.516156035156,37.805512921875],[112.480386992188,37.8270876289063],[112.4831653125,37.8082912421875],[112.466143828125,37.7994863105469],[112.432735625,37.8196401191407],[112.417838164063,37.8174379707032],[112.401651640625,37.7964662910157],[112.327345,37.783843],[112.333187285156,37.8194057441406],[112.31170046875,37.8281996894532],[112.27298953125,37.8627614570313],[112.293822050781,37.8788430000001],[112.28170046875,37.8881996894532],[112.269427519531,37.9041005683594],[112.275338164063,37.9441017890625],[112.304136992188,37.9267299628906],[112.324022246094,37.9524941230469],[112.32156375,37.9691347480469],[112.327345,37.9838430000001],[112.347345,37.973843],[112.353529082031,37.9591213203125],[112.349537382813,37.941322248047]]]]}},{"type":"Feature","properties":{"name":"古交市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.095592070313,38.1639479804688],[112.125889921875,38.1456728339844],[112.152486601563,38.1496034980469],[112.20170046875,38.1381996894532],[112.207345,38.1338430000001],[112.200833769531,38.1183388496094],[112.234818144531,38.0948744941407],[112.229705839844,38.0720729804687],[112.251429472656,38.0579274726563],[112.277435332031,38.0481972480469],[112.291429472656,38.0279274726563],[112.303260527344,38.0197585273438],[112.327345,37.9838430000001],[112.32156375,37.9691347480469],[112.324022246094,37.9524941230469],[112.304136992188,37.9267299628906],[112.275338164063,37.9441017890625],[112.269427519531,37.9041005683594],[112.28170046875,37.8881996894532],[112.293822050781,37.8788430000001],[112.27298953125,37.8627614570313],[112.31170046875,37.8281996894532],[112.333187285156,37.8194057441406],[112.327345,37.783843],[112.267081328125,37.738481671875],[112.24298953125,37.6981996894531],[112.203878203125,37.6873085761719],[112.167345,37.663843],[112.156715117188,37.6781325507813],[112.113778105469,37.6951955390626],[112.097235136719,37.7174318671875],[112.04205203125,37.7079311347657],[112.003643828125,37.7233705878906],[111.964107695313,37.7165639472656],[111.932821074219,37.7359267402344],[111.903079863281,37.7895778632812],[111.811610136719,37.7981081367188],[111.796715117188,37.8181325507813],[111.760701933594,37.8324428535156],[111.733079863281,37.8695778632813],[111.727345,37.8738430000001],[111.752523222656,37.9010158515625],[111.812345,37.8986452460938],[111.822345,37.8990407539063],[111.938624296875,37.8944325996094],[111.952154570313,37.9090334296876],[111.978997832031,37.9217018867188],[112.051685820313,37.9447158027344],[112.006156035156,37.9662026191406],[112.037398710938,37.9809474921875],[112.011402617188,38.0300722480469],[112.013656035156,38.0869167304687],[111.99709109375,38.1182192207032],[112.037345,38.1738430000001],[112.095592070313,38.1639479804688]]]]}},{"type":"Feature","properties":{"name":"尖草坪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.417345,38.0238430000001],[112.420767851563,38.0116506171876],[112.429537382813,38.0204201484375],[112.434718046875,38.0669765449219],[112.460767851563,38.0708266425782],[112.493924589844,38.0508266425781],[112.532345,38.0451491523438],[112.565213652344,38.0500063300781],[112.60298953125,38.0394863105469],[112.61670046875,38.0059865546876],[112.637345,37.973843],[112.5719153125,37.9592018867188],[112.572772246094,37.9485195136719],[112.561165800781,37.9385195136719],[112.562877226563,37.9172243476562],[112.536600371094,37.8945864082032],[112.527345,37.883843],[112.492371855469,37.8928188300782],[112.409422636719,37.9315505195313],[112.385545683594,37.9261977363282],[112.349537382813,37.941322248047],[112.353529082031,37.9591213203125],[112.347345,37.973843],[112.375223417969,37.9809975410156],[112.371041289063,37.9996584296875],[112.403260527344,38.0079274726563],[112.411429472656,38.0197585273438],[112.417345,38.0238430000001]]]]}},{"type":"Feature","properties":{"name":"晋源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.480386992188,37.8270876289063],[112.516156035156,37.805512921875],[112.537345,37.813843],[112.530394316406,37.7715261054688],[112.548563261719,37.7253041816406],[112.492796660156,37.6780373359375],[112.473446074219,37.6808974433594],[112.43298953125,37.6481996894532],[112.408365507813,37.6381215644531],[112.397345,37.623843],[112.391883574219,37.6193056464844],[112.382508574219,37.6080214667969],[112.360970488281,37.6203578925782],[112.363800078125,37.6481154609375],[112.321798125,37.698481671875],[112.323363066406,37.713843],[112.321795683594,37.729233625],[112.341663847656,37.7457363105469],[112.327345,37.783843],[112.401651640625,37.7964662910157],[112.417838164063,37.8174379707032],[112.432735625,37.8196401191407],[112.466143828125,37.7994863105469],[112.4831653125,37.8082912421875],[112.480386992188,37.8270876289063]]]]}},{"type":"Feature","properties":{"name":"娄烦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.863616972656,38.2195131660156],[111.858011503906,38.1945082832031],[111.882791777344,38.200063703125],[111.922017851563,38.1745204902344],[111.952623320313,38.1676601386719],[111.993175078125,38.184692609375],[112.037345,38.1738430000001],[111.99709109375,38.1182192207032],[112.013656035156,38.0869167304687],[112.011402617188,38.0300722480469],[112.037398710938,37.9809474921875],[112.006156035156,37.9662026191406],[112.051685820313,37.9447158027344],[111.978997832031,37.9217018867188],[111.952154570313,37.9090334296876],[111.938624296875,37.8944325996094],[111.822345,37.8990407539063],[111.812345,37.8986452460938],[111.752523222656,37.9010158515625],[111.727345,37.8738430000001],[111.681158476563,37.8700307441406],[111.648455839844,37.8553823066407],[111.632345,37.8604006171875],[111.622345,37.8572853828125],[111.612313261719,37.8604103828125],[111.56547,37.8450038886719],[111.553531523438,37.8800307441407],[111.547345,37.883843],[111.55170046875,37.8894863105469],[111.56298953125,37.8981996894531],[111.57170046875,37.9227614570312],[111.546397734375,37.9422939277344],[111.52298953125,37.9994863105469],[111.511549101563,38.018452375],[111.513822050781,38.033843],[111.511541777344,38.0492739082032],[111.537345,38.083843],[111.551519804688,38.0896681953125],[111.603170195313,38.0980178046875],[111.6884778125,38.1375209785157],[111.716534453125,38.1766640449219],[111.791463652344,38.1916860175782],[111.807345,38.2138430000001],[111.833260527344,38.2179274726563],[111.843802519531,38.2331935859375],[111.863616972656,38.2195131660156]]]]}},{"type":"Feature","properties":{"name":"清徐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.360970488281,37.6203578925782],[112.382508574219,37.6080214667969],[112.391883574219,37.6193056464844],[112.397345,37.623843],[112.410279570313,37.6036391425782],[112.444632597656,37.5939846015626],[112.46310671875,37.6228444648438],[112.482345,37.6174379707031],[112.518533964844,37.6276076484375],[112.532471953125,37.6058327460938],[112.562584257813,37.5973708320313],[112.577345,37.6038430000001],[112.591090117188,37.596889875],[112.60478640625,37.5688430000001],[112.599896269531,37.5588283515625],[112.61541140625,37.5276137519532],[112.590704375,37.520483625],[112.587345,37.503843],[112.58170046875,37.5081996894531],[112.515145292969,37.5180348945313],[112.497345,37.473843],[112.462379179688,37.4680995917969],[112.433880644531,37.4723110175781],[112.422857695313,37.4580287910156],[112.396551542969,37.4619155097657],[112.38298953125,37.4794863105469],[112.358426542969,37.4881996894532],[112.34298953125,37.4681996894532],[112.327345,37.463843],[112.310159941406,37.4666591621094],[112.285596953125,37.4892385078125],[112.310103789063,37.4988430000001],[112.290159941406,37.5066591621094],[112.284530058594,37.5210268378907],[112.267345,37.523843],[112.288736601563,37.5581166816407],[112.23197390625,37.5684706855469],[112.172056914063,37.6380165839844],[112.167345,37.663843],[112.203878203125,37.6873085761719],[112.24298953125,37.6981996894531],[112.267081328125,37.738481671875],[112.327345,37.783843],[112.341663847656,37.7457363105469],[112.321795683594,37.729233625],[112.323363066406,37.713843],[112.321798125,37.698481671875],[112.363800078125,37.6481154609375],[112.360970488281,37.6203578925782]]]]}},{"type":"Feature","properties":{"name":"阳曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.417345,38.0238430000001],[112.429537382813,38.0204201484375],[112.420767851563,38.0116506171876],[112.417345,38.0238430000001]]],[[[112.417345,38.0238430000001],[112.411429472656,38.0197585273438],[112.403260527344,38.0079274726563],[112.371041289063,37.9996584296875],[112.375223417969,37.9809975410156],[112.347345,37.973843],[112.327345,37.9838430000001],[112.303260527344,38.0197585273438],[112.291429472656,38.0279274726563],[112.277435332031,38.0481972480469],[112.251429472656,38.0579274726563],[112.229705839844,38.0720729804687],[112.234818144531,38.0948744941407],[112.200833769531,38.1183388496094],[112.207345,38.1338430000001],[112.211248808594,38.1399404121094],[112.233441191406,38.1477455878907],[112.2601575,38.1660414863282],[112.24412234375,38.2231020332031],[112.218343535156,38.2396059394531],[112.223531523438,38.2580690742188],[112.265926542969,38.2683486152344],[112.233914824219,38.2888430000001],[112.263441191406,38.3077455878907],[112.267345,38.313843],[112.296097441406,38.3071804023438],[112.318204375,38.3104482246094],[112.36170046875,38.2781996894531],[112.394390898438,38.2648195625001],[112.432689238281,38.2798744941407],[112.455030546875,38.2509291816407],[112.487952910156,38.2374550605469],[112.506851835938,38.2402480292969],[112.522857695313,38.2609841132813],[112.545562773438,38.2576284003906],[112.566773710938,38.2058034492188],[112.592345,38.2095815253907],[112.607345,38.2073647285157],[112.629920683594,38.2107009101563],[112.642916289063,38.2424526191407],[112.677345,38.2373647285157],[112.702345,38.2410597968751],[112.722428007813,38.2380922675782],[112.789737578125,38.2510317207032],[112.827508574219,38.2999648261719],[112.89298953125,38.3181996894531],[112.945882597656,38.3389931464844],[112.957345,38.353843],[112.996820097656,38.3396791816407],[113.040377226563,38.3884279609375],[113.052345,38.3891408515625],[113.063609648438,38.3884694648438],[113.090377226563,38.4184279609375],[113.119696074219,38.4201747871094],[113.137345,38.413843],[113.143865996094,38.3741408515625],[113.141605253906,38.358843],[113.146558867188,38.3253273750001],[113.10298953125,38.3081996894531],[113.069928007813,38.2989931464844],[113.03170046875,38.2694863105469],[113.02298953125,38.2581996894532],[112.967730742188,38.2355837226563],[112.931546660156,38.1792458320313],[112.933160429688,38.1683315253907],[112.91298953125,38.1527614570312],[112.933502226563,38.1367971015626],[112.952916289063,38.1396657539063],[112.964891386719,38.1104030585938],[113.00170046875,38.0881996894531],[113.03298953125,38.0794863105469],[113.04170046875,38.0681996894532],[113.05298953125,38.059486310547],[113.057345,38.053843],[113.040477324219,38.0475051093751],[113.022345,38.0493520332032],[113.010882597656,38.0481838203126],[113.012886992188,38.028520734375],[113.000279570313,38.0065053535156],[112.964212675781,38.0101808906251],[112.91127078125,37.9902883125001],[112.820394316406,37.9995510078125],[112.802806425781,37.9783803535157],[112.757345,37.943843],[112.733834257813,37.9543752265625],[112.723131132813,37.9370058417969],[112.680682402344,37.9509682441406],[112.653531523438,37.9700307441407],[112.637345,37.973843],[112.61670046875,38.0059865546876],[112.60298953125,38.0394863105469],[112.565213652344,38.0500063300781],[112.532345,38.0451491523438],[112.493924589844,38.0508266425781],[112.460767851563,38.0708266425782],[112.434718046875,38.0669765449219],[112.417345,38.0238430000001]]]]}},{"type":"Feature","properties":{"name":"迎泽区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.767345,37.8738430000001],[112.777345,37.8738430000001],[112.772345,37.8610353828125],[112.767345,37.8738430000001]]],[[[112.767345,37.8738430000001],[112.742579375,37.883579328125],[112.72298953125,37.8581996894531],[112.687345,37.843843],[112.670811796875,37.8500551582032],[112.645679960938,37.8197988105469],[112.572806425781,37.8117678046875],[112.593822050781,37.8292226386719],[112.537345,37.8338430000001],[112.527345,37.8338430000001],[112.527345,37.863843],[112.566163359375,37.8699831367188],[112.660650664063,37.8603517890625],[112.684569121094,37.9155019355469],[112.727345,37.9198622871094],[112.742345,37.9183339667969],[112.752735625,37.9193923164063],[112.757345,37.9138430000001],[112.763985625,37.900483625],[112.767345,37.8738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"浑源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.817345,39.863843],[113.847345,39.843843],[113.850704375,39.827202375],[113.872874785156,39.8159865546875],[113.880704375,39.777202375],[113.903985625,39.750483625],[113.911109648438,39.7257973457031],[113.926031523438,39.7330849433594],[113.943985625,39.710483625],[113.950704375,39.6872023750001],[113.963985625,39.670483625],[113.967345,39.6238430000001],[113.894469023438,39.6358144355469],[113.913096953125,39.5389272285156],[113.911605253906,39.528843],[113.915775175781,39.5006240058594],[113.94298953125,39.4894863105469],[113.954022246094,39.4751918769531],[113.951605253906,39.458843],[113.961688261719,39.3906215644531],[113.92170046875,39.3794863105469],[113.897345,39.3638430000001],[113.888001738281,39.3768776679688],[113.832345,39.3658791328125],[113.771619902344,39.3778786445313],[113.750999785156,39.4066481757813],[113.715303984375,39.420415265625],[113.681798125,39.413794171875],[113.64255984375,39.4299184394531],[113.591964140625,39.4177272773438],[113.567345,39.4338430000001],[113.559046660156,39.445863263672],[113.500435820313,39.4853298164063],[113.508699980469,39.5221938300782],[113.459598417969,39.5560964179688],[113.441673613281,39.582055890625],[113.421529570313,39.5775392890626],[113.413260527344,39.6097585273438],[113.395513945313,39.6220119453126],[113.383260527344,39.6397585273438],[113.37060671875,39.6484950996094],[113.383565703125,39.6683962226563],[113.381160917969,39.6791213203125],[113.387345,39.693843],[113.393985625,39.697202375],[113.404866972656,39.7187111640626],[113.397345,39.7338430000001],[113.412625761719,39.7291237617188],[113.432120390625,39.7185317207032],[113.442345,39.7191408515625],[113.461656523438,39.7179897285156],[113.4731653125,39.7500661445313],[113.4708996875,39.7880849433594],[113.482625761719,39.7985622382813],[113.492064238281,39.8091237617188],[113.522625761719,39.8185622382813],[113.617386503906,39.8700551582032],[113.682205839844,39.8585366035157],[113.702345,39.8597365546875],[113.73158328125,39.8579946113281],[113.763511992188,39.8753444648438],[113.817345,39.863843]]]]}},{"type":"Feature","properties":{"name":"灵丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.362379179688,39.6495864082032],[114.397345,39.643843],[114.409720488281,39.6362184882812],[114.429930449219,39.6034181953125],[114.457965117188,39.6121511054688],[114.493531523438,39.6000307441407],[114.513585234375,39.5631984687501],[114.553306914063,39.5809926582032],[114.557345,39.563843],[114.54298953125,39.5281996894531],[114.531549101563,39.5092336250001],[114.533463164063,39.4962831855469],[114.50306765625,39.4728212714844],[114.4886340625,39.4375551582031],[114.465611601563,39.3993947578126],[114.473765898438,39.3442360664063],[114.424129667969,39.3059242988281],[114.420867949219,39.2838430000001],[114.423822050781,39.263843],[114.419075957031,39.2317153144531],[114.47170046875,39.2170607734375],[114.46298953125,39.1981996894531],[114.44170046875,39.1894863105469],[114.43298953125,39.1781996894532],[114.370318632813,39.1675527167969],[114.373160429688,39.1483315253907],[114.360203886719,39.1383315253906],[114.364246855469,39.1109645820312],[114.347345,39.073843],[114.241883574219,39.0693056464844],[114.194544707031,39.0560707832031],[114.162022734375,39.0593849921875],[114.12748171875,39.0396022773438],[114.096280546875,39.0771633125001],[114.061883574219,39.0983803535156],[114.042752714844,39.1293947578126],[114.005406523438,39.1255873847657],[113.982806425781,39.0983803535156],[113.957345,39.0938430000001],[113.953260527344,39.1097585273438],[113.941160917969,39.1385646796876],[113.943499785156,39.1489894843751],[113.925855742188,39.2059096503906],[113.943260527344,39.2179274726563],[113.957469511719,39.2732949042969],[113.930440703125,39.3148000312501],[113.888817167969,39.3435390449219],[113.897345,39.3638430000001],[113.92170046875,39.3794863105469],[113.961688261719,39.3906215644531],[113.951605253906,39.458843],[113.954022246094,39.4751918769531],[113.94298953125,39.4894863105469],[113.915775175781,39.5006240058594],[113.911605253906,39.528843],[113.913096953125,39.5389272285156],[113.894469023438,39.6358144355469],[113.967345,39.6238430000001],[113.999991484375,39.6162783027344],[114.042345,39.6225368476563],[114.096910429688,39.6144741035157],[114.165836210938,39.6304445625],[114.19298953125,39.6094863105469],[114.205286894531,39.5935536933595],[114.23170046875,39.6094863105469],[114.29298953125,39.6181996894531],[114.304127226563,39.6454116035156],[114.332345,39.6495815253906],[114.347345,39.6473647285157],[114.362379179688,39.6495864082032]]]]}},{"type":"Feature","properties":{"name":"大同县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.517345,40.253843],[113.551951933594,40.2281716132813],[113.582928496094,40.2320253730469],[113.61302859375,40.219341046875],[113.606109648438,40.1637148261719],[113.661790800781,40.1282900214844],[113.707625761719,40.1183730292969],[113.741790800781,40.0982900214844],[113.817943144531,40.0872060371094],[113.85060671875,40.0115383125],[113.820479765625,39.998843],[113.854019804688,39.9847096992188],[113.84209109375,39.9027382636719],[113.817345,39.863843],[113.763511992188,39.8753444648438],[113.73158328125,39.8579946113281],[113.702345,39.8597365546875],[113.682205839844,39.8585366035157],[113.617386503906,39.8700551582032],[113.522625761719,39.8185622382813],[113.492064238281,39.8091237617188],[113.482625761719,39.7985622382813],[113.4708996875,39.7880849433594],[113.4731653125,39.7500661445313],[113.461656523438,39.7179897285156],[113.442345,39.7191408515625],[113.432120390625,39.7185317207032],[113.412625761719,39.7291237617188],[113.397345,39.7338430000001],[113.338970976563,39.7703481269532],[113.316859160156,39.7960121894532],[113.35271609375,39.8184706855469],[113.36197390625,39.8292153144532],[113.438258085938,39.8499794746094],[113.387345,39.8938430000001],[113.387345,39.903843],[113.377345,39.903843],[113.372899199219,39.9393959785156],[113.356771269531,39.96683128125],[113.393155546875,40.0287270332031],[113.38146609375,40.05913596875],[113.394154082031,40.0692958808594],[113.391722441406,40.0888430000001],[113.394039335938,40.10745628125],[113.381790800781,40.1282900214844],[113.377345,40.143843],[113.381790800781,40.1493959785157],[113.398450957031,40.1627370429688],[113.41181765625,40.1794277167969],[113.461790800781,40.2193959785156],[113.482899199219,40.2282900214844],[113.517345,40.253843]]]]}},{"type":"Feature","properties":{"name":"广灵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.998577910156,39.9280788398438],[114.037345,39.913843],[114.058648710938,39.9220314765625],[114.142127714844,39.8981935859375],[114.157345,39.9000868964844],[114.172659941406,39.8981825996094],[114.207345,39.913843],[114.223138457031,39.8992104316406],[114.192535429688,39.8708559394532],[114.211060820313,39.8666115546875],[114.272523222656,39.869048078125],[114.282166777344,39.858637921875],[114.292345,39.8590407539063],[114.302345,39.8586452460937],[114.391617460938,39.8621828437501],[114.392740507813,39.833843],[114.391375761719,39.7993740058594],[114.404447050781,39.7872621894531],[114.397345,39.643843],[114.362379179688,39.6495864082032],[114.347345,39.6473647285157],[114.332345,39.6495815253906],[114.304127226563,39.6454116035156],[114.29298953125,39.6181996894531],[114.23170046875,39.6094863105469],[114.205286894531,39.5935536933595],[114.19298953125,39.6094863105469],[114.165836210938,39.6304445625],[114.096910429688,39.6144741035157],[114.042345,39.6225368476563],[113.999991484375,39.6162783027344],[113.967345,39.6238430000001],[113.963985625,39.670483625],[113.950704375,39.6872023750001],[113.943985625,39.710483625],[113.926031523438,39.7330849433594],[113.911109648438,39.7257973457031],[113.903985625,39.750483625],[113.880704375,39.777202375],[113.872874785156,39.8159865546875],[113.850704375,39.827202375],[113.847345,39.843843],[113.862105742188,39.8384218574219],[113.892345,39.8408522773438],[113.941785917969,39.8368788886719],[113.943551054688,39.8588430000001],[113.941253691406,39.8874330878907],[113.998577910156,39.9280788398438]]]]}},{"type":"Feature","properties":{"name":"天镇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.117345,40.743843],[114.137345,40.7338430000001],[114.162899199219,40.6993959785157],[114.181790800781,40.6682900214844],[114.202899199219,40.6393959785157],[114.217345,40.6051113105469],[114.260504179688,40.6104799628907],[114.274039335938,40.5874562812501],[114.270535917969,40.5592958808594],[114.287803984375,40.5454677558594],[114.264100371094,40.4624575019532],[114.293587675781,40.438843],[114.279793730469,40.4277956367188],[114.301810332031,40.3682387519531],[114.388968535156,40.3573976875001],[114.44263796875,40.3695876289063],[114.47486453125,40.3460463691406],[114.510181914063,40.3504396796876],[114.527345,40.3438430000001],[114.511656523438,40.3048891425782],[114.49170046875,40.2894863105469],[114.470035429688,40.2614174628906],[114.41298953125,40.2481996894532],[114.33170046875,40.2394863105469],[114.282464628906,40.2251308417969],[114.247738066406,40.2302626777344],[114.218138457031,40.1919155097656],[114.192345,40.1881044746094],[114.174783964844,40.19069846875],[114.130101347656,40.1731325507813],[114.096175566406,40.1935964179687],[114.061207304688,40.1792848945313],[114.077345,40.143843],[114.053765898438,40.1498940253906],[114.023260527344,40.1697585273438],[114.001429472656,40.1779274726563],[113.974176054688,40.1956740546875],[113.941051054688,40.2080690742188],[113.943465605469,40.218843],[113.933377714844,40.263843],[113.944217558594,40.3121938300782],[113.9046496875,40.3395131660157],[113.917855253906,40.3984206367188],[113.943260527344,40.4079274726563],[113.973709746094,40.4277553535156],[113.971224394531,40.438843],[113.974586210938,40.453843],[113.963660917969,40.5025771308594],[113.947345,40.513843],[113.951158476563,40.5200307441407],[114.043531523438,40.5276552558595],[114.075975371094,40.5421889472656],[114.064344511719,40.5795302558594],[114.051158476563,40.5876552558594],[114.035858183594,40.6124843574219],[114.053531523438,40.6376552558594],[114.067281523438,40.6779982734375],[114.054307890625,40.7196486640625],[114.089449492188,40.7413014960938],[114.111539335938,40.7344216132813],[114.117345,40.743843]]]]}},{"type":"Feature","properties":{"name":"新荣区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.27271609375,40.3792153144531],[113.313074980469,40.3092153144531],[113.448304472656,40.3231789375],[113.477345,40.333843],[113.50271609375,40.2892153144532],[113.517345,40.253843],[113.482899199219,40.2282900214844],[113.461790800781,40.2193959785156],[113.41181765625,40.1794277167969],[113.398450957031,40.1627370429688],[113.381790800781,40.1493959785157],[113.377345,40.143843],[113.352506132813,40.1494850898438],[113.328951445313,40.1465554023438],[113.332967558594,40.178843],[113.331722441406,40.188843],[113.333448515625,40.2027150703125],[113.352899199219,40.2182900214844],[113.361790800781,40.2306398750001],[113.334935332031,40.2272988105469],[113.322860136719,40.2695290351563],[113.311951933594,40.2681728339844],[113.282200957031,40.2899062324219],[113.272899199219,40.2782900214845],[113.23361453125,40.2617360664063],[113.283214140625,40.2408351875],[113.281241484375,40.2249709296875],[113.253057890625,40.2024025703125],[113.241632109375,40.1752834296876],[113.205328398438,40.1462111640625],[113.182899199219,40.1593959785157],[113.149046660156,40.1736611152344],[113.122703886719,40.1581764960938],[113.102799101563,40.1606520820313],[113.092899199219,40.1482900214844],[113.079251738281,40.1373622871094],[113.052799101563,40.1406520820313],[113.039344511719,40.1238503242188],[113.012703886719,40.1395095039063],[112.992799101563,40.1370339179688],[112.982899199219,40.1493959785157],[112.957345,40.153843],[112.949420195313,40.1578530097657],[112.955269804688,40.1698329902344],[112.940704375,40.1772023750001],[112.933985625,40.200483625],[112.9048840625,40.2088820625],[112.883985625,40.2504836250001],[112.867345,40.253843],[112.882899199219,40.2882900214844],[112.894901152344,40.3302712226563],[112.977345,40.3538430000001],[113.12271609375,40.378470685547],[113.16197390625,40.3892153144532],[113.20271609375,40.3984706855469],[113.249906035156,40.4113857246094],[113.27271609375,40.3792153144531]]]]}},{"type":"Feature","properties":{"name":"阳高县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.974586210938,40.453843],[113.971224394531,40.438843],[113.973709746094,40.4277553535156],[113.943260527344,40.4079274726563],[113.917855253906,40.3984206367188],[113.9046496875,40.3395131660157],[113.944217558594,40.3121938300782],[113.933377714844,40.263843],[113.943465605469,40.218843],[113.941051054688,40.2080690742188],[113.974176054688,40.1956740546875],[114.001429472656,40.1779274726563],[114.023260527344,40.1697585273438],[114.053765898438,40.1498940253906],[114.077345,40.143843],[114.081790800781,40.1282900214844],[114.099210234375,40.0986586738282],[114.069534941406,40.0616030097657],[114.038219023438,40.0577077460938],[114.007962675781,40.1075221992188],[113.968792753906,40.1123940253906],[113.97490359375,40.0632802558594],[113.948065214844,40.0297670722657],[113.902899199219,40.0168532539063],[113.91343875,40.006704328125],[114.015892363281,39.9888747382813],[114.037345,39.913843],[113.998577910156,39.9280788398438],[113.941253691406,39.8874330878907],[113.943551054688,39.8588430000001],[113.941785917969,39.8368788886719],[113.892345,39.8408522773438],[113.862105742188,39.8384218574219],[113.847345,39.843843],[113.817345,39.863843],[113.84209109375,39.9027382636719],[113.854019804688,39.9847096992188],[113.820479765625,39.998843],[113.85060671875,40.0115383125],[113.817943144531,40.0872060371094],[113.741790800781,40.0982900214844],[113.707625761719,40.1183730292969],[113.661790800781,40.1282900214844],[113.606109648438,40.1637148261719],[113.61302859375,40.219341046875],[113.582928496094,40.2320253730469],[113.551951933594,40.2281716132813],[113.517345,40.253843],[113.50271609375,40.2892153144532],[113.477345,40.333843],[113.551868925781,40.3402040839844],[113.692064238281,40.4491237617188],[113.749115019531,40.4710561347656],[113.787345,40.513843],[113.810784941406,40.507827375],[113.83201296875,40.4770839667969],[113.870357695313,40.4521132636719],[113.893260527344,40.4679274726562],[113.9056653125,40.4858925605469],[113.947345,40.513843],[113.963660917969,40.5025771308594],[113.974586210938,40.453843]]]]}},{"type":"Feature","properties":{"name":"左云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.955269804688,40.1698329902344],[112.949420195313,40.1578530097657],[112.957345,40.153843],[112.970282011719,40.1194155097656],[112.952806425781,40.0983803535156],[112.913089628906,40.0811550117188],[112.910816679688,40.058843],[112.913873320313,40.028843],[112.911790800781,40.0084011054688],[112.971883574219,39.9950759101563],[112.961617460938,39.9648818183594],[112.932806425781,39.9483803535157],[112.862806425781,39.9359059882813],[112.900487089844,39.9046584296875],[112.937345,39.8938430000001],[112.941429472656,39.8879274726563],[112.961429472656,39.8741188789063],[112.952059355469,39.8555446601563],[112.931673613281,39.8601137519531],[112.91392703125,39.8344081855469],[112.873260527344,39.8079274726563],[112.803734160156,39.7987416816406],[112.797345,39.773843],[112.751248808594,39.7699404121094],[112.740767851563,39.7535707832032],[112.686112089844,39.7775392890625],[112.673441191406,39.7577455878907],[112.637345,39.753843],[112.611365996094,39.761664044922],[112.615028105469,39.8072243476563],[112.590311308594,39.8285195136719],[112.597401152344,39.9167641425782],[112.636783476563,40.0240041328125],[112.611219511719,40.0698232246094],[112.6127746875,40.0891896796875],[112.581485625,40.1031508613281],[112.582747832031,40.1188430000001],[112.579547148438,40.1586635566407],[112.623170195313,40.1685744453125],[112.598407011719,40.2035012031251],[112.617345,40.2338430000001],[112.642899199219,40.2193959785156],[112.671790800781,40.1982900214844],[112.735018339844,40.1598854804688],[112.829058867188,40.1960341621094],[112.855211210938,40.2114064765625],[112.867345,40.253843],[112.883985625,40.2504836250001],[112.9048840625,40.2088820625],[112.933985625,40.200483625],[112.940704375,40.1772023750001],[112.955269804688,40.1698329902344]]]]}},{"type":"Feature","properties":{"name":"南郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,39.903843],[113.387345,39.903843],[113.387345,39.8938430000001],[113.377345,39.8938430000001],[113.377345,39.903843]]],[[[113.377345,39.903843],[113.35197390625,39.9084706855469],[113.32271609375,39.9292153144532],[113.284012480469,39.9464858222657],[113.234410429688,39.9584706855469],[113.134290800781,39.9026113105469],[113.042489042969,39.9192568183594],[112.942579375,39.9112282539062],[112.937345,39.8938430000001],[112.900487089844,39.9046584296875],[112.862806425781,39.9359059882813],[112.932806425781,39.9483803535157],[112.961617460938,39.9648818183594],[112.971883574219,39.9950759101563],[112.911790800781,40.0084011054688],[112.913873320313,40.028843],[112.910816679688,40.058843],[112.913089628906,40.0811550117188],[112.952806425781,40.0983803535156],[112.970282011719,40.1194155097656],[112.957345,40.153843],[112.982899199219,40.1493959785157],[112.992799101563,40.1370339179688],[113.012703886719,40.1395095039063],[113.039344511719,40.1238503242188],[113.052799101563,40.1406520820313],[113.079251738281,40.1373622871094],[113.092899199219,40.1482900214844],[113.102799101563,40.1606520820313],[113.122703886719,40.1581764960938],[113.149046660156,40.1736611152344],[113.182899199219,40.1593959785157],[113.205328398438,40.1462111640625],[113.241632109375,40.1752834296876],[113.253057890625,40.2024025703125],[113.281241484375,40.2249709296875],[113.283214140625,40.2408351875],[113.23361453125,40.2617360664063],[113.272899199219,40.2782900214845],[113.282200957031,40.2899062324219],[113.311951933594,40.2681728339844],[113.322860136719,40.2695290351563],[113.334935332031,40.2272988105469],[113.361790800781,40.2306398750001],[113.352899199219,40.2182900214844],[113.333448515625,40.2027150703125],[113.331722441406,40.188843],[113.332967558594,40.178843],[113.328951445313,40.1465554023438],[113.352506132813,40.1494850898438],[113.377345,40.143843],[113.381790800781,40.1282900214844],[113.394039335938,40.10745628125],[113.391722441406,40.0888430000001],[113.394154082031,40.0692958808594],[113.38146609375,40.05913596875],[113.393155546875,40.0287270332031],[113.356771269531,39.96683128125],[113.372899199219,39.9393959785156],[113.377345,39.903843]],[[113.306444121094,40.127387921875],[113.287193632813,40.1382900214844],[113.252999296875,40.0819948554688],[113.282899199219,40.0693959785157],[113.291790800781,40.0582900214844],[113.317345,40.053843],[113.323011503906,40.0992018867188],[113.306444121094,40.127387921875]]]]}},{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.323011503906,40.0992018867188],[113.317345,40.053843],[113.291790800781,40.0582900214844],[113.282899199219,40.0693959785157],[113.252999296875,40.0819948554688],[113.287193632813,40.1382900214844],[113.306444121094,40.127387921875],[113.323011503906,40.0992018867188]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.650975371094,37.8489772773438],[113.617703886719,37.8349379707032],[113.602345,37.840727765625],[113.574998808594,37.8304201484375],[113.563714628906,37.8502114082031],[113.557345,37.853843],[113.567345,37.8738430000001],[113.600975371094,37.8574745917969],[113.650975371094,37.8489772773438]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.647345,38.083843],[113.642081328125,38.05868675],[113.662535429688,38.0490334296875],[113.672154570313,38.0286525703126],[113.682808867188,38.0187807441407],[113.661881132813,38.0089052558594],[113.683138457031,37.9892104316406],[113.651295195313,37.9597072578126],[113.701990996094,37.8974135566407],[113.672110625,37.8697280097656],[113.67291140625,37.8495546699219],[113.632615996094,37.8218263984376],[113.541851835938,37.8182289863282],[113.48443484375,37.8486110664063],[113.472535429688,37.7986525703126],[113.452154570313,37.7890334296876],[113.427345,37.773843],[113.423531523438,37.7800307441407],[113.40281375,37.7927968574219],[113.393531523438,37.8200307441407],[113.363699980469,37.8301967597657],[113.353531523438,37.8600307441407],[113.313531523438,37.9065175605469],[113.330819121094,37.9598220039063],[113.337345,37.963843],[113.375203886719,37.9550710273438],[113.422345,37.9481044746094],[113.432345,37.9495815253907],[113.449866972656,37.9469924140625],[113.467835722656,38.0115126777345],[113.5064075,37.9963491035157],[113.499876738281,38.0405544257813],[113.54298953125,38.0581996894532],[113.561954375,38.0696401191407],[113.581832304688,38.0667018867188],[113.592857695313,38.0809841132813],[113.612857695313,38.0780287910156],[113.624329863281,38.0928908515626],[113.647345,38.083843]],[[113.507345,37.893843],[113.492733183594,37.8812538886719],[113.517345,37.8738430000001],[113.52170046875,37.8681996894532],[113.557345,37.853843],[113.563714628906,37.8502114082031],[113.574998808594,37.8304201484375],[113.602345,37.840727765625],[113.617703886719,37.8349379707032],[113.650975371094,37.8489772773438],[113.600975371094,37.8574745917969],[113.567345,37.8738430000001],[113.550159941406,37.8766591621094],[113.542345,37.8966005683594],[113.534530058594,37.8766591621094],[113.517345,37.8738430000001],[113.530162382813,37.9063503242188],[113.512408476563,37.9173830390626],[113.507345,37.893843]]]]}},{"type":"Feature","properties":{"name":"矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.517345,37.8738430000001],[113.492733183594,37.8812538886719],[113.507345,37.893843],[113.517345,37.8738430000001]]],[[[113.517345,37.8738430000001],[113.534530058594,37.8766591621094],[113.542345,37.8966005683594],[113.550159941406,37.8766591621094],[113.567345,37.8738430000001],[113.557345,37.853843],[113.52170046875,37.8681996894532],[113.517345,37.8738430000001]]],[[[113.507345,37.893843],[113.512408476563,37.9173830390626],[113.530162382813,37.9063503242188],[113.507345,37.893843]]]]}},{"type":"Feature","properties":{"name":"平定县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.834547148438,38.0910463691407],[113.851610136719,38.0681081367188],[113.870933867188,38.053734357422],[113.861373320313,37.9982021308594],[113.890035429688,37.9868141914063],[113.913079863281,37.9495778632813],[113.923055449219,37.9244728828125],[113.960094023438,37.8969216132813],[113.964928007813,37.8688430000001],[113.957178984375,37.823843],[113.999764433594,37.8069216132812],[114.041610136719,37.7757924628907],[114.029034453125,37.7497231269532],[113.983079863281,37.7372646308594],[113.991610136719,37.7181081367188],[113.997345,37.713843],[113.979149199219,37.6813405585938],[113.916322050781,37.7060390449219],[113.881173125,37.7112331367188],[113.825032988281,37.677368390625],[113.761832304688,37.6680287910157],[113.746263457031,37.6881996894532],[113.69170046875,37.6794863105469],[113.658546171875,37.6594863105469],[113.63170046875,37.6681996894531],[113.610767851563,37.6808266425782],[113.547127714844,37.6714223457032],[113.48170046875,37.6981996894531],[113.457345,37.713843],[113.44170046875,37.7381996894531],[113.427345,37.773843],[113.452154570313,37.7890334296876],[113.472535429688,37.7986525703126],[113.48443484375,37.8486110664063],[113.541851835938,37.8182289863282],[113.632615996094,37.8218263984376],[113.67291140625,37.8495546699219],[113.672110625,37.8697280097656],[113.701990996094,37.8974135566407],[113.651295195313,37.9597072578126],[113.683138457031,37.9892104316406],[113.661881132813,38.0089052558594],[113.682808867188,38.0187807441407],[113.672154570313,38.0286525703126],[113.662535429688,38.0490334296875],[113.642081328125,38.05868675],[113.647345,38.083843],[113.662806425781,38.0883803535157],[113.697345,38.1081618476563],[113.75127078125,38.0772756171875],[113.781883574219,38.0993056464844],[113.807345,38.113843],[113.811610136719,38.1081081367188],[113.834547148438,38.0910463691407]]]]}},{"type":"Feature","properties":{"name":"盂县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.727345,38.1738430000001],[113.715152617188,38.1704201484375],[113.723922148438,38.1616506171876],[113.76170046875,38.1681996894531],[113.827345,38.163843],[113.823985625,38.147202375],[113.807345,38.113843],[113.781883574219,38.0993056464844],[113.75127078125,38.0772756171875],[113.697345,38.1081618476563],[113.662806425781,38.0883803535157],[113.647345,38.083843],[113.624329863281,38.0928908515626],[113.612857695313,38.0780287910156],[113.592857695313,38.0809841132813],[113.581832304688,38.0667018867188],[113.561954375,38.0696401191407],[113.54298953125,38.0581996894532],[113.499876738281,38.0405544257813],[113.5064075,37.9963491035157],[113.467835722656,38.0115126777345],[113.449866972656,37.9469924140625],[113.432345,37.9495815253907],[113.422345,37.9481044746094],[113.375203886719,37.9550710273438],[113.337345,37.963843],[113.318377714844,37.9913161445313],[113.286571074219,37.9841860175781],[113.273260527344,38.0197585273438],[113.261429472656,38.0279274726563],[113.246800566406,38.0491139960938],[113.253638945313,38.0796169257813],[113.2120715625,38.095171125],[113.187310820313,38.059310529297],[113.159329863281,38.0497585273438],[113.112264433594,38.0804067207032],[113.083260527344,38.0579274726563],[113.057345,38.053843],[113.05298953125,38.059486310547],[113.04170046875,38.0681996894532],[113.03298953125,38.0794863105469],[113.00170046875,38.0881996894531],[112.964891386719,38.1104030585938],[112.952916289063,38.1396657539063],[112.933502226563,38.1367971015626],[112.91298953125,38.1527614570312],[112.933160429688,38.1683315253907],[112.931546660156,38.1792458320313],[112.967730742188,38.2355837226563],[113.02298953125,38.2581996894532],[113.03170046875,38.2694863105469],[113.069928007813,38.2989931464844],[113.10298953125,38.3081996894531],[113.146558867188,38.3253273750001],[113.141605253906,38.358843],[113.143865996094,38.3741408515625],[113.137345,38.413843],[113.193260527344,38.4179274726563],[113.211429472656,38.4297585273438],[113.271007109375,38.4391481757813],[113.277345,38.463843],[113.307122832031,38.483520734375],[113.363260527344,38.4979274726563],[113.389097929688,38.5147524238281],[113.419144316406,38.5214882636719],[113.470780058594,38.49980003125],[113.501898222656,38.5200637031251],[113.512386503906,38.5177126289063],[113.537345,38.5238430000001],[113.553033476563,38.4848891425781],[113.586009550781,38.4594362617188],[113.56170046875,38.4494863105469],[113.55298953125,38.4281996894531],[113.525775175781,38.4170619941406],[113.519427519531,38.3741005683594],[113.53170046875,38.3581996894531],[113.554456816406,38.3406337714844],[113.53298953125,38.3050429511719],[113.54170046875,38.2581996894532],[113.55298953125,38.2494863105469],[113.56170046875,38.2381996894531],[113.6471496875,38.2290407539063],[113.683922148438,38.2068593574219],[113.702857695313,38.2096572089844],[113.71170046875,38.1981996894531],[113.72298953125,38.1894863105469],[113.727345,38.1738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.01205203125,36.1696254707031],[113.027345,36.1673647285156],[113.042379179688,36.1695864082031],[113.077345,36.163843],[113.083260527344,36.1597585273438],[113.092381621094,36.1353823066407],[113.137345,36.1238430000001],[113.177345,36.1538430000001],[113.171722441406,36.1088442207032],[113.175711699219,36.0767787910156],[113.148450957031,36.0427370429688],[113.122899199219,36.0222743964844],[113.136820097656,36.0003847480469],[113.164210234375,35.988843],[113.160863066406,35.9619362617188],[113.171790800781,35.9482900214844],[113.184742460938,35.9379189277344],[113.197345,35.8938430000001],[113.173470488281,35.8877162910156],[113.137345,35.863843],[113.121258574219,35.8846840644532],[113.04170046875,35.8981996894532],[113.03298953125,35.9094863105469],[113.01170046875,35.9181996894531],[112.989857207031,35.9313759589844],[112.957345,35.9238430000001],[112.961519804688,35.9396681953126],[112.979674101563,35.983843],[112.95861453125,36.0350905585938],[112.973170195313,36.0580178046875],[112.981571074219,36.1099843574219],[113.003983183594,36.1055556464844],[113.001356230469,36.1188430000001],[113.005186796875,36.1382228828126],[112.983392363281,36.1538430000001],[112.997345,36.163843],[113.01205203125,36.1696254707031]]]]}},{"type":"Feature","properties":{"name":"长子县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.871705351563,36.2622267890626],[112.882345,36.236977765625],[112.93134890625,36.2430727363282],[112.941790800781,36.2182900214844],[112.987345,36.213843],[112.993985625,36.200483625],[112.997345,36.163843],[112.983392363281,36.1538430000001],[113.005186796875,36.1382228828126],[113.001356230469,36.1188430000001],[113.003983183594,36.1055556464844],[112.981571074219,36.1099843574219],[112.973170195313,36.0580178046875],[112.95861453125,36.0350905585938],[112.979674101563,35.983843],[112.961519804688,35.9396681953126],[112.957345,35.9238430000001],[112.870928984375,35.9300893378906],[112.87369265625,35.9764723945313],[112.787345,35.983843],[112.781429472656,35.9879274726563],[112.74384890625,35.996352765625],[112.717669707031,36.0133998847657],[112.67435671875,36.0036891914063],[112.651007109375,36.037505109375],[112.612215605469,36.0642885566407],[112.573260527344,36.0479274726562],[112.531429472656,36.0397585273438],[112.517345,36.033843],[112.484537382813,36.0390138984375],[112.496024199219,36.0902529121094],[112.543260527344,36.1079274726563],[112.566165800781,36.1228432441406],[112.549595976563,36.1622927070313],[112.557345,36.1938430000001],[112.596629667969,36.2001760078125],[112.64047,36.1947231269532],[112.728717070313,36.2199538398438],[112.761790800781,36.2393959785157],[112.822899199219,36.2482900214844],[112.871705351563,36.2622267890626]]]]}},{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.1437903125,36.1522194648438],[113.137345,36.1238430000001],[113.092381621094,36.1353823066407],[113.083260527344,36.1597585273438],[113.077345,36.163843],[113.071688261719,36.1785597968751],[113.073587675781,36.1938430000001],[113.070548125,36.2182900214844],[113.144080839844,36.2078005195312],[113.140479765625,36.178843],[113.1437903125,36.1522194648438]]]]}},{"type":"Feature","properties":{"name":"壶关县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297345,36.183843],[113.309537382813,36.1804201484376],[113.300767851563,36.1716506171875],[113.297345,36.183843]]],[[[113.297345,36.183843],[113.272899199219,36.1642665839844],[113.291790800781,36.1482900214844],[113.339932890625,36.1345253730469],[113.372899199219,36.0893959785156],[113.387457304688,36.03847190625],[113.422345,36.0179653144531],[113.44822390625,36.0331777167969],[113.502899199219,35.9893959785157],[113.511947050781,35.9679238105469],[113.548507109375,35.9819777656251],[113.57373171875,35.9671498847656],[113.592799101563,35.9695217109376],[113.6067590625,35.9520864082032],[113.637345,35.9638430000001],[113.649439726563,35.9554921699219],[113.641224394531,35.918843],[113.643499785156,35.908696515625],[113.629381132813,35.8631508613282],[113.657345,35.843843],[113.643880644531,35.8263991523438],[113.617047148438,35.8303652167969],[113.577345,35.823843],[113.56170046875,35.8281996894532],[113.547122832031,35.8470851875001],[113.436619902344,35.8658571601563],[113.412857695313,35.83507346875],[113.377838164063,35.8402480292969],[113.340965605469,35.8880190253906],[113.272120390625,35.8679457832032],[113.235484648438,35.8900453925782],[113.222203398438,35.8880825019531],[113.197345,35.8938430000001],[113.184742460938,35.9379189277344],[113.171790800781,35.9482900214844],[113.160863066406,35.9619362617188],[113.164210234375,35.988843],[113.136820097656,36.0003847480469],[113.122899199219,36.0222743964844],[113.148450957031,36.0427370429688],[113.175711699219,36.0767787910156],[113.171722441406,36.1088442207032],[113.177345,36.1538430000001],[113.197782011719,36.165044171875],[113.173978300781,36.1965163398438],[113.193804960938,36.2073830390626],[113.197345,36.213843],[113.237047148438,36.2073207832032],[113.261832304688,36.2109841132813],[113.27170046875,36.1981996894532],[113.29298953125,36.1894863105469],[113.297345,36.183843]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.062899199219,36.3742665839844],[113.092511015625,36.3681410957031],[113.136229277344,36.3849452949219],[113.120365019531,36.2579750800781],[113.132345,36.2594643378907],[113.142347441406,36.2582204414063],[113.187345,36.263843],[113.190704375,36.247202375],[113.204989042969,36.2292201972657],[113.197345,36.213843],[113.193804960938,36.2073830390626],[113.173978300781,36.1965163398438],[113.197782011719,36.165044171875],[113.177345,36.1538430000001],[113.137345,36.1238430000001],[113.1437903125,36.1522194648438],[113.140479765625,36.178843],[113.144080839844,36.2078005195312],[113.070548125,36.2182900214844],[113.073587675781,36.1938430000001],[113.071688261719,36.1785597968751],[113.077345,36.163843],[113.042379179688,36.1695864082031],[113.027345,36.1673647285156],[113.01205203125,36.1696254707031],[112.997345,36.163843],[112.993985625,36.200483625],[112.987345,36.213843],[113.013079863281,36.2281081367187],[113.021610136719,36.2795778632813],[113.040933867188,36.2939516425782],[113.026143828125,36.379858625],[113.001610136719,36.3981081367188],[112.997345,36.403843],[113.01062625,36.41056175],[113.017345,36.4238430000001],[113.079847441406,36.4339186835937],[113.083011503906,36.4084828925782],[113.062899199219,36.3742665839844]]]]}},{"type":"Feature","properties":{"name":"黎城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.547345,36.493843],[113.535152617188,36.4904201484375],[113.543922148438,36.4816506171876],[113.573985625,36.4804836250001],[113.580704375,36.457202375],[113.587345,36.453843],[113.580484648438,36.4442702460938],[113.544285917969,36.4514235664063],[113.520404082031,36.4362624335938],[113.46580203125,36.4470522285157],[113.434715605469,36.3934340644532],[113.402056914063,36.399887921875],[113.387345,36.393843],[113.38298953125,36.4194863105469],[113.343734160156,36.4497866035157],[113.320633574219,36.4463735175782],[113.302733183594,36.4901100898438],[113.28298953125,36.4781996894531],[113.237345,36.473843],[113.243424101563,36.4893080878907],[113.22170046875,36.4981996894532],[113.20298953125,36.5094863105469],[113.18170046875,36.5181996894531],[113.168992949219,36.5784194160156],[113.194520292969,36.6207387519532],[113.212345,36.6181044746094],[113.224561796875,36.6199098945313],[113.217345,36.663843],[113.242806425781,36.6783803535157],[113.251883574219,36.6993056464844],[113.304671660156,36.7110109687501],[113.299915800781,36.7576723457031],[113.312806425781,36.7683803535157],[113.321883574219,36.7993056464844],[113.351585722656,36.8239784980469],[113.327965117188,36.8652211738281],[113.357345,36.873843],[113.410086699219,36.8648830390625],[113.44298953125,36.8394863105469],[113.457464628906,36.8207338691407],[113.49298953125,36.7994863105469],[113.503153105469,36.7629848457031],[113.537345,36.743843],[113.526217070313,36.729946515625],[113.511986113281,36.7281764960938],[113.478516875,36.7478493476563],[113.453082304688,36.7045815253907],[113.50150515625,36.7106044746094],[113.504154082031,36.6892958808594],[113.462899199219,36.6562587714844],[113.483929472656,36.6362563300782],[113.543455839844,36.6192372871094],[113.530096464844,36.5965114570313],[113.591790800781,36.5531447578125],[113.582899199219,36.5482900214844],[113.540704375,36.5391603828125],[113.555032988281,36.5276869941407],[113.547345,36.493843]]]]}},{"type":"Feature","properties":{"name":"潞城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.302733183594,36.4901100898438],[113.320633574219,36.4463735175782],[113.343734160156,36.4497866035157],[113.38298953125,36.4194863105469],[113.387345,36.393843],[113.393350859375,36.3716921210938],[113.431610136719,36.3432314277344],[113.423079863281,36.3281081367188],[113.401610136719,36.3195778632813],[113.380907011719,36.2620742011719],[113.358253203125,36.2316200996094],[113.299700957031,36.267856671875],[113.236561308594,36.2569863105469],[113.221610136719,36.2681081367188],[113.212601347656,36.280219953125],[113.187345,36.263843],[113.142347441406,36.2582204414063],[113.132345,36.2594643378907],[113.120365019531,36.2579750800781],[113.136229277344,36.3849452949219],[113.092511015625,36.3681410957031],[113.062899199219,36.3742665839844],[113.083011503906,36.4084828925782],[113.079847441406,36.4339186835937],[113.017345,36.4238430000001],[112.98271609375,36.4301601386719],[112.999874296875,36.4469448066406],[113.125484648438,36.4743434882813],[113.16580203125,36.4457558417969],[113.237345,36.473843],[113.28298953125,36.4781996894531],[113.302733183594,36.4901100898438]]]]}},{"type":"Feature","properties":{"name":"平顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297345,36.183843],[113.300767851563,36.1716506171875],[113.309537382813,36.1804201484376],[113.29298953125,36.1894863105469],[113.27170046875,36.1981996894532],[113.261832304688,36.2109841132813],[113.237047148438,36.2073207832032],[113.197345,36.213843],[113.204989042969,36.2292201972657],[113.190704375,36.247202375],[113.187345,36.263843],[113.212601347656,36.280219953125],[113.221610136719,36.2681081367188],[113.236561308594,36.2569863105469],[113.299700957031,36.267856671875],[113.358253203125,36.2316200996094],[113.380907011719,36.2620742011719],[113.401610136719,36.3195778632813],[113.423079863281,36.3281081367188],[113.431610136719,36.3432314277344],[113.393350859375,36.3716921210938],[113.387345,36.393843],[113.402056914063,36.399887921875],[113.434715605469,36.3934340644532],[113.46580203125,36.4470522285157],[113.520404082031,36.4362624335938],[113.544285917969,36.4514235664063],[113.580484648438,36.4442702460938],[113.587345,36.453843],[113.613333769531,36.4640590644531],[113.66170046875,36.4281996894532],[113.70298953125,36.4194863105469],[113.71170046875,36.3981996894532],[113.737345,36.363843],[113.727345,36.363843],[113.727345,36.3538430000001],[113.722806425781,36.3083803535157],[113.711883574219,36.2993056464844],[113.699168730469,36.2419716621094],[113.671151152344,36.2186977363282],[113.698233671875,36.2069521308594],[113.675455351563,36.1795290351563],[113.650816679688,36.168843],[113.701883574219,36.1466957832032],[113.691800566406,36.1263503242188],[113.657576933594,36.12983909375],[113.681663847656,36.0657363105469],[113.652806425781,36.0417678046875],[113.661883574219,36.0283803535157],[113.691136503906,36.0156935859375],[113.693807402344,35.9895021796876],[113.672345,35.9873146796875],[113.63310671875,35.991313703125],[113.631807890625,35.9785781074219],[113.637345,35.9638430000001],[113.6067590625,35.9520864082032],[113.592799101563,35.9695217109376],[113.57373171875,35.9671498847656],[113.548507109375,35.9819777656251],[113.511947050781,35.9679238105469],[113.502899199219,35.9893959785157],[113.44822390625,36.0331777167969],[113.422345,36.0179653144531],[113.387457304688,36.03847190625],[113.372899199219,36.0893959785156],[113.339932890625,36.1345253730469],[113.291790800781,36.1482900214844],[113.272899199219,36.1642665839844],[113.297345,36.183843]]]]}},{"type":"Feature","properties":{"name":"沁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.697345,36.9238430000001],[112.700767851563,36.9116506171875],[112.709537382813,36.9204201484375],[112.706151152344,36.93483909375],[112.762899199219,36.8893959785157],[112.771790800781,36.8682900214844],[112.793917265625,36.8306508613281],[112.765130644531,36.7639626289063],[112.797345,36.7450258613281],[112.824871855469,36.7612062812501],[112.852899199219,36.7493959785156],[112.872100859375,36.7381081367188],[112.897345,36.743843],[112.880784941406,36.6859267402344],[112.84373171875,36.6905361152344],[112.822899199219,36.6782900214844],[112.783311796875,36.6616091132813],[112.781722441406,36.648843],[112.783016386719,36.6384511542969],[112.761790800781,36.6093959785157],[112.74697390625,36.5575698066407],[112.70088015625,36.5206594062501],[112.707345,36.5038430000001],[112.681790800781,36.4993959785157],[112.669056425781,36.4405361152344],[112.588914824219,36.4293959785157],[112.56416140625,36.4603066230469],[112.532899199219,36.4482900214844],[112.487345,36.443843],[112.478839140625,36.4956252265625],[112.503416777344,36.5287770820313],[112.478768339844,36.5696401191406],[112.484202910156,36.6064174628907],[112.51298953125,36.6181996894532],[112.53170046875,36.6518276191406],[112.49170046875,36.6681996894532],[112.480667753906,36.6824941230469],[112.488922148438,36.7383498359376],[112.52677859375,36.753843],[112.521605253906,36.788843],[112.526038847656,36.818843],[112.52156375,36.8491347480469],[112.537860136719,36.8905922675781],[112.49170046875,36.9181996894532],[112.467345,36.9538430000001],[112.50002078125,36.9458168769532],[112.521898222656,36.960063703125],[112.533016386719,36.9575722480469],[112.541429472656,36.9697585273438],[112.547345,36.973843],[112.551429472656,36.9679274726563],[112.590924101563,36.9577919746094],[112.62384890625,36.936352765625],[112.662345,36.9277223945313],[112.679144316406,36.9314882636719],[112.697345,36.9238430000001]]]]}},{"type":"Feature","properties":{"name":"沁源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.313531523438,36.9500307441406],[112.332816191406,36.9364919257812],[112.345855742188,36.9576552558594],[112.383531523438,36.9500307441406],[112.428179960938,36.9300307441407],[112.453531523438,36.9376552558594],[112.461158476563,36.9500307441406],[112.467345,36.9538430000001],[112.49170046875,36.9181996894532],[112.537860136719,36.8905922675781],[112.52156375,36.8491347480469],[112.526038847656,36.818843],[112.521605253906,36.788843],[112.52677859375,36.753843],[112.488922148438,36.7383498359376],[112.480667753906,36.6824941230469],[112.49170046875,36.6681996894532],[112.53170046875,36.6518276191406],[112.51298953125,36.6181996894532],[112.484202910156,36.6064174628907],[112.478768339844,36.5696401191406],[112.503416777344,36.5287770820313],[112.478839140625,36.4956252265625],[112.487345,36.443843],[112.493587675781,36.4184291816407],[112.479456816406,36.3967287421876],[112.483616972656,36.3781728339844],[112.465513945313,36.3656740546875],[112.453260527344,36.3479274726563],[112.437345,36.3438430000001],[112.422628203125,36.3381862617188],[112.341834746094,36.3482350898438],[112.332899199219,36.3593959785156],[112.281790800781,36.3782900214844],[112.268450957031,36.3949489570312],[112.249251738281,36.4103237128906],[112.201163359375,36.4043422675782],[112.203016386719,36.4192372871094],[112.177345,36.453843],[112.171676054688,36.4991677070313],[112.09267703125,36.5546962714844],[112.072899199219,36.5793959785157],[112.037345,36.5838430000001],[112.031214628906,36.6088014960938],[112.036900664063,36.6341677070312],[112.021429472656,36.6579274726562],[112.010184355469,36.6879824042969],[111.987345,36.6938430000001],[111.996370878906,36.7131618476562],[111.990460234375,36.7288430000001],[111.996890898438,36.7459047675781],[111.98029421875,36.7683998847657],[111.984229765625,36.778843],[111.973922148438,36.8061891914063],[112.00630984375,36.8246559882813],[111.997345,36.8438430000001],[112.013170195313,36.8480178046875],[112.0230871875,36.8856117988282],[112.067554960938,36.8768251777344],[112.084320097656,36.8888430000001],[112.069503203125,36.8994631171876],[112.076431914063,36.9345290351563],[112.054959746094,36.9683522773438],[112.123995390625,36.982192609375],[112.151519804688,36.9996681953125],[112.167345,37.003843],[112.213531523438,37.0000307441407],[112.239969511719,36.9814675117188],[112.273531523438,36.9700307441407],[112.291158476563,36.9576552558594],[112.313531523438,36.9500307441406]]]]}},{"type":"Feature","properties":{"name":"屯留县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.724263945313,36.4827150703125],[112.766951933594,36.4663063789063],[112.792579375,36.4694936347657],[112.862110625,36.4481923652344],[112.882117949219,36.4506801582032],[112.916688261719,36.3937660957032],[112.997345,36.403843],[113.001610136719,36.3981081367188],[113.026143828125,36.379858625],[113.040933867188,36.2939516425782],[113.021610136719,36.2795778632813],[113.013079863281,36.2281081367187],[112.987345,36.213843],[112.941790800781,36.2182900214844],[112.93134890625,36.2430727363282],[112.882345,36.236977765625],[112.871705351563,36.2622267890626],[112.822899199219,36.2482900214844],[112.761790800781,36.2393959785157],[112.728717070313,36.2199538398438],[112.64047,36.1947231269532],[112.596629667969,36.2001760078125],[112.557345,36.1938430000001],[112.564588652344,36.2703212714844],[112.540418730469,36.2575319648437],[112.476121855469,36.2600807929688],[112.437345,36.3438430000001],[112.453260527344,36.3479274726563],[112.465513945313,36.3656740546875],[112.483616972656,36.3781728339844],[112.479456816406,36.3967287421876],[112.493587675781,36.4184291816407],[112.487345,36.443843],[112.532899199219,36.4482900214844],[112.56416140625,36.4603066230469],[112.588914824219,36.4293959785157],[112.669056425781,36.4405361152344],[112.681790800781,36.4993959785157],[112.707345,36.5038430000001],[112.724263945313,36.4827150703125]]]]}},{"type":"Feature","properties":{"name":"武乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.697345,36.9238430000001],[112.709537382813,36.9204201484375],[112.700767851563,36.9116506171875],[112.697345,36.9238430000001]]],[[[112.697345,36.9238430000001],[112.679144316406,36.9314882636719],[112.662345,36.9277223945313],[112.62384890625,36.936352765625],[112.590924101563,36.9577919746094],[112.551429472656,36.9679274726563],[112.547345,36.973843],[112.542899199219,36.9793959785156],[112.511790800781,36.9982900214844],[112.481615019531,37.0479726386719],[112.483587675781,37.063843],[112.481241484375,37.0827150703125],[112.456239042969,37.1027370429688],[112.447345,37.1138430000001],[112.513961210938,37.1247866035156],[112.511522246094,37.1082729316406],[112.53298953125,37.0994863105469],[112.548426542969,37.0794863105469],[112.59298953125,37.0881996894531],[112.647345,37.123843],[112.658526640625,37.1093581367188],[112.731004667969,37.0829140449219],[112.733822050781,37.063843],[112.731522246094,37.0482729316407],[112.759659453125,37.0367568183594],[112.78170046875,37.0081996894532],[112.83298953125,36.9994863105469],[112.85170046875,36.9881996894531],[112.878448515625,36.9772524238282],[112.857054472656,36.9417848945313],[112.874486113281,36.9283315253906],[112.869163847656,36.8923220039063],[112.908856230469,36.8628945136719],[113.009227324219,36.937309796875],[113.093558378906,36.91776878125],[113.14298953125,36.9281996894532],[113.151956816406,36.9501100898438],[113.184046660156,36.9307521796875],[113.217345,36.943843],[113.226175566406,36.9310524726563],[113.273260527344,36.9579274726563],[113.293892851563,36.9878102851563],[113.321429472656,36.9479274726563],[113.359586210938,36.9261476875],[113.364647246094,36.9035732246094],[113.357345,36.873843],[113.327965117188,36.8652211738281],[113.351585722656,36.8239784980469],[113.321883574219,36.7993056464844],[113.312806425781,36.7683803535157],[113.299915800781,36.7576723457031],[113.304671660156,36.7110109687501],[113.251883574219,36.6993056464844],[113.242806425781,36.6783803535157],[113.217345,36.663843],[113.189075957031,36.6686452460938],[113.17298953125,36.6894863105469],[113.128912382813,36.7235085273438],[113.091773710938,36.7180202460938],[113.080753203125,36.7449477363281],[113.052735625,36.7280458808594],[113.025889921875,36.7320131660156],[113.000767851563,36.7168593574219],[112.943975859375,36.7252516914063],[112.932857695313,36.7396572089845],[112.922203398438,36.7380825019532],[112.897345,36.743843],[112.872100859375,36.7381081367188],[112.852899199219,36.7493959785156],[112.824871855469,36.7612062812501],[112.797345,36.7450258613281],[112.765130644531,36.7639626289063],[112.793917265625,36.8306508613281],[112.771790800781,36.8682900214844],[112.762899199219,36.8893959785157],[112.706151152344,36.93483909375],[112.697345,36.9238430000001]]]]}},{"type":"Feature","properties":{"name":"襄垣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.080753203125,36.7449477363281],[113.091773710938,36.7180202460938],[113.128912382813,36.7235085273438],[113.17298953125,36.6894863105469],[113.189075957031,36.6686452460938],[113.217345,36.663843],[113.224561796875,36.6199098945313],[113.212345,36.6181044746094],[113.194520292969,36.6207387519532],[113.168992949219,36.5784194160156],[113.18170046875,36.5181996894531],[113.20298953125,36.5094863105469],[113.22170046875,36.4981996894532],[113.243424101563,36.4893080878907],[113.237345,36.473843],[113.16580203125,36.4457558417969],[113.125484648438,36.4743434882813],[112.999874296875,36.4469448066406],[112.98271609375,36.4301601386719],[113.017345,36.4238430000001],[113.01062625,36.41056175],[112.997345,36.403843],[112.916688261719,36.3937660957032],[112.882117949219,36.4506801582032],[112.862110625,36.4481923652344],[112.792579375,36.4694936347657],[112.766951933594,36.4663063789063],[112.724263945313,36.4827150703125],[112.707345,36.5038430000001],[112.70088015625,36.5206594062501],[112.74697390625,36.5575698066407],[112.761790800781,36.6093959785157],[112.783016386719,36.6384511542969],[112.781722441406,36.648843],[112.783311796875,36.6616091132813],[112.822899199219,36.6782900214844],[112.84373171875,36.6905361152344],[112.880784941406,36.6859267402344],[112.897345,36.743843],[112.922203398438,36.7380825019532],[112.932857695313,36.7396572089845],[112.943975859375,36.7252516914063],[113.000767851563,36.7168593574219],[113.025889921875,36.7320131660156],[113.052735625,36.7280458808594],[113.080753203125,36.7449477363281]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.900628691406,35.5715346503907],[112.919132109375,35.5365651679688],[112.902523222656,35.5186379218751],[112.871312285156,35.5198744941406],[112.900706816406,35.4771572089844],[112.882528105469,35.438637921875],[112.852406035156,35.4398317695313],[112.847345,35.423843],[112.811236601563,35.4572988105469],[112.8226965625,35.4789577460937],[112.752535429688,35.5120693183594],[112.77994265625,35.5604055],[112.810106230469,35.5444448066407],[112.850628691406,35.5881801582031],[112.88134890625,35.5893984199219],[112.900628691406,35.5715346503907]]]]}},{"type":"Feature","properties":{"name":"高平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.870928984375,35.9300893378906],[112.957345,35.9238430000001],[112.989857207031,35.9313759589844],[113.01170046875,35.9181996894531],[113.03298953125,35.9094863105469],[113.04170046875,35.8981996894532],[113.121258574219,35.8846840644532],[113.137345,35.863843],[113.132166777344,35.8309804511719],[113.100804472656,35.8093276191406],[113.111429472656,35.7679274726563],[113.1590246875,35.7407607246094],[113.143260527344,35.7179274726563],[113.121051054688,35.7096169257813],[113.126158476563,35.6868325019531],[113.101073027344,35.6695131660156],[113.105501738281,35.6497585273438],[113.091429472656,35.6579274726563],[113.073892851563,35.6833266425781],[113.063260527344,35.6679274726562],[113.057345,35.6638430000001],[113.047345,35.6638430000001],[113.047345,35.653843],[113.037345,35.653843],[113.020772734375,35.6585805488282],[113.034307890625,35.6694191718751],[112.988914824219,35.6982900214844],[112.963704863281,35.6668080878907],[112.918844023438,35.672387921875],[112.865345488281,35.7038356757813],[112.852899199219,35.6882900214844],[112.822928496094,35.6756606269532],[112.741346464844,35.6858083320313],[112.743023710938,35.6992958808594],[112.731790800781,35.7082900214844],[112.727345,35.713843],[112.723170195313,35.7396681953125],[112.703392363281,35.753843],[112.725186796875,35.7694631171875],[112.720831328125,35.7915077949219],[112.701649199219,35.7877175117188],[112.693170195313,35.807464826172],[112.738604765625,35.8194521308594],[112.751519804688,35.8436830878907],[112.731519804688,35.8580178046875],[112.723170195313,35.8736830878907],[112.747135039063,35.8908608222657],[112.770084257813,35.8863259101563],[112.783592558594,35.9375258613281],[112.778631621094,35.9626381660157],[112.787345,35.983843],[112.87369265625,35.9764723945313],[112.870928984375,35.9300893378906]]]]}},{"type":"Feature","properties":{"name":"陵川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.287345,35.4338430000001],[113.299537382813,35.4304201484375],[113.290767851563,35.4216506171876],[113.287345,35.4338430000001]]],[[[113.313922148438,35.4660353828125],[113.317345,35.453843],[113.305152617188,35.4572658515626],[113.313922148438,35.4660353828125]]],[[[113.287345,35.4338430000001],[113.255513945313,35.4420119453125],[113.227345,35.453843],[113.22271609375,35.4592153144531],[113.211917753906,35.4685195136719],[113.213524199219,35.4885195136719],[113.196600371094,35.5030995917969],[113.17572390625,35.5273317695313],[113.14197390625,35.5484706855469],[113.13271609375,35.5592153144532],[113.063687773438,35.6087819648438],[113.04197390625,35.6184706855469],[113.029620390625,35.6328090644532],[113.037345,35.653843],[113.047345,35.653843],[113.057345,35.653843],[113.057345,35.6638430000001],[113.063260527344,35.6679274726562],[113.073892851563,35.6833266425781],[113.091429472656,35.6579274726563],[113.105501738281,35.6497585273438],[113.101073027344,35.6695131660156],[113.126158476563,35.6868325019531],[113.121051054688,35.7096169257813],[113.143260527344,35.7179274726563],[113.1590246875,35.7407607246094],[113.111429472656,35.7679274726563],[113.100804472656,35.8093276191406],[113.132166777344,35.8309804511719],[113.137345,35.863843],[113.173470488281,35.8877162910156],[113.197345,35.8938430000001],[113.222203398438,35.8880825019531],[113.235484648438,35.8900453925782],[113.272120390625,35.8679457832032],[113.340965605469,35.8880190253906],[113.377838164063,35.8402480292969],[113.412857695313,35.83507346875],[113.436619902344,35.8658571601563],[113.547122832031,35.8470851875001],[113.56170046875,35.8281996894532],[113.577345,35.823843],[113.581519804688,35.8080178046876],[113.594320097656,35.798843],[113.580799589844,35.7891518378907],[113.59369265625,35.768843],[113.577821074219,35.7438430000001],[113.594925566406,35.7169020820313],[113.5907434375,35.6957411933594],[113.621519804688,35.6736830878906],[113.611214628906,35.6296681953125],[113.56818484375,35.6387197089844],[113.547186308594,35.6680178046875],[113.541322050781,35.6490236640626],[113.547459746094,35.6179555488281],[113.533170195313,35.5980178046875],[113.500252714844,35.5744252753907],[113.50341921875,35.5584096503907],[113.49127078125,35.5392763496094],[113.496038847656,35.5151491523438],[113.472340117188,35.5198317695313],[113.412349882813,35.5078542304688],[113.390484648438,35.5121742988281],[113.377345,35.493843],[113.332347441406,35.4682619453125],[113.311363554688,35.4799697089844],[113.291180449219,35.4783473945313],[113.292760039063,35.4586708808594],[113.287345,35.4338430000001]]]]}},{"type":"Feature","properties":{"name":"沁水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.607345,35.5538430000001],[112.617345,35.533843],[112.583914824219,35.538843],[112.607345,35.5538430000001]]],[[[112.651007109375,36.037505109375],[112.67435671875,36.0036891914063],[112.717669707031,36.0133998847657],[112.74384890625,35.996352765625],[112.781429472656,35.9879274726563],[112.787345,35.983843],[112.778631621094,35.9626381660157],[112.783592558594,35.9375258613281],[112.770084257813,35.8863259101563],[112.747135039063,35.8908608222657],[112.723170195313,35.8736830878907],[112.731519804688,35.8580178046875],[112.751519804688,35.8436830878907],[112.738604765625,35.8194521308594],[112.693170195313,35.807464826172],[112.701649199219,35.7877175117188],[112.720831328125,35.7915077949219],[112.725186796875,35.7694631171875],[112.703392363281,35.753843],[112.723170195313,35.7396681953125],[112.727345,35.713843],[112.667266875,35.7063283515626],[112.642899199219,35.6954116035157],[112.667337675781,35.6758412910156],[112.651790800781,35.6493959785157],[112.622845488281,35.57815940625],[112.611829863281,35.5795290351563],[112.607345,35.563843],[112.572379179688,35.5580995917969],[112.562345,35.5595815253907],[112.552345,35.5581044746094],[112.537345,35.5603212714844],[112.522345,35.5581044746094],[112.502345,35.561059796875],[112.472857695313,35.5567018867188],[112.459427519531,35.5741005683594],[112.463140898438,35.599233625],[112.451549101563,35.618452375],[112.453463164063,35.6314028144532],[112.43170046875,35.6481996894531],[112.42298953125,35.659486310547],[112.366307402344,35.6801674628907],[112.347345,35.6773647285157],[112.322345,35.6810597968751],[112.295264921875,35.6770571113281],[112.26978640625,35.6440492988282],[112.217345,35.6517983222657],[112.188836699219,35.6475856757813],[112.195418730469,35.6030495429687],[112.213160429688,35.5893544746094],[112.210311308594,35.5700746894532],[112.233721953125,35.5384987617188],[112.185496855469,35.5187624335938],[112.171204863281,35.4838393378907],[112.113880644531,35.4923110175782],[112.10298953125,35.4781996894532],[112.09170046875,35.4694863105469],[112.05298953125,35.3981996894532],[112.017345,35.3938430000001],[112.00170046875,35.3981996894532],[111.967345,35.423843],[111.956734648438,35.4820156074219],[111.941693144531,35.5089736152344],[111.953524199219,35.5191664863282],[111.951942167969,35.538843],[111.954276152344,35.5678713203125],[111.94197390625,35.5784706855469],[111.93271609375,35.6026247382813],[111.953470488281,35.6398232246094],[111.9519153125,35.6591970039063],[111.98271609375,35.6684706855469],[111.99197390625,35.6792153144532],[112.024483671875,35.7072243476562],[112.021060820313,35.7498146796875],[112.051846953125,35.7763368964844],[112.021741972656,35.8187990546875],[112.036766386719,35.8457265449219],[112.027345,35.8538430000001],[112.035553007813,35.8657314277344],[112.071429472656,35.8379274726563],[112.123260527344,35.8297585273437],[112.177318144531,35.8164809394532],[112.221429472656,35.8272145820313],[112.200318632813,35.8596340156251],[112.151429472656,35.8779274726563],[112.137345,35.903843],[112.172830839844,35.9119033027344],[112.302298613281,35.8957277656251],[112.337345,35.9000868964844],[112.385806914063,35.8940590644531],[112.479732695313,35.9501015449219],[112.525404082031,35.9693459296876],[112.517345,36.033843],[112.531429472656,36.0397585273438],[112.573260527344,36.0479274726562],[112.612215605469,36.0642885566407],[112.651007109375,36.037505109375]]]]}},{"type":"Feature","properties":{"name":"阳城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.287345,35.223843],[112.283922148438,35.2116506171875],[112.275152617188,35.2204201484376],[112.287345,35.223843]]],[[[112.623922148438,35.2960353828126],[112.627345,35.2838430000001],[112.615152617188,35.2872658515625],[112.623922148438,35.2960353828126]]],[[[112.617345,35.443843],[112.629537382813,35.4404201484375],[112.620767851563,35.4316506171875],[112.617345,35.443843]]],[[[112.617345,35.443843],[112.611065703125,35.4401210761719],[112.599830351563,35.4211659980469],[112.610189238281,35.3909975410156],[112.568392363281,35.4053517890625],[112.574437285156,35.3877504707032],[112.557345,35.383843],[112.553922148438,35.3960353828125],[112.545152617188,35.3872658515625],[112.557345,35.383843],[112.557345,35.373843],[112.587345,35.373843],[112.587345,35.3638430000001],[112.575152617188,35.3604201484375],[112.583922148438,35.3516506171875],[112.587345,35.3638430000001],[112.599185820313,35.3578530097656],[112.589896269531,35.3388283515625],[112.609720488281,35.2989455390625],[112.599246855469,35.2774965644532],[112.617345,35.273843],[112.611824980469,35.2485366035157],[112.64197390625,35.2350844550781],[112.5566809375,35.2158046699219],[112.482489042969,35.2292568183594],[112.472345,35.2284413886719],[112.462345,35.2292446113281],[112.444410429688,35.2278041816407],[112.3955090625,35.2411879707031],[112.37271609375,35.2284706855469],[112.287345,35.223843],[112.297479277344,35.2479714179688],[112.273973417969,35.2579274726563],[112.232345,35.2308193183594],[112.197428007813,35.2535561347656],[112.132957792969,35.2701015449219],[112.115545683594,35.2661977363282],[112.082623320313,35.2800258613282],[112.065545683594,35.2761977363281],[112.047345,35.2838430000001],[112.063861113281,35.3088356757813],[112.043875761719,35.3395290351563],[112.021429472656,35.3479274726563],[112.017345,35.3938430000001],[112.05298953125,35.3981996894532],[112.09170046875,35.4694863105469],[112.10298953125,35.4781996894532],[112.113880644531,35.4923110175782],[112.171204863281,35.4838393378907],[112.185496855469,35.5187624335938],[112.233721953125,35.5384987617188],[112.210311308594,35.5700746894532],[112.213160429688,35.5893544746094],[112.195418730469,35.6030495429687],[112.188836699219,35.6475856757813],[112.217345,35.6517983222657],[112.26978640625,35.6440492988282],[112.295264921875,35.6770571113281],[112.322345,35.6810597968751],[112.347345,35.6773647285157],[112.366307402344,35.6801674628907],[112.42298953125,35.659486310547],[112.43170046875,35.6481996894531],[112.453463164063,35.6314028144532],[112.451549101563,35.618452375],[112.463140898438,35.599233625],[112.459427519531,35.5741005683594],[112.472857695313,35.5567018867188],[112.502345,35.561059796875],[112.522345,35.5581044746094],[112.537345,35.5603212714844],[112.552345,35.5581044746094],[112.562345,35.5595815253907],[112.572379179688,35.5580995917969],[112.607345,35.563843],[112.607345,35.5538430000001],[112.583914824219,35.538843],[112.617345,35.533843],[112.608319121094,35.5145241523437],[112.614229765625,35.498843],[112.604146757813,35.4720925117188],[112.617345,35.443843]]]]}},{"type":"Feature","properties":{"name":"泽州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.587345,35.3638430000001],[112.583922148438,35.3516506171875],[112.575152617188,35.3604201484375],[112.587345,35.3638430000001]]],[[[112.557345,35.383843],[112.545152617188,35.3872658515625],[112.553922148438,35.3960353828125],[112.557345,35.383843]]],[[[113.057345,35.653843],[113.047345,35.653843],[113.047345,35.6638430000001],[113.057345,35.6638430000001],[113.057345,35.653843]]],[[[112.587345,35.3638430000001],[112.587345,35.373843],[112.557345,35.373843],[112.557345,35.383843],[112.574437285156,35.3877504707032],[112.568392363281,35.4053517890625],[112.610189238281,35.3909975410156],[112.599830351563,35.4211659980469],[112.611065703125,35.4401210761719],[112.617345,35.443843],[112.620767851563,35.4316506171875],[112.629537382813,35.4404201484375],[112.617345,35.443843],[112.604146757813,35.4720925117188],[112.614229765625,35.498843],[112.608319121094,35.5145241523437],[112.617345,35.533843],[112.607345,35.5538430000001],[112.607345,35.563843],[112.611829863281,35.5795290351563],[112.622845488281,35.57815940625],[112.651790800781,35.6493959785157],[112.667337675781,35.6758412910156],[112.642899199219,35.6954116035157],[112.667266875,35.7063283515626],[112.727345,35.713843],[112.731790800781,35.7082900214844],[112.743023710938,35.6992958808594],[112.741346464844,35.6858083320313],[112.822928496094,35.6756606269532],[112.852899199219,35.6882900214844],[112.865345488281,35.7038356757813],[112.918844023438,35.672387921875],[112.963704863281,35.6668080878907],[112.988914824219,35.6982900214844],[113.034307890625,35.6694191718751],[113.020772734375,35.6585805488282],[113.037345,35.653843],[113.029620390625,35.6328090644532],[113.04197390625,35.6184706855469],[113.063687773438,35.6087819648438],[113.13271609375,35.5592153144532],[113.14197390625,35.5484706855469],[113.17572390625,35.5273317695313],[113.196600371094,35.5030995917969],[113.213524199219,35.4885195136719],[113.211917753906,35.4685195136719],[113.22271609375,35.4592153144531],[113.227345,35.453843],[113.202386503906,35.4477126289063],[113.191636992188,35.450122296875],[113.173260527344,35.4179274726563],[113.161073027344,35.4095131660157],[113.165557890625,35.3895131660157],[113.142393828125,35.373520734375],[113.137345,35.3538430000001],[113.137345,35.333843],[113.127345,35.333843],[113.102486601563,35.3396034980469],[113.09205203125,35.3380605292969],[113.035953398438,35.3601149726562],[113.022345,35.3581044746094],[112.99000125,35.3628835273438],[112.97298953125,35.3149245429688],[112.987345,35.303843],[112.98298953125,35.2981996894531],[112.933748808594,35.28448753125],[112.915633574219,35.24022971875],[112.815928984375,35.2549636054688],[112.801832304688,35.2367018867187],[112.771253691406,35.2412209296875],[112.773765898438,35.2242360664063],[112.747345,35.2038430000001],[112.725816679688,35.214544904297],[112.701644316406,35.1953432441407],[112.687266875,35.223764875],[112.65406375,35.24056175],[112.643336210938,35.2617690253906],[112.631353789063,35.2559169746094],[112.623985625,35.270483625],[112.617345,35.273843],[112.599246855469,35.2774965644532],[112.609720488281,35.2989455390625],[112.589896269531,35.3388283515625],[112.599185820313,35.3578530097656],[112.587345,35.3638430000001]],[[112.615152617188,35.2872658515625],[112.627345,35.2838430000001],[112.623922148438,35.2960353828126],[112.615152617188,35.2872658515625]],[[112.847345,35.423843],[112.852406035156,35.4398317695313],[112.882528105469,35.438637921875],[112.900706816406,35.4771572089844],[112.871312285156,35.5198744941406],[112.902523222656,35.5186379218751],[112.919132109375,35.5365651679688],[112.900628691406,35.5715346503907],[112.88134890625,35.5893984199219],[112.850628691406,35.5881801582031],[112.810106230469,35.5444448066407],[112.77994265625,35.5604055],[112.752535429688,35.5120693183594],[112.8226965625,35.4789577460937],[112.811236601563,35.4572988105469],[112.847345,35.423843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"怀仁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,39.903843],[113.377345,39.8938430000001],[113.387345,39.8938430000001],[113.438258085938,39.8499794746094],[113.36197390625,39.8292153144532],[113.35271609375,39.8184706855469],[113.316859160156,39.7960121894532],[113.338970976563,39.7703481269532],[113.397345,39.7338430000001],[113.404866972656,39.7187111640626],[113.393985625,39.697202375],[113.387345,39.693843],[113.345028105469,39.7007949042969],[113.309906035156,39.6869875312501],[113.260191679688,39.6943337226563],[113.167237578125,39.7366591621094],[113.141539335938,39.7033644843751],[113.09170046875,39.6894863105469],[113.063631621094,39.6725551582032],[113.03170046875,39.659486310547],[113.02298953125,39.6481996894531],[112.998365507813,39.6381215644532],[112.98298953125,39.6181996894531],[112.947345,39.613843],[112.88170046875,39.6181996894531],[112.83298953125,39.659486310547],[112.805030546875,39.6709291816406],[112.78298953125,39.699486310547],[112.771529570313,39.7083315253906],[112.773558378906,39.7220619941407],[112.81298953125,39.7381996894532],[112.84170046875,39.7663075996094],[112.797345,39.773843],[112.803734160156,39.7987416816406],[112.873260527344,39.8079274726563],[112.91392703125,39.8344081855469],[112.931673613281,39.8601137519531],[112.952059355469,39.8555446601563],[112.961429472656,39.8741188789063],[112.941429472656,39.8879274726563],[112.937345,39.8938430000001],[112.942579375,39.9112282539062],[113.042489042969,39.9192568183594],[113.134290800781,39.9026113105469],[113.234410429688,39.9584706855469],[113.284012480469,39.9464858222657],[113.32271609375,39.9292153144532],[113.35197390625,39.9084706855469],[113.377345,39.903843]]]]}},{"type":"Feature","properties":{"name":"平鲁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.25298953125,39.8494863105469],[112.266204863281,39.8171962714844],[112.310872832031,39.8237978339844],[112.313160429688,39.8083315253907],[112.294388457031,39.793843],[112.318631621094,39.7751308417969],[112.33170046875,39.7581996894531],[112.36298953125,39.7494863105469],[112.371903105469,39.7277053046876],[112.41170046875,39.6981996894532],[112.437345,39.693843],[112.451241484375,39.6827150703125],[112.454378691406,39.6574843574219],[112.430887480469,39.6386708808594],[112.452899199219,39.6293959785157],[112.461790800781,39.6082900214844],[112.472899199219,39.5993959785156],[112.483704863281,39.5859023261719],[112.554947539063,39.5947634101563],[112.551615019531,39.5679726386719],[112.583275175781,39.5158486152344],[112.650850859375,39.5242543769532],[112.661790800781,39.4982900214844],[112.686746855469,39.478305890625],[112.677345,39.453843],[112.66197390625,39.4492153144532],[112.638846464844,39.4363112617188],[112.591373320313,39.4401259589844],[112.57271609375,39.4184706855469],[112.558563261719,39.4092153144532],[112.518846464844,39.4313747382813],[112.452345,39.4260305000001],[112.365257597656,39.4330287910157],[112.351590605469,39.4171645332032],[112.284613066406,39.3969985175782],[112.26271609375,39.4092153144532],[112.23197390625,39.4184706855469],[112.19654421875,39.4382375312501],[112.134808378906,39.4155666328125],[112.12271609375,39.3884706855469],[112.11197390625,39.3792153144532],[112.10271609375,39.3684706855469],[112.089149199219,39.3567824531251],[112.017345,39.3638430000001],[112.00298953125,39.3994863105469],[111.997345,39.4038430000001],[111.98084109375,39.4330361152344],[111.945753203125,39.4611330390626],[111.921890898438,39.4581642890625],[111.904908476563,39.4793740058594],[111.892899199219,39.513735578125],[111.992899199219,39.5282900214844],[112.001790800781,39.5326271796875],[111.941790800781,39.5782900214844],[111.927345,39.613843],[111.921671171875,39.6592470527344],[111.952899199219,39.6982900214844],[111.96388796875,39.7614394355469],[111.960311308594,39.7902016425781],[112.020203886719,39.8381630683594],[112.043057890625,39.8924025703125],[112.062899199219,39.9082900214844],[112.092569609375,39.9571401191407],[112.097345,39.9738430000001],[112.107345,39.9738430000001],[112.14298953125,39.9494863105469],[112.153065214844,39.9248647285157],[112.17298953125,39.9094863105469],[112.188663359375,39.8711867500001],[112.22170046875,39.8581996894532],[112.25298953125,39.8494863105469]]]]}},{"type":"Feature","properties":{"name":"山阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.027345,39.463843],[113.030767851563,39.4760353828125],[113.039537382813,39.4672658515625],[113.027345,39.463843]]],[[[113.027345,39.463843],[113.020943632813,39.41261253125],[113.041790800781,39.3782900214844],[113.058450957031,39.3649489570313],[113.067345,39.3538430000001],[113.05170046875,39.3494863105469],[113.027181425781,39.3177211738281],[112.924600859375,39.2891555000001],[112.89298953125,39.2481996894532],[112.88170046875,39.2394863105469],[112.87298953125,39.2181996894532],[112.84170046875,39.2094863105469],[112.809451933594,39.1855763984375],[112.774783964844,39.19069846875],[112.757345,39.183843],[112.751300078125,39.1985536933594],[112.753333769531,39.2088430000001],[112.75127078125,39.2192763496094],[112.764925566406,39.2407839179688],[112.760369902344,39.263843],[112.763333769531,39.2788430000001],[112.753343535156,39.3293935371094],[112.741519804688,39.3480178046876],[112.733170195313,39.3896681953125],[112.70502078125,39.434007794922],[112.677345,39.453843],[112.686746855469,39.478305890625],[112.661790800781,39.4982900214844],[112.650850859375,39.5242543769532],[112.583275175781,39.5158486152344],[112.551615019531,39.5679726386719],[112.554947539063,39.5947634101563],[112.483704863281,39.5859023261719],[112.472899199219,39.5993959785156],[112.461790800781,39.6082900214844],[112.452899199219,39.6293959785157],[112.430887480469,39.6386708808594],[112.454378691406,39.6574843574219],[112.451241484375,39.6827150703125],[112.437345,39.693843],[112.444605742188,39.7213600898438],[112.466019316406,39.7171291328126],[112.509032011719,39.7444374824219],[112.582608671875,39.7298989082032],[112.612056914063,39.717798078125],[112.628702421875,39.7210878730469],[112.637345,39.753843],[112.673441191406,39.7577455878907],[112.686112089844,39.7775392890625],[112.740767851563,39.7535707832032],[112.751248808594,39.7699404121094],[112.797345,39.773843],[112.84170046875,39.7663075996094],[112.81298953125,39.7381996894532],[112.773558378906,39.7220619941407],[112.771529570313,39.7083315253906],[112.78298953125,39.699486310547],[112.805030546875,39.6709291816406],[112.83298953125,39.659486310547],[112.88170046875,39.6181996894531],[112.947345,39.613843],[112.968590117188,39.5816957832032],[112.960472441406,39.5454921699219],[112.983616972656,39.5295131660157],[112.980186796875,39.5142116523438],[113.003682890625,39.480180890625],[113.027345,39.463843]]]]}},{"type":"Feature","properties":{"name":"朔城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.677345,39.453843],[112.70502078125,39.434007794922],[112.733170195313,39.3896681953125],[112.741519804688,39.3480178046876],[112.753343535156,39.3293935371094],[112.763333769531,39.2788430000001],[112.760369902344,39.263843],[112.764925566406,39.2407839179688],[112.75127078125,39.2192763496094],[112.753333769531,39.2088430000001],[112.751300078125,39.1985536933594],[112.757345,39.183843],[112.741041289063,39.1796584296875],[112.743475371094,39.1688014960938],[112.737345,39.143843],[112.721158476563,39.1400307441407],[112.68435671875,39.1235451484376],[112.655426054688,39.1325551582031],[112.640699492188,39.0893434882813],[112.617345,39.083843],[112.617345,39.0938430000001],[112.607345,39.0938430000001],[112.583035917969,39.0836330390626],[112.573260527344,39.1097585273438],[112.551429472656,39.1179274726563],[112.537310820313,39.1383754707032],[112.509329863281,39.1479274726563],[112.441124296875,39.1035121894532],[112.397345,39.1133266425781],[112.365545683594,39.1061977363282],[112.314393339844,39.1276821113281],[112.303260527344,39.0979274726562],[112.297345,39.0938430000001],[112.287345,39.0938430000001],[112.287345,39.103843],[112.277345,39.103843],[112.280614042969,39.1105739570312],[112.300101347656,39.1200380683594],[112.257345,39.123843],[112.263155546875,39.1592116523438],[112.249351835938,39.182094953125],[112.211253691406,39.1764650703126],[112.214486113281,39.1983315253907],[112.20170046875,39.2081996894532],[112.181033964844,39.2349745917969],[112.183160429688,39.2493544746094],[112.158465605469,39.2684157539063],[112.108426542969,39.2781996894532],[112.09298953125,39.2581996894532],[112.078426542969,39.2494863105469],[112.049793730469,39.2865810371094],[112.053084746094,39.308843],[112.050941191406,39.3233498359375],[112.022511015625,39.3452931953126],[112.017345,39.3638430000001],[112.089149199219,39.3567824531251],[112.10271609375,39.3684706855469],[112.11197390625,39.3792153144532],[112.12271609375,39.3884706855469],[112.134808378906,39.4155666328125],[112.19654421875,39.4382375312501],[112.23197390625,39.4184706855469],[112.26271609375,39.4092153144532],[112.284613066406,39.3969985175782],[112.351590605469,39.4171645332032],[112.365257597656,39.4330287910157],[112.452345,39.4260305000001],[112.518846464844,39.4313747382813],[112.558563261719,39.4092153144532],[112.57271609375,39.4184706855469],[112.591373320313,39.4401259589844],[112.638846464844,39.4363112617188],[112.66197390625,39.4492153144532],[112.677345,39.453843]]]]}},{"type":"Feature","properties":{"name":"应县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.027345,39.463843],[113.039537382813,39.4672658515625],[113.030767851563,39.4760353828125],[113.003682890625,39.480180890625],[112.980186796875,39.5142116523438],[112.983616972656,39.5295131660157],[112.960472441406,39.5454921699219],[112.968590117188,39.5816957832032],[112.947345,39.613843],[112.98298953125,39.6181996894531],[112.998365507813,39.6381215644532],[113.02298953125,39.6481996894531],[113.03170046875,39.659486310547],[113.063631621094,39.6725551582032],[113.09170046875,39.6894863105469],[113.141539335938,39.7033644843751],[113.167237578125,39.7366591621094],[113.260191679688,39.6943337226563],[113.309906035156,39.6869875312501],[113.345028105469,39.7007949042969],[113.387345,39.693843],[113.381160917969,39.6791213203125],[113.383565703125,39.6683962226563],[113.37060671875,39.6484950996094],[113.383260527344,39.6397585273438],[113.395513945313,39.6220119453126],[113.413260527344,39.6097585273438],[113.421529570313,39.5775392890626],[113.441673613281,39.582055890625],[113.459598417969,39.5560964179688],[113.508699980469,39.5221938300782],[113.500435820313,39.4853298164063],[113.559046660156,39.445863263672],[113.567345,39.4338430000001],[113.561883574219,39.4293056464844],[113.55107546875,39.4162953925782],[113.552896757813,39.3984194160156],[113.531883574219,39.3893056464844],[113.502806425781,39.3483803535157],[113.451883574219,39.3393056464844],[113.431156035156,39.3274355292969],[113.411954375,39.3293923164063],[113.402806425781,39.3183803535157],[113.387611113281,39.3057582832032],[113.263861113281,39.3183718085938],[113.177345,39.293843],[113.172806425781,39.2993056464844],[113.151883574219,39.3083803535157],[113.123509550781,39.3246315742188],[113.104744902344,39.367895734375],[113.067345,39.3538430000001],[113.058450957031,39.3649489570313],[113.041790800781,39.3782900214844],[113.020943632813,39.41261253125],[113.027345,39.463843]]]]}},{"type":"Feature","properties":{"name":"右玉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.590311308594,39.8285195136719],[112.615028105469,39.8072243476563],[112.611365996094,39.761664044922],[112.637345,39.753843],[112.628702421875,39.7210878730469],[112.612056914063,39.717798078125],[112.582608671875,39.7298989082032],[112.509032011719,39.7444374824219],[112.466019316406,39.7171291328126],[112.444605742188,39.7213600898438],[112.437345,39.693843],[112.41170046875,39.6981996894532],[112.371903105469,39.7277053046876],[112.36298953125,39.7494863105469],[112.33170046875,39.7581996894531],[112.318631621094,39.7751308417969],[112.294388457031,39.793843],[112.313160429688,39.8083315253907],[112.310872832031,39.8237978339844],[112.266204863281,39.8171962714844],[112.25298953125,39.8494863105469],[112.22170046875,39.8581996894532],[112.188663359375,39.8711867500001],[112.17298953125,39.9094863105469],[112.153065214844,39.9248647285157],[112.14298953125,39.9494863105469],[112.107345,39.9738430000001],[112.14197390625,40.0292153144531],[112.203460722656,40.1077272773438],[112.230479765625,40.1682802558594],[112.278089628906,40.1980995917969],[112.29197390625,40.2292153144531],[112.307345,40.253843],[112.360462675781,40.2589125800782],[112.413453398438,40.2981996894531],[112.46298953125,40.2894863105469],[112.523878203125,40.2628774238282],[112.61298953125,40.2394863105469],[112.617345,40.2338430000001],[112.598407011719,40.2035012031251],[112.623170195313,40.1685744453125],[112.579547148438,40.1586635566407],[112.582747832031,40.1188430000001],[112.581485625,40.1031508613281],[112.6127746875,40.0891896796875],[112.611219511719,40.0698232246094],[112.636783476563,40.0240041328125],[112.597401152344,39.9167641425782],[112.590311308594,39.8285195136719]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"和顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.348253203125,37.5760243964844],[113.33099734375,37.548843],[113.34341921875,37.5292763496094],[113.34084109375,37.5162270332031],[113.362940703125,37.4540200019532],[113.392345,37.4598305488282],[113.402345,37.4578554511719],[113.447345,37.4667470527344],[113.504205351563,37.4555117011719],[113.534671660156,37.4980178046875],[113.583170195313,37.4896681953125],[113.598219023438,37.4506459785156],[113.612345,37.4478554511719],[113.632345,37.4518068671875],[113.652345,37.4478554511719],[113.682965117188,37.4539052558594],[113.701724882813,37.4277321601563],[113.740079375,37.4353115058594],[113.743455839844,37.4182228828125],[113.730369902344,37.408843],[113.743170195313,37.3996681953125],[113.757603789063,37.3622463203125],[113.836197539063,37.3258522773438],[113.853170195313,37.3380178046875],[113.887193632813,37.3880043769531],[113.901519804688,37.3680178046876],[113.918995390625,37.355493390625],[113.927345,37.3438430000001],[113.922899199219,37.3382900214844],[113.893270292969,37.3145632148438],[113.871749296875,37.2392922187501],[113.819320097656,37.1738210273438],[113.792899199219,37.1582900214844],[113.769115019531,37.1482680488282],[113.761790800781,37.0893959785156],[113.757345,37.083843],[113.739539824219,37.0769985175781],[113.672899199219,37.1193959785156],[113.610115996094,37.1285341621094],[113.592899199219,37.1693959785156],[113.575533476563,37.1989382148438],[113.521790800781,37.2082900214844],[113.492899199219,37.2193959785157],[113.443936796875,37.2333950019531],[113.396456328125,37.2274892402344],[113.362899199219,37.2693959785157],[113.34291140625,37.2782900214844],[113.292899199219,37.2382900214844],[113.211214628906,37.2149355292969],[113.171441679688,37.1915554023438],[113.117345,37.203843],[113.121790800781,37.2193959785157],[113.132899199219,37.2382900214844],[113.141790800781,37.2622743964845],[113.113355742188,37.2850453925781],[113.13322390625,37.318843],[113.117762480469,37.3451467109376],[113.071658964844,37.3583278632813],[113.074378691406,37.3802016425782],[113.057345,37.393843],[113.06406375,37.4071242500001],[113.089261503906,37.4198708320313],[113.069896269531,37.4588283515626],[113.0772278125,37.473843],[113.067347441406,37.4940785957032],[113.08406375,37.5271242500001],[113.097345,37.5338430000001],[113.11298953125,37.5381996894532],[113.14170046875,37.5594863105469],[113.206346464844,37.5704677558594],[113.232345,37.566626203125],[113.272345,37.5725368476563],[113.307345,37.5673647285156],[113.326851835938,37.5702480292969],[113.337345,37.583843],[113.348253203125,37.5760243964844]]]]}},{"type":"Feature","properties":{"name":"介休市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.964105253906,37.1640529609376],[112.007345,37.1543593574219],[112.032345,37.1599636054688],[112.047345,37.1566017890625],[112.086239042969,37.1653200507813],[112.134217558594,37.1321938300781],[112.131051054688,37.1180690742188],[112.157777128906,37.1080690742187],[112.151224394531,37.078843],[112.156900664063,37.0535182929688],[112.14060671875,37.0284950996095],[112.159176054688,37.0156740546875],[112.167345,37.003843],[112.151519804688,36.9996681953125],[112.123995390625,36.982192609375],[112.054959746094,36.9683522773438],[112.076431914063,36.9345290351563],[112.069503203125,36.8994631171876],[112.084320097656,36.8888430000001],[112.067554960938,36.8768251777344],[112.0230871875,36.8856117988282],[112.013170195313,36.8480178046875],[111.997345,36.8438430000001],[111.981429472656,36.8479274726563],[111.953260527344,36.8697585273438],[111.927254667969,36.8794887519531],[111.905697050781,36.9107155585938],[111.891571074219,36.9075490546875],[111.881698027344,36.9339321113281],[111.856976347656,36.9510024238282],[111.837345,36.9466017890625],[111.815980253906,36.9513906074219],[111.837447539063,36.9843569160156],[111.826929960938,36.9979274726563],[111.793260527344,36.9479274726563],[111.776944609375,36.9397585273438],[111.784158964844,36.971938703125],[111.741429472656,36.9879274726563],[111.737345,36.9938430000001],[111.745513945313,37.0056740546876],[111.781097441406,37.0302431464844],[111.800230742188,37.0259548164063],[111.821429472656,37.0397585273438],[111.853260527344,37.0479274726563],[111.883031035156,37.0673134589845],[111.891429472656,37.0897585273437],[111.903260527344,37.0979274726563],[111.927345,37.1438430000001],[111.947345,37.1838430000001],[111.953260527344,37.1797585273438],[111.964105253906,37.1640529609376]]]]}},{"type":"Feature","properties":{"name":"灵石县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,36.703843],[111.839537382813,36.7072658515626],[111.830767851563,36.7160353828125],[111.81263796875,36.7096254707032],[111.802345,36.7081044746094],[111.792345,36.7095815253906],[111.763880644531,36.7053749824219],[111.749298125,36.7242665839844],[111.668988066406,36.6926955390625],[111.683140898438,36.669233625],[111.680941191406,36.6543361640625],[111.667345,36.643843],[111.663260527344,36.6497585273438],[111.651429472656,36.6579274726562],[111.643260527344,36.6697585273437],[111.621429472656,36.6779274726563],[111.613260527344,36.6897585273438],[111.591429472656,36.6979274726562],[111.561658964844,36.7173134589844],[111.553260527344,36.7397585273438],[111.537191191406,36.7508534980469],[111.543616972656,36.7795131660157],[111.526976347656,36.7910024238281],[111.511898222656,36.787622296875],[111.491998320313,36.80058128125],[111.476927519531,36.778755109375],[111.437069121094,36.7697585273438],[111.423260527344,36.7897585273438],[111.411429472656,36.7979274726563],[111.407345,36.8038430000001],[111.412476835938,36.8364089179688],[111.443260527344,36.8479274726563],[111.491429472656,36.8797585273438],[111.551329375,36.8951308417969],[111.561429472656,36.9097585273438],[111.57498171875,36.9191152167969],[111.547254667969,36.9294887519532],[111.525091582031,36.9615895820313],[111.501429472656,36.9779274726563],[111.497345,36.9938430000001],[111.522899199219,36.9893959785157],[111.531890898438,36.9781642890625],[111.542650175781,36.9795034003907],[111.592039824219,36.9581825996094],[111.602703886719,36.9595095039063],[111.622662382813,36.9477773261719],[111.672899199219,36.9782900214844],[111.681890898438,36.9895217109375],[111.692347441406,36.9882204414062],[111.737345,36.9938430000001],[111.741429472656,36.9879274726563],[111.784158964844,36.971938703125],[111.776944609375,36.9397585273438],[111.793260527344,36.9479274726563],[111.826929960938,36.9979274726563],[111.837447539063,36.9843569160156],[111.815980253906,36.9513906074219],[111.837345,36.9466017890625],[111.856976347656,36.9510024238282],[111.881698027344,36.9339321113281],[111.891571074219,36.9075490546875],[111.905697050781,36.9107155585938],[111.927254667969,36.8794887519531],[111.953260527344,36.8697585273438],[111.981429472656,36.8479274726563],[111.997345,36.8438430000001],[112.00630984375,36.8246559882813],[111.973922148438,36.8061891914063],[111.984229765625,36.778843],[111.98029421875,36.7683998847657],[111.996890898438,36.7459047675781],[111.990460234375,36.7288430000001],[111.996370878906,36.7131618476562],[111.987345,36.6938430000001],[111.976143828125,36.6798537421876],[111.932056914063,36.7057692695313],[111.897345,36.7100868964844],[111.882345,36.7082216621094],[111.853704863281,36.7117836738282],[111.837345,36.6913552070313],[111.827345,36.703843]]]]}},{"type":"Feature","properties":{"name":"平遥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.34170046875,37.2681996894532],[112.366324492188,37.2581215644531],[112.386058378906,37.2325551582032],[112.40298953125,37.2194863105469],[112.42170046875,37.1881996894532],[112.440941191406,37.1733498359375],[112.445301542969,37.1438430000001],[112.441529570313,37.1183315253906],[112.447345,37.1138430000001],[112.456239042969,37.1027370429688],[112.481241484375,37.0827150703125],[112.483587675781,37.063843],[112.481615019531,37.0479726386719],[112.511790800781,36.9982900214844],[112.542899199219,36.9793959785156],[112.547345,36.973843],[112.541429472656,36.9697585273438],[112.533016386719,36.9575722480469],[112.521898222656,36.960063703125],[112.50002078125,36.9458168769532],[112.467345,36.9538430000001],[112.461158476563,36.9500307441406],[112.453531523438,36.9376552558594],[112.428179960938,36.9300307441407],[112.383531523438,36.9500307441406],[112.345855742188,36.9576552558594],[112.332816191406,36.9364919257812],[112.313531523438,36.9500307441406],[112.291158476563,36.9576552558594],[112.273531523438,36.9700307441407],[112.239969511719,36.9814675117188],[112.213531523438,37.0000307441407],[112.167345,37.003843],[112.159176054688,37.0156740546875],[112.14060671875,37.0284950996095],[112.156900664063,37.0535182929688],[112.151224394531,37.078843],[112.157777128906,37.1080690742187],[112.131051054688,37.1180690742188],[112.134217558594,37.1321938300781],[112.086239042969,37.1653200507813],[112.047345,37.1566017890625],[112.032345,37.1599636054688],[112.007345,37.1543593574219],[111.964105253906,37.1640529609376],[111.953260527344,37.1797585273438],[111.947345,37.1838430000001],[111.938878203125,37.1903786445312],[111.944561796875,37.2288430000001],[111.941522246094,37.2494130683594],[111.991209746094,37.2697499824219],[112.002857695313,37.2680287910156],[112.007345,37.273843],[112.032625761719,37.2785622382813],[112.068365507813,37.3185622382813],[112.1123059375,37.2894814277344],[112.131712675781,37.2677626777345],[112.207345,37.333843],[112.261041289063,37.3426638007813],[112.263084746094,37.328843],[112.260318632813,37.3101332832032],[112.32298953125,37.2994863105469],[112.34170046875,37.2681996894532]]]]}},{"type":"Feature","properties":{"name":"祁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.396551542969,37.4619155097657],[112.422857695313,37.4580287910156],[112.433880644531,37.4723110175781],[112.462379179688,37.4680995917969],[112.497345,37.473843],[112.477144804688,37.3626308417969],[112.49271609375,37.3492153144532],[112.50197390625,37.3384706855469],[112.51271609375,37.3292153144531],[112.525484648438,37.3005995917969],[112.552345,37.2984413886719],[112.589857207031,37.3014553046876],[112.61271609375,37.2692153144532],[112.62197390625,37.2484706855469],[112.63271609375,37.2392153144532],[112.64197390625,37.2184706855469],[112.657345,37.213843],[112.681429472656,37.1773976875],[112.673260527344,37.1479274726563],[112.655513945313,37.1356740546875],[112.647345,37.123843],[112.59298953125,37.0881996894531],[112.548426542969,37.0794863105469],[112.53298953125,37.0994863105469],[112.511522246094,37.1082729316406],[112.513961210938,37.1247866035156],[112.447345,37.1138430000001],[112.441529570313,37.1183315253906],[112.445301542969,37.1438430000001],[112.440941191406,37.1733498359375],[112.42170046875,37.1881996894532],[112.40298953125,37.2194863105469],[112.386058378906,37.2325551582032],[112.366324492188,37.2581215644531],[112.34170046875,37.2681996894532],[112.32298953125,37.2994863105469],[112.260318632813,37.3101332832032],[112.263084746094,37.328843],[112.261041289063,37.3426638007813],[112.207345,37.333843],[112.23298953125,37.3681996894531],[112.267308378906,37.4295034003907],[112.316324492188,37.4495644355469],[112.327345,37.463843],[112.34298953125,37.4681996894532],[112.358426542969,37.4881996894532],[112.38298953125,37.4794863105469],[112.396551542969,37.4619155097657]]]]}},{"type":"Feature","properties":{"name":"寿阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.253638945313,38.0796169257813],[113.246800566406,38.0491139960938],[113.261429472656,38.0279274726563],[113.273260527344,38.0197585273438],[113.286571074219,37.9841860175781],[113.318377714844,37.9913161445313],[113.337345,37.963843],[113.330819121094,37.9598220039063],[113.313531523438,37.9065175605469],[113.353531523438,37.8600307441407],[113.363699980469,37.8301967597657],[113.393531523438,37.8200307441407],[113.40281375,37.7927968574219],[113.423531523438,37.7800307441407],[113.427345,37.773843],[113.44170046875,37.7381996894531],[113.457345,37.713843],[113.39170046875,37.7094863105469],[113.324244414063,37.6505605292969],[113.343155546875,37.6192116523438],[113.337345,37.583843],[113.326851835938,37.5702480292969],[113.307345,37.5673647285156],[113.272345,37.5725368476563],[113.232345,37.566626203125],[113.206346464844,37.5704677558594],[113.14170046875,37.5594863105469],[113.11298953125,37.5381996894532],[113.097345,37.5338430000001],[113.103240996094,37.5592909980469],[113.09170046875,37.5681996894532],[113.081624785156,37.5928212714844],[113.057088652344,37.6117604804688],[113.032345,37.6081044746094],[113.000709257813,37.612778546875],[113.003160429688,37.6293544746094],[112.99170046875,37.6381996894532],[112.98298953125,37.6494863105469],[112.948795195313,37.659009015625],[112.907496367188,37.7125148750001],[112.926392851563,37.743843],[112.911549101563,37.7684523750001],[112.913140898438,37.779233625],[112.899744902344,37.8014443183594],[112.92490359375,37.7977260566407],[112.948519316406,37.8283193183594],[112.90170046875,37.8381996894532],[112.892542753906,37.87108909375],[112.872345,37.8681044746095],[112.857345,37.8703212714844],[112.826517363281,37.8657656074219],[112.777345,37.8738430000001],[112.767345,37.8738430000001],[112.763985625,37.900483625],[112.757345,37.9138430000001],[112.769261503906,37.9198708320313],[112.757345,37.943843],[112.802806425781,37.9783803535157],[112.820394316406,37.9995510078125],[112.91127078125,37.9902883125001],[112.964212675781,38.0101808906251],[113.000279570313,38.0065053535156],[113.012886992188,38.028520734375],[113.010882597656,38.0481838203126],[113.022345,38.0493520332032],[113.040477324219,38.0475051093751],[113.057345,38.053843],[113.083260527344,38.0579274726563],[113.112264433594,38.0804067207032],[113.159329863281,38.0497585273438],[113.187310820313,38.059310529297],[113.2120715625,38.095171125],[113.253638945313,38.0796169257813]]]]}},{"type":"Feature","properties":{"name":"太谷县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.833260527344,37.5097585273437],[112.851429472656,37.4979274726562],[112.883260527344,37.4897585273438],[112.901429472656,37.4779274726563],[112.943260527344,37.4697585273437],[112.971429472656,37.4479274726563],[113.008370390625,37.4268422675782],[113.021429472656,37.4079274726563],[113.033260527344,37.3997585273438],[113.037345,37.393843],[113.00298953125,37.3681996894531],[112.96170046875,37.3594863105469],[112.94298953125,37.3481996894532],[112.916737089844,37.3374550605469],[112.882916289063,37.3424526191406],[112.87298953125,37.3181996894531],[112.855968046875,37.2899819160156],[112.838426542969,37.2794863105469],[112.822740507813,37.2998085761719],[112.742884550781,37.2750685859376],[112.704783964844,37.2806984687501],[112.660924101563,37.2634560371094],[112.667139921875,37.2214028144532],[112.657345,37.213843],[112.64197390625,37.2184706855469],[112.63271609375,37.2392153144532],[112.62197390625,37.2484706855469],[112.61271609375,37.2692153144532],[112.589857207031,37.3014553046876],[112.552345,37.2984413886719],[112.525484648438,37.3005995917969],[112.51271609375,37.3292153144531],[112.50197390625,37.3384706855469],[112.49271609375,37.3492153144532],[112.477144804688,37.3626308417969],[112.497345,37.473843],[112.515145292969,37.5180348945313],[112.58170046875,37.5081996894531],[112.587345,37.503843],[112.613260527344,37.5079274726563],[112.647345,37.5343434882813],[112.684891386719,37.5052443671876],[112.703616972656,37.5181728339844],[112.700943632813,37.5300893378907],[112.727069121094,37.5679274726563],[112.763260527344,37.5497585273438],[112.771429472656,37.5379274726562],[112.793638945313,37.5296169257813],[112.79103640625,37.5180043769532],[112.833260527344,37.5097585273437]]]]}},{"type":"Feature","properties":{"name":"昔阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.127345,37.693843],[114.12271609375,37.6484706855469],[114.111219511719,37.6278627753906],[114.114241972656,37.5902284980469],[114.06271609375,37.5184706855469],[114.033856230469,37.4936061835938],[114.027345,37.443843],[114.008377714844,37.4163698554688],[113.987713652344,37.4210024238282],[113.970584746094,37.4091762519531],[113.951429472656,37.3797585273438],[113.947345,37.363843],[113.947345,37.3438430000001],[113.927345,37.3438430000001],[113.918995390625,37.355493390625],[113.901519804688,37.3680178046876],[113.887193632813,37.3880043769531],[113.853170195313,37.3380178046875],[113.836197539063,37.3258522773438],[113.757603789063,37.3622463203125],[113.743170195313,37.3996681953125],[113.730369902344,37.408843],[113.743455839844,37.4182228828125],[113.740079375,37.4353115058594],[113.701724882813,37.4277321601563],[113.682965117188,37.4539052558594],[113.652345,37.4478554511719],[113.632345,37.4518068671875],[113.612345,37.4478554511719],[113.598219023438,37.4506459785156],[113.583170195313,37.4896681953125],[113.534671660156,37.4980178046875],[113.504205351563,37.4555117011719],[113.447345,37.4667470527344],[113.402345,37.4578554511719],[113.392345,37.4598305488282],[113.362940703125,37.4540200019532],[113.34084109375,37.5162270332031],[113.34341921875,37.5292763496094],[113.33099734375,37.548843],[113.348253203125,37.5760243964844],[113.337345,37.583843],[113.343155546875,37.6192116523438],[113.324244414063,37.6505605292969],[113.39170046875,37.7094863105469],[113.457345,37.713843],[113.48170046875,37.6981996894531],[113.547127714844,37.6714223457032],[113.610767851563,37.6808266425782],[113.63170046875,37.6681996894531],[113.658546171875,37.6594863105469],[113.69170046875,37.6794863105469],[113.746263457031,37.6881996894532],[113.761832304688,37.6680287910157],[113.825032988281,37.677368390625],[113.881173125,37.7112331367188],[113.916322050781,37.7060390449219],[113.979149199219,37.6813405585938],[113.997345,37.713843],[114.047662382813,37.7221083808594],[114.09298953125,37.7094863105469],[114.127345,37.693843]]]]}},{"type":"Feature","properties":{"name":"榆次区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.767345,37.8738430000001],[112.772345,37.8610353828125],[112.777345,37.8738430000001],[112.826517363281,37.8657656074219],[112.857345,37.8703212714844],[112.872345,37.8681044746095],[112.892542753906,37.87108909375],[112.90170046875,37.8381996894532],[112.948519316406,37.8283193183594],[112.92490359375,37.7977260566407],[112.899744902344,37.8014443183594],[112.913140898438,37.779233625],[112.911549101563,37.7684523750001],[112.926392851563,37.743843],[112.907496367188,37.7125148750001],[112.948795195313,37.659009015625],[112.98298953125,37.6494863105469],[112.99170046875,37.6381996894532],[113.003160429688,37.6293544746094],[113.000709257813,37.612778546875],[113.032345,37.6081044746094],[113.057088652344,37.6117604804688],[113.081624785156,37.5928212714844],[113.09170046875,37.5681996894532],[113.103240996094,37.5592909980469],[113.097345,37.5338430000001],[113.08406375,37.5271242500001],[113.067347441406,37.4940785957032],[113.0772278125,37.473843],[113.069896269531,37.4588283515626],[113.089261503906,37.4198708320313],[113.06406375,37.4071242500001],[113.057345,37.393843],[113.037345,37.393843],[113.033260527344,37.3997585273438],[113.021429472656,37.4079274726563],[113.008370390625,37.4268422675782],[112.971429472656,37.4479274726563],[112.943260527344,37.4697585273437],[112.901429472656,37.4779274726563],[112.883260527344,37.4897585273438],[112.851429472656,37.4979274726562],[112.833260527344,37.5097585273437],[112.79103640625,37.5180043769532],[112.793638945313,37.5296169257813],[112.771429472656,37.5379274726562],[112.763260527344,37.5497585273438],[112.727069121094,37.5679274726563],[112.700943632813,37.5300893378907],[112.703616972656,37.5181728339844],[112.684891386719,37.5052443671876],[112.647345,37.5343434882813],[112.613260527344,37.5079274726563],[112.587345,37.503843],[112.590704375,37.520483625],[112.61541140625,37.5276137519532],[112.599896269531,37.5588283515625],[112.60478640625,37.5688430000001],[112.591090117188,37.596889875],[112.577345,37.6038430000001],[112.581429472656,37.6297585273438],[112.620858183594,37.6445119453125],[112.60060671875,37.6584950996094],[112.613260527344,37.6779274726563],[112.621429472656,37.6997585273437],[112.639176054688,37.7120119453126],[112.657889433594,37.7391139960938],[112.651112089844,37.7693483710938],[112.673577910156,37.7983376289063],[112.669449492188,37.8167617011719],[112.687345,37.843843],[112.72298953125,37.8581996894531],[112.742579375,37.883579328125],[112.767345,37.8738430000001]]]]}},{"type":"Feature","properties":{"name":"榆社县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.117762480469,37.3451467109376],[113.13322390625,37.318843],[113.113355742188,37.2850453925781],[113.141790800781,37.2622743964845],[113.132899199219,37.2382900214844],[113.121790800781,37.2193959785157],[113.117345,37.203843],[113.09968875,37.1660329414063],[113.134217558594,37.1421938300781],[113.131224394531,37.128843],[113.133529082031,37.1185646796876],[113.11982546875,37.0859389472657],[113.152562285156,37.0633364082031],[113.161429472656,37.0179274726563],[113.173260527344,37.0097585273437],[113.181429472656,36.9979274726563],[113.194105253906,36.9891762519531],[113.213260527344,36.9597585273438],[113.217345,36.943843],[113.184046660156,36.9307521796875],[113.151956816406,36.9501100898438],[113.14298953125,36.9281996894532],[113.093558378906,36.91776878125],[113.009227324219,36.937309796875],[112.908856230469,36.8628945136719],[112.869163847656,36.8923220039063],[112.874486113281,36.9283315253906],[112.857054472656,36.9417848945313],[112.878448515625,36.9772524238282],[112.85170046875,36.9881996894531],[112.83298953125,36.9994863105469],[112.78170046875,37.0081996894532],[112.759659453125,37.0367568183594],[112.731522246094,37.0482729316407],[112.733822050781,37.063843],[112.731004667969,37.0829140449219],[112.658526640625,37.1093581367188],[112.647345,37.123843],[112.655513945313,37.1356740546875],[112.673260527344,37.1479274726563],[112.681429472656,37.1773976875],[112.657345,37.213843],[112.667139921875,37.2214028144532],[112.660924101563,37.2634560371094],[112.704783964844,37.2806984687501],[112.742884550781,37.2750685859376],[112.822740507813,37.2998085761719],[112.838426542969,37.2794863105469],[112.855968046875,37.2899819160156],[112.87298953125,37.3181996894531],[112.882916289063,37.3424526191406],[112.916737089844,37.3374550605469],[112.94298953125,37.3481996894532],[112.96170046875,37.3594863105469],[113.00298953125,37.3681996894531],[113.037345,37.393843],[113.057345,37.393843],[113.074378691406,37.3802016425782],[113.071658964844,37.3583278632813],[113.117762480469,37.3451467109376]]]]}},{"type":"Feature","properties":{"name":"左权县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.362899199219,37.2693959785157],[113.396456328125,37.2274892402344],[113.443936796875,37.2333950019531],[113.492899199219,37.2193959785157],[113.521790800781,37.2082900214844],[113.575533476563,37.1989382148438],[113.592899199219,37.1693959785156],[113.610115996094,37.1285341621094],[113.672899199219,37.1193959785156],[113.739539824219,37.0769985175781],[113.757345,37.083843],[113.762393828125,37.064165265625],[113.784185820313,37.0491200996094],[113.757379179688,37.0145326972656],[113.787345,36.9938430000001],[113.783260527344,36.9879274726563],[113.76490359375,36.9752529121094],[113.757191191406,36.9408534980469],[113.777135039063,36.9270839667969],[113.7867590625,36.8841518378907],[113.751429472656,36.8597585273437],[113.747345,36.853843],[113.731429472656,36.8579274726563],[113.720797148438,36.8863417792969],[113.678377714844,36.8768325019532],[113.661087675781,36.8094557929688],[113.664932890625,36.7922951484375],[113.631429472656,36.7797585273438],[113.591124296875,36.7535121894531],[113.562345,36.7599636054688],[113.545936308594,36.7562856269532],[113.537345,36.743843],[113.503153105469,36.7629848457031],[113.49298953125,36.7994863105469],[113.457464628906,36.8207338691407],[113.44298953125,36.8394863105469],[113.410086699219,36.8648830390625],[113.357345,36.873843],[113.364647246094,36.9035732246094],[113.359586210938,36.9261476875],[113.321429472656,36.9479274726563],[113.293892851563,36.9878102851563],[113.273260527344,36.9579274726563],[113.226175566406,36.9310524726563],[113.217345,36.943843],[113.213260527344,36.9597585273438],[113.194105253906,36.9891762519531],[113.181429472656,36.9979274726563],[113.173260527344,37.0097585273437],[113.161429472656,37.0179274726563],[113.152562285156,37.0633364082031],[113.11982546875,37.0859389472657],[113.133529082031,37.1185646796876],[113.131224394531,37.128843],[113.134217558594,37.1421938300781],[113.09968875,37.1660329414063],[113.117345,37.203843],[113.171441679688,37.1915554023438],[113.211214628906,37.2149355292969],[113.292899199219,37.2382900214844],[113.34291140625,37.2782900214844],[113.362899199219,37.2693959785157]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"新绛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.225894804688,35.7086769843751],[111.248426542969,35.6794863105469],[111.27298953125,35.6881996894531],[111.286551542969,35.7057704902344],[111.331087675781,35.7123513007813],[111.333084746094,35.6988430000001],[111.33156375,35.6885512519531],[111.337345,35.673843],[111.28572390625,35.6699086738282],[111.294405546875,35.648843],[111.284881621094,35.6257363105469],[111.256793242188,35.6373146796875],[111.264405546875,35.618843],[111.260240507813,35.6087367988282],[111.274449492188,35.5789492011719],[111.266541777344,35.5597646308594],[111.283804960938,35.5503029609375],[111.287345,35.533843],[111.268233671875,35.5280886054688],[111.24271609375,35.4984706855469],[111.21197390625,35.4892153144532],[111.186329375,35.474907453125],[111.102948027344,35.481606671875],[111.027345,35.453843],[111.031790800781,35.4893959785156],[111.062899199219,35.5282900214844],[111.093074980469,35.5779726386719],[111.0884778125,35.6149269843751],[111.071790800781,35.6282900214844],[111.052899199219,35.7193959785156],[111.047345,35.7338430000001],[111.053531523438,35.7376552558594],[111.068782988281,35.7824050117188],[111.094154082031,35.7980373359375],[111.090521269531,35.8096950507813],[111.117345,35.823843],[111.126058378906,35.8125551582031],[111.180687285156,35.7703871894532],[111.19170046875,35.7181996894531],[111.225894804688,35.7086769843751]]]]}},{"type":"Feature","properties":{"name":"河津市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.672535429688,35.7401210761719],[110.688414335938,35.7376967597657],[110.739857207031,35.7397353339844],[110.782154570313,35.7286525703125],[110.817345,35.723843],[110.823529082031,35.7091213203125],[110.813377714844,35.6638430000001],[110.824586210938,35.613843],[110.821224394531,35.598843],[110.825706816406,35.578843],[110.819132109375,35.5495131660156],[110.833260527344,35.5397585273438],[110.837345,35.523843],[110.757437773438,35.5171645332031],[110.732020292969,35.4876638007813],[110.712345,35.4892446113281],[110.684583769531,35.4870143867188],[110.662623320313,35.4992665839844],[110.650250273438,35.4982729316406],[110.612345,35.5194228339844],[110.59271609375,35.5084706855469],[110.537345,35.503843],[110.541790800781,35.5193959785156],[110.578111601563,35.548481671875],[110.601790800781,35.6282509589844],[110.581790800781,35.6982900214844],[110.577345,35.7438430000001],[110.592535429688,35.7486525703126],[110.644698515625,35.7886525703125],[110.695404082031,35.7613100410157],[110.672535429688,35.7401210761719]]]]}},{"type":"Feature","properties":{"name":"临猗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.794781523438,35.2847133613281],[110.789383574219,35.2606276679688],[110.802345,35.2577223945313],[110.812345,35.2599636054688],[110.832345,35.2554799628907],[110.852791777344,35.260063703125],[110.871429472656,35.2479274726563],[110.887345,35.2438430000001],[110.8821496875,35.2261415839844],[110.846199980469,35.1962783027344],[110.872889433594,35.1591909003906],[110.871737089844,35.1478871894531],[110.901883574219,35.0783803535157],[110.914046660156,35.0571401191406],[110.892078886719,35.0593801093751],[110.862806425781,35.0483803535157],[110.791883574219,35.0293056464844],[110.772181425781,35.0180214667969],[110.767345,35.023843],[110.758172636719,35.035298078125],[110.709752226563,35.0482900214844],[110.692899199219,35.0082900214844],[110.644605742188,34.9879396796875],[110.627345,34.9900868964844],[110.607345,34.9875991035156],[110.587345,34.9900868964844],[110.552345,34.9857338691407],[110.512345,34.9907082343751],[110.491983671875,34.9881764960938],[110.395340605469,35.0458388496094],[110.351790800781,35.0582900214845],[110.337345,35.063843],[110.341429472656,35.0797585273438],[110.366534453125,35.13515159375],[110.356527128906,35.1797975898438],[110.3755090625,35.2570778632813],[110.397345,35.303843],[110.413260527344,35.2997585273438],[110.452506132813,35.2832753730469],[110.517652617188,35.2978798652344],[110.54033328125,35.2650295234376],[110.562623320313,35.2700258613282],[110.599027128906,35.2547365546875],[110.632345,35.2622060371094],[110.644486113281,35.2297585273438],[110.655455351563,35.2399697089844],[110.650186796875,35.2634743476563],[110.665936308594,35.2862856269531],[110.682345,35.2899636054688],[110.709901152344,35.2837868476563],[110.787782011719,35.3079274726563],[110.794781523438,35.2847133613281]]]]}},{"type":"Feature","properties":{"name":"平陆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.253260527344,35.0097585273438],[111.307074003906,34.9965407539062],[111.332345,35.0022060371094],[111.357345,34.9966017890626],[111.38435671875,35.0026564765625],[111.419249296875,34.9521181464844],[111.431429472656,34.9697585273438],[111.453260527344,34.9779274726563],[111.479097929688,34.9947524238282],[111.503053007813,35.000122296875],[111.522967558594,34.9652309394531],[111.583260527344,34.9497585273438],[111.611429472656,34.9379274726563],[111.627345,34.9338430000001],[111.61298953125,34.8981996894532],[111.59170046875,34.8894863105469],[111.580260039063,34.8615297675782],[111.557345,34.843843],[111.544344511719,34.8583913398438],[111.471302519531,34.8280117011719],[111.437345,34.8300356269532],[111.410377226563,34.8284279609376],[111.397345,34.813843],[111.371429472656,34.8179274726563],[111.337345,34.8322426582032],[111.288702421875,34.8118129707032],[111.248992949219,34.8207155585938],[111.230094023438,34.7933425117187],[111.14513796875,34.8142104316407],[111.137345,34.7838430000001],[111.10298953125,34.7581996894532],[111.035084257813,34.7438698554688],[111.027345,34.733843],[111.003765898438,34.7277919746094],[110.96509890625,34.7026125312501],[110.953260527344,34.7197585273438],[110.941429472656,34.7279274726563],[110.937345,34.733843],[110.957652617188,34.7386257148438],[110.921998320313,34.7507765937501],[110.913531523438,34.8200307441406],[110.901158476563,34.8276552558594],[110.897345,34.843843],[110.939454375,34.8716701484375],[111.002034941406,34.9000331855469],[111.013016386719,34.8975722480469],[111.027254667969,34.9181972480469],[111.053260527344,34.9279274726563],[111.081429472656,34.9497585273438],[111.1157825,34.96261253125],[111.145513945313,35.0056740546875],[111.177345,35.0138430000001],[111.253260527344,35.0097585273438]]]]}},{"type":"Feature","properties":{"name":"万荣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.843475371094,35.4988845039063],[110.840186796875,35.4842116523438],[110.851673613281,35.4675722480469],[110.862791777344,35.4700637031251],[110.884459257813,35.4559548164063],[110.903016386719,35.4601137519532],[110.911429472656,35.4479274726563],[110.983260527344,35.4297585273438],[110.991429472656,35.3879274726563],[110.997345,35.383843],[110.997345,35.373843],[110.991790800781,35.3693959785156],[110.955716582031,35.3100014472657],[110.921790800781,35.2893959785156],[110.912899199219,35.2782900214844],[110.892530546875,35.2619802070313],[110.887345,35.2438430000001],[110.871429472656,35.2479274726563],[110.852791777344,35.260063703125],[110.832345,35.2554799628907],[110.812345,35.2599636054688],[110.802345,35.2577223945313],[110.789383574219,35.2606276679688],[110.794781523438,35.2847133613281],[110.787782011719,35.3079274726563],[110.709901152344,35.2837868476563],[110.682345,35.2899636054688],[110.665936308594,35.2862856269531],[110.650186796875,35.2634743476563],[110.655455351563,35.2399697089844],[110.644486113281,35.2297585273438],[110.632345,35.2622060371094],[110.599027128906,35.2547365546875],[110.562623320313,35.2700258613282],[110.54033328125,35.2650295234376],[110.517652617188,35.2978798652344],[110.452506132813,35.2832753730469],[110.413260527344,35.2997585273438],[110.397345,35.303843],[110.407345,35.3238430000001],[110.412862578125,35.3285964179688],[110.466490507813,35.4145156074219],[110.488253203125,35.4632912421875],[110.50197390625,35.4792153144532],[110.537345,35.503843],[110.59271609375,35.5084706855469],[110.612345,35.5194228339844],[110.650250273438,35.4982729316406],[110.662623320313,35.4992665839844],[110.684583769531,35.4870143867188],[110.712345,35.4892446113281],[110.732020292969,35.4876638007813],[110.757437773438,35.5171645332031],[110.837345,35.523843],[110.843475371094,35.4988845039063]]]]}},{"type":"Feature","properties":{"name":"闻喜县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.365201445313,35.5079714179688],[111.386868925781,35.4738430000001],[111.367545195313,35.4434072089844],[111.403170195313,35.4296681953125],[111.424205351563,35.4003188300781],[111.488526640625,35.4130287910157],[111.530386992188,35.3968849921876],[111.544710722656,35.3597475410157],[111.607345,35.343843],[111.620421171875,35.2906069160157],[111.589173613281,35.2789150214844],[111.561429472656,35.2597585273437],[111.553260527344,35.2479274726563],[111.51896609375,35.239126203125],[111.507345,35.193843],[111.500943632813,35.1708522773438],[111.481832304688,35.1680287910157],[111.47298953125,35.1794863105469],[111.461529570313,35.1883315253907],[111.463206816406,35.1996694160156],[111.409151640625,35.2397450996094],[111.32170046875,35.2581996894531],[111.30490359375,35.2799599433594],[111.281253691406,35.2764650703125],[111.284022246094,35.2951918769532],[111.272857695313,35.3096572089844],[111.262345,35.3081044746094],[111.235889921875,35.3120131660157],[111.210767851563,35.2968593574219],[111.182857695313,35.3009841132813],[111.152738066406,35.2619618964844],[111.13170046875,35.2781996894532],[111.116263457031,35.2981996894531],[111.08170046875,35.2894863105469],[111.077345,35.2838430000001],[111.051429472656,35.2979274726563],[111.043260527344,35.3297585273438],[111.001429472656,35.3579274726563],[110.997345,35.373843],[110.997345,35.383843],[111.022252226563,35.4215358710938],[111.027345,35.453843],[111.102948027344,35.481606671875],[111.186329375,35.474907453125],[111.21197390625,35.4892153144532],[111.24271609375,35.4984706855469],[111.268233671875,35.5280886054688],[111.287345,35.533843],[111.312899199219,35.5382900214844],[111.331829863281,35.5494179511719],[111.404312773438,35.5701161933594],[111.417345,35.5538430000001],[111.405694609375,35.545493390625],[111.393170195313,35.5280178046875],[111.365201445313,35.5079714179688]]]]}},{"type":"Feature","properties":{"name":"夏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.235889921875,35.3120131660157],[111.262345,35.3081044746094],[111.272857695313,35.3096572089844],[111.284022246094,35.2951918769532],[111.281253691406,35.2764650703125],[111.30490359375,35.2799599433594],[111.32170046875,35.2581996894531],[111.409151640625,35.2397450996094],[111.463206816406,35.1996694160156],[111.461529570313,35.1883315253907],[111.47298953125,35.1794863105469],[111.481832304688,35.1680287910157],[111.500943632813,35.1708522773438],[111.507345,35.193843],[111.52170046875,35.1881996894531],[111.55298953125,35.1794863105469],[111.56170046875,35.1581996894531],[111.620616484375,35.134087140625],[111.584129667969,35.1059242988282],[111.578878203125,35.0703774238281],[111.660472441406,35.0565163398438],[111.665301542969,35.023843],[111.66156375,34.9985512519531],[111.667345,34.983843],[111.676256132813,34.9475661445313],[111.633260527344,34.9379274726563],[111.627345,34.9338430000001],[111.611429472656,34.9379274726563],[111.583260527344,34.9497585273438],[111.522967558594,34.9652309394531],[111.503053007813,35.000122296875],[111.479097929688,34.9947524238282],[111.453260527344,34.9779274726563],[111.431429472656,34.9697585273438],[111.419249296875,34.9521181464844],[111.38435671875,35.0026564765625],[111.357345,34.9966017890626],[111.332345,35.0022060371094],[111.307074003906,34.9965407539062],[111.253260527344,35.0097585273438],[111.177345,35.0138430000001],[111.173260527344,35.0297585273437],[111.143682890625,35.050180890625],[111.123260527344,35.0797585273438],[111.101429472656,35.0879274726563],[111.08896609375,35.1059767890625],[111.106900664063,35.1335182929687],[111.099281035156,35.167505109375],[111.071429472656,35.1779274726563],[111.053260527344,35.2297585273438],[111.035811796875,35.2565529609376],[111.073260527344,35.2779274726563],[111.077345,35.2838430000001],[111.08170046875,35.2894863105469],[111.116263457031,35.2981996894531],[111.13170046875,35.2781996894532],[111.152738066406,35.2619618964844],[111.182857695313,35.3009841132813],[111.210767851563,35.2968593574219],[111.235889921875,35.3120131660157]]]]}},{"type":"Feature","properties":{"name":"盐湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.123260527344,35.0797585273438],[111.143682890625,35.050180890625],[111.173260527344,35.0297585273437],[111.177345,35.0138430000001],[111.145513945313,35.0056740546875],[111.1157825,34.96261253125],[111.081429472656,34.9497585273438],[111.053260527344,34.9279274726563],[111.027254667969,34.9181972480469],[111.013016386719,34.8975722480469],[111.002034941406,34.9000331855469],[110.939454375,34.8716701484375],[110.897345,34.843843],[110.879144316406,34.8361977363282],[110.862303496094,34.8399733710937],[110.813260527344,34.8279274726562],[110.767345,34.8238430000001],[110.756698027344,34.8304030585937],[110.733988066406,34.8994521308594],[110.765460234375,34.918843],[110.733531523438,34.9385158515626],[110.741158476563,34.9700307441406],[110.753531523438,34.9876552558594],[110.761158476563,35.0200307441407],[110.767345,35.023843],[110.772181425781,35.0180214667969],[110.791883574219,35.0293056464844],[110.862806425781,35.0483803535157],[110.892078886719,35.0593801093751],[110.914046660156,35.0571401191406],[110.901883574219,35.0783803535157],[110.871737089844,35.1478871894531],[110.872889433594,35.1591909003906],[110.846199980469,35.1962783027344],[110.8821496875,35.2261415839844],[110.887345,35.2438430000001],[110.892530546875,35.2619802070313],[110.912899199219,35.2782900214844],[110.921790800781,35.2893959785156],[110.955716582031,35.3100014472657],[110.991790800781,35.3693959785156],[110.997345,35.373843],[111.001429472656,35.3579274726563],[111.043260527344,35.3297585273438],[111.051429472656,35.2979274726563],[111.077345,35.2838430000001],[111.073260527344,35.2779274726563],[111.035811796875,35.2565529609376],[111.053260527344,35.2297585273438],[111.071429472656,35.1779274726563],[111.099281035156,35.167505109375],[111.106900664063,35.1335182929687],[111.08896609375,35.1059767890625],[111.101429472656,35.0879274726563],[111.123260527344,35.0797585273438]]]]}},{"type":"Feature","properties":{"name":"永济市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.395340605469,35.0458388496094],[110.491983671875,34.9881764960938],[110.512345,34.9907082343751],[110.552345,34.9857338691407],[110.587345,34.9900868964844],[110.607345,34.9875991035156],[110.627345,34.9900868964844],[110.644605742188,34.9879396796875],[110.692899199219,35.0082900214844],[110.709752226563,35.0482900214844],[110.758172636719,35.035298078125],[110.767345,35.023843],[110.761158476563,35.0200307441407],[110.753531523438,34.9876552558594],[110.741158476563,34.9700307441406],[110.733531523438,34.9385158515626],[110.765460234375,34.918843],[110.733988066406,34.8994521308594],[110.756698027344,34.8304030585937],[110.767345,34.8238430000001],[110.762899199219,34.8182900214844],[110.721790800781,34.8093959785156],[110.702703886719,34.7981764960937],[110.675477324219,34.8015627265626],[110.649198027344,34.7861147285157],[110.500750761719,34.8046620917969],[110.459371367188,34.7803395820313],[110.442345,34.7782216621094],[110.431986113281,34.7795095039063],[110.412899199219,34.7682900214844],[110.346922636719,34.7568080878906],[110.298114042969,34.7271620917969],[110.281790800781,34.6993959785157],[110.272899199219,34.6782900214845],[110.247345,34.6738430000001],[110.24271609375,34.6792153144532],[110.2290246875,34.8311879707032],[110.243697539063,34.8711391425782],[110.203758574219,34.9055495429688],[110.23271609375,34.9184706855469],[110.257918730469,34.9325319648438],[110.267345,34.963843],[110.273985625,34.967202375],[110.280704375,34.9904836250001],[110.303985625,35.017202375],[110.324032011719,35.0571083808594],[110.337345,35.063843],[110.351790800781,35.0582900214845],[110.395340605469,35.0458388496094]]]]}},{"type":"Feature","properties":{"name":"垣曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.017345,35.3938430000001],[112.021429472656,35.3479274726563],[112.043875761719,35.3395290351563],[112.063861113281,35.3088356757813],[112.047345,35.2838430000001],[112.051610136719,35.2681081367188],[112.081082792969,35.22894065625],[112.038062773438,35.1969374824219],[112.059283476563,35.1441432929687],[112.050623808594,35.0938430000001],[112.057808867188,35.0521022773438],[112.027345,35.043843],[112.017008085938,35.0588149238282],[111.957345,35.073843],[111.937174101563,35.0817726875001],[111.907345,35.0773647285157],[111.892310820313,35.0795864082032],[111.815150175781,35.0669118476563],[111.79298953125,35.0381996894531],[111.77170046875,35.0294863105469],[111.759605742188,35.0138161445313],[111.69170046875,34.9994863105469],[111.667345,34.983843],[111.66156375,34.9985512519531],[111.665301542969,35.023843],[111.660472441406,35.0565163398438],[111.578878203125,35.0703774238281],[111.584129667969,35.1059242988282],[111.620616484375,35.134087140625],[111.56170046875,35.1581996894531],[111.55298953125,35.1794863105469],[111.52170046875,35.1881996894531],[111.507345,35.193843],[111.51896609375,35.239126203125],[111.553260527344,35.2479274726563],[111.561429472656,35.2597585273437],[111.589173613281,35.2789150214844],[111.620421171875,35.2906069160157],[111.607345,35.343843],[111.641539335938,35.353364484375],[111.667977324219,35.3876161933594],[111.761832304688,35.3737465644532],[111.78170046875,35.3994863105469],[111.847345,35.403843],[111.888736601563,35.3875710273438],[111.902345,35.3895815253906],[111.932857695313,35.38507346875],[111.956058378906,35.4151308417969],[111.967345,35.423843],[112.00170046875,35.3981996894532],[112.017345,35.3938430000001]]]]}},{"type":"Feature","properties":{"name":"芮城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.897345,34.843843],[110.901158476563,34.8276552558594],[110.913531523438,34.8200307441406],[110.921998320313,34.7507765937501],[110.957652617188,34.7386257148438],[110.937345,34.733843],[110.911883574219,34.7293056464844],[110.902806425781,34.6883803535156],[110.890692167969,34.6561367011719],[110.851883574219,34.6393056464844],[110.822323027344,34.6180312324219],[110.778138457031,34.6530007148438],[110.725494414063,34.6476357246094],[110.705228300781,34.6009047675781],[110.596553984375,34.6119814277344],[110.572806425781,34.5983803535156],[110.533890410156,34.5815029121094],[110.480931425781,34.6118349433594],[110.409342070313,34.5918202949219],[110.377345,34.603843],[110.297606230469,34.6104714179688],[110.272105742188,34.6084218574219],[110.257345,34.613843],[110.251429472656,34.6379274726563],[110.247345,34.6738430000001],[110.272899199219,34.6782900214845],[110.281790800781,34.6993959785157],[110.298114042969,34.7271620917969],[110.346922636719,34.7568080878906],[110.412899199219,34.7682900214844],[110.431986113281,34.7795095039063],[110.442345,34.7782216621094],[110.459371367188,34.7803395820313],[110.500750761719,34.8046620917969],[110.649198027344,34.7861147285157],[110.675477324219,34.8015627265626],[110.702703886719,34.7981764960937],[110.721790800781,34.8093959785156],[110.762899199219,34.8182900214844],[110.767345,34.8238430000001],[110.813260527344,34.8279274726562],[110.862303496094,34.8399733710937],[110.879144316406,34.8361977363282],[110.897345,34.843843]]]]}},{"type":"Feature","properties":{"name":"绛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7172278125,35.637856671875],[111.790953398438,35.5967226386719],[111.844124785156,35.6009950996094],[111.822838164063,35.5628420234375],[111.86197390625,35.5484706855469],[111.90197390625,35.5364284492188],[111.88271609375,35.5184706855469],[111.848053007813,35.5080348945313],[111.831219511719,35.4778627753907],[111.832769804688,35.4585646796875],[111.821693144531,35.4387123847657],[111.842154570313,35.4210842109376],[111.847345,35.403843],[111.78170046875,35.3994863105469],[111.761832304688,35.3737465644532],[111.667977324219,35.3876161933594],[111.641539335938,35.353364484375],[111.607345,35.343843],[111.544710722656,35.3597475410157],[111.530386992188,35.3968849921876],[111.488526640625,35.4130287910157],[111.424205351563,35.4003188300781],[111.403170195313,35.4296681953125],[111.367545195313,35.4434072089844],[111.386868925781,35.4738430000001],[111.365201445313,35.5079714179688],[111.393170195313,35.5280178046875],[111.405694609375,35.545493390625],[111.417345,35.5538430000001],[111.430704375,35.5604836250001],[111.447345,35.563843],[111.520213652344,35.5699001289063],[111.571546660156,35.5558510566407],[111.58197390625,35.5792153144531],[111.59271609375,35.5984706855469],[111.60197390625,35.6292153144532],[111.61271609375,35.6384706855469],[111.617345,35.643843],[111.677650175781,35.6497731757813],[111.7172278125,35.637856671875]]]]}},{"type":"Feature","properties":{"name":"稷山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.961090117188,35.8037514472656],[110.998643828125,35.7346511054687],[111.022386503906,35.7399733710938],[111.047345,35.7338430000001],[111.052899199219,35.7193959785156],[111.071790800781,35.6282900214844],[111.0884778125,35.6149269843751],[111.093074980469,35.5779726386719],[111.062899199219,35.5282900214844],[111.031790800781,35.4893959785156],[111.027345,35.453843],[111.022252226563,35.4215358710938],[110.997345,35.383843],[110.991429472656,35.3879274726563],[110.983260527344,35.4297585273438],[110.911429472656,35.4479274726563],[110.903016386719,35.4601137519532],[110.884459257813,35.4559548164063],[110.862791777344,35.4700637031251],[110.851673613281,35.4675722480469],[110.840186796875,35.4842116523438],[110.843475371094,35.4988845039063],[110.837345,35.523843],[110.833260527344,35.5397585273438],[110.819132109375,35.5495131660156],[110.825706816406,35.578843],[110.821224394531,35.598843],[110.824586210938,35.613843],[110.813377714844,35.6638430000001],[110.823529082031,35.7091213203125],[110.817345,35.723843],[110.843260527344,35.7197585273438],[110.909451933594,35.6897585273438],[110.937718535156,35.7232009101563],[110.944586210938,35.753843],[110.940186796875,35.7734743476563],[110.961090117188,35.8037514472656]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"保德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.327093535156,38.8741493964844],[111.292425566406,38.8472792792969],[111.260716582031,38.8679274726562],[111.241429472656,38.8397585273437],[111.233260527344,38.7979274726563],[111.207398710938,38.7882497382813],[111.225513945313,38.7620119453125],[111.251429472656,38.7441188789063],[111.232891875,38.7275991035156],[111.222066679688,38.7300258613282],[111.207345,38.723843],[111.178968535156,38.7302883125],[111.151527128906,38.7268752265625],[111.102899199219,38.6982900214844],[111.071790800781,38.6893959785156],[111.014949980469,38.6559828925782],[110.979827910156,38.6816396308594],[110.951890898438,38.6781642890626],[110.940863066406,38.6919362617188],[110.944154082031,38.7183901191407],[110.937345,38.723843],[110.954053984375,38.7501064277344],[110.951441679688,38.7711074042969],[110.974049101563,38.7892104316406],[111.003155546875,38.8387270332032],[110.99146609375,38.86913596875],[111.011790800781,38.8854116035156],[111.001976347656,38.9339516425781],[110.97353640625,38.9823342109376],[111.031790800781,39.0193959785157],[111.08931765625,39.0294069648438],[111.131419707031,39.0631227851563],[111.141790800781,39.0993959785157],[111.167345,39.113843],[111.179176054688,39.1056740546876],[111.203905058594,39.069858625],[111.255824003906,39.0565346503906],[111.273565703125,39.0292897773438],[111.269757109375,39.0122951484375],[111.317750273438,38.9943361640625],[111.325233183594,38.9609572578125],[111.308409453125,38.9351198554688],[111.317345,38.913843],[111.327093535156,38.8741493964844]]]]}},{"type":"Feature","properties":{"name":"静乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.212899199219,38.6593959785157],[112.228463164063,38.6224599433594],[112.282899199219,38.5893959785157],[112.317345,38.5638430000001],[112.301676054688,38.5392153144532],[112.306092558594,38.5037221503907],[112.289757109375,38.4759352851563],[112.325284453125,38.4474843574219],[112.320535917969,38.4092958808594],[112.339832792969,38.393843],[112.311441679688,38.3711074042969],[112.313026152344,38.3583681464844],[112.2554309375,38.323384015625],[112.267345,38.313843],[112.263441191406,38.3077455878907],[112.233914824219,38.2888430000001],[112.265926542969,38.2683486152344],[112.223531523438,38.2580690742188],[112.218343535156,38.2396059394531],[112.24412234375,38.2231020332031],[112.2601575,38.1660414863282],[112.233441191406,38.1477455878907],[112.211248808594,38.1399404121094],[112.207345,38.1338430000001],[112.20170046875,38.1381996894532],[112.152486601563,38.1496034980469],[112.125889921875,38.1456728339844],[112.095592070313,38.1639479804688],[112.037345,38.1738430000001],[111.993175078125,38.184692609375],[111.952623320313,38.1676601386719],[111.922017851563,38.1745204902344],[111.882791777344,38.200063703125],[111.858011503906,38.1945082832031],[111.863616972656,38.2195131660156],[111.843802519531,38.2331935859375],[111.833260527344,38.2179274726563],[111.807345,38.2138430000001],[111.79400515625,38.2305019355469],[111.764830351563,38.2538649726563],[111.760650664063,38.2874575019531],[111.841790800781,38.3015773750001],[111.832899199219,38.3193959785157],[111.821790800781,38.3282900214844],[111.812899199219,38.3693959785157],[111.781663847656,38.3883681464844],[111.782967558594,38.398843],[111.781102324219,38.413843],[111.78556765625,38.4497536445313],[111.713233671875,38.5048036933594],[111.767345,38.533843],[111.783260527344,38.5379274726563],[111.802076445313,38.565180890625],[111.861429472656,38.5797585273438],[111.867345,38.583843],[111.892899199219,38.5793959785156],[111.921239042969,38.5627370429688],[111.952899199219,38.5493959785157],[111.964578886719,38.52167503125],[112.002515898438,38.5169557929688],[112.011790800781,38.5493959785157],[112.032899199219,38.5582900214844],[112.045213652344,38.5875148750001],[112.109781523438,38.6059767890626],[112.12322390625,38.628843],[112.106390410156,38.6574806953126],[112.122345,38.6594643378907],[112.135638457031,38.6578115058594],[112.19263796875,38.6797206855469],[112.201790800781,38.6682900214844],[112.212899199219,38.6593959785157]]]]}},{"type":"Feature","properties":{"name":"代县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.180291777344,39.2099440742188],[113.221610136719,39.1588198066407],[113.225955839844,39.1294130683594],[113.19298953125,39.1159206367188],[113.202203398438,39.0866054511719],[113.231832304688,39.0909841132813],[113.241832304688,39.0780287910157],[113.253480253906,39.0797499824219],[113.321131621094,39.0520619941407],[113.323084746094,39.038843],[113.320128203125,39.0188430000001],[113.346324492188,39.0081215644531],[113.357345,38.993843],[113.280115996094,38.9717617011719],[113.284210234375,38.9388430000001],[113.280067167969,38.9055239082032],[113.241790800781,38.8893959785157],[113.231890898438,38.8770339179687],[113.186317167969,38.8827028632813],[113.146966582031,38.8539565253907],[113.071961699219,38.8753749824219],[113.042899199219,38.8582900214844],[113.007345,38.853843],[112.991519804688,38.8580178046875],[112.964920683594,38.8951308417969],[112.953170195313,38.9396681953125],[112.911519804688,38.9480178046875],[112.878997832031,38.9728542304688],[112.817628203125,38.9890444160156],[112.768111601563,39.0617922187501],[112.723392363281,39.0938430000001],[112.743170195313,39.1080178046875],[112.751519804688,39.1336830878906],[112.737345,39.143843],[112.743475371094,39.1688014960938],[112.741041289063,39.1796584296875],[112.757345,39.183843],[112.774783964844,39.19069846875],[112.809451933594,39.1855763984375],[112.84170046875,39.2094863105469],[112.87298953125,39.2181996894532],[112.88170046875,39.2394863105469],[112.89298953125,39.2481996894532],[112.924600859375,39.2891555000001],[113.027181425781,39.3177211738281],[113.05170046875,39.3494863105469],[113.067345,39.3538430000001],[113.104744902344,39.367895734375],[113.123509550781,39.3246315742188],[113.151883574219,39.3083803535157],[113.172806425781,39.2993056464844],[113.177345,39.293843],[113.168138457031,39.2867372871094],[113.151077910156,39.2584535957031],[113.185384550781,39.2444130683594],[113.180291777344,39.2099440742188]]]]}},{"type":"Feature","properties":{"name":"定襄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.087139921875,38.6562831855469],[113.081517363281,38.6182497382812],[113.115894804688,38.6086769843751],[113.140413847656,38.5769118476563],[113.18298953125,38.5594863105469],[113.19978640625,38.5377260566406],[113.228638945313,38.5419899726563],[113.26298953125,38.4994863105469],[113.277345,38.463843],[113.271007109375,38.4391481757813],[113.211429472656,38.4297585273438],[113.193260527344,38.4179274726563],[113.137345,38.413843],[113.119696074219,38.4201747871094],[113.090377226563,38.4184279609375],[113.063609648438,38.3884694648438],[113.052345,38.3891408515625],[113.040377226563,38.3884279609375],[112.996820097656,38.3396791816407],[112.957345,38.353843],[112.948450957031,38.3649489570313],[112.898055449219,38.3793581367187],[112.904244414063,38.4291054511719],[112.861214628906,38.4384145332032],[112.877337675781,38.4658412910157],[112.849857207031,38.4878469062501],[112.862899199219,38.4982900214844],[112.877845488281,38.5169557929688],[112.837064238281,38.5863307929688],[112.781790800781,38.5982900214844],[112.747142363281,38.6116091132813],[112.737345,38.623843],[112.754783964844,38.63069846875],[112.772554960938,38.6280727363281],[112.822225371094,38.6425551582032],[112.857345,38.6373647285156],[112.896832304688,38.6432009101563],[112.952723417969,38.6094863105469],[112.98298953125,38.6181996894531],[113.019205351563,38.6400453925782],[113.032857695313,38.6380287910156],[113.04170046875,38.6494863105469],[113.077345,38.663843],[113.087139921875,38.6562831855469]]]]}},{"type":"Feature","properties":{"name":"繁峙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.567345,39.4338430000001],[113.591964140625,39.4177272773438],[113.64255984375,39.4299184394531],[113.681798125,39.413794171875],[113.715303984375,39.420415265625],[113.750999785156,39.4066481757813],[113.771619902344,39.3778786445313],[113.832345,39.3658791328125],[113.888001738281,39.3768776679688],[113.897345,39.3638430000001],[113.888817167969,39.3435390449219],[113.930440703125,39.3148000312501],[113.957469511719,39.2732949042969],[113.943260527344,39.2179274726563],[113.925855742188,39.2059096503906],[113.943499785156,39.1489894843751],[113.941160917969,39.1385646796876],[113.953260527344,39.1097585273438],[113.957345,39.0938430000001],[113.940704375,39.090483625],[113.913985625,39.067202375],[113.880704375,39.060483625],[113.843985625,39.027202375],[113.810704375,39.010483625],[113.803985625,38.9972023750001],[113.777345,38.993843],[113.753704863281,39.0233657050781],[113.682799101563,39.0145461250001],[113.647528105469,39.0585903144532],[113.591790800781,39.0682900214844],[113.572345,39.0797206855469],[113.543116484375,39.0625405097656],[113.532899199219,39.0382900214844],[113.480623808594,38.9729286933594],[113.428914824219,38.9593959785156],[113.412799101563,38.9795217109376],[113.402061796875,38.9781862617188],[113.372899199219,38.9893959785156],[113.357345,38.993843],[113.346324492188,39.0081215644531],[113.320128203125,39.0188430000001],[113.323084746094,39.038843],[113.321131621094,39.0520619941407],[113.253480253906,39.0797499824219],[113.241832304688,39.0780287910157],[113.231832304688,39.0909841132813],[113.202203398438,39.0866054511719],[113.19298953125,39.1159206367188],[113.225955839844,39.1294130683594],[113.221610136719,39.1588198066407],[113.180291777344,39.2099440742188],[113.185384550781,39.2444130683594],[113.151077910156,39.2584535957031],[113.168138457031,39.2867372871094],[113.177345,39.293843],[113.263861113281,39.3183718085938],[113.387611113281,39.3057582832032],[113.402806425781,39.3183803535157],[113.411954375,39.3293923164063],[113.431156035156,39.3274355292969],[113.451883574219,39.3393056464844],[113.502806425781,39.3483803535157],[113.531883574219,39.3893056464844],[113.552896757813,39.3984194160156],[113.55107546875,39.4162953925782],[113.561883574219,39.4293056464844],[113.567345,39.4338430000001]]]]}},{"type":"Feature","properties":{"name":"河曲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.397345,38.913843],[111.409537382813,38.9104201484375],[111.400767851563,38.9016506171875],[111.397345,38.913843]]],[[[111.397345,38.913843],[111.378292265625,38.9053090644532],[111.332161894531,38.9204811835938],[111.317345,38.913843],[111.308409453125,38.9351198554688],[111.325233183594,38.9609572578125],[111.317750273438,38.9943361640625],[111.269757109375,39.0122951484375],[111.273565703125,39.0292897773438],[111.255824003906,39.0565346503906],[111.203905058594,39.069858625],[111.179176054688,39.1056740546876],[111.167345,39.113843],[111.160386992188,39.1570058417969],[111.188675566406,39.2051296210938],[111.213016386719,39.2384511542969],[111.209549589844,39.2663246894532],[111.233595,39.2992446113281],[111.179498320313,39.3109499335938],[111.185264921875,39.3573159003906],[111.150213652344,39.3367116523438],[111.152967558594,39.3588430000001],[111.151383085938,39.3715749335938],[111.117345,39.3638430000001],[111.12197390625,39.3792153144532],[111.160369902344,39.4282424140626],[111.282345,39.4184413886719],[111.3482825,39.4237392402344],[111.357345,39.453843],[111.402899199219,39.4493959785156],[111.421790800781,39.3982900214844],[111.448074980469,39.3772426582032],[111.432899199219,39.3582900214844],[111.402899199219,39.3342665839844],[111.481439238281,39.2814882636719],[111.569051542969,39.2478115058594],[111.600748320313,39.2517543769532],[111.607345,39.213843],[111.601158476563,39.2100307441406],[111.593531523438,39.1976552558594],[111.547464628906,39.1725759101562],[111.521539335938,39.1806508613281],[111.509720488281,39.1614675117188],[111.485311308594,39.1464272285157],[111.495511503906,39.1136745429688],[111.481158476563,39.0700307441407],[111.473531523438,39.0123537421875],[111.495579863281,38.9987697578125],[111.461158476563,38.9800307441406],[111.457345,38.9738430000001],[111.406058378906,38.9651308417969],[111.397345,38.913843]]]]}},{"type":"Feature","properties":{"name":"宁武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457345,38.683843],[112.467345,38.683843],[112.467345,38.6738430000001],[112.457345,38.6738430000001],[112.457345,38.683843]]],[[[112.277345,39.103843],[112.287345,39.103843],[112.287345,39.0938430000001],[112.277345,39.0938430000001],[112.277345,39.103843]]],[[[112.277345,39.103843],[112.257345,39.103843],[112.257345,39.123843],[112.300101347656,39.1200380683594],[112.280614042969,39.1105739570312],[112.277345,39.103843]]],[[[112.457345,38.683843],[112.431656523438,38.6793727851562],[112.433924589844,38.6611428046875],[112.37068484375,38.6105019355469],[112.352899199219,38.5882900214844],[112.321790800781,38.5693959785156],[112.317345,38.5638430000001],[112.282899199219,38.5893959785157],[112.228463164063,38.6224599433594],[112.212899199219,38.6593959785157],[112.201790800781,38.6682900214844],[112.19263796875,38.6797206855469],[112.135638457031,38.6578115058594],[112.122345,38.6594643378907],[112.106390410156,38.6574806953126],[112.12322390625,38.628843],[112.109781523438,38.6059767890626],[112.045213652344,38.5875148750001],[112.032899199219,38.5582900214844],[112.011790800781,38.5493959785157],[112.002515898438,38.5169557929688],[111.964578886719,38.52167503125],[111.952899199219,38.5493959785157],[111.921239042969,38.5627370429688],[111.892899199219,38.5793959785156],[111.867345,38.583843],[111.85298953125,38.6194863105469],[111.833116484375,38.6524330878906],[111.847345,38.7138430000001],[111.861429472656,38.7197585273438],[111.893260527344,38.7279274726563],[111.901429472656,38.7397585273438],[111.923260527344,38.7479274726563],[111.931429472656,38.7697585273438],[111.950369902344,38.798843],[111.930833769531,38.8288430000001],[111.943260527344,38.8479274726563],[111.95298953125,38.8977516914063],[111.985303984375,38.9187929511719],[112.017345,38.923843],[112.02298953125,38.9281996894531],[112.031937285156,38.9397927070313],[112.090941191406,38.9225893378907],[112.11170046875,38.9494863105469],[112.143765898438,38.9742360664063],[112.13912234375,39.0056508613282],[112.21298953125,39.0181996894532],[112.230064726563,39.0599184394532],[112.242345,39.0581044746094],[112.25263796875,39.0596254707031],[112.282689238281,39.0478115058594],[112.294022246094,39.0624941230469],[112.29156375,39.0791347480469],[112.297345,39.0938430000001],[112.303260527344,39.0979274726562],[112.314393339844,39.1276821113281],[112.365545683594,39.1061977363282],[112.397345,39.1133266425781],[112.441124296875,39.1035121894532],[112.509329863281,39.1479274726563],[112.537310820313,39.1383754707032],[112.551429472656,39.1179274726563],[112.573260527344,39.1097585273438],[112.583035917969,39.0836330390626],[112.607345,39.0938430000001],[112.607345,39.083843],[112.617345,39.083843],[112.612408476563,39.0670180488282],[112.562611113281,39.0483058906251],[112.528348417969,39.0517983222657],[112.488409453125,39.0271633125],[112.457432890625,38.9898708320313],[112.437345,38.9878237128907],[112.396553984375,38.9919814277344],[112.371156035156,38.9774355292969],[112.343858671875,38.9802175117188],[112.316656523438,38.9327211738281],[112.333363066406,38.918843],[112.300206328125,38.8913002753906],[112.2815246875,38.8586782050782],[112.301663847656,38.8419496894532],[112.281097441406,38.7872133613281],[112.302806425781,38.7493056464844],[112.320155058594,38.7093056464844],[112.362869902344,38.7264186835938],[112.382181425781,38.7496645332031],[112.403533964844,38.7374355292969],[112.429178496094,38.7400490546875],[112.464945097656,38.7179860664063],[112.457345,38.683843]]]]}},{"type":"Feature","properties":{"name":"偏关县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.437345,39.6238430000001],[111.449852324219,39.6010243964844],[111.460885039063,39.6187795234375],[111.427345,39.643843],[111.46271609375,39.6484706855469],[111.505101347656,39.6640358710937],[111.60400515625,39.6369680000001],[111.655982695313,39.6411440253906],[111.7012121875,39.620962140625],[111.718997832031,39.600317609375],[111.788143339844,39.59476096875],[111.832218046875,39.6193520332031],[111.87216921875,39.6084169746094],[111.927345,39.613843],[111.941790800781,39.5782900214844],[112.001790800781,39.5326271796875],[111.992899199219,39.5282900214844],[111.892899199219,39.513735578125],[111.904908476563,39.4793740058594],[111.921890898438,39.4581642890625],[111.945753203125,39.4611330390626],[111.98084109375,39.4330361152344],[111.997345,39.4038430000001],[111.979906035156,39.39698753125],[111.947515898438,39.4017726875],[111.91298953125,39.3881996894531],[111.87170046875,39.3794863105469],[111.858062773438,39.3305104804688],[111.833863554688,39.3194863105469],[111.753062773438,39.3512514472656],[111.717496367188,39.305171125],[111.744110136719,39.2610500312501],[111.737345,39.2438430000001],[111.72263796875,39.2496254707031],[111.697345,39.2458876777344],[111.671832304688,39.2496572089844],[111.660811796875,39.2353774238282],[111.607345,39.213843],[111.600748320313,39.2517543769532],[111.569051542969,39.2478115058594],[111.481439238281,39.2814882636719],[111.402899199219,39.3342665839844],[111.432899199219,39.3582900214844],[111.448074980469,39.3772426582032],[111.421790800781,39.3982900214844],[111.402899199219,39.4493959785156],[111.357345,39.453843],[111.363275175781,39.4745803046875],[111.425350371094,39.5096767402344],[111.420960722656,39.5449758125001],[111.431790800781,39.6193959785157],[111.437345,39.6238430000001]]]]}},{"type":"Feature","properties":{"name":"神池县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.00298953125,39.3994863105469],[112.017345,39.3638430000001],[112.022511015625,39.3452931953126],[112.050941191406,39.3233498359375],[112.053084746094,39.308843],[112.049793730469,39.2865810371094],[112.078426542969,39.2494863105469],[112.09298953125,39.2581996894532],[112.108426542969,39.2781996894532],[112.158465605469,39.2684157539063],[112.183160429688,39.2493544746094],[112.181033964844,39.2349745917969],[112.20170046875,39.2081996894532],[112.214486113281,39.1983315253907],[112.211253691406,39.1764650703126],[112.249351835938,39.182094953125],[112.263155546875,39.1592116523438],[112.257345,39.123843],[112.257345,39.103843],[112.277345,39.103843],[112.277345,39.0938430000001],[112.287345,39.0938430000001],[112.297345,39.0938430000001],[112.29156375,39.0791347480469],[112.294022246094,39.0624941230469],[112.282689238281,39.0478115058594],[112.25263796875,39.0596254707031],[112.242345,39.0581044746094],[112.230064726563,39.0599184394532],[112.21298953125,39.0181996894532],[112.13912234375,39.0056508613282],[112.143765898438,38.9742360664063],[112.11170046875,38.9494863105469],[112.090941191406,38.9225893378907],[112.031937285156,38.9397927070313],[112.02298953125,38.9281996894531],[112.017345,38.923843],[111.972899199219,38.9793959785157],[111.944324980469,39.0022768378907],[111.924686308594,39.0488845039063],[111.876239042969,39.0627370429688],[111.832899199219,39.0793959785157],[111.801790800781,39.0882900214844],[111.788450957031,39.1049489570313],[111.769915800781,39.1197914863281],[111.742899199219,39.1622743964844],[111.778768339844,39.1909987617188],[111.791790800781,39.2139943671875],[111.741790800781,39.2282900214844],[111.737345,39.2438430000001],[111.744110136719,39.2610500312501],[111.717496367188,39.305171125],[111.753062773438,39.3512514472656],[111.833863554688,39.3194863105469],[111.858062773438,39.3305104804688],[111.87170046875,39.3794863105469],[111.91298953125,39.3881996894531],[111.947515898438,39.4017726875],[111.979906035156,39.39698753125],[111.997345,39.4038430000001],[112.00298953125,39.3994863105469]]]]}},{"type":"Feature","properties":{"name":"五台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.647528105469,39.0585903144532],[113.682799101563,39.0145461250001],[113.753704863281,39.0233657050781],[113.777345,38.993843],[113.761812773438,38.9804616523438],[113.768851347656,38.8928749824219],[113.794947539063,38.8560683417969],[113.851485625,38.8308400703126],[113.821849394531,38.7890395332032],[113.827345,38.763843],[113.81263796875,38.7580605292969],[113.785064726563,38.7621352363281],[113.761204863281,38.7038393378906],[113.712042265625,38.7111037421876],[113.702413359375,38.665473859375],[113.678695097656,38.6471657539063],[113.642345,38.6525368476563],[113.606651640625,38.6472621894531],[113.590560332031,38.5894814277344],[113.55170046875,38.5594863105469],[113.54298953125,38.5281996894532],[113.537345,38.5238430000001],[113.512386503906,38.5177126289063],[113.501898222656,38.5200637031251],[113.470780058594,38.49980003125],[113.419144316406,38.5214882636719],[113.389097929688,38.5147524238281],[113.363260527344,38.4979274726563],[113.307122832031,38.483520734375],[113.277345,38.463843],[113.26298953125,38.4994863105469],[113.228638945313,38.5419899726563],[113.19978640625,38.5377260566406],[113.18298953125,38.5594863105469],[113.140413847656,38.5769118476563],[113.115894804688,38.6086769843751],[113.081517363281,38.6182497382812],[113.087139921875,38.6562831855469],[113.077345,38.663843],[113.061429472656,38.6879274726563],[113.053260527344,38.7097585273438],[113.039132109375,38.7195131660156],[113.043565703125,38.7392897773437],[113.026820097656,38.7650051093751],[112.961048613281,38.7880605292969],[112.964490996094,38.8034206367188],[113.003260527344,38.8179274726563],[113.007345,38.853843],[113.042899199219,38.8582900214844],[113.071961699219,38.8753749824219],[113.146966582031,38.8539565253907],[113.186317167969,38.8827028632813],[113.231890898438,38.8770339179687],[113.241790800781,38.8893959785157],[113.280067167969,38.9055239082032],[113.284210234375,38.9388430000001],[113.280115996094,38.9717617011719],[113.357345,38.993843],[113.372899199219,38.9893959785156],[113.402061796875,38.9781862617188],[113.412799101563,38.9795217109376],[113.428914824219,38.9593959785156],[113.480623808594,38.9729286933594],[113.532899199219,39.0382900214844],[113.543116484375,39.0625405097656],[113.572345,39.0797206855469],[113.591790800781,39.0682900214844],[113.647528105469,39.0585903144532]]]]}},{"type":"Feature","properties":{"name":"五寨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.671832304688,39.2496572089844],[111.697345,39.2458876777344],[111.72263796875,39.2496254707031],[111.737345,39.2438430000001],[111.741790800781,39.2282900214844],[111.791790800781,39.2139943671875],[111.778768339844,39.1909987617188],[111.742899199219,39.1622743964844],[111.769915800781,39.1197914863281],[111.788450957031,39.1049489570313],[111.801790800781,39.0882900214844],[111.832899199219,39.0793959785157],[111.876239042969,39.0627370429688],[111.924686308594,39.0488845039063],[111.944324980469,39.0022768378907],[111.972899199219,38.9793959785157],[112.017345,38.923843],[111.985303984375,38.9187929511719],[111.95298953125,38.8977516914063],[111.943260527344,38.8479274726563],[111.930833769531,38.8288430000001],[111.950369902344,38.798843],[111.931429472656,38.7697585273438],[111.923260527344,38.7479274726563],[111.901429472656,38.7397585273438],[111.893260527344,38.7279274726563],[111.861429472656,38.7197585273438],[111.847345,38.7138430000001],[111.833240996094,38.7255580878907],[111.862806425781,38.7383803535157],[111.881883574219,38.7681447578126],[111.799986601563,38.7786232734375],[111.782806425781,38.7993056464844],[111.771883574219,38.8083803535157],[111.756756621094,38.8432558417969],[111.721883574219,38.8583803535157],[111.663270292969,38.9047682929688],[111.586300078125,38.9218361640625],[111.562806425781,38.9083803535156],[111.536156035156,38.8993056464844],[111.552806425781,38.9283803535157],[111.561883574219,38.9550759101563],[111.495875273438,38.9697121406251],[111.474212675781,38.967505109375],[111.457345,38.9738430000001],[111.461158476563,38.9800307441406],[111.495579863281,38.9987697578125],[111.473531523438,39.0123537421875],[111.481158476563,39.0700307441407],[111.495511503906,39.1136745429688],[111.485311308594,39.1464272285157],[111.509720488281,39.1614675117188],[111.521539335938,39.1806508613281],[111.547464628906,39.1725759101562],[111.593531523438,39.1976552558594],[111.601158476563,39.2100307441406],[111.607345,39.213843],[111.660811796875,39.2353774238282],[111.671832304688,39.2496572089844]]]]}},{"type":"Feature","properties":{"name":"忻府区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457345,38.683843],[112.457345,38.6738430000001],[112.467345,38.6738430000001],[112.497005644531,38.6572377753907],[112.512323027344,38.6373952460938],[112.55170046875,38.6081996894532],[112.59298953125,38.5994863105469],[112.626143828125,38.5794863105469],[112.65298953125,38.5881996894531],[112.6819153125,38.6096450019532],[112.710809355469,38.6053749824219],[112.72170046875,38.6194863105469],[112.737345,38.623843],[112.747142363281,38.6116091132813],[112.781790800781,38.5982900214844],[112.837064238281,38.5863307929688],[112.877845488281,38.5169557929688],[112.862899199219,38.4982900214844],[112.849857207031,38.4878469062501],[112.877337675781,38.4658412910157],[112.861214628906,38.4384145332032],[112.904244414063,38.4291054511719],[112.898055449219,38.3793581367187],[112.948450957031,38.3649489570313],[112.957345,38.353843],[112.945882597656,38.3389931464844],[112.89298953125,38.3181996894531],[112.827508574219,38.2999648261719],[112.789737578125,38.2510317207032],[112.722428007813,38.2380922675782],[112.702345,38.2410597968751],[112.677345,38.2373647285157],[112.642916289063,38.2424526191407],[112.629920683594,38.2107009101563],[112.607345,38.2073647285157],[112.592345,38.2095815253907],[112.566773710938,38.2058034492188],[112.545562773438,38.2576284003906],[112.522857695313,38.2609841132813],[112.506851835938,38.2402480292969],[112.487952910156,38.2374550605469],[112.455030546875,38.2509291816407],[112.432689238281,38.2798744941407],[112.394390898438,38.2648195625001],[112.36170046875,38.2781996894531],[112.318204375,38.3104482246094],[112.296097441406,38.3071804023438],[112.267345,38.313843],[112.2554309375,38.323384015625],[112.313026152344,38.3583681464844],[112.311441679688,38.3711074042969],[112.339832792969,38.393843],[112.320535917969,38.4092958808594],[112.325284453125,38.4474843574219],[112.289757109375,38.4759352851563],[112.306092558594,38.5037221503907],[112.301676054688,38.5392153144532],[112.317345,38.5638430000001],[112.321790800781,38.5693959785156],[112.352899199219,38.5882900214844],[112.37068484375,38.6105019355469],[112.433924589844,38.6611428046875],[112.431656523438,38.6793727851562],[112.457345,38.683843]]]]}},{"type":"Feature","properties":{"name":"原平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.617345,39.083843],[112.607345,39.083843],[112.607345,39.0938430000001],[112.617345,39.0938430000001],[112.617345,39.083843]]],[[[112.617345,39.083843],[112.640699492188,39.0893434882813],[112.655426054688,39.1325551582031],[112.68435671875,39.1235451484376],[112.721158476563,39.1400307441407],[112.737345,39.143843],[112.751519804688,39.1336830878906],[112.743170195313,39.1080178046875],[112.723392363281,39.0938430000001],[112.768111601563,39.0617922187501],[112.817628203125,38.9890444160156],[112.878997832031,38.9728542304688],[112.911519804688,38.9480178046875],[112.953170195313,38.9396681953125],[112.964920683594,38.8951308417969],[112.991519804688,38.8580178046875],[113.007345,38.853843],[113.003260527344,38.8179274726563],[112.964490996094,38.8034206367188],[112.961048613281,38.7880605292969],[113.026820097656,38.7650051093751],[113.043565703125,38.7392897773437],[113.039132109375,38.7195131660156],[113.053260527344,38.7097585273438],[113.061429472656,38.6879274726563],[113.077345,38.663843],[113.04170046875,38.6494863105469],[113.032857695313,38.6380287910156],[113.019205351563,38.6400453925782],[112.98298953125,38.6181996894531],[112.952723417969,38.6094863105469],[112.896832304688,38.6432009101563],[112.857345,38.6373647285156],[112.822225371094,38.6425551582032],[112.772554960938,38.6280727363281],[112.754783964844,38.63069846875],[112.737345,38.623843],[112.72170046875,38.6194863105469],[112.710809355469,38.6053749824219],[112.6819153125,38.6096450019532],[112.65298953125,38.5881996894531],[112.626143828125,38.5794863105469],[112.59298953125,38.5994863105469],[112.55170046875,38.6081996894532],[112.512323027344,38.6373952460938],[112.497005644531,38.6572377753907],[112.467345,38.6738430000001],[112.467345,38.683843],[112.457345,38.683843],[112.464945097656,38.7179860664063],[112.429178496094,38.7400490546875],[112.403533964844,38.7374355292969],[112.382181425781,38.7496645332031],[112.362869902344,38.7264186835938],[112.320155058594,38.7093056464844],[112.302806425781,38.7493056464844],[112.281097441406,38.7872133613281],[112.301663847656,38.8419496894532],[112.2815246875,38.8586782050782],[112.300206328125,38.8913002753906],[112.333363066406,38.918843],[112.316656523438,38.9327211738281],[112.343858671875,38.9802175117188],[112.371156035156,38.9774355292969],[112.396553984375,38.9919814277344],[112.437345,38.9878237128907],[112.457432890625,38.9898708320313],[112.488409453125,39.0271633125],[112.528348417969,39.0517983222657],[112.562611113281,39.0483058906251],[112.612408476563,39.0670180488282],[112.617345,39.083843]]]]}},{"type":"Feature","properties":{"name":"岢岚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.397345,38.913843],[111.400767851563,38.9016506171875],[111.409537382813,38.9104201484375],[111.406058378906,38.9651308417969],[111.457345,38.9738430000001],[111.474212675781,38.967505109375],[111.495875273438,38.9697121406251],[111.561883574219,38.9550759101563],[111.552806425781,38.9283803535157],[111.536156035156,38.8993056464844],[111.562806425781,38.9083803535156],[111.586300078125,38.9218361640625],[111.663270292969,38.9047682929688],[111.721883574219,38.8583803535157],[111.756756621094,38.8432558417969],[111.771883574219,38.8083803535157],[111.782806425781,38.7993056464844],[111.799986601563,38.7786232734375],[111.881883574219,38.7681447578126],[111.862806425781,38.7383803535157],[111.833240996094,38.7255580878907],[111.847345,38.7138430000001],[111.833116484375,38.6524330878906],[111.85298953125,38.6194863105469],[111.867345,38.583843],[111.861429472656,38.5797585273438],[111.802076445313,38.565180890625],[111.783260527344,38.5379274726563],[111.767345,38.533843],[111.752535429688,38.5590334296876],[111.727181425781,38.5958803535157],[111.708365507813,38.6086525703126],[111.682535429688,38.5686525703126],[111.590384550781,38.5346962714844],[111.548023710938,38.5055471015625],[111.505079375,38.5282704902344],[111.49248171875,38.4884792304688],[111.454561796875,38.5085439277344],[111.442535429688,38.5590334296876],[111.417345,38.573843],[111.349705839844,38.5794960761719],[111.330079375,38.6022768378906],[111.262691679688,38.5968617988281],[111.25271609375,38.6192153144532],[111.241917753906,38.6285195136719],[111.243470488281,38.6478627753906],[111.225291777344,38.6804457832032],[111.207345,38.723843],[111.222066679688,38.7300258613282],[111.232891875,38.7275991035156],[111.251429472656,38.7441188789063],[111.225513945313,38.7620119453125],[111.207398710938,38.7882497382813],[111.233260527344,38.7979274726563],[111.241429472656,38.8397585273437],[111.260716582031,38.8679274726562],[111.292425566406,38.8472792792969],[111.327093535156,38.8741493964844],[111.317345,38.913843],[111.332161894531,38.9204811835938],[111.378292265625,38.9053090644532],[111.397345,38.913843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"侯马市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.40271609375,35.6992153144531],[111.420726347656,35.6783107734376],[111.442847929688,35.6800881171875],[111.441541777344,35.6638430000001],[111.442747832031,35.648843],[111.441920195313,35.6385646796875],[111.452779570313,35.6191030097656],[111.447345,35.563843],[111.430704375,35.5604836250001],[111.417345,35.5538430000001],[111.404312773438,35.5701161933594],[111.331829863281,35.5494179511719],[111.312899199219,35.5382900214844],[111.287345,35.533843],[111.283804960938,35.5503029609375],[111.266541777344,35.5597646308594],[111.274449492188,35.5789492011719],[111.260240507813,35.6087367988282],[111.264405546875,35.618843],[111.256793242188,35.6373146796875],[111.284881621094,35.6257363105469],[111.294405546875,35.648843],[111.28572390625,35.6699086738282],[111.337345,35.673843],[111.346676054688,35.6603285957031],[111.361429472656,35.6997585273438],[111.387345,35.7038430000001],[111.40271609375,35.6992153144531]]]]}},{"type":"Feature","properties":{"name":"洪洞县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,36.4638430000001],[111.605152617188,36.4672658515625],[111.613922148438,36.4760353828126],[111.617345,36.4638430000001]]],[[[111.617345,36.4638430000001],[111.641429472656,36.4797585273437],[111.673260527344,36.4879274726563],[111.677345,36.5038430000001],[111.703175078125,36.4994557929688],[111.698680449219,36.4690431953126],[111.752249785156,36.447983625],[111.799310332031,36.4617055488282],[111.833924589844,36.4408266425781],[111.85263796875,36.4380605292969],[111.867345,36.443843],[111.88021609375,36.4346181464844],[111.8839465625,36.4157411933594],[111.856768828125,36.3962636542969],[111.871519804688,36.3580178046875],[111.89021609375,36.3446181464844],[111.894722929688,36.3218093085938],[111.883170195313,36.2780178046875],[111.853172636719,36.2307692695313],[111.894032011719,36.1683510566407],[111.871519804688,36.1596681953125],[111.852862578125,36.1336379218751],[111.811519804688,36.1096681953125],[111.807345,36.103843],[111.792496367188,36.1092958808594],[111.701990996094,36.0952553535157],[111.639647246094,36.1002651191407],[111.643560820313,36.1489614082031],[111.607916289063,36.159692609375],[111.575123320313,36.1570571113282],[111.56271609375,36.1626247382813],[111.590738554688,36.2128493476562],[111.52197390625,36.2284706855469],[111.491214628906,36.2397670722657],[111.493416777344,36.2671718574219],[111.417015410156,36.3220302558594],[111.363902617188,36.3177626777344],[111.347345,36.323843],[111.339564238281,36.3412136054688],[111.354969511719,36.3662184882813],[111.379378691406,36.3812587714844],[111.364857207031,36.4278835273438],[111.394456816406,36.4379714179688],[111.379720488281,36.4812184882813],[111.355091582031,36.5162929511719],[111.367345,36.523843],[111.370767851563,36.5116506171875],[111.379537382813,36.5204201484376],[111.367345,36.523843],[111.367345,36.5338430000001],[111.387345,36.5338430000001],[111.423260527344,36.5097585273438],[111.431429472656,36.4979274726563],[111.452615996094,36.4832997871094],[111.482345,36.4899636054688],[111.497615996094,36.4865407539063],[111.55310671875,36.500171125],[111.561429472656,36.4779274726563],[111.573260527344,36.4697585273438],[111.581429472656,36.4579274726563],[111.607620878906,36.4497585273438],[111.617345,36.4638430000001]]]]}},{"type":"Feature","properties":{"name":"安泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.203016386719,36.4192372871094],[112.201163359375,36.4043422675782],[112.249251738281,36.4103237128906],[112.268450957031,36.3949489570312],[112.281790800781,36.3782900214844],[112.332899199219,36.3593959785156],[112.341834746094,36.3482350898438],[112.422628203125,36.3381862617188],[112.437345,36.3438430000001],[112.476121855469,36.2600807929688],[112.540418730469,36.2575319648437],[112.564588652344,36.2703212714844],[112.557345,36.1938430000001],[112.549595976563,36.1622927070313],[112.566165800781,36.1228432441406],[112.543260527344,36.1079274726563],[112.496024199219,36.0902529121094],[112.484537382813,36.0390138984375],[112.517345,36.033843],[112.525404082031,35.9693459296876],[112.479732695313,35.9501015449219],[112.385806914063,35.8940590644531],[112.337345,35.9000868964844],[112.302298613281,35.8957277656251],[112.172830839844,35.9119033027344],[112.137345,35.903843],[112.142908964844,35.9189919257813],[112.071429472656,36.0024599433594],[112.072760039063,36.0190151191407],[112.067345,36.0438430000001],[112.08556765625,36.0494704414063],[112.112064238281,36.0791237617187],[112.152225371094,36.0915261054688],[112.192064238281,36.1247927070313],[112.155208769531,36.1417079902344],[112.142625761719,36.2091237617188],[112.12531375,36.2245925117188],[112.112625761719,36.2791237617188],[112.086219511719,36.3027175117188],[112.060062285156,36.3319936347656],[112.020155058594,36.3176747871094],[111.992625761719,36.3206923652344],[112.012625761719,36.3385622382813],[112.022064238281,36.3491237617188],[112.061888457031,36.3674025703126],[112.084757109375,36.4033608222657],[112.082047148438,36.448843],[112.082642851563,36.4588430000001],[112.080199003906,36.4998647285156],[112.10656375,36.4982936835938],[112.142064238281,36.4585622382813],[112.177345,36.453843],[112.203016386719,36.4192372871094]]]]}},{"type":"Feature","properties":{"name":"大宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.757345,36.303843],[110.769537382813,36.3004201484375],[110.760767851563,36.2916506171876],[110.757345,36.303843]]],[[[110.757345,36.303843],[110.692982207031,36.2932692695313],[110.63298953125,36.3194863105469],[110.572996855469,36.3296779609376],[110.537857695313,36.3244850898438],[110.510767851563,36.3408266425782],[110.492203398438,36.3380825019532],[110.467345,36.3438430000001],[110.471158476563,36.3700307441407],[110.488543730469,36.4228932929687],[110.465091582031,36.4562929511719],[110.49281375,36.4733730292969],[110.501158476563,36.5230092597657],[110.487345,36.553843],[110.513170195313,36.5496681953126],[110.551046171875,36.5256215644531],[110.582345,36.5318068671875],[110.642659941406,36.5198891425782],[110.671519804688,36.5696681953125],[110.726971464844,36.5893679023438],[110.741519804688,36.6096681953125],[110.747345,36.6138430000001],[110.751004667969,36.5957204414063],[110.767345,36.603843],[110.773985625,36.600483625],[110.784298125,36.5800978828126],[110.812345,36.56640159375],[110.826031523438,36.5730849433594],[110.848001738281,36.5454274726562],[110.83990359375,36.528843],[110.8472278125,36.513843],[110.839713164063,36.4984511542969],[110.853985625,36.4804836250001],[110.857345,36.4638430000001],[110.843392363281,36.453843],[110.868995390625,36.435493390625],[110.885760527344,36.4120998359376],[110.870799589844,36.3885341621094],[110.886329375,36.3774037910157],[110.904703398438,36.3297634101563],[111.001790800781,36.3048989082032],[111.007345,36.283843],[110.992633085938,36.2777980781251],[110.942647734375,36.2876747871094],[110.90252078125,36.2998659492188],[110.877345,36.2948903632813],[110.852345,36.2998305488281],[110.828651152344,36.2951491523438],[110.833333769531,36.318843],[110.830831328125,36.3315077949219],[110.768319121094,36.3191555000001],[110.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"汾西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,36.4638430000001],[111.613922148438,36.4760353828126],[111.605152617188,36.4672658515625],[111.607620878906,36.4497585273438],[111.581429472656,36.4579274726563],[111.573260527344,36.4697585273438],[111.561429472656,36.4779274726563],[111.55310671875,36.500171125],[111.497615996094,36.4865407539063],[111.482345,36.4899636054688],[111.452615996094,36.4832997871094],[111.431429472656,36.4979274726563],[111.423260527344,36.5097585273438],[111.387345,36.5338430000001],[111.381214628906,36.5588014960937],[111.383529082031,36.5691213203126],[111.370784941406,36.5994594550782],[111.318917265625,36.6188674140626],[111.261429472656,36.6279274726563],[111.257345,36.633843],[111.262779570313,36.6891030097657],[111.251920195313,36.7085646796875],[111.253629179688,36.7298146796875],[111.237345,36.743843],[111.24154421875,36.7611598945312],[111.274002714844,36.7497426582032],[111.268675566406,36.730786359375],[111.302345,36.7402480292969],[111.31310671875,36.7372231269531],[111.321248808594,36.7499404121094],[111.348084746094,36.759380109375],[111.361248808594,36.7799404121094],[111.407345,36.8038430000001],[111.411429472656,36.7979274726563],[111.423260527344,36.7897585273438],[111.437069121094,36.7697585273438],[111.476927519531,36.778755109375],[111.491998320313,36.80058128125],[111.511898222656,36.787622296875],[111.526976347656,36.7910024238281],[111.543616972656,36.7795131660157],[111.537191191406,36.7508534980469],[111.553260527344,36.7397585273438],[111.561658964844,36.7173134589844],[111.591429472656,36.6979274726562],[111.613260527344,36.6897585273438],[111.621429472656,36.6779274726563],[111.643260527344,36.6697585273437],[111.651429472656,36.6579274726562],[111.663260527344,36.6497585273438],[111.667345,36.643843],[111.66259890625,36.6385305],[111.634293242188,36.6402175117188],[111.652760039063,36.5887526679688],[111.622711210938,36.5457338691407],[111.677345,36.5038430000001],[111.673260527344,36.4879274726563],[111.641429472656,36.4797585273437],[111.617345,36.4638430000001]]]]}},{"type":"Feature","properties":{"name":"浮山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.891429472656,36.0779274726563],[111.933260527344,36.0697585273438],[111.962542753906,36.0574599433594],[111.982345,36.0703554511719],[112.016051054688,36.0484059882812],[112.067345,36.0438430000001],[112.072760039063,36.0190151191407],[112.071429472656,36.0024599433594],[112.142908964844,35.9189919257813],[112.137345,35.903843],[112.151429472656,35.8779274726563],[112.200318632813,35.8596340156251],[112.221429472656,35.8272145820313],[112.177318144531,35.8164809394532],[112.123260527344,35.8297585273437],[112.071429472656,35.8379274726563],[112.035553007813,35.8657314277344],[112.027345,35.8538430000001],[112.01263796875,35.8480605292969],[111.997345,35.8503212714844],[111.977345,35.8473647285157],[111.952345,35.851059796875],[111.922345,35.846626203125],[111.902345,35.8495815253907],[111.873975859375,35.8453896308594],[111.849298125,35.8134194160156],[111.78298953125,35.8394863105469],[111.745213652344,35.8500063300781],[111.732345,35.8481044746094],[111.722345,35.8495815253907],[111.712310820313,35.8480995917969],[111.677345,35.8538430000001],[111.67062625,35.86712425],[111.650704375,35.8772023750001],[111.647345,35.903843],[111.663260527344,35.9079274726563],[111.677254667969,35.9281972480469],[111.703638945313,35.9380690742188],[111.699891386719,35.9547927070312],[111.716378203125,36.0079885078126],[111.773260527344,36.0279274726563],[111.812042265625,36.0531813789063],[111.817345,36.073843],[111.823016386719,36.082055890625],[111.843016386719,36.0775722480469],[111.861705351563,36.1046413398438],[111.883260527344,36.0897585273438],[111.891429472656,36.0779274726563]]]]}},{"type":"Feature","properties":{"name":"古县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.09267703125,36.5546962714844],[112.171676054688,36.4991677070313],[112.177345,36.453843],[112.142064238281,36.4585622382813],[112.10656375,36.4982936835938],[112.080199003906,36.4998647285156],[112.082642851563,36.4588430000001],[112.082047148438,36.448843],[112.084757109375,36.4033608222657],[112.061888457031,36.3674025703126],[112.022064238281,36.3491237617188],[112.012625761719,36.3385622382813],[111.992625761719,36.3206923652344],[112.020155058594,36.3176747871094],[112.060062285156,36.3319936347656],[112.086219511719,36.3027175117188],[112.112625761719,36.2791237617188],[112.12531375,36.2245925117188],[112.142625761719,36.2091237617188],[112.155208769531,36.1417079902344],[112.192064238281,36.1247927070313],[112.152225371094,36.0915261054688],[112.112064238281,36.0791237617187],[112.08556765625,36.0494704414063],[112.067345,36.0438430000001],[112.016051054688,36.0484059882812],[111.982345,36.0703554511719],[111.962542753906,36.0574599433594],[111.933260527344,36.0697585273438],[111.891429472656,36.0779274726563],[111.883260527344,36.0897585273438],[111.861705351563,36.1046413398438],[111.843016386719,36.0775722480469],[111.823016386719,36.082055890625],[111.817345,36.073843],[111.804349394531,36.0798964667969],[111.815814238281,36.0998964667969],[111.807345,36.103843],[111.811519804688,36.1096681953125],[111.852862578125,36.1336379218751],[111.871519804688,36.1596681953125],[111.894032011719,36.1683510566407],[111.853172636719,36.2307692695313],[111.883170195313,36.2780178046875],[111.894722929688,36.3218093085938],[111.89021609375,36.3446181464844],[111.871519804688,36.3580178046875],[111.856768828125,36.3962636542969],[111.8839465625,36.4157411933594],[111.88021609375,36.4346181464844],[111.867345,36.443843],[111.8576965625,36.4683864570313],[111.88170046875,36.4994863105469],[111.941204863281,36.5238405585938],[111.95170046875,36.5494863105469],[111.973463164063,36.5662831855469],[111.970924101563,36.5834609199219],[112.012486601563,36.5896034980469],[112.037345,36.5838430000001],[112.072899199219,36.5793959785157],[112.09267703125,36.5546962714844]]]]}},{"type":"Feature","properties":{"name":"霍州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,36.703843],[111.830767851563,36.7160353828125],[111.839537382813,36.7072658515626],[111.827345,36.703843]]],[[[111.827345,36.703843],[111.837345,36.6913552070313],[111.853704863281,36.7117836738282],[111.882345,36.7082216621094],[111.897345,36.7100868964844],[111.932056914063,36.7057692695313],[111.976143828125,36.6798537421876],[111.987345,36.6938430000001],[112.010184355469,36.6879824042969],[112.021429472656,36.6579274726562],[112.036900664063,36.6341677070312],[112.031214628906,36.6088014960938],[112.037345,36.5838430000001],[112.012486601563,36.5896034980469],[111.970924101563,36.5834609199219],[111.973463164063,36.5662831855469],[111.95170046875,36.5494863105469],[111.941204863281,36.5238405585938],[111.88170046875,36.4994863105469],[111.8576965625,36.4683864570313],[111.867345,36.443843],[111.85263796875,36.4380605292969],[111.833924589844,36.4408266425781],[111.799310332031,36.4617055488282],[111.752249785156,36.447983625],[111.698680449219,36.4690431953126],[111.703175078125,36.4994557929688],[111.677345,36.5038430000001],[111.622711210938,36.5457338691407],[111.652760039063,36.5887526679688],[111.634293242188,36.6402175117188],[111.66259890625,36.6385305],[111.667345,36.643843],[111.680941191406,36.6543361640625],[111.683140898438,36.669233625],[111.668988066406,36.6926955390625],[111.749298125,36.7242665839844],[111.763880644531,36.7053749824219],[111.792345,36.7095815253906],[111.802345,36.7081044746094],[111.81263796875,36.7096254707032],[111.827345,36.703843]]]]}},{"type":"Feature","properties":{"name":"吉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.757345,36.303843],[110.760767851563,36.2916506171876],[110.769537382813,36.3004201484375],[110.768319121094,36.3191555000001],[110.830831328125,36.3315077949219],[110.833333769531,36.318843],[110.828651152344,36.2951491523438],[110.852345,36.2998305488281],[110.877345,36.2948903632813],[110.90252078125,36.2998659492188],[110.942647734375,36.2876747871094],[110.992633085938,36.2777980781251],[111.007345,36.283843],[111.015794707031,36.2728945136719],[111.075401640625,36.2484987617188],[111.118631621094,36.2151308417969],[111.127345,36.203843],[111.112991972656,36.1939321113282],[111.103260527344,36.1679274726563],[111.087345,36.143843],[111.07052859375,36.1503066230469],[111.03568484375,36.1067934394531],[110.996182890625,36.121977765625],[110.97095828125,36.1071498847657],[110.951986113281,36.1095095039063],[110.932899199219,36.0982900214844],[110.872623320313,36.0878005195313],[110.852259550781,36.099770734375],[110.801795683594,36.0594106269531],[110.792159453125,36.0257057929688],[110.745592070313,35.9884157539063],[110.732899199219,35.9582900214844],[110.684893828125,35.9479042792969],[110.671986113281,35.9495095039063],[110.652899199219,35.9382900214844],[110.597034941406,35.9176381660157],[110.57705203125,35.9201235175782],[110.522459746094,35.888032453125],[110.507345,35.8938430000001],[110.501099882813,35.9438307929688],[110.504039335938,35.96745628125],[110.490650664063,35.9902297187501],[110.493377714844,36.0121352363281],[110.465155058594,36.0855580878907],[110.451790800781,36.1082900214844],[110.441356230469,36.1682607246094],[110.453001738281,36.198559796875],[110.449625273438,36.2257094550781],[110.462899199219,36.2482900214844],[110.467345,36.293843],[110.456844511719,36.3365932441407],[110.467345,36.3438430000001],[110.492203398438,36.3380825019532],[110.510767851563,36.3408266425782],[110.537857695313,36.3244850898438],[110.572996855469,36.3296779609376],[110.63298953125,36.3194863105469],[110.692982207031,36.2932692695313],[110.757345,36.303843]]]]}},{"type":"Feature","properties":{"name":"蒲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.367345,36.523843],[111.379537382813,36.5204201484376],[111.370767851563,36.5116506171875],[111.367345,36.523843]]],[[[111.367345,36.523843],[111.355091582031,36.5162929511719],[111.379720488281,36.4812184882813],[111.394456816406,36.4379714179688],[111.364857207031,36.4278835273438],[111.379378691406,36.3812587714844],[111.354969511719,36.3662184882813],[111.339564238281,36.3412136054688],[111.347345,36.323843],[111.32197390625,36.3092153144531],[111.291771269531,36.2609938789063],[111.293980742188,36.2334963203125],[111.251600371094,36.2145864082032],[111.217345,36.195473859375],[111.191107207031,36.21011253125],[111.127345,36.203843],[111.118631621094,36.2151308417969],[111.075401640625,36.2484987617188],[111.015794707031,36.2728945136719],[111.007345,36.283843],[111.001790800781,36.3048989082032],[110.904703398438,36.3297634101563],[110.886329375,36.3774037910157],[110.870799589844,36.3885341621094],[110.885760527344,36.4120998359376],[110.868995390625,36.435493390625],[110.843392363281,36.453843],[110.857345,36.4638430000001],[110.877899199219,36.4557631660157],[110.89170046875,36.4894863105469],[110.91298953125,36.4981996894532],[110.927464628906,36.5169521308594],[110.967225371094,36.5407338691406],[110.982689238281,36.5607656074219],[111.042345,36.5695815253907],[111.062345,36.566626203125],[111.087345,36.5703212714844],[111.107345,36.5673647285157],[111.127345,36.5703212714844],[111.191773710938,36.5607997871094],[111.212345,36.611059796875],[111.23490359375,36.6077260566407],[111.25170046875,36.6294863105469],[111.257345,36.633843],[111.261429472656,36.6279274726563],[111.318917265625,36.6188674140626],[111.370784941406,36.5994594550782],[111.383529082031,36.5691213203126],[111.381214628906,36.5588014960937],[111.387345,36.5338430000001],[111.367345,36.5338430000001],[111.367345,36.523843]]]]}},{"type":"Feature","properties":{"name":"曲沃县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.590103789063,35.803843],[111.593602324219,35.7882302070313],[111.583260527344,35.7479274726563],[111.563260527344,35.7341188789063],[111.574129667969,35.7258803535157],[111.594622832031,35.730473859375],[111.624361601563,35.7193471503907],[111.595455351563,35.6820510078126],[111.613616972656,35.6695131660156],[111.609132109375,35.6495131660157],[111.617345,35.643843],[111.61271609375,35.6384706855469],[111.60197390625,35.6292153144532],[111.59271609375,35.5984706855469],[111.58197390625,35.5792153144531],[111.571546660156,35.5558510566407],[111.520213652344,35.5699001289063],[111.447345,35.563843],[111.452779570313,35.6191030097656],[111.441920195313,35.6385646796875],[111.442747832031,35.648843],[111.441541777344,35.6638430000001],[111.442847929688,35.6800881171875],[111.420726347656,35.6783107734376],[111.40271609375,35.6992153144531],[111.387345,35.7038430000001],[111.391976347656,35.7332326484375],[111.414105253906,35.7485097480469],[111.433260527344,35.7779274726563],[111.442345,35.8022060371094],[111.462791777344,35.797622296875],[111.481429472656,35.8097585273438],[111.541329375,35.8251308417969],[111.551429472656,35.8397585273438],[111.577345,35.8538430000001],[111.600008574219,35.8480275703126],[111.590103789063,35.803843]]]]}},{"type":"Feature","properties":{"name":"襄汾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.346724882813,36.0417690253907],[111.384508085938,36.0272463203125],[111.411890898438,36.0306520820313],[111.421790800781,36.0182900214844],[111.494078398438,36.00776878125],[111.490584746094,35.9796840644531],[111.512345,35.976977765625],[111.545767851563,35.9811342597657],[111.571868925781,35.9381618476563],[111.582799101563,35.9395217109375],[111.592799101563,35.9270339179688],[111.625516386719,35.9311025214844],[111.647345,35.903843],[111.650704375,35.8772023750001],[111.67062625,35.86712425],[111.677345,35.8538430000001],[111.667650175781,35.8398000312501],[111.585277128906,35.8653322578126],[111.577345,35.8538430000001],[111.551429472656,35.8397585273438],[111.541329375,35.8251308417969],[111.481429472656,35.8097585273438],[111.462791777344,35.797622296875],[111.442345,35.8022060371094],[111.433260527344,35.7779274726563],[111.414105253906,35.7485097480469],[111.391976347656,35.7332326484375],[111.387345,35.7038430000001],[111.361429472656,35.6997585273438],[111.346676054688,35.6603285957031],[111.337345,35.673843],[111.33156375,35.6885512519531],[111.333084746094,35.6988430000001],[111.331087675781,35.7123513007813],[111.286551542969,35.7057704902344],[111.27298953125,35.6881996894531],[111.248426542969,35.6794863105469],[111.225894804688,35.7086769843751],[111.19170046875,35.7181996894531],[111.180687285156,35.7703871894532],[111.126058378906,35.8125551582031],[111.117345,35.823843],[111.14170046875,35.8394863105469],[111.18298953125,35.8481996894532],[111.201207304688,35.8718019843751],[111.21170046875,35.9094863105469],[111.23298953125,35.9181996894531],[111.278533964844,35.9519655585938],[111.271549101563,35.9992336250001],[111.284879179688,36.0213320136719],[111.277345,36.053843],[111.346724882813,36.0417690253907]]]]}},{"type":"Feature","properties":{"name":"乡宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.094647246094,36.1347231269531],[111.194154082031,36.1159584785156],[111.224615507813,36.1197475410157],[111.277345,36.053843],[111.284879179688,36.0213320136719],[111.271549101563,35.9992336250001],[111.278533964844,35.9519655585938],[111.23298953125,35.9181996894531],[111.21170046875,35.9094863105469],[111.201207304688,35.8718019843751],[111.18298953125,35.8481996894532],[111.14170046875,35.8394863105469],[111.117345,35.823843],[111.090521269531,35.8096950507813],[111.094154082031,35.7980373359375],[111.068782988281,35.7824050117188],[111.053531523438,35.7376552558594],[111.047345,35.7338430000001],[111.022386503906,35.7399733710938],[110.998643828125,35.7346511054687],[110.961090117188,35.8037514472656],[110.940186796875,35.7734743476563],[110.944586210938,35.753843],[110.937718535156,35.7232009101563],[110.909451933594,35.6897585273438],[110.843260527344,35.7197585273438],[110.817345,35.723843],[110.782154570313,35.7286525703125],[110.739857207031,35.7397353339844],[110.688414335938,35.7376967597657],[110.672535429688,35.7401210761719],[110.695404082031,35.7613100410157],[110.644698515625,35.7886525703125],[110.592535429688,35.7486525703126],[110.577345,35.7438430000001],[110.571429472656,35.7479274726563],[110.561087675781,35.7882302070313],[110.564989042969,35.8056410957032],[110.551429472656,35.8379274726563],[110.547345,35.8538430000001],[110.543504667969,35.8809584785157],[110.512708769531,35.8703823066407],[110.507345,35.8938430000001],[110.522459746094,35.888032453125],[110.57705203125,35.9201235175782],[110.597034941406,35.9176381660157],[110.652899199219,35.9382900214844],[110.671986113281,35.9495095039063],[110.684893828125,35.9479042792969],[110.732899199219,35.9582900214844],[110.745592070313,35.9884157539063],[110.792159453125,36.0257057929688],[110.801795683594,36.0594106269531],[110.852259550781,36.099770734375],[110.872623320313,36.0878005195313],[110.932899199219,36.0982900214844],[110.951986113281,36.1095095039063],[110.97095828125,36.1071498847657],[110.996182890625,36.121977765625],[111.03568484375,36.1067934394531],[111.07052859375,36.1503066230469],[111.087345,36.143843],[111.094647246094,36.1347231269531]]]]}},{"type":"Feature","properties":{"name":"尧都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.347345,36.323843],[111.363902617188,36.3177626777344],[111.417015410156,36.3220302558594],[111.493416777344,36.2671718574219],[111.491214628906,36.2397670722657],[111.52197390625,36.2284706855469],[111.590738554688,36.2128493476562],[111.56271609375,36.1626247382813],[111.575123320313,36.1570571113282],[111.607916289063,36.159692609375],[111.643560820313,36.1489614082031],[111.639647246094,36.1002651191407],[111.701990996094,36.0952553535157],[111.792496367188,36.1092958808594],[111.807345,36.103843],[111.815814238281,36.0998964667969],[111.804349394531,36.0798964667969],[111.817345,36.073843],[111.812042265625,36.0531813789063],[111.773260527344,36.0279274726563],[111.716378203125,36.0079885078126],[111.699891386719,35.9547927070312],[111.703638945313,35.9380690742188],[111.677254667969,35.9281972480469],[111.663260527344,35.9079274726563],[111.647345,35.903843],[111.625516386719,35.9311025214844],[111.592799101563,35.9270339179688],[111.582799101563,35.9395217109375],[111.571868925781,35.9381618476563],[111.545767851563,35.9811342597657],[111.512345,35.976977765625],[111.490584746094,35.9796840644531],[111.494078398438,36.00776878125],[111.421790800781,36.0182900214844],[111.411890898438,36.0306520820313],[111.384508085938,36.0272463203125],[111.346724882813,36.0417690253907],[111.277345,36.053843],[111.224615507813,36.1197475410157],[111.194154082031,36.1159584785156],[111.094647246094,36.1347231269531],[111.087345,36.143843],[111.103260527344,36.1679274726563],[111.112991972656,36.1939321113282],[111.127345,36.203843],[111.191107207031,36.21011253125],[111.217345,36.195473859375],[111.251600371094,36.2145864082032],[111.293980742188,36.2334963203125],[111.291771269531,36.2609938789063],[111.32197390625,36.3092153144531],[111.347345,36.323843]]]]}},{"type":"Feature","properties":{"name":"翼城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.585277128906,35.8653322578126],[111.667650175781,35.8398000312501],[111.677345,35.8538430000001],[111.712310820313,35.8480995917969],[111.722345,35.8495815253907],[111.732345,35.8481044746094],[111.745213652344,35.8500063300781],[111.78298953125,35.8394863105469],[111.849298125,35.8134194160156],[111.873975859375,35.8453896308594],[111.902345,35.8495815253907],[111.922345,35.846626203125],[111.952345,35.851059796875],[111.977345,35.8473647285157],[111.997345,35.8503212714844],[112.01263796875,35.8480605292969],[112.027345,35.8538430000001],[112.036766386719,35.8457265449219],[112.021741972656,35.8187990546875],[112.051846953125,35.7763368964844],[112.021060820313,35.7498146796875],[112.024483671875,35.7072243476562],[111.99197390625,35.6792153144532],[111.98271609375,35.6684706855469],[111.9519153125,35.6591970039063],[111.953470488281,35.6398232246094],[111.93271609375,35.6026247382813],[111.94197390625,35.5784706855469],[111.954276152344,35.5678713203125],[111.951942167969,35.538843],[111.953524199219,35.5191664863282],[111.941693144531,35.5089736152344],[111.956734648438,35.4820156074219],[111.967345,35.423843],[111.956058378906,35.4151308417969],[111.932857695313,35.38507346875],[111.902345,35.3895815253906],[111.888736601563,35.3875710273438],[111.847345,35.403843],[111.842154570313,35.4210842109376],[111.821693144531,35.4387123847657],[111.832769804688,35.4585646796875],[111.831219511719,35.4778627753907],[111.848053007813,35.5080348945313],[111.88271609375,35.5184706855469],[111.90197390625,35.5364284492188],[111.86197390625,35.5484706855469],[111.822838164063,35.5628420234375],[111.844124785156,35.6009950996094],[111.790953398438,35.5967226386719],[111.7172278125,35.637856671875],[111.677650175781,35.6497731757813],[111.617345,35.643843],[111.609132109375,35.6495131660157],[111.613616972656,35.6695131660156],[111.595455351563,35.6820510078126],[111.624361601563,35.7193471503907],[111.594622832031,35.730473859375],[111.574129667969,35.7258803535157],[111.563260527344,35.7341188789063],[111.583260527344,35.7479274726563],[111.593602324219,35.7882302070313],[111.590103789063,35.803843],[111.600008574219,35.8480275703126],[111.577345,35.8538430000001],[111.585277128906,35.8653322578126]]]]}},{"type":"Feature","properties":{"name":"永和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.747345,36.6138430000001],[110.767345,36.6138430000001],[110.767345,36.603843],[110.751004667969,36.5957204414063],[110.747345,36.6138430000001]]],[[[110.747345,36.6138430000001],[110.741519804688,36.6096681953125],[110.726971464844,36.5893679023438],[110.671519804688,36.5696681953125],[110.642659941406,36.5198891425782],[110.582345,36.5318068671875],[110.551046171875,36.5256215644531],[110.513170195313,36.5496681953126],[110.487345,36.553843],[110.48271609375,36.5792153144532],[110.427345,36.643843],[110.418631621094,36.6551308417969],[110.394344511719,36.6738771796875],[110.38298953125,36.6924428535156],[110.422345,36.686626203125],[110.43170046875,36.7094863105469],[110.444945097656,36.7314443183595],[110.409744902344,36.7262416816407],[110.427379179688,36.7554787421876],[110.379830351563,36.7687209296875],[110.40298953125,36.7781996894532],[110.42170046875,36.8127614570313],[110.400867949219,36.828843],[110.41298953125,36.8381996894532],[110.42170046875,36.8577358222656],[110.370115996094,36.8788478828125],[110.407345,36.893843],[110.432203398438,36.8880825019532],[110.442735625,36.8896401191407],[110.463922148438,36.8768593574219],[110.489193144531,36.8805934882812],[110.532135039063,36.8680727363281],[110.547345,36.8703212714844],[110.588778105469,36.8641982246094],[110.643421660156,36.8865615058594],[110.637391386719,36.9273720527344],[110.706712675781,36.9376161933594],[110.728365507813,36.9095644355469],[110.756324492188,36.8981215644532],[110.778389921875,36.8695326972656],[110.817345,36.853843],[110.827345,36.853843],[110.79298953125,36.8081996894532],[110.780867949219,36.798843],[110.809386015625,36.7768288398438],[110.781095,36.7386684394531],[110.794486113281,36.7283315253906],[110.791605253906,36.708843],[110.798741484375,36.6605544257813],[110.770128203125,36.648843],[110.773167753906,36.6282729316407],[110.75170046875,36.6194863105469],[110.747345,36.6138430000001]]]]}},{"type":"Feature","properties":{"name":"隰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.827345,36.853843],[110.817345,36.853843],[110.822345,36.8666506171876],[110.827345,36.853843]]],[[[110.827345,36.853843],[110.86298953125,36.8681996894531],[110.909390898438,36.8961904121094],[110.942345,36.9010597968751],[110.981087675781,36.8953346992188],[110.983084746094,36.908843],[110.980223417969,36.9281996894532],[110.99298953125,36.9194863105469],[111.005286894531,36.9035536933594],[111.046937285156,36.9286769843751],[111.077345,36.933843],[111.084139433594,36.9165615058594],[111.058468046875,36.8512636542969],[111.097515898438,36.8359133125],[111.170960722656,36.8467665839844],[111.18170046875,36.8081996894532],[111.198631621094,36.7801308417969],[111.21170046875,36.7481996894531],[111.237345,36.743843],[111.253629179688,36.7298146796875],[111.251920195313,36.7085646796875],[111.262779570313,36.6891030097657],[111.257345,36.633843],[111.25170046875,36.6294863105469],[111.23490359375,36.6077260566407],[111.212345,36.611059796875],[111.191773710938,36.5607997871094],[111.127345,36.5703212714844],[111.107345,36.5673647285157],[111.087345,36.5703212714844],[111.062345,36.566626203125],[111.042345,36.5695815253907],[110.982689238281,36.5607656074219],[110.967225371094,36.5407338691406],[110.927464628906,36.5169521308594],[110.91298953125,36.4981996894532],[110.89170046875,36.4894863105469],[110.877899199219,36.4557631660157],[110.857345,36.4638430000001],[110.853985625,36.4804836250001],[110.839713164063,36.4984511542969],[110.8472278125,36.513843],[110.83990359375,36.528843],[110.848001738281,36.5454274726562],[110.826031523438,36.5730849433594],[110.812345,36.56640159375],[110.784298125,36.5800978828126],[110.773985625,36.600483625],[110.767345,36.603843],[110.767345,36.6138430000001],[110.747345,36.6138430000001],[110.75170046875,36.6194863105469],[110.773167753906,36.6282729316407],[110.770128203125,36.648843],[110.798741484375,36.6605544257813],[110.791605253906,36.708843],[110.794486113281,36.7283315253906],[110.781095,36.7386684394531],[110.809386015625,36.7768288398438],[110.780867949219,36.798843],[110.79298953125,36.8081996894532],[110.827345,36.853843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"交城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.897345,37.503843],[111.909537382813,37.5004201484375],[111.900767851563,37.4916506171875],[111.897345,37.503843]]],[[[111.897345,37.503843],[111.856453886719,37.5107888007813],[111.873377714844,37.538843],[111.856553984375,37.5667336250001],[111.789193144531,37.5470925117188],[111.719657011719,37.557368390625],[111.67486453125,37.5843874335938],[111.611253691406,37.5749867988281],[111.557345,37.583843],[111.553260527344,37.5997585273438],[111.541429472656,37.6179274726563],[111.531698027344,37.6439321113282],[111.511073027344,37.6581728339844],[111.513465605469,37.668843],[111.508565703125,37.6906984687501],[111.457345,37.703843],[111.45170046875,37.7181996894532],[111.44298953125,37.7794863105469],[111.414129667969,37.8017617011719],[111.411021757813,37.8228054023438],[111.434132109375,37.8861464667969],[111.501673613281,37.9017971015626],[111.547345,37.883843],[111.553531523438,37.8800307441407],[111.56547,37.8450038886719],[111.612313261719,37.8604103828125],[111.622345,37.8572853828125],[111.632345,37.8604006171875],[111.648455839844,37.8553823066407],[111.681158476563,37.8700307441406],[111.727345,37.8738430000001],[111.733079863281,37.8695778632813],[111.760701933594,37.8324428535156],[111.796715117188,37.8181325507813],[111.811610136719,37.7981081367188],[111.903079863281,37.7895778632812],[111.932821074219,37.7359267402344],[111.964107695313,37.7165639472656],[112.003643828125,37.7233705878906],[112.04205203125,37.7079311347657],[112.097235136719,37.7174318671875],[112.113778105469,37.6951955390626],[112.156715117188,37.6781325507813],[112.167345,37.663843],[112.172056914063,37.6380165839844],[112.23197390625,37.5684706855469],[112.288736601563,37.5581166816407],[112.267345,37.523843],[112.22170046875,37.5194863105469],[112.21298953125,37.4981996894532],[112.171517363281,37.4894472480469],[112.173436308594,37.4764650703125],[112.133880644531,37.4823110175782],[112.121832304688,37.4667018867188],[112.100282011719,37.4698867011719],[112.104561796875,37.4988430000001],[112.078365507813,37.5095644355469],[112.062857695313,37.5296572089844],[112.017435332031,37.5229457832031],[111.980386992188,37.5005983710938],[111.984327421875,37.5272634101563],[111.906551542969,37.5157704902344],[111.897345,37.503843]]]]}},{"type":"Feature","properties":{"name":"方山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.367345,38.1738430000001],[111.527584257813,38.1154555488282],[111.537345,38.083843],[111.511541777344,38.0492739082032],[111.513822050781,38.033843],[111.511549101563,38.018452375],[111.52298953125,37.9994863105469],[111.546397734375,37.9422939277344],[111.57170046875,37.9227614570312],[111.56298953125,37.8981996894531],[111.55170046875,37.8894863105469],[111.547345,37.883843],[111.501673613281,37.9017971015626],[111.434132109375,37.8861464667969],[111.411021757813,37.8228054023438],[111.414129667969,37.8017617011719],[111.44298953125,37.7794863105469],[111.45170046875,37.7181996894532],[111.457345,37.703843],[111.45271609375,37.6884706855469],[111.44197390625,37.6792153144531],[111.421185332031,37.6550881171875],[111.319207792969,37.6925368476562],[111.263001738281,37.6573329902345],[111.24197390625,37.6392153144531],[111.225692167969,37.620317609375],[111.202066679688,37.6184194160156],[111.182623320313,37.6292665839844],[111.163326445313,37.6277162910157],[111.14271609375,37.6392153144531],[111.062708769531,37.6496828437501],[111.057345,37.713843],[111.065697050781,37.7259377265626],[111.112345,37.7154799628907],[111.142345,37.7222060371094],[111.162596464844,37.7176650214844],[111.181429472656,37.7250954414063],[111.141429472656,37.7479274726563],[111.133260527344,37.7597585273438],[111.110472441406,37.7754921699219],[111.11795046875,37.808843],[111.111124296875,37.8392897773438],[111.123565703125,37.8583962226563],[111.119842558594,37.8750087714844],[111.167669707031,37.8642861152344],[111.193136015625,37.8808705878906],[111.211429472656,37.9297585273437],[111.223565703125,37.9483962226563],[111.221112089844,37.9593483710938],[111.243260527344,37.9879274726563],[111.251429472656,38.0097585273438],[111.28013796875,38.0295790839844],[111.300079375,38.082876203125],[111.257345,38.093843],[111.261846953125,38.1161391425782],[111.297345,38.1337844062501],[111.332476835938,38.1163210273438],[111.354295683594,38.127358625],[111.36478640625,38.148843],[111.355504179688,38.1678530097657],[111.367345,38.1738430000001]]]]}},{"type":"Feature","properties":{"name":"汾阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.70271609375,37.4692153144532],[111.733902617188,37.4577626777345],[111.752345,37.4592446113282],[111.767345,37.4580397773438],[111.795809355469,37.4603261542969],[111.83271609375,37.4492153144531],[111.85197390625,37.4184706855469],[111.884586210938,37.4086525703125],[111.902020292969,37.3884157539062],[111.922020292969,37.3900221992188],[111.936600371094,37.3730995917969],[111.958089628906,37.3545864082032],[111.97197390625,37.3384706855469],[111.98271609375,37.3292153144531],[112.007345,37.273843],[112.002857695313,37.2680287910156],[111.991209746094,37.2697499824219],[111.941522246094,37.2494130683594],[111.944561796875,37.2288430000001],[111.938878203125,37.1903786445312],[111.947345,37.1838430000001],[111.927345,37.1438430000001],[111.91170046875,37.1481996894532],[111.844974394531,37.177358625],[111.782345,37.1681044746094],[111.747345,37.17327659375],[111.712345,37.1681044746094],[111.697345,37.1703212714844],[111.667515898438,37.1659133125],[111.612689238281,37.1874672675781],[111.58298953125,37.2094863105469],[111.53170046875,37.2281996894532],[111.514276152344,37.2507741523438],[111.443111601563,37.2799001289063],[111.437345,37.313843],[111.443641386719,37.3240615058594],[111.483531523438,37.3376552558594],[111.487345,37.3438430000001],[111.491429472656,37.3497585273438],[111.57076296875,37.3698244453126],[111.600877714844,37.4134438300782],[111.577345,37.463843],[111.59271609375,37.4684706855469],[111.620824003906,37.4841530585938],[111.70271609375,37.4692153144532]]]]}},{"type":"Feature","properties":{"name":"文水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.897345,37.503843],[111.900767851563,37.4916506171875],[111.909537382813,37.5004201484375],[111.906551542969,37.5157704902344],[111.984327421875,37.5272634101563],[111.980386992188,37.5005983710938],[112.017435332031,37.5229457832031],[112.062857695313,37.5296572089844],[112.078365507813,37.5095644355469],[112.104561796875,37.4988430000001],[112.100282011719,37.4698867011719],[112.121832304688,37.4667018867188],[112.133880644531,37.4823110175782],[112.173436308594,37.4764650703125],[112.171517363281,37.4894472480469],[112.21298953125,37.4981996894532],[112.22170046875,37.5194863105469],[112.267345,37.523843],[112.284530058594,37.5210268378907],[112.290159941406,37.5066591621094],[112.310103789063,37.4988430000001],[112.285596953125,37.4892385078125],[112.310159941406,37.4666591621094],[112.327345,37.463843],[112.316324492188,37.4495644355469],[112.267308378906,37.4295034003907],[112.23298953125,37.3681996894531],[112.207345,37.333843],[112.131712675781,37.2677626777345],[112.1123059375,37.2894814277344],[112.068365507813,37.3185622382813],[112.032625761719,37.2785622382813],[112.007345,37.273843],[111.98271609375,37.3292153144531],[111.97197390625,37.3384706855469],[111.958089628906,37.3545864082032],[111.936600371094,37.3730995917969],[111.922020292969,37.3900221992188],[111.902020292969,37.3884157539062],[111.884586210938,37.4086525703125],[111.85197390625,37.4184706855469],[111.83271609375,37.4492153144531],[111.795809355469,37.4603261542969],[111.767345,37.4580397773438],[111.752345,37.4592446113282],[111.733902617188,37.4577626777345],[111.70271609375,37.4692153144532],[111.620824003906,37.4841530585938],[111.59271609375,37.4684706855469],[111.577345,37.463843],[111.551158476563,37.4676552558594],[111.539029570313,37.5032436347656],[111.503873320313,37.5466481757813],[111.515091582031,37.5826601386719],[111.549930449219,37.5718080878907],[111.557345,37.583843],[111.611253691406,37.5749867988281],[111.67486453125,37.5843874335938],[111.719657011719,37.557368390625],[111.789193144531,37.5470925117188],[111.856553984375,37.5667336250001],[111.873377714844,37.538843],[111.856453886719,37.5107888007813],[111.897345,37.503843]]]]}},{"type":"Feature","properties":{"name":"交口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.363985625,37.172036359375],[111.427074003906,37.1565407539063],[111.457948027344,37.1634609199219],[111.463616972656,37.1381728339844],[111.443260527344,37.1241188789062],[111.451429472656,37.1079274726563],[111.46978640625,37.0952529121094],[111.476197539063,37.0666628242187],[111.463260527344,37.0479274726563],[111.445618925781,37.035747296875],[111.483260527344,37.0097585273437],[111.491429472656,36.9979274726563],[111.497345,36.9938430000001],[111.501429472656,36.9779274726563],[111.525091582031,36.9615895820313],[111.547254667969,36.9294887519532],[111.57498171875,36.9191152167969],[111.561429472656,36.9097585273438],[111.551329375,36.8951308417969],[111.491429472656,36.8797585273438],[111.443260527344,36.8479274726563],[111.412476835938,36.8364089179688],[111.407345,36.8038430000001],[111.361248808594,36.7799404121094],[111.348084746094,36.759380109375],[111.321248808594,36.7499404121094],[111.31310671875,36.7372231269531],[111.302345,36.7402480292969],[111.268675566406,36.730786359375],[111.274002714844,36.7497426582032],[111.24154421875,36.7611598945312],[111.237345,36.743843],[111.21170046875,36.7481996894531],[111.198631621094,36.7801308417969],[111.18170046875,36.8081996894532],[111.170960722656,36.8467665839844],[111.097515898438,36.8359133125],[111.058468046875,36.8512636542969],[111.084139433594,36.9165615058594],[111.077345,36.933843],[111.081429472656,36.9497585273438],[111.093616972656,36.9581728339844],[111.087699003906,36.9845693183594],[111.103543730469,37.0490834785156],[111.097345,37.063843],[111.134488554688,37.07812034375],[111.222183867188,37.0582009101563],[111.232345,37.0594643378907],[111.257327910156,37.0563576484375],[111.305777617188,37.1168617988281],[111.351790800781,37.1362514472656],[111.340245390625,37.1663002753907],[111.306632109375,37.1804640937501],[111.330081816406,37.2097475410157],[111.377345,37.203843],[111.363985625,37.172036359375]]]]}},{"type":"Feature","properties":{"name":"离石区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.14271609375,37.6392153144531],[111.163326445313,37.6277162910157],[111.182623320313,37.6292665839844],[111.202066679688,37.6184194160156],[111.225692167969,37.620317609375],[111.24197390625,37.6392153144531],[111.263001738281,37.6573329902345],[111.319207792969,37.6925368476562],[111.421185332031,37.6550881171875],[111.44197390625,37.6792153144531],[111.45271609375,37.6884706855469],[111.457345,37.703843],[111.508565703125,37.6906984687501],[111.513465605469,37.668843],[111.511073027344,37.6581728339844],[111.531698027344,37.6439321113282],[111.541429472656,37.6179274726563],[111.553260527344,37.5997585273438],[111.557345,37.583843],[111.549930449219,37.5718080878907],[111.515091582031,37.5826601386719],[111.503873320313,37.5466481757813],[111.539029570313,37.5032436347656],[111.551158476563,37.4676552558594],[111.577345,37.463843],[111.600877714844,37.4134438300782],[111.57076296875,37.3698244453126],[111.491429472656,37.3497585273438],[111.487345,37.3438430000001],[111.45170046875,37.3581996894531],[111.43298953125,37.3694863105469],[111.41170046875,37.3781996894532],[111.39978640625,37.3936367011719],[111.362345,37.3881044746094],[111.295426054688,37.3979933906251],[111.27298953125,37.4594863105469],[111.257747832031,37.4712502265626],[111.209193144531,37.4570925117188],[111.170679960938,37.4627834296876],[111.142735625,37.4796401191407],[111.132345,37.4781044746094],[111.122345,37.4795815253906],[111.11205203125,37.4780605292969],[111.097345,37.483843],[111.06170046875,37.4981996894532],[111.05298953125,37.5094863105469],[111.04170046875,37.5181996894531],[111.03298953125,37.5294863105469],[111.008365507813,37.5395644355469],[110.981033964844,37.5749745917969],[110.983167753906,37.5894130683594],[110.96170046875,37.5981996894531],[110.948631621094,37.6151308417969],[110.937345,37.623843],[110.94170046875,37.6394863105469],[110.981307402344,37.6556960273438],[110.956495390625,37.696830060547],[110.988426542969,37.7381996894531],[111.01298953125,37.7294863105469],[111.03170046875,37.7181996894532],[111.057345,37.713843],[111.062708769531,37.6496828437501],[111.14271609375,37.6392153144531]]]]}},{"type":"Feature","properties":{"name":"临县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.083118925781,38.2002931953126],[111.112345,38.1973146796875],[111.132345,38.1993520332032],[111.147345,38.1978237128906],[111.172345,38.2003713203125],[111.192667265625,38.1983010078125],[111.227728300781,38.2183803535156],[111.2330090625,38.1985475898438],[111.21318484375,38.1820803046875],[111.209444609375,38.1453920722656],[111.24095828125,38.1074550605469],[111.257345,38.093843],[111.300079375,38.082876203125],[111.28013796875,38.0295790839844],[111.251429472656,38.0097585273438],[111.243260527344,37.9879274726563],[111.221112089844,37.9593483710938],[111.223565703125,37.9483962226563],[111.211429472656,37.9297585273437],[111.193136015625,37.8808705878906],[111.167669707031,37.8642861152344],[111.119842558594,37.8750087714844],[111.123565703125,37.8583962226563],[111.111124296875,37.8392897773438],[111.11795046875,37.808843],[111.110472441406,37.7754921699219],[111.133260527344,37.7597585273438],[111.141429472656,37.7479274726563],[111.181429472656,37.7250954414063],[111.162596464844,37.7176650214844],[111.142345,37.7222060371094],[111.112345,37.7154799628907],[111.065697050781,37.7259377265626],[111.057345,37.713843],[111.03170046875,37.7181996894532],[111.01298953125,37.7294863105469],[110.988426542969,37.7381996894531],[110.956495390625,37.696830060547],[110.981307402344,37.6556960273438],[110.94170046875,37.6394863105469],[110.937345,37.623843],[110.851773710938,37.6309560371094],[110.8527746875,37.6184841132813],[110.81197390625,37.6092153144532],[110.792508574219,37.5983547187501],[110.767345,37.6038430000001],[110.758768339844,37.6387624335938],[110.783260527344,37.6479274726562],[110.791429472656,37.6725295234375],[110.731429472656,37.6879274726562],[110.697345,37.703843],[110.703878203125,37.7273085761719],[110.754195585938,37.7413198066407],[110.751488066406,37.7596364570313],[110.671058378906,37.7925551582031],[110.633631621094,37.8551308417969],[110.578975859375,37.9288503242188],[110.53170046875,37.9481996894532],[110.507620878906,37.9627236152344],[110.523140898438,37.9884523750001],[110.520941191406,38.0033498359375],[110.497550078125,38.0214028144532],[110.503822050781,38.0638430000001],[110.499173613281,38.095298078125],[110.515675078125,38.1226528144532],[110.494071074219,38.1776076484375],[110.517345,38.2138430000001],[110.547345,38.2138430000001],[110.551910429688,38.1982888007813],[110.562691679688,38.1993886542969],[110.601470976563,38.1714809394532],[110.652345,38.1662953925782],[110.682345,38.1693520332031],[110.692345,38.1683339667969],[110.71547,38.1706899238282],[110.772022734375,38.1383010078125],[110.825113554688,38.1437123847657],[110.853509550781,38.1274489570313],[110.902806425781,38.1383803535157],[110.94095828125,38.1602309394532],[110.982806425781,38.1783803535156],[111.001883574219,38.1893056464844],[111.034427519531,38.2034194160157],[111.030916777344,38.2378639960938],[111.083118925781,38.2002931953126]]]]}},{"type":"Feature","properties":{"name":"柳林县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.948631621094,37.6151308417969],[110.96170046875,37.5981996894531],[110.983167753906,37.5894130683594],[110.981033964844,37.5749745917969],[111.008365507813,37.5395644355469],[111.03298953125,37.5294863105469],[111.04170046875,37.5181996894531],[111.05298953125,37.5094863105469],[111.06170046875,37.4981996894532],[111.097345,37.483843],[111.092078886719,37.4627407050781],[111.050240507813,37.4392324042969],[111.081302519531,37.3997414375001],[111.061339140625,37.3698488593751],[111.050689726563,37.3404994941407],[111.016922636719,37.328247296875],[111.003062773438,37.3074025703125],[110.965618925781,37.3168361640625],[110.95982546875,37.293843],[110.96486453125,37.273843],[110.960970488281,37.2583876777344],[110.975831328125,37.2361354804688],[110.938023710938,37.2109950996094],[110.946776152344,37.1762587714844],[110.902345,37.165063703125],[110.881827421875,37.1702333808594],[110.852030058594,37.1467971015626],[110.843350859375,37.159848859375],[110.837345,37.163843],[110.816478300781,37.1782497382813],[110.803260527344,37.2297585273438],[110.787613554688,37.2537856269532],[110.762791777344,37.2376222968751],[110.748992949219,37.2407155585938],[110.731673613281,37.2156301093751],[110.705936308594,37.2214003730469],[110.693016386719,37.2401137519531],[110.681571074219,37.2375490546875],[110.671654082031,37.2640529609375],[110.647345,37.253843],[110.647345,37.273843],[110.683167753906,37.2882717109376],[110.679173613281,37.315298078125],[110.697899199219,37.3463405585938],[110.62298953125,37.3621474433594],[110.63482546875,37.4264601875],[110.657345,37.443843],[110.734454375,37.4494167304688],[110.753150664063,37.4703395820313],[110.752034941406,37.4890444160157],[110.766002226563,37.5279677558594],[110.785496855469,37.5638430000001],[110.772064238281,37.5885622382813],[110.767345,37.6038430000001],[110.792508574219,37.5983547187501],[110.81197390625,37.6092153144532],[110.8527746875,37.6184841132813],[110.851773710938,37.6309560371094],[110.937345,37.623843],[110.948631621094,37.6151308417969]]]]}},{"type":"Feature","properties":{"name":"石楼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.407345,37.023843],[110.421988554688,37.0000771308594],[110.451158476563,37.0192275214844],[110.419207792969,37.038657453125],[110.460648222656,37.0505055976563],[110.491790800781,37.0893959785156],[110.522899199219,37.1082900214844],[110.532530546875,37.1419802070313],[110.591768828125,37.1894179511719],[110.636239042969,37.2449489570313],[110.647345,37.253843],[110.671654082031,37.2640529609375],[110.681571074219,37.2375490546875],[110.693016386719,37.2401137519531],[110.705936308594,37.2214003730469],[110.731673613281,37.2156301093751],[110.748992949219,37.2407155585938],[110.762791777344,37.2376222968751],[110.787613554688,37.2537856269532],[110.803260527344,37.2297585273438],[110.816478300781,37.1782497382813],[110.837345,37.163843],[110.826258574219,37.1169350410156],[110.859815703125,37.1227114082031],[110.957345,37.0996645332032],[111.046966582031,37.1208437324219],[111.083309355469,37.0994423652344],[111.08048953125,37.0830605292969],[111.091610136719,37.0681081367187],[111.097345,37.063843],[111.103543730469,37.0490834785156],[111.087699003906,36.9845693183594],[111.093616972656,36.9581728339844],[111.081429472656,36.9497585273438],[111.077345,36.933843],[111.046937285156,36.9286769843751],[111.005286894531,36.9035536933594],[110.99298953125,36.9194863105469],[110.980223417969,36.9281996894532],[110.983084746094,36.908843],[110.981087675781,36.8953346992188],[110.942345,36.9010597968751],[110.909390898438,36.8961904121094],[110.86298953125,36.8681996894531],[110.827345,36.853843],[110.822345,36.8666506171876],[110.817345,36.853843],[110.778389921875,36.8695326972656],[110.756324492188,36.8981215644532],[110.728365507813,36.9095644355469],[110.706712675781,36.9376161933594],[110.637391386719,36.9273720527344],[110.643421660156,36.8865615058594],[110.588778105469,36.8641982246094],[110.547345,36.8703212714844],[110.532135039063,36.8680727363281],[110.489193144531,36.8805934882812],[110.463922148438,36.8768593574219],[110.442735625,36.8896401191407],[110.432203398438,36.8880825019532],[110.407345,36.893843],[110.414598417969,36.9675942207032],[110.407345,36.973843],[110.397906523438,36.9844057441406],[110.363026152344,37.0155715156251],[110.407345,37.023843]]]]}},{"type":"Feature","properties":{"name":"孝义市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.612689238281,37.1874672675781],[111.667515898438,37.1659133125],[111.697345,37.1703212714844],[111.712345,37.1681044746094],[111.747345,37.17327659375],[111.782345,37.1681044746094],[111.844974394531,37.177358625],[111.91170046875,37.1481996894532],[111.927345,37.1438430000001],[111.903260527344,37.0979274726563],[111.891429472656,37.0897585273437],[111.883031035156,37.0673134589845],[111.853260527344,37.0479274726563],[111.821429472656,37.0397585273438],[111.800230742188,37.0259548164063],[111.781097441406,37.0302431464844],[111.745513945313,37.0056740546876],[111.737345,36.9938430000001],[111.692347441406,36.9882204414062],[111.681890898438,36.9895217109375],[111.672899199219,36.9782900214844],[111.622662382813,36.9477773261719],[111.602703886719,36.9595095039063],[111.592039824219,36.9581825996094],[111.542650175781,36.9795034003907],[111.531890898438,36.9781642890625],[111.522899199219,36.9893959785157],[111.497345,36.9938430000001],[111.491429472656,36.9979274726563],[111.483260527344,37.0097585273437],[111.445618925781,37.035747296875],[111.463260527344,37.0479274726563],[111.476197539063,37.0666628242187],[111.46978640625,37.0952529121094],[111.451429472656,37.1079274726563],[111.443260527344,37.1241188789062],[111.463616972656,37.1381728339844],[111.457948027344,37.1634609199219],[111.427074003906,37.1565407539063],[111.363985625,37.172036359375],[111.377345,37.203843],[111.387362089844,37.2271816230469],[111.369698515625,37.2389272285157],[111.410416289063,37.2618068671876],[111.398394804688,37.3095229316406],[111.437345,37.313843],[111.443111601563,37.2799001289063],[111.514276152344,37.2507741523438],[111.53170046875,37.2281996894532],[111.58298953125,37.2094863105469],[111.612689238281,37.1874672675781]]]]}},{"type":"Feature","properties":{"name":"兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.225291777344,38.6804457832032],[111.243470488281,38.6478627753906],[111.241917753906,38.6285195136719],[111.25271609375,38.6192153144532],[111.262691679688,38.5968617988281],[111.330079375,38.6022768378906],[111.349705839844,38.5794960761719],[111.417345,38.573843],[111.412899199219,38.5682900214844],[111.371214628906,38.559271466797],[111.383011503906,38.5392031074219],[111.380096464844,38.5157582832031],[111.394483671875,38.4524147773438],[111.378053007813,38.4096718574219],[111.450477324219,38.3828981757813],[111.465479765625,38.330356671875],[111.443057890625,38.3124025703125],[111.430679960938,38.2830275703126],[111.359559355469,38.1941005683594],[111.367345,38.1738430000001],[111.355504179688,38.1678530097657],[111.36478640625,38.148843],[111.354295683594,38.127358625],[111.332476835938,38.1163210273438],[111.297345,38.1337844062501],[111.261846953125,38.1161391425782],[111.257345,38.093843],[111.24095828125,38.1074550605469],[111.209444609375,38.1453920722656],[111.21318484375,38.1820803046875],[111.2330090625,38.1985475898438],[111.227728300781,38.2183803535156],[111.192667265625,38.1983010078125],[111.172345,38.2003713203125],[111.147345,38.1978237128906],[111.132345,38.1993520332032],[111.112345,38.1973146796875],[111.083118925781,38.2002931953126],[111.030916777344,38.2378639960938],[111.034427519531,38.2034194160157],[111.001883574219,38.1893056464844],[110.982806425781,38.1783803535156],[110.94095828125,38.1602309394532],[110.902806425781,38.1383803535157],[110.853509550781,38.1274489570313],[110.825113554688,38.1437123847657],[110.772022734375,38.1383010078125],[110.71547,38.1706899238282],[110.692345,38.1683339667969],[110.682345,38.1693520332031],[110.652345,38.1662953925782],[110.601470976563,38.1714809394532],[110.562691679688,38.1993886542969],[110.551910429688,38.1982888007813],[110.547345,38.2138430000001],[110.562569609375,38.2260353828125],[110.573089628906,38.2983071113281],[110.659539824219,38.3091200996094],[110.691790800781,38.3493959785156],[110.74295046875,38.3709535957032],[110.777843046875,38.4537563300781],[110.837345,38.4463552070313],[110.873953886719,38.4509084296875],[110.866932402344,38.507348859375],[110.901519804688,38.5219228339844],[110.913865996094,38.5789882636719],[110.891790800781,38.5882900214844],[110.878709746094,38.6046254707031],[110.884830351563,38.6538210273438],[110.902899199219,38.6682900214844],[110.911790800781,38.6993959785157],[110.917345,38.7138430000001],[110.937345,38.7138430000001],[110.937345,38.723843],[110.944154082031,38.7183901191407],[110.940863066406,38.6919362617188],[110.951890898438,38.6781642890626],[110.979827910156,38.6816396308594],[111.014949980469,38.6559828925782],[111.071790800781,38.6893959785156],[111.102899199219,38.6982900214844],[111.151527128906,38.7268752265625],[111.178968535156,38.7302883125],[111.207345,38.723843],[111.225291777344,38.6804457832032]]]]}},{"type":"Feature","properties":{"name":"中阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.097345,37.483843],[111.11205203125,37.4780605292969],[111.122345,37.4795815253906],[111.132345,37.4781044746094],[111.142735625,37.4796401191407],[111.170679960938,37.4627834296876],[111.209193144531,37.4570925117188],[111.257747832031,37.4712502265626],[111.27298953125,37.4594863105469],[111.295426054688,37.3979933906251],[111.362345,37.3881044746094],[111.39978640625,37.3936367011719],[111.41170046875,37.3781996894532],[111.43298953125,37.3694863105469],[111.45170046875,37.3581996894531],[111.487345,37.3438430000001],[111.483531523438,37.3376552558594],[111.443641386719,37.3240615058594],[111.437345,37.313843],[111.398394804688,37.3095229316406],[111.410416289063,37.2618068671876],[111.369698515625,37.2389272285157],[111.387362089844,37.2271816230469],[111.377345,37.203843],[111.330081816406,37.2097475410157],[111.306632109375,37.1804640937501],[111.340245390625,37.1663002753907],[111.351790800781,37.1362514472656],[111.305777617188,37.1168617988281],[111.257327910156,37.0563576484375],[111.232345,37.0594643378907],[111.222183867188,37.0582009101563],[111.134488554688,37.07812034375],[111.097345,37.063843],[111.091610136719,37.0681081367187],[111.08048953125,37.0830605292969],[111.083309355469,37.0994423652344],[111.046966582031,37.1208437324219],[110.957345,37.0996645332032],[110.859815703125,37.1227114082031],[110.826258574219,37.1169350410156],[110.837345,37.163843],[110.843350859375,37.159848859375],[110.852030058594,37.1467971015626],[110.881827421875,37.1702333808594],[110.902345,37.165063703125],[110.946776152344,37.1762587714844],[110.938023710938,37.2109950996094],[110.975831328125,37.2361354804688],[110.960970488281,37.2583876777344],[110.96486453125,37.273843],[110.95982546875,37.293843],[110.965618925781,37.3168361640625],[111.003062773438,37.3074025703125],[111.016922636719,37.328247296875],[111.050689726563,37.3404994941407],[111.061339140625,37.3698488593751],[111.081302519531,37.3997414375001],[111.050240507813,37.4392324042969],[111.092078886719,37.4627407050781],[111.097345,37.483843]]]]}},{"type":"Feature","properties":{"name":"岚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.767345,38.533843],[111.713233671875,38.5048036933594],[111.78556765625,38.4497536445313],[111.781102324219,38.413843],[111.782967558594,38.398843],[111.781663847656,38.3883681464844],[111.812899199219,38.3693959785157],[111.821790800781,38.3282900214844],[111.832899199219,38.3193959785157],[111.841790800781,38.3015773750001],[111.760650664063,38.2874575019531],[111.764830351563,38.2538649726563],[111.79400515625,38.2305019355469],[111.807345,38.2138430000001],[111.791463652344,38.1916860175782],[111.716534453125,38.1766640449219],[111.6884778125,38.1375209785157],[111.603170195313,38.0980178046875],[111.551519804688,38.0896681953125],[111.537345,38.083843],[111.527584257813,38.1154555488282],[111.367345,38.1738430000001],[111.359559355469,38.1941005683594],[111.430679960938,38.2830275703126],[111.443057890625,38.3124025703125],[111.465479765625,38.330356671875],[111.450477324219,38.3828981757813],[111.378053007813,38.4096718574219],[111.394483671875,38.4524147773438],[111.380096464844,38.5157582832031],[111.383011503906,38.5392031074219],[111.371214628906,38.559271466797],[111.412899199219,38.5682900214844],[111.417345,38.573843],[111.442535429688,38.5590334296876],[111.454561796875,38.5085439277344],[111.49248171875,38.4884792304688],[111.505079375,38.5282704902344],[111.548023710938,38.5055471015625],[111.590384550781,38.5346962714844],[111.682535429688,38.5686525703126],[111.708365507813,38.6086525703126],[111.727181425781,38.5958803535157],[111.752535429688,38.5590334296876],[111.767345,38.533843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"和林格尔县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.527345,40.553843],[111.517345,40.553843],[111.522345,40.5666506171875],[111.527345,40.553843]]],[[[111.517345,40.553843],[111.522345,40.5410353828125],[111.527345,40.553843],[111.542144804688,40.5485329414063],[111.552532988281,40.5491518378907],[111.722157011719,40.4985341621094],[111.732345,40.4991408515625],[111.758883085938,40.4975588203125],[111.811107207031,40.5115468574219],[111.772891875,40.5456923652344],[111.797345,40.6138430000001],[111.821204863281,40.6046718574219],[111.822967558594,40.6188430000001],[111.820667753906,40.6373268867188],[111.876512480469,40.6614345527344],[111.934791289063,40.6541847968751],[111.930584746094,40.6880019355469],[111.947486601563,40.6901039863281],[111.972899199219,40.6793959785157],[111.988465605469,40.65995628125],[112.037345,40.6538430000001],[112.045513945313,40.6420119453126],[112.091429472656,40.6103102851563],[112.08209109375,40.5732949042969],[112.043260527344,40.5820009589844],[112.052801542969,40.5538845039063],[112.073260527344,40.5397585273438],[112.08201296875,40.5270839667969],[112.111898222656,40.5076222968751],[112.123592558594,40.5102431464844],[112.153260527344,40.4897585273438],[112.169598417969,40.4660964179688],[112.215706816406,40.448843],[112.210472441406,40.4254921699219],[112.233260527344,40.4097585273438],[112.241429472656,40.3979274726562],[112.254185820313,40.3891200996094],[112.230245390625,40.3582314277344],[112.263648710938,40.3496584296876],[112.259132109375,40.3295131660157],[112.286158476563,40.3108534980469],[112.279132109375,40.2795131660156],[112.293260527344,40.2697585273438],[112.301429472656,40.2579274726563],[112.307345,40.253843],[112.29197390625,40.2292153144531],[112.278089628906,40.1980995917969],[112.230479765625,40.1682802558594],[112.203460722656,40.1077272773438],[112.14197390625,40.0292153144531],[112.107345,39.9738430000001],[112.097345,39.9738430000001],[112.080181914063,39.9804396796875],[112.061890898438,39.9781642890625],[112.052799101563,39.9895217109375],[112.03373171875,39.9871498847657],[111.991812773438,40.0117897773438],[111.951615019531,40.0779726386719],[111.954261503906,40.0992580390625],[111.864930449219,40.1082900214844],[111.802847929688,40.0844264960938],[111.727345,40.0938185859375],[111.660057402344,40.0854482246094],[111.665738554688,40.1311305976562],[111.632345,40.126977765625],[111.584049101563,40.1329848457032],[111.556832304688,40.1669716621094],[111.517345,40.173843],[111.521158476563,40.1800307441407],[111.535460234375,40.188843],[111.520535917969,40.1980373359375],[111.525460234375,40.213843],[111.520787382813,40.228843],[111.527020292969,40.2488564277344],[111.464129667969,40.2700209785157],[111.483531523438,40.2976552558595],[111.497796660156,40.3395095039063],[111.431158476563,40.3476552558594],[111.423531523438,40.3674318671876],[111.460990019531,40.3801967597656],[111.471158476563,40.4100307441407],[111.496317167969,40.4410927558594],[111.488883085938,40.4649550605469],[111.508543730469,40.508843],[111.497345,40.533843],[111.507345,40.533843],[111.507345,40.553843],[111.517345,40.553843]]]]}},{"type":"Feature","properties":{"name":"回民区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.577345,40.793843],[111.577345,40.783843],[111.564537382813,40.788843],[111.577345,40.793843]]],[[[111.577345,40.793843],[111.571890898438,40.8006520820313],[111.544644804688,40.7972634101563],[111.502899199219,40.8493959785157],[111.443807402344,40.8621816230469],[111.437345,40.913843],[111.451400175781,40.9349794746094],[111.509947539063,40.909848859375],[111.533350859375,40.917837140625],[111.544237089844,40.947837140625],[111.589681425781,40.9353688789063],[111.597345,40.9238430000001],[111.633260527344,40.8697585273438],[111.649598417969,40.8260964179688],[111.667345,40.813843],[111.667345,40.8038430000001],[111.63298953125,40.7981996894531],[111.577345,40.793843]]]]}},{"type":"Feature","properties":{"name":"清水河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.49435671875,40.1841408515625],[111.517345,40.173843],[111.556832304688,40.1669716621094],[111.584049101563,40.1329848457032],[111.632345,40.126977765625],[111.665738554688,40.1311305976562],[111.660057402344,40.0854482246094],[111.727345,40.0938185859375],[111.802847929688,40.0844264960938],[111.864930449219,40.1082900214844],[111.954261503906,40.0992580390625],[111.951615019531,40.0779726386719],[111.991812773438,40.0117897773438],[112.03373171875,39.9871498847657],[112.052799101563,39.9895217109375],[112.061890898438,39.9781642890625],[112.080181914063,39.9804396796875],[112.097345,39.9738430000001],[112.092569609375,39.9571401191407],[112.062899199219,39.9082900214844],[112.043057890625,39.8924025703125],[112.020203886719,39.8381630683594],[111.960311308594,39.7902016425781],[111.96388796875,39.7614394355469],[111.952899199219,39.6982900214844],[111.921671171875,39.6592470527344],[111.927345,39.613843],[111.87216921875,39.6084169746094],[111.832218046875,39.6193520332031],[111.788143339844,39.59476096875],[111.718997832031,39.600317609375],[111.7012121875,39.620962140625],[111.655982695313,39.6411440253906],[111.60400515625,39.6369680000001],[111.505101347656,39.6640358710937],[111.46271609375,39.6484706855469],[111.427345,39.643843],[111.42146609375,39.65913596875],[111.433682890625,39.6689186835938],[111.386278105469,39.6977138496094],[111.348870878906,39.7444264960938],[111.362899199219,39.7682900214844],[111.371790800781,39.7893959785156],[111.393248320313,39.8065785957031],[111.391666289063,39.8192958808594],[111.402899199219,39.8282900214844],[111.411790800781,39.8693959785156],[111.432899199219,39.8982900214844],[111.441790800781,39.9322743964844],[111.421790800781,39.9482900214844],[111.409276152344,40.0342897773437],[111.376976347656,40.0601528144532],[111.367345,40.093843],[111.371158476563,40.1000307441407],[111.395907011719,40.1152809882812],[111.415220976563,40.1719521308594],[111.442345,40.1804006171875],[111.452345,40.1772853828125],[111.462345,40.1804006171875],[111.472345,40.1772853828125],[111.49435671875,40.1841408515625]]]]}},{"type":"Feature","properties":{"name":"赛罕区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.063441191406,40.9599404121094],[112.084796171875,40.9453163886719],[112.127345,40.9572731757813],[112.141248808594,40.9177455878906],[112.153878203125,40.8993019843751],[112.148714628906,40.8809218574219],[112.173441191406,40.8499404121094],[112.177345,40.813843],[112.17271609375,40.8084706855469],[112.152977324219,40.7914638496094],[112.139032011719,40.7602138496094],[112.086287871094,40.7366774726563],[112.10197390625,40.7184706855469],[112.127125273438,40.696801984375],[112.10271609375,40.6684706855469],[112.037345,40.6538430000001],[111.988465605469,40.65995628125],[111.972899199219,40.6793959785157],[111.947486601563,40.6901039863281],[111.930584746094,40.6880019355469],[111.934791289063,40.6541847968751],[111.876512480469,40.6614345527344],[111.820667753906,40.6373268867188],[111.822967558594,40.6188430000001],[111.821204863281,40.6046718574219],[111.797345,40.6138430000001],[111.78521609375,40.6368715644532],[111.757030058594,40.6242079902344],[111.717345,40.643843],[111.721883574219,40.6693056464844],[111.741734648438,40.7403102851563],[111.722022734375,40.7383010078126],[111.693509550781,40.7546315742188],[111.682806425781,40.7793056464844],[111.667345,40.8038430000001],[111.667345,40.813843],[111.68271609375,40.8184706855469],[111.70197390625,40.8292153144532],[111.74271609375,40.8384706855469],[111.787943144531,40.8508486152344],[111.81197390625,40.8892153144532],[111.83814578125,40.9117641425781],[111.877174101563,40.8899904609375],[111.999947539063,40.8998561835938],[112.021998320313,40.9492726875001],[112.032699003906,40.9484133125],[112.037345,40.9638430000001],[112.063441191406,40.9599404121094]]]]}},{"type":"Feature","properties":{"name":"土默特左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.517345,40.553843],[111.527345,40.553843],[111.522345,40.5410353828125],[111.517345,40.553843]]],[[[111.527345,40.553843],[111.522345,40.5666506171875],[111.517345,40.553843],[111.507345,40.553843],[111.507345,40.533843],[111.497345,40.533843],[111.453582792969,40.5460292792969],[111.473179960938,40.5785158515626],[111.469300566406,40.5981996894531],[111.381707792969,40.563764875],[111.337345,40.5703212714844],[111.322345,40.5681044746094],[111.312345,40.5695815253906],[111.270924101563,40.5634609199219],[111.274605742188,40.538540265625],[111.23170046875,40.5294863105469],[111.208533964844,40.515512921875],[111.16384890625,40.5330788398438],[111.142884550781,40.4980239082032],[111.116436796875,40.5019325996094],[111.10298953125,40.4381996894532],[111.08170046875,40.4294863105469],[111.077345,40.4238430000001],[111.021656523438,40.4283010078126],[111.024232207031,40.4490151191406],[110.991790800781,40.4582900214844],[110.965369902344,40.4738210273438],[110.950985136719,40.4917836738282],[110.89334109375,40.4846132636719],[110.882899199219,40.5093959785156],[110.854334746094,40.5214321113281],[110.842899199219,40.5522743964844],[110.874832792969,40.57784690625],[110.857906523438,40.5914003730469],[110.827345,40.5875991035157],[110.806983671875,40.5901320625001],[110.78779421875,40.6572499824219],[110.793587675781,40.703843],[110.784810820313,40.7744228339844],[110.777345,40.793843],[110.824127226563,40.8017897773438],[110.820924101563,40.8234609199219],[110.862345,40.8295815253906],[110.882345,40.8266262031251],[110.917345,40.8317983222657],[110.948343535156,40.8272182441407],[111.01298953125,40.8381996894531],[111.02170046875,40.8594863105469],[111.074244414063,40.8809914375001],[111.070282011719,40.9077992988281],[111.087345,40.9103212714844],[111.156712675781,40.9000698066407],[111.174329863281,40.9228908515625],[111.245064726563,40.8950832343751],[111.284625273438,40.9106362128906],[111.34218875,40.8880068183594],[111.43170046875,40.9094863105469],[111.437345,40.913843],[111.443807402344,40.8621816230469],[111.502899199219,40.8493959785157],[111.544644804688,40.7972634101563],[111.571890898438,40.8006520820313],[111.577345,40.793843],[111.564537382813,40.788843],[111.577345,40.783843],[111.573350859375,40.757837140625],[111.55533328125,40.7458559394532],[111.543350859375,40.7278371406251],[111.506832304688,40.7145851875],[111.525941191406,40.6859694648438],[111.542345,40.690102765625],[111.561627226563,40.6852443671875],[111.571339140625,40.699848859375],[111.593350859375,40.707837140625],[111.611890898438,40.7202175117188],[111.628778105469,40.715962140625],[111.609141875,40.6865590644532],[111.613719511719,40.6683876777345],[111.600970488281,40.6492983222657],[111.605618925781,40.6308498359376],[111.672345,40.647661359375],[111.713062773438,40.6374025703126],[111.717345,40.643843],[111.757030058594,40.6242079902344],[111.78521609375,40.6368715644532],[111.797345,40.6138430000001],[111.772891875,40.5456923652344],[111.811107207031,40.5115468574219],[111.758883085938,40.4975588203125],[111.732345,40.4991408515625],[111.722157011719,40.4985341621094],[111.552532988281,40.5491518378907],[111.542144804688,40.5485329414063],[111.527345,40.553843]]]]}},{"type":"Feature","properties":{"name":"托克托县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.473179960938,40.5785158515626],[111.453582792969,40.5460292792969],[111.497345,40.533843],[111.508543730469,40.508843],[111.488883085938,40.4649550605469],[111.496317167969,40.4410927558594],[111.471158476563,40.4100307441407],[111.460990019531,40.3801967597656],[111.423531523438,40.3674318671876],[111.431158476563,40.3476552558594],[111.497796660156,40.3395095039063],[111.483531523438,40.2976552558595],[111.464129667969,40.2700209785157],[111.527020292969,40.2488564277344],[111.520787382813,40.228843],[111.525460234375,40.213843],[111.520535917969,40.1980373359375],[111.535460234375,40.188843],[111.521158476563,40.1800307441407],[111.517345,40.173843],[111.49435671875,40.1841408515625],[111.472345,40.1772853828125],[111.462345,40.1804006171875],[111.452345,40.1772853828125],[111.442345,40.1804006171875],[111.415220976563,40.1719521308594],[111.395907011719,40.1152809882812],[111.371158476563,40.1000307441407],[111.367345,40.093843],[111.30271609375,40.1492153144531],[111.217100859375,40.1725197578126],[111.18173953125,40.2135634589844],[111.115484648438,40.2550612617188],[111.041121855469,40.2686257148438],[111.0427746875,40.2891970039063],[111.027345,40.293843],[111.03170046875,40.309486310547],[111.094095488281,40.3350234199219],[111.12170046875,40.3759206367188],[111.08670046875,40.3902455878907],[111.077345,40.4238430000001],[111.08170046875,40.4294863105469],[111.10298953125,40.4381996894532],[111.116436796875,40.5019325996094],[111.142884550781,40.4980239082032],[111.16384890625,40.5330788398438],[111.208533964844,40.515512921875],[111.23170046875,40.5294863105469],[111.274605742188,40.538540265625],[111.270924101563,40.5634609199219],[111.312345,40.5695815253906],[111.322345,40.5681044746094],[111.337345,40.5703212714844],[111.381707792969,40.563764875],[111.469300566406,40.5981996894531],[111.473179960938,40.5785158515626]]]]}},{"type":"Feature","properties":{"name":"武川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,41.2238430000001],[111.815152617188,41.2204201484375],[111.823922148438,41.2116506171876],[111.840704375,41.217202375],[111.857345,41.213843],[111.863089628906,41.1788771796875],[111.861600371094,41.1688088203125],[111.867345,41.133843],[111.862899199219,41.1282900214844],[111.835777617188,41.1168617988281],[111.812799101563,41.0881642890625],[111.801829863281,41.0895290351563],[111.788004179688,41.0411769843751],[111.731790800781,41.0093959785156],[111.722899199219,40.9982900214844],[111.7062121875,40.9849269843751],[111.701722441406,40.948843],[111.703211699219,40.9368691230469],[111.682310820313,40.9394692207031],[111.602899199219,40.9282900214845],[111.597345,40.9238430000001],[111.589681425781,40.9353688789063],[111.544237089844,40.947837140625],[111.533350859375,40.917837140625],[111.509947539063,40.909848859375],[111.451400175781,40.9349794746094],[111.437345,40.913843],[111.43170046875,40.9094863105469],[111.34218875,40.8880068183594],[111.284625273438,40.9106362128906],[111.245064726563,40.8950832343751],[111.174329863281,40.9228908515625],[111.156712675781,40.9000698066407],[111.087345,40.9103212714844],[111.070282011719,40.9077992988281],[111.074244414063,40.8809914375001],[111.02170046875,40.8594863105469],[111.01298953125,40.8381996894531],[110.948343535156,40.8272182441407],[110.917345,40.8317983222657],[110.882345,40.8266262031251],[110.862345,40.8295815253906],[110.820924101563,40.8234609199219],[110.824127226563,40.8017897773438],[110.777345,40.793843],[110.722525664063,40.7869936347656],[110.707345,40.813843],[110.72744265625,40.8293544746094],[110.721549101563,40.869233625],[110.73298953125,40.8881996894532],[110.74170046875,40.9127614570313],[110.716378203125,40.9323085761719],[110.634168730469,40.9165041328125],[110.620579863281,40.9809023261719],[110.653463164063,41.0062831855469],[110.65156375,41.0191347480469],[110.665675078125,41.0550331855469],[110.65170046875,41.0781996894532],[110.636615019531,41.1150624824219],[110.643167753906,41.1594130683594],[110.62170046875,41.1681996894531],[110.6001965625,41.2207424140626],[110.577345,41.2173647285157],[110.550496855469,41.2213332343751],[110.55677859375,41.2638430000001],[110.518365507813,41.2795644355469],[110.507345,41.293843],[110.5460559375,41.287837140625],[110.572081328125,41.3293886542969],[110.619725371094,41.3163491035157],[110.65822390625,41.3436464667969],[110.723326445313,41.3799697089844],[110.762345,41.3768337226563],[110.811998320313,41.3808242011719],[110.82197390625,41.3584706855469],[110.86271609375,41.3492153144532],[110.894564238281,41.3314455390626],[110.943695097656,41.3179994941406],[110.969947539063,41.3484706855469],[111.008326445313,41.3259194160157],[111.038997832031,41.2903176093751],[111.080106230469,41.2870143867188],[111.104605742188,41.3006838203125],[111.183831816406,41.2653310371094],[111.237518339844,41.2353774238281],[111.252772246094,41.2485195136719],[111.251253691406,41.2674330878907],[111.29404421875,41.2977748847657],[111.312669707031,41.2992702460938],[111.328038359375,41.2814321113281],[111.35197390625,41.3092153144532],[111.417345,41.313843],[111.455628691406,41.3279018378907],[111.477345,41.3296462226563],[111.502345,41.3276381660157],[111.522623320313,41.3292665839844],[111.543326445313,41.3177162910157],[111.562669707031,41.3192702460938],[111.572303496094,41.3080861640626],[111.701363554688,41.2977162910157],[111.722569609375,41.3095473457031],[111.732345,41.2876381660157],[111.752640410156,41.2892690253906],[111.796751738281,41.2579921699219],[111.831785917969,41.2608071113281],[111.832760039063,41.2486708808594],[111.827345,41.2238430000001]]]]}},{"type":"Feature","properties":{"name":"新城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.920413847656,41.0969118476563],[111.96298953125,41.0794863105469],[111.97170046875,41.0681996894532],[112.020765410156,41.054536359375],[112.023084746094,41.0388430000001],[112.018211699219,41.0058657050782],[112.037345,40.9638430000001],[112.032699003906,40.9484133125],[112.021998320313,40.9492726875001],[111.999947539063,40.8998561835938],[111.877174101563,40.8899904609375],[111.83814578125,40.9117641425781],[111.81197390625,40.8892153144532],[111.787943144531,40.8508486152344],[111.74271609375,40.8384706855469],[111.70197390625,40.8292153144532],[111.68271609375,40.8184706855469],[111.667345,40.813843],[111.649598417969,40.8260964179688],[111.633260527344,40.8697585273438],[111.597345,40.9238430000001],[111.602899199219,40.9282900214845],[111.682310820313,40.9394692207031],[111.703211699219,40.9368691230469],[111.701722441406,40.948843],[111.7062121875,40.9849269843751],[111.722899199219,40.9982900214844],[111.731790800781,41.0093959785156],[111.788004179688,41.0411769843751],[111.801829863281,41.0895290351563],[111.812799101563,41.0881642890625],[111.835777617188,41.1168617988281],[111.862899199219,41.1282900214844],[111.867345,41.133843],[111.90298953125,41.1194863105469],[111.920413847656,41.0969118476563]]]]}},{"type":"Feature","properties":{"name":"玉泉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.693509550781,40.7546315742188],[111.722022734375,40.7383010078126],[111.741734648438,40.7403102851563],[111.721883574219,40.6693056464844],[111.717345,40.643843],[111.713062773438,40.6374025703126],[111.672345,40.647661359375],[111.605618925781,40.6308498359376],[111.600970488281,40.6492983222657],[111.613719511719,40.6683876777345],[111.609141875,40.6865590644532],[111.628778105469,40.715962140625],[111.611890898438,40.7202175117188],[111.593350859375,40.707837140625],[111.571339140625,40.699848859375],[111.561627226563,40.6852443671875],[111.542345,40.690102765625],[111.525941191406,40.6859694648438],[111.506832304688,40.7145851875],[111.543350859375,40.7278371406251],[111.55533328125,40.7458559394532],[111.573350859375,40.757837140625],[111.577345,40.783843],[111.577345,40.793843],[111.63298953125,40.7981996894531],[111.667345,40.8038430000001],[111.682806425781,40.7793056464844],[111.693509550781,40.7546315742188]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.978311796875,40.6223073554688],[110.001954375,40.6080458808594],[110.019906035156,40.61069846875],[110.05170046875,40.5981996894531],[110.08298953125,40.5894863105469],[110.11170046875,40.5781996894532],[110.19298953125,40.5694863105469],[110.197345,40.553843],[110.167345,40.553843],[110.042242460938,40.5594985175782],[110.037345,40.533843],[110.017345,40.533843],[109.991749296875,40.5279116035156],[109.9805871875,40.5936208320313],[109.960867949219,40.608843],[109.978311796875,40.6223073554688]]]]}},{"type":"Feature","properties":{"name":"白云鄂博矿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.877994414063,41.8196096015625],[109.927345,41.8176540351563],[110.014407988281,41.8211049628907],[110.052655058594,41.8089955878906],[110.042154570313,41.7790334296875],[110.032535429688,41.7486525703125],[110.003997832031,41.7222096992188],[109.982154570313,41.6690334296875],[109.977345,41.653843],[109.916365996094,41.6654848457031],[109.902154570313,41.6786525703125],[109.883533964844,41.7181093574219],[109.848487578125,41.7505800605469],[109.820277128906,41.8854225898438],[109.86951296875,41.9385622382812],[109.845472441406,41.8699709296875],[109.877994414063,41.8196096015625]]]]}},{"type":"Feature","properties":{"name":"达尔罕茂明安联合旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.962064238281,41.9485622382813],[110.982625761719,41.9191237617188],[111.046239042969,41.8025954414063],[111.072064238281,41.7885622382813],[111.113189726563,41.7696865058594],[111.151292753906,41.7270412421875],[111.246715117188,41.6603871894531],[111.302064238281,41.6485622382813],[111.364461699219,41.6369155097656],[111.383895292969,41.5945729804688],[111.442064238281,41.5112978339844],[111.429439726563,41.4273793769532],[111.412625761719,41.4085622382813],[111.379364042969,41.3788430000001],[111.412625761719,41.3491237617188],[111.417345,41.313843],[111.35197390625,41.3092153144532],[111.328038359375,41.2814321113281],[111.312669707031,41.2992702460938],[111.29404421875,41.2977748847657],[111.251253691406,41.2674330878907],[111.252772246094,41.2485195136719],[111.237518339844,41.2353774238281],[111.183831816406,41.2653310371094],[111.104605742188,41.3006838203125],[111.080106230469,41.2870143867188],[111.038997832031,41.2903176093751],[111.008326445313,41.3259194160157],[110.969947539063,41.3484706855469],[110.943695097656,41.3179994941406],[110.894564238281,41.3314455390626],[110.86271609375,41.3492153144532],[110.82197390625,41.3584706855469],[110.811998320313,41.3808242011719],[110.762345,41.3768337226563],[110.723326445313,41.3799697089844],[110.65822390625,41.3436464667969],[110.619725371094,41.3163491035157],[110.572081328125,41.3293886542969],[110.5460559375,41.287837140625],[110.507345,41.293843],[110.47271609375,41.3192153144532],[110.412347441406,41.3570265937501],[110.36197390625,41.368470685547],[110.34271609375,41.3792153144532],[110.31197390625,41.3884706855469],[110.288949003906,41.4013173652344],[110.23197390625,41.4184706855469],[110.200787382813,41.4299233222656],[110.181180449219,41.4283473945313],[110.183089628906,41.4045668769531],[110.139947539063,41.3792153144532],[110.12271609375,41.3992153144532],[110.051912871094,41.4084792304688],[110.0532825,41.4255251289063],[110.02271609375,41.408470685547],[110.00197390625,41.3992153144532],[109.991373320313,41.3869118476563],[109.946978789063,41.3904799628907],[109.92271609375,41.4292153144532],[109.89197390625,41.4384706855469],[109.877137480469,41.4556899238282],[109.848563261719,41.4784706855469],[109.79654421875,41.4494484687501],[109.74271609375,41.4692153144532],[109.71197390625,41.4784706855469],[109.68271609375,41.4892153144531],[109.657345,41.4938430000001],[109.456898222656,41.4991493964844],[109.442445097656,41.5289430976563],[109.432244902344,41.5487429023438],[109.419156523438,41.6424941230469],[109.401688261719,41.6592775703126],[109.382088652344,41.6996779609376],[109.341905546875,41.7382851386719],[109.352645292969,41.7591310859376],[109.352166777344,41.7825685859376],[109.312244902344,41.8087429023437],[109.2910559375,41.8410622382813],[109.254036894531,41.8766286445313],[109.332445097656,41.8987429023438],[109.342244902344,41.9189430976563],[109.369178496094,41.9320095039063],[109.478372832031,42.0697377753906],[109.502957792969,42.1204116035156],[109.532491484375,42.1487868476563],[109.504088164063,42.2469313789063],[109.472244902344,42.3087429023438],[109.462445097656,42.3489430976563],[109.442244902344,42.3787429023437],[109.419566679688,42.4254872871094],[109.392244902344,42.4387429023438],[109.387345,42.4438430000001],[109.402064238281,42.4491237617188],[109.504678984375,42.4611452460938],[109.556400175781,42.4848842597657],[109.692628203125,42.5653652167969],[109.892064238281,42.6291237617188],[110.094232207031,42.6426979804688],[110.139837675781,42.6745534492188],[110.282064238281,42.7191237617188],[110.337345,42.733843],[110.400130644531,42.7076491523438],[110.558885527344,42.5867409492187],[110.632635527344,42.4921865058594],[110.709940214844,42.4624684882813],[110.7226575,42.4390688300782],[110.719156523438,42.3803591132813],[110.742642851563,42.3042983222656],[110.772625761719,42.2491237617188],[110.782064238281,42.1785622382813],[110.888795195313,42.0561904121094],[110.942625761719,41.9791237617188],[110.962064238281,41.9485622382813]],[[109.916365996094,41.6654848457031],[109.977345,41.653843],[109.982154570313,41.6690334296875],[110.003997832031,41.7222096992188],[110.032535429688,41.7486525703125],[110.042154570313,41.7790334296875],[110.052655058594,41.8089955878906],[110.014407988281,41.8211049628907],[109.927345,41.8176540351563],[109.877994414063,41.8196096015625],[109.845472441406,41.8699709296875],[109.86951296875,41.9385622382812],[109.820277128906,41.8854225898438],[109.848487578125,41.7505800605469],[109.883533964844,41.7181093574219],[109.902154570313,41.6786525703125],[109.916365996094,41.6654848457031]]]]}},{"type":"Feature","properties":{"name":"固阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.657345,41.1138430000001],[109.645152617188,41.1172658515625],[109.653922148438,41.1260353828126],[109.657345,41.1138430000001]]],[[[109.657345,41.1138430000001],[109.720289335938,41.1175759101562],[109.704476347656,41.1499526191406],[109.660704375,41.197202375],[109.653985625,41.220483625],[109.647345,41.2238430000001],[109.647345,41.233843],[109.637345,41.233843],[109.63298953125,41.2494863105469],[109.62156375,41.2785512519532],[109.625816679688,41.3073403144531],[109.68298953125,41.3281996894531],[109.699791289063,41.3692555976563],[109.620858183594,41.4288356757813],[109.641624785156,41.4448647285157],[109.65170046875,41.4694863105469],[109.663377714844,41.4784987617188],[109.657345,41.4938430000001],[109.68271609375,41.4892153144531],[109.71197390625,41.4784706855469],[109.74271609375,41.4692153144532],[109.79654421875,41.4494484687501],[109.848563261719,41.4784706855469],[109.877137480469,41.4556899238282],[109.89197390625,41.4384706855469],[109.92271609375,41.4292153144532],[109.946978789063,41.3904799628907],[109.991373320313,41.3869118476563],[110.00197390625,41.3992153144532],[110.02271609375,41.408470685547],[110.0532825,41.4255251289063],[110.051912871094,41.4084792304688],[110.12271609375,41.3992153144532],[110.139947539063,41.3792153144532],[110.183089628906,41.4045668769531],[110.181180449219,41.4283473945313],[110.200787382813,41.4299233222656],[110.23197390625,41.4184706855469],[110.288949003906,41.4013173652344],[110.31197390625,41.3884706855469],[110.34271609375,41.3792153144532],[110.36197390625,41.368470685547],[110.412347441406,41.3570265937501],[110.47271609375,41.3192153144532],[110.507345,41.293843],[110.518365507813,41.2795644355469],[110.55677859375,41.2638430000001],[110.550496855469,41.2213332343751],[110.577345,41.2173647285157],[110.6001965625,41.2207424140626],[110.62170046875,41.1681996894531],[110.643167753906,41.1594130683594],[110.636615019531,41.1150624824219],[110.65170046875,41.0781996894532],[110.665675078125,41.0550331855469],[110.65156375,41.0191347480469],[110.653463164063,41.0062831855469],[110.620579863281,40.9809023261719],[110.634168730469,40.9165041328125],[110.716378203125,40.9323085761719],[110.74170046875,40.9127614570313],[110.73298953125,40.8881996894532],[110.721549101563,40.869233625],[110.72744265625,40.8293544746094],[110.707345,40.813843],[110.672379179688,40.8080995917969],[110.662345,40.8095815253907],[110.652345,40.8081044746094],[110.637345,40.8103212714844],[110.622345,40.8081044746094],[110.585264921875,40.8135842109375],[110.568631621094,40.8351308417969],[110.537345,40.8438430000001],[110.526160917969,40.8568239570313],[110.385863066406,40.8711342597657],[110.342345,40.8676381660157],[110.315628691406,40.8697841621094],[110.253485136719,40.8926052070313],[110.24271609375,40.8684706855469],[110.210057402344,40.8224111152344],[110.151124296875,40.8090224433594],[110.15310671875,40.7843630195313],[110.172769804688,40.7491213203125],[110.171361113281,40.7315932441407],[110.127345,40.763843],[110.121495390625,40.8106032539063],[110.057266875,40.8026137519532],[110.032899199219,40.7882900214844],[110.001790800781,40.7793959785156],[109.946480742188,40.7555202460938],[109.838844023438,40.7758180976563],[109.817345,40.813843],[109.82271609375,40.8184706855469],[109.83197390625,40.8292153144532],[109.860824003906,40.8420888496094],[109.88197390625,40.9134169746094],[109.83896609375,40.9403542304688],[109.821302519531,40.9608571601562],[109.822747832031,40.978843],[109.820924101563,41.0015407539063],[109.782345,40.9984413886719],[109.757511015625,41.0004372382813],[109.73271609375,41.0292153144531],[109.689151640625,41.0423317695313],[109.657345,41.1138430000001]]]]}},{"type":"Feature","properties":{"name":"九原区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,40.4638430000001],[110.307345,40.4638430000001],[110.307345,40.473843],[110.317345,40.473843],[110.317345,40.4638430000001]]],[[[109.437345,40.523843],[109.437345,40.513843],[109.427345,40.513843],[109.427345,40.523843],[109.437345,40.523843]]],[[[110.167345,40.553843],[110.1590246875,40.504868390625],[110.073736601563,40.521264875],[110.04978640625,40.5177260566406],[110.037345,40.533843],[110.042242460938,40.5594985175782],[110.167345,40.553843]]],[[[109.437345,40.523843],[109.43298953125,40.5394863105469],[109.421529570313,40.5483315253906],[109.423084746094,40.558843],[109.420128203125,40.5788430000001],[109.425955839844,40.6182729316407],[109.3997278125,40.6290065742187],[109.41281375,40.7060292792969],[109.473140898438,40.7424196601563],[109.517345,40.7358876777344],[109.567345,40.74327659375],[109.619390898438,40.7355849433594],[109.700953398438,40.751264875],[109.722996855469,40.7480080390626],[109.784937773438,40.7585305000001],[109.803065214844,40.8028212714844],[109.817345,40.813843],[109.838844023438,40.7758180976563],[109.946480742188,40.7555202460938],[110.001790800781,40.7793959785156],[110.032899199219,40.7882900214844],[110.057266875,40.8026137519532],[110.121495390625,40.8106032539063],[110.127345,40.763843],[110.118905058594,40.7403188300782],[110.162000761719,40.7018129707032],[110.174776640625,40.6469020820312],[110.224307890625,40.6498537421875],[110.272625761719,40.6191237617188],[110.28275515625,40.5863222480469],[110.328026152344,40.6369911933594],[110.437345,40.643843],[110.433260527344,40.6379274726563],[110.406590605469,40.6195131660156],[110.421380644531,40.5535341621094],[110.401429472656,40.5397585273438],[110.393016386719,40.5275722480469],[110.381673613281,40.5301137519532],[110.368114042969,40.5104726386719],[110.317345,40.483843],[110.312159453125,40.5176149726563],[110.272345,40.5075832343751],[110.262083769531,40.5101686835938],[110.247345,40.5038430000001],[110.247345,40.513843],[110.237345,40.513843],[110.231844511719,40.5371974921876],[110.201158476563,40.5476552558594],[110.197345,40.553843],[110.19298953125,40.5694863105469],[110.11170046875,40.5781996894532],[110.08298953125,40.5894863105469],[110.05170046875,40.5981996894531],[110.019906035156,40.61069846875],[110.001954375,40.6080458808594],[109.978311796875,40.6223073554688],[109.960867949219,40.608843],[109.9805871875,40.5936208320313],[109.991749296875,40.5279116035156],[110.017345,40.533843],[110.000128203125,40.5033901191407],[109.964740019531,40.5241921210938],[109.906512480469,40.5314345527344],[109.848177519531,40.5062514472657],[109.812799101563,40.5106520820312],[109.802799101563,40.4981642890625],[109.772799101563,40.5018959785157],[109.692891875,40.48374534375],[109.631663847656,40.5183620429688],[109.63431765625,40.5397109199219],[109.622061796875,40.5381862617188],[109.580135527344,40.5543019843751],[109.552703886719,40.5381764960938],[109.541951933594,40.5395131660156],[109.508355742188,40.5149709296876],[109.437345,40.523843]],[[109.84156375,40.6091347480469],[109.847345,40.6238430000001],[109.898509550781,40.6115151191406],[109.91189578125,40.6301918769532],[109.942943144531,40.6174330878907],[109.951519804688,40.6396681953125],[109.985284453125,40.6592446113282],[109.932410917969,40.6698439765626],[109.921859160156,40.6677590156251],[109.893170195313,40.6896681953125],[109.853721953125,40.6980178046875],[109.847345,40.673843],[109.82170046875,40.6881996894532],[109.808033476563,40.7059072089844],[109.748631621094,40.6825551582032],[109.695037871094,40.6676308417969],[109.66298953125,40.62897971875],[109.742943144531,40.6067153144531],[109.762345,40.6095815253907],[109.820499296875,40.6009877753906],[109.844945097656,40.5862416816407],[109.84156375,40.6091347480469]]]]}},{"type":"Feature","properties":{"name":"昆都仑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.847345,40.6238430000001],[109.84156375,40.6091347480469],[109.844945097656,40.5862416816407],[109.820499296875,40.6009877753906],[109.762345,40.6095815253907],[109.742943144531,40.6067153144531],[109.66298953125,40.62897971875],[109.695037871094,40.6676308417969],[109.748631621094,40.6825551582032],[109.808033476563,40.7059072089844],[109.82170046875,40.6881996894532],[109.847345,40.673843],[109.840054960938,40.6294692207032],[109.847345,40.6238430000001]]]]}},{"type":"Feature","properties":{"name":"青山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.893170195313,40.6896681953125],[109.921859160156,40.6677590156251],[109.932410917969,40.6698439765626],[109.985284453125,40.6592446113282],[109.951519804688,40.6396681953125],[109.942943144531,40.6174330878907],[109.91189578125,40.6301918769532],[109.898509550781,40.6115151191406],[109.847345,40.6238430000001],[109.840054960938,40.6294692207032],[109.847345,40.673843],[109.853721953125,40.6980178046875],[109.893170195313,40.6896681953125]]]]}},{"type":"Feature","properties":{"name":"石拐区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.315628691406,40.8697841621094],[110.342345,40.8676381660157],[110.385863066406,40.8711342597657],[110.526160917969,40.8568239570313],[110.537345,40.8438430000001],[110.545850859375,40.8195766425782],[110.517345,40.8184462714844],[110.483460722656,40.819790265625],[110.441976347656,40.7688161445313],[110.452740507813,40.758843],[110.415760527344,40.7245778632812],[110.442093535156,40.7001772285156],[110.442550078125,40.6886598945312],[110.421671171875,40.6788051582031],[110.461478300781,40.6662026191407],[110.437345,40.643843],[110.328026152344,40.6369911933594],[110.28275515625,40.5863222480469],[110.272625761719,40.6191237617188],[110.224307890625,40.6498537421875],[110.174776640625,40.6469020820312],[110.162000761719,40.7018129707032],[110.118905058594,40.7403188300782],[110.127345,40.763843],[110.171361113281,40.7315932441407],[110.172769804688,40.7491213203125],[110.15310671875,40.7843630195313],[110.151124296875,40.8090224433594],[110.210057402344,40.8224111152344],[110.24271609375,40.8684706855469],[110.253485136719,40.8926052070313],[110.315628691406,40.8697841621094]]]]}},{"type":"Feature","properties":{"name":"土默特右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.307345,40.4638430000001],[110.294537382813,40.4688430000001],[110.307345,40.473843],[110.307345,40.4638430000001]]],[[[110.247345,40.5038430000001],[110.237345,40.5038430000001],[110.237345,40.513843],[110.247345,40.513843],[110.247345,40.5038430000001]]],[[[110.317345,40.483843],[110.296068144531,40.4927797675782],[110.273260527344,40.4779274726563],[110.238973417969,40.4697585273438],[110.247345,40.5038430000001],[110.262083769531,40.5101686835938],[110.272345,40.5075832343751],[110.312159453125,40.5176149726563],[110.317345,40.483843]]],[[[110.467345,40.3938430000001],[110.479537382813,40.3972658515625],[110.470767851563,40.4060353828126],[110.431429472656,40.3979274726562],[110.393260527344,40.4297585273438],[110.371429472656,40.4379274726563],[110.36033328125,40.4539968085938],[110.297271757813,40.4398598457031],[110.307345,40.4638430000001],[110.317345,40.4638430000001],[110.317345,40.473843],[110.317345,40.483843],[110.368114042969,40.5104726386719],[110.381673613281,40.5301137519532],[110.393016386719,40.5275722480469],[110.401429472656,40.5397585273438],[110.421380644531,40.5535341621094],[110.406590605469,40.6195131660156],[110.433260527344,40.6379274726563],[110.437345,40.643843],[110.461478300781,40.6662026191407],[110.421671171875,40.6788051582031],[110.442550078125,40.6886598945312],[110.442093535156,40.7001772285156],[110.415760527344,40.7245778632812],[110.452740507813,40.758843],[110.441976347656,40.7688161445313],[110.483460722656,40.819790265625],[110.517345,40.8184462714844],[110.545850859375,40.8195766425782],[110.537345,40.8438430000001],[110.568631621094,40.8351308417969],[110.585264921875,40.8135842109375],[110.622345,40.8081044746094],[110.637345,40.8103212714844],[110.652345,40.8081044746094],[110.662345,40.8095815253907],[110.672379179688,40.8080995917969],[110.707345,40.813843],[110.722525664063,40.7869936347656],[110.777345,40.793843],[110.784810820313,40.7744228339844],[110.793587675781,40.703843],[110.78779421875,40.6572499824219],[110.806983671875,40.5901320625001],[110.827345,40.5875991035157],[110.857906523438,40.5914003730469],[110.874832792969,40.57784690625],[110.842899199219,40.5522743964844],[110.854334746094,40.5214321113281],[110.882899199219,40.5093959785156],[110.89334109375,40.4846132636719],[110.950985136719,40.4917836738282],[110.965369902344,40.4738210273438],[110.991790800781,40.4582900214844],[111.024232207031,40.4490151191406],[111.021656523438,40.4283010078126],[111.077345,40.4238430000001],[111.08670046875,40.3902455878907],[111.12170046875,40.3759206367188],[111.094095488281,40.3350234199219],[111.03170046875,40.309486310547],[111.027345,40.293843],[111.01830203125,40.2807460761719],[110.97509890625,40.25261253125],[110.959136992188,40.2757314277344],[110.9191028125,40.2447048164063],[110.883260527344,40.2597585273438],[110.850406523438,40.2681899238282],[110.869771757813,40.2979274726563],[110.83103640625,40.2896755195313],[110.836964140625,40.2632411933594],[110.804459257813,40.2559548164063],[110.783260527344,40.2697585273438],[110.761051054688,40.2780690742188],[110.76720828125,40.3055373359375],[110.723016386719,40.295630109375],[110.711673613281,40.312055890625],[110.691673613281,40.3075722480469],[110.682691679688,40.32058128125],[110.663260527344,40.3079274726563],[110.637345,40.303843],[110.631883574219,40.3083803535157],[110.621954375,40.3203322578125],[110.593533964844,40.317435529297],[110.572806425781,40.3293056464844],[110.549234648438,40.3395290351562],[110.509039335938,40.3879201484375],[110.492735625,40.3682936835938],[110.474290800781,40.3701735664063],[110.467345,40.3938430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海勃湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.91298953125,39.8381996894531],[106.868900175781,39.8041689277344],[106.88170046875,39.7581996894531],[106.899271269531,39.7446364570312],[106.904561796875,39.7088430000001],[106.901605253906,39.688843],[106.903160429688,39.6783315253907],[106.888023710938,39.6666481757813],[106.929227324219,39.6110732246094],[106.94298953125,39.5394863105469],[106.947345,39.503843],[106.912767363281,39.5127162910156],[106.903260527344,39.5497585273438],[106.873023710938,39.5579274726562],[106.863260527344,39.5079274726563],[106.747345,39.503843],[106.763568144531,39.5283913398438],[106.759456816406,39.5467287421875],[106.773260527344,39.5679274726563],[106.78447390625,39.597895734375],[106.771429472656,39.6179274726563],[106.767345,39.633843],[106.761512480469,39.6490151191406],[106.788016386719,39.6852968574219],[106.766239042969,39.7027370429688],[106.745479765625,39.7286586738282],[106.764039335938,39.7602297187501],[106.755755644531,39.8268141914063],[106.747345,39.863843],[106.76298953125,39.8594863105469],[106.773482695313,39.8097524238282],[106.84298953125,39.8381996894531],[106.931322050781,39.9181996894531],[106.963765898438,39.9092726875],[106.95298953125,39.8581996894532],[106.92170046875,39.8494863105469],[106.91298953125,39.8381996894531]]]]}},{"type":"Feature","properties":{"name":"海南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.042535429688,39.2390334296876],[107.056195097656,39.2242897773438],[107.1351965625,39.2786525703125],[107.132535429688,39.2686525703125],[107.121771269531,39.2483107734375],[107.122918730469,39.2193752265625],[107.112154570313,39.1990334296876],[107.102535429688,39.1586525703125],[107.092154570313,39.1190334296876],[107.075360136719,39.0485256171875],[107.052877226563,39.0494167304688],[107.031812773438,39.0382692695313],[107.007345,39.0392397285157],[106.992215605469,39.0386391425781],[106.967345,39.043843],[106.95162234375,39.0620925117188],[106.867345,39.0938430000001],[106.84170046875,39.1281996894532],[106.816668730469,39.1968068671875],[106.789173613281,39.2423879218751],[106.79677859375,39.293843],[106.790867949219,39.333843],[106.793084746094,39.348843],[106.791131621094,39.3620619941406],[106.75170046875,39.3781996894531],[106.747345,39.383843],[106.734918242188,39.408843],[106.747345,39.4338430000001],[106.755941191406,39.4688430000001],[106.747345,39.503843],[106.863260527344,39.5079274726563],[106.873023710938,39.5579274726562],[106.903260527344,39.5497585273438],[106.912767363281,39.5127162910156],[106.947345,39.503843],[106.962154570313,39.4330593085938],[106.952535429688,39.3386525703125],[106.932576933594,39.3009316230469],[107.042535429688,39.2390334296876]]]]}},{"type":"Feature","properties":{"name":"乌达区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.755941191406,39.4688430000001],[106.747345,39.4338430000001],[106.645826445313,39.4659841132813],[106.613038359375,39.4963649726562],[106.611011992188,39.5474831367188],[106.6570325,39.5827736640625],[106.767345,39.633843],[106.771429472656,39.6179274726563],[106.78447390625,39.597895734375],[106.773260527344,39.5679274726563],[106.759456816406,39.5467287421875],[106.763568144531,39.5283913398438],[106.747345,39.503843],[106.755941191406,39.4688430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"林西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.567345,43.273843],[118.577345,43.273843],[118.577345,43.263843],[118.567345,43.263843],[118.567345,43.273843]]],[[[118.567345,43.273843],[118.50197390625,43.2692153144531],[118.437345,43.263843],[118.401793242188,43.2682900214844],[118.312515898438,43.2894863105469],[118.297345,43.2875991035157],[118.282345,43.2894643378906],[118.239947539063,43.2841921210938],[118.212896757813,43.2682900214844],[118.144449492188,43.242983625],[118.07951296875,43.2510610175782],[118.084381132813,43.2902016425781],[118.061793242188,43.3082900214844],[118.04978640625,43.3232802558594],[118.053023710938,43.3492958808594],[118.041793242188,43.3582900214844],[118.02400515625,43.3805025458985],[117.999249296875,43.4003237128907],[117.972345,43.3969771552734],[117.946729765625,43.4001638007813],[117.920543242188,43.4432747626954],[117.898272734375,43.4611074042969],[117.903721953125,43.5049275947266],[117.944136992188,43.5372896552735],[117.931676054688,43.5584828925781],[117.933013945313,43.5692153144532],[117.897135039063,43.6256093574219],[117.881632109375,43.6624025703125],[117.853057890625,43.6852834296876],[117.842896757813,43.7093959785157],[117.821793242188,43.7382900214844],[117.805269804688,43.7774959541016],[117.78068484375,43.7971834541016],[117.762896757813,43.8393959785156],[117.71849734375,43.894911725586],[117.701666289063,43.9083901191406],[117.703013945313,43.9192031074219],[117.691793242188,43.9382900214844],[117.667642851563,43.995595319336],[117.642530546875,44.0157064033203],[117.637345,44.033843],[117.668365507813,44.0216475654297],[117.717345,44.0144100166016],[117.757345,44.0203206611329],[117.781832304688,44.0167018867188],[117.808990507813,44.0518837714844],[117.85298953125,44.0781990791016],[117.862320585938,44.0902907539063],[117.911534453125,44.1267757392578],[117.999991484375,44.1062783027344],[118.022345,44.1095821357422],[118.056832304688,44.1044857001953],[118.08170046875,44.1194869208985],[118.111910429688,44.1318508125],[118.12466921875,44.2069698310548],[118.142345,44.2095821357423],[118.163883085938,44.2063991523438],[118.200826445313,44.254267194336],[118.24170046875,44.2381990791016],[118.257345,44.2338430000001],[118.29244265625,44.2189430976563],[118.31224734375,44.1687429023438],[118.330845976563,44.1508724189453],[118.352642851563,44.108554303711],[118.352222929688,44.0879775214844],[118.38244265625,44.0589430976562],[118.401510039063,44.0390993476563],[118.431514921875,44.0245430732422],[118.432642851563,43.9693593574219],[118.382345,43.9683327460937],[118.32312625,43.9695412421875],[118.265030546875,43.9301601386719],[118.249263945313,43.9787429023437],[118.212535429688,43.9575936103516],[118.23244265625,43.9189430976563],[118.25224734375,43.8687429023438],[118.267545195313,43.8540431953125],[118.286646757813,43.7562044501953],[118.33224734375,43.7087429023438],[118.34244265625,43.6989430976563],[118.35224734375,43.6787429023438],[118.36244265625,43.6589430976563],[118.381246367188,43.6201918769532],[118.397144804688,43.6036428046875],[118.413531523438,43.5879006171876],[118.362345,43.588944928711],[118.337345,43.5884346748047],[118.284400664063,43.5895149970703],[118.216666289063,43.5627980781251],[118.192877226563,43.5399428535156],[118.192042265625,43.4989394355469],[118.2122278125,43.4795430732422],[118.212447539063,43.4688430000001],[118.21162234375,43.4285219550781],[118.241871367188,43.4291396308594],[118.272345,43.4187087226563],[118.314381132813,43.4330971503906],[118.352144804688,43.4136428046875],[118.41244265625,43.3989430976563],[118.43224734375,43.3887429023438],[118.46244265625,43.3789430976563],[118.477144804688,43.3636428046876],[118.492447539063,43.3489394355469],[118.49216921875,43.3353475166016],[118.53244265625,43.3089430976563],[118.54224734375,43.2987429023438],[118.56244265625,43.2889430976563],[118.567345,43.273843]]]]}},{"type":"Feature","properties":{"name":"阿鲁科尔沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.66271609375,45.0792147041016],[119.6766028125,45.0480989814454],[119.6980871875,45.0095870185547],[119.718253203125,44.9643947578126],[119.756363554688,44.9201595283203],[119.836964140625,44.8958931708984],[119.8534778125,44.8767238593751],[119.90607546875,44.8532546210937],[119.97271609375,44.7992147041016],[119.98197390625,44.7884712958985],[120.034254179688,44.758329694336],[120.07271609375,44.7092147041016],[120.09689578125,44.6550240302735],[120.14197390625,44.6384712958985],[120.173150664063,44.6290840888672],[120.148590117188,44.594442975586],[120.187213164063,44.5772078681641],[120.21197390625,44.5484712958985],[120.23271609375,44.5392147041016],[120.24197390625,44.5284712958985],[120.27271609375,44.5192147041016],[120.28197390625,44.5084712958985],[120.2927746875,44.4991664863282],[120.291920195313,44.4885646796875],[120.31431765625,44.4484188056641],[120.31125125,44.4102529121094],[120.34197390625,44.3884712958984],[120.36271609375,44.3792147041016],[120.380225859375,44.3399764228516],[120.401715117188,44.3214638496094],[120.419854765625,44.2808132148438],[120.44197390625,44.2684712958985],[120.47271609375,44.2592147041016],[120.492066679688,44.2484188056641],[120.546329375,44.2527791572266],[120.57197390625,44.2384712958984],[120.64271609375,44.2292147041016],[120.65197390625,44.1884712958985],[120.68271609375,44.1792147041016],[120.692965117188,44.1341146064454],[120.737828398438,44.1060127998047],[120.72271609375,44.0884712958985],[120.68271609375,44.054009015625],[120.69197390625,44.0284712958985],[120.761549101563,43.9443599677734],[120.77197390625,43.8984712958985],[120.78271609375,43.8892147041016],[120.787345,43.843843],[120.777105742188,43.8172090888672],[120.838414335938,43.7799727607422],[120.871793242188,43.7382900214844],[120.933096953125,43.6916329169922],[120.956236601563,43.6627370429688],[120.975889921875,43.6469997382813],[120.922896757813,43.6082900214844],[120.854869414063,43.5888387275391],[120.80095828125,43.5571498847656],[120.777203398438,43.5601045966797],[120.744068632813,43.5461415839844],[120.67396609375,43.4968654609375],[120.671724882813,43.4788430000001],[120.673980742188,43.460683209961],[120.649058867188,43.4460335517578],[120.59529421875,43.4253664375001],[120.546954375,43.4313796210938],[120.512896757813,43.4182900214844],[120.461749296875,43.4036653876954],[120.421793242188,43.3793959785156],[120.417345,43.373843],[120.342154570313,43.3685286689454],[120.312628203125,43.3791243720704],[120.25771609375,43.3885616279297],[120.077345,43.373843],[120.072896757813,43.3893959785157],[120.0062121875,43.4299013496094],[120.022896757813,43.4582900214844],[120.031793242188,43.4793959785157],[120.051109648438,43.5122603583985],[119.986803007813,43.5513216376953],[119.944639921875,43.5351161933594],[119.930094023438,43.6023470283203],[119.807574492188,43.5825954414063],[119.713858671875,43.5942525458985],[119.667345,43.6238430000001],[119.67197390625,43.6292147041016],[119.70271609375,43.6384712958985],[119.72197390625,43.6626247382813],[119.690909453125,43.7182991767579],[119.748951445313,43.7683052802735],[119.78271609375,43.7784712958984],[119.7932825,43.8021535468751],[119.7919153125,43.8191664863282],[119.803526640625,43.8291664863282],[119.801851835938,43.8500081611328],[119.782105742188,43.8484218574219],[119.750142851563,43.8601595283204],[119.7314075,43.902153546875],[119.734303007813,43.9382210517578],[119.70197390625,43.9584712958985],[119.651773710938,44.0167372871094],[119.652769804688,44.0291390205079],[119.611304960938,44.0876235175782],[119.632764921875,44.1385903144531],[119.630709257813,44.1642092109375],[119.581632109375,44.1949495673829],[119.5827746875,44.2091664863282],[119.57197390625,44.2184712958985],[119.55271609375,44.2692147041016],[119.541920195313,44.2885646796875],[119.542769804688,44.2991390205079],[119.520474882813,44.3305825019532],[119.523077421875,44.3629335761719],[119.55271609375,44.3884712958984],[119.56197390625,44.4292147041016],[119.582979765625,44.4385884833985],[119.561925078125,44.4885903144531],[119.562769804688,44.4991213203126],[119.55197390625,44.5184712958985],[119.54271609375,44.5492147041016],[119.51197390625,44.5684712958985],[119.50271609375,44.5792147041016],[119.4919153125,44.5885195136719],[119.492745390625,44.598843],[119.491539335938,44.6138430000001],[119.493424101563,44.6372859931641],[119.479127226563,44.6762215400391],[119.41197390625,44.6884712958984],[119.401715117188,44.7114638496094],[119.380225859375,44.7299764228516],[119.357569609375,44.7807466865235],[119.2909778125,44.7625209785156],[119.251016875,44.7478462958985],[119.21271609375,44.7692147041016],[119.167345,44.7738430000001],[119.141920195313,44.8085445380859],[119.1427746875,44.8191829658203],[119.060738554688,44.8647048164063],[119.072764921875,44.9086397529297],[119.071060820313,44.9298232246094],[119.105699492188,44.9171034980469],[119.163468046875,44.9217458320313],[119.212652617188,44.9082845283204],[119.22197390625,44.9361598945313],[119.17197390625,44.9584712958984],[119.16271609375,44.9792147041016],[119.1519153125,44.9885195136719],[119.154127226563,45.0160408759766],[119.202423125,44.9983052802735],[119.23197390625,45.0150844550781],[119.2019153125,45.0284969306641],[119.202745390625,45.0388430000001],[119.201851835938,45.0500081611329],[119.182037382813,45.0484163642578],[119.14271609375,45.0820565009766],[119.189659453125,45.1482619453125],[119.267940703125,45.1268373847657],[119.29197390625,45.0884712958985],[119.330079375,45.0769985175781],[119.370035429688,45.0992916083984],[119.351925078125,45.1486043525391],[119.353204375,45.1645351386719],[119.296612578125,45.1897872138672],[119.327345,45.243843],[119.332779570313,45.2501485419922],[119.480699492188,45.2231661201173],[119.51123171875,45.1877272773438],[119.57271609375,45.1492147041016],[119.60197390625,45.1284712958985],[119.639742460938,45.1116182685547],[119.66271609375,45.0792147041016]]]]}},{"type":"Feature","properties":{"name":"敖汉旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.41627078125,42.9781447578125],[120.401265898438,42.9372866035157],[120.403150664063,42.913843],[120.400416289063,42.8798146796875],[120.4127746875,42.8691664863282],[120.411495390625,42.8532509589844],[120.44271609375,42.8092153144532],[120.454361601563,42.7579616523438],[120.49271609375,42.6892153144532],[120.511495390625,42.6471291328125],[120.54197390625,42.5984706855469],[120.55271609375,42.5892153144531],[120.563375273438,42.5423085761719],[120.59271609375,42.5292153144532],[120.60281375,42.4956777167969],[120.67978640625,42.4320095039063],[120.72197390625,42.4084706855469],[120.7636340625,42.3898818183594],[120.7619153125,42.3684963203125],[120.793204375,42.3545351386719],[120.791632109375,42.3349489570313],[120.853345976563,42.296294171875],[120.8513684375,42.2716640449219],[120.877345,42.263843],[120.883604765625,42.2471852851563],[120.8490246875,42.2507106757813],[120.791881132813,42.2293056464844],[120.781173125,42.2164138007813],[120.733516875,42.2212721992188],[120.722808867188,42.2083803535157],[120.701881132813,42.1993056464844],[120.665479765625,42.1731069160156],[120.61255984375,42.1583119941407],[120.585045195313,42.1611159492188],[120.562808867188,42.1483803535156],[120.482882109375,42.118442609375],[120.4632434375,42.1021279121094],[120.493541289063,42.0889882636719],[120.481793242188,42.079233625],[120.482896757813,42.0684194160156],[120.453785429688,42.0557949042969],[120.4421496875,42.0161415839844],[120.421881132813,41.9993056464845],[120.410391875,41.985473859375],[120.365513945313,41.9900490546876],[120.316422148438,41.9597682929688],[120.302769804688,41.9282900214844],[120.275338164063,41.9310854316407],[120.267345,41.903843],[120.254288359375,41.8977602363281],[120.287345,41.893843],[120.282701445313,41.8784133125001],[120.239859648438,41.8818544746094],[120.188658476563,41.8377443671875],[120.119088164063,41.7536391425782],[120.136300078125,41.7227883125001],[120.091363554688,41.6977162910157],[120.072345,41.6992446113281],[120.055655546875,41.6979042792969],[120.03197390625,41.7084706855469],[120.027345,41.713843],[120.021871367188,41.7389382148438],[120.032764921875,41.7686049628906],[120.031944609375,41.778843],[120.035206328125,41.8194753242188],[120.016651640625,41.8179836250001],[120.00271609375,41.8492153144532],[119.99197390625,41.8684706855469],[119.98271609375,41.8992153144531],[119.95115359375,41.9189858222656],[119.955025664063,41.9672243476563],[119.93123171875,41.9877272773438],[119.91271609375,42.0092153144532],[119.90197390625,42.018470685547],[119.869542265625,42.0747170234375],[119.84197390625,42.0984706855469],[119.82271609375,42.1226247382813],[119.853502226563,42.1778041816406],[119.833233671875,42.2141371894531],[119.762345,42.2084413886719],[119.7220715625,42.2116774726563],[119.672623320313,42.2392665839844],[119.662345,42.2384413886719],[119.652345,42.2392446113281],[119.642066679688,42.2384194160157],[119.6173840625,42.2521901679688],[119.60271609375,42.2692153144532],[119.58197390625,42.2784706855469],[119.562623320313,42.2892665839844],[119.552095976563,42.2884218574219],[119.53271609375,42.2961598945313],[119.571500273438,42.3508596015626],[119.497345,42.383843],[119.497345,42.393843],[119.541939726563,42.4295156074219],[119.56095828125,42.4271498847657],[119.572877226563,42.495639875],[119.602896757813,42.5082900214844],[119.638756132813,42.5344826484375],[119.647345,42.583843],[119.66271609375,42.588470685547],[119.69197390625,42.6092153144532],[119.75197390625,42.6467958808594],[119.74271609375,42.6692153144531],[119.704947539063,42.6860683417969],[119.674527617188,42.7289687324219],[119.695460234375,42.7532643867188],[119.742066679688,42.7792665839844],[119.762525664063,42.7776235175782],[119.774757109375,42.8314614082031],[119.82197390625,42.8276674628906],[119.81271609375,42.8492153144531],[119.801402617188,42.8589614082031],[119.833980742188,42.8734963203125],[119.8319153125,42.8991896796875],[119.8527746875,42.9084963203125],[119.849830351563,42.9451222968751],[119.884537382813,42.9854030585937],[119.985069609375,42.993481671875],[120.01197390625,42.9784706855469],[120.05271609375,42.9692153144531],[120.091304960938,42.9476845527344],[120.112266875,42.959380109375],[120.142354765625,42.9483315253906],[120.260909453125,42.959223859375],[120.31197390625,42.9992153144532],[120.34271609375,43.008470685547],[120.35197390625,43.0192153144532],[120.357345,43.023843],[120.376846953125,42.9900136542969],[120.41627078125,42.9781447578125]]]]}},{"type":"Feature","properties":{"name":"巴林右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.632896757813,44.4593959785157],[118.644561796875,44.4448317695313],[118.749366484375,44.4645967841797],[118.777345,44.453843],[118.78224734375,44.4187429023438],[118.792447539063,44.398935163086],[118.7922278125,44.3881429267578],[118.77224734375,44.3689430976563],[118.757545195313,44.3536428046876],[118.739615507813,44.3364186835938],[118.75283328125,44.297806623047],[118.752159453125,44.2646688056641],[118.822647734375,44.2087807441406],[118.822232695313,44.1883620429688],[118.84244265625,44.1689430976563],[118.85279421875,44.1159224677734],[118.852037382813,44.078783185547],[118.90244265625,44.0689430976563],[118.91224734375,44.0187429023437],[118.922642851563,43.988368756836],[118.9218371875,43.9489040351562],[118.97244265625,43.9289430976563],[118.991763945313,43.908837506836],[119.06033328125,43.8954506660157],[119.082047148438,43.8285427070313],[119.102847929688,43.808554303711],[119.1020325,43.768554303711],[119.12244265625,43.7489430976563],[119.132432890625,43.72835471875],[119.17244265625,43.7089430976563],[119.182633085938,43.6983388496094],[119.212432890625,43.6989467597657],[119.24224734375,43.6887429023438],[119.295245390625,43.6758223701172],[119.352735625,43.6991414619141],[119.372345,43.6987410712891],[119.387345,43.6990468574219],[119.41224734375,43.6985390449219],[119.422642851563,43.709355084961],[119.422037382813,43.7388430000001],[119.422681914063,43.7702510810547],[119.44302859375,43.7887429023437],[119.46224734375,43.7687429023438],[119.489566679688,43.7554878974609],[119.533267851563,43.6654122138672],[119.65302859375,43.6089430976563],[119.667345,43.6238430000001],[119.713858671875,43.5942525458985],[119.807574492188,43.5825954414063],[119.930094023438,43.6023470283203],[119.944639921875,43.5351161933594],[119.986803007813,43.5513216376953],[120.051109648438,43.5122603583985],[120.031793242188,43.4793959785157],[120.022896757813,43.4582900214844],[120.0062121875,43.4299013496094],[120.072896757813,43.3893959785157],[120.077345,43.373843],[119.98197390625,43.3492147041016],[119.91255984375,43.3284242988282],[119.902105742188,43.3292641425782],[119.87271609375,43.3184706855469],[119.782135039063,43.3066188789063],[119.708219023438,43.2794753242188],[119.65197390625,43.2692153144531],[119.602345,43.2556325507813],[119.5480090625,43.27050315625],[119.437345,43.2616115546875],[119.332345,43.2700478339844],[119.304039335938,43.2677736640625],[119.191573515625,43.2241481757813],[119.131095,43.2059389472657],[118.987135039063,43.2320400214845],[118.86005984375,43.2218300605469],[118.81271609375,43.2392153144531],[118.75302859375,43.250102765625],[118.635914335938,43.2406923652344],[118.60271609375,43.2592153144532],[118.577345,43.263843],[118.577345,43.273843],[118.567345,43.273843],[118.56244265625,43.2889430976563],[118.54224734375,43.2987429023438],[118.53244265625,43.3089430976563],[118.49216921875,43.3353475166016],[118.492447539063,43.3489394355469],[118.477144804688,43.3636428046876],[118.46244265625,43.3789430976563],[118.43224734375,43.3887429023438],[118.41244265625,43.3989430976563],[118.352144804688,43.4136428046875],[118.314381132813,43.4330971503906],[118.272345,43.4187087226563],[118.241871367188,43.4291396308594],[118.21162234375,43.4285219550781],[118.212447539063,43.4688430000001],[118.2122278125,43.4795430732422],[118.192042265625,43.4989394355469],[118.192877226563,43.5399428535156],[118.216666289063,43.5627980781251],[118.284400664063,43.5895149970703],[118.337345,43.5884346748047],[118.362345,43.588944928711],[118.413531523438,43.5879006171876],[118.397144804688,43.6036428046875],[118.381246367188,43.6201918769532],[118.36244265625,43.6589430976563],[118.35224734375,43.6787429023438],[118.34244265625,43.6989430976563],[118.33224734375,43.7087429023438],[118.286646757813,43.7562044501953],[118.267545195313,43.8540431953125],[118.25224734375,43.8687429023438],[118.23244265625,43.9189430976563],[118.212535429688,43.9575936103516],[118.249263945313,43.9787429023437],[118.265030546875,43.9301601386719],[118.32312625,43.9695412421875],[118.382345,43.9683327460937],[118.432642851563,43.9693593574219],[118.431514921875,44.0245430732422],[118.401510039063,44.0390993476563],[118.38244265625,44.0589430976562],[118.352222929688,44.0879775214844],[118.352642851563,44.108554303711],[118.330845976563,44.1508724189453],[118.31224734375,44.1687429023438],[118.29244265625,44.2189430976563],[118.257345,44.2338430000001],[118.240636015625,44.2601064277344],[118.243013945313,44.2792354560547],[118.216021757813,44.3161904121094],[118.252345,44.3207088447266],[118.282345,44.3169771552735],[118.302345,44.3194649482422],[118.401397734375,44.3070894599609],[118.441793242188,44.3393959785157],[118.4737121875,44.35284690625],[118.469498320313,44.3867360664063],[118.55466921875,44.4051638007813],[118.55166140625,44.429341046875],[118.572896757813,44.4382900214844],[118.61396609375,44.4682900214844],[118.632896757813,44.4593959785157]]]]}},{"type":"Feature","properties":{"name":"巴林左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.357569609375,44.7807466865235],[119.380225859375,44.7299764228516],[119.401715117188,44.7114638496094],[119.41197390625,44.6884712958984],[119.479127226563,44.6762215400391],[119.493424101563,44.6372859931641],[119.491539335938,44.6138430000001],[119.492745390625,44.598843],[119.4919153125,44.5885195136719],[119.50271609375,44.5792147041016],[119.51197390625,44.5684712958985],[119.54271609375,44.5492147041016],[119.55197390625,44.5184712958985],[119.562769804688,44.4991213203126],[119.561925078125,44.4885903144531],[119.582979765625,44.4385884833985],[119.56197390625,44.4292147041016],[119.55271609375,44.3884712958984],[119.523077421875,44.3629335761719],[119.520474882813,44.3305825019532],[119.542769804688,44.2991390205079],[119.541920195313,44.2885646796875],[119.55271609375,44.2692147041016],[119.57197390625,44.2184712958985],[119.5827746875,44.2091664863282],[119.581632109375,44.1949495673829],[119.630709257813,44.1642092109375],[119.632764921875,44.1385903144531],[119.611304960938,44.0876235175782],[119.652769804688,44.0291390205079],[119.651773710938,44.0167372871094],[119.70197390625,43.9584712958985],[119.734303007813,43.9382210517578],[119.7314075,43.902153546875],[119.750142851563,43.8601595283204],[119.782105742188,43.8484218574219],[119.801851835938,43.8500081611328],[119.803526640625,43.8291664863282],[119.7919153125,43.8191664863282],[119.7932825,43.8021535468751],[119.78271609375,43.7784712958984],[119.748951445313,43.7683052802735],[119.690909453125,43.7182991767579],[119.72197390625,43.6626247382813],[119.70271609375,43.6384712958985],[119.67197390625,43.6292147041016],[119.667345,43.6238430000001],[119.65302859375,43.6089430976563],[119.533267851563,43.6654122138672],[119.489566679688,43.7554878974609],[119.46224734375,43.7687429023438],[119.44302859375,43.7887429023437],[119.422681914063,43.7702510810547],[119.422037382813,43.7388430000001],[119.422642851563,43.709355084961],[119.41224734375,43.6985390449219],[119.387345,43.6990468574219],[119.372345,43.6987410712891],[119.352735625,43.6991414619141],[119.295245390625,43.6758223701172],[119.24224734375,43.6887429023438],[119.212432890625,43.6989467597657],[119.182633085938,43.6983388496094],[119.17244265625,43.7089430976563],[119.132432890625,43.72835471875],[119.12244265625,43.7489430976563],[119.1020325,43.768554303711],[119.102847929688,43.808554303711],[119.082047148438,43.8285427070313],[119.06033328125,43.8954506660157],[118.991763945313,43.908837506836],[118.97244265625,43.9289430976563],[118.9218371875,43.9489040351562],[118.922642851563,43.988368756836],[118.91224734375,44.0187429023437],[118.90244265625,44.0689430976563],[118.852037382813,44.078783185547],[118.85279421875,44.1159224677734],[118.84244265625,44.1689430976563],[118.822232695313,44.1883620429688],[118.822647734375,44.2087807441406],[118.752159453125,44.2646688056641],[118.75283328125,44.297806623047],[118.739615507813,44.3364186835938],[118.757545195313,44.3536428046876],[118.77224734375,44.3689430976563],[118.7922278125,44.3881429267578],[118.792447539063,44.398935163086],[118.78224734375,44.4187429023438],[118.777345,44.453843],[118.806646757813,44.4866384101563],[118.834859648438,44.4995870185548],[118.852569609375,44.4985317207032],[118.872061796875,44.5091243720703],[118.959171171875,44.5491030097657],[118.995250273438,44.6478450751953],[118.972061796875,44.6685616279297],[118.957906523438,44.6844057441406],[118.923468046875,44.7151784492188],[118.958609648438,44.7313075996095],[118.982061796875,44.7185616279297],[119.028673125,44.7077175117188],[119.082061796875,44.7191243720704],[119.132628203125,44.7285616279297],[119.152061796875,44.7347927070313],[119.122061796875,44.7485616279298],[119.112628203125,44.7597200751953],[119.1620715625,44.7567732978516],[119.167345,44.7738430000001],[119.21271609375,44.7692147041016],[119.251016875,44.7478462958985],[119.2909778125,44.7625209785156],[119.357569609375,44.7807466865235]]]]}},{"type":"Feature","properties":{"name":"红山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.8859778125,42.3461745429688],[118.93478640625,42.32698753125],[118.962345,42.331059796875],[118.982345,42.3281044746094],[118.992486601563,42.3296034980469],[119.069459257813,42.3117665839844],[119.151710234375,42.3239211250001],[119.177345,42.313843],[119.153936796875,42.2885817695313],[119.133516875,42.2893910957031],[119.092535429688,42.2786525703125],[119.052154570313,42.2690334296875],[119.042535429688,42.2586525703126],[119.022862578125,42.2404262519531],[119.083336210938,42.2288808417969],[119.082139921875,42.1986794257813],[119.099771757813,42.1653578925782],[119.0717590625,42.1394008613281],[119.084932890625,42.1145034003907],[119.050850859375,42.0984181953126],[119.037345,42.083843],[119.01170046875,42.0794863105469],[118.97047,42.0461623359376],[118.933863554688,42.0294863105469],[118.83986453125,42.06644065625],[118.85298953125,42.0881996894531],[118.86373171875,42.1144509101563],[118.860128203125,42.1388430000001],[118.865133085938,42.1727053046875],[118.917100859375,42.1939760566407],[118.887345,42.233843],[118.950699492188,42.281528546875],[118.91298953125,42.3094863105469],[118.87298953125,42.3258583808594],[118.8859778125,42.3461745429688]]]]}},{"type":"Feature","properties":{"name":"喀喇沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.86373171875,42.1144509101563],[118.85298953125,42.0881996894531],[118.83986453125,42.06644065625],[118.933863554688,42.0294863105469],[118.97047,42.0461623359376],[119.01170046875,42.0794863105469],[119.037345,42.083843],[119.041793242188,42.0782900214844],[119.052896757813,42.0693959785157],[119.069752226563,42.0293959785157],[119.102896757813,42.0382900214844],[119.132530546875,42.0557070136719],[119.161632109375,42.0324025703125],[119.171793242188,42.0082900214844],[119.188292265625,41.9802150703126],[119.092896757813,41.9682839179688],[119.11607546875,41.9314882636719],[119.142706328125,41.9281764960938],[119.161983671875,41.9395095039063],[119.20845828125,41.9337282539063],[119.222896757813,41.9582900214844],[119.23634890625,41.9902101875001],[119.280079375,41.984770734375],[119.291890898438,41.9995217109375],[119.31150515625,41.9970815253907],[119.314210234375,42.018843],[119.2881653125,42.0298183417969],[119.342896757813,42.0682900214844],[119.351793242188,42.0993959785157],[119.357345,42.1038430000001],[119.373629179688,42.0898146796876],[119.371944609375,42.0688430000001],[119.374815703125,42.0330971503907],[119.321187773438,41.9682631660156],[119.322745390625,41.9488430000001],[119.321944609375,41.938843],[119.323951445313,41.9138430000001],[119.321539335938,41.883843],[119.323424101563,41.8603993964844],[119.317345,41.843843],[119.209776640625,41.8497316718751],[119.152345,41.8474562812501],[119.102345,41.8494374824219],[119.072345,41.8482485175782],[119.040631132813,41.8495058417969],[119.022535429688,41.8690334296876],[118.992764921875,41.8830825019532],[118.900616484375,41.8479201484375],[118.862345,41.8494374824219],[118.827345,41.8480507636719],[118.802345,41.8490407539063],[118.792345,41.8486452460938],[118.7770325,41.8492519355469],[118.70250125,41.8186391425781],[118.67216921875,41.8198403144532],[118.651788359375,41.7978481269532],[118.652550078125,41.7786659980469],[118.642154570313,41.7690334296875],[118.614010039063,41.7254518867188],[118.562154570313,41.7090334296875],[118.499654570313,41.6871279121094],[118.481788359375,41.6678481269531],[118.4829309375,41.6390200019532],[118.46248171875,41.62007346875],[118.448414335938,41.575630109375],[118.352877226563,41.5794167304688],[118.332535429688,41.5686525703125],[118.317345,41.5638430000001],[118.281846953125,41.5580117011719],[118.27298953125,41.5694863105469],[118.23170046875,41.5781996894532],[118.2085559375,41.6081874824219],[118.213160429688,41.6393544746094],[118.174761992188,41.6689931464844],[118.157345,41.673843],[118.15025515625,41.7127223945313],[118.131163359375,41.7291664863282],[118.133287382813,41.7555605292969],[118.153844023438,41.8115346503906],[118.197345,41.8080397773437],[118.227691679688,41.8104775214844],[118.247345,41.7664321113281],[118.287642851563,41.7696706367188],[118.33281375,41.8480165839844],[118.331944609375,41.858843],[118.3327746875,41.8691664863281],[118.311685820313,41.8873329902344],[118.25611453125,41.9221388984375],[118.29271609375,41.9384706855469],[118.303389921875,41.9508571601562],[118.301944609375,41.968843],[118.302745390625,41.978843],[118.301451445313,41.9949587226563],[118.241099882813,42.0086696601563],[118.27271609375,42.0284706855469],[118.29197390625,42.0512404609375],[118.27197390625,42.0684706855469],[118.26271609375,42.0792153144532],[118.257345,42.083843],[118.270728789063,42.1005568671875],[118.35982546875,42.1116396308594],[118.391954375,42.0881728339844],[118.407345,42.0900868964844],[118.466436796875,42.0827370429688],[118.516763945313,42.1123171210938],[118.543248320313,42.0911074042969],[118.541475859375,42.0768691230469],[118.57447390625,42.0809743476563],[118.570548125,42.0493959785156],[118.587603789063,42.0616786933594],[118.601793242188,42.0793959785156],[118.633453398438,42.0927370429688],[118.674210234375,42.1166957832031],[118.75447390625,42.1067116523438],[118.751441679688,42.1311074042969],[118.778453398438,42.1527370429687],[118.791793242188,42.1693959785157],[118.805269804688,42.18019065625],[118.82580203125,42.2289162421876],[118.887345,42.233843],[118.917100859375,42.1939760566407],[118.865133085938,42.1727053046875],[118.860128203125,42.1388430000001],[118.86373171875,42.1144509101563]]]]}},{"type":"Feature","properties":{"name":"克什克腾旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.903721953125,43.5049275947266],[117.898272734375,43.4611074042969],[117.920543242188,43.4432747626954],[117.946729765625,43.4001638007813],[117.972345,43.3969771552734],[117.999249296875,43.4003237128907],[118.02400515625,43.3805025458985],[118.041793242188,43.3582900214844],[118.053023710938,43.3492958808594],[118.04978640625,43.3232802558594],[118.061793242188,43.3082900214844],[118.084381132813,43.2902016425781],[118.07951296875,43.2510610175782],[118.144449492188,43.242983625],[118.212896757813,43.2682900214844],[118.239947539063,43.2841921210938],[118.282345,43.2894643378906],[118.297345,43.2875991035157],[118.312515898438,43.2894863105469],[118.401793242188,43.2682900214844],[118.437345,43.263843],[118.423101835938,43.2479042792969],[118.365719023438,43.2513246894532],[118.332828398438,43.2219362617188],[118.331749296875,43.2038430000001],[118.332642851563,43.188843],[118.331539335938,43.1703395820313],[118.342061796875,43.1585622382813],[118.362061796875,43.1406923652344],[118.352628203125,43.0785622382813],[118.312984648438,43.0056093574219],[118.36123171875,42.9624990058594],[118.365557890625,42.8899282050782],[118.33310671875,42.8879946113282],[118.298077421875,42.9070314765626],[118.232061796875,42.8591237617188],[118.192584257813,42.8285305],[118.177769804688,42.8294142890625],[118.112061796875,42.8091237617188],[118.082628203125,42.7885622382813],[118.013902617188,42.7757350898437],[117.966319609375,42.7454701972656],[117.886783476563,42.6744057441407],[117.872628203125,42.6585622382812],[117.842061796875,42.6491237617188],[117.837345,42.643843],[117.813902617188,42.6378273750001],[117.797345,42.613843],[117.771793242188,42.6093959785156],[117.73611453125,42.5956825996094],[117.662935820313,42.5793959785156],[117.592896757813,42.5993959785157],[117.538912382813,42.6082900214844],[117.522725859375,42.5880776191407],[117.464888945313,42.6012160468751],[117.43138796875,42.5815248847657],[117.433472929688,42.5647670722657],[117.38361453125,42.52483909375],[117.402896757813,42.5093959785157],[117.411793242188,42.4710927558594],[117.332935820313,42.4593959785156],[117.26250125,42.4795095039063],[117.174996367188,42.4654042792969],[117.142345,42.4694643378907],[117.132125273438,42.4681935859376],[117.092154570313,42.4796083808594],[117.057628203125,42.4593129707032],[117.009381132813,42.4488747382813],[116.992896757813,42.4282900214844],[116.961793242188,42.4193959785156],[116.914893828125,42.4013686347657],[116.887345,42.383843],[116.891793242188,42.4093959785157],[116.90318484375,42.4390370917969],[116.871671171875,42.4784389472657],[116.877550078125,42.5256728339844],[116.859249296875,42.5403237128906],[116.842345,42.5382216621094],[116.828472929688,42.539946515625],[116.79732546875,42.5788417792969],[116.690094023438,42.5922536445312],[116.662799101563,42.5581642890626],[116.636612578125,42.561421125],[116.622393828125,42.6111586738282],[116.577345,42.5938430000001],[116.581793242188,42.6093959785156],[116.602896757813,42.6382900214844],[116.616236601563,42.6699489570313],[116.638453398438,42.7077370429688],[116.651793242188,42.7393959785157],[116.666090117188,42.7637221503907],[116.660479765625,42.808843],[116.667940703125,42.8688430000001],[116.660494414063,42.9287075019532],[116.577979765625,42.9788271308594],[116.504185820313,43.0099233222657],[116.492896757813,43.0493959785157],[116.487345,43.0538430000001],[116.433355742188,43.0765639472657],[116.412535429688,43.0990334296875],[116.392154570313,43.1086525703125],[116.371353789063,43.1408620429688],[116.351373320313,43.1593740058594],[116.354195585938,43.2305580878907],[116.400015898438,43.2521828437501],[116.426734648438,43.3208010078125],[116.589991484375,43.4079732490235],[116.61134890625,43.4976253486328],[116.68656375,43.5186525703126],[116.782345,43.4850807929688],[116.826080351563,43.5004091621094],[116.802139921875,43.5586861396485],[116.802545195313,43.568843],[116.80115359375,43.603843],[116.832535429688,43.6186525703125],[116.842154570313,43.6390334296875],[116.861553984375,43.6570101142579],[116.971866484375,43.6780702949219],[117.051265898438,43.7469374824219],[116.993565703125,43.7841994453125],[116.976978789063,43.8365901923829],[117.002550078125,43.8486592841797],[117.001553984375,43.873843],[117.002545195313,43.8988430000001],[117.001763945313,43.9184682441407],[117.022550078125,43.9486733222657],[117.021842070313,43.9665895820313],[116.967345,43.983843],[116.9558996875,44.0157454658203],[117.019034453125,44.0721553779297],[117.111768828125,44.1759450507813],[117.152628203125,44.1885616279297],[117.20943484375,44.2194307685547],[117.43455203125,44.2328487373047],[117.523863554688,44.2189315009766],[117.55912234375,44.1794704414063],[117.604263945313,44.1655306220703],[117.62322390625,44.1485903144531],[117.6214465625,44.1187526679688],[117.680362578125,44.1005593085938],[117.637345,44.033843],[117.642530546875,44.0157064033203],[117.667642851563,43.995595319336],[117.691793242188,43.9382900214844],[117.703013945313,43.9192031074219],[117.701666289063,43.9083901191406],[117.71849734375,43.894911725586],[117.762896757813,43.8393959785156],[117.78068484375,43.7971834541016],[117.805269804688,43.7774959541016],[117.821793242188,43.7382900214844],[117.842896757813,43.7093959785157],[117.853057890625,43.6852834296876],[117.881632109375,43.6624025703125],[117.897135039063,43.6256093574219],[117.933013945313,43.5692153144532],[117.931676054688,43.5584828925781],[117.944136992188,43.5372896552735],[117.903721953125,43.5049275947266]]]]}},{"type":"Feature","properties":{"name":"宁城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.040631132813,41.8495058417969],[119.072345,41.8482485175782],[119.102345,41.8494374824219],[119.152345,41.8474562812501],[119.209776640625,41.8497316718751],[119.317345,41.843843],[119.311226835938,41.8212721992188],[119.288062773438,41.783843],[119.309776640625,41.7487538886719],[119.31330203125,41.7282753730469],[119.296807890625,41.7160048652344],[119.304068632813,41.673843],[119.300299101563,41.6519533515625],[119.351612578125,41.6081081367188],[119.410069609375,41.5870607734375],[119.413326445313,41.568149640625],[119.353360625,41.5582094550781],[119.393287382813,41.509321515625],[119.390621367188,41.4938430000001],[119.393287382813,41.4783815742188],[119.371612578125,41.4495778632813],[119.367345,41.4138430000001],[119.306842070313,41.407671125],[119.323472929688,41.3778627753907],[119.321944609375,41.358843],[119.32392703125,41.3341640449219],[119.24197390625,41.3192153144532],[119.237345,41.313843],[119.222061796875,41.3091237617188],[119.191798125,41.2879811835938],[119.04650515625,41.2966408515625],[118.94611453125,41.3099904609375],[118.89250125,41.2985353828125],[118.879249296875,41.2993251777344],[118.831671171875,41.3525746894531],[118.833111601563,41.3766762519531],[118.777921171875,41.3568740058594],[118.752628203125,41.3285622382812],[118.734752226563,41.3191237617188],[118.662554960938,41.3491530585938],[118.622345,41.3467568183595],[118.567345,41.3500356269532],[118.542345,41.3485451484375],[118.52533328125,41.3495595527344],[118.417511015625,41.3352223945313],[118.402628203125,41.3185622382813],[118.397345,41.313843],[118.350562773438,41.3217897773438],[118.353082304688,41.3388430000001],[118.350128203125,41.358843],[118.353824492188,41.3838430000001],[118.350865507813,41.403843],[118.353765898438,41.4234499335938],[118.311051054688,41.4564174628907],[118.267345,41.463843],[118.275513945313,41.4756740546875],[118.321358671875,41.5073256660157],[118.300826445313,41.5388503242188],[118.317345,41.5638430000001],[118.332535429688,41.5686525703125],[118.352877226563,41.5794167304688],[118.448414335938,41.575630109375],[118.46248171875,41.62007346875],[118.4829309375,41.6390200019532],[118.481788359375,41.6678481269531],[118.499654570313,41.6871279121094],[118.562154570313,41.7090334296875],[118.614010039063,41.7254518867188],[118.642154570313,41.7690334296875],[118.652550078125,41.7786659980469],[118.651788359375,41.7978481269532],[118.67216921875,41.8198403144532],[118.70250125,41.8186391425781],[118.7770325,41.8492519355469],[118.792345,41.8486452460938],[118.802345,41.8490407539063],[118.827345,41.8480507636719],[118.862345,41.8494374824219],[118.900616484375,41.8479201484375],[118.992764921875,41.8830825019532],[119.022535429688,41.8690334296876],[119.040631132813,41.8495058417969]]]]}},{"type":"Feature","properties":{"name":"松山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,42.0638430000001],[118.150767851563,42.0516506171876],[118.159537382813,42.0604201484375],[118.153785429688,42.0805947089844],[118.092935820313,42.106235578125],[118.082896757813,42.1242665839844],[118.109517851563,42.1695546699219],[118.031793242188,42.1982900214844],[118.022896757813,42.2093959785157],[118.001793242188,42.2182900214844],[117.962896757813,42.2414345527344],[118.039097929688,42.2735439277344],[118.0615246875,42.301548078125],[118.016002226563,42.3207302070313],[118.002896757813,42.3442665839844],[118.023013945313,42.3784828925781],[118.020064726563,42.4021620917969],[117.95767703125,42.4284511542969],[117.926539335938,42.4673378730469],[117.871793242188,42.4982900214844],[117.835714140625,42.5576845527344],[117.790787382813,42.5849733710938],[117.797345,42.613843],[117.813902617188,42.6378273750001],[117.837345,42.643843],[117.846954375,42.63269065625],[117.990738554688,42.6192153144532],[118.076500273438,42.6553334785157],[118.188272734375,42.6723659492187],[118.231080351563,42.6420119453125],[118.348673125,42.6285317207032],[118.422471953125,42.6083339667969],[118.452345,42.6250014472657],[118.48197390625,42.6084706855469],[118.547432890625,42.5965309882813],[118.587369414063,42.611196515625],[118.60197390625,42.5784706855469],[118.650147734375,42.5675270820313],[118.689288359375,42.5819008613282],[118.744576445313,42.5774587226562],[118.766651640625,42.527983625],[118.787345,42.5296462226563],[118.807345,42.5280397773437],[118.822345,42.5292446113282],[118.840787382813,42.5277626777345],[118.872423125,42.539380109375],[118.893326445313,42.5277162910156],[118.920787382813,42.5299233222657],[118.97564578125,42.5097780585938],[118.944732695313,42.4959841132813],[118.93271609375,42.4665041328125],[119.091295195313,42.4820986152344],[119.1316028125,42.5045864082032],[119.16271609375,42.5184706855469],[119.188233671875,42.5480886054688],[119.241261015625,42.5640541816407],[119.252047148438,42.5282253242188],[119.291168242188,42.5425917792969],[119.31197390625,42.5892153144531],[119.34271609375,42.5984706855469],[119.36197390625,42.6150844550781],[119.33197390625,42.628470685547],[119.314293242188,42.6489919257813],[119.30271609375,42.6962807441407],[119.38271609375,42.7084706855469],[119.387345,42.7138430000001],[119.408551054688,42.7051296210938],[119.43310671875,42.7099819160156],[119.443385039063,42.658716046875],[119.512222929688,42.6378041816406],[119.566475859375,42.6486806464844],[119.587506132813,42.6780178046875],[119.620909453125,42.6602114082031],[119.599561796875,42.626587140625],[119.634820585938,42.6013185859376],[119.647345,42.583843],[119.638756132813,42.5344826484375],[119.602896757813,42.5082900214844],[119.572877226563,42.495639875],[119.56095828125,42.4271498847657],[119.541939726563,42.4295156074219],[119.497345,42.393843],[119.48978640625,42.4036367011719],[119.442345,42.396626203125],[119.417345,42.4003212714844],[119.39978640625,42.3977260566407],[119.381832304688,42.4209841132813],[119.357345,42.4173647285156],[119.341768828125,42.4196669746094],[119.321573515625,42.3643190742188],[119.27990359375,42.3806984687501],[119.262345,42.3781044746094],[119.2105871875,42.3857534003906],[119.213961210938,42.3629006171875],[119.177345,42.313843],[119.151710234375,42.3239211250001],[119.069459257813,42.3117665839844],[118.992486601563,42.3296034980469],[118.982345,42.3281044746094],[118.962345,42.331059796875],[118.93478640625,42.32698753125],[118.8859778125,42.3461745429688],[118.87298953125,42.3258583808594],[118.91298953125,42.3094863105469],[118.950699492188,42.281528546875],[118.887345,42.233843],[118.82580203125,42.2289162421876],[118.805269804688,42.18019065625],[118.791793242188,42.1693959785157],[118.778453398438,42.1527370429687],[118.751441679688,42.1311074042969],[118.75447390625,42.1067116523438],[118.674210234375,42.1166957832031],[118.633453398438,42.0927370429688],[118.601793242188,42.0793959785156],[118.587603789063,42.0616786933594],[118.570548125,42.0493959785156],[118.57447390625,42.0809743476563],[118.541475859375,42.0768691230469],[118.543248320313,42.0911074042969],[118.516763945313,42.1123171210938],[118.466436796875,42.0827370429688],[118.407345,42.0900868964844],[118.391954375,42.0881728339844],[118.35982546875,42.1116396308594],[118.270728789063,42.1005568671875],[118.257345,42.083843],[118.224547148438,42.0918996406251],[118.21326296875,42.0479274726563],[118.1706653125,42.0236147285157],[118.106641875,42.0379677558594],[118.13326296875,42.0479274726563],[118.14142703125,42.0597585273438],[118.147345,42.0638430000001]]],[[[119.387345,42.7138430000001],[119.375152617188,42.7172658515625],[119.383922148438,42.7260353828126],[119.387345,42.7138430000001]]]]}},{"type":"Feature","properties":{"name":"翁牛特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.387345,42.7138430000001],[119.383922148438,42.7260353828126],[119.375152617188,42.7172658515625],[119.38271609375,42.7084706855469],[119.30271609375,42.6962807441407],[119.314293242188,42.6489919257813],[119.33197390625,42.628470685547],[119.36197390625,42.6150844550781],[119.34271609375,42.5984706855469],[119.31197390625,42.5892153144531],[119.291168242188,42.5425917792969],[119.252047148438,42.5282253242188],[119.241261015625,42.5640541816407],[119.188233671875,42.5480886054688],[119.16271609375,42.5184706855469],[119.1316028125,42.5045864082032],[119.091295195313,42.4820986152344],[118.93271609375,42.4665041328125],[118.944732695313,42.4959841132813],[118.97564578125,42.5097780585938],[118.920787382813,42.5299233222657],[118.893326445313,42.5277162910156],[118.872423125,42.539380109375],[118.840787382813,42.5277626777345],[118.822345,42.5292446113282],[118.807345,42.5280397773437],[118.787345,42.5296462226563],[118.766651640625,42.527983625],[118.744576445313,42.5774587226562],[118.689288359375,42.5819008613282],[118.650147734375,42.5675270820313],[118.60197390625,42.5784706855469],[118.587369414063,42.611196515625],[118.547432890625,42.5965309882813],[118.48197390625,42.6084706855469],[118.452345,42.6250014472657],[118.422471953125,42.6083339667969],[118.348673125,42.6285317207032],[118.231080351563,42.6420119453125],[118.188272734375,42.6723659492187],[118.076500273438,42.6553334785157],[117.990738554688,42.6192153144532],[117.846954375,42.63269065625],[117.837345,42.643843],[117.842061796875,42.6491237617188],[117.872628203125,42.6585622382812],[117.886783476563,42.6744057441407],[117.966319609375,42.7454701972656],[118.013902617188,42.7757350898437],[118.082628203125,42.7885622382813],[118.112061796875,42.8091237617188],[118.177769804688,42.8294142890625],[118.192584257813,42.8285305],[118.232061796875,42.8591237617188],[118.298077421875,42.9070314765626],[118.33310671875,42.8879946113282],[118.365557890625,42.8899282050782],[118.36123171875,42.9624990058594],[118.312984648438,43.0056093574219],[118.352628203125,43.0785622382813],[118.362061796875,43.1406923652344],[118.342061796875,43.1585622382813],[118.331539335938,43.1703395820313],[118.332642851563,43.188843],[118.331749296875,43.2038430000001],[118.332828398438,43.2219362617188],[118.365719023438,43.2513246894532],[118.423101835938,43.2479042792969],[118.437345,43.263843],[118.50197390625,43.2692153144531],[118.567345,43.273843],[118.567345,43.263843],[118.577345,43.263843],[118.60271609375,43.2592153144532],[118.635914335938,43.2406923652344],[118.75302859375,43.250102765625],[118.81271609375,43.2392153144531],[118.86005984375,43.2218300605469],[118.987135039063,43.2320400214845],[119.131095,43.2059389472657],[119.191573515625,43.2241481757813],[119.304039335938,43.2677736640625],[119.332345,43.2700478339844],[119.437345,43.2616115546875],[119.5480090625,43.27050315625],[119.602345,43.2556325507813],[119.65197390625,43.2692153144531],[119.708219023438,43.2794753242188],[119.782135039063,43.3066188789063],[119.87271609375,43.3184706855469],[119.902105742188,43.3292641425782],[119.91255984375,43.3284242988282],[119.98197390625,43.3492147041016],[120.077345,43.373843],[120.25771609375,43.3885616279297],[120.312628203125,43.3791243720704],[120.342154570313,43.3685286689454],[120.417345,43.373843],[120.476803007813,43.3796901679688],[120.501871367188,43.3776760078125],[120.57271609375,43.3884712958985],[120.6352746875,43.3998128486328],[120.652584257813,43.3984218574219],[120.704293242188,43.417411725586],[120.767345,43.423843],[120.75677859375,43.4106459785157],[120.71791140625,43.3870400214844],[120.702896757813,43.3682900214844],[120.68068484375,43.3505025458985],[120.662896757813,43.3282900214844],[120.64068484375,43.3105019355469],[120.622896757813,43.2882900214844],[120.58068484375,43.2705019355469],[120.553956328125,43.2371205878907],[120.492896757813,43.1882900214844],[120.461793242188,43.1693959785157],[120.451539335938,43.1335390449219],[120.411666289063,43.1093178535156],[120.414107695313,43.0896840644532],[120.402345,43.0882216621094],[120.364674101563,43.0929067207031],[120.350206328125,43.0552712226563],[120.357345,43.023843],[120.35197390625,43.0192153144532],[120.34271609375,43.008470685547],[120.31197390625,42.9992153144532],[120.260909453125,42.959223859375],[120.142354765625,42.9483315253906],[120.112266875,42.959380109375],[120.091304960938,42.9476845527344],[120.05271609375,42.9692153144531],[120.01197390625,42.9784706855469],[119.985069609375,42.993481671875],[119.884537382813,42.9854030585937],[119.849830351563,42.9451222968751],[119.8527746875,42.9084963203125],[119.8319153125,42.8991896796875],[119.833980742188,42.8734963203125],[119.801402617188,42.8589614082031],[119.81271609375,42.8492153144531],[119.82197390625,42.8276674628906],[119.774757109375,42.8314614082031],[119.762525664063,42.7776235175782],[119.742066679688,42.7792665839844],[119.695460234375,42.7532643867188],[119.674527617188,42.7289687324219],[119.704947539063,42.6860683417969],[119.74271609375,42.6692153144531],[119.75197390625,42.6467958808594],[119.69197390625,42.6092153144532],[119.66271609375,42.588470685547],[119.647345,42.583843],[119.634820585938,42.6013185859376],[119.599561796875,42.626587140625],[119.620909453125,42.6602114082031],[119.587506132813,42.6780178046875],[119.566475859375,42.6486806464844],[119.512222929688,42.6378041816406],[119.443385039063,42.658716046875],[119.43310671875,42.7099819160156],[119.408551054688,42.7051296210938],[119.387345,42.7138430000001]]],[[[120.767345,43.423843],[120.767345,43.4338430000001],[120.777345,43.4338430000001],[120.777345,43.423843],[120.767345,43.423843]]]]}},{"type":"Feature","properties":{"name":"元宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.381832304688,42.4209841132813],[119.39978640625,42.3977260566407],[119.417345,42.4003212714844],[119.442345,42.396626203125],[119.48978640625,42.4036367011719],[119.497345,42.393843],[119.497345,42.383843],[119.48900515625,42.353891828125],[119.46298953125,42.3381996894532],[119.44170046875,42.3294863105469],[119.395299101563,42.3014955878906],[119.367345,42.2973647285156],[119.346485625,42.3004482246094],[119.30298953125,42.2681996894532],[119.27744265625,42.2577443671875],[119.24298953125,42.2081996894531],[119.225611601563,42.1947853828125],[119.26724734375,42.1777443671875],[119.308131132813,42.1189528632813],[119.35298953125,42.1094863105469],[119.357345,42.1038430000001],[119.351793242188,42.0993959785157],[119.342896757813,42.0682900214844],[119.2881653125,42.0298183417969],[119.314210234375,42.018843],[119.31150515625,41.9970815253907],[119.291890898438,41.9995217109375],[119.280079375,41.984770734375],[119.23634890625,41.9902101875001],[119.222896757813,41.9582900214844],[119.20845828125,41.9337282539063],[119.161983671875,41.9395095039063],[119.142706328125,41.9281764960938],[119.11607546875,41.9314882636719],[119.092896757813,41.9682839179688],[119.188292265625,41.9802150703126],[119.171793242188,42.0082900214844],[119.161632109375,42.0324025703125],[119.132530546875,42.0557070136719],[119.102896757813,42.0382900214844],[119.069752226563,42.0293959785157],[119.052896757813,42.0693959785157],[119.041793242188,42.0782900214844],[119.037345,42.083843],[119.050850859375,42.0984181953126],[119.084932890625,42.1145034003907],[119.0717590625,42.1394008613281],[119.099771757813,42.1653578925782],[119.082139921875,42.1986794257813],[119.083336210938,42.2288808417969],[119.022862578125,42.2404262519531],[119.042535429688,42.2586525703126],[119.052154570313,42.2690334296875],[119.092535429688,42.2786525703125],[119.133516875,42.2893910957031],[119.153936796875,42.2885817695313],[119.177345,42.313843],[119.213961210938,42.3629006171875],[119.2105871875,42.3857534003906],[119.262345,42.3781044746094],[119.27990359375,42.3806984687501],[119.321573515625,42.3643190742188],[119.341768828125,42.4196669746094],[119.357345,42.4173647285156],[119.381832304688,42.4209841132813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"霍林郭勒市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.33170046875,45.3894869208985],[119.307345,45.3838430000001],[119.3008215625,45.4235445380859],[119.303824492188,45.443843],[119.300401640625,45.4669795966797],[119.41170046875,45.5194869208985],[119.490660429688,45.5482955146485],[119.54298953125,45.6081990791016],[119.552511015625,45.6423928046875],[119.567345,45.6538430000001],[119.601881132813,45.6383803535157],[119.6588684375,45.6170345283203],[119.741085234375,45.5813784003907],[119.747345,45.5738430000001],[119.71170046875,45.5694869208984],[119.69298953125,45.5517641425782],[119.739527617188,45.4793099189454],[119.68170046875,45.4694869208985],[119.671534453125,45.4446511054688],[119.610308867188,45.3984340644532],[119.33170046875,45.3894869208985]]]]}},{"type":"Feature","properties":{"name":"开鲁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.262706328125,44.1395101142578],[121.2924621875,44.122016828125],[121.381890898438,44.133139875],[121.401793242188,44.1082900214844],[121.43978640625,44.097426984375],[121.5283996875,44.0299874091797],[121.592398710938,43.9500691962891],[121.674386015625,43.9002693916016],[121.670650664063,43.87022971875],[121.682896757813,43.8493959785157],[121.693609648438,43.8239760566407],[121.801793242188,43.7982900214844],[121.807345,43.793843],[121.80298953125,43.7781990791016],[121.763678007813,43.7621102119141],[121.803463164063,43.7314028144531],[121.8015246875,43.7183040595703],[121.8372278125,43.6969521308594],[121.85170046875,43.6781990791016],[121.863824492188,43.6688430000001],[121.84306765625,43.6528212714844],[121.832345,43.626626203125],[121.812345,43.6295821357422],[121.785889921875,43.6256722236328],[121.748546171875,43.6481990791016],[121.73170046875,43.6394869208985],[121.72298953125,43.6281990791016],[121.68298953125,43.6170607734375],[121.702008085938,43.6080544257813],[121.729639921875,43.6121376777344],[121.735167265625,43.5747310615234],[121.701832304688,43.579657819336],[121.69298953125,43.5681990791016],[121.680865507813,43.558843],[121.712095976563,43.5347377753907],[121.722222929688,43.4751302314453],[121.752994414063,43.4796779609375],[121.81435671875,43.4692543769532],[121.801529570313,43.4593550849609],[121.805391875,43.4332204414063],[121.704459257813,43.4481362128907],[121.700167265625,43.4191158271484],[121.734581328125,43.3985347724609],[121.690391875,43.3892104316407],[121.70298953125,43.3794869208985],[121.707345,43.373843],[121.640885039063,43.3703023505859],[121.633267851563,43.3564022041016],[121.60797,43.3668294501954],[121.583804960938,43.3445638251954],[121.59478640625,43.3179213691406],[121.587345,43.313843],[121.565758085938,43.3205080390625],[121.549478789063,43.3559786201172],[121.522061796875,43.3685616279297],[121.512628203125,43.3991243720703],[121.498350859375,43.4253896308594],[121.412061796875,43.4585616279297],[121.393643828125,43.5182155585938],[121.375220976563,43.5346767402344],[121.264366484375,43.5280696845704],[121.183511992188,43.5453450751953],[121.152628203125,43.5285616279298],[120.951690703125,43.5128328681641],[120.902628203125,43.4785616279297],[120.879830351563,43.4680989814453],[120.827843046875,43.4711977363281],[120.78170046875,43.4546419501954],[120.7826575,43.4385903144532],[120.777345,43.4338430000001],[120.767345,43.4338430000001],[120.767345,43.423843],[120.704293242188,43.417411725586],[120.652584257813,43.3984218574219],[120.6352746875,43.3998128486328],[120.57271609375,43.3884712958985],[120.501871367188,43.3776760078125],[120.476803007813,43.3796901679688],[120.417345,43.373843],[120.421793242188,43.3793959785156],[120.461749296875,43.4036653876954],[120.512896757813,43.4182900214844],[120.546954375,43.4313796210938],[120.59529421875,43.4253664375001],[120.649058867188,43.4460335517578],[120.673980742188,43.460683209961],[120.671724882813,43.4788430000001],[120.67396609375,43.4968654609375],[120.744068632813,43.5461415839844],[120.777203398438,43.5601045966797],[120.80095828125,43.5571498847656],[120.854869414063,43.5888387275391],[120.922896757813,43.6082900214844],[120.975889921875,43.6469997382813],[120.956236601563,43.6627370429688],[120.933096953125,43.6916329169922],[120.871793242188,43.7382900214844],[120.838414335938,43.7799727607422],[120.777105742188,43.8172090888672],[120.787345,43.843843],[120.89181765625,43.866630475586],[121.01939578125,43.8434993720703],[121.105982695313,43.8365419746094],[121.133116484375,43.8486501289063],[121.0930090625,43.9052156806641],[121.123150664063,43.9186635566406],[121.09197390625,43.9584712958985],[121.073780546875,44.0188942695312],[121.03271609375,44.0312581611329],[121.05197390625,44.0392147041016],[121.08271609375,44.0484712958984],[121.104586210938,44.0606716132813],[121.149478789063,44.0570644355469],[121.18970828125,44.0917232490234],[121.20197390625,44.1192147041016],[121.207345,44.1238430000001],[121.217345,44.1238430000001],[121.217345,44.133843],[121.262706328125,44.1395101142578]]]]}},{"type":"Feature","properties":{"name":"科尔沁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.007345,43.763843],[123.010767851563,43.7760353828125],[123.019537382813,43.7672664619141],[123.007345,43.763843]]],[[[122.647345,43.953843],[122.6226575,43.9179415107422],[122.582896757813,43.8682900214844],[122.570367460938,43.8582540107423],[122.581832304688,43.8181569648438],[122.592345,43.8194649482422],[122.607345,43.8175991035157],[122.632345,43.8207088447266],[122.661280546875,43.8171096015626],[122.695499296875,43.84210471875],[122.760123320313,43.7949007392578],[122.805479765625,43.8215627265625],[122.832345,43.8182210517578],[122.857735625,43.8213796210938],[122.892061796875,43.8081856513672],[122.907486601563,43.8101045966797],[122.943453398438,43.7949489570313],[122.971983671875,43.7781764960938],[122.98271609375,43.779511334961],[123.007345,43.763843],[123.00298953125,43.7281990791016],[122.997345,43.693843],[122.886964140625,43.6842244697266],[122.872535429688,43.6686525703126],[122.8617590625,43.6586659980469],[122.862550078125,43.6386550117187],[122.807061796875,43.62806175],[122.767345,43.6296358466797],[122.742203398438,43.6286391425782],[122.682218046875,43.6443581367188],[122.652535429688,43.6286525703126],[122.576358671875,43.6105068183594],[122.541378203125,43.5982466865235],[122.542940703125,43.5587807441406],[122.512139921875,43.5490291572266],[122.512965117188,43.5282241035157],[122.492345,43.5290413642578],[122.477345,43.528446881836],[122.460875273438,43.5290993476563],[122.399449492188,43.5075704169922],[122.347345,43.5096358466798],[122.322345,43.5086446357423],[122.307345,43.5092391181641],[122.271788359375,43.5078304267578],[122.272940703125,43.4788430000001],[122.252154570313,43.4690334296876],[122.240650664063,43.4566170478516],[122.242550078125,43.4086537910157],[122.152154570313,43.3990334296875],[122.142535429688,43.3786525703125],[122.13052859375,43.3675276923828],[122.082345,43.3694374824219],[122.052345,43.3682485175782],[122.032345,43.3690413642579],[122.010445585938,43.368173444336],[121.7363684375,43.3840138984375],[121.759010039063,43.3630330634766],[121.707345,43.373843],[121.70298953125,43.3794869208985],[121.690391875,43.3892104316407],[121.734581328125,43.3985347724609],[121.700167265625,43.4191158271484],[121.704459257813,43.4481362128907],[121.805391875,43.4332204414063],[121.801529570313,43.4593550849609],[121.81435671875,43.4692543769532],[121.752994414063,43.4796779609375],[121.722222929688,43.4751302314453],[121.712095976563,43.5347377753907],[121.680865507813,43.558843],[121.69298953125,43.5681990791016],[121.701832304688,43.579657819336],[121.735167265625,43.5747310615234],[121.729639921875,43.6121376777344],[121.702008085938,43.6080544257813],[121.68298953125,43.6170607734375],[121.72298953125,43.6281990791016],[121.73170046875,43.6394869208985],[121.748546171875,43.6481990791016],[121.785889921875,43.6256722236328],[121.812345,43.6295821357422],[121.832345,43.626626203125],[121.84306765625,43.6528212714844],[121.863824492188,43.6688430000001],[121.85170046875,43.6781990791016],[121.8372278125,43.6969521308594],[121.8015246875,43.7183040595703],[121.803463164063,43.7314028144531],[121.763678007813,43.7621102119141],[121.80298953125,43.7781990791016],[121.807345,43.793843],[121.837711210938,43.8007405830078],[121.902896757813,43.7893959785156],[121.948668242188,43.7527883125],[122.006065703125,43.7599275947266],[122.042896757813,43.7493959785157],[122.05334109375,43.6893959785157],[122.119718046875,43.7043196845704],[122.14068484375,43.7305025458985],[122.163023710938,43.7483901191407],[122.157843046875,43.790024640625],[122.172843046875,43.78815940625],[122.190094023438,43.8291005683594],[122.245211210938,43.8386928535156],[122.265152617188,43.8635951972656],[122.312345,43.8694649482422],[122.329249296875,43.8673622871094],[122.342896757813,43.8782900214844],[122.359210234375,43.898657453125],[122.392896757813,43.9082900214844],[122.407139921875,43.9260774970703],[122.456334257813,43.944985578125],[122.507735625,43.9513796210938],[122.544386015625,43.9372927070313],[122.6281653125,43.961216046875],[122.647345,43.953843]]],[[[122.647345,43.953843],[122.650767851563,43.9660353828125],[122.659537382813,43.9572664619141],[122.647345,43.953843]]]]}},{"type":"Feature","properties":{"name":"科尔沁左翼后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.016261015625,43.6702217841797],[123.042345,43.6669771552735],[123.081353789063,43.6718288398438],[123.083590117188,43.653843],[123.080792265625,43.6313466621094],[123.162896757813,43.6193959785157],[123.21197390625,43.5881746650391],[123.233033476563,43.5907942939453],[123.27806765625,43.5779189277345],[123.297345,43.5538430000001],[123.30170046875,43.5381990791016],[123.315513945313,43.515298078125],[123.310494414063,43.4813326240234],[123.332345,43.4781038642578],[123.357086210938,43.4817604804688],[123.37298953125,43.4694869208985],[123.402882109375,43.4195021796876],[123.430806914063,43.4153755927734],[123.447838164063,43.4374379707032],[123.480806914063,43.4423104072266],[123.51744265625,43.3948525214844],[123.542452421875,43.4099404121094],[123.59170046875,43.3681990791016],[123.697345,43.3638430000001],[123.7046496875,43.3341127753907],[123.701221953125,43.3188430000001],[123.703746367188,43.3075966621094],[123.679176054688,43.2720119453126],[123.66107546875,43.2595131660157],[123.669845,43.2203908515625],[123.640328398438,43.2093471503907],[123.664361601563,43.1783388496094],[123.641051054688,43.1696169257813],[123.643565703125,43.1583962226563],[123.63142703125,43.1397585273438],[123.622164335938,43.0809804511719],[123.590103789063,43.0588430000001],[123.604586210938,43.048843],[123.58298953125,43.0339321113281],[123.57326296875,43.0079274726563],[123.557345,43.003843],[123.531793242188,43.0082900214844],[123.512896757813,43.0193959785157],[123.463697539063,43.0401284003907],[123.432896757813,43.0282900214844],[123.343599882813,43.002759015625],[123.247281523438,42.9887392402344],[123.222896757813,42.9582900214844],[123.201793242188,42.9493959785156],[123.192896757813,42.9382900214844],[123.181793242188,42.9293959785157],[123.167960234375,42.8499050117188],[123.216685820313,42.8293727851563],[123.181793242188,42.8193959785157],[123.152896757813,42.8082900214844],[123.09068484375,42.7905019355469],[123.052706328125,42.7681764960938],[123.042345,42.7694643378907],[123.027345,42.7675991035156],[122.975513945313,42.7740456367188],[122.956143828125,42.7498537421875],[122.919210234375,42.7715627265626],[122.888472929688,42.767739484375],[122.859556914063,42.7316310859375],[122.837345,42.7138430000001],[122.83099734375,42.7217690253907],[122.791793242188,42.7382900214844],[122.782896757813,42.7493959785157],[122.751236601563,42.7627370429687],[122.710479765625,42.7866957832032],[122.614039335938,42.7746999335938],[122.574757109375,42.7912538886719],[122.561226835938,42.8233632636719],[122.419136992188,42.8411159492187],[122.342896757813,42.8278481269532],[122.36687625,42.7751210761719],[122.427345,42.7675991035156],[122.461793242188,42.7718837714844],[122.441949492188,42.7415529609375],[122.396236601563,42.7049489570313],[122.3819934375,42.6871620917969],[122.33205203125,42.6679653144532],[122.321422148438,42.6812416816407],[122.255972929688,42.6999538398438],[122.222896757813,42.7193959785156],[122.197345,42.723843],[122.18634890625,42.7366078925782],[122.12650515625,42.7795790839844],[122.097345,42.7772365546875],[122.072345,42.7792446113282],[122.052667265625,42.7776638007813],[122.04271609375,42.7892153144532],[122.018814726563,42.7998818183594],[122.0227746875,42.8491664863281],[121.989010039063,42.8782558417969],[121.92197390625,42.8884706855469],[121.90271609375,42.8992153144531],[121.88197390625,42.9084706855469],[121.87271609375,42.9192153144532],[121.82353640625,42.9615846992188],[121.81271609375,43.0092153144531],[121.77295046875,43.0987953925781],[121.761217070313,43.1198232246094],[121.763551054688,43.148843],[121.760660429688,43.1848073554688],[121.679322539063,43.2299428535157],[121.66271609375,43.2492153144532],[121.63197390625,43.2684706855469],[121.587345,43.303843],[121.587345,43.313843],[121.59478640625,43.3179213691406],[121.583804960938,43.3445638251954],[121.60797,43.3668294501954],[121.633267851563,43.3564022041016],[121.640885039063,43.3703023505859],[121.707345,43.373843],[121.759010039063,43.3630330634766],[121.7363684375,43.3840138984375],[122.010445585938,43.368173444336],[122.032345,43.3690413642579],[122.052345,43.3682485175782],[122.082345,43.3694374824219],[122.13052859375,43.3675276923828],[122.142535429688,43.3786525703125],[122.152154570313,43.3990334296875],[122.242550078125,43.4086537910157],[122.240650664063,43.4566170478516],[122.252154570313,43.4690334296876],[122.272940703125,43.4788430000001],[122.271788359375,43.5078304267578],[122.307345,43.5092391181641],[122.322345,43.5086446357423],[122.347345,43.5096358466798],[122.399449492188,43.5075704169922],[122.460875273438,43.5290993476563],[122.477345,43.528446881836],[122.492345,43.5290413642578],[122.512965117188,43.5282241035157],[122.512139921875,43.5490291572266],[122.542940703125,43.5587807441406],[122.541378203125,43.5982466865235],[122.576358671875,43.6105068183594],[122.652535429688,43.6286525703126],[122.682218046875,43.6443581367188],[122.742203398438,43.6286391425782],[122.767345,43.6296358466797],[122.807061796875,43.62806175],[122.862550078125,43.6386550117187],[122.8617590625,43.6586659980469],[122.872535429688,43.6686525703126],[122.886964140625,43.6842244697266],[122.997345,43.693843],[123.016261015625,43.6702217841797]]]]}},{"type":"Feature","properties":{"name":"科尔沁左翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.217345,44.133843],[121.217345,44.1238430000001],[121.207345,44.1238430000001],[121.207345,44.133843],[121.217345,44.133843]]],[[[123.007345,43.763843],[123.019537382813,43.7672664619141],[123.010767851563,43.7760353828125],[122.98271609375,43.779511334961],[122.971983671875,43.7781764960938],[122.943453398438,43.7949489570313],[122.907486601563,43.8101045966797],[122.892061796875,43.8081856513672],[122.857735625,43.8213796210938],[122.832345,43.8182210517578],[122.805479765625,43.8215627265625],[122.760123320313,43.7949007392578],[122.695499296875,43.84210471875],[122.661280546875,43.8171096015626],[122.632345,43.8207088447266],[122.607345,43.8175991035157],[122.592345,43.8194649482422],[122.581832304688,43.8181569648438],[122.570367460938,43.8582540107423],[122.582896757813,43.8682900214844],[122.6226575,43.9179415107422],[122.647345,43.953843],[122.659537382813,43.9572664619141],[122.650767851563,43.9660353828125],[122.647345,43.953843],[122.6281653125,43.961216046875],[122.544386015625,43.9372927070313],[122.507735625,43.9513796210938],[122.456334257813,43.944985578125],[122.407139921875,43.9260774970703],[122.392896757813,43.9082900214844],[122.359210234375,43.898657453125],[122.342896757813,43.8782900214844],[122.329249296875,43.8673622871094],[122.312345,43.8694649482422],[122.265152617188,43.8635951972656],[122.245211210938,43.8386928535156],[122.190094023438,43.8291005683594],[122.172843046875,43.78815940625],[122.157843046875,43.790024640625],[122.163023710938,43.7483901191407],[122.14068484375,43.7305025458985],[122.119718046875,43.7043196845704],[122.05334109375,43.6893959785157],[122.042896757813,43.7493959785157],[122.006065703125,43.7599275947266],[121.948668242188,43.7527883125],[121.902896757813,43.7893959785156],[121.837711210938,43.8007405830078],[121.807345,43.793843],[121.801793242188,43.7982900214844],[121.693609648438,43.8239760566407],[121.682896757813,43.8493959785157],[121.670650664063,43.87022971875],[121.674386015625,43.9002693916016],[121.592398710938,43.9500691962891],[121.5283996875,44.0299874091797],[121.43978640625,44.097426984375],[121.401793242188,44.1082900214844],[121.381890898438,44.133139875],[121.2924621875,44.122016828125],[121.262706328125,44.1395101142578],[121.217345,44.133843],[121.192896757813,44.1693959785156],[121.175108671875,44.1836403632813],[121.161685820313,44.2185604072266],[121.163590117188,44.2338430000001],[121.159796171875,44.264341046875],[121.192896757813,44.2782900214844],[121.201890898438,44.2895211005859],[121.227594023438,44.2863240791016],[121.303482695313,44.302743756836],[121.322896757813,44.3182900214845],[121.331793242188,44.3293959785156],[121.358253203125,44.3405458808594],[121.413472929688,44.3847664619141],[121.410582304688,44.4080019355469],[121.4270715625,44.4100527167969],[121.491793242188,44.3582900214844],[121.512896757813,44.3493959785157],[121.548507109375,44.3049275947266],[121.614928007813,44.2793959785157],[121.722896757813,44.2882900214844],[121.797232695313,44.3168624091797],[121.862896757813,44.3282900214844],[121.881793242188,44.3393959785157],[121.927345,44.343843],[121.942061796875,44.3385616279297],[121.972628203125,44.3291243720704],[122.003624296875,44.307470319336],[122.137515898438,44.2594289375],[122.172345,44.257353131836],[122.2240246875,44.2604329658203],[122.267345,44.253843],[122.307330351563,44.2291243720704],[122.482628203125,44.2385616279297],[122.512061796875,44.2491243720703],[122.552628203125,44.2585616279298],[122.611783476563,44.2744057441407],[122.673970976563,44.2888747382813],[122.730206328125,44.35181175],[122.765201445313,44.370829694336],[122.868292265625,44.4026625800781],[123.032379179688,44.4985170722657],[123.117345,44.5038430000001],[123.125777617188,44.4965767646484],[123.121920195313,44.4485646796875],[123.13728640625,44.4210237861328],[123.109288359375,44.3969008613281],[123.12197390625,44.3684712958985],[123.14271609375,44.3592147041016],[123.16197390625,44.3484712958984],[123.1947278125,44.3386092353516],[123.2649621875,44.2565920234375],[123.292476835938,44.1949269843751],[123.325738554688,44.1763692451172],[123.38896609375,44.1573329902344],[123.37271609375,44.1384712958985],[123.360225859375,44.1277095771485],[123.34271609375,44.0884712958985],[123.313756132813,44.0755489326172],[123.327345,44.063843],[123.317940703125,44.0393807197266],[123.388565703125,43.982827375],[123.364859648438,43.963843],[123.42656375,43.9144295478516],[123.441793242188,43.8782900214844],[123.452896757813,43.8693959785156],[123.464215117188,43.8043556953125],[123.485284453125,43.7874843574219],[123.479405546875,43.7402016425782],[123.492896757813,43.7293959785157],[123.501793242188,43.7182900214844],[123.515284453125,43.7074843574219],[123.511676054688,43.6784828925782],[123.531793242188,43.6442659736329],[123.522896757813,43.6282900214844],[123.501441679688,43.6111074042969],[123.504107695313,43.5896840644532],[123.47123171875,43.5855947089844],[123.412896757813,43.6022518134766],[123.424381132813,43.5842232490235],[123.461793242188,43.5542659736329],[123.438258085938,43.5468215156251],[123.368311796875,43.5627095771485],[123.297345,43.5538430000001],[123.27806765625,43.5779189277345],[123.233033476563,43.5907942939453],[123.21197390625,43.5881746650391],[123.162896757813,43.6193959785157],[123.080792265625,43.6313466621094],[123.083590117188,43.653843],[123.081353789063,43.6718288398438],[123.042345,43.6669771552735],[123.016261015625,43.6702217841797],[122.997345,43.693843],[123.00298953125,43.7281990791016],[123.007345,43.763843]]]]}},{"type":"Feature","properties":{"name":"库伦旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.597345,42.503843],[121.609537382813,42.5072658515626],[121.600767851563,42.5160353828125],[121.581612578125,42.4995778632813],[121.549703398438,42.479829328125],[121.476285429688,42.4924684882813],[121.44623171875,42.4738698554688],[121.412345,42.4797035957031],[121.385733671875,42.475122296875],[121.373077421875,42.4581081367188],[121.304288359375,42.4394594550782],[121.293077421875,42.3981081367187],[121.271207304688,42.3818373847657],[121.211612578125,42.3695778632813],[121.207345,42.363843],[121.201519804688,42.3680178046875],[121.193170195313,42.3996681953125],[121.18080203125,42.4085341621094],[121.19388796875,42.4291518378907],[121.181236601563,42.4382228828125],[121.185186796875,42.4582228828126],[121.171236601563,42.4682228828125],[121.173472929688,42.4795510078125],[121.151519804688,42.4880178046875],[121.127467070313,42.5032875800781],[121.148995390625,42.5371926093751],[121.161519804688,42.5696681953126],[121.175186796875,42.5794631171875],[121.170631132813,42.6025173164063],[121.193741484375,42.6389186835938],[121.164303007813,42.6774684882813],[121.148468046875,42.7374819160156],[121.18443484375,42.7632607246094],[121.181358671875,42.778843],[121.186431914063,42.8045290351563],[121.17127078125,42.8284096503906],[121.179732695313,42.8712184882813],[121.211724882813,42.8941493964845],[121.221519804688,42.9203713203126],[121.15123171875,42.9682131171875],[121.156295195313,42.993843],[121.149332304688,43.0290908027344],[121.20923953125,43.0448964667969],[121.183394804688,43.1077956367188],[121.241798125,43.0837941718751],[121.279386015625,43.0912221503906],[121.311519804688,43.0780178046876],[121.370015898438,43.0696681953126],[121.391519804688,43.0996681953125],[121.403170195313,43.1080178046875],[121.437393828125,43.158296125],[121.431217070313,43.1895497871094],[121.4528528125,43.1980178046876],[121.518292265625,43.1711257148438],[121.566910429688,43.1807338691407],[121.558394804688,43.223843],[121.56560671875,43.2603554511719],[121.583170195313,43.2880178046875],[121.587345,43.303843],[121.63197390625,43.2684706855469],[121.66271609375,43.2492153144532],[121.679322539063,43.2299428535157],[121.760660429688,43.1848073554688],[121.763551054688,43.148843],[121.761217070313,43.1198232246094],[121.77295046875,43.0987953925781],[121.81271609375,43.0092153144531],[121.82353640625,42.9615846992188],[121.87271609375,42.9192153144532],[121.88197390625,42.9084706855469],[121.90271609375,42.8992153144531],[121.92197390625,42.8884706855469],[121.989010039063,42.8782558417969],[122.0227746875,42.8491664863281],[122.018814726563,42.7998818183594],[122.04271609375,42.7892153144532],[122.052667265625,42.7776638007813],[122.072345,42.7792446113282],[122.097345,42.7772365546875],[122.12650515625,42.7795790839844],[122.18634890625,42.7366078925782],[122.197345,42.723843],[122.204361601563,42.7059902167969],[122.19283328125,42.6778151679687],[122.13170046875,42.6881996894532],[122.100767851563,42.7068593574219],[122.082345,42.7095815253907],[122.071832304688,42.7080287910157],[122.059400664063,42.7241323066406],[122.015484648438,42.6976406074219],[121.991265898438,42.7012197089844],[121.931519804688,42.6794203925782],[121.933160429688,42.6683315253907],[121.911226835938,42.6514028144532],[121.913160429688,42.6383315253906],[121.900206328125,42.6283315253907],[121.9052746875,42.5940151191406],[121.897345,42.573843],[121.889176054688,42.5620119453125],[121.87142703125,42.5497585273438],[121.863116484375,42.5275490546876],[121.852345,42.5299636054688],[121.842345,42.5277223945313],[121.828995390625,42.5307155585937],[121.805694609375,42.4969704414062],[121.790069609375,42.500473859375],[121.735426054688,42.4800283027344],[121.708756132813,42.4414003730469],[121.66033328125,42.4305458808594],[121.63326296875,42.4697585273438],[121.609595976563,42.4860964179688],[121.597345,42.503843]]]]}},{"type":"Feature","properties":{"name":"奈曼旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.183511992188,43.5453450751953],[121.264366484375,43.5280696845704],[121.375220976563,43.5346767402344],[121.393643828125,43.5182155585938],[121.412061796875,43.4585616279297],[121.498350859375,43.4253896308594],[121.512628203125,43.3991243720703],[121.522061796875,43.3685616279297],[121.549478789063,43.3559786201172],[121.565758085938,43.3205080390625],[121.587345,43.313843],[121.587345,43.303843],[121.583170195313,43.2880178046875],[121.56560671875,43.2603554511719],[121.558394804688,43.223843],[121.566910429688,43.1807338691407],[121.518292265625,43.1711257148438],[121.4528528125,43.1980178046876],[121.431217070313,43.1895497871094],[121.437393828125,43.158296125],[121.403170195313,43.1080178046875],[121.391519804688,43.0996681953125],[121.370015898438,43.0696681953126],[121.311519804688,43.0780178046876],[121.279386015625,43.0912221503906],[121.241798125,43.0837941718751],[121.183394804688,43.1077956367188],[121.20923953125,43.0448964667969],[121.149332304688,43.0290908027344],[121.156295195313,42.993843],[121.15123171875,42.9682131171875],[121.221519804688,42.9203713203126],[121.211724882813,42.8941493964845],[121.179732695313,42.8712184882813],[121.17127078125,42.8284096503906],[121.186431914063,42.8045290351563],[121.181358671875,42.778843],[121.18443484375,42.7632607246094],[121.148468046875,42.7374819160156],[121.164303007813,42.6774684882813],[121.193741484375,42.6389186835938],[121.170631132813,42.6025173164063],[121.175186796875,42.5794631171875],[121.161519804688,42.5696681953126],[121.148995390625,42.5371926093751],[121.127467070313,42.5032875800781],[121.151519804688,42.4880178046875],[121.173472929688,42.4795510078125],[121.171236601563,42.4682228828125],[121.185186796875,42.4582228828126],[121.181236601563,42.4382228828125],[121.19388796875,42.4291518378907],[121.18080203125,42.4085341621094],[121.193170195313,42.3996681953125],[121.201519804688,42.3680178046875],[121.207345,42.363843],[121.203985625,42.3572023750001],[121.18406375,42.34712425],[121.173985625,42.327202375],[121.15406375,42.31712425],[121.143336210938,42.2959169746094],[121.127393828125,42.3037038398438],[121.111353789063,42.2720009589844],[121.091881132813,42.2815102363282],[121.063985625,42.257202375],[121.030704375,42.250483625],[121.027345,42.243843],[121.01142703125,42.2479274726563],[120.99326296875,42.2597585273438],[120.934307890625,42.274887921875],[120.897345,42.2666017890626],[120.881676054688,42.2701137519531],[120.877345,42.263843],[120.8513684375,42.2716640449219],[120.853345976563,42.296294171875],[120.791632109375,42.3349489570313],[120.793204375,42.3545351386719],[120.7619153125,42.3684963203125],[120.7636340625,42.3898818183594],[120.72197390625,42.4084706855469],[120.67978640625,42.4320095039063],[120.60281375,42.4956777167969],[120.59271609375,42.5292153144532],[120.563375273438,42.5423085761719],[120.55271609375,42.5892153144531],[120.54197390625,42.5984706855469],[120.511495390625,42.6471291328125],[120.49271609375,42.6892153144532],[120.454361601563,42.7579616523438],[120.44271609375,42.8092153144532],[120.411495390625,42.8532509589844],[120.4127746875,42.8691664863282],[120.400416289063,42.8798146796875],[120.403150664063,42.913843],[120.401265898438,42.9372866035157],[120.41627078125,42.9781447578125],[120.376846953125,42.9900136542969],[120.357345,43.023843],[120.350206328125,43.0552712226563],[120.364674101563,43.0929067207031],[120.402345,43.0882216621094],[120.414107695313,43.0896840644532],[120.411666289063,43.1093178535156],[120.451539335938,43.1335390449219],[120.461793242188,43.1693959785157],[120.492896757813,43.1882900214844],[120.553956328125,43.2371205878907],[120.58068484375,43.2705019355469],[120.622896757813,43.2882900214844],[120.64068484375,43.3105019355469],[120.662896757813,43.3282900214844],[120.68068484375,43.3505025458985],[120.702896757813,43.3682900214844],[120.71791140625,43.3870400214844],[120.75677859375,43.4106459785157],[120.767345,43.423843],[120.777345,43.423843],[120.777345,43.4338430000001],[120.7826575,43.4385903144532],[120.78170046875,43.4546419501954],[120.827843046875,43.4711977363281],[120.879830351563,43.4680989814453],[120.902628203125,43.4785616279297],[120.951690703125,43.5128328681641],[121.152628203125,43.5285616279298],[121.183511992188,43.5453450751953]]]]}},{"type":"Feature","properties":{"name":"扎鲁特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.907345,45.553843],[119.910767851563,45.5660353828125],[119.919537382813,45.5572664619141],[119.907345,45.553843]]],[[[119.907345,45.553843],[119.912760039063,45.5290145087891],[119.90990359375,45.4934584785156],[119.982345,45.4876375556641],[120.002345,45.4892446113282],[120.021851835938,45.4876778388673],[120.024483671875,45.5204616523438],[119.98271609375,45.5564455390625],[120.005513945313,45.5878920722657],[120.032345,45.5900484443359],[120.052345,45.5884413886719],[120.082345,45.5908516669922],[120.127345,45.587235944336],[120.160787382813,45.5899233222656],[120.19197390625,45.5784712958985],[120.22271609375,45.5692147041016],[120.25197390625,45.5584712958985],[120.31271609375,45.5492147041016],[120.338531523438,45.51925315625],[120.398595,45.5056081367188],[120.430328398438,45.4687709785156],[120.48568484375,45.4586733222656],[120.553345976563,45.4162941718751],[120.551944609375,45.398843],[120.552745390625,45.388843],[120.550362578125,45.359189069336],[120.609366484375,45.3328603339844],[120.684537382813,45.2795638251954],[120.742105742188,45.2584218574219],[120.752515898438,45.2592586494141],[120.802174101563,45.2484273505859],[120.8224621875,45.2500575996094],[120.83197390625,45.2184712958985],[120.88271609375,45.2092147041016],[120.91197390625,45.1984712958985],[120.971812773438,45.1804543281251],[120.972764921875,45.1685903144531],[120.951710234375,45.1185884833985],[120.97271609375,45.1092147041016],[120.98197390625,45.0684712958984],[120.99271609375,45.0492147041016],[121.009854765625,45.0108132148438],[121.032066679688,44.9984188056641],[121.042623320313,44.999267194336],[121.09048953125,44.9725618720703],[121.14197390625,44.9584712958984],[121.193267851563,44.9468178535156],[121.294947539063,44.9014461494141],[121.37197390625,44.8584712958985],[121.397061796875,44.8472768378906],[121.412769804688,44.8191213203125],[121.409967070313,44.7842220283203],[121.52271609375,44.7192147041016],[121.537701445313,44.6694411445313],[121.600499296875,44.655175397461],[121.578248320313,44.6360066962891],[121.625367460938,44.581317975586],[121.72177859375,44.5067324042969],[121.7734778125,44.446723859375],[121.81271609375,44.4292147041016],[121.82197390625,44.4184712958985],[121.877437773438,44.4017726875],[121.927345,44.343843],[121.881793242188,44.3393959785157],[121.862896757813,44.3282900214844],[121.797232695313,44.3168624091797],[121.722896757813,44.2882900214844],[121.614928007813,44.2793959785157],[121.548507109375,44.3049275947266],[121.512896757813,44.3493959785157],[121.491793242188,44.3582900214844],[121.4270715625,44.4100527167969],[121.410582304688,44.4080019355469],[121.413472929688,44.3847664619141],[121.358253203125,44.3405458808594],[121.331793242188,44.3293959785156],[121.322896757813,44.3182900214845],[121.303482695313,44.302743756836],[121.227594023438,44.2863240791016],[121.201890898438,44.2895211005859],[121.192896757813,44.2782900214844],[121.159796171875,44.264341046875],[121.163590117188,44.2338430000001],[121.161685820313,44.2185604072266],[121.175108671875,44.1836403632813],[121.192896757813,44.1693959785156],[121.217345,44.133843],[121.207345,44.133843],[121.207345,44.1238430000001],[121.20197390625,44.1192147041016],[121.18970828125,44.0917232490234],[121.149478789063,44.0570644355469],[121.104586210938,44.0606716132813],[121.08271609375,44.0484712958984],[121.05197390625,44.0392147041016],[121.03271609375,44.0312581611329],[121.073780546875,44.0188942695312],[121.09197390625,43.9584712958985],[121.123150664063,43.9186635566406],[121.0930090625,43.9052156806641],[121.133116484375,43.8486501289063],[121.105982695313,43.8365419746094],[121.01939578125,43.8434993720703],[120.89181765625,43.866630475586],[120.787345,43.843843],[120.78271609375,43.8892147041016],[120.77197390625,43.8984712958985],[120.761549101563,43.9443599677734],[120.69197390625,44.0284712958985],[120.68271609375,44.054009015625],[120.72271609375,44.0884712958985],[120.737828398438,44.1060127998047],[120.692965117188,44.1341146064454],[120.68271609375,44.1792147041016],[120.65197390625,44.1884712958985],[120.64271609375,44.2292147041016],[120.57197390625,44.2384712958984],[120.546329375,44.2527791572266],[120.492066679688,44.2484188056641],[120.47271609375,44.2592147041016],[120.44197390625,44.2684712958985],[120.419854765625,44.2808132148438],[120.401715117188,44.3214638496094],[120.380225859375,44.3399764228516],[120.36271609375,44.3792147041016],[120.34197390625,44.3884712958984],[120.31125125,44.4102529121094],[120.31431765625,44.4484188056641],[120.291920195313,44.4885646796875],[120.2927746875,44.4991664863282],[120.28197390625,44.5084712958985],[120.27271609375,44.5192147041016],[120.24197390625,44.5284712958985],[120.23271609375,44.5392147041016],[120.21197390625,44.5484712958985],[120.187213164063,44.5772078681641],[120.148590117188,44.594442975586],[120.173150664063,44.6290840888672],[120.14197390625,44.6384712958985],[120.09689578125,44.6550240302735],[120.07271609375,44.7092147041016],[120.034254179688,44.758329694336],[119.98197390625,44.7884712958985],[119.97271609375,44.7992147041016],[119.90607546875,44.8532546210937],[119.8534778125,44.8767238593751],[119.836964140625,44.8958931708984],[119.756363554688,44.9201595283203],[119.718253203125,44.9643947578126],[119.6980871875,45.0095870185547],[119.6766028125,45.0480989814454],[119.66271609375,45.0792147041016],[119.639742460938,45.1116182685547],[119.60197390625,45.1284712958985],[119.57271609375,45.1492147041016],[119.51123171875,45.1877272773438],[119.480699492188,45.2231661201173],[119.332779570313,45.2501485419922],[119.327345,45.243843],[119.31142703125,45.2479274726563],[119.287345,45.2638430000001],[119.28271609375,45.2692147041016],[119.243365507813,45.3031191230469],[119.307345,45.3838430000001],[119.33170046875,45.3894869208985],[119.610308867188,45.3984340644532],[119.671534453125,45.4446511054688],[119.68170046875,45.4694869208985],[119.739527617188,45.4793099189454],[119.69298953125,45.5517641425782],[119.71170046875,45.5694869208984],[119.747345,45.5738430000001],[119.779991484375,45.5662783027344],[119.81408328125,45.5713167548829],[119.84298953125,45.5594869208985],[119.864117460938,45.5467421699219],[119.907345,45.553843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东胜区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.986143828125,39.9684511542969],[110.012345,39.9380397773437],[110.022215605469,39.9494948554688],[110.072923613281,39.9212026191406],[110.124642363281,39.9401943183594],[110.159722929688,39.8994753242188],[110.18271609375,39.8892153144531],[110.200413847656,39.8686757636719],[110.27271609375,39.8592153144532],[110.29197390625,39.8484706855469],[110.31271609375,39.8392153144531],[110.32197390625,39.8284706855469],[110.377345,39.8138430000001],[110.383780546875,39.7876454902344],[110.356080351563,39.7475258613281],[110.286126738281,39.7318447089844],[110.236341582031,39.7642653632812],[110.17158328125,39.780171125],[110.163260527344,39.7579274726563],[110.151429472656,39.7397585273438],[110.147345,39.713843],[110.132545195313,39.7191530585938],[110.122166777344,39.7185341621094],[110.074776640625,39.7312270332031],[110.024422636719,39.6922048164062],[109.971627226563,39.6759011054688],[109.972994414063,39.6529555488282],[109.906324492188,39.6708119941407],[109.856326933594,39.6979811835937],[109.822064238281,39.7085622382813],[109.812625761719,39.7191237617188],[109.799598417969,39.7307656074219],[109.757345,39.728247296875],[109.742345,39.7291408515625],[109.732108183594,39.7285305],[109.701009550781,39.7502529121094],[109.5666809375,39.7422475410157],[109.4894153125,39.7257399726563],[109.42310671875,39.7296913886719],[109.40158328125,39.7179946113282],[109.350094023438,39.7210634589844],[109.332625761719,39.7591237617188],[109.313863554688,39.7936513496094],[109.255999785156,39.8085622382813],[109.237345,39.763843],[109.213980742188,39.7839723945313],[109.20271609375,39.8092153144531],[109.19197390625,39.8184706855469],[109.18271609375,39.8292153144532],[109.159146757813,39.839731671875],[109.136043730469,39.9456508613281],[109.217345,39.9638430000001],[109.310675078125,39.9434865546876],[109.391871367188,39.9500099921875],[109.484542265625,39.9358888984376],[109.546095,39.913285138672],[109.592418242188,39.9495632148438],[109.617281523438,39.9207021308594],[109.673490019531,39.9053188300782],[109.742345,39.9108522773438],[109.772345,39.9084413886719],[109.782345,39.9092446113281],[109.811373320313,39.9069118476563],[109.822345,39.9196462226563],[109.839840117188,39.8993386054688],[109.88271609375,39.9184706855469],[109.89197390625,39.9392153144532],[109.9427746875,39.9584926582032],[109.941170683594,39.9784706855469],[109.986143828125,39.9684511542969]]]]}},{"type":"Feature","properties":{"name":"鄂托克旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.287860136719,40.0041823554688],[107.412720976563,39.9182631660156],[107.432345,39.9190407539063],[107.452345,39.9182485175781],[107.518463164063,39.9208693671876],[107.612154570313,39.8786525703125],[107.693299589844,39.8445034003906],[107.7569153125,39.8108412910157],[107.837345,39.8076540351563],[107.911905546875,39.8106093574219],[107.972535429688,39.7990334296875],[108.015457792969,39.783989484375],[108.112154570313,39.7586525703125],[108.152535429688,39.7490334296875],[108.202154570313,39.7286525703125],[108.332535429688,39.6890334296875],[108.35349734375,39.6779421210938],[108.63834109375,39.623559796875],[108.656964140625,39.6034621406251],[108.724010039063,39.5822341132813],[108.753336210938,39.5368239570313],[108.78236453125,39.509925763672],[108.792926054688,39.4546120429688],[108.832535429688,39.4290334296876],[108.897345,39.383843],[108.812139921875,39.2890175605469],[108.813758574219,39.2481923652344],[108.792174101563,39.249048078125],[108.759671660156,39.2266823554688],[108.685836210938,39.2460292792969],[108.619371367188,39.2249867988281],[108.552728300781,39.1632387519532],[108.54048953125,39.0736843085938],[108.512100859375,39.0200319648438],[108.512918730469,38.9993752265626],[108.479110136719,38.9354824042969],[108.483336210938,38.8288430000001],[108.482139921875,38.7986794257812],[108.505572539063,38.7543935371094],[108.470584746094,38.6882692695313],[108.473656035156,38.6107692695313],[108.461033964844,38.5869167304688],[108.462740507813,38.543843],[108.461353789063,38.508843],[108.462550078125,38.4786794257813],[108.432413359375,38.421723859375],[108.422457304688,38.31784690625],[108.407345,38.303843],[108.381392851563,38.3278896308594],[108.347725859375,38.364223859375],[108.325982695313,38.3843715644531],[108.21931765625,38.4347096992188],[108.132154570313,38.4686525703125],[108.0874621875,38.50292503125],[108.062916289063,38.5294142890625],[108.031773710938,38.5582717109375],[107.990247832031,38.6030873847657],[107.972535429688,38.6590334296875],[107.922205839844,38.6959499335937],[107.877345,38.6650795722656],[107.804862089844,38.6308718085938],[107.695662871094,38.6977333808594],[107.662535429688,38.7490334296876],[107.6357825,38.7879116035157],[107.610491972656,38.7343202949219],[107.425340605469,38.6469411445313],[107.357948027344,38.6496120429688],[107.283365507813,38.6757521796876],[107.151402617188,38.6897963691406],[107.102904082031,38.6878737617187],[107.042535429688,38.7090334296876],[106.979268828125,38.7211122871094],[106.827345,38.833843],[106.855367460938,38.8663674140626],[106.957283964844,38.9452126289063],[106.967345,39.043843],[106.992215605469,39.0386391425781],[107.007345,39.0392397285157],[107.031812773438,39.0382692695313],[107.052877226563,39.0494167304688],[107.075360136719,39.0485256171875],[107.092154570313,39.1190334296876],[107.102535429688,39.1586525703125],[107.112154570313,39.1990334296876],[107.122918730469,39.2193752265625],[107.121771269531,39.2483107734375],[107.132535429688,39.2686525703125],[107.1351965625,39.2786525703125],[107.056195097656,39.2242897773438],[107.042535429688,39.2390334296876],[106.932576933594,39.3009316230469],[106.952535429688,39.3386525703125],[106.962154570313,39.4330593085938],[106.947345,39.503843],[106.94298953125,39.5394863105469],[106.929227324219,39.6110732246094],[106.888023710938,39.6666481757813],[106.903160429688,39.6783315253907],[106.901605253906,39.688843],[106.904561796875,39.7088430000001],[106.899271269531,39.7446364570312],[106.88170046875,39.7581996894531],[106.868900175781,39.8041689277344],[106.91298953125,39.8381996894531],[106.92170046875,39.8494863105469],[106.95298953125,39.8581996894532],[106.963765898438,39.9092726875],[106.931322050781,39.9181996894531],[106.84298953125,39.8381996894531],[106.773482695313,39.8097524238282],[106.76298953125,39.8594863105469],[106.747345,39.863843],[106.713114042969,39.8933351875],[106.732789335938,39.9286025214844],[106.719559355469,40.038520734375],[106.761229277344,40.0744216132813],[106.79271609375,40.0884706855469],[106.8154309375,40.1011440253906],[106.857345,40.173843],[106.917345,40.173843],[106.917345,40.183843],[106.976507597656,40.1651113105469],[107.127894316406,40.0609401679687],[107.192816191406,40.0342726875001],[107.287860136719,40.0041823554688]]]]}},{"type":"Feature","properties":{"name":"达拉特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.467345,40.3938430000001],[110.470767851563,40.4060353828126],[110.479537382813,40.3972658515625],[110.467345,40.3938430000001]]],[[[110.467345,40.3938430000001],[110.474290800781,40.3701735664063],[110.492735625,40.3682936835938],[110.509039335938,40.3879201484375],[110.549234648438,40.3395290351562],[110.572806425781,40.3293056464844],[110.593533964844,40.317435529297],[110.621954375,40.3203322578125],[110.631883574219,40.3083803535157],[110.637345,40.303843],[110.641790800781,40.2782900214845],[110.684830351563,40.2438246894532],[110.680948515625,40.2126076484376],[110.701790800781,40.1782900214844],[110.713587675781,40.168843],[110.697323027344,40.1558180976563],[110.681678496094,40.1292031074219],[110.683011503906,40.1184828925781],[110.671790800781,40.0993959785156],[110.662899199219,40.0782900214844],[110.60812625,40.0344301582031],[110.592899199219,39.9982900214844],[110.581790800781,39.9793959785156],[110.571722441406,39.9555019355469],[110.482579375,39.9281923652345],[110.451761503906,39.9320253730469],[110.403311796875,39.9116091132813],[110.401678496094,39.8984828925781],[110.420050078125,39.8672304511719],[110.377345,39.8138430000001],[110.32197390625,39.8284706855469],[110.31271609375,39.8392153144531],[110.29197390625,39.8484706855469],[110.27271609375,39.8592153144532],[110.200413847656,39.8686757636719],[110.18271609375,39.8892153144531],[110.159722929688,39.8994753242188],[110.124642363281,39.9401943183594],[110.072923613281,39.9212026191406],[110.022215605469,39.9494948554688],[110.012345,39.9380397773437],[109.986143828125,39.9684511542969],[109.941170683594,39.9784706855469],[109.9427746875,39.9584926582032],[109.89197390625,39.9392153144532],[109.88271609375,39.9184706855469],[109.839840117188,39.8993386054688],[109.822345,39.9196462226563],[109.811373320313,39.9069118476563],[109.782345,39.9092446113281],[109.772345,39.9084413886719],[109.742345,39.9108522773438],[109.673490019531,39.9053188300782],[109.617281523438,39.9207021308594],[109.592418242188,39.9495632148438],[109.546095,39.913285138672],[109.484542265625,39.9358888984376],[109.391871367188,39.9500099921875],[109.310675078125,39.9434865546876],[109.217345,39.9638430000001],[109.221790800781,39.9793959785156],[109.263345976563,40.0490383125],[109.24656375,40.0624770332032],[109.212345,40.0582216621094],[109.167345,40.0638185859375],[109.122345,40.0582216621094],[109.099510527344,40.0610610175782],[109.103006621094,40.0891567207032],[109.068956328125,40.1645717597657],[109.082899199219,40.1882900214844],[109.091790800781,40.2193959785156],[109.112552519531,40.236020734375],[109.121790800781,40.296645734375],[109.033699980469,40.309468],[109.017142363281,40.3859975410156],[108.992896757813,40.4054128242188],[108.982899199219,40.4314345527344],[109.022899199219,40.4482900214844],[109.055655546875,40.4722194648438],[109.037735625,40.518843],[109.047345,40.5438430000001],[109.066532011719,40.5528078437501],[109.081461210938,40.5266249824219],[109.109095488281,40.5370412421875],[109.137345,40.523843],[109.140767851563,40.5116506171875],[109.149537382813,40.5204201484376],[109.137345,40.523843],[109.144823027344,40.5364565253907],[109.171065703125,40.5175649238282],[109.227735625,40.5095388007813],[109.220399199219,40.4881752753906],[109.229210234375,40.4801210761719],[109.243189726563,40.5037038398438],[109.282345,40.4902577949219],[109.313189726563,40.5008510566407],[109.326685820313,40.4780861640626],[109.393624296875,40.4701210761719],[109.404381132813,40.4519753242188],[109.423040800781,40.4834499335938],[109.427345,40.513843],[109.437345,40.513843],[109.437345,40.523843],[109.508355742188,40.5149709296876],[109.541951933594,40.5395131660156],[109.552703886719,40.5381764960938],[109.580135527344,40.5543019843751],[109.622061796875,40.5381862617188],[109.63431765625,40.5397109199219],[109.631663847656,40.5183620429688],[109.692891875,40.48374534375],[109.772799101563,40.5018959785157],[109.802799101563,40.4981642890625],[109.812799101563,40.5106520820312],[109.848177519531,40.5062514472657],[109.906512480469,40.5314345527344],[109.964740019531,40.5241921210938],[110.000128203125,40.5033901191407],[110.017345,40.533843],[110.037345,40.533843],[110.04978640625,40.5177260566406],[110.073736601563,40.521264875],[110.1590246875,40.504868390625],[110.167345,40.553843],[110.197345,40.553843],[110.201158476563,40.5476552558594],[110.231844511719,40.5371974921876],[110.237345,40.513843],[110.237345,40.5038430000001],[110.247345,40.5038430000001],[110.238973417969,40.4697585273438],[110.273260527344,40.4779274726563],[110.296068144531,40.4927797675782],[110.317345,40.483843],[110.317345,40.473843],[110.307345,40.473843],[110.294537382813,40.4688430000001],[110.307345,40.4638430000001],[110.297271757813,40.4398598457031],[110.36033328125,40.4539968085938],[110.371429472656,40.4379274726563],[110.393260527344,40.4297585273438],[110.431429472656,40.3979274726562],[110.467345,40.3938430000001]]]]}},{"type":"Feature","properties":{"name":"鄂托克前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.042535429688,38.7090334296876],[107.102904082031,38.6878737617187],[107.151402617188,38.6897963691406],[107.283365507813,38.6757521796876],[107.357948027344,38.6496120429688],[107.425340605469,38.6469411445313],[107.610491972656,38.7343202949219],[107.6357825,38.7879116035157],[107.662535429688,38.7490334296876],[107.695662871094,38.6977333808594],[107.804862089844,38.6308718085938],[107.877345,38.6650795722656],[107.922205839844,38.6959499335937],[107.972535429688,38.6590334296875],[107.990247832031,38.6030873847657],[108.031773710938,38.5582717109375],[108.062916289063,38.5294142890625],[108.0874621875,38.50292503125],[108.132154570313,38.4686525703125],[108.21931765625,38.4347096992188],[108.325982695313,38.3843715644531],[108.347725859375,38.364223859375],[108.381392851563,38.3278896308594],[108.407345,38.303843],[108.431790800781,38.2025429511719],[108.382899199219,38.1082900214844],[108.351790800781,38.0593959785157],[108.342899199219,38.0082900214844],[108.285948515625,37.9736989570313],[108.301790800781,37.9182900214844],[108.332899199219,37.8793959785157],[108.358858671875,37.8366542792969],[108.409556914063,37.7960549140626],[108.446131621094,37.7503823066406],[108.51138796875,37.7262575507813],[108.537345,37.693843],[108.531883574219,37.6893056464844],[108.51013796875,37.6870888496094],[108.418665800781,37.6480861640626],[108.307345,37.633843],[108.296058378906,37.6425551582031],[108.28298953125,37.6594863105469],[108.223453398438,37.6681996894531],[108.18298953125,37.6381996894532],[108.140499296875,37.6208095527344],[108.09298953125,37.6394863105469],[108.01047,37.6611476875001],[108.014561796875,37.688843],[108.009271269531,37.7246364570312],[107.989049101563,37.7402468085937],[107.969657011719,37.7876296210938],[107.93170046875,37.7981996894532],[107.90298953125,37.8094863105469],[107.86170046875,37.8181996894531],[107.829906035156,37.83069846875],[107.812203398438,37.8280825019531],[107.7345715625,37.8460720039063],[107.688204375,37.8804482246094],[107.667838164063,37.8774379707031],[107.657345,37.863843],[107.561053496094,37.8918849921875],[107.490335722656,37.9405471015625],[107.427471953125,37.9380556464844],[107.402535429688,37.9408559394532],[107.422535429688,37.9786525703125],[107.432154570313,37.9997743964844],[107.388238554688,38.0205007148438],[107.352535429688,38.0590334296876],[107.323436308594,38.0859950996094],[107.242154570313,38.1086525703126],[107.184188261719,38.1485402656251],[107.15033328125,38.1586525703125],[107.112535429688,38.1386525703125],[107.043309355469,38.1254360175781],[106.947623320313,38.1292287421875],[106.817345,38.163843],[106.769095488281,38.1722389960938],[106.699293242188,38.2132717109375],[106.611790800781,38.2382900214844],[106.571834746094,38.2536489082031],[106.522899199219,38.2893959785157],[106.487913847656,38.3106459785157],[106.477345,38.323843],[106.49271609375,38.3284706855469],[106.595787382813,38.3891078925781],[106.646790800781,38.4775710273438],[106.657345,38.603843],[106.701488066406,38.7138857246094],[106.761207304688,38.7599806953126],[106.804769316406,38.8164174628907],[106.827345,38.833843],[106.979268828125,38.7211122871094],[107.042535429688,38.7090334296876]]]]}},{"type":"Feature","properties":{"name":"杭锦旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.840025664063,40.87808128125],[107.900172148438,40.8436330390625],[107.957345,40.8651149726563],[108.004212675781,40.847505109375],[108.032345,40.8503713203125],[108.057345,40.8478237128907],[108.082345,40.8503713203125],[108.107345,40.8478237128907],[108.158358183594,40.8530239082032],[108.167345,40.863843],[108.212257109375,40.84962425],[108.229676542969,40.8127138496094],[108.342345,40.8082485175782],[108.36935671875,40.8093190742188],[108.42630984375,40.7957521796875],[108.442154570313,40.7786525703126],[108.472535429688,40.7590334296876],[108.482154570313,40.7386525703126],[108.571854277344,40.7172866035157],[108.551846953125,40.6987490058594],[108.601986113281,40.6828749824219],[108.602542753906,40.668843],[108.602139921875,40.658657453125],[108.632535429688,40.6490334296876],[108.643231230469,40.6374904609375],[108.687684355469,40.63925315625],[108.732174101563,40.608637921875],[108.773099394531,40.6102602363282],[108.754342070313,40.5567421699219],[108.825494414063,40.5595619941407],[108.904019804688,40.5488307929688],[108.942181425781,40.528637921875],[108.957345,40.5292397285156],[108.972508574219,40.528637921875],[108.992154570313,40.5390334296876],[109.047345,40.5438430000001],[109.037735625,40.518843],[109.055655546875,40.4722194648438],[109.022899199219,40.4482900214844],[108.982899199219,40.4314345527344],[108.992896757813,40.4054128242188],[109.017142363281,40.3859975410156],[109.033699980469,40.309468],[109.121790800781,40.296645734375],[109.112552519531,40.236020734375],[109.091790800781,40.2193959785156],[109.082899199219,40.1882900214844],[109.068956328125,40.1645717597657],[109.103006621094,40.0891567207032],[109.099510527344,40.0610610175782],[109.122345,40.0582216621094],[109.167345,40.0638185859375],[109.212345,40.0582216621094],[109.24656375,40.0624770332032],[109.263345976563,40.0490383125],[109.221790800781,39.9793959785156],[109.217345,39.9638430000001],[109.136043730469,39.9456508613281],[109.159146757813,39.839731671875],[109.18271609375,39.8292153144532],[109.19197390625,39.8184706855469],[109.20271609375,39.8092153144531],[109.213980742188,39.7839723945313],[109.237345,39.763843],[109.267064238281,39.6829128242188],[109.191595488281,39.669145734375],[109.21197390625,39.6326247382813],[109.200391875,39.5898915839844],[109.172345,39.5876381660157],[109.107772246094,39.5928261542969],[109.077164335938,39.5664565253906],[109.062154570313,39.5166017890625],[109.033375273438,39.4918068671875],[109.066795683594,39.4319057441407],[109.04271609375,39.4184706855469],[109.019722929688,39.4082106757813],[109.007345,39.3938430000001],[108.981429472656,39.3897585273438],[108.933609648438,39.3749355292969],[108.897345,39.383843],[108.832535429688,39.4290334296876],[108.792926054688,39.4546120429688],[108.78236453125,39.509925763672],[108.753336210938,39.5368239570313],[108.724010039063,39.5822341132813],[108.656964140625,39.6034621406251],[108.63834109375,39.623559796875],[108.35349734375,39.6779421210938],[108.332535429688,39.6890334296875],[108.202154570313,39.7286525703125],[108.152535429688,39.7490334296875],[108.112154570313,39.7586525703125],[108.015457792969,39.783989484375],[107.972535429688,39.7990334296875],[107.911905546875,39.8106093574219],[107.837345,39.8076540351563],[107.7569153125,39.8108412910157],[107.693299589844,39.8445034003906],[107.612154570313,39.8786525703125],[107.518463164063,39.9208693671876],[107.452345,39.9182485175781],[107.432345,39.9190407539063],[107.412720976563,39.9182631660156],[107.287860136719,40.0041823554688],[107.192816191406,40.0342726875001],[107.127894316406,40.0609401679687],[106.976507597656,40.1651113105469],[106.917345,40.183843],[106.921519804688,40.1896681953125],[107.020907011719,40.2567360664063],[107.035194121094,40.3279994941406],[107.073170195313,40.3380178046876],[107.089869414063,40.3613185859375],[107.171329375,40.3828090644531],[107.15123171875,40.4489662910156],[107.157345,40.4638430000001],[107.160704375,40.470483625],[107.183985625,40.477202375],[107.197391386719,40.5037013984375],[107.161073027344,40.5220742011719],[107.157345,40.5738430000001],[107.176097441406,40.5808888984376],[107.202806425781,40.5693056464844],[107.235169707031,40.5507704902344],[107.278958769531,40.6517360664063],[107.317345,40.6478237128907],[107.337345,40.6498622871094],[107.387730742188,40.6447267890626],[107.421883574219,40.6693056464844],[107.442806425781,40.6783803535157],[107.484268828125,40.7111952949219],[107.533980742188,40.70612815625],[107.572806425781,40.7383803535156],[107.585745878906,40.7682118964844],[107.617345,40.7738430000001],[107.632806425781,40.7693056464844],[107.664212675781,40.757505109375],[107.687374296875,40.7598647285157],[107.702200957031,40.8103871894532],[107.722786894531,40.8082888007813],[107.73451296875,40.8611696601563],[107.780228300781,40.8565102363281],[107.820633574219,40.8333681464844],[107.840025664063,40.87808128125]]]]}},{"type":"Feature","properties":{"name":"乌审旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.007345,39.3938430000001],[109.0455090625,39.3764662910156],[109.106077910156,39.3905007148438],[109.13298953125,39.3794863105469],[109.142928496094,39.3209731269531],[109.177916289063,39.3158034492188],[109.198663359375,39.36649925],[109.243138457031,39.3839821601563],[109.321131621094,39.3520619941407],[109.325921660156,39.3196401191406],[109.2979309375,39.2732363105469],[109.355435820313,39.2306032539063],[109.386456328125,39.2260182929688],[109.378746367188,39.2781996894532],[109.448084746094,39.2687953925782],[109.47170046875,39.2381996894531],[109.501693144531,39.2259242988282],[109.533463164063,39.2014028144532],[109.531605253906,39.188843],[109.533463164063,39.1762831855469],[109.50298953125,39.1527614570313],[109.51170046875,39.1281996894532],[109.55170046875,39.0973244453125],[109.541385527344,39.0746804023438],[109.509901152344,39.0503786445313],[109.514520292969,39.0191164375],[109.47880984375,38.997757794922],[109.483084746094,38.968843],[109.481522246094,38.9582729316407],[109.50298953125,38.9494863105469],[109.514451933594,38.9346364570313],[109.542345,38.9178115058594],[109.56170046875,38.9294863105469],[109.58298953125,38.9381996894532],[109.622252226563,38.9699318671875],[109.655345488281,38.9499697089844],[109.677345,38.9438430000001],[109.667345,38.923843],[109.662064238281,38.9191237617188],[109.62392703125,38.8591579414063],[109.602064238281,38.8491237617188],[109.592625761719,38.8385622382813],[109.546763945313,38.805278546875],[109.5070715625,38.8330043769531],[109.452237578125,38.7905117011719],[109.432625761719,38.7685622382813],[109.403721953125,38.7427358222657],[109.392232695313,38.7177040839844],[109.332064238281,38.6991237617188],[109.319534941406,38.6718251777344],[109.352806425781,38.628891828125],[109.336912871094,38.5996450019532],[109.275277128906,38.6217604804688],[109.206663847656,38.5654653144531],[109.173189726563,38.5279994941407],[109.124141875,38.4841762519531],[109.051873808594,38.4317299628906],[109.053909941406,38.3975783515626],[109.002330351563,38.3514919257813],[108.982625761719,38.3085622382813],[108.961947050781,38.2705080390626],[108.963756132813,38.2401784492188],[108.932723417969,38.1957509589844],[108.955386992188,38.1540419746094],[109.047345,38.1038430000001],[109.06486453125,38.0917470527344],[109.048409453125,38.0525661445313],[109.067496367188,38.0232546210938],[109.031429472656,38.0097585273438],[109.003260527344,37.9679274726563],[108.981429472656,37.9597585273438],[108.960784941406,37.929858625],[108.937345,37.923843],[108.922769804688,37.9373476386719],[108.912535429688,37.9590334296875],[108.891773710938,37.9782717109375],[108.865496855469,38.0339467597656],[108.795145292969,38.0586525703125],[108.817860136719,37.993843],[108.788172636719,37.9091384101563],[108.792904082031,37.7897072578125],[108.781073027344,37.7559474921875],[108.783670683594,37.6904262519531],[108.712154570313,37.6790334296876],[108.692535429688,37.6686525703125],[108.619918242188,37.6513552070313],[108.550164824219,37.6800075507813],[108.537345,37.693843],[108.51138796875,37.7262575507813],[108.446131621094,37.7503823066406],[108.409556914063,37.7960549140626],[108.358858671875,37.8366542792969],[108.332899199219,37.8793959785157],[108.301790800781,37.9182900214844],[108.285948515625,37.9736989570313],[108.342899199219,38.0082900214844],[108.351790800781,38.0593959785157],[108.382899199219,38.1082900214844],[108.431790800781,38.2025429511719],[108.407345,38.303843],[108.422457304688,38.31784690625],[108.432413359375,38.421723859375],[108.462550078125,38.4786794257813],[108.461353789063,38.508843],[108.462740507813,38.543843],[108.461033964844,38.5869167304688],[108.473656035156,38.6107692695313],[108.470584746094,38.6882692695313],[108.505572539063,38.7543935371094],[108.482139921875,38.7986794257812],[108.483336210938,38.8288430000001],[108.479110136719,38.9354824042969],[108.512918730469,38.9993752265626],[108.512100859375,39.0200319648438],[108.54048953125,39.0736843085938],[108.552728300781,39.1632387519532],[108.619371367188,39.2249867988281],[108.685836210938,39.2460292792969],[108.759671660156,39.2266823554688],[108.792174101563,39.249048078125],[108.813758574219,39.2481923652344],[108.812139921875,39.2890175605469],[108.897345,39.383843],[108.933609648438,39.3749355292969],[108.981429472656,39.3897585273438],[109.007345,39.3938430000001]]]]}},{"type":"Feature","properties":{"name":"伊金霍洛旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.350094023438,39.7210634589844],[109.40158328125,39.7179946113282],[109.42310671875,39.7296913886719],[109.4894153125,39.7257399726563],[109.5666809375,39.7422475410157],[109.701009550781,39.7502529121094],[109.732108183594,39.7285305],[109.742345,39.7291408515625],[109.757345,39.728247296875],[109.799598417969,39.7307656074219],[109.812625761719,39.7191237617188],[109.822064238281,39.7085622382813],[109.856326933594,39.6979811835937],[109.906324492188,39.6708119941407],[109.972994414063,39.6529555488282],[109.971627226563,39.6759011054688],[110.024422636719,39.6922048164062],[110.074776640625,39.7312270332031],[110.122166777344,39.7185341621094],[110.132545195313,39.7191530585938],[110.147345,39.713843],[110.181790800781,39.6943679023438],[110.159801054688,39.6872939277344],[110.141829863281,39.6895290351562],[110.131234160156,39.6524721503906],[110.10998171875,39.6163173652344],[110.123116484375,39.5851454902344],[110.166922636719,39.5593959785156],[110.224847441406,39.573716046875],[110.220057402344,39.6122377753907],[110.267345,39.6063552070313],[110.318109160156,39.6126699042969],[110.363018828125,39.5592531562501],[110.360748320313,39.5410048652344],[110.372899199219,39.5093959785157],[110.381790800781,39.4782900214844],[110.42388796875,39.4662538886719],[110.420477324219,39.4388198066406],[110.427345,39.383843],[110.4107825,39.34837425],[110.424971953125,39.3385768867187],[110.393260527344,39.3179274726563],[110.377345,39.313843],[110.363841582031,39.3284181953125],[110.329241972656,39.3447463203125],[110.261783476563,39.3996462226563],[110.262550078125,39.419028546875],[110.232154570313,39.4286525703125],[110.212508574219,39.439048078125],[110.202215605469,39.4386391425782],[110.134412871094,39.4528249335938],[110.112535429688,39.4160951972657],[110.173297148438,39.3597963691407],[110.208387480469,39.2854470039063],[110.009417753906,39.2079677558594],[109.959486113281,39.2099477363282],[109.904647246094,39.2691323066407],[109.891009550781,39.2685915351563],[109.865972929688,39.2415700507813],[109.892535429688,39.2290334296875],[109.957222929688,39.1894252753907],[109.890760527344,39.1406764960938],[109.912706328125,39.1087868476563],[109.90033328125,39.0990334296875],[109.848858671875,39.1262697578126],[109.832535429688,39.1086525703125],[109.817684355469,39.0948928046875],[109.762154570313,39.0590334296875],[109.712535429688,39.0186525703126],[109.670758085938,38.9880104804688],[109.677345,38.9438430000001],[109.655345488281,38.9499697089844],[109.622252226563,38.9699318671875],[109.58298953125,38.9381996894532],[109.56170046875,38.9294863105469],[109.542345,38.9178115058594],[109.514451933594,38.9346364570313],[109.50298953125,38.9494863105469],[109.481522246094,38.9582729316407],[109.483084746094,38.968843],[109.47880984375,38.997757794922],[109.514520292969,39.0191164375],[109.509901152344,39.0503786445313],[109.541385527344,39.0746804023438],[109.55170046875,39.0973244453125],[109.51170046875,39.1281996894532],[109.50298953125,39.1527614570313],[109.533463164063,39.1762831855469],[109.531605253906,39.188843],[109.533463164063,39.2014028144532],[109.501693144531,39.2259242988282],[109.47170046875,39.2381996894531],[109.448084746094,39.2687953925782],[109.378746367188,39.2781996894532],[109.386456328125,39.2260182929688],[109.355435820313,39.2306032539063],[109.2979309375,39.2732363105469],[109.325921660156,39.3196401191406],[109.321131621094,39.3520619941407],[109.243138457031,39.3839821601563],[109.198663359375,39.36649925],[109.177916289063,39.3158034492188],[109.142928496094,39.3209731269531],[109.13298953125,39.3794863105469],[109.106077910156,39.3905007148438],[109.0455090625,39.3764662910156],[109.007345,39.3938430000001],[109.019722929688,39.4082106757813],[109.04271609375,39.4184706855469],[109.066795683594,39.4319057441407],[109.033375273438,39.4918068671875],[109.062154570313,39.5166017890625],[109.077164335938,39.5664565253906],[109.107772246094,39.5928261542969],[109.172345,39.5876381660157],[109.200391875,39.5898915839844],[109.21197390625,39.6326247382813],[109.191595488281,39.669145734375],[109.267064238281,39.6829128242188],[109.237345,39.763843],[109.255999785156,39.8085622382813],[109.313863554688,39.7936513496094],[109.332625761719,39.7591237617188],[109.350094023438,39.7210634589844]]]]}},{"type":"Feature","properties":{"name":"准格尔旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.437345,39.6238430000001],[111.460885039063,39.6187795234375],[111.449852324219,39.6010243964844],[111.437345,39.6238430000001]]],[[[111.437345,39.6238430000001],[111.431790800781,39.6193959785157],[111.420960722656,39.5449758125001],[111.425350371094,39.5096767402344],[111.363275175781,39.4745803046875],[111.357345,39.453843],[111.3482825,39.4237392402344],[111.282345,39.4184413886719],[111.160369902344,39.4282424140626],[111.12197390625,39.3792153144532],[111.117345,39.3638430000001],[111.104742460938,39.3492153144531],[111.081917753906,39.378540265625],[111.084398222656,39.40940940625],[111.053702421875,39.4069435859376],[111.051302519531,39.4368288398438],[111.06197390625,39.4492153144532],[111.088949003906,39.47245628125],[111.11197390625,39.5092153144531],[111.141615019531,39.5347524238282],[111.145106230469,39.5782192207032],[111.12306765625,39.5799904609376],[111.087552519531,39.5548085761719],[111.019674101563,39.5602626777344],[110.952633085938,39.5184181953125],[110.937747832031,39.519614484375],[110.882757597656,39.5071205878907],[110.86197390625,39.4892153144532],[110.816292753906,39.4301674628906],[110.79197390625,39.4092153144532],[110.778089628906,39.3930995917969],[110.737725859375,39.358325421875],[110.718260527344,39.2936733222657],[110.682640410156,39.2684169746094],[110.662345,39.2700478339844],[110.616065703125,39.2663295722656],[110.561500273438,39.3133400703125],[110.563387480469,39.3368288398438],[110.519422636719,39.3878603339844],[110.495328398438,39.3598940253907],[110.44271609375,39.3792153144532],[110.427345,39.383843],[110.420477324219,39.4388198066406],[110.42388796875,39.4662538886719],[110.381790800781,39.4782900214844],[110.372899199219,39.5093959785157],[110.360748320313,39.5410048652344],[110.363018828125,39.5592531562501],[110.318109160156,39.6126699042969],[110.267345,39.6063552070313],[110.220057402344,39.6122377753907],[110.224847441406,39.573716046875],[110.166922636719,39.5593959785156],[110.123116484375,39.5851454902344],[110.10998171875,39.6163173652344],[110.131234160156,39.6524721503906],[110.141829863281,39.6895290351562],[110.159801054688,39.6872939277344],[110.181790800781,39.6943679023438],[110.147345,39.713843],[110.151429472656,39.7397585273438],[110.163260527344,39.7579274726563],[110.17158328125,39.780171125],[110.236341582031,39.7642653632812],[110.286126738281,39.7318447089844],[110.356080351563,39.7475258613281],[110.383780546875,39.7876454902344],[110.377345,39.8138430000001],[110.420050078125,39.8672304511719],[110.401678496094,39.8984828925781],[110.403311796875,39.9116091132813],[110.451761503906,39.9320253730469],[110.482579375,39.9281923652345],[110.571722441406,39.9555019355469],[110.581790800781,39.9793959785156],[110.592899199219,39.9982900214844],[110.60812625,40.0344301582031],[110.662899199219,40.0782900214844],[110.671790800781,40.0993959785156],[110.683011503906,40.1184828925781],[110.681678496094,40.1292031074219],[110.697323027344,40.1558180976563],[110.713587675781,40.168843],[110.701790800781,40.1782900214844],[110.680948515625,40.2126076484376],[110.684830351563,40.2438246894532],[110.641790800781,40.2782900214845],[110.637345,40.303843],[110.663260527344,40.3079274726563],[110.682691679688,40.32058128125],[110.691673613281,40.3075722480469],[110.711673613281,40.312055890625],[110.723016386719,40.295630109375],[110.76720828125,40.3055373359375],[110.761051054688,40.2780690742188],[110.783260527344,40.2697585273438],[110.804459257813,40.2559548164063],[110.836964140625,40.2632411933594],[110.83103640625,40.2896755195313],[110.869771757813,40.2979274726563],[110.850406523438,40.2681899238282],[110.883260527344,40.2597585273438],[110.9191028125,40.2447048164063],[110.959136992188,40.2757314277344],[110.97509890625,40.25261253125],[111.01830203125,40.2807460761719],[111.027345,40.293843],[111.0427746875,40.2891970039063],[111.041121855469,40.2686257148438],[111.115484648438,40.2550612617188],[111.18173953125,40.2135634589844],[111.217100859375,40.1725197578126],[111.30271609375,40.1492153144531],[111.367345,40.093843],[111.376976347656,40.0601528144532],[111.409276152344,40.0342897773437],[111.421790800781,39.9482900214844],[111.441790800781,39.9322743964844],[111.432899199219,39.8982900214844],[111.411790800781,39.8693959785156],[111.402899199219,39.8282900214844],[111.391666289063,39.8192958808594],[111.393248320313,39.8065785957031],[111.371790800781,39.7893959785156],[111.362899199219,39.7682900214844],[111.348870878906,39.7444264960938],[111.386278105469,39.6977138496094],[111.433682890625,39.6689186835938],[111.42146609375,39.65913596875],[111.427345,39.643843],[111.437345,39.6238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿荣旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.04353640625,49.2954952216797],[123.094991484375,49.2667864204101],[123.152174101563,49.2792586494141],[123.177345,49.2772359443359],[123.202691679688,49.2792726875],[123.21197390625,49.2584709907227],[123.22271609375,49.2492150092774],[123.23197390625,49.2184709907227],[123.284361601563,49.2089153266602],[123.28056765625,49.1617107368164],[123.306641875,49.1314461494141],[123.343902617188,49.1177626777344],[123.380103789063,49.1206719184571],[123.402345,49.1082637763672],[123.430162382813,49.1237850166016],[123.459742460938,49.0894539619141],[123.472345,49.0884413886719],[123.487345,49.089646527832],[123.502345,49.0884413886719],[123.512667265625,49.0892708564453],[123.522022734375,49.0784151435548],[123.548990507813,49.0805825019532],[123.567345,49.0738430000001],[123.56298953125,49.0581993842773],[123.5444934375,49.0111495185547],[123.581690703125,48.9959242988281],[123.6086340625,48.9751305366211],[123.62170046875,48.9581993842774],[123.644449492188,48.9406392646484],[123.62298953125,48.8881993842774],[123.6057825,48.8596721625977],[123.64298953125,48.8094866157227],[123.65170046875,48.7781993842774],[123.68298953125,48.7594866157227],[123.724146757813,48.7003029609375],[123.76459109375,48.6890407539063],[123.761607695313,48.668843],[123.763082304688,48.6588430000001],[123.75298953125,48.5905294013672],[123.772183867188,48.5778823066406],[123.812110625,48.5935790229492],[123.83170046875,48.5681993842774],[123.90298953125,48.5594866157227],[123.9319153125,48.5380406928712],[123.949190703125,48.540593793457],[123.994874296875,48.5272734809571],[124.032579375,48.5500167060547],[124.042857695313,48.5367018867188],[124.086832304688,48.5432006049805],[124.126143828125,48.5194866157227],[124.18298953125,48.5281993842774],[124.191832304688,48.5396575141602],[124.202345,48.5381041694337],[124.23978640625,48.5436370063477],[124.247345,48.533843],[124.232799101563,48.5175618720703],[124.123189726563,48.4579991889649],[124.079058867188,48.4377455878907],[123.991783476563,48.3744057441406],[123.932628203125,48.3285616279297],[123.892061796875,48.2991243720704],[123.852628203125,48.2685616279297],[123.752061796875,48.1991243720703],[123.561265898438,48.0324263740235],[123.501798125,48.0110878730469],[123.422061796875,47.9891243720704],[123.352628203125,47.9685616279297],[123.287345,47.953843],[123.188175078125,47.9592720771485],[123.15357546875,47.9579006171875],[123.132535429688,47.9690334296876],[123.105689726563,47.9817024970704],[123.052154570313,47.9986525703125],[123.018482695313,48.0218227363281],[123.001031523438,48.0406587958984],[123.003072539063,48.0922499824219],[122.945909453125,48.1667989326172],[122.931846953125,48.2112166572266],[122.932906523438,48.2379787421876],[122.91986453125,48.2751790595703],[122.844517851563,48.34499534375],[122.822535429688,48.3790334296876],[122.794112578125,48.4053682685547],[122.739913359375,48.4225276923829],[122.74412234375,48.5286559272461],[122.675548125,48.5449901557617],[122.65252078125,48.5698409248048],[122.622178984375,48.5686382270508],[122.602511015625,48.5790477729492],[122.592345,48.578644940918],[122.5817590625,48.5790642524414],[122.582550078125,48.5990200019531],[122.564620390625,48.6156310249023],[122.513219023438,48.588430097168],[122.487345,48.593843],[122.482896757813,48.5993959785156],[122.4038684375,48.6108983588867],[122.377345,48.6075991035157],[122.362345,48.6094649482422],[122.343609648438,48.6071343208008],[122.29271609375,48.639511334961],[122.251842070313,48.6344268012696],[122.212628203125,48.6495000434571],[122.201890898438,48.6481645942383],[122.1887121875,48.6646251655274],[122.193013945313,48.6992351508789],[122.154400664063,48.7520964790039],[122.139141875,48.7883095527344],[122.0771496875,48.7990975166016],[122.042896757813,48.857848432129],[122.077345,48.863843],[122.147550078125,48.831237104004],[122.197037382813,48.8272606635742],[122.28271609375,48.8384709907227],[122.30197390625,48.8492150092774],[122.381339140625,48.8613085151367],[122.382745390625,48.878843],[122.381944609375,48.8888430000001],[122.385025664063,48.9272243476562],[122.36271609375,48.9464458442383],[122.406090117188,48.9505510688477],[122.45291140625,48.9467885566407],[122.4519153125,48.959189069336],[122.47271609375,48.9684709907227],[122.48197390625,48.9792150092774],[122.53271609375,49.0084709907227],[122.550142851563,49.0475261665039],[122.58197390625,49.0592150092774],[122.614586210938,49.0690340400391],[122.63197390625,49.0892150092774],[122.66271609375,49.1084709907227],[122.67197390625,49.1192150092774],[122.70271609375,49.1284709907227],[122.741490507813,49.1559618354493],[122.787345,49.1596465278321],[122.802681914063,49.1584142280274],[122.825035429688,49.1941042304688],[122.930113554688,49.2538426948242],[123.04353640625,49.2954952216797]]]]}},{"type":"Feature","properties":{"name":"陈巴尔虎旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.477345,49.8338430000001],[118.464537382813,49.8388430000001],[118.477345,49.8438430000001],[118.477345,49.8338430000001]]],[[[118.477345,49.8338430000001],[118.490152617188,49.8388430000001],[118.477345,49.8438430000001],[118.497735625,49.880263288086],[118.512857695313,49.8780284858399],[118.5260559375,49.8951305366212],[118.564283476563,49.924636762207],[118.622945585938,49.9409712958985],[118.642857695313,49.9380284858399],[118.657974882813,49.9576161933594],[118.728595,49.9471807075196],[118.78170046875,49.9594866157227],[118.84298953125,49.9681993842774],[118.87205203125,49.9796251655274],[118.892345,49.9766265083008],[118.947345,49.984753949707],[118.992379179688,49.9780989814453],[119.062310820313,49.9895870185548],[119.077345,49.9873653388672],[119.099425078125,49.9906282783204],[119.12170046875,50.0194866157227],[119.13599734375,50.0305202460938],[119.156954375,50.0274233222657],[119.184019804688,50.0624935126953],[119.181031523438,50.0827315498047],[119.230806914063,50.0753755927735],[119.248365507813,50.0981218696289],[119.282261992188,50.1119954658204],[119.30170046875,50.1594866157227],[119.33298953125,50.1681993842773],[119.337345,50.173843],[119.437779570313,50.1300148750001],[119.530797148438,50.1263280463867],[119.582535429688,50.1386522651368],[119.650557890625,50.1803011298829],[119.721461210938,50.1774907661133],[119.750250273438,50.2085616279297],[119.76935671875,50.2093190742188],[119.84552859375,50.1911748481446],[119.876871367188,50.1319371772462],[119.845235625,50.1026216865235],[119.897979765625,50.030712506836],[120.035338164063,49.9801116157227],[120.11650515625,49.9768944526367],[120.202535429688,49.9886522651368],[120.246964140625,50.0042241645508],[120.472535429688,50.0186522651367],[120.522154570313,50.0290337348633],[120.57576296875,50.0392684150391],[120.63244265625,50.0591344428712],[120.64834109375,50.0419731879883],[120.743682890625,50.0790999580079],[120.775074492188,50.1129805732422],[120.802154570313,50.0986522651367],[120.832550078125,50.0890288520508],[120.8317590625,50.0690337348633],[120.862535429688,50.0786522651368],[120.905499296875,50.108215253418],[120.942154570313,50.0686522651368],[120.996705351563,50.0474089790039],[121.0323059375,50.0285720039063],[121.047345,50.0338430000001],[121.042398710938,49.9842974067383],[121.001881132813,49.9593056464844],[120.96693484375,49.9101174140625],[120.941881132813,49.8893056464845],[120.928267851563,49.872918012207],[120.89310671875,49.8437071967773],[120.91375125,49.8076549506836],[120.911324492188,49.783843],[120.91345828125,49.7629354072266],[120.902808867188,49.7383803535156],[120.87568484375,49.726617963379],[120.870836210938,49.6790267158203],[120.921881132813,49.6475398994141],[120.912808867188,49.6283803535157],[120.849952421875,49.619017560547],[120.82603640625,49.5902306342774],[120.772515898438,49.5783159614258],[120.745113554688,49.5811092353516],[120.691881132813,49.5693056464844],[120.672808867188,49.5583803535157],[120.597047148438,49.5255242133789],[120.576280546875,49.5005223823243],[120.541793242188,49.4792507148438],[120.543721953125,49.4603575874024],[120.522808867188,49.4483803535157],[120.463057890625,49.4308470893555],[120.461793242188,49.4184197211914],[120.485455351563,49.4081575751954],[120.501881132813,49.3883803535156],[120.533853789063,49.3686592841798],[120.530855742188,49.3392333198243],[120.548267851563,49.3247679877931],[120.561881132813,49.3083803535156],[120.572808867188,49.2993056464844],[120.577345,49.293843],[120.567345,49.293843],[120.550787382813,49.2877626777344],[120.53209109375,49.2892650581055],[120.48271609375,49.2684709907227],[120.45197390625,49.2592150092774],[120.40271609375,49.2384709907227],[120.37271609375,49.2326247382813],[120.392999296875,49.2689733100586],[120.38197390625,49.2784709907227],[120.37271609375,49.2892150092774],[120.36197390625,49.2984709907227],[120.347457304688,49.3153221870118],[120.373951445313,49.3381508613282],[120.36197390625,49.3484709907227],[120.347569609375,49.3651906562501],[120.27271609375,49.3184709907227],[120.25197390625,49.3092150092774],[120.2230871875,49.2930992866211],[120.19197390625,49.2792150092774],[120.171280546875,49.2676692939453],[120.14345828125,49.2999587226563],[120.12197390625,49.3184709907227],[120.11271609375,49.3492150092774],[120.053277617188,49.4004265571289],[120.016929960938,49.4584517646485],[119.872139921875,49.4468175483399],[119.83271609375,49.3584709907227],[119.810396757813,49.3269908881837],[119.782105742188,49.3292638374024],[119.721295195313,49.3069313789063],[119.725235625,49.2578719306641],[119.680543242188,49.2193685126953],[119.573101835938,49.2070513129883],[119.51271609375,49.1918495917969],[119.547345,49.1138430000001],[119.482061796875,49.0891243720704],[119.452906523438,49.0732805610352],[119.414840117188,49.0558095527344],[119.335382109375,48.9668761420899],[119.167261992188,48.9054463935548],[119.065885039063,48.8632796455078],[118.962061796875,48.8391243720704],[118.912628203125,48.8085616279297],[118.867345,48.783843],[118.832628203125,48.7991243720704],[118.723990507813,48.8093193793946],[118.672628203125,48.8491243720703],[118.539307890625,48.9328545356446],[118.543199492188,48.9981954169922],[118.504190703125,49.0613002753906],[118.452061796875,49.1285616279298],[118.402506132813,49.1992955756836],[118.392628203125,49.4062099433594],[118.432628203125,49.4185616279297],[118.442061796875,49.4262099433594],[118.402061796875,49.4385616279298],[118.389737578125,49.5960396552735],[118.371910429688,49.628843],[118.382628203125,49.6485616279297],[118.395523710938,49.7586650825196],[118.367345,49.783843],[118.38341921875,49.8084004951173],[118.381207304688,49.8196050239259],[118.44220828125,49.8318343330079],[118.471724882813,49.8260015083008],[118.477345,49.8338430000001]]]]}},{"type":"Feature","properties":{"name":"额尔古纳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.137345,50.393843],[119.131783476563,50.3808461738282],[119.114620390625,50.3898375678711],[119.137345,50.393843]]],[[[119.187345,50.353843],[119.183922148438,50.3660353828125],[119.175152617188,50.3572661567384],[119.18123171875,50.3417589545898],[119.149400664063,50.3578615546875],[119.157345,50.3738430000001],[119.169537382813,50.3772661567383],[119.160767851563,50.3860353828126],[119.157345,50.3738430000001],[119.147345,50.3738430000001],[119.147345,50.393843],[119.137345,50.393843],[119.142154570313,50.4090337348633],[119.16435671875,50.4286522651367],[119.202437773438,50.4085021186524],[119.222154570313,50.4390337348633],[119.242808867188,50.4487810493165],[119.231881132813,50.4589049506836],[119.252550078125,50.4686592841797],[119.252144804688,50.478843],[119.252550078125,50.4890267158203],[119.231749296875,50.498843],[119.252535429688,50.5086522651367],[119.262154570313,50.5390337348633],[119.272740507813,50.548843],[119.261553984375,50.5592101264649],[119.282550078125,50.5786659980469],[119.281358671875,50.6087810493164],[119.31357546875,50.6189815498047],[119.332345,50.6392394233399],[119.342281523438,50.6285170722657],[119.363648710938,50.6398250556641],[119.382154570313,50.6790337348633],[119.434322539063,50.6889931464844],[119.471773710938,50.7294148994141],[119.4929309375,50.7490200019532],[119.492110625,50.7697286201172],[119.513062773438,50.789140241211],[119.491773710938,50.8293758369141],[119.492550078125,50.8490071845703],[119.4817590625,50.8694011665039],[119.502535429688,50.8886522651367],[119.520850859375,50.908417584961],[119.557823515625,50.9258663154297],[119.592154570313,50.9790337348634],[119.622535429688,50.9986522651367],[119.632154570313,51.0090337348633],[119.672535429688,51.0186524177247],[119.713033476563,51.0465184760743],[119.712139921875,51.0690265632325],[119.732535429688,51.0786524177246],[119.74216921875,51.089048230713],[119.75295046875,51.0886208320313],[119.7517590625,51.118665845459],[119.763316679688,51.1293743110352],[119.762139921875,51.1590201545411],[119.77263796875,51.1687458015138],[119.761783476563,51.1997071052246],[119.762584257813,51.2198244453125],[119.813375273438,51.2178112006837],[119.791954375,51.2489401984864],[119.812940703125,51.258843],[119.811822539063,51.2870607734376],[119.872535429688,51.2986524177247],[119.882154570313,51.3390335822754],[119.936383085938,51.3562027717285],[119.902862578125,51.3872600532227],[119.962535429688,51.3986524177247],[119.972154570313,51.4390335822754],[119.996929960938,51.4507268500977],[119.974654570313,51.4928212714845],[120.043414335938,51.5565280891114],[120.0320715625,51.5888817573243],[120.042535429688,51.6086524177246],[120.055948515625,51.6370680976563],[120.097242460938,51.650141980713],[120.081724882813,51.6794620490723],[120.166187773438,51.6761144233399],[120.222154570313,51.7190335822754],[120.242535429688,51.7286524177246],[120.272174101563,51.7490479255371],[120.28252078125,51.7486377692872],[120.310269804688,51.7785846687012],[120.352535429688,51.7886524177247],[120.362154570313,51.7990335822754],[120.39275515625,51.8134757209473],[120.392139921875,51.829030072754],[120.432535429688,51.8386524177246],[120.472926054688,51.8492353034669],[120.4716809375,51.8806529975586],[120.537530546875,51.8780429816895],[120.552345,51.9094374824219],[120.572476835938,51.9086396003419],[120.651431914063,51.925158612793],[120.662154570313,51.9590335822754],[120.694366484375,51.9798331428223],[120.722120390625,52.0097904182129],[120.67630984375,52.0314110541993],[120.713116484375,52.0794071174317],[120.742564726563,52.0782396674805],[120.742139921875,52.0890128303223],[120.762550078125,52.1186731696777],[120.761773710938,52.138310163086],[120.776221953125,52.1656183601074],[120.762154570313,52.1786524177246],[120.732535429688,52.2108559394531],[120.754371367188,52.2521205878907],[120.702154570313,52.2686524177246],[120.683839140625,52.2884175849609],[120.627174101563,52.3151598334961],[120.612535429688,52.3544941688233],[120.642940703125,52.368843],[120.642139921875,52.3890201545411],[120.652535429688,52.3986523414307],[120.666964140625,52.4142242408448],[120.6829309375,52.4290201545411],[120.681402617188,52.4676133704835],[120.696221953125,52.4956183601075],[120.67810671875,52.5124035621338],[120.72275515625,52.5334757209473],[120.722105742188,52.5498245216064],[120.682877226563,52.548269574707],[120.662535429688,52.5590336585694],[120.629410429688,52.5695207954102],[120.592535429688,52.5890336585693],[120.552154570313,52.5986523414307],[120.512745390625,52.6124649024659],[120.447345,52.6470717597657],[120.387261992188,52.6152790046388],[120.27357546875,52.6197851539307],[120.252535429688,52.6086523414307],[120.221964140625,52.5942242408448],[120.189664335938,52.5771327949219],[120.0464465625,52.5895622993164],[120.0257434375,52.6334258247071],[120.05291140625,52.6995659614258],[120.052061796875,52.7210343146973],[120.032154570313,52.7586523414307],[120.022535429688,52.7798263526611],[120.052345,52.7786447883301],[120.075347929688,52.7795565009766],[120.132550078125,52.8098258186035],[120.181812773438,52.8078731513672],[120.210733671875,52.8390857673341],[120.278741484375,52.8606179023438],[120.292154570313,52.8890336585694],[120.342847929688,52.9011091590577],[120.342144804688,52.918843],[120.342579375,52.9297961402589],[120.401612578125,52.9576551032715],[120.447857695313,53.0075668693238],[120.492535429688,53.0286523795777],[120.515035429688,53.0405586219483],[120.550074492188,53.0783754707032],[120.582535429688,53.0886523795777],[120.629136992188,53.1049867606812],[120.650850859375,53.1284176231079],[120.679327421875,53.1418586326294],[120.692769804688,53.1703388953858],[120.730577421875,53.2053680015259],[120.775279570313,53.2195207572632],[120.812154570313,53.2390336204224],[120.827345,53.243843],[120.830767851563,53.2316507697754],[120.839537382813,53.2404196906739],[120.827345,53.243843],[120.818565703125,53.2683104110413],[120.862628203125,53.2785617423707],[120.882120390625,53.2891544700317],[120.912345,53.2873529411011],[120.977345,53.2912271094971],[121.040592070313,53.2874573112183],[121.079254179688,53.3084653068238],[121.123721953125,53.2774029899292],[121.28384890625,53.2924303413087],[121.326041289063,53.3219009757691],[121.405035429688,53.3171925712281],[121.497345,53.333843],[121.50170046875,53.318199250763],[121.57298953125,53.2894867492371],[121.61170046875,53.258199250763],[121.675924101563,53.2446471763306],[121.66298953125,53.1981992316895],[121.64298953125,53.182761800354],[121.662594023438,53.1675042319947],[121.71170046875,53.1481992316895],[121.755172148438,53.1390264106446],[121.774327421875,53.1072656226807],[121.770699492188,53.0827023673706],[121.8102746875,53.066504857605],[121.770943632813,53.0155469108277],[121.704952421875,52.9885380912476],[121.65341921875,52.9144367194825],[121.603975859375,52.8848651099853],[121.601607695313,52.868843],[121.605523710938,52.8423219276123],[121.567525664063,52.8141488624268],[121.53170046875,52.7994867683106],[121.50298953125,52.7781992316895],[121.47170046875,52.7694867683106],[121.448370390625,52.7392578101807],[121.38306765625,52.6908455634766],[121.298839140625,52.6687358070069],[121.280943632813,52.6455468726807],[121.24170046875,52.6294867683106],[121.22298953125,52.6181992316895],[121.18298953125,52.6018281531983],[121.196676054688,52.5804198432617],[121.222345,52.5766263557129],[121.276124296875,52.5845738959961],[121.31298953125,52.5694867683106],[121.324449492188,52.554636762207],[121.35170046875,52.5381992316895],[121.40298953125,52.5194867683106],[121.412398710938,52.4964926887207],[121.495714140625,52.4789116645508],[121.513883085938,52.4553755164795],[121.54990359375,52.4606990791016],[121.58170046875,52.4481992316895],[121.647999296875,52.4387742591553],[121.673375273438,52.4191870093995],[121.66062625,52.3867488074952],[121.702374296875,52.3545245338135],[121.707345,52.3138430000001],[121.676319609375,52.2959567237549],[121.70197390625,52.2384711433105],[121.729195585938,52.2000800300293],[121.70740359375,52.1610239387207],[121.75197390625,52.1226247382813],[121.722447539063,52.118432996338],[121.701842070313,52.1200885749512],[121.703565703125,52.0986263251954],[121.65197390625,52.0892148566895],[121.64271609375,52.0784711433106],[121.6266028125,52.0645867133789],[121.612022734375,52.0476638007813],[121.570987578125,52.0509609199219],[121.53197390625,52.0392148566895],[121.521373320313,52.02691230542],[121.468707304688,52.0311440253907],[121.44197390625,52.0192148566895],[121.43271609375,52.0084711433105],[121.409722929688,51.9982112861328],[121.39271609375,51.9784711433106],[121.34197390625,51.9692148566895],[121.32271609375,51.9584711433106],[121.301138945313,51.948843],[121.325103789063,51.9381507087403],[121.321178007813,51.8893384528809],[121.376363554688,51.8849042487793],[121.469991484375,51.9053258491211],[121.48271609375,51.8768007636719],[121.611773710938,51.8209714484863],[121.6127746875,51.8085066962891],[121.573136015625,51.7836794257813],[121.571539335938,51.763843],[121.573267851563,51.7423274970703],[121.538219023438,51.7016432929688],[121.48197390625,51.6692148566895],[121.47271609375,51.6584711433106],[121.41177859375,51.6491851020508],[121.424976835938,51.6009487128907],[121.411866484375,51.5286225104981],[121.44197390625,51.4861601997071],[121.43271609375,51.4784711433106],[121.39197390625,51.4692148566895],[121.37271609375,51.4584711433106],[121.3419153125,51.449197309082],[121.344991484375,51.4108992744141],[121.304439726563,51.3882730842285],[121.287301054688,51.3896501899415],[121.25197390625,51.3592148566895],[121.236021757813,51.3407024360352],[121.20271609375,51.3284711433106],[121.0966028125,51.314586713379],[121.0780871875,51.2930992866212],[121.06197390625,51.2792148566895],[121.03271609375,51.2384711433106],[121.013819609375,51.222189862793],[121.011265898438,51.1903998542481],[121.0270715625,51.1473555732423],[121.000831328125,51.1054637885742],[120.98197390625,51.0892148566895],[120.971373320313,51.07691230542],[120.941998320313,51.0792725349122],[120.932345,51.057637708252],[120.907345,51.0596465278321],[120.892105742188,51.0584221625977],[120.86271609375,51.0692148566895],[120.81197390625,51.0784711433106],[120.800875273438,51.1033382392579],[120.732183867188,51.0883545661622],[120.71271609375,51.0992148566895],[120.69197390625,51.1084711433106],[120.68271609375,51.1192148566895],[120.67197390625,51.1284711433105],[120.646436796875,51.1581125617676],[120.59763796875,51.1620333076172],[120.4529309375,51.1472727180176],[120.425689726563,51.1238033271485],[120.411920195313,51.0991213203125],[120.413389921875,51.08085761792],[120.393961210938,51.0583112312012],[120.374361601563,51.0598863959962],[120.36197390625,51.0492148566895],[120.34572390625,51.0303548408203],[120.304288359375,51.0044008613282],[120.28970828125,50.9717235541993],[120.25197390625,50.9392150092774],[120.24271609375,50.9184709907227],[120.222974882813,50.9014641547852],[120.211715117188,50.8762218452149],[120.18271609375,50.8512401557617],[120.233179960938,50.8292150092774],[120.26271609375,50.8384709907227],[120.282066679688,50.8492671943359],[120.301363554688,50.8477165961915],[120.327100859375,50.8620766425781],[120.372515898438,50.858427350586],[120.464410429688,50.8784709907227],[120.482769804688,50.8491301704102],[120.4819153125,50.8385192084961],[120.49271609375,50.8292150092774],[120.502115507813,50.8183065009766],[120.575792265625,50.8384709907227],[120.5709778125,50.8228191352539],[120.52123171875,50.7799587226563],[120.4980871875,50.7530992866211],[120.4818371875,50.7390972114258],[120.494019804688,50.6832360053711],[120.480440703125,50.6336168647461],[120.51271609375,50.6192150092774],[120.526656523438,50.5729158759766],[120.588839140625,50.5679192329102],[120.66271609375,50.5984709907227],[120.688248320313,50.6127165961914],[120.76197390625,50.5286614204102],[120.75271609375,50.5084709907227],[120.692921171875,50.4710185981446],[120.69068484375,50.443180463379],[120.719742460938,50.4094539619141],[120.732584257813,50.4084221625977],[120.782135039063,50.4266194892578],[120.837345,50.433843],[120.867789335938,50.3892882514649],[120.90298953125,50.3794866157227],[120.94170046875,50.3281993842774],[120.98017703125,50.2984993720704],[120.98611453125,50.2583312202148],[120.958013945313,50.2366396308594],[120.98298953125,50.1794866157227],[120.99170046875,50.1481993842774],[121.00298953125,50.1394866157227],[121.01170046875,50.1081993842774],[121.02298953125,50.0994866157227],[121.03170046875,50.0881993842773],[121.06170046875,50.0650432563477],[121.05298953125,50.0381993842774],[121.047345,50.0338430000001],[121.0323059375,50.0285720039063],[120.996705351563,50.0474089790039],[120.942154570313,50.0686522651368],[120.905499296875,50.108215253418],[120.862535429688,50.0786522651368],[120.8317590625,50.0690337348633],[120.832550078125,50.0890288520508],[120.802154570313,50.0986522651367],[120.775074492188,50.1129805732422],[120.743682890625,50.0790999580079],[120.64834109375,50.0419731879883],[120.63244265625,50.0591344428712],[120.57576296875,50.0392684150391],[120.522154570313,50.0290337348633],[120.472535429688,50.0186522651367],[120.246964140625,50.0042241645508],[120.202535429688,49.9886522651368],[120.11650515625,49.9768944526367],[120.035338164063,49.9801116157227],[119.897979765625,50.030712506836],[119.845235625,50.1026216865235],[119.876871367188,50.1319371772462],[119.84552859375,50.1911748481446],[119.76935671875,50.2093190742188],[119.750250273438,50.2085616279297],[119.721461210938,50.1774907661133],[119.650557890625,50.1803011298829],[119.582535429688,50.1386522651368],[119.530797148438,50.1263280463867],[119.437779570313,50.1300148750001],[119.337345,50.173843],[119.323394804688,50.1838430000001],[119.344444609375,50.1989302802734],[119.308780546875,50.2196050239258],[119.33369265625,50.2588430000001],[119.320787382813,50.2791701484375],[119.377711210938,50.3179161811524],[119.350025664063,50.3285951972657],[119.370240507813,50.3430846381836],[119.324288359375,50.3608065009766],[119.29216921875,50.3476064277344],[119.267345,50.363366010254],[119.235162382813,50.3429347968751],[119.2182434375,50.3665404487305],[119.187345,50.353843]]]]}},{"type":"Feature","properties":{"name":"鄂伦春自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.327345,49.5338430000001],[124.339537382813,49.5304198432617],[124.330767851563,49.5216506171876],[124.327345,49.5338430000001]]],[[[125.437345,50.2238430000001],[125.437345,50.233843],[125.4605871875,50.228843],[125.437345,50.2238430000001]]],[[[126.007345,51.0638430000001],[126.010767851563,51.0760352302247],[126.019537382813,51.0672663093262],[126.007345,51.0638430000001]]],[[[126.007345,51.0638430000001],[126.01142703125,51.0579273200684],[126.048878203125,51.0365526557618],[126.025616484375,51.0008309150391],[126.04142703125,50.9779274726563],[126.06498171875,50.9691149116211],[126.045513945313,50.9556743598634],[126.037345,50.923843],[126.027345,50.923843],[126.022345,50.9366506171875],[126.017345,50.923843],[126.012628203125,50.9085616279297],[125.99197390625,50.890107038086],[125.99322390625,50.8691243720703],[125.972061796875,50.8785616279297],[125.954195585938,50.8985616279297],[125.9420325,50.8690532661133],[125.9426575,50.8585720039063],[125.9120325,50.8491139960938],[125.912974882813,50.8333104682618],[125.882061796875,50.8191243720704],[125.864097929688,50.799016034668],[125.8314465625,50.7889333320313],[125.833502226563,50.7544582343751],[125.779654570313,50.7737779975586],[125.751597929688,50.7487062812501],[125.7826575,50.7391139960938],[125.781451445313,50.7188430000001],[125.822061796875,50.7002031684571],[125.812628203125,50.6885616279297],[125.791451445313,50.6788430000001],[125.792642851563,50.658843],[125.791495390625,50.6396056342774],[125.811178007813,50.6033824897461],[125.814444609375,50.548576581543],[125.772061796875,50.5291243720703],[125.747877226563,50.5020549750977],[125.728995390625,50.5231856513672],[125.682061796875,50.4891243720703],[125.672628203125,50.4785616279297],[125.650260039063,50.4682955146485],[125.631588164063,50.4473979926758],[125.583101835938,50.4502880073243],[125.57259890625,50.4385298896485],[125.55611453125,50.4395125556641],[125.577984648438,50.3992604804688],[125.512867460938,50.4226253486328],[125.5120325,50.4086174750977],[125.523194609375,50.3880803657227],[125.5220325,50.3685903144532],[125.532940703125,50.358843],[125.51115359375,50.3393755317383],[125.523043242188,50.3287526679688],[125.488853789063,50.31306175],[125.462061796875,50.2891243720703],[125.452628203125,50.2685616279297],[125.4420325,50.259095685547],[125.442652617188,50.2486418891602],[125.437345,50.233843],[125.424537382813,50.228843],[125.437345,50.2238430000001],[125.431832304688,50.2029412055665],[125.381519804688,50.1896678901368],[125.370904570313,50.1748580146485],[125.329810820313,50.1590087104492],[125.365284453125,50.1384419990235],[125.321519804688,50.1296678901367],[125.312345,50.1168669868165],[125.297183867188,50.1380181098633],[125.270391875,50.1237355781251],[125.273472929688,50.1081349921875],[125.249381132813,50.098843],[125.273472929688,50.0895510078126],[125.26968875,50.070390241211],[125.331519804688,50.0579940009766],[125.307398710938,50.0448802924805],[125.254610625,50.0553115058594],[125.2512121875,50.0380998969727],[125.291519804688,50.0274651313477],[125.279605742188,49.9997158027344],[125.241519804688,49.9896678901367],[125.228761015625,49.956587140625],[125.173170195313,49.9675722480469],[125.18326296875,49.9439360786133],[125.2139465625,49.9219445014649],[125.211261015625,49.9083571601563],[125.238917265625,49.8721388984375],[125.221236601563,49.8594634223633],[125.225401640625,49.838378522461],[125.171519804688,49.8296678901367],[125.167345,49.823843],[125.152154570313,49.8190337348633],[125.080235625,49.7938271308594],[124.968648710938,49.8924700141602],[124.934918242188,49.8746218085938],[124.972154570313,49.8401222968751],[124.899595976563,49.8290337348633],[124.841480742188,49.8494033027344],[124.816436796875,49.848410565918],[124.737374296875,49.7630815864258],[124.7526965625,49.7488851142579],[124.732139921875,49.7190129829102],[124.733292265625,49.689939496582],[124.641329375,49.6789348579102],[124.617725859375,49.6534618354493],[124.528468046875,49.6364205146485],[124.462345,49.639041059082],[124.452345,49.638644940918],[124.404351835938,49.6405471015625],[124.368482695313,49.6158632636719],[124.331851835938,49.5763271308594],[124.332906523438,49.5497069526368],[124.327345,49.5338430000001],[124.29197390625,49.5192150092774],[124.266641875,49.505080487793],[124.333482695313,49.3979894233399],[124.331944609375,49.3788430000001],[124.332760039063,49.368671491211],[124.321124296875,49.3153252387695],[124.195982695313,49.3253807807618],[124.090206328125,49.3062026191407],[124.025103789063,49.311433637207],[123.980225859375,49.2796157050782],[123.91197390625,49.2692150092774],[123.895494414063,49.2500859809571],[123.921295195313,49.203843],[123.89861453125,49.1631951118164],[123.810474882813,49.1471175361328],[123.812745390625,49.1188430000001],[123.811539335938,49.103843],[123.8127746875,49.0885192084961],[123.79123171875,49.0699587226563],[123.77271609375,49.0484709907227],[123.76197390625,49.0392150092774],[123.750269804688,49.0256325507813],[123.63146609375,49.0440630317383],[123.567345,49.0738430000001],[123.548990507813,49.0805825019532],[123.522022734375,49.0784151435548],[123.512667265625,49.0892708564453],[123.502345,49.0884413886719],[123.487345,49.089646527832],[123.472345,49.0884413886719],[123.459742460938,49.0894539619141],[123.430162382813,49.1237850166016],[123.402345,49.1082637763672],[123.380103789063,49.1206719184571],[123.343902617188,49.1177626777344],[123.306641875,49.1314461494141],[123.28056765625,49.1617107368164],[123.284361601563,49.2089153266602],[123.23197390625,49.2184709907227],[123.22271609375,49.2492150092774],[123.21197390625,49.2584709907227],[123.202691679688,49.2792726875],[123.177345,49.2772359443359],[123.152174101563,49.2792586494141],[123.094991484375,49.2667864204101],[123.04353640625,49.2954952216797],[122.930113554688,49.2538426948242],[122.825035429688,49.1941042304688],[122.802681914063,49.1584142280274],[122.787345,49.1596465278321],[122.741490507813,49.1559618354493],[122.70271609375,49.1284709907227],[122.67197390625,49.1192150092774],[122.66271609375,49.1084709907227],[122.63197390625,49.0892150092774],[122.614586210938,49.0690340400391],[122.58197390625,49.0592150092774],[122.550142851563,49.0475261665039],[122.53271609375,49.0084709907227],[122.48197390625,48.9792150092774],[122.47271609375,48.9684709907227],[122.4519153125,48.959189069336],[122.45291140625,48.9467885566407],[122.406090117188,48.9505510688477],[122.36271609375,48.9464458442383],[122.385025664063,48.9272243476562],[122.381944609375,48.8888430000001],[122.382745390625,48.878843],[122.381339140625,48.8613085151367],[122.30197390625,48.8492150092774],[122.28271609375,48.8384709907227],[122.197037382813,48.8272606635742],[122.147550078125,48.831237104004],[122.077345,48.863843],[122.082652617188,48.8786418891602],[122.081861601563,48.8919368720703],[122.052061796875,48.9185616279297],[122.041383085938,48.9305153632812],[122.002061796875,48.9485616279297],[121.992628203125,48.9906920600587],[122.012628203125,49.0085616279297],[122.032061796875,49.0346016669922],[121.972061796875,49.0485616279297],[121.952628203125,49.0547927070313],[121.997193632813,49.0752483344727],[122.022061796875,49.1362099433594],[121.9820325,49.1485720039062],[121.9826575,49.1591036201172],[121.952061796875,49.1785616279297],[121.942628203125,49.2091243720704],[121.931358671875,49.2405266547852],[121.892061796875,49.2585616279297],[121.870440703125,49.2703124213868],[121.843668242188,49.3286470771485],[121.821451445313,49.3388430000001],[121.8226575,49.359080121582],[121.802061796875,49.3885616279297],[121.771685820313,49.4363268256837],[121.731881132813,49.4486177802735],[121.7438684375,49.4820302558594],[121.802345,49.4785448432618],[121.852345,49.4815251899415],[121.916886015625,49.4776784492188],[121.952120390625,49.4585314155274],[121.976002226563,49.4599550605469],[122.019307890625,49.5084218574219],[122.059117460938,49.5185616279297],[122.102345,49.4883653999024],[122.132061796875,49.5091243720704],[122.152628203125,49.5185616279297],[122.162061796875,49.5291243720703],[122.203648710938,49.5482103706055],[122.1920325,49.5585903144531],[122.193697539063,49.5865410590821],[122.232628203125,49.5985616279297],[122.246812773438,49.629470746582],[122.263609648438,49.6284697700196],[122.282061796875,49.6491243720703],[122.3026575,49.658576581543],[122.302047148438,49.668843],[122.302764921875,49.6809041572266],[122.358140898438,49.6776033759766],[122.417662382813,49.6903203559571],[122.401060820313,49.7523046088867],[122.405069609375,49.8195745063477],[122.4226184375,49.8185289741211],[122.437237578125,49.8658763862305],[122.4637903125,49.8896013618164],[122.461749296875,49.923843],[122.4626575,49.9391036201172],[122.428682890625,49.9607109809571],[122.389039335938,49.9583476997071],[122.352628203125,49.9385616279297],[122.330494414063,49.9291243720704],[122.2866809375,49.9781612373047],[122.222628203125,49.9385616279297],[122.202061796875,49.9291243720704],[122.142345,49.8801262641602],[122.082589140625,49.9291555],[122.072120390625,49.9285314155274],[122.02603640625,49.953572309082],[122.00468875,49.9296758247071],[121.985172148438,49.9191243720703],[121.853487578125,49.9425255561524],[121.887906523438,49.9732805610352],[121.902061796875,49.9891243720703],[121.943648710938,50.0082103706055],[121.924254179688,50.0255397773438],[121.959478789063,50.0417076850586],[121.972061796875,50.0691243720703],[121.983194609375,50.0896056342773],[121.98047,50.1352944160156],[121.870264921875,50.158947675293],[121.873238554688,50.208843],[121.841783476563,50.2232805610352],[121.805206328125,50.2431560493165],[121.792628203125,50.2647927070313],[121.832974882813,50.2833104682617],[121.8320325,50.2990956855469],[121.851798125,50.3167562080078],[121.870533476563,50.3575728583985],[121.912218046875,50.3284529853516],[121.952061796875,50.3391243720703],[122.004195585938,50.3485616279298],[122.022061796875,50.3285616279297],[122.052628203125,50.3191243720704],[122.0823059375,50.3084755683594],[122.1380090625,50.3233950019532],[122.156783476563,50.3444054389649],[122.175142851563,50.3608116889648],[122.217345,50.3738430000001],[122.220767851563,50.3616506171875],[122.229537382813,50.3704198432617],[122.217345,50.3738430000001],[122.229595976563,50.3915898872071],[122.276866484375,50.4242244697266],[122.250347929688,50.4649422431641],[122.254932890625,50.4853908515625],[122.2169153125,50.4996169257813],[122.228897734375,50.5530651069336],[122.189386015625,50.5787932563477],[122.126090117188,50.5887685371094],[122.14142703125,50.6297585273438],[122.16170046875,50.6437535834962],[122.176607695313,50.6835942817383],[122.20142703125,50.6997585273438],[122.233819609375,50.7080706000977],[122.253565703125,50.7383962226563],[122.250943632813,50.7500896430665],[122.27142703125,50.7797585273438],[122.277345,50.783843],[122.308814726563,50.7908486152344],[122.441397734375,50.776228559082],[122.503306914063,50.7943962836915],[122.5003528125,50.8233870673828],[122.534937773438,50.8650215888672],[122.590885039063,50.8995317817383],[122.592901640625,50.9192851997071],[122.543736601563,50.9301866889649],[122.5418371875,50.9488430000001],[122.544620390625,50.9761440253907],[122.522808867188,51.0142253852539],[122.544288359375,51.0312082648926],[122.587345,51.043843],[122.590767851563,51.0316507697754],[122.599537382813,51.0404196906739],[122.587345,51.043843],[122.604879179688,51.0657364631348],[122.665455351563,51.078843],[122.659405546875,51.127484204834],[122.678453398438,51.1427367377931],[122.7035559375,51.1740895820313],[122.697374296875,51.2238217902832],[122.632310820313,51.2157289863281],[122.622896757813,51.2622740913086],[122.658936796875,51.2911319709473],[122.626578398438,51.3354279304199],[122.682896757813,51.3782898688965],[122.691793242188,51.3893961311036],[122.711187773438,51.4049274421387],[122.7537121875,51.42284690625],[122.750533476563,51.4483901191407],[122.792447539063,51.4819513679199],[122.857345,51.4738430000001],[122.872154570313,51.4486524177247],[122.892550078125,51.4390265632324],[122.891729765625,51.4182921577149],[122.953350859375,51.3892102790528],[122.951788359375,51.3498384833985],[122.978214140625,51.3213211799317],[123.002877226563,51.3082695747071],[123.06451296875,51.3107125068359],[123.122213164063,51.2986396003419],[123.141812773438,51.299416425293],[123.162154570313,51.2886524177247],[123.212535429688,51.2790335822755],[123.230596953125,51.259542005127],[123.272408476563,51.2485855842285],[123.309342070313,51.2681294990235],[123.337345,51.2692394233399],[123.3742590625,51.2677761054688],[123.442535429688,51.2786524177246],[123.464273710938,51.2901538825684],[123.536632109375,51.2872856879884],[123.572535429688,51.2986524177247],[123.582154570313,51.3090335822754],[123.63630984375,51.3219335151368],[123.652154570313,51.3390335822754],[123.667725859375,51.3534616828613],[123.703780546875,51.3923743415528],[123.79218875,51.3586386848145],[123.831124296875,51.3601819587403],[123.900186796875,51.3039766669923],[123.978585234375,51.3203792548829],[124.022345,51.3186447883302],[124.037345,51.3192394233398],[124.061969023438,51.3182633186036],[124.095987578125,51.3416713691406],[124.172496367188,51.3386388374024],[124.208253203125,51.3511713386231],[124.242535429688,51.3290335822754],[124.3012903125,51.2886029792481],[124.32216921875,51.289430463379],[124.341065703125,51.2690335822754],[124.408482695313,51.2816324592286],[124.425675078125,51.3538164497071],[124.472535429688,51.3686524177247],[124.497867460938,51.382055890625],[124.5608996875,51.3670416999512],[124.619146757813,51.3269611335449],[124.726851835938,51.3441185737305],[124.742535429688,51.3586524177246],[124.75658328125,51.3884163642578],[124.788258085938,51.3896718574219],[124.872081328125,51.3771721625977],[124.872545195313,51.388843],[124.872110625,51.3997286201172],[124.892535429688,51.4186524177246],[124.902154570313,51.4290335822754],[124.934932890625,51.4445030952149],[124.912535429688,51.4868300605469],[124.922154570313,51.4990335822754],[124.972535429688,51.5086524177246],[124.982154570313,51.5190335822754],[125.061392851563,51.5298630500489],[125.062550078125,51.5589835334473],[125.050357695313,51.6055091071778],[125.099483671875,51.6585314155274],[125.122345,51.659437482422],[125.135631132813,51.6312891364747],[125.207345,51.6284465766602],[125.232345,51.6294374824219],[125.252345,51.6286447883301],[125.281812773438,51.6298128486329],[125.293228789063,51.6174907661134],[125.357345,51.6200321174316],[125.375362578125,51.5818585944825],[125.418389921875,51.5615502143555],[125.561431914063,51.4513684821777],[125.572154570313,51.4286524177246],[125.592916289063,51.4094148994141],[125.616964140625,51.3834616828614],[125.632535429688,51.3690335822754],[125.649654570313,51.3505586982422],[125.672154570313,51.3386524177247],[125.692535429688,51.3290335822754],[125.725518828125,51.2840674567872],[125.753316679688,51.2583116889649],[125.752139921875,51.2286544013672],[125.8388684375,51.2168013740235],[125.852154570313,51.1886524177246],[125.8726965625,51.1588008857422],[125.855284453125,51.1426702094727],[125.9134778125,51.1288091254884],[125.93224734375,51.108551557129],[125.981866484375,51.1259423041993],[125.982740507813,51.103843],[125.981754179688,51.0788887763673],[126.007345,51.0638430000001]]]]}},{"type":"Feature","properties":{"name":"鄂温克族自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.63806765625,49.1717024970704],[120.662550078125,49.1490200019532],[120.661788359375,49.1298384833985],[120.680850859375,49.1092684150391],[120.702940703125,49.098843],[120.702139921875,49.0786730170899],[120.722550078125,49.0490129829102],[120.722139921875,49.0386659980469],[120.736221953125,49.0256182075196],[120.716978789063,48.9892537666016],[120.737345,48.9884465766602],[120.76134890625,48.9893981147461],[120.777725859375,48.9742241645508],[120.792154570313,48.9586522651368],[120.813326445313,48.9486592841798],[120.811363554688,48.8990267158204],[120.838717070313,48.8861165595704],[120.822535429688,48.8686522651367],[120.783277617188,48.8322795844727],[120.832535429688,48.8090337348633],[120.842154570313,48.7886522651367],[120.877740507813,48.7773857856446],[120.841627226563,48.709140241211],[120.862154570313,48.6901213813477],[120.852535429688,48.6686522651368],[120.830875273438,48.6277211738282],[120.842154570313,48.5686522651367],[120.862550078125,48.5190001655274],[120.861261015625,48.4864903999024],[120.94781375,48.4561537910157],[120.981031523438,48.4737313056641],[121.09025515625,48.4574446845703],[121.115621367188,48.4708687568359],[121.136964140625,48.4034615302735],[121.156920195313,48.384970319336],[121.114615507813,48.3393105292969],[121.059000273438,48.3217024970704],[121.013389921875,48.3001772285157],[121.010640898438,48.2308516669922],[121.042154570313,48.1850551582032],[120.982535429688,48.1586525703125],[120.92838015625,48.1457527900391],[120.893585234375,48.1081990791016],[120.812642851563,48.1114076972657],[120.812144804688,48.098843],[120.812550078125,48.0887026191407],[120.8001965625,48.0415590644532],[120.81216921875,48.0286379218751],[120.8305871875,48.0293679023437],[120.85658328125,48.0052822089844],[120.816485625,47.9863576484375],[120.851314726563,47.9487673164063],[120.931046171875,47.937870709961],[120.905968046875,47.8847335029297],[120.8672278125,47.84292503125],[120.821041289063,47.8075075507813],[120.782345,47.8090413642578],[120.742345,47.8074556708984],[120.702178984375,47.8090474677735],[120.682535429688,47.7986525703125],[120.646451445313,47.7872280097657],[120.662154570313,47.6886525703125],[120.682535429688,47.6790334296875],[120.687345,47.673843],[120.674971953125,47.6662178779298],[120.661539335938,47.6444216132813],[120.642345,47.6504006171875],[120.63213015625,47.6472188544922],[120.5959778125,47.6634145332032],[120.564718046875,47.6414681220703],[120.531158476563,47.6300307441406],[120.523531523438,47.5976552558594],[120.501158476563,47.5700307441407],[120.497345,47.5538430000001],[120.46197390625,47.5584712958985],[120.405894804688,47.5707021308594],[120.37271609375,47.5892147041016],[120.32197390625,47.6084712958985],[120.31271609375,47.6192147041016],[120.289722929688,47.6294747138672],[120.269185820313,47.6533150458985],[120.217345,47.6238430000001],[120.21271609375,47.6392147041016],[120.179752226563,47.6676168037109],[120.130777617188,47.6787429023438],[120.1080871875,47.7295870185547],[120.09197390625,47.7584712958985],[120.07521609375,47.7960225654297],[120.04197390625,47.8384712958985],[120.008756132813,47.8915010810547],[119.951593046875,47.9644930244141],[119.952764921875,47.9790956855469],[119.931246367188,48.0301924873047],[119.933238554688,48.054941022461],[119.852022734375,48.0484151435548],[119.84271609375,48.0592147041016],[119.819034453125,48.0697823310547],[119.777345,48.0664327216797],[119.742345,48.0692446113281],[119.732345,48.0684413886719],[119.702345,48.0708516669922],[119.67232546875,48.0684395576172],[119.55236453125,48.0792464423829],[119.537345,48.0780397773438],[119.522345,48.0792446113282],[119.512345,48.0784413886719],[119.492081328125,48.0800691962891],[119.394488554688,48.1159084296876],[119.35271609375,48.1392147041016],[119.277467070313,48.1596974921876],[119.250631132813,48.2025411201172],[119.252877226563,48.2304616523438],[119.23197390625,48.2484712958985],[119.220455351563,48.2618422675781],[119.130826445313,48.3179787421875],[119.06197390625,48.3284712958985],[119.03271609375,48.3492147041016],[119.01197390625,48.3584712958985],[118.98093875,48.3757857490234],[118.874986601563,48.4587654853516],[118.902769804688,48.5085646796876],[118.9019153125,48.519166791504],[118.923746367188,48.5379723334961],[118.88197390625,48.5884709907227],[118.8680871875,48.619586713379],[118.821470976563,48.6487841010743],[118.834273710938,48.6598140693359],[118.831944609375,48.6888430000001],[118.833629179688,48.709814069336],[118.811690703125,48.7287126899414],[118.824312773438,48.7513353706055],[118.86271609375,48.7684709907227],[118.867345,48.783843],[118.912628203125,48.8085616279297],[118.962061796875,48.8391243720704],[119.065885039063,48.8632796455078],[119.167261992188,48.9054463935548],[119.335382109375,48.9668761420899],[119.414840117188,49.0558095527344],[119.452906523438,49.0732805610352],[119.482061796875,49.0891243720704],[119.547345,49.1138430000001],[119.620123320313,49.1274272895508],[119.735103789063,49.179572675293],[119.763775664063,49.177863690918],[119.761749296875,49.143843],[119.762642851563,49.128843],[119.7620325,49.1185903144532],[119.7726575,49.1090956855469],[119.771886015625,49.0961333442383],[119.835987578125,49.0999541450196],[119.892061796875,49.1391243720704],[119.961588164063,49.1605922675781],[120.092535429688,49.143180463379],[120.152061796875,49.1591243720703],[120.198629179688,49.1699584174805],[120.227345,49.1682469916993],[120.267345,49.1706310249024],[120.302345,49.1685448432618],[120.349346953125,49.1713466621094],[120.401500273438,49.1996868110352],[120.482628203125,49.2185616279297],[120.511783476563,49.2344054389649],[120.542628203125,49.2485616279298],[120.559034453125,49.2669237495117],[120.567345,49.293843],[120.577345,49.293843],[120.592095976563,49.2801772285156],[120.592550078125,49.2686659980469],[120.581949492188,49.258843],[120.592550078125,49.2490200019532],[120.590650664063,49.2010692573242],[120.602154570313,49.1886522651368],[120.63806765625,49.1717024970704]]]]}},{"type":"Feature","properties":{"name":"根河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.587345,51.043843],[122.599537382813,51.0404196906739],[122.590767851563,51.0316507697754],[122.587345,51.043843]]],[[[122.587345,51.043843],[122.544288359375,51.0312082648926],[122.522808867188,51.0142253852539],[122.544620390625,50.9761440253907],[122.5418371875,50.9488430000001],[122.543736601563,50.9301866889649],[122.592901640625,50.9192851997071],[122.590885039063,50.8995317817383],[122.534937773438,50.8650215888672],[122.5003528125,50.8233870673828],[122.503306914063,50.7943962836915],[122.441397734375,50.776228559082],[122.308814726563,50.7908486152344],[122.277345,50.783843],[122.27271609375,50.8392150092774],[122.25193484375,50.8571211982422],[122.196939726563,50.8696141791992],[122.17562625,50.8679015327149],[122.102345,50.8409899116212],[122.015220976563,50.8729845405274],[122.00271609375,50.8584709907227],[121.9866028125,50.8445867133789],[121.97271609375,50.8284709907227],[121.94197390625,50.8192150092773],[121.91271609375,50.7984709907227],[121.878565703125,50.7892150092774],[121.838311796875,50.8116732001954],[121.752589140625,50.7784215522462],[121.742105742188,50.7792638374024],[121.69818484375,50.763134381836],[121.6755090625,50.7123232246094],[121.63197390625,50.6992150092774],[121.61271609375,50.6884709907227],[121.504332304688,50.671955487793],[121.488253203125,50.6532915473633],[121.47271609375,50.6184709907227],[121.460719023438,50.5969649482422],[121.427345,50.5996465278321],[121.345279570313,50.5930525947266],[121.33271609375,50.5784709907227],[121.238795195313,50.557134015625],[121.22271609375,50.5384709907227],[121.176939726563,50.5280718208008],[121.162345,50.5292446113282],[121.149742460938,50.5282320380859],[121.1280871875,50.5030992866211],[121.076339140625,50.4875188422852],[121.01982546875,50.4998458076172],[120.964742460938,50.4954198432618],[120.948038359375,50.4579839301758],[120.932066679688,50.459267194336],[120.910377226563,50.4471645332031],[120.837345,50.433843],[120.782135039063,50.4266194892578],[120.732584257813,50.4084221625977],[120.719742460938,50.4094539619141],[120.69068484375,50.443180463379],[120.692921171875,50.4710185981446],[120.75271609375,50.5084709907227],[120.76197390625,50.5286614204102],[120.688248320313,50.6127165961914],[120.66271609375,50.5984709907227],[120.588839140625,50.5679192329102],[120.526656523438,50.5729158759766],[120.51271609375,50.6192150092774],[120.480440703125,50.6336168647461],[120.494019804688,50.6832360053711],[120.4818371875,50.7390972114258],[120.4980871875,50.7530992866211],[120.52123171875,50.7799587226563],[120.5709778125,50.8228191352539],[120.575792265625,50.8384709907227],[120.502115507813,50.8183065009766],[120.49271609375,50.8292150092774],[120.4819153125,50.8385192084961],[120.482769804688,50.8491301704102],[120.464410429688,50.8784709907227],[120.372515898438,50.858427350586],[120.327100859375,50.8620766425781],[120.301363554688,50.8477165961915],[120.282066679688,50.8492671943359],[120.26271609375,50.8384709907227],[120.233179960938,50.8292150092774],[120.18271609375,50.8512401557617],[120.211715117188,50.8762218452149],[120.222974882813,50.9014641547852],[120.24271609375,50.9184709907227],[120.25197390625,50.9392150092774],[120.28970828125,50.9717235541993],[120.304288359375,51.0044008613282],[120.34572390625,51.0303548408203],[120.36197390625,51.0492148566895],[120.374361601563,51.0598863959962],[120.393961210938,51.0583112312012],[120.413389921875,51.08085761792],[120.411920195313,51.0991213203125],[120.425689726563,51.1238033271485],[120.4529309375,51.1472727180176],[120.59763796875,51.1620333076172],[120.646436796875,51.1581125617676],[120.67197390625,51.1284711433105],[120.68271609375,51.1192148566895],[120.69197390625,51.1084711433106],[120.71271609375,51.0992148566895],[120.732183867188,51.0883545661622],[120.800875273438,51.1033382392579],[120.81197390625,51.0784711433106],[120.86271609375,51.0692148566895],[120.892105742188,51.0584221625977],[120.907345,51.0596465278321],[120.932345,51.057637708252],[120.941998320313,51.0792725349122],[120.971373320313,51.07691230542],[120.98197390625,51.0892148566895],[121.000831328125,51.1054637885742],[121.0270715625,51.1473555732423],[121.011265898438,51.1903998542481],[121.013819609375,51.222189862793],[121.03271609375,51.2384711433106],[121.06197390625,51.2792148566895],[121.0780871875,51.2930992866212],[121.0966028125,51.314586713379],[121.20271609375,51.3284711433106],[121.236021757813,51.3407024360352],[121.25197390625,51.3592148566895],[121.287301054688,51.3896501899415],[121.304439726563,51.3882730842285],[121.344991484375,51.4108992744141],[121.3419153125,51.449197309082],[121.37271609375,51.4584711433106],[121.39197390625,51.4692148566895],[121.43271609375,51.4784711433106],[121.44197390625,51.4861601997071],[121.411866484375,51.5286225104981],[121.424976835938,51.6009487128907],[121.41177859375,51.6491851020508],[121.47271609375,51.6584711433106],[121.48197390625,51.6692148566895],[121.538219023438,51.7016432929688],[121.573267851563,51.7423274970703],[121.571539335938,51.763843],[121.573136015625,51.7836794257813],[121.6127746875,51.8085066962891],[121.611773710938,51.8209714484863],[121.48271609375,51.8768007636719],[121.469991484375,51.9053258491211],[121.376363554688,51.8849042487793],[121.321178007813,51.8893384528809],[121.325103789063,51.9381507087403],[121.301138945313,51.948843],[121.32271609375,51.9584711433106],[121.34197390625,51.9692148566895],[121.39271609375,51.9784711433106],[121.409722929688,51.9982112861328],[121.43271609375,52.0084711433105],[121.44197390625,52.0192148566895],[121.468707304688,52.0311440253907],[121.521373320313,52.02691230542],[121.53197390625,52.0392148566895],[121.570987578125,52.0509609199219],[121.612022734375,52.0476638007813],[121.6266028125,52.0645867133789],[121.64271609375,52.0784711433106],[121.65197390625,52.0892148566895],[121.703565703125,52.0986263251954],[121.701842070313,52.1200885749512],[121.722447539063,52.118432996338],[121.75197390625,52.1226247382813],[121.70740359375,52.1610239387207],[121.729195585938,52.2000800300293],[121.70197390625,52.2384711433105],[121.676319609375,52.2959567237549],[121.707345,52.3138430000001],[121.732183867188,52.3082009864502],[121.742564726563,52.3094919562988],[121.847955351563,52.2793961311036],[121.932896757813,52.2882898688965],[121.968472929688,52.3327148414307],[122.034605742188,52.3856726051026],[122.031656523438,52.4093671394044],[122.072896757813,52.4182898688965],[122.081793242188,52.4393961311035],[122.106041289063,52.4496146369629],[122.122896757813,52.4782898688965],[122.139752226563,52.5182898688965],[122.15724734375,52.5064543891602],[122.186261015625,52.4702217078858],[122.202345,52.4682210517578],[122.217345,52.4700868201905],[122.247345,52.4663552833253],[122.306846953125,52.473756482666],[122.327720976563,52.4242190528565],[122.362896757813,52.4093961311035],[122.371793242188,52.3982898688966],[122.392896757813,52.3893961311036],[122.405347929688,52.3738508582764],[122.433897734375,52.3906345344239],[122.456236601563,52.362736737793],[122.473023710938,52.3492958808594],[122.466080351563,52.293487317627],[122.562896757813,52.2793961311036],[122.591964140625,52.2623114753418],[122.656187773438,52.2806513190919],[122.682896757813,52.2693961311036],[122.696422148438,52.2525087714845],[122.75896609375,52.2602887702637],[122.787345,52.253843],[122.778453398438,52.242736737793],[122.760533476563,52.2283901191407],[122.766534453125,52.1801650214844],[122.717437773438,52.1443004584962],[122.630440703125,52.1291608405762],[122.635064726563,52.0919759345703],[122.62127078125,52.0685094428712],[122.642896757813,52.0593961311035],[122.665709257813,51.9796054816895],[122.716783476563,51.9685555244141],[122.723023710938,51.9183901191406],[122.703448515625,51.9027149177246],[122.701666289063,51.8883901191407],[122.712896757813,51.8793961311035],[122.734766875,51.8202371955567],[122.7641028125,51.770337140625],[122.747354765625,51.7418445563965],[122.762896757813,51.7293961311035],[122.771793242188,51.6882898688965],[122.788453398438,51.6749492622071],[122.801793242188,51.6582898688965],[122.812896757813,51.6493961311035],[122.821793242188,51.6282898688965],[122.85107546875,51.60483909375],[122.824405546875,51.5834815192872],[122.880284453125,51.5442044807129],[122.854859648438,51.523843],[122.881793242188,51.5022740913086],[122.872896757813,51.4882898688965],[122.861793242188,51.4793961311036],[122.857345,51.4738430000001],[122.792447539063,51.4819513679199],[122.750533476563,51.4483901191407],[122.7537121875,51.42284690625],[122.711187773438,51.4049274421387],[122.691793242188,51.3893961311036],[122.682896757813,51.3782898688965],[122.626578398438,51.3354279304199],[122.658936796875,51.2911319709473],[122.622896757813,51.2622740913086],[122.632310820313,51.2157289863281],[122.697374296875,51.2238217902832],[122.7035559375,51.1740895820313],[122.678453398438,51.1427367377931],[122.659405546875,51.127484204834],[122.665455351563,51.078843],[122.604879179688,51.0657364631348],[122.587345,51.043843]]]]}},{"type":"Feature","properties":{"name":"海拉尔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.11271609375,49.3492150092774],[120.12197390625,49.3184709907227],[120.14345828125,49.2999587226563],[120.171280546875,49.2676692939453],[120.19197390625,49.2792150092774],[120.2230871875,49.2930992866211],[120.25197390625,49.3092150092774],[120.27271609375,49.3184709907227],[120.347569609375,49.3651906562501],[120.36197390625,49.3484709907227],[120.373951445313,49.3381508613282],[120.347457304688,49.3153221870118],[120.36197390625,49.2984709907227],[120.37271609375,49.2892150092774],[120.38197390625,49.2784709907227],[120.392999296875,49.2689733100586],[120.37271609375,49.2326247382813],[120.40271609375,49.2384709907227],[120.45197390625,49.2592150092774],[120.48271609375,49.2684709907227],[120.53209109375,49.2892650581055],[120.550787382813,49.2877626777344],[120.567345,49.293843],[120.559034453125,49.2669237495117],[120.542628203125,49.2485616279298],[120.511783476563,49.2344054389649],[120.482628203125,49.2185616279297],[120.401500273438,49.1996868110352],[120.349346953125,49.1713466621094],[120.302345,49.1685448432618],[120.267345,49.1706310249024],[120.227345,49.1682469916993],[120.198629179688,49.1699584174805],[120.152061796875,49.1591243720703],[120.092535429688,49.143180463379],[119.961588164063,49.1605922675781],[119.892061796875,49.1391243720704],[119.835987578125,49.0999541450196],[119.771886015625,49.0961333442383],[119.7726575,49.1090956855469],[119.7620325,49.1185903144532],[119.762642851563,49.128843],[119.761749296875,49.143843],[119.763775664063,49.177863690918],[119.735103789063,49.179572675293],[119.620123320313,49.1274272895508],[119.547345,49.1138430000001],[119.51271609375,49.1918495917969],[119.573101835938,49.2070513129883],[119.680543242188,49.2193685126953],[119.725235625,49.2578719306641],[119.721295195313,49.3069313789063],[119.782105742188,49.3292638374024],[119.810396757813,49.3269908881837],[119.83271609375,49.3584709907227],[119.872139921875,49.4468175483399],[120.016929960938,49.4584517646485],[120.053277617188,49.4004265571289],[120.11271609375,49.3492150092774]]]]}},{"type":"Feature","properties":{"name":"满洲里市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.642447539063,49.5618294501953],[117.784703398438,49.5224025703126],[117.833551054688,49.5395232368164],[117.857345,49.513843],[117.862652617188,49.4789659858398],[117.8620325,49.4686174750977],[117.872896757813,49.4486247993164],[117.822686796875,49.4369420600587],[117.852061796875,49.4106920600587],[117.84259890625,49.3985295844727],[117.81345828125,49.4002669501954],[117.735933867188,49.3366619086914],[117.702628203125,49.3185616279297],[117.687345,49.313843],[117.626832304688,49.3300801826173],[117.652550078125,49.3786788154297],[117.652115507813,49.389638288086],[117.50185671875,49.4315227485352],[117.503306914063,49.4680870795899],[117.455914335938,49.5263173652344],[117.262345,49.518644940918],[117.217594023438,49.5204186225587],[117.261549101563,49.6034813666993],[117.267345,49.633843],[117.47662234375,49.6251052070313],[117.642447539063,49.5618294501953]]]]}},{"type":"Feature","properties":{"name":"莫力达瓦达斡尔族自治旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.257345,49.353843],[125.253922148438,49.3660353828126],[125.245152617188,49.3572661567383],[125.251929960938,49.3290145087891],[125.252877226563,49.3172243476563],[125.23197390625,49.2992150092774],[125.22271609375,49.2884709907227],[125.2119153125,49.279166791504],[125.213150664063,49.2638430000001],[125.211944609375,49.248843],[125.213951445313,49.2238430000001],[125.211944609375,49.198843],[125.2127746875,49.188488690918],[125.18197390625,49.1792150092773],[125.109439726563,49.1192150092774],[125.0311340625,49.1487874580078],[125.032974882813,49.1717061591797],[124.939620390625,49.1642046333009],[124.900128203125,49.1862395454102],[124.85505984375,49.1661293769531],[124.83654421875,49.1246419501954],[124.80173953125,49.1091100288087],[124.813424101563,49.0772859931641],[124.811944609375,49.058843],[124.813350859375,49.0413265205079],[124.74338015625,48.9567385078125],[124.741925078125,48.9386046577149],[124.747345,48.9238430000001],[124.711793242188,48.9093959785157],[124.700865507813,48.8957497382813],[124.704039335938,48.8702294135743],[124.685025664063,48.8378874946289],[124.672061796875,48.8395000434571],[124.6382825,48.8265151191407],[124.644381132813,48.7774843574219],[124.6069153125,48.7474843574219],[124.613941679688,48.6910051704102],[124.601793242188,48.6593959785157],[124.592896757813,48.6282900214844],[124.581793242188,48.6193959785157],[124.572896757813,48.5982900214844],[124.561793242188,48.5893959785156],[124.552896757813,48.5782900214844],[124.51861453125,48.5508351875],[124.534156523438,48.5383901191407],[124.527139921875,48.4820134711914],[124.543682890625,48.4687670112305],[124.5105090625,48.4486159492188],[124.515455351563,48.408843],[124.511441679688,48.3765785957031],[124.532896757813,48.3593959785156],[124.541793242188,48.3282900214844],[124.552896757813,48.3193959785157],[124.561793242188,48.3082900214844],[124.573590117188,48.298843],[124.561793242188,48.2893959785156],[124.546632109375,48.2704640937501],[124.57341921875,48.2591762519532],[124.546016875,48.2125569892579],[124.521280546875,48.1786983466797],[124.53334109375,48.1690419746094],[124.51736453125,48.1418685126953],[124.501793242188,48.1293959785157],[124.492799101563,48.1181648994141],[124.472345,48.1207088447266],[124.462896757813,48.0982900214844],[124.431793242188,48.0893959785157],[124.417345,48.0838430000001],[124.426046171875,48.1177437568359],[124.464932890625,48.1322951484376],[124.461221953125,48.148843],[124.465557890625,48.1681728339844],[124.44697390625,48.1810018134766],[124.426519804688,48.1764162421875],[124.40326296875,48.183319928711],[124.415557890625,48.2381728339844],[124.40142703125,48.2479274726563],[124.388370390625,48.2668422675781],[124.35142703125,48.2879274726563],[124.336651640625,48.3274159980469],[124.310474882813,48.3454921699219],[124.313468046875,48.358843],[124.311221953125,48.368843],[124.314586210938,48.3838430000001],[124.309454375,48.4067287421876],[124.3239075,48.4289223457031],[124.299371367188,48.4605818916016],[124.303468046875,48.478843],[124.301221953125,48.488843],[124.303468046875,48.498843],[124.298565703125,48.5206981635743],[124.247345,48.533843],[124.23978640625,48.5436370063477],[124.202345,48.5381041694337],[124.191832304688,48.5396575141602],[124.18298953125,48.5281993842774],[124.126143828125,48.5194866157227],[124.086832304688,48.5432006049805],[124.042857695313,48.5367018867188],[124.032579375,48.5500167060547],[123.994874296875,48.5272734809571],[123.949190703125,48.540593793457],[123.9319153125,48.5380406928712],[123.90298953125,48.5594866157227],[123.83170046875,48.5681993842774],[123.812110625,48.5935790229492],[123.772183867188,48.5778823066406],[123.75298953125,48.5905294013672],[123.763082304688,48.6588430000001],[123.761607695313,48.668843],[123.76459109375,48.6890407539063],[123.724146757813,48.7003029609375],[123.68298953125,48.7594866157227],[123.65170046875,48.7781993842774],[123.64298953125,48.8094866157227],[123.6057825,48.8596721625977],[123.62298953125,48.8881993842774],[123.644449492188,48.9406392646484],[123.62170046875,48.9581993842774],[123.6086340625,48.9751305366211],[123.581690703125,48.9959242988281],[123.5444934375,49.0111495185547],[123.56298953125,49.0581993842773],[123.567345,49.0738430000001],[123.63146609375,49.0440630317383],[123.750269804688,49.0256325507813],[123.76197390625,49.0392150092774],[123.77271609375,49.0484709907227],[123.79123171875,49.0699587226563],[123.8127746875,49.0885192084961],[123.811539335938,49.103843],[123.812745390625,49.1188430000001],[123.810474882813,49.1471175361328],[123.89861453125,49.1631951118164],[123.921295195313,49.203843],[123.895494414063,49.2500859809571],[123.91197390625,49.2692150092774],[123.980225859375,49.2796157050782],[124.025103789063,49.311433637207],[124.090206328125,49.3062026191407],[124.195982695313,49.3253807807618],[124.321124296875,49.3153252387695],[124.332760039063,49.368671491211],[124.331944609375,49.3788430000001],[124.333482695313,49.3979894233399],[124.266641875,49.505080487793],[124.29197390625,49.5192150092774],[124.327345,49.5338430000001],[124.330767851563,49.5216506171876],[124.339537382813,49.5304198432617],[124.327345,49.5338430000001],[124.332906523438,49.5497069526368],[124.331851835938,49.5763271308594],[124.368482695313,49.6158632636719],[124.404351835938,49.6405471015625],[124.452345,49.638644940918],[124.462345,49.639041059082],[124.528468046875,49.6364205146485],[124.617725859375,49.6534618354493],[124.641329375,49.6789348579102],[124.733292265625,49.689939496582],[124.732139921875,49.7190129829102],[124.7526965625,49.7488851142579],[124.737374296875,49.7630815864258],[124.816436796875,49.848410565918],[124.841480742188,49.8494033027344],[124.899595976563,49.8290337348633],[124.972154570313,49.8401222968751],[124.934918242188,49.8746218085938],[124.968648710938,49.8924700141602],[125.080235625,49.7938271308594],[125.152154570313,49.8190337348633],[125.167345,49.823843],[125.221881132813,49.7944075751954],[125.212808867188,49.7583803535157],[125.201617460938,49.738843],[125.212886992188,49.7191658759766],[125.210308867188,49.6938430000001],[125.213053007813,49.666891400879],[125.191881132813,49.6493056464844],[125.182345,49.6378237128907],[125.157432890625,49.667814862793],[125.112808867188,49.6723632026368],[125.133961210938,49.6164595771484],[125.162667265625,49.6193856025391],[125.191422148438,49.6029180122071],[125.223873320313,49.588843],[125.2218371875,49.5688430000001],[125.224771757813,49.5400139594727],[125.207515898438,49.5256774116211],[125.221881132813,49.5083803535156],[125.233365507813,49.4988430000001],[125.220308867188,49.4879964423828],[125.264478789063,49.4513021064453],[125.24302859375,49.413843],[125.270928984375,49.3651262641602],[125.257345,49.353843]]]]}},{"type":"Feature","properties":{"name":"新巴尔虎右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.217594023438,49.5204186225587],[117.262345,49.518644940918],[117.455914335938,49.5263173652344],[117.503306914063,49.4680870795899],[117.50185671875,49.4315227485352],[117.652115507813,49.389638288086],[117.652550078125,49.3786788154297],[117.626832304688,49.3300801826173],[117.687345,49.313843],[117.68271609375,49.2984709907227],[117.63271609375,49.1695729804688],[117.644136992188,49.0325191474609],[117.66986453125,48.9864073920899],[117.574947539063,48.876239850586],[117.524932890625,48.8331508613281],[117.5580871875,48.804586713379],[117.5766028125,48.7830992866212],[117.62197390625,48.7440099311524],[117.672843046875,48.6790529609375],[117.661344023438,48.6263225532227],[117.663472929688,48.5998235297852],[117.651920195313,48.5791213203126],[117.655577421875,48.5336000800781],[117.64197390625,48.5092150092774],[117.629576445313,48.4680397773438],[117.61271609375,48.4484712958985],[117.591812773438,48.4304616523438],[117.592769804688,48.4185469794922],[117.564537382813,48.3787252021484],[117.58271609375,48.3292147041016],[117.59197390625,48.2984712958985],[117.617511015625,48.2764693427735],[117.632896757813,48.2488948798828],[117.611925078125,48.199095685547],[117.612745390625,48.188843],[117.6119153125,48.1785195136719],[117.6227746875,48.1691664863282],[117.6219153125,48.1585195136719],[117.63271609375,48.1492147041016],[117.64197390625,48.1284712958985],[117.65271609375,48.1192147041016],[117.663961210938,48.1061605048829],[117.710328398438,48.1098860908203],[117.7280871875,48.0945870185547],[117.74197390625,48.0784712958985],[117.8045715625,48.0335219550782],[117.797345,48.0138430000001],[117.784215117188,48.0001772285157],[117.534835234375,47.7981203437501],[117.36830203125,47.6449324775391],[117.0800403125,47.8262709785156],[116.851549101563,47.8987429023438],[116.66224734375,47.8889430976563],[116.446964140625,47.8405165839844],[116.248902617188,47.8769539619141],[116.11224734375,47.8189430976563],[115.94547,47.6789430976562],[115.893394804688,47.7099752021484],[115.573521757813,47.919692609375],[115.531949492188,48.1045082832031],[115.532447539063,48.1288430000001],[115.53187625,48.1568428779297],[115.812877226563,48.2566567207031],[115.78802859375,48.5241451240235],[115.80224734375,48.5389430976563],[116.066065703125,48.8124993110352],[116.03646609375,48.8699571967773],[116.19224734375,49.0989430976563],[116.39244265625,49.3887429023438],[116.606397734375,49.705083234375],[116.714845,49.8452257514649],[117.05224734375,49.6887429023438],[117.267345,49.633843],[117.261549101563,49.6034813666993],[117.217594023438,49.5204186225587]]]]}},{"type":"Feature","properties":{"name":"新巴尔虎左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.367345,49.783843],[118.395523710938,49.7586650825196],[118.382628203125,49.6485616279297],[118.371910429688,49.628843],[118.389737578125,49.5960396552735],[118.402061796875,49.4385616279298],[118.442061796875,49.4262099433594],[118.432628203125,49.4185616279297],[118.392628203125,49.4062099433594],[118.402506132813,49.1992955756836],[118.452061796875,49.1285616279298],[118.504190703125,49.0613002753906],[118.543199492188,48.9981954169922],[118.539307890625,48.9328545356446],[118.672628203125,48.8491243720703],[118.723990507813,48.8093193793946],[118.832628203125,48.7991243720704],[118.867345,48.783843],[118.86271609375,48.7684709907227],[118.824312773438,48.7513353706055],[118.811690703125,48.7287126899414],[118.833629179688,48.709814069336],[118.831944609375,48.6888430000001],[118.834273710938,48.6598140693359],[118.821470976563,48.6487841010743],[118.8680871875,48.619586713379],[118.88197390625,48.5884709907227],[118.923746367188,48.5379723334961],[118.9019153125,48.519166791504],[118.902769804688,48.5085646796876],[118.874986601563,48.4587654853516],[118.98093875,48.3757857490234],[119.01197390625,48.3584712958985],[119.03271609375,48.3492147041016],[119.06197390625,48.3284712958985],[119.130826445313,48.3179787421875],[119.220455351563,48.2618422675781],[119.23197390625,48.2484712958985],[119.252877226563,48.2304616523438],[119.250631132813,48.2025411201172],[119.277467070313,48.1596974921876],[119.35271609375,48.1392147041016],[119.394488554688,48.1159084296876],[119.492081328125,48.0800691962891],[119.512345,48.0784413886719],[119.522345,48.0792446113282],[119.537345,48.0780397773438],[119.55236453125,48.0792464423829],[119.67232546875,48.0684395576172],[119.702345,48.0708516669922],[119.732345,48.0684413886719],[119.742345,48.0692446113281],[119.777345,48.0664327216797],[119.819034453125,48.0697823310547],[119.84271609375,48.0592147041016],[119.852022734375,48.0484151435548],[119.933238554688,48.054941022461],[119.931246367188,48.0301924873047],[119.952764921875,47.9790956855469],[119.951593046875,47.9644930244141],[120.008756132813,47.8915010810547],[120.04197390625,47.8384712958985],[120.07521609375,47.7960225654297],[120.09197390625,47.7584712958985],[120.1080871875,47.7295870185547],[120.130777617188,47.6787429023438],[120.179752226563,47.6676168037109],[120.21271609375,47.6392147041016],[120.217345,47.6238430000001],[120.19189578125,47.6297396064453],[120.175714140625,47.6087740302735],[120.105792265625,47.5940200019532],[120.06298953125,47.5681990791016],[120.018277617188,47.5557491279297],[119.983922148438,47.5608260322266],[119.952569609375,47.5797396064454],[119.90877078125,47.5669686103516],[119.81494265625,47.4974056220704],[119.80162234375,47.4648647285157],[119.7620715625,47.4343367744141],[119.69170046875,47.4194869208985],[119.642081328125,47.3999806953125],[119.6097278125,47.35806175],[119.519195585938,47.3389577460938],[119.477345,47.333843],[119.442154570313,47.3586525703125],[119.430689726563,47.3710280585938],[119.372154570313,47.3986525703126],[119.343936796875,47.4291042304688],[119.332174101563,47.428637921875],[119.322535429688,47.4350551582031],[119.353038359375,47.4793813300782],[119.204976835938,47.5206526923828],[119.143287382813,47.542275006836],[119.121441679688,47.6651888251954],[118.757198515625,47.7752596259766],[118.562535429688,47.9890334296875],[118.442154570313,47.9986525703125],[118.407418242188,48.0108278632813],[118.332345,48.0078523994141],[118.302345,48.0090413642579],[118.283209257813,48.0082826972656],[118.235553007813,48.0249867988281],[118.2200403125,48.0417244697266],[118.137345,48.038446881836],[118.122203398438,48.0390468574219],[118.082535429688,48.0286525703125],[118.023663359375,48.0146291328125],[117.912345,48.0190413642579],[117.902345,48.0186446357422],[117.864068632813,48.0201619697266],[117.797345,48.0138430000001],[117.8045715625,48.0335219550782],[117.74197390625,48.0784712958985],[117.7280871875,48.0945870185547],[117.710328398438,48.1098860908203],[117.663961210938,48.1061605048829],[117.65271609375,48.1192147041016],[117.64197390625,48.1284712958985],[117.63271609375,48.1492147041016],[117.6219153125,48.1585195136719],[117.6227746875,48.1691664863282],[117.6119153125,48.1785195136719],[117.612745390625,48.188843],[117.611925078125,48.199095685547],[117.632896757813,48.2488948798828],[117.617511015625,48.2764693427735],[117.59197390625,48.2984712958985],[117.58271609375,48.3292147041016],[117.564537382813,48.3787252021484],[117.592769804688,48.4185469794922],[117.591812773438,48.4304616523438],[117.61271609375,48.4484712958985],[117.629576445313,48.4680397773438],[117.64197390625,48.5092150092774],[117.655577421875,48.5336000800781],[117.651920195313,48.5791213203126],[117.663472929688,48.5998235297852],[117.661344023438,48.6263225532227],[117.672843046875,48.6790529609375],[117.62197390625,48.7440099311524],[117.5766028125,48.7830992866212],[117.5580871875,48.804586713379],[117.524932890625,48.8331508613281],[117.574947539063,48.876239850586],[117.66986453125,48.9864073920899],[117.644136992188,49.0325191474609],[117.63271609375,49.1695729804688],[117.68271609375,49.2984709907227],[117.687345,49.313843],[117.702628203125,49.3185616279297],[117.735933867188,49.3366619086914],[117.81345828125,49.4002669501954],[117.84259890625,49.3985295844727],[117.852061796875,49.4106920600587],[117.822686796875,49.4369420600587],[117.872896757813,49.4486247993164],[117.8620325,49.4686174750977],[117.862652617188,49.4789659858398],[117.857345,49.513843],[117.87459109375,49.5186452460938],[117.871529570313,49.5393547797852],[117.88298953125,49.5481993842774],[117.89170046875,49.5894866157227],[117.94298953125,49.5981993842774],[117.956549101563,49.6157701850586],[117.987345,49.6203206611329],[118.060660429688,49.6094866157227],[118.097921171875,49.6358162666016],[118.111773710938,49.6696660590821],[118.160069609375,49.6625295234376],[118.20298953125,49.6881993842774],[118.21170046875,49.7094866157227],[118.22298953125,49.7181993842774],[118.2360559375,49.7351305366211],[118.28298953125,49.7481993842774],[118.3119153125,49.769645307129],[118.325953398438,49.7675710273438],[118.367345,49.783843]]]]}},{"type":"Feature","properties":{"name":"牙克石市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.217345,50.3738430000001],[122.229537382813,50.3704198432617],[122.220767851563,50.3616506171875],[122.217345,50.3738430000001]]],[[[122.217345,50.3738430000001],[122.175142851563,50.3608116889648],[122.156783476563,50.3444054389649],[122.1380090625,50.3233950019532],[122.0823059375,50.3084755683594],[122.052628203125,50.3191243720704],[122.022061796875,50.3285616279297],[122.004195585938,50.3485616279298],[121.952061796875,50.3391243720703],[121.912218046875,50.3284529853516],[121.870533476563,50.3575728583985],[121.851798125,50.3167562080078],[121.8320325,50.2990956855469],[121.832974882813,50.2833104682617],[121.792628203125,50.2647927070313],[121.805206328125,50.2431560493165],[121.841783476563,50.2232805610352],[121.873238554688,50.208843],[121.870264921875,50.158947675293],[121.98047,50.1352944160156],[121.983194609375,50.0896056342773],[121.972061796875,50.0691243720703],[121.959478789063,50.0417076850586],[121.924254179688,50.0255397773438],[121.943648710938,50.0082103706055],[121.902061796875,49.9891243720703],[121.887906523438,49.9732805610352],[121.853487578125,49.9425255561524],[121.985172148438,49.9191243720703],[122.00468875,49.9296758247071],[122.02603640625,49.953572309082],[122.072120390625,49.9285314155274],[122.082589140625,49.9291555],[122.142345,49.8801262641602],[122.202061796875,49.9291243720704],[122.222628203125,49.9385616279297],[122.2866809375,49.9781612373047],[122.330494414063,49.9291243720704],[122.352628203125,49.9385616279297],[122.389039335938,49.9583476997071],[122.428682890625,49.9607109809571],[122.4626575,49.9391036201172],[122.461749296875,49.923843],[122.4637903125,49.8896013618164],[122.437237578125,49.8658763862305],[122.4226184375,49.8185289741211],[122.405069609375,49.8195745063477],[122.401060820313,49.7523046088867],[122.417662382813,49.6903203559571],[122.358140898438,49.6776033759766],[122.302764921875,49.6809041572266],[122.302047148438,49.668843],[122.3026575,49.658576581543],[122.282061796875,49.6491243720703],[122.263609648438,49.6284697700196],[122.246812773438,49.629470746582],[122.232628203125,49.5985616279297],[122.193697539063,49.5865410590821],[122.1920325,49.5585903144531],[122.203648710938,49.5482103706055],[122.162061796875,49.5291243720703],[122.152628203125,49.5185616279297],[122.132061796875,49.5091243720704],[122.102345,49.4883653999024],[122.059117460938,49.5185616279297],[122.019307890625,49.5084218574219],[121.976002226563,49.4599550605469],[121.952120390625,49.4585314155274],[121.916886015625,49.4776784492188],[121.852345,49.4815251899415],[121.802345,49.4785448432618],[121.7438684375,49.4820302558594],[121.731881132813,49.4486177802735],[121.771685820313,49.4363268256837],[121.802061796875,49.3885616279297],[121.8226575,49.359080121582],[121.821451445313,49.3388430000001],[121.843668242188,49.3286470771485],[121.870440703125,49.2703124213868],[121.892061796875,49.2585616279297],[121.931358671875,49.2405266547852],[121.942628203125,49.2091243720704],[121.952061796875,49.1785616279297],[121.9826575,49.1591036201172],[121.9820325,49.1485720039062],[122.022061796875,49.1362099433594],[121.997193632813,49.0752483344727],[121.952628203125,49.0547927070313],[121.972061796875,49.0485616279297],[122.032061796875,49.0346016669922],[122.012628203125,49.0085616279297],[121.992628203125,48.9906920600587],[122.002061796875,48.9485616279297],[122.041383085938,48.9305153632812],[122.052061796875,48.9185616279297],[122.081861601563,48.8919368720703],[122.082652617188,48.8786418891602],[122.077345,48.863843],[122.042896757813,48.857848432129],[122.0771496875,48.7990975166016],[122.139141875,48.7883095527344],[122.154400664063,48.7520964790039],[122.193013945313,48.6992351508789],[122.1887121875,48.6646251655274],[122.201890898438,48.6481645942383],[122.212628203125,48.6495000434571],[122.251842070313,48.6344268012696],[122.29271609375,48.639511334961],[122.343609648438,48.6071343208008],[122.362345,48.6094649482422],[122.377345,48.6075991035157],[122.4038684375,48.6108983588867],[122.482896757813,48.5993959785156],[122.487345,48.593843],[122.482896757813,48.5682900214844],[122.460553007813,48.5503966499024],[122.476163359375,48.523843],[122.461793242188,48.4993959785157],[122.451236601563,48.4624718452149],[122.421373320313,48.4116689277344],[122.423590117188,48.3938430000001],[122.421314726563,48.3755501533203],[122.451793242188,48.2962581611329],[122.422554960938,48.2881948066407],[122.38812625,48.2924770332032],[122.363057890625,48.2724025703125],[122.352896757813,48.2482900214844],[122.341676054688,48.2292031074219],[122.34302859375,48.2183449531251],[122.321793242188,48.2093959785156],[122.282554960938,48.1807350898438],[122.247345,48.1763552070312],[122.205479765625,48.1815627265626],[122.169371367188,48.1603389716798],[122.147345,48.1575991035157],[122.107345,48.1625746894532],[122.041842070313,48.1544271064453],[121.97045046875,48.1818685126953],[121.904176054688,48.1629439521484],[121.842896757813,48.1893959785157],[121.764527617188,48.2008022285157],[121.700758085938,48.2382900214844],[121.573507109375,48.2287764716797],[121.541217070313,48.202919538086],[121.544156523438,48.1792958808594],[121.511217070313,48.1529195380859],[121.512965117188,48.138843],[121.509859648438,48.113843],[121.513824492188,48.0819362617188],[121.494874296875,48.0582680488281],[121.442896757813,48.0382900214844],[121.358116484375,48.0289931464844],[121.322896757813,48.0082900214844],[121.271749296875,47.9936653876953],[121.220787382813,47.9627120185547],[121.232984648438,47.9090047431641],[121.231666289063,47.8983901191407],[121.242896757813,47.8893959785157],[121.251793242188,47.8782900214844],[121.291793242188,47.8614345527344],[121.275831328125,47.8198982978516],[121.242345,47.8157332587891],[121.18939578125,47.8223195625001],[121.133570585938,47.8008614326172],[121.112125273438,47.7981941962891],[121.072564726563,47.8094918037109],[121.062345,47.8082210517578],[121.051954375,47.8095137763673],[121.022896757813,47.7882900214844],[120.971793242188,47.7593959785156],[120.962613554688,47.7273030830079],[120.920562773438,47.6965846992188],[120.821793242188,47.6793959785156],[120.773570585938,47.6608614326172],[120.752345,47.6582210517578],[120.742345,47.6594649482422],[120.732061796875,47.6581856513672],[120.702896757813,47.6693959785157],[120.687345,47.673843],[120.682535429688,47.6790334296875],[120.662154570313,47.6886525703125],[120.646451445313,47.7872280097657],[120.682535429688,47.7986525703125],[120.702178984375,47.8090474677735],[120.742345,47.8074556708984],[120.782345,47.8090413642578],[120.821041289063,47.8075075507813],[120.8672278125,47.84292503125],[120.905968046875,47.8847335029297],[120.931046171875,47.937870709961],[120.851314726563,47.9487673164063],[120.816485625,47.9863576484375],[120.85658328125,48.0052822089844],[120.8305871875,48.0293679023437],[120.81216921875,48.0286379218751],[120.8001965625,48.0415590644532],[120.812550078125,48.0887026191407],[120.812144804688,48.098843],[120.812642851563,48.1114076972657],[120.893585234375,48.1081990791016],[120.92838015625,48.1457527900391],[120.982535429688,48.1586525703125],[121.042154570313,48.1850551582032],[121.010640898438,48.2308516669922],[121.013389921875,48.3001772285157],[121.059000273438,48.3217024970704],[121.114615507813,48.3393105292969],[121.156920195313,48.384970319336],[121.136964140625,48.4034615302735],[121.115621367188,48.4708687568359],[121.09025515625,48.4574446845703],[120.981031523438,48.4737313056641],[120.94781375,48.4561537910157],[120.861261015625,48.4864903999024],[120.862550078125,48.5190001655274],[120.842154570313,48.5686522651367],[120.830875273438,48.6277211738282],[120.852535429688,48.6686522651368],[120.862154570313,48.6901213813477],[120.841627226563,48.709140241211],[120.877740507813,48.7773857856446],[120.842154570313,48.7886522651367],[120.832535429688,48.8090337348633],[120.783277617188,48.8322795844727],[120.822535429688,48.8686522651367],[120.838717070313,48.8861165595704],[120.811363554688,48.8990267158204],[120.813326445313,48.9486592841798],[120.792154570313,48.9586522651368],[120.777725859375,48.9742241645508],[120.76134890625,48.9893981147461],[120.737345,48.9884465766602],[120.716978789063,48.9892537666016],[120.736221953125,49.0256182075196],[120.722139921875,49.0386659980469],[120.722550078125,49.0490129829102],[120.702139921875,49.0786730170899],[120.702940703125,49.098843],[120.680850859375,49.1092684150391],[120.661788359375,49.1298384833985],[120.662550078125,49.1490200019532],[120.63806765625,49.1717024970704],[120.602154570313,49.1886522651368],[120.590650664063,49.2010692573242],[120.592550078125,49.2490200019532],[120.581949492188,49.258843],[120.592550078125,49.2686659980469],[120.592095976563,49.2801772285156],[120.577345,49.293843],[120.572808867188,49.2993056464844],[120.561881132813,49.3083803535156],[120.548267851563,49.3247679877931],[120.530855742188,49.3392333198243],[120.533853789063,49.3686592841798],[120.501881132813,49.3883803535156],[120.485455351563,49.4081575751954],[120.461793242188,49.4184197211914],[120.463057890625,49.4308470893555],[120.522808867188,49.4483803535157],[120.543721953125,49.4603575874024],[120.541793242188,49.4792507148438],[120.576280546875,49.5005223823243],[120.597047148438,49.5255242133789],[120.672808867188,49.5583803535157],[120.691881132813,49.5693056464844],[120.745113554688,49.5811092353516],[120.772515898438,49.5783159614258],[120.82603640625,49.5902306342774],[120.849952421875,49.619017560547],[120.912808867188,49.6283803535157],[120.921881132813,49.6475398994141],[120.870836210938,49.6790267158203],[120.87568484375,49.726617963379],[120.902808867188,49.7383803535156],[120.91345828125,49.7629354072266],[120.911324492188,49.783843],[120.91375125,49.8076549506836],[120.89310671875,49.8437071967773],[120.928267851563,49.872918012207],[120.941881132813,49.8893056464845],[120.96693484375,49.9101174140625],[121.001881132813,49.9593056464844],[121.042398710938,49.9842974067383],[121.047345,50.0338430000001],[121.05298953125,50.0381993842774],[121.06170046875,50.0650432563477],[121.03170046875,50.0881993842773],[121.02298953125,50.0994866157227],[121.01170046875,50.1081993842774],[121.00298953125,50.1394866157227],[120.99170046875,50.1481993842774],[120.98298953125,50.1794866157227],[120.958013945313,50.2366396308594],[120.98611453125,50.2583312202148],[120.98017703125,50.2984993720704],[120.94170046875,50.3281993842774],[120.90298953125,50.3794866157227],[120.867789335938,50.3892882514649],[120.837345,50.433843],[120.910377226563,50.4471645332031],[120.932066679688,50.459267194336],[120.948038359375,50.4579839301758],[120.964742460938,50.4954198432618],[121.01982546875,50.4998458076172],[121.076339140625,50.4875188422852],[121.1280871875,50.5030992866211],[121.149742460938,50.5282320380859],[121.162345,50.5292446113282],[121.176939726563,50.5280718208008],[121.22271609375,50.5384709907227],[121.238795195313,50.557134015625],[121.33271609375,50.5784709907227],[121.345279570313,50.5930525947266],[121.427345,50.5996465278321],[121.460719023438,50.5969649482422],[121.47271609375,50.6184709907227],[121.488253203125,50.6532915473633],[121.504332304688,50.671955487793],[121.61271609375,50.6884709907227],[121.63197390625,50.6992150092774],[121.6755090625,50.7123232246094],[121.69818484375,50.763134381836],[121.742105742188,50.7792638374024],[121.752589140625,50.7784215522462],[121.838311796875,50.8116732001954],[121.878565703125,50.7892150092774],[121.91271609375,50.7984709907227],[121.94197390625,50.8192150092773],[121.97271609375,50.8284709907227],[121.9866028125,50.8445867133789],[122.00271609375,50.8584709907227],[122.015220976563,50.8729845405274],[122.102345,50.8409899116212],[122.17562625,50.8679015327149],[122.196939726563,50.8696141791992],[122.25193484375,50.8571211982422],[122.27271609375,50.8392150092774],[122.277345,50.783843],[122.27142703125,50.7797585273438],[122.250943632813,50.7500896430665],[122.253565703125,50.7383962226563],[122.233819609375,50.7080706000977],[122.20142703125,50.6997585273438],[122.176607695313,50.6835942817383],[122.16170046875,50.6437535834962],[122.14142703125,50.6297585273438],[122.126090117188,50.5887685371094],[122.189386015625,50.5787932563477],[122.228897734375,50.5530651069336],[122.2169153125,50.4996169257813],[122.254932890625,50.4853908515625],[122.250347929688,50.4649422431641],[122.276866484375,50.4242244697266],[122.229595976563,50.3915898872071],[122.217345,50.3738430000001]]]]}},{"type":"Feature","properties":{"name":"扎兰屯市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.582550078125,48.5990200019531],[122.5817590625,48.5790642524414],[122.592345,48.578644940918],[122.602511015625,48.5790477729492],[122.622178984375,48.5686382270508],[122.65252078125,48.5698409248048],[122.675548125,48.5449901557617],[122.74412234375,48.5286559272461],[122.739913359375,48.4225276923829],[122.794112578125,48.4053682685547],[122.822535429688,48.3790334296876],[122.844517851563,48.34499534375],[122.91986453125,48.2751790595703],[122.932906523438,48.2379787421876],[122.931846953125,48.2112166572266],[122.945909453125,48.1667989326172],[123.003072539063,48.0922499824219],[123.001031523438,48.0406587958984],[123.018482695313,48.0218227363281],[123.052154570313,47.9986525703125],[123.105689726563,47.9817024970704],[123.132535429688,47.9690334296876],[123.15357546875,47.9579006171875],[123.188175078125,47.9592720771485],[123.287345,47.953843],[123.271143828125,47.9143166328126],[123.233502226563,47.8532924628907],[123.20451296875,47.8183962226563],[123.150308867188,47.7793856025391],[123.071959257813,47.7563930488281],[122.9648059375,47.7107051826172],[122.907345,47.693843],[122.82306765625,47.6620925117188],[122.807345,47.643843],[122.739117460938,47.6054866767578],[122.588521757813,47.5434133125],[122.549986601563,47.5168971992188],[122.500357695313,47.4036855292969],[122.407345,47.343843],[122.392061796875,47.3391243720704],[122.318756132813,47.3128212714844],[122.252628203125,47.2585616279297],[122.232061796875,47.2491243720703],[122.202906523438,47.2332802558594],[122.136475859375,47.2178243232423],[122.07439578125,47.1840895820313],[121.922545195313,47.2391530585938],[121.909986601563,47.2384047675782],[121.815826445313,47.2636244941407],[121.757345,47.2846071601563],[121.676920195313,47.2557491279297],[121.645655546875,47.2207625556641],[121.632628203125,47.1785616279297],[121.608365507813,47.1691243720703],[121.53588015625,47.1951332832031],[121.428204375,47.1759993720704],[121.412628203125,47.1585616279297],[121.397345,47.153843],[121.375201445313,47.1493727851563],[121.367345,47.1338430000001],[121.311793242188,47.1293959785157],[121.282896757813,47.1182900214844],[121.244928007813,47.1093959785156],[121.192896757813,47.1293959785157],[121.121793242188,47.1382900214845],[121.092535429688,47.149536359375],[121.025831328125,47.1369576240235],[120.972896757813,47.0982900214844],[120.95396609375,47.0893959785157],[120.889464140625,47.1365126777344],[120.821793242188,47.1482900214844],[120.784263945313,47.1627150703126],[120.762896757813,47.1893959785156],[120.732398710938,47.2138210273438],[120.62267703125,47.2451912666016],[120.60875125,47.2939009833985],[120.642896757813,47.3082900214844],[120.679517851563,47.3298165107422],[120.692843046875,47.32815940625],[120.701793242188,47.3493959785157],[120.72302859375,47.358344953125],[120.721724882813,47.368843],[120.722965117188,47.378843],[120.721241484375,47.3927150703126],[120.68935671875,47.4182460761719],[120.641793242188,47.4382900214844],[120.62400515625,47.4605025458985],[120.575758085938,47.4991353583985],[120.593013945313,47.5284828925782],[120.591197539063,47.5430538154298],[120.552345,47.5382210517579],[120.505152617188,47.5440908027344],[120.497345,47.5538430000001],[120.501158476563,47.5700307441407],[120.523531523438,47.5976552558594],[120.531158476563,47.6300307441406],[120.564718046875,47.6414681220703],[120.5959778125,47.6634145332032],[120.63213015625,47.6472188544922],[120.642345,47.6504006171875],[120.661539335938,47.6444216132813],[120.674971953125,47.6662178779298],[120.687345,47.673843],[120.702896757813,47.6693959785157],[120.732061796875,47.6581856513672],[120.742345,47.6594649482422],[120.752345,47.6582210517578],[120.773570585938,47.6608614326172],[120.821793242188,47.6793959785156],[120.920562773438,47.6965846992188],[120.962613554688,47.7273030830079],[120.971793242188,47.7593959785156],[121.022896757813,47.7882900214844],[121.051954375,47.8095137763673],[121.062345,47.8082210517578],[121.072564726563,47.8094918037109],[121.112125273438,47.7981941962891],[121.133570585938,47.8008614326172],[121.18939578125,47.8223195625001],[121.242345,47.8157332587891],[121.275831328125,47.8198982978516],[121.291793242188,47.8614345527344],[121.251793242188,47.8782900214844],[121.242896757813,47.8893959785157],[121.231666289063,47.8983901191407],[121.232984648438,47.9090047431641],[121.220787382813,47.9627120185547],[121.271749296875,47.9936653876953],[121.322896757813,48.0082900214844],[121.358116484375,48.0289931464844],[121.442896757813,48.0382900214844],[121.494874296875,48.0582680488281],[121.513824492188,48.0819362617188],[121.509859648438,48.113843],[121.512965117188,48.138843],[121.511217070313,48.1529195380859],[121.544156523438,48.1792958808594],[121.541217070313,48.202919538086],[121.573507109375,48.2287764716797],[121.700758085938,48.2382900214844],[121.764527617188,48.2008022285157],[121.842896757813,48.1893959785157],[121.904176054688,48.1629439521484],[121.97045046875,48.1818685126953],[122.041842070313,48.1544271064453],[122.107345,48.1625746894532],[122.147345,48.1575991035157],[122.169371367188,48.1603389716798],[122.205479765625,48.1815627265626],[122.247345,48.1763552070312],[122.282554960938,48.1807350898438],[122.321793242188,48.2093959785156],[122.34302859375,48.2183449531251],[122.341676054688,48.2292031074219],[122.352896757813,48.2482900214844],[122.363057890625,48.2724025703125],[122.38812625,48.2924770332032],[122.422554960938,48.2881948066407],[122.451793242188,48.2962581611329],[122.421314726563,48.3755501533203],[122.423590117188,48.3938430000001],[122.421373320313,48.4116689277344],[122.451236601563,48.4624718452149],[122.461793242188,48.4993959785157],[122.476163359375,48.523843],[122.460553007813,48.5503966499024],[122.482896757813,48.5682900214844],[122.487345,48.593843],[122.513219023438,48.588430097168],[122.564620390625,48.6156310249023],[122.582550078125,48.5990200019531]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"杭锦后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.137345,40.5838430000001],[107.140767851563,40.5960353828126],[107.149537382813,40.5872658515625],[107.137345,40.5838430000001]]],[[[107.137345,40.5838430000001],[107.137345,40.5738430000001],[107.157345,40.5738430000001],[107.161073027344,40.5220742011719],[107.197391386719,40.5037013984375],[107.183985625,40.477202375],[107.160704375,40.470483625],[107.157345,40.4638430000001],[107.13197390625,40.4684706855469],[107.100067167969,40.50550315625],[107.105882597656,40.5778713203125],[107.08197390625,40.5984706855469],[107.07271609375,40.6392153144531],[106.952625761719,40.6514650703125],[106.910699492188,40.7184011054688],[106.81197390625,40.7284706855469],[106.755714140625,40.7491310859375],[106.587345,40.753843],[106.593424101563,40.7703993964844],[106.591138945313,40.798843],[106.594195585938,40.8368886542969],[106.68271609375,40.8484706855469],[106.772298613281,40.8882375312501],[106.801600371094,40.9045864082032],[106.86271609375,40.9184706855469],[106.884222441406,40.9304701972657],[106.881541777344,40.9638430000001],[106.882904082031,40.9808071113282],[106.912681914063,40.9784145332031],[106.93197390625,41.0092153144532],[106.98271609375,41.0184706855469],[107.022142363281,41.0292604804688],[107.033963652344,41.0283107734375],[107.075113554688,41.0760744453125],[107.11271609375,41.1084706855469],[107.142020292969,41.1424843574219],[107.192669707031,41.1384157539063],[107.20197390625,41.1492153144532],[107.212772246094,41.1585195136719],[107.211485625,41.1745351386719],[107.24271609375,41.1884706855469],[107.273023710938,41.2053810859376],[107.271842070313,41.2200881171876],[107.293590117188,41.2183412910157],[107.291942167969,41.238843],[107.293250761719,41.255122296875],[107.365462675781,41.2100514960938],[107.377345,41.2238430000001],[107.387345,41.2238430000001],[107.374349394531,41.1491713691407],[107.341790800781,41.1293959785156],[107.331419707031,41.0931227851563],[107.273219023438,41.0465163398438],[107.252899199219,40.9982900214844],[107.236239042969,40.9699489570312],[107.222899199219,40.9082900214844],[107.191790800781,40.8893959785157],[107.182899199219,40.8682900214844],[107.171282988281,40.8589882636719],[107.198668242188,40.8214955878906],[107.16373171875,40.8171498847656],[107.113912382813,40.8464357734375],[107.110472441406,40.8187892890626],[107.121790800781,40.7282900214844],[107.133941679688,40.6966811347657],[107.131663847656,40.6783681464844],[107.166512480469,40.6571999335937],[107.123448515625,40.6227150703125],[107.120311308594,40.5974843574219],[107.137345,40.5838430000001]]]]}},{"type":"Feature","properties":{"name":"临河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.137345,40.5838430000001],[107.149537382813,40.5872658515625],[107.140767851563,40.5960353828126],[107.120311308594,40.5974843574219],[107.123448515625,40.6227150703125],[107.166512480469,40.6571999335937],[107.131663847656,40.6783681464844],[107.133941679688,40.6966811347657],[107.121790800781,40.7282900214844],[107.110472441406,40.8187892890626],[107.113912382813,40.8464357734375],[107.16373171875,40.8171498847656],[107.198668242188,40.8214955878906],[107.171282988281,40.8589882636719],[107.182899199219,40.8682900214844],[107.191790800781,40.8893959785157],[107.222899199219,40.9082900214844],[107.236239042969,40.9699489570312],[107.252899199219,40.9982900214844],[107.273219023438,41.0465163398438],[107.331419707031,41.0931227851563],[107.341790800781,41.1293959785156],[107.374349394531,41.1491713691407],[107.387345,41.2238430000001],[107.424373808594,41.2322536445313],[107.487345,41.2400868964844],[107.52000125,41.2360243964844],[107.562899199219,41.2482900214844],[107.623961210938,41.2746498847656],[107.651790800781,41.2582900214844],[107.667345,41.253843],[107.67312625,41.2391347480469],[107.671541777344,41.2284133125],[107.695350371094,41.1963002753907],[107.674996367188,41.1264943671875],[107.719801054688,41.0710573554688],[107.72420046875,41.0412831855469],[107.71156375,41.0091347480469],[107.713140898438,40.9984523750001],[107.70170046875,40.9794863105469],[107.691536894531,40.9546511054688],[107.618360625,40.8994179511719],[107.68170046875,40.8763075996094],[107.67298953125,40.8481996894532],[107.593944121094,40.7941860175782],[107.61298953125,40.7794863105469],[107.617345,40.7738430000001],[107.585745878906,40.7682118964844],[107.572806425781,40.7383803535156],[107.533980742188,40.70612815625],[107.484268828125,40.7111952949219],[107.442806425781,40.6783803535157],[107.421883574219,40.6693056464844],[107.387730742188,40.6447267890626],[107.337345,40.6498622871094],[107.317345,40.6478237128907],[107.278958769531,40.6517360664063],[107.235169707031,40.5507704902344],[107.202806425781,40.5693056464844],[107.176097441406,40.5808888984376],[107.157345,40.5738430000001],[107.137345,40.5738430000001],[107.137345,40.5838430000001]]]]}},{"type":"Feature","properties":{"name":"乌拉特后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.402064238281,41.2591237617188],[107.377345,41.2238430000001],[107.365462675781,41.2100514960938],[107.293250761719,41.255122296875],[107.291942167969,41.238843],[107.293590117188,41.2183412910157],[107.271842070313,41.2200881171876],[107.273023710938,41.2053810859376],[107.24271609375,41.1884706855469],[107.211485625,41.1745351386719],[107.212772246094,41.1585195136719],[107.20197390625,41.1492153144532],[107.192669707031,41.1384157539063],[107.142020292969,41.1424843574219],[107.11271609375,41.1084706855469],[107.075113554688,41.0760744453125],[107.033963652344,41.0283107734375],[107.022142363281,41.0292604804688],[106.98271609375,41.0184706855469],[106.93197390625,41.0092153144532],[106.912681914063,40.9784145332031],[106.882904082031,40.9808071113282],[106.881541777344,40.9638430000001],[106.884222441406,40.9304701972657],[106.86271609375,40.9184706855469],[106.801600371094,40.9045864082032],[106.772298613281,40.8882375312501],[106.68271609375,40.8484706855469],[106.594195585938,40.8368886542969],[106.591138945313,40.798843],[106.593424101563,40.7703993964844],[106.587345,40.753843],[106.539432402344,40.7587306953125],[106.500467558594,40.7804701972657],[106.502769804688,40.8091213203125],[106.49197390625,40.8284706855469],[106.480865507813,40.8773635078126],[106.43197390625,40.8884706855469],[106.42271609375,40.8950844550782],[106.45295046875,40.9085756660156],[106.437161894531,40.9515712714844],[106.337977324219,40.9361843085938],[106.314967070313,40.9094753242188],[106.283841582031,40.8955861640626],[106.26271609375,40.8664455390625],[106.282772246094,40.8491664863282],[106.281849394531,40.8376772285157],[106.2522278125,40.8400575996094],[106.24271609375,40.8084706855469],[106.227059355469,40.7804091621094],[106.201138945313,40.7688430000001],[106.202769804688,40.7485634589844],[106.177345,40.703843],[106.167345,40.703843],[106.157345,40.703843],[106.157345,40.6938430000001],[106.107591582031,40.7163075996094],[105.948658476563,40.73618675],[105.860416289063,40.7632204414062],[105.832899199219,40.7793959785156],[105.761790800781,40.7882900214844],[105.697874785156,40.8065419746094],[105.652899199219,40.8393959785157],[105.541790800781,40.8982900214844],[105.492899199219,40.9293959785157],[105.391121855469,40.9840151191406],[105.394881621094,41.0142360664063],[105.378472929688,41.0569240546875],[105.319859648438,41.1038613105469],[105.324832792969,41.143843],[105.319246855469,41.1887575507813],[105.271790800781,41.2682900214844],[105.223472929688,41.3566286445313],[105.197782011719,41.5349037910156],[105.222899199219,41.6882900214844],[105.227345,41.743843],[105.292535429688,41.7496401191407],[105.422244902344,41.8089430976562],[105.512445097656,41.8487429023437],[105.672471953125,41.9219069648438],[105.743699980469,41.9462868476563],[106.008565703125,42.0286232734375],[106.481490507813,42.198442609375],[106.713460722656,42.2713149238282],[106.782244902344,42.2889430976563],[107.043021269531,42.3160903144531],[107.252244902344,42.3589430976563],[107.267345,42.363843],[107.273238554688,42.3197805],[107.302625761719,42.2491237617188],[107.312064238281,42.2085622382813],[107.342625761719,42.1691237617188],[107.367742949219,42.1296327949219],[107.423070097656,42.0533950019532],[107.481500273438,41.9879994941407],[107.507906523438,41.9644057441407],[107.522064238281,41.9485622382813],[107.567181425781,41.9198671699219],[107.609893828125,41.8587209296876],[107.624481230469,41.7904384589844],[107.586326933594,41.7697048164063],[107.552064238281,41.7591237617187],[107.532625761719,41.7485622382812],[107.492064238281,41.7391237617188],[107.472625761719,41.7085622382812],[107.423209257813,41.6483315253906],[107.420860625,41.6089333320312],[107.470697050781,41.5935439277344],[107.482064238281,41.5085622382813],[107.506126738281,41.4870619941407],[107.539886503906,41.4387294746094],[107.502064238281,41.3691237617188],[107.491798125,41.3467568183595],[107.472064238281,41.3291237617188],[107.462625761719,41.3185622382813],[107.44615359375,41.3038430000001],[107.472022734375,41.280727765625],[107.402064238281,41.2591237617188]]]]}},{"type":"Feature","properties":{"name":"乌拉特前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.137345,40.523843],[109.149537382813,40.5204201484376],[109.140767851563,40.5116506171875],[109.137345,40.523843]]],[[[109.657345,41.1138430000001],[109.653922148438,41.1260353828126],[109.645152617188,41.1172658515625],[109.689151640625,41.0423317695313],[109.73271609375,41.0292153144531],[109.757511015625,41.0004372382813],[109.782345,40.9984413886719],[109.820924101563,41.0015407539063],[109.822747832031,40.978843],[109.821302519531,40.9608571601562],[109.83896609375,40.9403542304688],[109.88197390625,40.9134169746094],[109.860824003906,40.8420888496094],[109.83197390625,40.8292153144532],[109.82271609375,40.8184706855469],[109.817345,40.813843],[109.803065214844,40.8028212714844],[109.784937773438,40.7585305000001],[109.722996855469,40.7480080390626],[109.700953398438,40.751264875],[109.619390898438,40.7355849433594],[109.567345,40.74327659375],[109.517345,40.7358876777344],[109.473140898438,40.7424196601563],[109.41281375,40.7060292792969],[109.3997278125,40.6290065742187],[109.425955839844,40.6182729316407],[109.420128203125,40.5788430000001],[109.423084746094,40.558843],[109.421529570313,40.5483315253906],[109.43298953125,40.5394863105469],[109.437345,40.523843],[109.427345,40.523843],[109.427345,40.513843],[109.423040800781,40.4834499335938],[109.404381132813,40.4519753242188],[109.393624296875,40.4701210761719],[109.326685820313,40.4780861640626],[109.313189726563,40.5008510566407],[109.282345,40.4902577949219],[109.243189726563,40.5037038398438],[109.229210234375,40.4801210761719],[109.220399199219,40.4881752753906],[109.227735625,40.5095388007813],[109.171065703125,40.5175649238282],[109.144823027344,40.5364565253907],[109.137345,40.523843],[109.109095488281,40.5370412421875],[109.081461210938,40.5266249824219],[109.066532011719,40.5528078437501],[109.047345,40.5438430000001],[108.992154570313,40.5390334296876],[108.972508574219,40.528637921875],[108.957345,40.5292397285156],[108.942181425781,40.528637921875],[108.904019804688,40.5488307929688],[108.825494414063,40.5595619941407],[108.754342070313,40.5567421699219],[108.773099394531,40.6102602363282],[108.732174101563,40.608637921875],[108.687684355469,40.63925315625],[108.643231230469,40.6374904609375],[108.632535429688,40.6490334296876],[108.602139921875,40.658657453125],[108.602542753906,40.668843],[108.601986113281,40.6828749824219],[108.551846953125,40.6987490058594],[108.571854277344,40.7172866035157],[108.482154570313,40.7386525703126],[108.472535429688,40.7590334296876],[108.442154570313,40.7786525703126],[108.42630984375,40.7957521796875],[108.36935671875,40.8093190742188],[108.342345,40.8082485175782],[108.229676542969,40.8127138496094],[108.212257109375,40.84962425],[108.167345,40.863843],[108.191861601563,40.9095253730469],[108.202562285156,40.9081935859376],[108.241790800781,40.9193959785157],[108.320159941406,40.9308022285157],[108.36334109375,40.9561855292969],[108.432899199219,40.9682900214844],[108.441790800781,40.9793959785156],[108.462899199219,40.9882900214844],[108.481790800781,40.9993959785157],[108.512899199219,41.0082900214844],[108.531790800781,41.0242665839844],[108.503873320313,41.071762921875],[108.547738066406,41.0663063789063],[108.601092558594,41.0868141914063],[108.631790800781,41.1118837714844],[108.600079375,41.1079396796876],[108.587345,41.123843],[108.597345,41.123843],[108.597345,41.133843],[108.609537382813,41.1372658515626],[108.600767851563,41.1460353828125],[108.597345,41.133843],[108.587345,41.133843],[108.587345,41.123843],[108.567345,41.123843],[108.567345,41.133843],[108.57271609375,41.1384706855469],[108.586102324219,41.1684706855469],[108.65271609375,41.1592153144532],[108.702901640625,41.1407851386719],[108.801258574219,41.2178127265625],[108.88271609375,41.2284706855469],[108.935438261719,41.25788596875],[109.005277128906,41.2634975410156],[109.05271609375,41.2492153144531],[109.073326445313,41.2377162910157],[109.174923125,41.2458803535157],[109.25814578125,41.19944846875],[109.31197390625,41.2192153144531],[109.36271609375,41.2284706855469],[109.394176054688,41.2460231757813],[109.462825957031,41.2208132148438],[109.507345,41.2172365546876],[109.532584257813,41.2192641425781],[109.56353640625,41.2078969550781],[109.588577910156,41.2640175605469],[109.60197390625,41.2484706855469],[109.637345,41.233843],[109.637345,41.2238430000001],[109.647345,41.2238430000001],[109.653985625,41.220483625],[109.660704375,41.197202375],[109.704476347656,41.1499526191406],[109.720289335938,41.1175759101562],[109.657345,41.1138430000001]]]]}},{"type":"Feature","properties":{"name":"乌拉特中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.077345,41.233843],[108.110704375,41.2171144843751],[108.080704375,41.217202375],[108.077345,41.233843]]],[[[109.637345,41.233843],[109.647345,41.233843],[109.647345,41.2238430000001],[109.637345,41.2238430000001],[109.637345,41.233843]]],[[[109.637345,41.233843],[109.60197390625,41.2484706855469],[109.588577910156,41.2640175605469],[109.56353640625,41.2078969550781],[109.532584257813,41.2192641425781],[109.507345,41.2172365546876],[109.462825957031,41.2208132148438],[109.394176054688,41.2460231757813],[109.36271609375,41.2284706855469],[109.31197390625,41.2192153144531],[109.25814578125,41.19944846875],[109.174923125,41.2458803535157],[109.073326445313,41.2377162910157],[109.05271609375,41.2492153144531],[109.005277128906,41.2634975410156],[108.935438261719,41.25788596875],[108.88271609375,41.2284706855469],[108.801258574219,41.2178127265625],[108.702901640625,41.1407851386719],[108.65271609375,41.1592153144532],[108.586102324219,41.1684706855469],[108.57271609375,41.1384706855469],[108.567345,41.133843],[108.562064238281,41.1385622382812],[108.543970976563,41.1588112617188],[108.502064238281,41.1685622382813],[108.464000273438,41.1822194648438],[108.372345,41.1767568183594],[108.283179960938,41.1820717597657],[108.132918730469,41.2282546210938],[108.087054472656,41.2447109199219],[108.077345,41.233843],[108.052535429688,41.2186525703125],[108.022139921875,41.209028546875],[108.022542753906,41.198843],[108.022108183594,41.1878615546875],[107.992181425781,41.189048078125],[107.952449980469,41.1680239082031],[107.942535429688,41.1890334296875],[107.93033328125,41.1986525703126],[107.892508574219,41.178637921875],[107.862345,41.1798342109375],[107.822523222656,41.1782558417969],[107.812535429688,41.1890334296875],[107.789176054688,41.2000575996094],[107.6751575,41.2785170722656],[107.667345,41.253843],[107.651790800781,41.2582900214844],[107.623961210938,41.2746498847656],[107.562899199219,41.2482900214844],[107.52000125,41.2360243964844],[107.487345,41.2400868964844],[107.424373808594,41.2322536445313],[107.387345,41.2238430000001],[107.377345,41.2238430000001],[107.402064238281,41.2591237617188],[107.472022734375,41.280727765625],[107.44615359375,41.3038430000001],[107.462625761719,41.3185622382813],[107.472064238281,41.3291237617188],[107.491798125,41.3467568183595],[107.502064238281,41.3691237617188],[107.539886503906,41.4387294746094],[107.506126738281,41.4870619941407],[107.482064238281,41.5085622382813],[107.470697050781,41.5935439277344],[107.420860625,41.6089333320312],[107.423209257813,41.6483315253906],[107.472625761719,41.7085622382812],[107.492064238281,41.7391237617188],[107.532625761719,41.7485622382812],[107.552064238281,41.7591237617187],[107.586326933594,41.7697048164063],[107.624481230469,41.7904384589844],[107.609893828125,41.8587209296876],[107.567181425781,41.9198671699219],[107.522064238281,41.9485622382813],[107.507906523438,41.9644057441407],[107.481500273438,41.9879994941407],[107.423070097656,42.0533950019532],[107.367742949219,42.1296327949219],[107.342625761719,42.1691237617188],[107.312064238281,42.2085622382813],[107.302625761719,42.2491237617188],[107.273238554688,42.3197805],[107.267345,42.363843],[107.295543242188,42.4113430000001],[107.467874785156,42.4587429023437],[107.503753691406,42.4485720039063],[107.571119414063,42.4138674140626],[107.943973417969,42.4062587714844],[107.982445097656,42.4187429023437],[108.012244902344,42.4289430976563],[108.132545195313,42.4436428046876],[108.242401152344,42.4623805976563],[108.282244902344,42.4487429023438],[108.552445097656,42.4389430976563],[108.682244902344,42.4187429023437],[108.812445097656,42.4089430976563],[108.842349882813,42.3987075019532],[108.975980253906,42.4492787910157],[109.002345,42.4487404609376],[109.091788359375,42.4505666328125],[109.262633085938,42.4371413398437],[109.387345,42.4438430000001],[109.392244902344,42.4387429023438],[109.419566679688,42.4254872871094],[109.442244902344,42.3787429023437],[109.462445097656,42.3489430976563],[109.472244902344,42.3087429023438],[109.504088164063,42.2469313789063],[109.532491484375,42.1487868476563],[109.502957792969,42.1204116035156],[109.478372832031,42.0697377753906],[109.369178496094,41.9320095039063],[109.342244902344,41.9189430976563],[109.332445097656,41.8987429023438],[109.254036894531,41.8766286445313],[109.2910559375,41.8410622382813],[109.312244902344,41.8087429023437],[109.352166777344,41.7825685859376],[109.352645292969,41.7591310859376],[109.341905546875,41.7382851386719],[109.382088652344,41.6996779609376],[109.401688261719,41.6592775703126],[109.419156523438,41.6424941230469],[109.432244902344,41.5487429023438],[109.442445097656,41.5289430976563],[109.456898222656,41.4991493964844],[109.657345,41.4938430000001],[109.663377714844,41.4784987617188],[109.65170046875,41.4694863105469],[109.641624785156,41.4448647285157],[109.620858183594,41.4288356757813],[109.699791289063,41.3692555976563],[109.68298953125,41.3281996894531],[109.625816679688,41.3073403144531],[109.62156375,41.2785512519532],[109.63298953125,41.2494863105469],[109.637345,41.233843]]]]}},{"type":"Feature","properties":{"name":"五原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.587345,41.123843],[108.587345,41.133843],[108.597345,41.133843],[108.597345,41.123843],[108.587345,41.123843]]],[[[108.597345,41.133843],[108.600767851563,41.1460353828125],[108.609537382813,41.1372658515626],[108.597345,41.133843]]],[[[108.077345,41.233843],[108.080704375,41.217202375],[108.110704375,41.2171144843751],[108.087054472656,41.2447109199219],[108.132918730469,41.2282546210938],[108.283179960938,41.1820717597657],[108.372345,41.1767568183594],[108.464000273438,41.1822194648438],[108.502064238281,41.1685622382813],[108.543970976563,41.1588112617188],[108.562064238281,41.1385622382812],[108.567345,41.133843],[108.567345,41.123843],[108.587345,41.123843],[108.600079375,41.1079396796876],[108.631790800781,41.1118837714844],[108.601092558594,41.0868141914063],[108.547738066406,41.0663063789063],[108.503873320313,41.071762921875],[108.531790800781,41.0242665839844],[108.512899199219,41.0082900214844],[108.481790800781,40.9993959785157],[108.462899199219,40.9882900214844],[108.441790800781,40.9793959785156],[108.432899199219,40.9682900214844],[108.36334109375,40.9561855292969],[108.320159941406,40.9308022285157],[108.241790800781,40.9193959785157],[108.202562285156,40.9081935859376],[108.191861601563,40.9095253730469],[108.167345,40.863843],[108.158358183594,40.8530239082032],[108.107345,40.8478237128907],[108.082345,40.8503713203125],[108.057345,40.8478237128907],[108.032345,40.8503713203125],[108.004212675781,40.847505109375],[107.957345,40.8651149726563],[107.900172148438,40.8436330390625],[107.840025664063,40.87808128125],[107.820633574219,40.8333681464844],[107.780228300781,40.8565102363281],[107.73451296875,40.8611696601563],[107.722786894531,40.8082888007813],[107.702200957031,40.8103871894532],[107.687374296875,40.7598647285157],[107.664212675781,40.757505109375],[107.632806425781,40.7693056464844],[107.617345,40.7738430000001],[107.61298953125,40.7794863105469],[107.593944121094,40.7941860175782],[107.67298953125,40.8481996894532],[107.68170046875,40.8763075996094],[107.618360625,40.8994179511719],[107.691536894531,40.9546511054688],[107.70170046875,40.9794863105469],[107.713140898438,40.9984523750001],[107.71156375,41.0091347480469],[107.72420046875,41.0412831855469],[107.719801054688,41.0710573554688],[107.674996367188,41.1264943671875],[107.695350371094,41.1963002753907],[107.671541777344,41.2284133125],[107.67312625,41.2391347480469],[107.667345,41.253843],[107.6751575,41.2785170722656],[107.789176054688,41.2000575996094],[107.812535429688,41.1890334296875],[107.822523222656,41.1782558417969],[107.862345,41.1798342109375],[107.892508574219,41.178637921875],[107.93033328125,41.1986525703126],[107.942535429688,41.1890334296875],[107.952449980469,41.1680239082031],[107.992181425781,41.189048078125],[108.022108183594,41.1878615546875],[108.022542753906,41.198843],[108.022139921875,41.209028546875],[108.052535429688,41.2186525703125],[108.077345,41.233843]]]]}},{"type":"Feature","properties":{"name":"磴口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.167345,40.6938430000001],[106.157345,40.6938430000001],[106.157345,40.703843],[106.167345,40.703843],[106.167345,40.6938430000001]]],[[[106.480865507813,40.8773635078126],[106.49197390625,40.8284706855469],[106.502769804688,40.8091213203125],[106.500467558594,40.7804701972657],[106.539432402344,40.7587306953125],[106.587345,40.753843],[106.755714140625,40.7491310859375],[106.81197390625,40.7284706855469],[106.910699492188,40.7184011054688],[106.952625761719,40.6514650703125],[107.07271609375,40.6392153144531],[107.08197390625,40.5984706855469],[107.105882597656,40.5778713203125],[107.100067167969,40.50550315625],[107.13197390625,40.4684706855469],[107.157345,40.4638430000001],[107.15123171875,40.4489662910156],[107.171329375,40.3828090644531],[107.089869414063,40.3613185859375],[107.073170195313,40.3380178046876],[107.035194121094,40.3279994941406],[107.020907011719,40.2567360664063],[106.921519804688,40.1896681953125],[106.917345,40.183843],[106.917345,40.173843],[106.857345,40.173843],[106.85271609375,40.1792153144532],[106.742374296875,40.1918642402344],[106.700692167969,40.2584120917969],[106.774740019531,40.3047927070313],[106.82197390625,40.3670070625],[106.652225371094,40.3864662910157],[106.530745878906,40.3767055488281],[106.457984648438,40.3251161933594],[106.43271609375,40.3392153144531],[106.32197390625,40.3484706855469],[106.235592070313,40.4515981269532],[106.20271609375,40.5140358710938],[106.272691679688,40.5084133125001],[106.282691679688,40.5308242011719],[106.32064578125,40.5277748847657],[106.36197390625,40.4984706855469],[106.480867949219,40.4892153144531],[106.49197390625,40.5448403144531],[106.43197390625,40.5584706855469],[106.352183867188,40.5877724433594],[106.255604277344,40.6024892402344],[106.241011992188,40.6667177558595],[106.198233671875,40.6795973945313],[106.177345,40.703843],[106.202769804688,40.7485634589844],[106.201138945313,40.7688430000001],[106.227059355469,40.7804091621094],[106.24271609375,40.8084706855469],[106.2522278125,40.8400575996094],[106.281849394531,40.8376772285157],[106.282772246094,40.8491664863282],[106.26271609375,40.8664455390625],[106.283841582031,40.8955861640626],[106.314967070313,40.9094753242188],[106.337977324219,40.9361843085938],[106.437161894531,40.9515712714844],[106.45295046875,40.9085756660156],[106.42271609375,40.8950844550782],[106.43197390625,40.8884706855469],[106.480865507813,40.8773635078126]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"四子王旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.827345,41.2238430000001],[111.823922148438,41.2116506171876],[111.815152617188,41.2204201484375],[111.827345,41.2238430000001]]],[[[111.827345,41.2238430000001],[111.832760039063,41.2486708808594],[111.831785917969,41.2608071113281],[111.796751738281,41.2579921699219],[111.752640410156,41.2892690253906],[111.732345,41.2876381660157],[111.722569609375,41.3095473457031],[111.701363554688,41.2977162910157],[111.572303496094,41.3080861640626],[111.562669707031,41.3192702460938],[111.543326445313,41.3177162910157],[111.522623320313,41.3292665839844],[111.502345,41.3276381660157],[111.477345,41.3296462226563],[111.455628691406,41.3279018378907],[111.417345,41.313843],[111.412625761719,41.3491237617188],[111.379364042969,41.3788430000001],[111.412625761719,41.4085622382813],[111.429439726563,41.4273793769532],[111.442064238281,41.5112978339844],[111.383895292969,41.5945729804688],[111.364461699219,41.6369155097656],[111.302064238281,41.6485622382813],[111.246715117188,41.6603871894531],[111.151292753906,41.7270412421875],[111.113189726563,41.7696865058594],[111.072064238281,41.7885622382813],[111.046239042969,41.8025954414063],[110.982625761719,41.9191237617188],[110.962064238281,41.9485622382813],[110.942625761719,41.9791237617188],[110.888795195313,42.0561904121094],[110.782064238281,42.1785622382813],[110.772625761719,42.2491237617188],[110.742642851563,42.3042983222656],[110.719156523438,42.3803591132813],[110.7226575,42.4390688300782],[110.709940214844,42.4624684882813],[110.632635527344,42.4921865058594],[110.558885527344,42.5867409492187],[110.400130644531,42.7076491523438],[110.337345,42.733843],[110.342244902344,42.7389430976563],[110.431688261719,42.7823366523438],[110.466356230469,42.8352126289062],[110.627606230469,42.9373488593751],[110.682459746094,43.0182680488281],[110.682047148438,43.0384096503907],[110.742244902344,43.0889430976563],[110.762445097656,43.0987429023438],[110.993988066406,43.3143862128907],[111.086253691406,43.3619167304688],[111.147345,43.373843],[111.197896757813,43.281762921875],[111.360628691406,43.1860146308594],[111.503360625,43.1689345527344],[111.630111113281,43.0321364570313],[111.749190703125,42.9820253730469],[111.831512480469,42.8623915839844],[111.859139433594,42.8038491035157],[111.923494902344,42.7125673652344],[112.002535429688,42.6190334296875],[112.024525175781,42.5849794746094],[112.172659941406,42.5318105292969],[112.171749296875,42.5088100410157],[112.245025664063,42.4802761054688],[112.388568144531,42.3881130195313],[112.610845976563,42.3398647285156],[112.643026152344,42.3100490546875],[112.632044707031,42.2787172675782],[112.683311796875,42.2485768867188],[112.730174589844,42.1492787910157],[112.777725859375,42.1342238593751],[112.822154570313,42.1186525703125],[112.861068144531,42.1063320136719],[112.936063261719,42.0109658027344],[112.982535429688,41.9890334296876],[112.987345,41.9838430000001],[112.96271609375,41.9684706855469],[112.88197390625,41.9392153144531],[112.86271609375,41.9284706855469],[112.816600371094,41.9145864082031],[112.80271609375,41.8984706855469],[112.7627746875,41.8806471992188],[112.777345,41.813843],[112.726019316406,41.8331288886719],[112.682667265625,41.8083010078126],[112.651595488281,41.8114675117187],[112.583094511719,41.7962184882813],[112.47287234375,41.8074526191406],[112.426326933594,41.6458888984376],[112.383118925781,41.6502931953125],[112.342806425781,41.6793056464844],[112.277728300781,41.6883803535156],[112.242440214844,41.6681703925782],[112.212413359375,41.6794533515625],[112.160203886719,41.6648561835938],[112.166002226563,41.6079604316407],[112.142200957031,41.6103871894532],[112.132806425781,41.5783803535156],[112.118182402344,41.5528456855469],[112.088817167969,41.528452375],[112.094298125,41.4746804023438],[112.112806425781,41.4593056464844],[112.121883574219,41.4410439277344],[112.05095828125,41.4202309394531],[112.031954375,41.3973537421876],[111.993516875,41.4012721992188],[111.982806425781,41.3883803535156],[111.971883574219,41.3793056464844],[111.960511503906,41.3530861640626],[111.930855742188,41.328452375],[111.932855253906,41.3088430000001],[111.931795683594,41.298452375],[111.9521496875,41.2815444160156],[111.957345,41.2638430000001],[111.953350859375,41.257837140625],[111.91375125,41.2479555488282],[111.925599394531,41.2009230781251],[111.903062773438,41.1952443671875],[111.883289824219,41.2249794746094],[111.857345,41.213843],[111.840704375,41.217202375],[111.827345,41.2238430000001]]]]}},{"type":"Feature","properties":{"name":"兴和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.666419707031,41.4047682929687],[113.652806425781,41.3883803535156],[113.612806425781,41.3710329414063],[113.621883574219,41.3383803535157],[113.632806425781,41.3293056464844],[113.650155058594,41.2893056464844],[113.662806425781,41.2983803535157],[113.688829375,41.3583803535157],[113.722806425781,41.3493056464844],[113.751883574219,41.3383803535157],[113.802806425781,41.3293056464844],[113.849442167969,41.2923976875],[113.897345,41.313843],[113.910257597656,41.299389875],[113.939481230469,41.2859780097656],[113.96193484375,41.2370546699219],[113.976395292969,41.2685622382813],[114.006278105469,41.2327748847657],[113.991185332031,41.183891828125],[113.89166140625,41.1653163886719],[113.89322390625,41.1390956855469],[113.882064238281,41.1291237617188],[113.872625761719,41.1085622382813],[113.814888945313,41.0977846503906],[113.832064238281,41.0785622382813],[113.862625761719,41.0691237617187],[113.872064238281,41.0585622382812],[113.912625761719,41.0291237617188],[113.922064238281,41.0185622382813],[113.972625761719,40.9791237617188],[113.983841582031,40.9428017402344],[114.042659941406,40.9291164375001],[114.040545683594,40.893657453125],[114.052064238281,40.8685622382812],[114.062830839844,40.84874534375],[114.035360136719,40.8241994453125],[114.072064238281,40.7985622382813],[114.092625761719,40.7891237617188],[114.102064238281,40.7585622382813],[114.112625761719,40.7491237617188],[114.117345,40.743843],[114.111539335938,40.7344216132813],[114.089449492188,40.7413014960938],[114.054307890625,40.7196486640625],[114.067281523438,40.6779982734375],[114.053531523438,40.6376552558594],[114.035858183594,40.6124843574219],[114.051158476563,40.5876552558594],[114.064344511719,40.5795302558594],[114.075975371094,40.5421889472656],[114.043531523438,40.5276552558595],[113.951158476563,40.5200307441407],[113.947345,40.513843],[113.9056653125,40.4858925605469],[113.893260527344,40.4679274726562],[113.870357695313,40.4521132636719],[113.83201296875,40.4770839667969],[113.810784941406,40.507827375],[113.787345,40.513843],[113.78298953125,40.5494863105469],[113.77170046875,40.5581996894531],[113.76298953125,40.5794863105469],[113.729705839844,40.620669171875],[113.68490359375,40.6140492988281],[113.668631621094,40.6351308417969],[113.59170046875,40.6481996894532],[113.56298953125,40.6594863105469],[113.52170046875,40.6681996894532],[113.50298953125,40.6994863105469],[113.49170046875,40.7081996894532],[113.487345,40.753843],[113.502579375,40.7679579902344],[113.502110625,40.7797280097657],[113.522535429688,40.7986525703125],[113.532154570313,40.8101210761719],[113.512154570313,40.8286525703125],[113.502535429688,40.8459877753907],[113.542535429688,40.8586525703126],[113.562154570313,40.8890334296875],[113.582750273438,40.8987538886719],[113.55205203125,40.9387856269532],[113.575511503906,40.9958986640625],[113.607874785156,41.0111721015625],[113.632154570313,41.0401210761719],[113.612154570313,41.0586525703125],[113.602535429688,41.0902223945313],[113.64369265625,41.0885915351563],[113.662154570313,41.1095961738282],[113.563104277344,41.1331899238281],[113.602935820313,41.158911359375],[113.602122832031,41.1794289375],[113.572523222656,41.1782558417969],[113.552877226563,41.199458234375],[113.532345,41.1986452460938],[113.517345,41.1992397285157],[113.489564238281,41.1981386542969],[113.407345,41.203843],[113.413475371094,41.2288014960938],[113.407750273438,41.2543361640626],[113.350531035156,41.2757472968751],[113.35490359375,41.2952529121094],[113.373260527344,41.3079274726562],[113.389598417969,41.3315895820313],[113.413260527344,41.3479274726562],[113.433082304688,41.3766347480469],[113.463260527344,41.3879274726562],[113.467345,41.393843],[113.499698515625,41.4142311835938],[113.565858183594,41.3893715644531],[113.559845,41.4483803535157],[113.643602324219,41.4363088203125],[113.683538847656,41.4189882636719],[113.666419707031,41.4047682929687]]]]}},{"type":"Feature","properties":{"name":"卓资县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.957345,41.2638430000001],[111.988973417969,41.2439125800782],[112.042667265625,41.2493849921875],[112.077345,41.2295241523437],[112.112345,41.2495705390625],[112.131883574219,41.2383803535156],[112.17373171875,41.2202309394531],[112.251988554688,41.1582973457032],[112.262735625,41.1593923164063],[112.278797636719,41.1400551582031],[112.362806425781,41.1293056464844],[112.371883574219,41.1183803535156],[112.383538847656,41.1086977363281],[112.359234648438,41.0981569648438],[112.342806425781,41.0783803535156],[112.312806425781,41.0653700996094],[112.321883574219,41.0583803535157],[112.352806425781,41.0493056464844],[112.383238554688,41.0274050117187],[112.407345,41.0298622871094],[112.422345,41.0283339667969],[112.457345,41.0319008613281],[112.517345,41.0257851386719],[112.552345,41.0293520332031],[112.597801542969,41.0247194648438],[112.6231653125,41.0690077949219],[112.582806425781,41.1025319648438],[112.592452421875,41.1203603339844],[112.650640898438,41.1144301582032],[112.685455351563,41.1295290351563],[112.701883574219,41.1493056464844],[112.717345,41.1538430000001],[112.720704375,41.1372023750001],[112.738001738281,41.1154274726563],[112.729830351563,41.0986952949219],[112.7441028125,41.070483625],[112.763985625,41.077202375],[112.770704375,41.100483625],[112.807345,41.103843],[112.820238066406,41.0610207343751],[112.852345,41.0584413886719],[112.871849394531,41.0600087714844],[112.874344511719,41.0289614082031],[112.82271609375,41.0134169746094],[112.832008085938,40.9984145332032],[112.842547636719,40.9992604804687],[112.884410429688,40.9878041816407],[112.918499785156,40.9905422187501],[112.953084746094,40.9285549140625],[112.906654082031,40.9180068183594],[112.92728640625,40.8810243964844],[112.883011503906,40.8428774238282],[112.897345,40.8038430000001],[112.890682402344,40.7750917792969],[112.894466582031,40.7494863105469],[112.88170046875,40.7581996894531],[112.872518339844,40.7700966621094],[112.837345,40.743843],[112.81209109375,40.7383339667969],[112.798089628906,40.7545864082032],[112.779476347656,40.7706215644532],[112.752020292969,40.7684157539063],[112.74271609375,40.7792153144532],[112.730365019531,40.7884706855469],[112.732769804688,40.7585646796875],[112.72197390625,40.7392153144532],[112.707345,40.7064321113281],[112.663326445313,40.7099697089844],[112.64271609375,40.6984706855469],[112.59197390625,40.6892153144531],[112.57271609375,40.6784706855469],[112.55197390625,40.6692153144532],[112.541373320313,40.6569118476562],[112.502669707031,40.6600221992188],[112.487345,40.6422365546875],[112.464586210938,40.6686525703125],[112.425809355469,40.6803261542969],[112.380726347656,40.676704328125],[112.329464140625,40.7362038398438],[112.300365019531,40.7491896796876],[112.302772246094,40.7791664863282],[112.29197390625,40.7884706855469],[112.282574492188,40.799380109375],[112.242008085938,40.7882778144531],[112.231707792969,40.8447487617188],[112.177345,40.813843],[112.173441191406,40.8499404121094],[112.148714628906,40.8809218574219],[112.153878203125,40.8993019843751],[112.141248808594,40.9177455878906],[112.127345,40.9572731757813],[112.084796171875,40.9453163886719],[112.063441191406,40.9599404121094],[112.037345,40.9638430000001],[112.018211699219,41.0058657050782],[112.023084746094,41.0388430000001],[112.020765410156,41.054536359375],[111.97170046875,41.0681996894532],[111.96298953125,41.0794863105469],[111.920413847656,41.0969118476563],[111.90298953125,41.1194863105469],[111.867345,41.133843],[111.861600371094,41.1688088203125],[111.863089628906,41.1788771796875],[111.857345,41.213843],[111.883289824219,41.2249794746094],[111.903062773438,41.1952443671875],[111.925599394531,41.2009230781251],[111.91375125,41.2479555488282],[111.953350859375,41.257837140625],[111.957345,41.2638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼后旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.427345,41.523843],[113.430577421875,41.5460292792969],[113.448958769531,41.5269924140625],[113.427345,41.523843]]],[[[113.297345,41.5638430000001],[113.300767851563,41.5760353828125],[113.309537382813,41.5672658515625],[113.297345,41.5638430000001]]],[[[113.297345,41.5638430000001],[113.313270292969,41.5416237617188],[113.368909941406,41.530630109375],[113.400238066406,41.5530849433594],[113.353170195313,41.5712380195313],[113.369832792969,41.6080178046875],[113.404659453125,41.5955568671876],[113.401344023438,41.5787770820313],[113.411519804688,41.5280178046875],[113.427345,41.523843],[113.438365507813,41.4890334296876],[113.462535429688,41.4986525703126],[113.481065703125,41.5186525703125],[113.512154570313,41.4925795722656],[113.445538359375,41.4604555488281],[113.387706328125,41.4807253242188],[113.292535429688,41.4677187324219],[113.312974882813,41.4582729316407],[113.35093875,41.4597780585938],[113.362684355469,41.4488954902344],[113.347345,41.423843],[113.328026152344,41.4328688789063],[113.294823027344,41.4203530097656],[113.304447050781,41.4002114082031],[113.341925078125,41.4143386054688],[113.347345,41.423843],[113.387047148438,41.4173207832032],[113.402345,41.4195815253907],[113.421302519531,41.4167800117188],[113.423421660156,41.4311244941407],[113.37298953125,41.4517653632813],[113.392406035156,41.4597780585938],[113.454615507813,41.4492104316407],[113.451529570313,41.4283315253907],[113.46298953125,41.4194863105469],[113.467345,41.393843],[113.463260527344,41.3879274726562],[113.433082304688,41.3766347480469],[113.413260527344,41.3479274726562],[113.389598417969,41.3315895820313],[113.373260527344,41.3079274726562],[113.35490359375,41.2952529121094],[113.350531035156,41.2757472968751],[113.407750273438,41.2543361640626],[113.413475371094,41.2288014960938],[113.407345,41.203843],[113.39400515625,41.1871840644532],[113.371790800781,41.1693959785156],[113.356143828125,41.1498537421875],[113.309371367188,41.1773464179688],[113.282345,41.180708234375],[113.234041777344,41.1746999335938],[113.201790800781,41.1882900214844],[113.155845976563,41.215298078125],[113.112799101563,41.2206520820313],[113.088428984375,41.1902211738282],[113.067345,41.1875991035157],[113.012908964844,41.1943703437501],[112.971790800781,41.1693959785156],[112.962799101563,41.1581642890625],[112.948626738281,41.159926984375],[112.881488066406,41.1407314277344],[112.883031035156,41.1283193183594],[112.815191679688,41.1136403632813],[112.807345,41.103843],[112.770704375,41.100483625],[112.763985625,41.077202375],[112.7441028125,41.070483625],[112.729830351563,41.0986952949219],[112.738001738281,41.1154274726563],[112.720704375,41.1372023750001],[112.717345,41.1538430000001],[112.699188261719,41.1832143378907],[112.732625761719,41.1985622382813],[112.746783476563,41.2144057441406],[112.767906523438,41.2332802558594],[112.782064238281,41.2491237617188],[112.792625761719,41.2585622382813],[112.802064238281,41.2791237617188],[112.833902617188,41.3377150703126],[112.832047148438,41.368843],[112.832642851563,41.3788430000001],[112.8320325,41.3890798164063],[112.853206816406,41.4193923164063],[112.850953398438,41.4572035957031],[112.816126738281,41.5070619941406],[112.775560332031,41.5433071113282],[112.762625761719,41.7106923652344],[112.803909941406,41.7475783515626],[112.801234160156,41.7924990058594],[112.777345,41.813843],[112.7627746875,41.8806471992188],[112.80271609375,41.8984706855469],[112.816600371094,41.9145864082031],[112.86271609375,41.9284706855469],[112.88197390625,41.9392153144531],[112.96271609375,41.9684706855469],[112.987345,41.9838430000001],[113.039232207031,41.9791152167969],[113.074256621094,41.9302468085938],[113.122056914063,41.9498879218751],[113.171519804688,41.9401137519532],[113.163170195313,41.9596681953126],[113.143392363281,41.973843],[113.157345,41.9838430000001],[113.212550078125,41.9490248847656],[113.210965605469,41.909028546875],[113.262154570313,41.8928224921875],[113.222945585938,41.8758242011719],[113.146365996094,41.8958913398438],[113.130338164063,41.8655995917969],[113.192786894531,41.8288857246094],[113.162625761719,41.8009401679688],[113.1610559375,41.7612966132812],[113.212535429688,41.7490334296875],[113.232154570313,41.7386525703125],[113.252550078125,41.7290261054688],[113.252147246094,41.7188430000001],[113.252550078125,41.7086598945313],[113.231881132813,41.6989052558594],[113.252154570313,41.6801210761719],[113.242457304688,41.6786403632813],[113.212535429688,41.6798268867188],[113.222154570313,41.6586525703125],[113.242550078125,41.6490261054688],[113.241492949219,41.6223293281251],[113.257606230469,41.5714296699219],[113.297345,41.5638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.201790800781,41.1882900214844],[113.234041777344,41.1746999335938],[113.282345,41.180708234375],[113.309371367188,41.1773464179688],[113.356143828125,41.1498537421875],[113.371790800781,41.1693959785156],[113.39400515625,41.1871840644532],[113.407345,41.203843],[113.489564238281,41.1981386542969],[113.517345,41.1992397285157],[113.532345,41.1986452460938],[113.552877226563,41.199458234375],[113.572523222656,41.1782558417969],[113.602122832031,41.1794289375],[113.602935820313,41.158911359375],[113.563104277344,41.1331899238281],[113.662154570313,41.1095961738282],[113.64369265625,41.0885915351563],[113.602535429688,41.0902223945313],[113.612154570313,41.0586525703125],[113.632154570313,41.0401210761719],[113.607874785156,41.0111721015625],[113.575511503906,40.9958986640625],[113.55205203125,40.9387856269532],[113.582750273438,40.8987538886719],[113.562154570313,40.8890334296875],[113.542535429688,40.8586525703126],[113.502535429688,40.8459877753907],[113.512154570313,40.8286525703125],[113.532154570313,40.8101210761719],[113.522535429688,40.7986525703125],[113.502110625,40.7797280097657],[113.502579375,40.7679579902344],[113.487345,40.753843],[113.482899199219,40.7593959785157],[113.400572539063,40.7928493476563],[113.372899199219,40.7582900214844],[113.361790800781,40.7493959785156],[113.352860136719,40.7181569648438],[113.342061796875,40.7194997382813],[113.307738066406,40.7063063789063],[113.275318632813,40.7103395820313],[113.235719023438,40.7336159492188],[113.192345,40.7282216621094],[113.168951445313,40.7311305976563],[113.17431765625,40.6879750800782],[113.157345,40.6900868964844],[113.134276152344,40.6872170234375],[113.076807890625,40.7120241523438],[113.05416140625,40.7403066230469],[113.022139921875,40.7279982734375],[112.972899199219,40.7693959785157],[112.92375125,40.7992482734376],[112.897345,40.8038430000001],[112.883011503906,40.8428774238282],[112.92728640625,40.8810243964844],[112.906654082031,40.9180068183594],[112.953084746094,40.9285549140625],[112.918499785156,40.9905422187501],[112.884410429688,40.9878041816407],[112.842547636719,40.9992604804687],[112.832008085938,40.9984145332032],[112.82271609375,41.0134169746094],[112.874344511719,41.0289614082031],[112.871849394531,41.0600087714844],[112.852345,41.0584413886719],[112.820238066406,41.0610207343751],[112.807345,41.103843],[112.815191679688,41.1136403632813],[112.883031035156,41.1283193183594],[112.881488066406,41.1407314277344],[112.948626738281,41.159926984375],[112.962799101563,41.1581642890625],[112.971790800781,41.1693959785156],[113.012908964844,41.1943703437501],[113.067345,41.1875991035157],[113.088428984375,41.1902211738282],[113.112799101563,41.2206520820313],[113.155845976563,41.215298078125],[113.201790800781,41.1882900214844]],[[113.107345,40.9638430000001],[113.095152617188,40.9604201484375],[113.103922148438,40.9516506171875],[113.123304472656,40.9575685859375],[113.163160429688,40.9883315253907],[113.161529570313,40.9993544746094],[113.18677859375,41.018843],[113.153065214844,41.0448647285156],[113.139920683594,41.0769850898438],[113.120694609375,41.0798256660156],[113.044261503906,41.0636965156251],[113.027261992188,40.9903334785156],[113.052345,40.986626203125],[113.085928984375,40.9915895820313],[113.107345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"察哈尔右翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.777345,41.813843],[112.801234160156,41.7924990058594],[112.803909941406,41.7475783515626],[112.762625761719,41.7106923652344],[112.775560332031,41.5433071113282],[112.816126738281,41.5070619941406],[112.850953398438,41.4572035957031],[112.853206816406,41.4193923164063],[112.8320325,41.3890798164063],[112.832642851563,41.3788430000001],[112.832047148438,41.368843],[112.833902617188,41.3377150703126],[112.802064238281,41.2791237617188],[112.792625761719,41.2585622382813],[112.782064238281,41.2491237617188],[112.767906523438,41.2332802558594],[112.746783476563,41.2144057441406],[112.732625761719,41.1985622382813],[112.699188261719,41.1832143378907],[112.717345,41.1538430000001],[112.701883574219,41.1493056464844],[112.685455351563,41.1295290351563],[112.650640898438,41.1144301582032],[112.592452421875,41.1203603339844],[112.582806425781,41.1025319648438],[112.6231653125,41.0690077949219],[112.597801542969,41.0247194648438],[112.552345,41.0293520332031],[112.517345,41.0257851386719],[112.457345,41.0319008613281],[112.422345,41.0283339667969],[112.407345,41.0298622871094],[112.383238554688,41.0274050117187],[112.352806425781,41.0493056464844],[112.321883574219,41.0583803535157],[112.312806425781,41.0653700996094],[112.342806425781,41.0783803535156],[112.359234648438,41.0981569648438],[112.383538847656,41.1086977363281],[112.371883574219,41.1183803535156],[112.362806425781,41.1293056464844],[112.278797636719,41.1400551582031],[112.262735625,41.1593923164063],[112.251988554688,41.1582973457032],[112.17373171875,41.2202309394531],[112.131883574219,41.2383803535156],[112.112345,41.2495705390625],[112.077345,41.2295241523437],[112.042667265625,41.2493849921875],[111.988973417969,41.2439125800782],[111.957345,41.2638430000001],[111.9521496875,41.2815444160156],[111.931795683594,41.298452375],[111.932855253906,41.3088430000001],[111.930855742188,41.328452375],[111.960511503906,41.3530861640626],[111.971883574219,41.3793056464844],[111.982806425781,41.3883803535156],[111.993516875,41.4012721992188],[112.031954375,41.3973537421876],[112.05095828125,41.4202309394531],[112.121883574219,41.4410439277344],[112.112806425781,41.4593056464844],[112.094298125,41.4746804023438],[112.088817167969,41.528452375],[112.118182402344,41.5528456855469],[112.132806425781,41.5783803535156],[112.142200957031,41.6103871894532],[112.166002226563,41.6079604316407],[112.160203886719,41.6648561835938],[112.212413359375,41.6794533515625],[112.242440214844,41.6681703925782],[112.277728300781,41.6883803535156],[112.342806425781,41.6793056464844],[112.383118925781,41.6502931953125],[112.426326933594,41.6458888984376],[112.47287234375,41.8074526191406],[112.583094511719,41.7962184882813],[112.651595488281,41.8114675117187],[112.682667265625,41.8083010078126],[112.726019316406,41.8331288886719],[112.777345,41.813843]]]]}},{"type":"Feature","properties":{"name":"丰镇市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.972899199219,40.7693959785157],[113.022139921875,40.7279982734375],[113.05416140625,40.7403066230469],[113.076807890625,40.7120241523438],[113.134276152344,40.6872170234375],[113.157345,40.6900868964844],[113.17431765625,40.6879750800782],[113.168951445313,40.7311305976563],[113.192345,40.7282216621094],[113.235719023438,40.7336159492188],[113.275318632813,40.7103395820313],[113.307738066406,40.7063063789063],[113.342061796875,40.7194997382813],[113.352860136719,40.7181569648438],[113.361790800781,40.7493959785156],[113.372899199219,40.7582900214844],[113.400572539063,40.7928493476563],[113.482899199219,40.7593959785157],[113.487345,40.753843],[113.49170046875,40.7081996894532],[113.50298953125,40.6994863105469],[113.52170046875,40.6681996894532],[113.56298953125,40.6594863105469],[113.59170046875,40.6481996894532],[113.668631621094,40.6351308417969],[113.68490359375,40.6140492988281],[113.729705839844,40.620669171875],[113.76298953125,40.5794863105469],[113.77170046875,40.5581996894531],[113.78298953125,40.5494863105469],[113.787345,40.513843],[113.749115019531,40.4710561347656],[113.692064238281,40.4491237617188],[113.551868925781,40.3402040839844],[113.477345,40.333843],[113.448304472656,40.3231789375],[113.313074980469,40.3092153144531],[113.27271609375,40.3792153144531],[113.249906035156,40.4113857246094],[113.20271609375,40.3984706855469],[113.16197390625,40.3892153144532],[113.12271609375,40.378470685547],[112.977345,40.3538430000001],[112.961073027344,40.3952346015626],[112.963084746094,40.408843],[112.961131621094,40.4220619941407],[112.92170046875,40.4381996894532],[112.91298953125,40.4763075996094],[112.995811796875,40.4903774238282],[112.98857546875,40.5393544746094],[113.014215117188,40.559145734375],[112.98170046875,40.5681996894531],[112.95298953125,40.5894863105469],[112.913472929688,40.60565940625],[112.86205203125,40.5980605292969],[112.814920683594,40.6165895820313],[112.79298953125,40.6524428535156],[112.833436308594,40.6464650703125],[112.827711210938,40.6851979804688],[112.837345,40.743843],[112.872518339844,40.7700966621094],[112.88170046875,40.7581996894531],[112.894466582031,40.7494863105469],[112.890682402344,40.7750917792969],[112.897345,40.8038430000001],[112.92375125,40.7992482734376],[112.972899199219,40.7693959785157]]]]}},{"type":"Feature","properties":{"name":"化德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.677345,42.203843],[114.665152617188,42.2004201484376],[114.673922148438,42.1916506171875],[114.71298953125,42.2081996894531],[114.747345,42.2138430000001],[114.79556765625,42.2056508613282],[114.7916028125,42.1788088203125],[114.797345,42.1438430000001],[114.756715117188,42.1140724921875],[114.683902617188,42.1199233222656],[114.640206328125,42.1038771796875],[114.593179960938,42.1301149726563],[114.517511015625,42.1240346503907],[114.49271609375,42.0684706855469],[114.460992460938,42.0411391425782],[114.474205351563,42.0051638007813],[114.503951445313,41.9795351386719],[114.486793242188,41.9647524238282],[114.4414075,41.9444997382813],[114.377345,41.9496462226563],[114.359742460938,41.9482326484375],[114.34271609375,41.9284706855469],[114.32197390625,41.9192153144532],[114.276292753906,41.8601674628907],[114.199141875,41.7936989570313],[114.202764921875,41.7486049628907],[114.197345,41.733843],[114.170323515625,41.7280690742188],[114.141585722656,41.7297817207032],[114.114432402344,41.6993898750001],[114.090257597656,41.688296125],[114.07259890625,41.6685305],[114.06209109375,41.6691555],[114.043189726563,41.6479994941407],[114.002064238281,41.6291237617188],[113.99209109375,41.61796409375],[113.962345,41.6197365546875],[113.941080351563,41.6184694648438],[113.917105742188,41.6453041816406],[113.932655058594,41.6886415839844],[113.931959257813,41.7003102851562],[113.883104277344,41.6973976875],[113.872625761719,41.7091237617188],[113.813768339844,41.7617128730469],[113.832867460938,41.7787783027344],[113.812064238281,41.8085622382813],[113.802625761719,41.8291237617188],[113.78615359375,41.843843],[113.797345,41.853843],[113.800767851563,41.8416506171875],[113.809537382813,41.8504201484376],[113.797345,41.853843],[113.792806425781,41.8593056464844],[113.769234648438,41.8695290351563],[113.746280546875,41.8971633125001],[113.711883574219,41.9183803535156],[113.682806425781,41.9417678046875],[113.716781035156,41.9699880195313],[113.682994414063,42.0492238593751],[113.643604765625,42.0663075996094],[113.631173125,42.0812721992188],[113.593533964844,42.0774355292969],[113.56244265625,42.0952419257813],[113.557345,42.123843],[113.592625761719,42.1191237617188],[113.630853300781,42.1054079414063],[113.701234160156,42.1242580390625],[113.7452746875,42.0749684882813],[113.828729277344,42.0571376777344],[113.870848417969,42.0596474433594],[113.89906375,42.0344374824219],[113.912586699219,41.9763149238281],[113.969283476563,41.9559706855469],[114.012479277344,41.9894460273438],[114.026219511719,41.9595058417969],[114.052435332031,41.9579433417969],[114.062254667969,41.9897426582032],[114.093392363281,41.9878871894532],[114.061878691406,42.0388600898438],[114.082625761719,42.0685622382813],[114.102076445313,42.1191567207031],[114.160828886719,42.1156557441406],[114.204097929688,42.1290163398438],[114.237923613281,42.1668740058594],[114.298365507813,42.1885622382813],[114.361732207031,42.1639113593751],[114.37361453125,42.1002577949219],[114.4472278125,42.0958693671876],[114.475484648438,42.1211135078125],[114.457906523438,42.1594057441406],[114.397225371094,42.1979982734375],[114.511129179688,42.2244997382813],[114.542061796875,42.2591237617188],[114.552628203125,42.2685622382813],[114.564971953125,42.2954592109375],[114.640318632813,42.2684242988282],[114.673331328125,42.2703920722657],[114.671612578125,42.2415358710938],[114.677345,42.203843]]]]}},{"type":"Feature","properties":{"name":"集宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.107345,40.9638430000001],[113.103922148438,40.9516506171875],[113.095152617188,40.9604201484375],[113.107345,40.9638430000001]]],[[[113.107345,40.9638430000001],[113.085928984375,40.9915895820313],[113.052345,40.986626203125],[113.027261992188,40.9903334785156],[113.044261503906,41.0636965156251],[113.120694609375,41.0798256660156],[113.139920683594,41.0769850898438],[113.153065214844,41.0448647285156],[113.18677859375,41.018843],[113.161529570313,40.9993544746094],[113.163160429688,40.9883315253907],[113.123304472656,40.9575685859375],[113.107345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"凉城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.231707792969,40.8447487617188],[112.242008085938,40.7882778144531],[112.282574492188,40.799380109375],[112.29197390625,40.7884706855469],[112.302772246094,40.7791664863282],[112.300365019531,40.7491896796876],[112.329464140625,40.7362038398438],[112.380726347656,40.676704328125],[112.425809355469,40.6803261542969],[112.464586210938,40.6686525703125],[112.487345,40.6422365546875],[112.502669707031,40.6600221992188],[112.541373320313,40.6569118476562],[112.55197390625,40.6692153144532],[112.57271609375,40.6784706855469],[112.59197390625,40.6892153144531],[112.64271609375,40.6984706855469],[112.663326445313,40.7099697089844],[112.707345,40.7064321113281],[112.72197390625,40.7392153144532],[112.732769804688,40.7585646796875],[112.730365019531,40.7884706855469],[112.74271609375,40.7792153144532],[112.752020292969,40.7684157539063],[112.779476347656,40.7706215644532],[112.798089628906,40.7545864082032],[112.81209109375,40.7383339667969],[112.837345,40.743843],[112.827711210938,40.6851979804688],[112.833436308594,40.6464650703125],[112.79298953125,40.6524428535156],[112.814920683594,40.6165895820313],[112.86205203125,40.5980605292969],[112.913472929688,40.60565940625],[112.95298953125,40.5894863105469],[112.98170046875,40.5681996894531],[113.014215117188,40.559145734375],[112.98857546875,40.5393544746094],[112.995811796875,40.4903774238282],[112.91298953125,40.4763075996094],[112.92170046875,40.4381996894532],[112.961131621094,40.4220619941407],[112.963084746094,40.408843],[112.961073027344,40.3952346015626],[112.977345,40.3538430000001],[112.894901152344,40.3302712226563],[112.882899199219,40.2882900214844],[112.867345,40.253843],[112.855211210938,40.2114064765625],[112.829058867188,40.1960341621094],[112.735018339844,40.1598854804688],[112.671790800781,40.1982900214844],[112.642899199219,40.2193959785156],[112.617345,40.2338430000001],[112.61298953125,40.2394863105469],[112.523878203125,40.2628774238282],[112.46298953125,40.2894863105469],[112.413453398438,40.2981996894531],[112.360462675781,40.2589125800782],[112.307345,40.253843],[112.301429472656,40.2579274726563],[112.293260527344,40.2697585273438],[112.279132109375,40.2795131660156],[112.286158476563,40.3108534980469],[112.259132109375,40.3295131660157],[112.263648710938,40.3496584296876],[112.230245390625,40.3582314277344],[112.254185820313,40.3891200996094],[112.241429472656,40.3979274726562],[112.233260527344,40.4097585273438],[112.210472441406,40.4254921699219],[112.215706816406,40.448843],[112.169598417969,40.4660964179688],[112.153260527344,40.4897585273438],[112.123592558594,40.5102431464844],[112.111898222656,40.5076222968751],[112.08201296875,40.5270839667969],[112.073260527344,40.5397585273438],[112.052801542969,40.5538845039063],[112.043260527344,40.5820009589844],[112.08209109375,40.5732949042969],[112.091429472656,40.6103102851563],[112.045513945313,40.6420119453126],[112.037345,40.6538430000001],[112.10271609375,40.6684706855469],[112.127125273438,40.696801984375],[112.10197390625,40.7184706855469],[112.086287871094,40.7366774726563],[112.139032011719,40.7602138496094],[112.152977324219,40.7914638496094],[112.17271609375,40.8084706855469],[112.177345,40.813843],[112.231707792969,40.8447487617188]]]]}},{"type":"Feature","properties":{"name":"商都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.347345,41.423843],[113.341925078125,41.4143386054688],[113.304447050781,41.4002114082031],[113.294823027344,41.4203530097656],[113.328026152344,41.4328688789063],[113.347345,41.423843]]],[[[113.797345,41.853843],[113.809537382813,41.8504201484376],[113.800767851563,41.8416506171875],[113.797345,41.853843]]],[[[113.797345,41.853843],[113.78615359375,41.843843],[113.802625761719,41.8291237617188],[113.812064238281,41.8085622382813],[113.832867460938,41.7787783027344],[113.813768339844,41.7617128730469],[113.872625761719,41.7091237617188],[113.883104277344,41.6973976875],[113.931959257813,41.7003102851562],[113.932655058594,41.6886415839844],[113.917105742188,41.6453041816406],[113.941080351563,41.6184694648438],[113.962345,41.6197365546875],[113.99209109375,41.61796409375],[114.002064238281,41.6291237617188],[114.043189726563,41.6479994941407],[114.06209109375,41.6691555],[114.07259890625,41.6685305],[114.090257597656,41.688296125],[114.114432402344,41.6993898750001],[114.141585722656,41.7297817207032],[114.170323515625,41.7280690742188],[114.197345,41.733843],[114.228929472656,41.70855003125],[114.211431914063,41.6787831855469],[114.247039824219,41.6300356269531],[114.220479765625,41.618843],[114.223587675781,41.593843],[114.220477324219,41.5688198066407],[114.227345,41.513843],[114.207345,41.503843],[114.197122832031,41.5170851875],[114.104388457031,41.5328395820313],[114.072345,41.5281044746094],[114.062261992188,41.5295937324219],[114.00259890625,41.5181240058594],[113.95298953125,41.4881996894532],[113.92170046875,41.4794863105469],[113.910811796875,41.4528774238282],[113.87170046875,41.4294863105469],[113.86298953125,41.4134096503906],[113.934234648438,41.3935707832032],[113.919769316406,41.3311525703125],[113.897345,41.313843],[113.849442167969,41.2923976875],[113.802806425781,41.3293056464844],[113.751883574219,41.3383803535157],[113.722806425781,41.3493056464844],[113.688829375,41.3583803535157],[113.662806425781,41.2983803535157],[113.650155058594,41.2893056464844],[113.632806425781,41.3293056464844],[113.621883574219,41.3383803535157],[113.612806425781,41.3710329414063],[113.652806425781,41.3883803535156],[113.666419707031,41.4047682929687],[113.683538847656,41.4189882636719],[113.643602324219,41.4363088203125],[113.559845,41.4483803535157],[113.565858183594,41.3893715644531],[113.499698515625,41.4142311835938],[113.467345,41.393843],[113.46298953125,41.4194863105469],[113.451529570313,41.4283315253907],[113.454615507813,41.4492104316407],[113.392406035156,41.4597780585938],[113.37298953125,41.4517653632813],[113.423421660156,41.4311244941407],[113.421302519531,41.4167800117188],[113.402345,41.4195815253907],[113.387047148438,41.4173207832032],[113.347345,41.423843],[113.362684355469,41.4488954902344],[113.35093875,41.4597780585938],[113.312974882813,41.4582729316407],[113.292535429688,41.4677187324219],[113.387706328125,41.4807253242188],[113.445538359375,41.4604555488281],[113.512154570313,41.4925795722656],[113.481065703125,41.5186525703125],[113.462535429688,41.4986525703126],[113.438365507813,41.4890334296876],[113.427345,41.523843],[113.448958769531,41.5269924140625],[113.430577421875,41.5460292792969],[113.427345,41.523843],[113.411519804688,41.5280178046875],[113.401344023438,41.5787770820313],[113.404659453125,41.5955568671876],[113.369832792969,41.6080178046875],[113.353170195313,41.5712380195313],[113.400238066406,41.5530849433594],[113.368909941406,41.530630109375],[113.313270292969,41.5416237617188],[113.297345,41.5638430000001],[113.309537382813,41.5672658515625],[113.300767851563,41.5760353828125],[113.297345,41.5638430000001],[113.257606230469,41.5714296699219],[113.241492949219,41.6223293281251],[113.242550078125,41.6490261054688],[113.222154570313,41.6586525703125],[113.212535429688,41.6798268867188],[113.242457304688,41.6786403632813],[113.252154570313,41.6801210761719],[113.231881132813,41.6989052558594],[113.252550078125,41.7086598945313],[113.252147246094,41.7188430000001],[113.252550078125,41.7290261054688],[113.232154570313,41.7386525703125],[113.212535429688,41.7490334296875],[113.1610559375,41.7612966132812],[113.162625761719,41.8009401679688],[113.192786894531,41.8288857246094],[113.130338164063,41.8655995917969],[113.146365996094,41.8958913398438],[113.222945585938,41.8758242011719],[113.262154570313,41.8928224921875],[113.210965605469,41.909028546875],[113.212550078125,41.9490248847656],[113.157345,41.9838430000001],[113.163748808594,41.9921388984375],[113.211693144531,42.0117617011719],[113.255562773438,42.0456240058594],[113.286988554688,42.0863368964844],[113.356859160156,42.1381386542969],[113.377345,42.1438430000001],[113.41170046875,42.1381996894532],[113.53298953125,42.1294863105469],[113.557345,42.123843],[113.56244265625,42.0952419257813],[113.593533964844,42.0774355292969],[113.631173125,42.0812721992188],[113.643604765625,42.0663075996094],[113.682994414063,42.0492238593751],[113.716781035156,41.9699880195313],[113.682806425781,41.9417678046875],[113.711883574219,41.9183803535156],[113.746280546875,41.8971633125001],[113.769234648438,41.8695290351563],[113.792806425781,41.8593056464844],[113.797345,41.853843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿尔山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.367345,47.1338430000001],[121.375201445313,47.1493727851563],[121.397345,47.153843],[121.389488554688,47.1383132148438],[121.367345,47.1338430000001]]],[[[121.367345,47.1338430000001],[121.36298953125,47.1281990791016],[121.3421496875,47.1121120429688],[121.33298953125,47.0581990791016],[121.32170046875,47.0394869208985],[121.3086340625,47.0075557685547],[121.288355742188,46.9739388251953],[121.33298953125,46.9394869208985],[121.337345,46.933843],[121.3024621875,46.9284316230469],[121.267345,46.9312532783203],[121.201221953125,46.9259401679688],[121.149093046875,46.9402065253906],[121.13271609375,46.9592147041016],[121.09896609375,46.9803548408203],[121.074439726563,47.0088240791016],[121.024327421875,47.0202077460938],[121.002345,47.0184413886719],[120.963961210938,47.0215254951172],[120.95271609375,47.0084712958985],[120.917916289063,46.997993390625],[120.902022734375,46.9992708564453],[120.888253203125,46.9832912421876],[120.871715117188,46.9462221503906],[120.84314578125,46.9216115546875],[120.80197390625,46.9092147041016],[120.78271609375,46.8784712958985],[120.766451445313,46.8644570136719],[120.82271609375,46.8292147041016],[120.836412382813,46.7985280585938],[120.814537382813,46.7389607978516],[120.843170195313,46.6985744453125],[120.789967070313,46.6864876533204],[120.564312773438,46.6657546210938],[120.54345828125,46.6899587226563],[120.48197390625,46.7084712958984],[120.44345828125,46.7299587226562],[120.395982695313,46.7511440253907],[120.345699492188,46.7471034980469],[120.289976835938,46.7675655341797],[120.24197390625,46.7784712958985],[120.21271609375,46.7992147041016],[120.135357695313,46.8110030341797],[120.10271609375,46.8292147041016],[120.070103789063,46.8390340400391],[120.021715117188,46.895200421875],[119.984288359375,46.9119008613281],[119.917345,46.9038430000001],[119.843170195313,46.9234383369141],[119.863048125,46.9590663886719],[119.84197390625,46.9684712958985],[119.790513945313,47.0110384345703],[119.792745390625,47.038843],[119.791944609375,47.048843],[119.793150664063,47.063843],[119.791495390625,47.0844246650391],[119.702139921875,47.1924495673828],[119.63797,47.2385280585938],[119.56197390625,47.2484712958984],[119.551495390625,47.2832711005859],[119.5527746875,47.299189069336],[119.53197390625,47.3084712958985],[119.51271609375,47.3192147041016],[119.48197390625,47.3284712958985],[119.477345,47.333843],[119.519195585938,47.3389577460938],[119.6097278125,47.35806175],[119.642081328125,47.3999806953125],[119.69170046875,47.4194869208985],[119.7620715625,47.4343367744141],[119.80162234375,47.4648647285157],[119.81494265625,47.4974056220704],[119.90877078125,47.5669686103516],[119.952569609375,47.5797396064454],[119.983922148438,47.5608260322266],[120.018277617188,47.5557491279297],[120.06298953125,47.5681990791016],[120.105792265625,47.5940200019532],[120.175714140625,47.6087740302735],[120.19189578125,47.6297396064453],[120.217345,47.6238430000001],[120.269185820313,47.6533150458985],[120.289722929688,47.6294747138672],[120.31271609375,47.6192147041016],[120.32197390625,47.6084712958985],[120.37271609375,47.5892147041016],[120.405894804688,47.5707021308594],[120.46197390625,47.5584712958985],[120.497345,47.5538430000001],[120.505152617188,47.5440908027344],[120.552345,47.5382210517579],[120.591197539063,47.5430538154298],[120.593013945313,47.5284828925782],[120.575758085938,47.4991353583985],[120.62400515625,47.4605025458985],[120.641793242188,47.4382900214844],[120.68935671875,47.4182460761719],[120.721241484375,47.3927150703126],[120.722965117188,47.378843],[120.721724882813,47.368843],[120.72302859375,47.358344953125],[120.701793242188,47.3493959785157],[120.692843046875,47.32815940625],[120.679517851563,47.3298165107422],[120.642896757813,47.3082900214844],[120.60875125,47.2939009833985],[120.62267703125,47.2451912666016],[120.732398710938,47.2138210273438],[120.762896757813,47.1893959785156],[120.784263945313,47.1627150703126],[120.821793242188,47.1482900214844],[120.889464140625,47.1365126777344],[120.95396609375,47.0893959785157],[120.972896757813,47.0982900214844],[121.025831328125,47.1369576240235],[121.092535429688,47.149536359375],[121.121793242188,47.1382900214845],[121.192896757813,47.1293959785157],[121.244928007813,47.1093959785156],[121.282896757813,47.1182900214844],[121.311793242188,47.1293959785157],[121.367345,47.1338430000001]]]]}},{"type":"Feature","properties":{"name":"科尔沁右翼前旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.963961210938,47.0215254951172],[121.002345,47.0184413886719],[121.024327421875,47.0202077460938],[121.074439726563,47.0088240791016],[121.09896609375,46.9803548408203],[121.13271609375,46.9592147041016],[121.149093046875,46.9402065253906],[121.201221953125,46.9259401679688],[121.267345,46.9312532783203],[121.3024621875,46.9284316230469],[121.337345,46.933843],[121.353570585938,46.9280220771484],[121.391588164063,46.9302877021485],[121.406783476563,46.9132802558594],[121.466104765625,46.8949623847657],[121.4520325,46.8690688300782],[121.452642851563,46.858843],[121.451285429688,46.8360622382813],[121.512779570313,46.7811183906251],[121.510601835938,46.7445662666016],[121.635201445313,46.6768563056641],[121.692628203125,46.6591243720704],[121.702061796875,46.6485616279297],[121.762628203125,46.6391243720703],[121.775655546875,46.596923444336],[121.792061796875,46.5785616279298],[121.816236601563,46.5674666572266],[121.842061796875,46.5385616279297],[121.866236601563,46.5274666572266],[121.893609648438,46.4968325019531],[121.939830351563,46.4995870185547],[121.978287382813,46.4819368720703],[121.992628203125,46.4691243720704],[122.011588164063,46.4479036689453],[122.032345,46.4491408515625],[122.042345,46.4485451484375],[122.052345,46.4491408515625],[122.062345,46.4485451484375],[122.072345,46.4491408515625],[122.082545195313,46.4485329414063],[122.11236453125,46.4592324042969],[122.162061796875,46.4385616279297],[122.219488554688,46.4208296943359],[122.248048125,46.4053090644531],[122.353424101563,46.4115895820313],[122.439986601563,46.3884047675781],[122.462345,46.3897371650391],[122.542935820313,46.3849336982422],[122.593189726563,46.4079994941407],[122.664527617188,46.4467659736328],[122.682061796875,46.4085616279297],[122.752017851563,46.2888118720703],[122.780289335938,46.1383431220704],[122.782628203125,46.0991243720703],[122.787345,46.073843],[122.79197390625,46.0484712958985],[122.812281523438,45.9553646064454],[122.817345,45.883843],[122.811793242188,45.8793959785157],[122.795904570313,45.8595571113281],[122.745816679688,45.8384517646485],[122.785299101563,45.7712905097657],[122.735206328125,45.7086562324219],[122.676920195313,45.6993959785156],[122.646261015625,45.7376845527344],[122.632896757813,45.7693959785156],[122.601793242188,45.7782900214844],[122.571607695313,45.7960335517578],[122.552467070313,45.8199355292969],[122.503150664063,45.7804927802735],[122.49123171875,45.8489772773438],[122.44291140625,45.9093947578125],[122.36619265625,45.9182900214845],[122.352896757813,45.8914278388673],[122.367345,45.853843],[122.33041140625,45.8490108466797],[122.31271609375,45.8284712958985],[122.255577421875,45.7926815009766],[122.23271609375,45.8192147041016],[122.22197390625,45.8284712958985],[122.205836210938,45.8471999335938],[122.0891809375,45.8823232246094],[122.07271609375,45.9192147041016],[122.067345,45.923843],[122.07197390625,45.9292147041016],[122.09271609375,45.9384712958985],[122.120777617188,45.9541280341797],[122.135968046875,45.9881710029297],[122.277867460938,46.0128444648438],[122.30427859375,46.0435005927735],[122.289937773438,46.0959004951172],[122.214288359375,46.1432851386719],[122.20271609375,46.1692147041016],[122.1634778125,46.186723859375],[122.15271609375,46.1992147041016],[122.12197390625,46.2084712958985],[122.109908476563,46.2355117011719],[122.131539335938,46.2742879462891],[122.048565703125,46.2884712958984],[122.003385039063,46.2632637763673],[121.928990507813,46.2905825019531],[121.891241484375,46.2875490546875],[121.892764921875,46.2686043525391],[121.88173953125,46.2385756660156],[121.90271609375,46.2292147041016],[121.929469023438,46.2142885566406],[121.904132109375,46.1924587226563],[121.9730871875,46.1330513740235],[121.971920195313,46.1185469794922],[121.998717070313,46.0807491279298],[121.929986601563,46.0546663642578],[121.847818632813,46.0359993720704],[121.837345,46.0238430000001],[121.793018828125,46.0163130927734],[121.7540246875,45.9927913642578],[121.801646757813,45.9643093085938],[121.814014921875,45.9198970771485],[121.801549101563,45.899233625],[121.80478640625,45.8773073554688],[121.779049101563,45.8574391914063],[121.76298953125,45.8181990791016],[121.747345,45.813843],[121.729752226563,45.8350215888672],[121.691881132813,45.8583803535157],[121.66728640625,45.8879915595703],[121.626964140625,45.899823834961],[121.587257109375,45.8957759833984],[121.572808867188,45.8783803535156],[121.555426054688,45.8639424873047],[121.502345,45.8693526435547],[121.49213015625,45.8683113837891],[121.452808867188,45.8793056464844],[121.384908476563,45.8914052558594],[121.372808867188,45.9193056464844],[121.361793242188,45.9284529853516],[121.3628528125,45.938843],[121.361480742188,45.9523226142579],[121.312345,45.947314069336],[121.28498171875,45.950102765625],[121.259429960938,46.0183187080079],[121.191881132813,46.0283803535157],[121.172808867188,46.0393056464845],[121.132589140625,46.0567470527344],[121.121920195313,46.0813478828125],[121.087345,46.0778237128907],[121.060640898438,46.0805452705079],[121.064771757813,46.0400136542969],[121.051793242188,46.0292330146485],[121.0562121875,45.9858797431641],[120.95095828125,45.9402303291016],[120.903267851563,45.9129177070312],[120.868253203125,45.8977309394532],[120.847345,45.8998622871094],[120.802296171875,45.8952706123047],[120.759888945313,45.8709804511719],[120.737345,45.843843],[120.682061796875,45.8391243720703],[120.642628203125,45.8285616279297],[120.595572539063,45.8191243720704],[120.534674101563,45.8616640449219],[120.467803984375,45.8576784492188],[120.407506132813,45.8249123359375],[120.382628203125,45.8791243720703],[120.355230742188,45.8916970039063],[120.26525515625,45.8863344550781],[120.232628203125,45.9091243720703],[120.2120325,45.9185768867188],[120.212940703125,45.933843],[120.2120325,45.9490688300782],[120.2226575,45.9686171699219],[120.221929960938,45.9808119941406],[120.2008996875,45.9996016669922],[120.203194609375,46.0380800605469],[120.191138945313,46.0602614570313],[120.157345,46.0582466865234],[120.122345,46.0603328681641],[120.077345,46.0576509833985],[120.051470976563,46.0591933417969],[120.053238554688,46.088843],[120.014049101563,46.1068294501954],[119.932237578125,46.1781862617188],[119.914366484375,46.2171260810547],[119.877345,46.203843],[119.86763796875,46.2168935371094],[119.826690703125,46.241005475586],[119.834928007813,46.288843],[119.8295325,46.3201882148438],[119.842760039063,46.3179109931641],[119.869752226563,46.3346150947266],[119.843775664063,46.3539376044923],[119.833077421875,46.3745534492188],[119.888580351563,46.4072377753907],[119.951324492188,46.3964363837891],[119.971612578125,46.4157649970704],[119.903204375,46.4298378730469],[119.940636015625,46.490321881836],[119.901080351563,46.5387587714844],[119.941095,46.6004689765625],[119.911612578125,46.6481087470704],[119.907345,46.663843],[119.91142703125,46.6897585273437],[119.926280546875,46.7125661445312],[119.904322539063,46.7648506904297],[119.931383085938,46.7835341621094],[119.920103789063,46.8338430000001],[119.92361453125,46.8495131660157],[119.894654570313,46.8695082832032],[119.917345,46.9038430000001],[119.984288359375,46.9119008613281],[120.021715117188,46.895200421875],[120.070103789063,46.8390340400391],[120.10271609375,46.8292147041016],[120.135357695313,46.8110030341797],[120.21271609375,46.7992147041016],[120.24197390625,46.7784712958985],[120.289976835938,46.7675655341797],[120.345699492188,46.7471034980469],[120.395982695313,46.7511440253907],[120.44345828125,46.7299587226562],[120.48197390625,46.7084712958984],[120.54345828125,46.6899587226563],[120.564312773438,46.6657546210938],[120.789967070313,46.6864876533204],[120.843170195313,46.6985744453125],[120.814537382813,46.7389607978516],[120.836412382813,46.7985280585938],[120.82271609375,46.8292147041016],[120.766451445313,46.8644570136719],[120.78271609375,46.8784712958985],[120.80197390625,46.9092147041016],[120.84314578125,46.9216115546875],[120.871715117188,46.9462221503906],[120.888253203125,46.9832912421876],[120.902022734375,46.9992708564453],[120.917916289063,46.997993390625],[120.95271609375,47.0084712958985],[120.963961210938,47.0215254951172]]]]}},{"type":"Feature","properties":{"name":"科尔沁右翼中旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.907345,45.553843],[119.919537382813,45.5572664619141],[119.910767851563,45.5660353828125],[119.864117460938,45.5467421699219],[119.84298953125,45.5594869208985],[119.81408328125,45.5713167548829],[119.779991484375,45.5662783027344],[119.747345,45.5738430000001],[119.741085234375,45.5813784003907],[119.6588684375,45.6170345283203],[119.601881132813,45.6383803535157],[119.567345,45.6538430000001],[119.57736453125,45.6663582587891],[119.632345,45.6731966376953],[119.680928984375,45.6671535468751],[119.692896757813,45.6982900214844],[119.703170195313,45.7457625556641],[119.747491484375,45.764438703125],[119.803248320313,45.828691022461],[119.823292265625,45.9710744453126],[119.800885039063,45.9890145087891],[119.829932890625,46.0012544990234],[119.84826296875,46.1065682197266],[119.871241484375,46.1249709296875],[119.873013945313,46.1392031074219],[119.848560820313,46.1807949042969],[119.877345,46.203843],[119.914366484375,46.2171260810547],[119.932237578125,46.1781862617188],[120.014049101563,46.1068294501954],[120.053238554688,46.088843],[120.051470976563,46.0591933417969],[120.077345,46.0576509833985],[120.122345,46.0603328681641],[120.157345,46.0582466865234],[120.191138945313,46.0602614570313],[120.203194609375,46.0380800605469],[120.2008996875,45.9996016669922],[120.221929960938,45.9808119941406],[120.2226575,45.9686171699219],[120.2120325,45.9490688300782],[120.212940703125,45.933843],[120.2120325,45.9185768867188],[120.232628203125,45.9091243720703],[120.26525515625,45.8863344550781],[120.355230742188,45.8916970039063],[120.382628203125,45.8791243720703],[120.407506132813,45.8249123359375],[120.467803984375,45.8576784492188],[120.534674101563,45.8616640449219],[120.595572539063,45.8191243720704],[120.642628203125,45.8285616279297],[120.682061796875,45.8391243720703],[120.737345,45.843843],[120.749488554688,45.83024925],[120.782061796875,45.8185616279298],[120.826436796875,45.8048592353516],[120.882628203125,45.7691243720703],[120.898785429688,45.751040265625],[120.962628203125,45.7391243720704],[120.991783476563,45.7232802558594],[121.022628203125,45.7091243720704],[121.048453398438,45.6802193427734],[121.093189726563,45.6596865058594],[121.12093875,45.5992250800782],[121.132345,45.5985451484376],[121.147345,45.5994393134766],[121.162345,45.5985451484376],[121.172613554688,45.5991567207032],[121.199346953125,45.5409065986328],[121.257232695313,45.5094502998047],[121.333018828125,45.5366432929688],[121.35353640625,45.5183101630859],[121.322628203125,45.4906917548829],[121.349307890625,45.4877681708984],[121.3819934375,45.4897164130859],[121.3826575,45.4786061835938],[121.36173953125,45.4486617255859],[121.409088164063,45.4340413642579],[121.4226575,45.4090688300782],[121.420831328125,45.3784548164063],[121.449107695313,45.3801399970703],[121.472628203125,45.3591243720704],[121.514410429688,45.2843654609376],[121.642061796875,45.2385616279297],[121.697066679688,45.2282955146484],[121.775523710938,45.2001436591797],[121.80250125,45.1985353828125],[121.852061796875,45.2091243720704],[121.985484648438,45.2230281806641],[122.047447539063,45.2710457587891],[122.132061796875,45.2891243720704],[122.137345,45.293843],[122.16326296875,45.2897585273438],[122.21142703125,45.2779274726563],[122.237345,45.273843],[122.228277617188,45.2029677558594],[122.18482546875,45.1780806708985],[122.135513945313,45.1831069160156],[122.108985625,45.1367897773438],[122.116173125,45.066264875],[122.092808867188,45.0283803535157],[122.070909453125,44.9979500556641],[122.078756132813,44.9209596992188],[122.03533328125,44.9021279121094],[122.063043242188,44.8791091132813],[122.092882109375,44.8091268134766],[122.089967070313,44.7805037666016],[122.161881132813,44.7676882148438],[122.139190703125,44.7566164375],[122.092808867188,44.7613442207032],[122.1023059375,44.7373097968751],[122.151480742188,44.7423226142578],[122.15326296875,44.7248299384766],[122.10447390625,44.694735944336],[122.099581328125,44.6467415595703],[122.111881132813,44.6183803535157],[122.122808867188,44.5993056464844],[122.133936796875,44.5736470771485],[122.185045195313,44.5586482978516],[122.201881132813,44.5383803535157],[122.215714140625,44.5268917060547],[122.210968046875,44.4803255439453],[122.291881132813,44.4659059882812],[122.282808867188,44.3083803535157],[122.271881132813,44.2793056464844],[122.267345,44.253843],[122.2240246875,44.2604329658203],[122.172345,44.257353131836],[122.137515898438,44.2594289375],[122.003624296875,44.307470319336],[121.972628203125,44.3291243720704],[121.942061796875,44.3385616279297],[121.927345,44.343843],[121.877437773438,44.4017726875],[121.82197390625,44.4184712958985],[121.81271609375,44.4292147041016],[121.7734778125,44.446723859375],[121.72177859375,44.5067324042969],[121.625367460938,44.581317975586],[121.578248320313,44.6360066962891],[121.600499296875,44.655175397461],[121.537701445313,44.6694411445313],[121.52271609375,44.7192147041016],[121.409967070313,44.7842220283203],[121.412769804688,44.8191213203125],[121.397061796875,44.8472768378906],[121.37197390625,44.8584712958985],[121.294947539063,44.9014461494141],[121.193267851563,44.9468178535156],[121.14197390625,44.9584712958984],[121.09048953125,44.9725618720703],[121.042623320313,44.999267194336],[121.032066679688,44.9984188056641],[121.009854765625,45.0108132148438],[120.99271609375,45.0492147041016],[120.98197390625,45.0684712958984],[120.97271609375,45.1092147041016],[120.951710234375,45.1185884833985],[120.972764921875,45.1685903144531],[120.971812773438,45.1804543281251],[120.91197390625,45.1984712958985],[120.88271609375,45.2092147041016],[120.83197390625,45.2184712958985],[120.8224621875,45.2500575996094],[120.802174101563,45.2484273505859],[120.752515898438,45.2592586494141],[120.742105742188,45.2584218574219],[120.684537382813,45.2795638251954],[120.609366484375,45.3328603339844],[120.550362578125,45.359189069336],[120.552745390625,45.388843],[120.551944609375,45.398843],[120.553345976563,45.4162941718751],[120.48568484375,45.4586733222656],[120.430328398438,45.4687709785156],[120.398595,45.5056081367188],[120.338531523438,45.51925315625],[120.31271609375,45.5492147041016],[120.25197390625,45.5584712958985],[120.22271609375,45.5692147041016],[120.19197390625,45.5784712958985],[120.160787382813,45.5899233222656],[120.127345,45.587235944336],[120.082345,45.5908516669922],[120.052345,45.5884413886719],[120.032345,45.5900484443359],[120.005513945313,45.5878920722657],[119.98271609375,45.5564455390625],[120.024483671875,45.5204616523438],[120.021851835938,45.4876778388673],[120.002345,45.4892446113282],[119.982345,45.4876375556641],[119.90990359375,45.4934584785156],[119.912760039063,45.5290145087891],[119.907345,45.553843]]]]}},{"type":"Feature","properties":{"name":"突泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.121920195313,46.0813478828125],[121.132589140625,46.0567470527344],[121.172808867188,46.0393056464845],[121.191881132813,46.0283803535157],[121.259429960938,46.0183187080079],[121.28498171875,45.950102765625],[121.312345,45.947314069336],[121.361480742188,45.9523226142579],[121.3628528125,45.938843],[121.361793242188,45.9284529853516],[121.372808867188,45.9193056464844],[121.384908476563,45.8914052558594],[121.452808867188,45.8793056464844],[121.49213015625,45.8683113837891],[121.502345,45.8693526435547],[121.555426054688,45.8639424873047],[121.572808867188,45.8783803535156],[121.587257109375,45.8957759833984],[121.626964140625,45.899823834961],[121.66728640625,45.8879915595703],[121.691881132813,45.8583803535157],[121.729752226563,45.8350215888672],[121.747345,45.813843],[121.73927859375,45.7883699775391],[121.722174101563,45.7890480781251],[121.69088015625,45.7675136542969],[121.642960234375,45.7694130683594],[121.642139921875,45.7486659980469],[121.652535429688,45.7390334296875],[121.679625273438,45.7097963691406],[121.754644804688,45.6901393867187],[121.80216921875,45.6882552314453],[121.821011992188,45.7085921455078],[121.9494934375,45.7136843085938],[122.000245390625,45.6177669501953],[121.982535429688,45.5986525703125],[121.9615246875,45.5887374091798],[121.987725859375,45.5392244697266],[122.011041289063,45.4898189521485],[122.171617460938,45.4321846748047],[122.172550078125,45.4086708808594],[122.142154570313,45.3690334296876],[122.137345,45.293843],[122.132061796875,45.2891243720704],[122.047447539063,45.2710457587891],[121.985484648438,45.2230281806641],[121.852061796875,45.2091243720704],[121.80250125,45.1985353828125],[121.775523710938,45.2001436591797],[121.697066679688,45.2282955146484],[121.642061796875,45.2385616279297],[121.514410429688,45.2843654609376],[121.472628203125,45.3591243720704],[121.449107695313,45.3801399970703],[121.420831328125,45.3784548164063],[121.4226575,45.4090688300782],[121.409088164063,45.4340413642579],[121.36173953125,45.4486617255859],[121.3826575,45.4786061835938],[121.3819934375,45.4897164130859],[121.349307890625,45.4877681708984],[121.322628203125,45.4906917548829],[121.35353640625,45.5183101630859],[121.333018828125,45.5366432929688],[121.257232695313,45.5094502998047],[121.199346953125,45.5409065986328],[121.172613554688,45.5991567207032],[121.162345,45.5985451484376],[121.147345,45.5994393134766],[121.132345,45.5985451484376],[121.12093875,45.5992250800782],[121.093189726563,45.6596865058594],[121.048453398438,45.6802193427734],[121.022628203125,45.7091243720704],[120.991783476563,45.7232802558594],[120.962628203125,45.7391243720704],[120.898785429688,45.751040265625],[120.882628203125,45.7691243720703],[120.826436796875,45.8048592353516],[120.782061796875,45.8185616279298],[120.749488554688,45.83024925],[120.737345,45.843843],[120.759888945313,45.8709804511719],[120.802296171875,45.8952706123047],[120.847345,45.8998622871094],[120.868253203125,45.8977309394532],[120.903267851563,45.9129177070312],[120.95095828125,45.9402303291016],[121.0562121875,45.9858797431641],[121.051793242188,46.0292330146485],[121.064771757813,46.0400136542969],[121.060640898438,46.0805452705079],[121.087345,46.0778237128907],[121.121920195313,46.0813478828125]]]]}},{"type":"Feature","properties":{"name":"乌兰浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.928990507813,46.2905825019531],[122.003385039063,46.2632637763673],[122.048565703125,46.2884712958984],[122.131539335938,46.2742879462891],[122.109908476563,46.2355117011719],[122.12197390625,46.2084712958985],[122.15271609375,46.1992147041016],[122.1634778125,46.186723859375],[122.20271609375,46.1692147041016],[122.214288359375,46.1432851386719],[122.289937773438,46.0959004951172],[122.30427859375,46.0435005927735],[122.277867460938,46.0128444648438],[122.135968046875,45.9881710029297],[122.120777617188,45.9541280341797],[122.09271609375,45.9384712958985],[122.07197390625,45.9292147041016],[122.067345,45.923843],[122.00142703125,45.9679274726563],[121.993013945313,45.9801143623047],[121.972345,45.9754805732423],[121.922271757813,45.9867055488282],[121.91326296875,45.9997585273438],[121.848023710938,46.0083773017578],[121.837345,46.0238430000001],[121.847818632813,46.0359993720704],[121.929986601563,46.0546663642578],[121.998717070313,46.0807491279298],[121.971920195313,46.1185469794922],[121.9730871875,46.1330513740235],[121.904132109375,46.1924587226563],[121.929469023438,46.2142885566406],[121.90271609375,46.2292147041016],[121.88173953125,46.2385756660156],[121.892764921875,46.2686043525391],[121.891241484375,46.2875490546875],[121.928990507813,46.2905825019531]]]]}},{"type":"Feature","properties":{"name":"扎赉特旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.383922148438,46.9560353828125],[123.387345,46.9438430000001],[123.375152617188,46.9472664619141],[123.383922148438,46.9560353828125]]],[[[123.35326296875,46.9697585273438],[123.357345,46.963843],[123.2958215625,46.9683370185547],[123.289185820313,46.9979274726563],[123.324845,46.9893794990235],[123.35326296875,46.9697585273438]]],[[[122.530079375,47.1910982490235],[122.572061796875,47.1585616279297],[122.592628203125,47.1491243720704],[122.616417265625,47.1224990058594],[122.65963015625,47.0990157294922],[122.712628203125,47.0891243720703],[122.752061796875,47.0785616279298],[122.8520325,47.0599025703125],[122.773482695313,47.0028951240235],[122.77146609375,46.9690956855469],[122.782628203125,46.9591243720704],[122.796392851563,46.9291243720704],[122.842628203125,46.9385616279297],[122.879429960938,46.9585616279298],[122.893228789063,46.9486922431641],[122.892047148438,46.928843],[122.892652617188,46.9186415839844],[122.879781523438,46.8827626777344],[122.892628203125,46.8591243720703],[122.902061796875,46.8085616279298],[122.912628203125,46.7991243720703],[122.922061796875,46.7885616279297],[122.981671171875,46.7612038398438],[123.000982695313,46.7191243720703],[123.032628203125,46.7285616279298],[123.064991484375,46.740175397461],[123.126383085938,46.7365163398438],[123.161553984375,46.7526595283204],[123.2126575,46.8186019111328],[123.210533476563,46.8542647529297],[123.300845976563,46.859648053711],[123.317906523438,46.8444057441407],[123.334615507813,46.8257057929688],[123.377061796875,46.8451876044922],[123.392628203125,46.8885616279297],[123.402374296875,46.9304592109375],[123.473985625,46.9496395087891],[123.49250125,46.9485353828125],[123.517345,46.953843],[123.512628203125,46.9185616279297],[123.472628203125,46.8449520087891],[123.510767851563,46.8191243720704],[123.562628203125,46.8285616279297],[123.57353640625,46.8985616279297],[123.592628203125,46.8891243720704],[123.602061796875,46.8585616279297],[123.621412382813,46.8412746406251],[123.572628203125,46.8262099433594],[123.582061796875,46.8185616279297],[123.6226575,46.8091164375],[123.621451445313,46.7888430000001],[123.622642851563,46.768843],[123.621749296875,46.7538430000001],[123.62322390625,46.7290956855469],[123.612061796875,46.7191243720703],[123.598160429688,46.6888356757813],[123.399635039063,46.6790041328126],[123.270260039063,46.658843],[123.272823515625,46.6158388496094],[123.222569609375,46.5885317207032],[123.212345,46.5891408515625],[123.202105742188,46.5885311103516],[123.16845828125,46.6120369697266],[123.083511992188,46.5969417548828],[123.059058867188,46.6243093085938],[123.0420325,46.6090956855469],[123.043834257813,46.578843],[123.000264921875,46.56870628125],[123.004429960938,46.498843],[123.0008215625,46.4382955146485],[123.09093875,46.3374367500001],[123.136124296875,46.2970626044922],[123.162628203125,46.2591243720703],[123.167345,46.243843],[123.12505984375,46.2194625068359],[123.11271609375,46.1784712958984],[123.100416289063,46.1678719306641],[123.103565703125,46.1286635566406],[123.06197390625,46.1192147041016],[123.029683867188,46.096322248047],[122.859136992188,46.0789260078126],[122.787345,46.073843],[122.782628203125,46.0991243720703],[122.780289335938,46.1383431220704],[122.752017851563,46.2888118720703],[122.682061796875,46.4085616279297],[122.664527617188,46.4467659736328],[122.593189726563,46.4079994941407],[122.542935820313,46.3849336982422],[122.462345,46.3897371650391],[122.439986601563,46.3884047675781],[122.353424101563,46.4115895820313],[122.248048125,46.4053090644531],[122.219488554688,46.4208296943359],[122.162061796875,46.4385616279297],[122.11236453125,46.4592324042969],[122.082545195313,46.4485329414063],[122.072345,46.4491408515625],[122.062345,46.4485451484375],[122.052345,46.4491408515625],[122.042345,46.4485451484375],[122.032345,46.4491408515625],[122.011588164063,46.4479036689453],[121.992628203125,46.4691243720704],[121.978287382813,46.4819368720703],[121.939830351563,46.4995870185547],[121.893609648438,46.4968325019531],[121.866236601563,46.5274666572266],[121.842061796875,46.5385616279297],[121.816236601563,46.5674666572266],[121.792061796875,46.5785616279298],[121.775655546875,46.596923444336],[121.762628203125,46.6391243720703],[121.702061796875,46.6485616279297],[121.692628203125,46.6591243720704],[121.635201445313,46.6768563056641],[121.510601835938,46.7445662666016],[121.512779570313,46.7811183906251],[121.451285429688,46.8360622382813],[121.452642851563,46.858843],[121.4520325,46.8690688300782],[121.466104765625,46.8949623847657],[121.406783476563,46.9132802558594],[121.391588164063,46.9302877021485],[121.353570585938,46.9280220771484],[121.337345,46.933843],[121.33298953125,46.9394869208985],[121.288355742188,46.9739388251953],[121.3086340625,47.0075557685547],[121.32170046875,47.0394869208985],[121.33298953125,47.0581990791016],[121.3421496875,47.1121120429688],[121.36298953125,47.1281990791016],[121.367345,47.1338430000001],[121.389488554688,47.1383132148438],[121.397345,47.153843],[121.412628203125,47.1585616279297],[121.428204375,47.1759993720704],[121.53588015625,47.1951332832031],[121.608365507813,47.1691243720703],[121.632628203125,47.1785616279297],[121.645655546875,47.2207625556641],[121.676920195313,47.2557491279297],[121.757345,47.2846071601563],[121.815826445313,47.2636244941407],[121.909986601563,47.2384047675782],[121.922545195313,47.2391530585938],[122.07439578125,47.1840895820313],[122.136475859375,47.2178243232423],[122.202906523438,47.2332802558594],[122.232061796875,47.2491243720703],[122.252628203125,47.2585616279297],[122.318756132813,47.3128212714844],[122.392061796875,47.3391243720704],[122.407345,47.343843],[122.469176054688,47.270077741211],[122.510968046875,47.2327352119141],[122.530079375,47.1910982490235]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿巴嘎旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.931744414063,45.3797731757813],[114.978048125,45.3770131660156],[115.092061796875,45.3891243720703],[115.167345,45.393843],[115.220963164063,45.2956215644531],[115.288306914063,45.2527919746094],[115.362628203125,45.1691243720704],[115.373795195313,45.08562034375],[115.470025664063,45.0244173408203],[115.522471953125,44.9657204414063],[115.62750125,44.9273421455078],[115.681500273438,44.8979994941406],[115.722628203125,44.8791243720703],[115.727345,44.873843],[115.6614465625,44.8561611152344],[115.601803007813,44.8104213691407],[115.526051054688,44.7959596992188],[115.473136015625,44.7019557929688],[115.41920046875,44.6671254707031],[115.392535429688,44.5986525703125],[115.33986453125,44.5819771552735],[115.363673125,44.5473787666016],[115.362139921875,44.5086788154298],[115.372535429688,44.4890334296875],[115.398580351563,44.4338442207031],[115.422535429688,44.3990334296875],[115.452154570313,44.3486525703125],[115.552154570313,44.2840773750001],[115.541783476563,44.1704183173828],[115.471822539063,44.1570607734376],[115.47287234375,44.1305983710938],[115.442916289063,44.098271100586],[115.384019804688,44.0704744697266],[115.319991484375,43.9917983222657],[115.3486340625,43.9501735664062],[115.331754179688,43.9182796455079],[115.372535429688,43.8990334296875],[115.386646757813,43.8691323066406],[115.503336210938,43.8589638496094],[115.522154570313,43.8386525703125],[115.59560671875,43.7973049140626],[115.631461210938,43.7586098457032],[115.705987578125,43.7615639472657],[115.749937773438,43.7408199287109],[115.782154570313,43.7186525703125],[115.951964140625,43.6102474189453],[115.971431914063,43.5689931464844],[116.033297148438,43.5397963691407],[116.079542265625,43.4898842597656],[116.106417265625,43.4772017646484],[116.090357695313,43.4004439521485],[116.107008085938,43.313227765625],[116.134674101563,43.24218284375],[116.178121367188,43.2216774726563],[116.154146757813,43.1708815742187],[116.127345,43.1338430000001],[116.092628203125,43.1185622382812],[115.935753203125,43.1062819648438],[115.88248171875,43.13921409375],[115.832628203125,43.1285622382813],[115.719078398438,43.1133754707031],[115.615860625,43.1195278144531],[115.465699492188,43.1035768867188],[115.372144804688,43.1091530585938],[115.325792265625,43.0925209785157],[115.187345,43.083843],[115.153697539063,43.1228981757813],[115.092818632813,43.1412270332032],[114.993804960938,43.2231288886719],[114.921324492188,43.3072597480469],[114.87197390625,43.3184706855469],[114.849854765625,43.3308132148438],[114.83271609375,43.3692147041016],[114.783072539063,43.3804927802735],[114.7722278125,43.3679024482422],[114.755084257813,43.4063185859375],[114.6702746875,43.4552150703125],[114.621578398438,43.5329659248047],[114.5866028125,43.5630989814454],[114.5223059375,43.6377284980469],[114.498219023438,43.6917055488281],[114.43974734375,43.7715096259766],[114.444664335938,43.8326876044922],[114.392218046875,43.8183345771485],[114.37271609375,43.8292147041016],[114.35197390625,43.8384712958985],[114.32271609375,43.8792147041016],[114.28197390625,43.9084712958985],[114.229307890625,43.9520351386719],[114.21271609375,43.9892147041016],[114.198997832031,44.0138033271485],[114.172535429688,44.0366017890625],[114.158490019531,44.0832521796876],[114.063844023438,44.1254854560547],[114.04271609375,44.1592147041016],[113.939368925781,44.2990560126953],[113.811414824219,44.3771126533204],[113.79271609375,44.4392147041016],[113.716800566406,44.5278670478516],[113.641707792969,44.5749001289063],[113.564681425781,44.5923995185547],[113.550709257813,44.6237129951172],[113.52197390625,44.6484712958985],[113.51271609375,44.6992147041016],[113.50197390625,44.7484712958985],[113.497345,44.7738430000001],[113.512625761719,44.7691243720703],[113.563533964844,44.7508583808594],[113.637471953125,44.7464510322266],[113.709053984375,44.7881264472656],[113.789422636719,44.8442647529297],[113.869481230469,44.8750411201173],[113.882064238281,44.8891243720703],[113.892625761719,44.8985616279298],[113.903861113281,44.9111342597657],[114.068353300781,44.9304042792969],[114.122493925781,44.9648372626953],[114.188944121094,45.039208600586],[114.352625761719,45.1285616279298],[114.412064238281,45.1791243720704],[114.465792265625,45.2210305000001],[114.527393828125,45.3005196357422],[114.543360625,45.3860805488281],[114.611783476563,45.4044057441406],[114.672628203125,45.4185616279297],[114.739908476563,45.4365810371094],[114.931744414063,45.3797731757813]]]]}},{"type":"Feature","properties":{"name":"东乌珠穆沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.807345,46.6738430000001],[119.795152617188,46.6772664619141],[119.803922148438,46.6860353828125],[119.807345,46.6738430000001]]],[[[119.807345,46.6738430000001],[119.862896757813,46.6693959785157],[119.907345,46.663843],[119.911612578125,46.6481087470704],[119.941095,46.6004689765625],[119.901080351563,46.5387587714844],[119.940636015625,46.490321881836],[119.903204375,46.4298378730469],[119.971612578125,46.4157649970704],[119.951324492188,46.3964363837891],[119.888580351563,46.4072377753907],[119.833077421875,46.3745534492188],[119.843775664063,46.3539376044923],[119.869752226563,46.3346150947266],[119.842760039063,46.3179109931641],[119.8295325,46.3201882148438],[119.834928007813,46.288843],[119.826690703125,46.241005475586],[119.86763796875,46.2168935371094],[119.877345,46.203843],[119.848560820313,46.1807949042969],[119.873013945313,46.1392031074219],[119.871241484375,46.1249709296875],[119.84826296875,46.1065682197266],[119.829932890625,46.0012544990234],[119.800885039063,45.9890145087891],[119.823292265625,45.9710744453126],[119.803248320313,45.828691022461],[119.747491484375,45.764438703125],[119.703170195313,45.7457625556641],[119.692896757813,45.6982900214844],[119.680928984375,45.6671535468751],[119.632345,45.6731966376953],[119.57736453125,45.6663582587891],[119.567345,45.6538430000001],[119.552511015625,45.6423928046875],[119.54298953125,45.6081990791016],[119.490660429688,45.5482955146485],[119.41170046875,45.5194869208985],[119.300401640625,45.4669795966797],[119.303824492188,45.443843],[119.3008215625,45.4235445380859],[119.307345,45.3838430000001],[119.243365507813,45.3031191230469],[119.28271609375,45.2692147041016],[119.287345,45.2638430000001],[119.253277617188,45.2702016425781],[119.176324492188,45.2908119941406],[119.142628203125,45.3091243720703],[119.089429960938,45.3185616279297],[119.052467070313,45.2984755683594],[118.99595828125,45.3105483222657],[118.947803984375,45.3076784492188],[118.912628203125,45.2885616279297],[118.762061796875,45.2791243720703],[118.711798125,45.2610878730469],[118.632061796875,45.2391243720703],[118.573189726563,45.2179994941406],[118.492271757813,45.1930135322266],[118.443189726563,45.2196865058594],[118.341329375,45.2664369941406],[118.302061796875,45.2785616279297],[118.282628203125,45.3091243720703],[118.266397734375,45.3236244941407],[118.209830351563,45.3495870185547],[118.149263945313,45.3459773994141],[118.112628203125,45.3591243720704],[117.962921171875,45.3691756416016],[117.947345,45.3682466865234],[117.870128203125,45.3728493476563],[117.752628203125,45.3185616279297],[117.617330351563,45.2703029609375],[117.552628203125,45.1685616279298],[117.53607546875,45.1537740302735],[117.442061796875,45.1391243720704],[117.348160429688,45.12243675],[117.289449492188,45.0905324531251],[117.192061796875,45.0791243720703],[117.076275664063,45.0525038886719],[116.962061796875,45.0391243720703],[116.832628203125,44.9985616279297],[116.666236601563,44.9891243720704],[116.545172148438,45.0149892402344],[116.507603789063,44.9729421210938],[116.486656523438,44.8828932929687],[116.442061796875,44.8691243720704],[116.427345,44.863843],[116.372154570313,44.8686525703125],[116.27845828125,44.880868756836],[116.213521757813,44.8782949042969],[116.132535429688,44.8431917548829],[116.16623171875,44.8272884345703],[116.092139921875,44.7690218330078],[116.093350859375,44.7384755683594],[116.034405546875,44.7106563544922],[115.965572539063,44.6990334296875],[115.87759890625,44.7351692939453],[115.727345,44.873843],[115.722628203125,44.8791243720703],[115.681500273438,44.8979994941406],[115.62750125,44.9273421455078],[115.522471953125,44.9657204414063],[115.470025664063,45.0244173408203],[115.373795195313,45.08562034375],[115.362628203125,45.1691243720704],[115.288306914063,45.2527919746094],[115.220963164063,45.2956215644531],[115.167345,45.393843],[115.392535429688,45.3986525703125],[115.566187773438,45.436439435547],[115.688834257813,45.4598549628907],[115.828350859375,45.5494313789062],[115.932154570313,45.6290334296875],[116.013648710938,45.6590633369141],[116.033936796875,45.6809596992188],[116.107345,45.6780501533203],[116.155362578125,45.6799532294922],[116.21291140625,45.7195546699219],[116.212115507813,45.7396358466797],[116.274097929688,45.7796602607422],[116.272144804688,45.828843],[116.272550078125,45.8390151191407],[116.239659453125,45.8819087958985],[116.252535429688,45.9186525703126],[116.268565703125,45.9692879462891],[116.397862578125,46.1222878242188],[116.432535429688,46.1386525703125],[116.557320585938,46.2505733466797],[116.587056914063,46.2966286445313],[116.630045195313,46.3169148994141],[116.752535429688,46.3286525703125],[116.797535429688,46.3524648261719],[116.823228789063,46.380194928711],[116.8733215625,46.3782100654297],[117.074141875,46.3549471259766],[117.373721953125,46.3691078925782],[117.372144804688,46.4088430000001],[117.373629179688,46.4462721992187],[117.437530546875,46.5247878242187],[117.418033476563,46.5804122138672],[117.53843875,46.5995925117188],[117.572345,46.5982485175782],[117.597345,46.5992391181641],[117.616431914063,46.5984828925781],[117.649293242188,46.5476003242188],[117.695826445313,46.5090334296875],[117.772154570313,46.5290334296875],[117.862896757813,46.539892194336],[117.861729765625,46.569374616211],[117.900875273438,46.6056435371094],[117.982550078125,46.6186550117188],[117.98209109375,46.6302400947266],[118.038795195313,46.6279927802735],[118.122154570313,46.6790334296875],[118.20482546875,46.6903322578126],[118.222154570313,46.7090334296876],[118.262535429688,46.7186525703126],[118.31218875,46.7390474677735],[118.374132109375,46.7365920234375],[118.442154570313,46.7086525703125],[118.563682890625,46.6920436835938],[118.641910429688,46.7194631171875],[118.672154570313,46.6986525703125],[118.79312625,46.6841768623047],[118.791763945313,46.7185512519532],[118.833463164063,46.7697896552735],[118.862345,46.7686446357422],[118.901461210938,46.770194928711],[118.9132825,46.7574373603516],[118.911822539063,46.7206038642578],[119.00763796875,46.7457112861328],[119.045855742188,46.6936049628906],[119.103956328125,46.6479158759766],[119.152345,46.649833600586],[119.197345,46.6480501533204],[119.222345,46.6490413642579],[119.234537382813,46.6485579658203],[119.290670195313,46.6188552070313],[119.37939578125,46.6067293525391],[119.432252226563,46.6390932441407],[119.482213164063,46.6286397529297],[119.546402617188,46.6311836982423],[119.584224882813,46.6179268623047],[119.666793242188,46.6211995673829],[119.682452421875,46.5880245185547],[119.722154570313,46.6090334296875],[119.776910429688,46.6220766425782],[119.807345,46.6738430000001]]]]}},{"type":"Feature","properties":{"name":"多伦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.636612578125,42.561421125],[116.662799101563,42.5581642890626],[116.690094023438,42.5922536445312],[116.79732546875,42.5788417792969],[116.828472929688,42.539946515625],[116.842345,42.5382216621094],[116.859249296875,42.5403237128906],[116.877550078125,42.5256728339844],[116.871671171875,42.4784389472657],[116.90318484375,42.4390370917969],[116.891793242188,42.4093959785157],[116.887345,42.383843],[116.878824492188,42.3455580878907],[116.904527617188,42.28526878125],[116.899918242188,42.2400136542969],[116.912896757813,42.229233625],[116.9118371875,42.2188430000001],[116.914815703125,42.1896047187501],[116.897345,42.1878237128907],[116.872345,42.1903713203126],[116.852174101563,42.18831565625],[116.782808867188,42.2037575507813],[116.805357695313,42.1655471015625],[116.84345828125,42.1490224433594],[116.886436796875,42.0947182441406],[116.871803007813,42.069165265625],[116.873873320313,42.048843],[116.8718371875,42.0288430000001],[116.873448515625,42.0129958320313],[116.841881132813,41.9993056464845],[116.808062773438,41.9799355292969],[116.783531523438,41.9774355292969],[116.753111601563,41.9948598457032],[116.722808867188,41.9583803535156],[116.701881132813,41.9493056464844],[116.697345,41.943843],[116.65142703125,41.9397585273438],[116.632789335938,41.927622296875],[116.607345,41.9333266425781],[116.577345,41.9266017890626],[116.546510039063,41.9335134101562],[116.49236453125,41.9805373359375],[116.45326296875,41.9479274726563],[116.396944609375,41.9397585273438],[116.40759890625,41.9872817207032],[116.363487578125,42.0124611640625],[116.31677859375,42.0019911933594],[116.29091921875,41.9645339179687],[116.227799101563,41.9409157539063],[116.200338164063,41.8928041816407],[116.204566679688,41.8739284492188],[116.177867460938,41.8597585273438],[116.131900664063,41.8700637031251],[116.10177859375,41.8504506660156],[116.09326296875,41.8335671210938],[116.125474882813,41.8113259101563],[116.105826445313,41.7811513496094],[116.077345,41.773843],[116.070079375,41.7822768378907],[116.00834109375,41.7773159003907],[115.99271609375,41.8292153144531],[115.936788359375,41.8968288398437],[115.917345,41.943843],[115.994288359375,42.0806020332031],[116.032535429688,42.0986525703125],[116.057589140625,42.1119106269531],[116.0993371875,42.1688259101562],[116.163839140625,42.1992678046875],[116.191187773438,42.2287819648438],[116.202154570313,42.3090334296875],[116.239967070313,42.3583400703125],[116.27357546875,42.3689809394532],[116.293839140625,42.3908534980469],[116.368204375,42.3752944160157],[116.40216921875,42.3386379218751],[116.422345,42.3394374824219],[116.490753203125,42.3367263007813],[116.506964140625,42.3542238593751],[116.522550078125,42.3686659980469],[116.52193484375,42.3841823554688],[116.5586340625,42.4375124335938],[116.542154570313,42.4686525703125],[116.530513945313,42.5175148750001],[116.55220828125,42.53761253125],[116.562154570313,42.5690334296875],[116.577345,42.5938430000001],[116.622393828125,42.6111586738282],[116.636612578125,42.561421125]]]]}},{"type":"Feature","properties":{"name":"二连浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.017603789063,43.6111171699219],[111.948529082031,43.5830983710938],[111.902415800781,43.6274031806641],[111.887345,43.673843],[111.89298953125,43.6781990791016],[111.945838652344,43.6904451728516],[111.967345,43.7438430000001],[112.081766386719,43.7568398261719],[112.053236113281,43.7014528632813],[112.017603789063,43.6111171699219]]]]}},{"type":"Feature","properties":{"name":"苏尼特右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.058558378906,43.7818929267579],[112.087545195313,43.7540431953125],[112.102244902344,43.7387429023438],[112.392879667969,43.6722231269531],[112.486666289063,43.6373744941406],[112.557393828125,43.6009383369141],[112.802445097656,43.5889430976563],[112.855704375,43.5707131171875],[112.997345,43.5678224921875],[113.232166777344,43.5726149726563],[113.232550078125,43.5538430000001],[113.231636992188,43.5091249824219],[113.325667753906,43.4879732490235],[113.497506132813,43.5074916816406],[113.590572539063,43.4522457099609],[113.644556914063,43.3570272041016],[113.702449980469,43.3289406562501],[113.702235136719,43.3184194160157],[113.772518339844,43.2723390937501],[113.772240019531,43.2587477851563],[113.823148222656,43.1981044746094],[113.853912382813,43.1346913886719],[113.912437773438,43.1157009101563],[113.992445097656,43.0589430976563],[114.004266386719,43.0345766425782],[114.098062773438,43.0041396308594],[114.0720325,42.9791310859376],[114.072550078125,42.953843],[114.072039824219,42.9289394355469],[114.087752714844,42.913843],[114.072105742188,42.8988100410156],[114.097493925781,42.8864931464844],[114.122244902344,42.8487429023438],[114.2159778125,42.7956008125001],[114.197269316406,42.7592836738281],[114.247345,42.7538430000001],[114.236095,42.7417018867187],[114.177503691406,42.71069846875],[114.092154570313,42.6990334296875],[114.076207304688,42.6818227363281],[114.042535429688,42.6586525703125],[113.942110625,42.6216481757813],[113.842154570313,42.5290334296875],[113.810260039063,42.4946120429688],[113.772535429688,42.4686525703125],[113.689676542969,42.4587367988282],[113.641068144531,42.4062770820313],[113.55154421875,42.3640261054688],[113.552550078125,42.3386794257813],[113.541402617188,42.3176137519532],[113.543175078125,42.2728969550782],[113.502535429688,42.2586525703126],[113.423841582031,42.2461159492188],[113.412535429688,42.1986525703125],[113.382926054688,42.1846779609375],[113.377345,42.1438430000001],[113.356859160156,42.1381386542969],[113.286988554688,42.0863368964844],[113.255562773438,42.0456240058594],[113.211693144531,42.0117617011719],[113.163748808594,41.9921388984375],[113.157345,41.9838430000001],[113.143392363281,41.973843],[113.163170195313,41.9596681953126],[113.171519804688,41.9401137519532],[113.122056914063,41.9498879218751],[113.074256621094,41.9302468085938],[113.039232207031,41.9791152167969],[112.987345,41.9838430000001],[112.982535429688,41.9890334296876],[112.936063261719,42.0109658027344],[112.861068144531,42.1063320136719],[112.822154570313,42.1186525703125],[112.777725859375,42.1342238593751],[112.730174589844,42.1492787910157],[112.683311796875,42.2485768867188],[112.632044707031,42.2787172675782],[112.643026152344,42.3100490546875],[112.610845976563,42.3398647285156],[112.388568144531,42.3881130195313],[112.245025664063,42.4802761054688],[112.171749296875,42.5088100410157],[112.172659941406,42.5318105292969],[112.024525175781,42.5849794746094],[112.002535429688,42.6190334296875],[111.923494902344,42.7125673652344],[111.859139433594,42.8038491035157],[111.831512480469,42.8623915839844],[111.749190703125,42.9820253730469],[111.630111113281,43.0321364570313],[111.503360625,43.1689345527344],[111.360628691406,43.1860146308594],[111.197896757813,43.281762921875],[111.147345,43.373843],[111.160557890625,43.3881044746094],[111.272154570313,43.4190334296875],[111.351641875,43.4379677558594],[111.400628691406,43.475532453125],[111.454832792969,43.4897353339844],[111.556971464844,43.4856868720704],[111.611612578125,43.52097190625],[111.786483183594,43.6687471748047],[111.887345,43.673843],[111.902415800781,43.6274031806641],[111.948529082031,43.5830983710938],[112.017603789063,43.6111171699219],[112.053236113281,43.7014528632813],[112.081766386719,43.7568398261719],[111.967345,43.7438430000001],[111.957345,43.803843],[111.972244902344,43.7987429023438],[112.058558378906,43.7818929267579]]]]}},{"type":"Feature","properties":{"name":"苏尼特左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.106473417969,45.0736336494141],[112.317345,45.0652754951172],[112.430577421875,45.0697640205079],[112.502535429688,45.0190334296875],[112.617420683594,44.9148006416016],[112.756041289063,44.8619057441406],[112.832154570313,44.8486525703126],[112.959364042969,44.8364626289062],[113.052725859375,44.8142244697266],[113.116695585938,44.7974623847657],[113.442154570313,44.7786525703126],[113.497345,44.7738430000001],[113.50197390625,44.7484712958985],[113.51271609375,44.6992147041016],[113.52197390625,44.6484712958985],[113.550709257813,44.6237129951172],[113.564681425781,44.5923995185547],[113.641707792969,44.5749001289063],[113.716800566406,44.5278670478516],[113.79271609375,44.4392147041016],[113.811414824219,44.3771126533204],[113.939368925781,44.2990560126953],[114.04271609375,44.1592147041016],[114.063844023438,44.1254854560547],[114.158490019531,44.0832521796876],[114.172535429688,44.0366017890625],[114.198997832031,44.0138033271485],[114.21271609375,43.9892147041016],[114.229307890625,43.9520351386719],[114.28197390625,43.9084712958985],[114.32271609375,43.8792147041016],[114.35197390625,43.8384712958985],[114.37271609375,43.8292147041016],[114.392218046875,43.8183345771485],[114.444664335938,43.8326876044922],[114.43974734375,43.7715096259766],[114.498219023438,43.6917055488281],[114.5223059375,43.6377284980469],[114.5866028125,43.5630989814454],[114.621578398438,43.5329659248047],[114.6702746875,43.4552150703125],[114.755084257813,43.4063185859375],[114.7722278125,43.3679024482422],[114.783072539063,43.3804927802735],[114.83271609375,43.3692147041016],[114.849854765625,43.3308132148438],[114.87197390625,43.3184706855469],[114.921324492188,43.3072597480469],[114.993804960938,43.2231288886719],[115.092818632813,43.1412270332032],[115.153697539063,43.1228981757813],[115.187345,43.083843],[115.13170046875,43.0694863105469],[115.06298953125,43.0381996894531],[115.027345,43.023843],[114.938638945313,42.9981313300782],[114.892906523438,42.9732802558594],[114.844659453125,42.9511367011719],[114.76423953125,42.8888124824219],[114.702061796875,42.8791237617188],[114.539166289063,42.8416725898438],[114.45437625,42.8112490058595],[114.37670046875,42.7690395332032],[114.292064238281,42.7591237617188],[114.267345,42.7538430000001],[114.247345,42.7538430000001],[114.197269316406,42.7592836738281],[114.2159778125,42.7956008125001],[114.122244902344,42.8487429023438],[114.097493925781,42.8864931464844],[114.072105742188,42.8988100410156],[114.087752714844,42.913843],[114.072039824219,42.9289394355469],[114.072550078125,42.953843],[114.0720325,42.9791310859376],[114.098062773438,43.0041396308594],[114.004266386719,43.0345766425782],[113.992445097656,43.0589430976563],[113.912437773438,43.1157009101563],[113.853912382813,43.1346913886719],[113.823148222656,43.1981044746094],[113.772240019531,43.2587477851563],[113.772518339844,43.2723390937501],[113.702235136719,43.3184194160157],[113.702449980469,43.3289406562501],[113.644556914063,43.3570272041016],[113.590572539063,43.4522457099609],[113.497506132813,43.5074916816406],[113.325667753906,43.4879732490235],[113.231636992188,43.5091249824219],[113.232550078125,43.5538430000001],[113.232166777344,43.5726149726563],[112.997345,43.5678224921875],[112.855704375,43.5707131171875],[112.802445097656,43.5889430976563],[112.557393828125,43.6009383369141],[112.486666289063,43.6373744941406],[112.392879667969,43.6722231269531],[112.102244902344,43.7387429023438],[112.087545195313,43.7540431953125],[112.058558378906,43.7818929267579],[111.972244902344,43.7987429023438],[111.957345,43.803843],[111.950423613281,43.825708234375],[111.902154570313,43.8886525703125],[111.860584746094,43.9453261542969],[111.782535429688,43.9990334296876],[111.684508085938,44.0372060371094],[111.614410429688,44.1021559882813],[111.540716582031,44.1927065253906],[111.518685332031,44.2851961494141],[111.492535429688,44.2990334296875],[111.412535429688,44.3243617988281],[111.423140898438,44.3956606269532],[111.474051542969,44.4822603583984],[111.511920195313,44.5173470283203],[111.522769804688,44.5403389716798],[111.562606230469,44.5772487617188],[111.5592590625,44.6617086005859],[111.594195585938,44.7357375312501],[111.622154570313,44.7790334296875],[111.702535429688,44.8886525703126],[111.759105253906,44.9762538886719],[111.903140898438,45.0524709296876],[112.015572539063,45.0986525703125],[112.062535429688,45.0890334296875],[112.106473417969,45.0736336494141]]]]}},{"type":"Feature","properties":{"name":"太仆寺旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.490323515625,42.1099501777344],[115.522545195313,42.0983888984375],[115.540982695313,42.1385622382813],[115.601954375,42.120376203125],[115.602642851563,42.108843],[115.601578398438,42.0909743476563],[115.644010039063,42.0884462714844],[115.685084257813,42.1107656074219],[115.740592070313,42.1074575019532],[115.779429960938,42.1285622382812],[115.811651640625,42.1154518867188],[115.812642851563,42.0988430000001],[115.811749296875,42.083843],[115.8130871875,42.0613588691407],[115.802628203125,42.0385622382813],[115.781890898438,42.0088784003906],[115.81173953125,41.9539553046876],[115.797345,41.9138430000001],[115.792061796875,41.9091237617187],[115.782628203125,41.8985622382812],[115.770220976563,41.8874794746094],[115.731588164063,41.8897817207032],[115.712628203125,41.8685622382813],[115.628765898438,41.8197389960938],[115.562061796875,41.7891237617188],[115.523189726563,41.7679994941407],[115.446783476563,41.7444057441406],[115.39713015625,41.7265895820313],[115.302857695313,41.7046559882812],[115.35322390625,41.6596572089844],[115.341475859375,41.6380446601562],[115.362906523438,41.5986122871094],[115.310494414063,41.5891237617188],[115.292628203125,41.6091237617188],[115.266392851563,41.6185622382813],[115.248878203125,41.5803981757813],[115.210494414063,41.5691237617188],[115.183189726563,41.5996865058594],[115.086456328125,41.6221926093751],[115.043629179688,41.5922768378907],[115.010592070313,41.6102284980469],[114.977345,41.608247296875],[114.947345,41.6100356269532],[114.888687773438,41.6065395332031],[114.877345,41.593843],[114.8619153125,41.5984889960938],[114.862955351563,41.6114455390625],[114.901143828125,41.6443459296876],[114.89158328125,41.7633229804688],[114.866842070313,41.8076699042969],[114.90271609375,41.8184706855469],[114.93197390625,41.8412404609376],[114.909664335938,41.8604616523438],[114.913150664063,41.903843],[114.911163359375,41.9285195136719],[114.922999296875,41.9387123847656],[114.91197390625,41.9584706855469],[114.901314726563,42.0053774238281],[114.871402617188,42.0187245917969],[114.883150664063,42.0288430000001],[114.863248320313,42.0459902167969],[114.857345,42.1038430000001],[114.901783476563,42.0965431953125],[114.922345,42.0995815253907],[114.965738554688,42.0931691718751],[115.022135039063,42.1096132636719],[115.047345,42.1058876777344],[115.078595,42.1105055976563],[115.139854765625,42.0963100410156],[115.162056914063,42.109702375],[115.231671171875,42.0935720039063],[115.292345,42.1025368476563],[115.32673953125,42.0974550605469],[115.35298953125,42.1081996894532],[115.38170046875,42.1294863105469],[115.40298953125,42.1381996894532],[115.44170046875,42.1694863105469],[115.457345,42.1738430000001],[115.462061796875,42.1685622382813],[115.4932434375,42.1589333320313],[115.490323515625,42.1099501777344]]]]}},{"type":"Feature","properties":{"name":"西乌珠穆沁旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.870128203125,45.3728493476563],[117.947345,45.3682466865234],[117.962921171875,45.3691756416016],[118.112628203125,45.3591243720704],[118.149263945313,45.3459773994141],[118.209830351563,45.3495870185547],[118.266397734375,45.3236244941407],[118.282628203125,45.3091243720703],[118.302061796875,45.2785616279297],[118.341329375,45.2664369941406],[118.443189726563,45.2196865058594],[118.492271757813,45.1930135322266],[118.573189726563,45.2179994941406],[118.632061796875,45.2391243720703],[118.711798125,45.2610878730469],[118.762061796875,45.2791243720703],[118.912628203125,45.2885616279297],[118.947803984375,45.3076784492188],[118.99595828125,45.3105483222657],[119.052467070313,45.2984755683594],[119.089429960938,45.3185616279297],[119.142628203125,45.3091243720703],[119.176324492188,45.2908119941406],[119.253277617188,45.2702016425781],[119.287345,45.2638430000001],[119.31142703125,45.2479274726563],[119.327345,45.243843],[119.296612578125,45.1897872138672],[119.353204375,45.1645351386719],[119.351925078125,45.1486043525391],[119.370035429688,45.0992916083984],[119.330079375,45.0769985175781],[119.29197390625,45.0884712958985],[119.267940703125,45.1268373847657],[119.189659453125,45.1482619453125],[119.14271609375,45.0820565009766],[119.182037382813,45.0484163642578],[119.201851835938,45.0500081611329],[119.202745390625,45.0388430000001],[119.2019153125,45.0284969306641],[119.23197390625,45.0150844550781],[119.202423125,44.9983052802735],[119.154127226563,45.0160408759766],[119.1519153125,44.9885195136719],[119.16271609375,44.9792147041016],[119.17197390625,44.9584712958984],[119.22197390625,44.9361598945313],[119.212652617188,44.9082845283204],[119.163468046875,44.9217458320313],[119.105699492188,44.9171034980469],[119.071060820313,44.9298232246094],[119.072764921875,44.9086397529297],[119.060738554688,44.8647048164063],[119.1427746875,44.8191829658203],[119.141920195313,44.8085445380859],[119.167345,44.7738430000001],[119.1620715625,44.7567732978516],[119.112628203125,44.7597200751953],[119.122061796875,44.7485616279298],[119.152061796875,44.7347927070313],[119.132628203125,44.7285616279297],[119.082061796875,44.7191243720704],[119.028673125,44.7077175117188],[118.982061796875,44.7185616279297],[118.958609648438,44.7313075996095],[118.923468046875,44.7151784492188],[118.957906523438,44.6844057441406],[118.972061796875,44.6685616279297],[118.995250273438,44.6478450751953],[118.959171171875,44.5491030097657],[118.872061796875,44.5091243720703],[118.852569609375,44.4985317207032],[118.834859648438,44.4995870185548],[118.806646757813,44.4866384101563],[118.777345,44.453843],[118.749366484375,44.4645967841797],[118.644561796875,44.4448317695313],[118.632896757813,44.4593959785157],[118.61396609375,44.4682900214844],[118.572896757813,44.4382900214844],[118.55166140625,44.429341046875],[118.55466921875,44.4051638007813],[118.469498320313,44.3867360664063],[118.4737121875,44.35284690625],[118.441793242188,44.3393959785157],[118.401397734375,44.3070894599609],[118.302345,44.3194649482422],[118.282345,44.3169771552735],[118.252345,44.3207088447266],[118.216021757813,44.3161904121094],[118.243013945313,44.2792354560547],[118.240636015625,44.2601064277344],[118.257345,44.2338430000001],[118.24170046875,44.2381990791016],[118.200826445313,44.254267194336],[118.163883085938,44.2063991523438],[118.142345,44.2095821357423],[118.12466921875,44.2069698310548],[118.111910429688,44.1318508125],[118.08170046875,44.1194869208985],[118.056832304688,44.1044857001953],[118.022345,44.1095821357422],[117.999991484375,44.1062783027344],[117.911534453125,44.1267757392578],[117.862320585938,44.0902907539063],[117.85298953125,44.0781990791016],[117.808990507813,44.0518837714844],[117.781832304688,44.0167018867188],[117.757345,44.0203206611329],[117.717345,44.0144100166016],[117.668365507813,44.0216475654297],[117.637345,44.033843],[117.680362578125,44.1005593085938],[117.6214465625,44.1187526679688],[117.62322390625,44.1485903144531],[117.604263945313,44.1655306220703],[117.55912234375,44.1794704414063],[117.523863554688,44.2189315009766],[117.43455203125,44.2328487373047],[117.20943484375,44.2194307685547],[117.152628203125,44.1885616279297],[117.111768828125,44.1759450507813],[117.019034453125,44.0721553779297],[116.9558996875,44.0157454658203],[116.967345,43.983843],[116.8799621875,43.9635121894531],[116.822672148438,44.0023464179688],[116.73244265625,44.1189430976563],[116.700875273438,44.1287429023438],[116.642432890625,44.1087392402344],[116.606744414063,44.1094673896484],[116.591470976563,44.1409535957031],[116.59283328125,44.2078066230469],[116.580660429688,44.24337425],[116.386939726563,44.4236794257813],[116.471417265625,44.5747957587891],[116.56281375,44.6807680488282],[116.562242460938,44.708843],[116.563057890625,44.7487441230469],[116.53224734375,44.7587429023438],[116.511651640625,44.7693508125],[116.49220828125,44.8094283271485],[116.43224734375,44.8487429023438],[116.427345,44.863843],[116.442061796875,44.8691243720704],[116.486656523438,44.8828932929687],[116.507603789063,44.9729421210938],[116.545172148438,45.0149892402344],[116.666236601563,44.9891243720704],[116.832628203125,44.9985616279297],[116.962061796875,45.0391243720703],[117.076275664063,45.0525038886719],[117.192061796875,45.0791243720703],[117.289449492188,45.0905324531251],[117.348160429688,45.12243675],[117.442061796875,45.1391243720704],[117.53607546875,45.1537740302735],[117.552628203125,45.1685616279298],[117.617330351563,45.2703029609375],[117.752628203125,45.3185616279297],[117.870128203125,45.3728493476563]]]]}},{"type":"Feature","properties":{"name":"锡林浩特市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.327345,43.063843],[116.323922148438,43.0516506171875],[116.315152617188,43.0604201484375],[116.327345,43.063843]]],[[[116.327345,43.063843],[116.32271609375,43.0692153144532],[116.283297148438,43.0939052558594],[116.17197390625,43.1084706855469],[116.127345,43.1338430000001],[116.154146757813,43.1708815742187],[116.178121367188,43.2216774726563],[116.134674101563,43.24218284375],[116.107008085938,43.313227765625],[116.090357695313,43.4004439521485],[116.106417265625,43.4772017646484],[116.079542265625,43.4898842597656],[116.033297148438,43.5397963691407],[115.971431914063,43.5689931464844],[115.951964140625,43.6102474189453],[115.782154570313,43.7186525703125],[115.749937773438,43.7408199287109],[115.705987578125,43.7615639472657],[115.631461210938,43.7586098457032],[115.59560671875,43.7973049140626],[115.522154570313,43.8386525703125],[115.503336210938,43.8589638496094],[115.386646757813,43.8691323066406],[115.372535429688,43.8990334296875],[115.331754179688,43.9182796455079],[115.3486340625,43.9501735664062],[115.319991484375,43.9917983222657],[115.384019804688,44.0704744697266],[115.442916289063,44.098271100586],[115.47287234375,44.1305983710938],[115.471822539063,44.1570607734376],[115.541783476563,44.1704183173828],[115.552154570313,44.2840773750001],[115.452154570313,44.3486525703125],[115.422535429688,44.3990334296875],[115.398580351563,44.4338442207031],[115.372535429688,44.4890334296875],[115.362139921875,44.5086788154298],[115.363673125,44.5473787666016],[115.33986453125,44.5819771552735],[115.392535429688,44.5986525703125],[115.41920046875,44.6671254707031],[115.473136015625,44.7019557929688],[115.526051054688,44.7959596992188],[115.601803007813,44.8104213691407],[115.6614465625,44.8561611152344],[115.727345,44.873843],[115.87759890625,44.7351692939453],[115.965572539063,44.6990334296875],[116.034405546875,44.7106563544922],[116.093350859375,44.7384755683594],[116.092139921875,44.7690218330078],[116.16623171875,44.8272884345703],[116.132535429688,44.8431917548829],[116.213521757813,44.8782949042969],[116.27845828125,44.880868756836],[116.372154570313,44.8686525703125],[116.427345,44.863843],[116.43224734375,44.8487429023438],[116.49220828125,44.8094283271485],[116.511651640625,44.7693508125],[116.53224734375,44.7587429023438],[116.563057890625,44.7487441230469],[116.562242460938,44.708843],[116.56281375,44.6807680488282],[116.471417265625,44.5747957587891],[116.386939726563,44.4236794257813],[116.580660429688,44.24337425],[116.59283328125,44.2078066230469],[116.591470976563,44.1409535957031],[116.606744414063,44.1094673896484],[116.642432890625,44.1087392402344],[116.700875273438,44.1287429023438],[116.73244265625,44.1189430976563],[116.822672148438,44.0023464179688],[116.8799621875,43.9635121894531],[116.967345,43.983843],[117.021842070313,43.9665895820313],[117.022550078125,43.9486733222657],[117.001763945313,43.9184682441407],[117.002545195313,43.8988430000001],[117.001553984375,43.873843],[117.002550078125,43.8486592841797],[116.976978789063,43.8365901923829],[116.993565703125,43.7841994453125],[117.051265898438,43.7469374824219],[116.971866484375,43.6780702949219],[116.861553984375,43.6570101142579],[116.842154570313,43.6390334296875],[116.832535429688,43.6186525703125],[116.80115359375,43.603843],[116.802545195313,43.568843],[116.802139921875,43.5586861396485],[116.826080351563,43.5004091621094],[116.782345,43.4850807929688],[116.68656375,43.5186525703126],[116.61134890625,43.4976253486328],[116.589991484375,43.4079732490235],[116.426734648438,43.3208010078125],[116.400015898438,43.2521828437501],[116.354195585938,43.2305580878907],[116.351373320313,43.1593740058594],[116.371353789063,43.1408620429688],[116.392154570313,43.1086525703125],[116.412535429688,43.0990334296875],[116.433355742188,43.0765639472657],[116.487345,43.0538430000001],[116.468546171875,43.0294863105469],[116.38783328125,43.0418581367188],[116.34298953125,43.0594863105469],[116.327345,43.063843]]]]}},{"type":"Feature","properties":{"name":"镶黄旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.677345,42.203843],[114.673922148438,42.1916506171875],[114.665152617188,42.2004201484376],[114.677345,42.203843]]],[[[114.677345,42.203843],[114.671612578125,42.2415358710938],[114.673331328125,42.2703920722657],[114.640318632813,42.2684242988282],[114.564971953125,42.2954592109375],[114.552628203125,42.2685622382813],[114.542061796875,42.2591237617188],[114.511129179688,42.2244997382813],[114.397225371094,42.1979982734375],[114.457906523438,42.1594057441406],[114.475484648438,42.1211135078125],[114.4472278125,42.0958693671876],[114.37361453125,42.1002577949219],[114.361732207031,42.1639113593751],[114.298365507813,42.1885622382813],[114.237923613281,42.1668740058594],[114.204097929688,42.1290163398438],[114.160828886719,42.1156557441406],[114.102076445313,42.1191567207031],[114.082625761719,42.0685622382813],[114.061878691406,42.0388600898438],[114.093392363281,41.9878871894532],[114.062254667969,41.9897426582032],[114.052435332031,41.9579433417969],[114.026219511719,41.9595058417969],[114.012479277344,41.9894460273438],[113.969283476563,41.9559706855469],[113.912586699219,41.9763149238281],[113.89906375,42.0344374824219],[113.870848417969,42.0596474433594],[113.828729277344,42.0571376777344],[113.7452746875,42.0749684882813],[113.701234160156,42.1242580390625],[113.630853300781,42.1054079414063],[113.592625761719,42.1191237617188],[113.557345,42.123843],[113.53298953125,42.1294863105469],[113.41170046875,42.1381996894532],[113.377345,42.1438430000001],[113.382926054688,42.1846779609375],[113.412535429688,42.1986525703125],[113.423841582031,42.2461159492188],[113.502535429688,42.2586525703126],[113.543175078125,42.2728969550782],[113.541402617188,42.3176137519532],[113.552550078125,42.3386794257813],[113.55154421875,42.3640261054688],[113.641068144531,42.4062770820313],[113.689676542969,42.4587367988282],[113.772535429688,42.4686525703125],[113.810260039063,42.4946120429688],[113.842154570313,42.5290334296875],[113.942110625,42.6216481757813],[114.042535429688,42.6586525703125],[114.076207304688,42.6818227363281],[114.092154570313,42.6990334296875],[114.177503691406,42.71069846875],[114.236095,42.7417018867187],[114.247345,42.7538430000001],[114.267345,42.7538430000001],[114.285592070313,42.722192609375],[114.348970976563,42.7077931953125],[114.41197390625,42.6684706855469],[114.469288359375,42.6580165839844],[114.50271609375,42.6292153144531],[114.562882109375,42.559380109375],[114.651881132813,42.4827028632813],[114.68271609375,42.4392153144531],[114.69197390625,42.4184706855469],[114.702769804688,42.3991213203126],[114.7014075,42.382153546875],[114.71197390625,42.3584706855469],[114.723624296875,42.3484316230469],[114.7601965625,42.248843],[114.747345,42.2138430000001],[114.71298953125,42.2081996894531],[114.677345,42.203843]]]]}},{"type":"Feature","properties":{"name":"正蓝旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.327345,43.063843],[116.315152617188,43.0604201484375],[116.323922148438,43.0516506171875],[116.34298953125,43.0594863105469],[116.38783328125,43.0418581367188],[116.468546171875,43.0294863105469],[116.487345,43.0538430000001],[116.492896757813,43.0493959785157],[116.504185820313,43.0099233222657],[116.577979765625,42.9788271308594],[116.660494414063,42.9287075019532],[116.667940703125,42.8688430000001],[116.660479765625,42.808843],[116.666090117188,42.7637221503907],[116.651793242188,42.7393959785157],[116.638453398438,42.7077370429688],[116.616236601563,42.6699489570313],[116.602896757813,42.6382900214844],[116.581793242188,42.6093959785156],[116.577345,42.5938430000001],[116.562154570313,42.5690334296875],[116.55220828125,42.53761253125],[116.530513945313,42.5175148750001],[116.542154570313,42.4686525703125],[116.5586340625,42.4375124335938],[116.52193484375,42.3841823554688],[116.522550078125,42.3686659980469],[116.506964140625,42.3542238593751],[116.490753203125,42.3367263007813],[116.422345,42.3394374824219],[116.40216921875,42.3386379218751],[116.368204375,42.3752944160157],[116.293839140625,42.3908534980469],[116.27357546875,42.3689809394532],[116.239967070313,42.3583400703125],[116.202154570313,42.3090334296875],[116.191187773438,42.2287819648438],[116.163839140625,42.1992678046875],[116.0993371875,42.1688259101562],[116.057589140625,42.1119106269531],[116.032535429688,42.0986525703125],[115.994288359375,42.0806020332031],[115.917345,41.943843],[115.822061796875,41.9291237617188],[115.812628203125,41.9185622382813],[115.797345,41.9138430000001],[115.81173953125,41.9539553046876],[115.781890898438,42.0088784003906],[115.802628203125,42.0385622382813],[115.8130871875,42.0613588691407],[115.811749296875,42.083843],[115.812642851563,42.0988430000001],[115.811651640625,42.1154518867188],[115.779429960938,42.1285622382812],[115.740592070313,42.1074575019532],[115.685084257813,42.1107656074219],[115.644010039063,42.0884462714844],[115.601578398438,42.0909743476563],[115.602642851563,42.108843],[115.601954375,42.120376203125],[115.540982695313,42.1385622382813],[115.522545195313,42.0983888984375],[115.490323515625,42.1099501777344],[115.4932434375,42.1589333320313],[115.462061796875,42.1685622382813],[115.457345,42.1738430000001],[115.461881132813,42.1793056464844],[115.4659778125,42.2194802070313],[115.515987578125,42.261020734375],[115.552159453125,42.2573329902344],[115.585631132813,42.31159690625],[115.58093875,42.3576552558594],[115.59375125,42.3800307441407],[115.589327421875,42.4234242988282],[115.521881132813,42.4383803535157],[115.452633085938,42.4679079414063],[115.395435820313,42.5039504218751],[115.423228789063,42.527036359375],[115.411822539063,42.5887087226563],[115.414449492188,42.6145058417969],[115.341651640625,42.630649640625],[115.287374296875,42.6736074042969],[115.322808867188,42.7183803535156],[115.33607546875,42.7635976386719],[115.316334257813,42.7980702949219],[115.291881132813,42.8183803535157],[115.272808867188,42.868423078125],[115.323800078125,42.9295705390625],[115.3209778125,42.9572682929688],[115.221881132813,42.9683803535157],[115.16920046875,42.9831093574219],[115.078160429688,42.9738295722657],[115.015172148438,42.9914406562501],[115.027345,43.023843],[115.06298953125,43.0381996894531],[115.13170046875,43.0694863105469],[115.187345,43.083843],[115.325792265625,43.0925209785157],[115.372144804688,43.1091530585938],[115.465699492188,43.1035768867188],[115.615860625,43.1195278144531],[115.719078398438,43.1133754707031],[115.832628203125,43.1285622382813],[115.88248171875,43.13921409375],[115.935753203125,43.1062819648438],[116.092628203125,43.1185622382812],[116.127345,43.1338430000001],[116.17197390625,43.1084706855469],[116.283297148438,43.0939052558594],[116.32271609375,43.0692153144532],[116.327345,43.063843]]]]}},{"type":"Feature","properties":{"name":"正镶白旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.015172148438,42.9914406562501],[115.078160429688,42.9738295722657],[115.16920046875,42.9831093574219],[115.221881132813,42.9683803535157],[115.3209778125,42.9572682929688],[115.323800078125,42.9295705390625],[115.272808867188,42.868423078125],[115.291881132813,42.8183803535157],[115.316334257813,42.7980702949219],[115.33607546875,42.7635976386719],[115.322808867188,42.7183803535156],[115.287374296875,42.6736074042969],[115.341651640625,42.630649640625],[115.414449492188,42.6145058417969],[115.411822539063,42.5887087226563],[115.423228789063,42.527036359375],[115.395435820313,42.5039504218751],[115.452633085938,42.4679079414063],[115.521881132813,42.4383803535157],[115.589327421875,42.4234242988282],[115.59375125,42.3800307441407],[115.58093875,42.3576552558594],[115.585631132813,42.31159690625],[115.552159453125,42.2573329902344],[115.515987578125,42.261020734375],[115.4659778125,42.2194802070313],[115.461881132813,42.1793056464844],[115.457345,42.1738430000001],[115.44170046875,42.1694863105469],[115.40298953125,42.1381996894532],[115.38170046875,42.1294863105469],[115.35298953125,42.1081996894532],[115.32673953125,42.0974550605469],[115.292345,42.1025368476563],[115.231671171875,42.0935720039063],[115.162056914063,42.109702375],[115.139854765625,42.0963100410156],[115.078595,42.1105055976563],[115.047345,42.1058876777344],[115.022135039063,42.1096132636719],[114.965738554688,42.0931691718751],[114.922345,42.0995815253907],[114.901783476563,42.0965431953125],[114.857345,42.1038430000001],[114.812896757813,42.1393959785157],[114.797345,42.1438430000001],[114.7916028125,42.1788088203125],[114.79556765625,42.2056508613282],[114.747345,42.2138430000001],[114.7601965625,42.248843],[114.723624296875,42.3484316230469],[114.71197390625,42.3584706855469],[114.7014075,42.382153546875],[114.702769804688,42.3991213203126],[114.69197390625,42.4184706855469],[114.68271609375,42.4392153144531],[114.651881132813,42.4827028632813],[114.562882109375,42.559380109375],[114.50271609375,42.6292153144531],[114.469288359375,42.6580165839844],[114.41197390625,42.6684706855469],[114.348970976563,42.7077931953125],[114.285592070313,42.722192609375],[114.267345,42.7538430000001],[114.292064238281,42.7591237617188],[114.37670046875,42.7690395332032],[114.45437625,42.8112490058595],[114.539166289063,42.8416725898438],[114.702061796875,42.8791237617188],[114.76423953125,42.8888124824219],[114.844659453125,42.9511367011719],[114.892906523438,42.9732802558594],[114.938638945313,42.9981313300782],[115.027345,43.023843],[115.015172148438,42.9914406562501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阿拉善左旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.712445097656,41.8289430976563],[103.875513945313,41.7989430976563],[104.102445097656,41.8087429023437],[104.523988066406,41.8743447089844],[104.519613066406,41.6600356269531],[104.675484648438,41.6467641425781],[104.918773222656,41.6517287421875],[105.008414335938,41.5837087226563],[105.192244902344,41.7189430976563],[105.227345,41.743843],[105.222899199219,41.6882900214844],[105.197782011719,41.5349037910156],[105.223472929688,41.3566286445313],[105.271790800781,41.2682900214844],[105.319246855469,41.1887575507813],[105.324832792969,41.143843],[105.319859648438,41.1038613105469],[105.378472929688,41.0569240546875],[105.394881621094,41.0142360664063],[105.391121855469,40.9840151191406],[105.492899199219,40.9293959785157],[105.541790800781,40.8982900214844],[105.652899199219,40.8393959785157],[105.697874785156,40.8065419746094],[105.761790800781,40.7882900214844],[105.832899199219,40.7793959785156],[105.860416289063,40.7632204414062],[105.948658476563,40.73618675],[106.107591582031,40.7163075996094],[106.157345,40.6938430000001],[106.167345,40.6938430000001],[106.167345,40.703843],[106.177345,40.703843],[106.198233671875,40.6795973945313],[106.241011992188,40.6667177558595],[106.255604277344,40.6024892402344],[106.352183867188,40.5877724433594],[106.43197390625,40.5584706855469],[106.49197390625,40.5448403144531],[106.480867949219,40.4892153144531],[106.36197390625,40.4984706855469],[106.32064578125,40.5277748847657],[106.282691679688,40.5308242011719],[106.272691679688,40.5084133125001],[106.20271609375,40.5140358710938],[106.235592070313,40.4515981269532],[106.32197390625,40.3484706855469],[106.43271609375,40.3392153144531],[106.457984648438,40.3251161933594],[106.530745878906,40.3767055488281],[106.652225371094,40.3864662910157],[106.82197390625,40.3670070625],[106.774740019531,40.3047927070313],[106.700692167969,40.2584120917969],[106.742374296875,40.1918642402344],[106.85271609375,40.1792153144532],[106.857345,40.173843],[106.8154309375,40.1011440253906],[106.79271609375,40.0884706855469],[106.761229277344,40.0744216132813],[106.719559355469,40.038520734375],[106.732789335938,39.9286025214844],[106.713114042969,39.8933351875],[106.747345,39.863843],[106.755755644531,39.8268141914063],[106.764039335938,39.7602297187501],[106.745479765625,39.7286586738282],[106.766239042969,39.7027370429688],[106.788016386719,39.6852968574219],[106.761512480469,39.6490151191406],[106.767345,39.633843],[106.6570325,39.5827736640625],[106.611011992188,39.5474831367188],[106.613038359375,39.4963649726562],[106.645826445313,39.4659841132813],[106.747345,39.4338430000001],[106.734918242188,39.408843],[106.747345,39.383843],[106.716600371094,39.3745864082031],[106.657345,39.3528261542969],[106.6051965625,39.3719765449219],[106.523673125,39.3021633125],[106.507345,39.273843],[106.39250125,39.2881911445312],[106.277366972656,39.2738698554688],[106.283587675781,39.223843],[106.281102324219,39.2038430000001],[106.287772246094,39.1502016425782],[106.259251738281,39.1273622871094],[106.225250273438,39.1315908027344],[106.14869265625,39.153452375],[106.118717070313,39.1358327460938],[106.102899199219,39.0982900214845],[106.091790800781,39.0793959785157],[106.087345,39.063843],[106.081439238281,39.0581703925781],[106.082449980469,39.0087490058594],[106.056744414063,38.9708290839844],[106.032244902344,38.9589430976563],[106.004915800781,38.9448635078125],[105.962445097656,38.8851686835938],[105.997345,38.873843],[105.9795325,38.8516005683594],[105.900535917969,38.7883913398438],[105.902967558594,38.768843],[105.901102324219,38.7538430000001],[105.903013945313,38.7384706855469],[105.887345,38.7138430000001],[105.88298953125,38.6881996894531],[105.845079375,38.6291774726563],[105.864635039063,38.5967568183594],[105.85298953125,38.5281996894532],[105.841549101563,38.509233625],[105.843104277344,38.4987001777344],[105.837345,38.473843],[105.842955351563,38.4486391425782],[105.827157011719,38.4210549140625],[105.820264921875,38.3534291816407],[105.841883574219,38.3183803535157],[105.861663847656,38.3019496894531],[105.847345,38.263843],[105.827503691406,38.2290908027344],[105.774620390625,38.2061550117188],[105.765455351563,38.1162563300781],[105.786419707031,38.0679177070313],[105.839635039063,38.0006777167969],[105.812806425781,37.9683803535157],[105.79427859375,37.9529885078126],[105.803436308594,37.8631471992187],[105.771883574219,37.8193056464844],[105.762806425781,37.7983803535156],[105.711883574219,37.7893056464844],[105.676209746094,37.7759011054687],[105.622196074219,37.7814064765625],[105.612806425781,37.7183803535157],[105.601883574219,37.7093056464844],[105.597345,37.703843],[105.447345,37.703843],[105.354093046875,37.7113112617187],[105.242535429688,37.6786525703125],[105.16353640625,37.6598342109375],[105.025758085938,37.5799196601563],[104.866822539063,37.5646901679687],[104.78572390625,37.5362648750001],[104.421773710938,37.5094142890626],[104.402535429688,37.4686525703125],[104.372154570313,37.4590334296875],[104.352535429688,37.4486525703125],[104.302154570313,37.4390334296875],[104.287345,37.433843],[104.25271609375,37.4184706855469],[104.188231230469,37.4038210273438],[104.107701445313,37.4487502265625],[103.95271609375,37.5592153144531],[103.874014921875,37.6028871894532],[103.847345,37.633843],[103.821771269531,37.6614443183594],[103.674110136719,37.7827846503906],[103.40463015625,37.8608315253907],[103.392535429688,37.8990334296876],[103.387345,37.9138430000001],[103.38298953125,37.9394863105469],[103.37170046875,37.9781996894531],[103.359503203125,38.0500026679688],[103.367345,38.083843],[103.37498171875,38.0917897773437],[103.529781523438,38.1559255195313],[103.511795683594,38.2613808417969],[103.474171171875,38.3344179511719],[103.416512480469,38.405844953125],[103.662445097656,38.5387429023438],[103.856729765625,38.6438185859375],[104.02818484375,38.8855092597656],[104.166842070313,38.9401992011719],[104.193231230469,38.9804457832032],[104.19185671875,39.0478066230469],[104.202613554688,39.0792348457032],[104.180999785156,39.1423805976563],[104.047266875,39.2944008613282],[104.081732207031,39.3950917792969],[104.087345,39.423843],[104.114271269531,39.4290993476562],[104.202860136719,39.4594216132813],[104.224068632813,39.5464272285156],[104.286641875,39.6239418769532],[104.198929472656,39.8401833320312],[104.232445097656,39.9287429023438],[104.252244902344,39.9825173164063],[104.205933867188,40.0128798652344],[104.22556765625,40.031743390625],[104.332279082031,40.0835146308594],[104.473595,40.0988674140625],[104.562044707031,40.1291432929688],[104.622445097656,40.1487429023438],[104.632244902344,40.1544850898438],[104.602244902344,40.1987429023438],[104.572445097656,40.2516835761719],[104.623387480469,40.3505739570313],[104.534080839844,40.4035903144531],[104.582518339844,40.4353469062501],[104.581485625,40.4860097480469],[104.52838015625,40.5032424140625],[104.552449980469,40.5387490058594],[104.552108183594,40.55542503125],[104.472244902344,40.6187429023438],[104.452445097656,40.6489430976563],[104.361519804688,40.7596266914063],[104.342445097656,40.7989430976563],[104.315015898438,40.8394081855469],[104.24263796875,40.8379311347656],[104.232445097656,40.8589430976562],[104.172244902344,40.9287429023437],[104.162220488281,41.0005568671875],[104.121954375,41.0787197089844],[103.934796171875,41.2882814765626],[103.921214628906,41.3439907050782],[103.807918730469,41.4753542304688],[103.704295683594,41.5432924628906],[103.524918242188,41.6532338691407],[103.426046171875,41.8570326972656],[103.417345,41.883843],[103.436673613281,41.8772280097656],[103.712445097656,41.8289430976563]]]]}},{"type":"Feature","properties":{"name":"阿拉善右旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.5273450000001,39.883843],[99.5205871875001,39.8704836250001],[99.4507043750001,39.8772023750001],[99.4373450000001,39.883843],[99.4443738085938,39.8920021796875],[99.5273450000001,39.883843]]],[[[101.217345,39.0138430000001],[101.229537382813,39.0172658515625],[101.220767851563,39.0260353828125],[101.20170046875,39.0094863105469],[101.1089075,38.9726027656251],[101.03170046875,38.9594863105469],[100.972127714844,38.9456825996094],[100.96298953125,38.9994863105469],[100.9040246875,39.0324965644531],[100.879783964844,39.0010903144531],[100.847345,39.0138430000001],[100.842535429688,39.0190334296875],[100.832154570313,39.0286525703126],[100.822535429688,39.070121076172],[100.862606230469,39.1072487617188],[100.862147246094,39.118843],[100.862550078125,39.1289943671876],[100.842791777344,39.1853627753906],[100.832535429688,39.3990334296875],[100.756658964844,39.4086525703126],[100.618255644531,39.3880141425782],[100.562423125,39.3902272773438],[100.497345,39.4038430000001],[100.492625761719,39.4791237617188],[100.422064238281,39.4885622382813],[100.328175078125,39.5052468085938],[100.301168242188,39.5640908027344],[100.304156523438,39.6142446113282],[100.25068484375,39.6832448554688],[100.117345,39.7038430000001],[100.039324980469,39.7543617988282],[99.9619739062501,39.768470685547],[99.9081164843751,39.7832106757813],[99.8211609179689,39.8576747871094],[99.7031360156251,39.879204328125],[99.5273450000001,39.883843],[99.5387781054688,39.8957424140625],[99.6224450976564,39.9287429023438],[99.6747107226564,39.9499428535157],[99.7453699023439,39.9978395820313],[99.8533923632814,40.0189284492188],[99.9180456835939,40.0522341132813],[99.9666369921876,40.1754323554688],[100.162445097656,40.2787429023438],[100.167345,40.4238430000001],[100.222535429688,40.4190334296876],[100.328160429688,40.4052614570312],[100.492154570313,40.5090334296875],[100.670067167969,40.5204128242188],[100.887786894531,40.4441042304687],[101.068924589844,40.4512831855469],[101.258880644531,40.4732875800782],[101.402154570313,40.4286525703126],[101.530870390625,40.4190334296876],[101.642740507813,40.5048195625],[101.783470488281,40.5353676582031],[101.938836699219,40.7075197578126],[102.004615507813,40.74999534375],[102.268082304688,40.8946376777344],[102.484442167969,40.9967458320313],[102.642015410156,41.0801259589844],[102.76830203125,41.16702659375],[103.001510039063,41.2885390449219],[103.102154570313,41.3808559394531],[103.061773710938,41.4182717109375],[103.022586699219,41.582778546875],[103.010965605469,41.7403310371094],[102.903956328125,41.9069948554688],[102.927345,42.0638430000001],[102.988460722656,42.0369435859376],[103.369193144531,41.8987123847656],[103.417345,41.883843],[103.426046171875,41.8570326972656],[103.524918242188,41.6532338691407],[103.704295683594,41.5432924628906],[103.807918730469,41.4753542304688],[103.921214628906,41.3439907050782],[103.934796171875,41.2882814765626],[104.121954375,41.0787197089844],[104.162220488281,41.0005568671875],[104.172244902344,40.9287429023437],[104.232445097656,40.8589430976562],[104.24263796875,40.8379311347656],[104.315015898438,40.8394081855469],[104.342445097656,40.7989430976563],[104.361519804688,40.7596266914063],[104.452445097656,40.6489430976563],[104.472244902344,40.6187429023438],[104.552108183594,40.55542503125],[104.552449980469,40.5387490058594],[104.52838015625,40.5032424140625],[104.581485625,40.4860097480469],[104.582518339844,40.4353469062501],[104.534080839844,40.4035903144531],[104.623387480469,40.3505739570313],[104.572445097656,40.2516835761719],[104.602244902344,40.1987429023438],[104.632244902344,40.1544850898438],[104.622445097656,40.1487429023438],[104.562044707031,40.1291432929688],[104.473595,40.0988674140625],[104.332279082031,40.0835146308594],[104.22556765625,40.031743390625],[104.205933867188,40.0128798652344],[104.252244902344,39.9825173164063],[104.232445097656,39.9287429023438],[104.198929472656,39.8401833320312],[104.286641875,39.6239418769532],[104.224068632813,39.5464272285156],[104.202860136719,39.4594216132813],[104.114271269531,39.4290993476562],[104.087345,39.423843],[104.055386992188,39.4299440742188],[103.982535429688,39.4490334296875],[103.904298125,39.4614968085938],[103.824049101563,39.45831565625],[103.619661894531,39.3946413398438],[103.512154570313,39.3690334296875],[103.472535429688,39.3586525703125],[103.349190703125,39.3351039863282],[103.262535429688,39.2686525703125],[103.187337675781,39.2156386542969],[103.102523222656,39.1756105781251],[103.024283476563,39.1119362617188],[102.978128691406,39.0990334296875],[102.783297148438,39.1397963691407],[102.595169707031,39.1757131171876],[102.455907011719,39.2540029121094],[102.36052859375,39.2340480781251],[102.276199980469,39.1894252753907],[102.11330203125,39.1550551582032],[102.008233671875,39.1275246406251],[101.892154570313,39.1090334296875],[101.825113554688,39.0950075507813],[101.949652128906,38.9826100898438],[101.977345,38.9738430000001],[101.977345,38.963843],[101.987345,38.963843],[101.987345,38.953843],[101.997345,38.953843],[101.997345,38.9438430000001],[102.007345,38.9438430000001],[102.007345,38.933843],[102.017345,38.933843],[102.017345,38.923843],[102.027345,38.923843],[102.027345,38.913843],[102.037345,38.913843],[102.037345,38.9038430000001],[102.047345,38.9038430000001],[102.057345,38.9038430000001],[102.057345,38.893843],[102.067345,38.893843],[102.060125761719,38.8848281074219],[102.001790800781,38.8493959785157],[101.972899199219,38.8282900214844],[101.934034453125,38.8046840644531],[101.880189238281,38.7374452949219],[101.781517363281,38.6653676582032],[101.721790800781,38.6782900214845],[101.672542753906,38.6923537421876],[101.641790800781,38.6793959785157],[101.612899199219,38.6582900214844],[101.597345,38.653843],[101.564637480469,38.710571515625],[101.47197390625,38.7384706855469],[101.45271609375,38.7492153144531],[101.415767851563,38.7657021308594],[101.33197390625,38.7784706855469],[101.30271609375,38.7912404609376],[101.332017851563,38.8164833808594],[101.34197390625,38.8447573066406],[101.243968535156,38.8596913886719],[101.23232546875,38.9109365058594],[101.199288359375,38.9394008613281],[101.21271609375,38.9884706855469],[101.217345,39.0138430000001]]]]}},{"type":"Feature","properties":{"name":"额济纳旗"},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.1793298632814,42.5901149726563],[99.5026135546876,42.5665273261719],[99.9453943164064,42.6439846015625],[100.260960722656,42.637544171875],[100.324386015625,42.6887429023438],[100.856685820313,42.6718093085938],[101.549517851563,42.5299037910157],[101.798382597656,42.5028652167969],[102.089171171875,42.2220534492188],[102.442218046875,42.1457875800782],[102.544261503906,42.16069846875],[102.714957304688,42.1487673164063],[102.912244902344,42.0687429023438],[102.927345,42.0638430000001],[102.903956328125,41.9069948554688],[103.010965605469,41.7403310371094],[103.022586699219,41.582778546875],[103.061773710938,41.4182717109375],[103.102154570313,41.3808559394531],[103.001510039063,41.2885390449219],[102.76830203125,41.16702659375],[102.642015410156,41.0801259589844],[102.484442167969,40.9967458320313],[102.268082304688,40.8946376777344],[102.004615507813,40.74999534375],[101.938836699219,40.7075197578126],[101.783470488281,40.5353676582031],[101.642740507813,40.5048195625],[101.530870390625,40.4190334296876],[101.402154570313,40.4286525703126],[101.258880644531,40.4732875800782],[101.068924589844,40.4512831855469],[100.887786894531,40.4441042304687],[100.670067167969,40.5204128242188],[100.492154570313,40.5090334296875],[100.328160429688,40.4052614570312],[100.222535429688,40.4190334296876],[100.167345,40.4238430000001],[100.172154570313,40.5390334296876],[100.232535429688,40.6086525703125],[100.242154570313,40.7004091621094],[100.134261503906,40.8411061835938],[100.069117460938,40.9014662910156],[99.6755408007813,40.9323049140626],[99.5598547656251,40.8435903144532],[99.1836633593751,40.8585012031251],[99.1665173632814,40.7508730292969],[99.1233362109376,40.7108620429688],[99.1010339648438,40.6763259101563],[99.0424963671876,40.6916640449219],[98.9844348437502,40.7815798164063],[98.8094250781251,40.7135573554688],[98.7825354296876,40.6968300605469],[98.8025500781251,40.6590065742188],[98.8007580859376,40.6138149238282],[98.6968518359377,40.6722292304688],[98.6659509570313,40.7698281074219],[98.5733850390626,40.7504616523437],[98.6245178515626,40.6761525703125],[98.3545666796877,40.5710329414063],[98.3424646289063,40.6092543769531],[98.3325354296876,40.9090334296875],[98.3273450000001,40.913843],[98.3190735156251,40.9224513984375],[98.2514709765626,40.938930890625],[98.1909045703126,40.9799880195313],[98.1216565234376,41.0135829902344],[97.9799158007814,41.091294171875],[97.6413220507814,41.4200331855469],[97.6140759570314,41.4761916328125],[97.8455774218751,41.655335919922],[97.7322449023439,41.8487429023437],[97.6624450976564,41.9689430976563],[97.5578894335939,42.1461257148438],[97.3547937304689,42.4810317207032],[97.1826672656252,42.7774440742187],[97.1773450000001,42.7938430000001],[97.5014099414063,42.7502492500001],[98.1992859179689,42.6528798652344],[98.5233117968751,42.6384596992188],[99.1793298632814,42.5901149726563]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"皇姑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.4311340625,41.8491274238282],[123.437345,41.823843],[123.437345,41.813843],[123.427345,41.813843],[123.410704375,41.8104836250001],[123.397345,41.8038430000001],[123.393985625,41.8104836250001],[123.360704375,41.8172023750001],[123.347345,41.823843],[123.354796171875,41.8388283515626],[123.3458215625,41.8572023750001],[123.373985625,41.8504836250001],[123.3841028125,41.830483625],[123.403985625,41.837202375],[123.410704375,41.880483625],[123.447345,41.883843],[123.4311340625,41.8491274238282]]]]}},{"type":"Feature","properties":{"name":"大东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.494439726563,41.7767494941407],[123.477345,41.773843],[123.45170046875,41.8081996894532],[123.447345,41.823843],[123.46062625,41.83056175],[123.467345,41.843843],[123.528033476563,41.8407534003907],[123.504581328125,41.8146181464844],[123.51716921875,41.7971450019532],[123.494439726563,41.7767494941407]]],[[[123.501685820313,41.8903041816407],[123.504801054688,41.8597695136719],[123.467345,41.8738430000001],[123.479107695313,41.88800315625],[123.501685820313,41.8903041816407]]]]}},{"type":"Feature","properties":{"name":"东陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.467345,41.8738430000001],[123.504801054688,41.8597695136719],[123.501685820313,41.8903041816407],[123.479107695313,41.88800315625],[123.447345,41.883843],[123.447345,41.903843],[123.472760039063,41.8976003242188],[123.497261992188,41.9135561347656],[123.55326296875,41.9279274726563],[123.595987578125,41.9458730292969],[123.640230742188,41.9359548164063],[123.681300078125,41.9626967597657],[123.717345,41.9538430000001],[123.722896757813,41.9492336250001],[123.721803007813,41.9385207343751],[123.7358215625,41.9140456367188],[123.722808867188,41.8983803535157],[123.711324492188,41.888843],[123.74076296875,41.8643910957031],[123.712808867188,41.8483803535156],[123.67166140625,41.8305361152344],[123.673834257813,41.809233625],[123.652808867188,41.7917678046875],[123.703414335938,41.7728810859375],[123.777345,41.7938430000001],[123.770631132813,41.7642873359375],[123.807335234375,41.7018447089844],[123.791793242188,41.6893959785157],[123.781632109375,41.6652834296875],[123.747940703125,41.6383058906251],[123.757345,41.6138430000001],[123.678761015625,41.6083901191407],[123.642345,41.6098342109376],[123.612345,41.6086452460937],[123.602345,41.6090407539063],[123.592174101563,41.608637921875],[123.549327421875,41.6381215644531],[123.509595976563,41.6170961738282],[123.452535429688,41.6290334296875],[123.382154570313,41.6386525703125],[123.362535429688,41.6501210761719],[123.401475859375,41.6862026191407],[123.359971953125,41.6993434882813],[123.322408476563,41.6978542304688],[123.317345,41.713843],[123.327345,41.713843],[123.327345,41.7238430000001],[123.35142703125,41.7397585273437],[123.367345,41.743843],[123.394635039063,41.7618776679688],[123.427345,41.753843],[123.45142703125,41.7697585273438],[123.477345,41.773843],[123.494439726563,41.7767494941407],[123.51716921875,41.7971450019532],[123.504581328125,41.8146181464844],[123.528033476563,41.8407534003907],[123.467345,41.843843],[123.467345,41.8738430000001]]]]}},{"type":"Feature","properties":{"name":"法库县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.627257109375,42.6394887519531],[123.65326296875,42.6297585273438],[123.66142703125,42.6079274726563],[123.68326296875,42.5997585273438],[123.693443632813,42.5725429511719],[123.727345,42.5638430000001],[123.730343046875,42.5568398261719],[123.760260039063,42.54937034375],[123.747345,42.543843],[123.707261992188,42.5335561347656],[123.68326296875,42.5179274726563],[123.647345,42.513843],[123.660894804688,42.5507350898438],[123.620113554688,42.5474587226563],[123.602345,42.5076381660157],[123.57662234375,42.5097048164062],[123.50271609375,42.4684706855469],[123.47197390625,42.4592153144532],[123.451236601563,42.4476454902344],[123.452955351563,42.4262404609375],[123.472926054688,42.4090358710937],[123.461749296875,42.3786098457032],[123.517345,42.343843],[123.523726835938,42.3286452460938],[123.51142703125,42.3097585273437],[123.50326296875,42.2779274726563],[123.473204375,42.2666811347656],[123.46326296875,42.2279274726563],[123.447550078125,42.2037990546876],[123.467345,42.1738430000001],[123.452623320313,42.1676601386719],[123.442345,42.1699636054688],[123.4141028125,42.1636330390626],[123.40326296875,42.1479274726562],[123.370548125,42.1356874824219],[123.337345,42.1438430000001],[123.331832304688,42.1509841132813],[123.30978640625,42.1477260566406],[123.292857695313,42.1696572089844],[123.250806914063,42.1634438300782],[123.25677859375,42.203843],[123.22170046875,42.2181996894532],[123.210806914063,42.2323110175781],[123.176485625,42.2272377753906],[123.11654421875,42.2716799140625],[123.082345,42.266626203125],[123.05978640625,42.2699599433594],[123.041275664063,42.2459804511719],[122.982486601563,42.2596034980469],[122.953883085938,42.2553762031251],[122.892271757813,42.2696535468751],[122.845826445313,42.2561110664063],[122.807345,42.2617983222656],[122.755611601563,42.2541542792969],[122.747345,42.283843],[122.752061796875,42.2891237617187],[122.793189726563,42.3079994941406],[122.849268828125,42.3384743476563],[122.902003203125,42.3507436347657],[122.882061796875,42.3685622382813],[122.856236601563,42.3974672675782],[122.821715117188,42.4133107734375],[122.822642851563,42.428843],[122.81822390625,42.5029628730469],[122.897877226563,42.4982155585938],[122.912061796875,42.5291237617188],[122.95197390625,42.5474416328126],[122.967345,42.573843],[122.990616484375,42.5650991035157],[123.032701445313,42.5693886542969],[123.094976835938,42.5201039863281],[123.121954375,42.5173537421875],[123.139420195313,42.5383803535156],[123.192808867188,42.5293056464844],[123.212432890625,42.5180666328126],[123.261881132813,42.5593056464844],[123.287398710938,42.5703713203126],[123.332808867188,42.5983803535157],[123.342769804688,42.6213478828126],[123.45755984375,42.6096474433594],[123.506627226563,42.6377504707032],[123.522345,42.6393520332031],[123.542345,42.6373146796875],[123.567345,42.6398622871094],[123.582667265625,42.6383010078126],[123.601881132813,42.6493056464844],[123.617345,42.653843],[123.627257109375,42.6394887519531]]]]}},{"type":"Feature","properties":{"name":"和平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.418048125,41.7917031074219],[123.427345,41.753843],[123.394635039063,41.7618776679688],[123.367345,41.743843],[123.367345,41.7638430000001],[123.373985625,41.767202375],[123.390704375,41.800483625],[123.397345,41.8038430000001],[123.410704375,41.8104836250001],[123.427345,41.813843],[123.418048125,41.7917031074219]]]]}},{"type":"Feature","properties":{"name":"康平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.59361453125,42.7781728339844],[123.576925078125,42.7666469550782],[123.558409453125,42.7225661445313],[123.573565703125,42.6992897773438],[123.57107546875,42.6881728339844],[123.58361453125,42.6795131660156],[123.58037234375,42.6650380683594],[123.6126184375,42.6722670722656],[123.617345,42.653843],[123.601881132813,42.6493056464844],[123.582667265625,42.6383010078126],[123.567345,42.6398622871094],[123.542345,42.6373146796875],[123.522345,42.6393520332031],[123.506627226563,42.6377504707032],[123.45755984375,42.6096474433594],[123.342769804688,42.6213478828126],[123.332808867188,42.5983803535157],[123.287398710938,42.5703713203126],[123.261881132813,42.5593056464844],[123.212432890625,42.5180666328126],[123.192808867188,42.5293056464844],[123.139420195313,42.5383803535156],[123.121954375,42.5173537421875],[123.094976835938,42.5201039863281],[123.032701445313,42.5693886542969],[122.990616484375,42.5650991035157],[122.967345,42.573843],[122.92166140625,42.5823696113281],[122.9226575,42.5990956855469],[122.910220976563,42.6102065253907],[122.863101835938,42.6073976875],[122.852628203125,42.6191237617188],[122.842061796875,42.6285622382813],[122.823609648438,42.6492165351563],[122.812345,42.6485451484375],[122.802345,42.6491408515626],[122.79209109375,42.6485305],[122.774429960938,42.668296125],[122.743468046875,42.6825075507813],[122.78709109375,42.7214870429688],[122.837345,42.7138430000001],[122.859556914063,42.7316310859375],[122.888472929688,42.767739484375],[122.919210234375,42.7715627265626],[122.956143828125,42.7498537421875],[122.975513945313,42.7740456367188],[123.027345,42.7675991035156],[123.042345,42.7694643378907],[123.052706328125,42.7681764960938],[123.09068484375,42.7905019355469],[123.152896757813,42.8082900214844],[123.181793242188,42.8193959785157],[123.216685820313,42.8293727851563],[123.167960234375,42.8499050117188],[123.181793242188,42.9293959785157],[123.192896757813,42.9382900214844],[123.201793242188,42.9493959785156],[123.222896757813,42.9582900214844],[123.247281523438,42.9887392402344],[123.343599882813,43.002759015625],[123.432896757813,43.0282900214844],[123.463697539063,43.0401284003907],[123.512896757813,43.0193959785157],[123.531793242188,43.0082900214844],[123.557345,43.003843],[123.54580203125,42.9568471503906],[123.594132109375,42.9292629218751],[123.58060671875,42.9084950996094],[123.59408328125,42.8991909003906],[123.58060671875,42.8784950996094],[123.59408328125,42.8691909003907],[123.580831328125,42.848843],[123.593565703125,42.8292897773438],[123.587862578125,42.803843],[123.59361453125,42.7781728339844]]]]}},{"type":"Feature","properties":{"name":"辽中县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.627345,41.433843],[122.623922148438,41.4216506171875],[122.615152617188,41.4304201484376],[122.627345,41.433843]]],[[[122.597345,41.513843],[122.593922148438,41.5016506171875],[122.585152617188,41.5104201484376],[122.597345,41.513843]]],[[[122.957345,41.4938430000001],[122.945152617188,41.4904201484375],[122.953922148438,41.4816506171875],[122.98170046875,41.4870607734376],[122.952374296875,41.4677944160157],[122.931954375,41.4801100898438],[122.92298953125,41.4581996894532],[122.911514921875,41.4493422675782],[122.917345,41.4138430000001],[122.8519934375,41.4192751289063],[122.840328398438,41.3805434394531],[122.755670195313,41.3574990058594],[122.74271609375,41.3284706855469],[122.7119153125,41.3191970039063],[122.7127746875,41.3085195136719],[122.70197390625,41.2992153144531],[122.691715117188,41.2762221503907],[122.67197390625,41.2592153144531],[122.661300078125,41.2468288398438],[122.664068632813,41.2123659492188],[122.617345,41.203843],[122.607345,41.203843],[122.5976965625,41.2384938789063],[122.545748320313,41.2494557929688],[122.58298953125,41.2781996894532],[122.59306765625,41.3028212714844],[122.644068632813,41.3421877265625],[122.640362578125,41.3672658515625],[122.660592070313,41.4007997871094],[122.642345,41.3981044746094],[122.630284453125,41.3998867011719],[122.634483671875,41.4283315253907],[122.627345,41.433843],[122.6216028125,41.4688088203125],[122.623082304688,41.478843],[122.621607695313,41.4888430000001],[122.624195585938,41.5063661933594],[122.597345,41.513843],[122.593170195313,41.5296681953125],[122.537447539063,41.5408388496095],[122.512345,41.5358791328125],[122.489678984375,41.5403578925782],[122.4934778125,41.5595864082032],[122.477345,41.5638430000001],[122.470147734375,41.579575421875],[122.483624296875,41.5875649238282],[122.491065703125,41.6101210761719],[122.516666289063,41.641264875],[122.504498320313,41.6766884589844],[122.532345,41.6671254707032],[122.54642703125,41.6719606757813],[122.540445585938,41.6893679023438],[122.563624296875,41.7175649238282],[122.571065703125,41.7501210761719],[122.583624296875,41.7575649238281],[122.587345,41.7638430000001],[122.617769804688,41.7835720039063],[122.661119414063,41.750952375],[122.703077421875,41.7395778632813],[122.722818632813,41.7130385566407],[122.754547148438,41.7366396308594],[122.775733671875,41.7651235175782],[122.833077421875,41.7495778632813],[122.86205203125,41.7379311347657],[122.9148840625,41.7470278144532],[122.972345,41.7114650703125],[123.001612578125,41.7295778632813],[123.017345,41.733843],[123.026451445313,41.7121608710938],[123.016803007813,41.6691152167969],[123.05326296875,41.6597585273437],[123.085323515625,41.6121413398438],[123.097345,41.6038430000001],[123.08142703125,41.5797585273438],[123.07326296875,41.5579274726563],[123.043082304688,41.5466347480469],[123.01435671875,41.5050295234375],[122.980167265625,41.5126943183594],[122.96142703125,41.4997585273438],[122.957345,41.4938430000001]]]]}},{"type":"Feature","properties":{"name":"沈北新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.532896757813,42.1693959785157],[123.543761015625,42.1436220527344],[123.641793242188,42.0982900214844],[123.69375125,42.0892482734376],[123.742896757813,42.0593959785157],[123.754610625,42.044770734375],[123.811793242188,42.0518837714844],[123.798350859375,42.0162294746094],[123.76318484375,42.0206044746094],[123.761676054688,42.0084706855469],[123.777345,41.9838430000001],[123.777345,41.973843],[123.728463164063,41.9677297187501],[123.717345,41.9538430000001],[123.681300078125,41.9626967597657],[123.640230742188,41.9359548164063],[123.595987578125,41.9458730292969],[123.55326296875,41.9279274726563],[123.497261992188,41.9135561347656],[123.472760039063,41.8976003242188],[123.447345,41.903843],[123.369185820313,41.9084438300782],[123.37431765625,41.9497109199219],[123.362345,41.9482216621094],[123.348472929688,41.949946515625],[123.328453398438,41.9749489570313],[123.269635039063,42.0220497871095],[123.274156523438,42.0583901191407],[123.267345,42.0638430000001],[123.326104765625,42.1341591621094],[123.337345,42.1438430000001],[123.370548125,42.1356874824219],[123.40326296875,42.1479274726562],[123.4141028125,42.1636330390626],[123.442345,42.1699636054688],[123.452623320313,42.1676601386719],[123.467345,42.1738430000001],[123.482896757813,42.1782900214844],[123.516173125,42.1978493476563],[123.532896757813,42.1693959785157]]]]}},{"type":"Feature","properties":{"name":"沈河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.45142703125,41.7697585273438],[123.427345,41.753843],[123.418048125,41.7917031074219],[123.427345,41.813843],[123.437345,41.813843],[123.437345,41.823843],[123.447345,41.823843],[123.45170046875,41.8081996894532],[123.477345,41.773843],[123.45142703125,41.7697585273438]]]]}},{"type":"Feature","properties":{"name":"苏家屯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.317345,41.713843],[123.322408476563,41.6978542304688],[123.359971953125,41.6993434882813],[123.401475859375,41.6862026191407],[123.362535429688,41.6501210761719],[123.382154570313,41.6386525703125],[123.452535429688,41.6290334296875],[123.509595976563,41.6170961738282],[123.549327421875,41.6381215644531],[123.592174101563,41.608637921875],[123.602345,41.6090407539063],[123.612345,41.6086452460937],[123.642345,41.6098342109376],[123.678761015625,41.6083901191407],[123.757345,41.6138430000001],[123.79125125,41.5948622871094],[123.717296171875,41.5678786445313],[123.737345,41.523843],[123.728756132813,41.5114003730469],[123.711900664063,41.507622296875],[123.692789335938,41.5200637031251],[123.682345,41.5177223945313],[123.662345,41.5222060371094],[123.642345,41.5177223945313],[123.628258085938,41.5208803535157],[123.587345,41.4938430000001],[123.543707304688,41.4868080878907],[123.522345,41.4894643378906],[123.505318632813,41.4873464179688],[123.469210234375,41.4661232734375],[123.442345,41.4694643378907],[123.431954375,41.4681728339844],[123.402896757813,41.4893959785157],[123.350045195313,41.5116664863281],[123.321983671875,41.5081764960937],[123.293453398438,41.5249489570313],[123.231793242188,41.5382900214844],[123.210699492188,41.5646315742188],[123.182896757813,41.5482900214844],[123.138697539063,41.5296645332031],[123.122896757813,41.5493959785156],[123.103355742188,41.5650453925781],[123.128487578125,41.607798078125],[123.107345,41.6138430000001],[123.1224621875,41.6334267402344],[123.18298953125,41.6581996894532],[123.20170046875,41.6694863105469],[123.22298953125,41.6781996894532],[123.232857695313,41.6909841132813],[123.267086210938,41.6859255195313],[123.283160429688,41.6983315253907],[123.281514921875,41.7094643378907],[123.317345,41.713843]]],[[[123.317345,41.713843],[123.317345,41.7238430000001],[123.327345,41.7238430000001],[123.327345,41.713843],[123.317345,41.713843]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.373985625,41.767202375],[123.367345,41.7638430000001],[123.30298953125,41.7747756171875],[123.312955351563,41.8373622871094],[123.347345,41.823843],[123.360704375,41.8172023750001],[123.393985625,41.8104836250001],[123.397345,41.8038430000001],[123.390704375,41.800483625],[123.373985625,41.767202375]]]]}},{"type":"Feature","properties":{"name":"新民市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.467345,42.033843],[122.479537382813,42.0372658515625],[122.470767851563,42.0460353828126],[122.460523710938,42.0370217109375],[122.454166289063,42.0506642890625],[122.438873320313,42.0577895332032],[122.445816679688,42.0698964667969],[122.426612578125,42.078843],[122.448077421875,42.088843],[122.428873320313,42.0977895332032],[122.440338164063,42.1177895332031],[122.427345,42.123843],[122.432061796875,42.1391237617187],[122.463199492188,42.1487380195313],[122.600264921875,42.2059206367188],[122.620787382813,42.2288857246094],[122.672628203125,42.2385622382813],[122.729610625,42.2783669257813],[122.747345,42.283843],[122.755611601563,42.2541542792969],[122.807345,42.2617983222656],[122.845826445313,42.2561110664063],[122.892271757813,42.2696535468751],[122.953883085938,42.2553762031251],[122.982486601563,42.2596034980469],[123.041275664063,42.2459804511719],[123.05978640625,42.2699599433594],[123.082345,42.266626203125],[123.11654421875,42.2716799140625],[123.176485625,42.2272377753906],[123.210806914063,42.2323110175781],[123.22170046875,42.2181996894532],[123.25677859375,42.203843],[123.250806914063,42.1634438300782],[123.292857695313,42.1696572089844],[123.30978640625,42.1477260566406],[123.331832304688,42.1509841132813],[123.337345,42.1438430000001],[123.326104765625,42.1341591621094],[123.267345,42.0638430000001],[123.252154570313,42.0590334296876],[123.218482695313,42.0358632636719],[123.202535429688,42.0186525703125],[123.182154570313,42.0090334296875],[123.159654570313,41.9971279121094],[123.142535429688,41.9786525703125],[123.132154570313,41.9690334296875],[123.122535429688,41.9586525703126],[123.108468046875,41.9456179023438],[123.122550078125,41.9190065742188],[123.121749296875,41.898843],[123.142808867188,41.8889052558594],[123.132139921875,41.8790200019532],[123.132545195313,41.8688430000001],[123.132110625,41.8579579902345],[123.152535429688,41.8390334296875],[123.163472929688,41.81585471875],[123.151822539063,41.7264809394532],[123.017345,41.733843],[123.001612578125,41.7295778632813],[122.972345,41.7114650703125],[122.9148840625,41.7470278144532],[122.86205203125,41.7379311347657],[122.833077421875,41.7495778632813],[122.775733671875,41.7651235175782],[122.754547148438,41.7366396308594],[122.722818632813,41.7130385566407],[122.703077421875,41.7395778632813],[122.661119414063,41.750952375],[122.617769804688,41.7835720039063],[122.587345,41.7638430000001],[122.583077421875,41.7695778632813],[122.561612578125,41.7781081367188],[122.55291140625,41.7898012519532],[122.54177859375,41.7878847480469],[122.533077421875,41.7995778632813],[122.503839140625,41.8213271308594],[122.461612578125,41.8381081367188],[122.453077421875,41.8795778632813],[122.433756132813,41.8939528632812],[122.453526640625,41.9081081367188],[122.518140898438,41.8969838691406],[122.501612578125,41.9381081367188],[122.483077421875,42.0095778632813],[122.467345,42.033843]]]]}},{"type":"Feature","properties":{"name":"于洪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.447345,41.883843],[123.467345,41.8738430000001],[123.467345,41.843843],[123.46062625,41.83056175],[123.447345,41.823843],[123.437345,41.823843],[123.4311340625,41.8491274238282],[123.447345,41.883843]]],[[[123.447345,41.883843],[123.410704375,41.880483625],[123.403985625,41.837202375],[123.3841028125,41.830483625],[123.373985625,41.8504836250001],[123.3458215625,41.8572023750001],[123.354796171875,41.8388283515626],[123.347345,41.823843],[123.312955351563,41.8373622871094],[123.30298953125,41.7747756171875],[123.367345,41.7638430000001],[123.367345,41.743843],[123.35142703125,41.7397585273437],[123.327345,41.7238430000001],[123.317345,41.7238430000001],[123.317345,41.713843],[123.281514921875,41.7094643378907],[123.283160429688,41.6983315253907],[123.267086210938,41.6859255195313],[123.232857695313,41.6909841132813],[123.22298953125,41.6781996894532],[123.20170046875,41.6694863105469],[123.18298953125,41.6581996894532],[123.1224621875,41.6334267402344],[123.107345,41.6138430000001],[123.107345,41.6038430000001],[123.097345,41.6038430000001],[123.085323515625,41.6121413398438],[123.05326296875,41.6597585273437],[123.016803007813,41.6691152167969],[123.026451445313,41.7121608710938],[123.017345,41.733843],[123.151822539063,41.7264809394532],[123.163472929688,41.81585471875],[123.152535429688,41.8390334296875],[123.132110625,41.8579579902345],[123.132545195313,41.8688430000001],[123.132139921875,41.8790200019532],[123.142808867188,41.8889052558594],[123.121749296875,41.898843],[123.122550078125,41.9190065742188],[123.108468046875,41.9456179023438],[123.122535429688,41.9586525703126],[123.132154570313,41.9690334296875],[123.142535429688,41.9786525703125],[123.159654570313,41.9971279121094],[123.182154570313,42.0090334296875],[123.202535429688,42.0186525703125],[123.218482695313,42.0358632636719],[123.252154570313,42.0590334296876],[123.267345,42.0638430000001],[123.274156523438,42.0583901191407],[123.269635039063,42.0220497871095],[123.328453398438,41.9749489570313],[123.348472929688,41.949946515625],[123.362345,41.9482216621094],[123.37431765625,41.9497109199219],[123.369185820313,41.9084438300782],[123.447345,41.903843],[123.447345,41.883843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"西岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.617345,38.923843],[121.617345,38.933843],[121.637345,38.933843],[121.637345,38.923843],[121.617345,38.923843]]],[[[121.617345,38.933843],[121.604537382813,38.928843],[121.617345,38.923843],[121.63142703125,38.8979274726563],[121.644093046875,38.889184796875],[121.627345,38.8638430000001],[121.610704375,38.867202375],[121.597345,38.873843],[121.59326296875,38.9197585273437],[121.587345,38.9438430000001],[121.607345,38.9438430000001],[121.617345,38.9438430000001],[121.617345,38.933843]]],[[[121.637345,38.933843],[121.642345,38.9466506171875],[121.647345,38.933843],[121.637345,38.933843]]]]}},{"type":"Feature","properties":{"name":"中山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.717921171875,38.8961171699219],[121.693961210938,38.8683107734375],[121.6823059375,38.8692482734375],[121.627345,38.8638430000001],[121.644093046875,38.889184796875],[121.63142703125,38.8979274726563],[121.617345,38.923843],[121.637345,38.923843],[121.637345,38.933843],[121.647345,38.933843],[121.688521757813,38.9214455390625],[121.717921171875,38.8961171699219]]]]}},{"type":"Feature","properties":{"name":"庄河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.06072390625,39.457915265625],[123.077345,39.4338430000001],[123.04326296875,39.4425905585938],[123.06072390625,39.457915265625]]],[[[123.103922148438,39.5160353828125],[123.107345,39.503843],[123.095152617188,39.5072658515625],[123.103922148438,39.5160353828125]]],[[[123.00687625,39.5561940742187],[123.02341921875,39.5287746406251],[122.997345,39.493843],[122.969581328125,39.4985597968751],[122.947623320313,39.5349623847657],[122.972345,39.5498744941407],[122.992579375,39.5376699042969],[123.00687625,39.5561940742187]]],[[[123.287345,39.773843],[123.28334109375,39.7965688300781],[123.274346953125,39.7794045234375],[123.280709257813,39.7512245917969],[123.252345,39.7483339667969],[123.232808867188,39.7503249335938],[123.241881132813,39.7383803535157],[123.271314726563,39.713930890625],[123.272901640625,39.6983937812501],[123.211881132813,39.6893056464844],[123.202808867188,39.6783803535156],[123.151881132813,39.6693056464844],[123.140206328125,39.6552516914063],[123.09834109375,39.6709828925781],[123.072345,39.6683339667969],[123.061265898438,39.6694631171875],[122.98091921875,39.6591823554688],[122.995474882813,39.6470900703126],[122.962808867188,39.6283803535156],[122.8854309375,39.6168556953125],[122.8058215625,39.5870351386719],[122.741881132813,39.5593056464844],[122.722808867188,39.5483803535157],[122.701881132813,39.5393056464844],[122.672398710938,39.5180849433594],[122.647530546875,39.5323281074219],[122.629195585938,39.4900502753906],[122.612345,39.4883339667969],[122.601954375,39.4893923164063],[122.590206328125,39.4752516914063],[122.567345,39.483843],[122.551881132813,39.4883803535156],[122.532808867188,39.4993056464844],[122.496671171875,39.5149770332031],[122.512808867188,39.5283803535157],[122.543941679688,39.5658620429688],[122.5814465625,39.5821279121094],[122.561793242188,39.5984523750001],[122.563092070313,39.6111550117188],[122.603233671875,39.6285646796876],[122.591881132813,39.6483803535157],[122.578267851563,39.6947682929688],[122.561881132813,39.7083803535156],[122.545455351563,39.7281569648438],[122.484185820313,39.7547292304688],[122.504268828125,39.8449526191407],[122.501793242188,39.869233625],[122.524381132813,39.8879958320313],[122.511793242188,39.8984523750001],[122.513834257813,39.918452375],[122.507345,39.923843],[122.521173125,39.9404909492188],[122.556881132813,39.9368520332032],[122.534879179688,39.987583234375],[122.5132434375,40.0055580878906],[122.543233671875,40.0185646796876],[122.525836210938,40.0489394355469],[122.692301054688,40.0693569160156],[122.702691679688,40.0682973457032],[122.7576575,40.1078554511719],[122.772345,40.1093520332032],[122.799644804688,40.1065700507813],[122.822022734375,40.1193849921876],[122.838189726563,40.1177370429688],[122.862105742188,40.1728774238281],[122.887345,40.1938430000001],[122.89978640625,40.1777260566406],[122.930123320313,40.1822096992188],[122.94312625,40.1491347480469],[122.940982695313,40.1346108222656],[122.9831653125,40.1093825507813],[122.98045046875,40.0910182929688],[123.00170046875,40.0781996894532],[123.02298953125,40.0694863105469],[123.036549101563,40.0519155097657],[123.073883085938,40.0463991523438],[123.092857695313,40.0709841132813],[123.112345,40.0681044746094],[123.13369265625,40.0712587714844],[123.20298953125,40.0594863105469],[123.2310559375,40.0425551582031],[123.26298953125,40.0294863105469],[123.283922148438,40.0168593574219],[123.313219023438,40.0211891914063],[123.372686796875,39.9978115058594],[123.38170046875,40.0094863105469],[123.397345,40.0138430000001],[123.392652617188,39.9848146796875],[123.37080203125,39.9691518378906],[123.383170195313,39.9496681953125],[123.391636992188,39.9277150703126],[123.407447539063,39.9308388496094],[123.479879179688,39.9163185859375],[123.48341921875,39.8984096503907],[123.465201445313,39.8697145820313],[123.493453398438,39.8494631171875],[123.48968875,39.8304128242187],[123.513170195313,39.7996681953125],[123.517345,39.7838430000001],[123.481793242188,39.7793959785157],[123.472896757813,39.7682900214844],[123.461666289063,39.7592958808594],[123.46302859375,39.7483364082032],[123.409303007813,39.7293959785157],[123.412965117188,39.758843],[123.408912382813,39.7914296699219],[123.31291140625,39.7640163398438],[123.287345,39.773843]],[[123.095152617188,39.6972658515625],[123.107345,39.693843],[123.103922148438,39.7060353828125],[123.095152617188,39.6972658515625]]]]}},{"type":"Feature","properties":{"name":"长海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.717345,39.033843],[122.74517703125,39.0312636542969],[122.759888945313,39.0160305000001],[122.719888945313,39.0163869453125],[122.717345,39.033843]]],[[[122.717345,39.033843],[122.705152617188,39.0372658515626],[122.713922148438,39.0460353828125],[122.717345,39.033843]]],[[[122.831910429688,39.0565395332032],[122.837345,39.043843],[122.814346953125,39.047895734375],[122.831910429688,39.0565395332032]]],[[[122.863922148438,39.0660353828125],[122.867345,39.0538430000001],[122.855152617188,39.0572658515625],[122.863922148438,39.0660353828125]]],[[[122.803922148438,39.0860353828125],[122.807345,39.073843],[122.795152617188,39.0772658515626],[122.803922148438,39.0860353828125]]],[[[123.198643828125,39.0546181464844],[123.16406375,39.03712425],[123.157345,39.023843],[123.143985625,39.0306008125],[123.151026640625,39.0619277167969],[123.170704375,39.0523183417969],[123.163985625,39.0704836250001],[123.133985625,39.0791408515625],[123.172974882813,39.0869313789063],[123.198643828125,39.0546181464844]]],[[[122.423922148438,39.1760353828125],[122.427345,39.163843],[122.415152617188,39.1672658515625],[122.423922148438,39.1760353828125]]],[[[122.403922148438,39.1860353828126],[122.407345,39.1738430000001],[122.395152617188,39.1772658515625],[122.403922148438,39.1860353828126]]],[[[122.377345,39.2038430000001],[122.384918242188,39.1683913398438],[122.36259890625,39.1697219062501],[122.335260039063,39.1391237617188],[122.313375273438,39.1713613105469],[122.332628203125,39.1885622382813],[122.342061796875,39.1991237617188],[122.377345,39.2038430000001]]],[[[122.303922148438,39.2060353828125],[122.307345,39.193843],[122.295152617188,39.1972658515625],[122.303922148438,39.2060353828125]]],[[[122.697345,39.213843],[122.693922148438,39.2016506171875],[122.685152617188,39.2104201484375],[122.697345,39.213843]]],[[[122.377345,39.2038430000001],[122.380767851563,39.2160353828125],[122.389537382813,39.2072658515625],[122.377345,39.2038430000001]]],[[[122.603922148438,39.2260353828126],[122.607345,39.213843],[122.595152617188,39.2172658515625],[122.603922148438,39.2260353828126]]],[[[122.773922148438,39.2360353828125],[122.777345,39.223843],[122.765152617188,39.2272658515626],[122.773922148438,39.2360353828125]]],[[[122.431910429688,39.2365395332031],[122.437345,39.223843],[122.414346953125,39.2278957343751],[122.431910429688,39.2365395332031]]],[[[122.538365507813,39.2368520332031],[122.547345,39.223843],[122.48326296875,39.2285243964844],[122.538365507813,39.2368520332031]]],[[[122.697345,39.213843],[122.691358671875,39.23534690625],[122.632940703125,39.2267140937501],[122.62298953125,39.2386562324219],[122.723053007813,39.2481996894532],[122.75170046875,39.2230763984375],[122.697345,39.213843]]],[[[122.443922148438,39.2660353828126],[122.447345,39.253843],[122.435152617188,39.2572658515625],[122.443922148438,39.2660353828126]]],[[[123.003922148438,39.2660353828126],[123.007345,39.253843],[122.995152617188,39.2572658515625],[123.003922148438,39.2660353828126]]],[[[122.683922148438,39.2760353828125],[122.687345,39.263843],[122.675152617188,39.2672658515626],[122.683922148438,39.2760353828125]]],[[[122.663892851563,39.2703932929688],[122.667345,39.253843],[122.653892851563,39.2603932929688],[122.603892851563,39.2683974433594],[122.630513945313,39.2872927070313],[122.663892851563,39.2703932929688]]],[[[122.4849621875,39.2995034003907],[122.522345,39.2987404609375],[122.551344023438,39.2993325019531],[122.594698515625,39.2709084296876],[122.58224734375,39.2589430976563],[122.577345,39.253843],[122.57224734375,39.2587429023438],[122.56244265625,39.2689430976563],[122.4849621875,39.2995034003907]]]]}},{"type":"Feature","properties":{"name":"甘井子区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.497345,38.8238430000001],[121.509537382813,38.8204201484375],[121.500767851563,38.8116506171876],[121.497345,38.8238430000001]]],[[[121.497345,38.8238430000001],[121.467345,38.8238430000001],[121.461705351563,38.8486818671875],[121.463248320313,38.8611074042969],[121.413599882813,38.9008644843751],[121.390079375,38.8979396796876],[121.372896757813,38.9193959785156],[121.319815703125,38.9516384101563],[121.282174101563,38.9469557929688],[121.277345,38.963843],[121.283883085938,38.9723110175782],[121.31673953125,38.9674550605469],[121.347877226563,38.9801992011719],[121.33298953125,38.9994863105469],[121.3191028125,39.0102065253906],[121.34170046875,39.0394863105469],[121.36298953125,39.0481996894532],[121.375767851563,39.0647536445313],[121.412857695313,39.0167018867188],[121.432345,39.0195815253907],[121.442345,39.0181044746094],[121.452345,39.0195815253907],[121.46673953125,39.0174550605469],[121.5036340625,39.0325551582032],[121.53170046875,39.049486310547],[121.57298953125,39.0581996894532],[121.618365507813,39.0760390449219],[121.64170046875,39.0794863105469],[121.647345,39.083843],[121.652345,39.0710353828126],[121.657345,39.083843],[121.667345,39.083843],[121.693985625,39.080483625],[121.717345,39.033843],[121.72170046875,39.0281996894532],[121.75170046875,39.0159206367188],[121.738516875,39.0042360664063],[121.644029570313,39.0181996894532],[121.638507109375,38.9975368476563],[121.659854765625,39.0006911445313],[121.6631653125,38.9782973457031],[121.61170046875,38.9494863105469],[121.607345,38.9438430000001],[121.587345,38.9438430000001],[121.546417265625,38.9391884589844],[121.530972929688,38.8790138984376],[121.537345,38.8638430000001],[121.527266875,38.843921125],[121.500704375,38.830483625],[121.497345,38.8238430000001]]],[[[121.163922148438,39.0960353828125],[121.167345,39.083843],[121.155152617188,39.0872658515625],[121.163922148438,39.0960353828125]]]]}},{"type":"Feature","properties":{"name":"金州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.833619414063,38.889380109375],[121.827345,38.8638430000001],[121.81326296875,38.8735671210937],[121.825553007813,38.8979274726563],[121.833619414063,38.889380109375]]],[[[121.913922148438,39.0360353828126],[121.917345,39.023843],[121.905152617188,39.0272658515625],[121.913922148438,39.0360353828126]]],[[[121.657345,39.083843],[121.652345,39.0710353828126],[121.647345,39.083843],[121.652345,39.0966506171875],[121.657345,39.083843]]],[[[121.477345,39.193843],[121.473922148438,39.1816506171875],[121.465152617188,39.1904201484376],[121.477345,39.193843]]],[[[121.573922148438,39.1960353828125],[121.577345,39.183843],[121.565152617188,39.1872658515626],[121.573922148438,39.1960353828125]]],[[[121.477345,39.193843],[121.480767851563,39.2060353828125],[121.489537382813,39.1972658515625],[121.477345,39.193843]]],[[[121.597345,39.193843],[121.585152617188,39.1972658515625],[121.593922148438,39.2060353828125],[121.597345,39.193843]]],[[[121.493922148438,39.2260353828126],[121.497345,39.213843],[121.485152617188,39.2172658515625],[121.493922148438,39.2260353828126]]],[[[121.597345,39.253843],[121.607345,39.253843],[121.602345,39.2410353828125],[121.597345,39.253843]]],[[[122.293922148438,39.2760353828125],[122.297345,39.263843],[122.285152617188,39.2672658515626],[122.293922148438,39.2760353828125]]],[[[121.677345,39.303843],[121.665152617188,39.3072658515626],[121.673922148438,39.3160353828125],[121.677345,39.303843]]],[[[121.597345,39.193843],[121.610299101563,39.2038430000001],[121.584595976563,39.2236818671875],[121.622803984375,39.2180361152344],[121.64170046875,39.2346096015625],[121.607345,39.253843],[121.602345,39.2666506171876],[121.597345,39.253843],[121.5832434375,39.2655580878907],[121.616436796875,39.2799550605469],[121.652345,39.2762953925782],[121.686392851563,39.2797646308594],[121.677345,39.303843],[121.719996367188,39.2933669257813],[121.723468046875,39.308843],[121.721221953125,39.3188430000001],[121.723468046875,39.328843],[121.720714140625,39.3411208320313],[121.73298953125,39.3739321113281],[121.747345,39.383843],[121.75142703125,39.3779274726563],[121.809820585938,39.3629433417969],[121.817345,39.373843],[121.827345,39.373843],[121.857345,39.373843],[121.865465117188,39.3475392890626],[121.912076445313,39.3503176093751],[121.922076445313,39.3285292792969],[121.932345,39.3291408515626],[121.947345,39.328247296875],[121.962345,39.3291408515626],[121.972345,39.3285451484375],[121.982345,39.3291408515626],[122.002345,39.3279494453126],[122.0431653125,39.3303823066407],[122.132237578125,39.3185390449219],[122.142545195313,39.3191530585938],[122.172154570313,39.3085280585938],[122.247345,39.313843],[122.26197390625,39.3012404609375],[122.23271609375,39.2784706855469],[122.172867460938,39.2557595039063],[122.11170046875,39.2118398261719],[122.112877226563,39.1972243476563],[122.090582304688,39.1780165839844],[122.139952421875,39.1559853339844],[122.071363554688,39.1177162910157],[122.03271609375,39.1208217597656],[122.04197390625,39.0984706855469],[122.064527617188,39.0666591621094],[121.992022734375,39.0724843574219],[121.9585559375,39.0336403632812],[121.892535429688,39.0704750800781],[121.88271609375,39.0484706855469],[121.83271609375,39.0371120429688],[121.842003203125,39.0184133125],[121.858858671875,39.0197682929688],[121.891734648438,38.9914455390625],[121.894244414063,38.960200421875],[121.831646757813,38.9551711250001],[121.8327746875,38.9691896796875],[121.807628203125,38.9804091621094],[121.791920195313,39.0085646796875],[121.793331328125,39.0260927558594],[121.717345,39.033843],[121.693985625,39.080483625],[121.667345,39.083843],[121.68326296875,39.1079274726563],[121.69142703125,39.1329604316407],[121.65142703125,39.1479274726563],[121.637022734375,39.1687929511719],[121.60142703125,39.1779274726562],[121.597345,39.193843]]]]}},{"type":"Feature","properties":{"name":"旅顺口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.023922148438,38.8760353828125],[121.027345,38.8638430000001],[121.015152617188,38.8672658515625],[121.023922148438,38.8760353828125]]],[[[120.983922148438,38.9560353828126],[120.987345,38.9438430000001],[120.975152617188,38.9472658515625],[120.983922148438,38.9560353828126]]],[[[121.277345,38.963843],[121.282174101563,38.9469557929688],[121.319815703125,38.9516384101563],[121.372896757813,38.9193959785156],[121.390079375,38.8979396796876],[121.413599882813,38.9008644843751],[121.463248320313,38.8611074042969],[121.461705351563,38.8486818671875],[121.467345,38.8238430000001],[121.456490507813,38.8107753730469],[121.336959257813,38.8229592109375],[121.297730742188,38.7947267890625],[121.223209257813,38.8023220039062],[121.220640898438,38.7771401191407],[121.251881132813,38.7950331855469],[121.241119414063,38.7752870917969],[121.221881132813,38.7593056464844],[121.18865359375,38.7193056464844],[121.140347929688,38.7286782050781],[121.11142703125,38.7791725898438],[121.148741484375,38.7901222968751],[121.132808867188,38.8093056464844],[121.11318484375,38.8256056953125],[121.110816679688,38.848843],[121.114849882813,38.8884194160157],[121.082808867188,38.9023159003906],[121.097340117188,38.9295217109375],[121.147725859375,38.9583803535157],[121.182808867188,38.9493056464844],[121.207345,38.9352516914063],[121.244464140625,38.9565102363282],[121.271881132813,38.9593056464844],[121.277345,38.963843]]]]}},{"type":"Feature","properties":{"name":"普兰店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.343922148438,39.3460353828126],[122.347345,39.333843],[122.335152617188,39.3372658515626],[122.343922148438,39.3460353828126]]],[[[122.340767851563,39.9808266425782],[122.365889921875,39.9656728339844],[122.392345,39.9695815253907],[122.402345,39.9681044746094],[122.412735625,39.9696401191406],[122.43170046875,39.9581996894531],[122.45298953125,39.9494863105469],[122.47170046875,39.9381996894532],[122.507345,39.923843],[122.513834257813,39.918452375],[122.511793242188,39.8984523750001],[122.524381132813,39.8879958320313],[122.501793242188,39.869233625],[122.504268828125,39.8449526191407],[122.484185820313,39.7547292304688],[122.545455351563,39.7281569648438],[122.561881132813,39.7083803535156],[122.578267851563,39.6947682929688],[122.591881132813,39.6483803535157],[122.603233671875,39.6285646796876],[122.563092070313,39.6111550117188],[122.561793242188,39.5984523750001],[122.5814465625,39.5821279121094],[122.543941679688,39.5658620429688],[122.512808867188,39.5283803535157],[122.496671171875,39.5149770332031],[122.532808867188,39.4993056464844],[122.551881132813,39.4883803535156],[122.567345,39.483843],[122.56271609375,39.4584706855469],[122.55197390625,39.4492153144532],[122.526436796875,39.4195729804688],[122.512345,39.4184413886719],[122.49560671875,39.4197866035157],[122.377515898438,39.4077407050781],[122.304234648438,39.3618422675782],[122.29271609375,39.3484706855469],[122.25197390625,39.3192153144532],[122.247345,39.313843],[122.172154570313,39.3085280585938],[122.142545195313,39.3191530585938],[122.132237578125,39.3185390449219],[122.0431653125,39.3303823066407],[122.002345,39.3279494453126],[121.982345,39.3291408515626],[121.972345,39.3285451484375],[121.962345,39.3291408515626],[121.947345,39.328247296875],[121.932345,39.3291408515626],[121.922076445313,39.3285292792969],[121.912076445313,39.3503176093751],[121.865465117188,39.3475392890626],[121.857345,39.373843],[121.88142703125,39.3897585273438],[121.897345,39.3938430000001],[121.907345,39.3938430000001],[121.917345,39.3938430000001],[121.917345,39.4038430000001],[121.923648710938,39.4094753242188],[121.878761015625,39.4300783515625],[121.934718046875,39.5101918769531],[122.003272734375,39.5061061835938],[121.99033328125,39.5666506171876],[122.01420046875,39.6008180976563],[122.070396757813,39.5974684882813],[122.049386015625,39.6560207343751],[122.013121367188,39.6726662421875],[122.0326575,39.7086171699219],[122.030855742188,39.7388430000001],[122.075421171875,39.7492116523438],[122.11318484375,39.7697341132813],[122.1120325,39.7891091132813],[122.1326575,39.7985768867188],[122.131886015625,39.8115529609375],[122.182511015625,39.8085353828125],[122.192061796875,39.8106923652344],[122.1720325,39.8285903144532],[122.173521757813,39.8536244941407],[122.221798125,39.8967568183594],[122.235211210938,39.9259780097657],[122.270679960938,39.9422585273438],[122.277345,39.9638430000001],[122.312017851563,39.9796303535157],[122.322345,39.9781044746094],[122.340767851563,39.9808266425782]]]]}},{"type":"Feature","properties":{"name":"沙河口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.56142703125,38.8697585273438],[121.537345,38.8638430000001],[121.530972929688,38.8790138984376],[121.546417265625,38.9391884589844],[121.587345,38.9438430000001],[121.59326296875,38.9197585273437],[121.597345,38.873843],[121.56142703125,38.8697585273438]]]]}},{"type":"Feature","properties":{"name":"瓦房店市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.447345,39.413843],[121.456553984375,39.4372634101562],[121.43298953125,39.4249245429688],[121.430894804688,39.3847475410157],[121.399268828125,39.3661550117188],[121.352564726563,39.3794924140625],[121.312896757813,39.3745583320313],[121.347515898438,39.4200661445313],[121.371793242188,39.417046125],[121.35935671875,39.4482900214844],[121.341656523438,39.4393288398438],[121.291793242188,39.3993959785157],[121.267769804688,39.3693959785156],[121.251671171875,39.3884316230469],[121.253590117188,39.4038430000001],[121.251666289063,39.4192958808594],[121.262896757813,39.4282900214844],[121.271793242188,39.4393959785157],[121.298912382813,39.4508242011719],[121.336261015625,39.4974648261719],[121.380079375,39.5029152656251],[121.39834109375,39.4801113105469],[121.417345,39.503843],[121.440069609375,39.5078481269532],[121.422906523438,39.5168398261719],[121.417345,39.503843],[121.371265898438,39.5207643867188],[121.329000273438,39.517368390625],[121.309229765625,39.4944228339844],[121.28271609375,39.5092153144531],[121.23197390625,39.5184706855469],[121.22271609375,39.5320546699219],[121.286866484375,39.5816823554688],[121.302022734375,39.5992702460937],[121.322345,39.5976381660156],[121.39423953125,39.6034145332031],[121.454273710938,39.6198439765625],[121.4519153125,39.6492018867188],[121.494742460938,39.6584706855469],[121.52388796875,39.6246413398438],[121.521944609375,39.648843],[121.523629179688,39.6698146796875],[121.5019153125,39.6885195136719],[121.5030871875,39.7030519843751],[121.460738554688,39.7395351386719],[121.48271609375,39.7584706855469],[121.49197390625,39.7812404609376],[121.470738554688,39.7995351386719],[121.540240507813,39.8594142890625],[121.567345,39.8572365546875],[121.607178984375,39.8604372382813],[121.639722929688,39.8982106757813],[121.690748320313,39.9209804511719],[121.776304960938,39.9141054511719],[121.795577421875,39.9572890449219],[121.83271609375,39.9684706855469],[121.858394804688,39.9827980781251],[121.87197390625,40.0006227851563],[121.831070585938,40.0188735175782],[121.890943632813,40.0415932441407],[121.948233671875,40.1080886054688],[121.967345,40.113843],[121.983033476563,40.0520632148438],[122.0532825,40.0659450507813],[122.081519804688,40.0480178046875],[122.161510039063,40.0319814277344],[122.183267851563,40.0016237617188],[122.210406523438,39.9962624335937],[122.241954375,40.0162917304688],[122.277345,39.9638430000001],[122.270679960938,39.9422585273438],[122.235211210938,39.9259780097657],[122.221798125,39.8967568183594],[122.173521757813,39.8536244941407],[122.1720325,39.8285903144532],[122.192061796875,39.8106923652344],[122.182511015625,39.8085353828125],[122.131886015625,39.8115529609375],[122.1326575,39.7985768867188],[122.1120325,39.7891091132813],[122.11318484375,39.7697341132813],[122.075421171875,39.7492116523438],[122.030855742188,39.7388430000001],[122.0326575,39.7086171699219],[122.013121367188,39.6726662421875],[122.049386015625,39.6560207343751],[122.070396757813,39.5974684882813],[122.01420046875,39.6008180976563],[121.99033328125,39.5666506171876],[122.003272734375,39.5061061835938],[121.934718046875,39.5101918769531],[121.878761015625,39.4300783515625],[121.923648710938,39.4094753242188],[121.917345,39.4038430000001],[121.907345,39.4038430000001],[121.907345,39.3938430000001],[121.897345,39.3938430000001],[121.888531523438,39.4076076484376],[121.840279570313,39.3940468574219],[121.827345,39.373843],[121.817345,39.373843],[121.79326296875,39.3797585273438],[121.747345,39.383843],[121.74298953125,39.3894863105469],[121.698839140625,39.4075551582032],[121.704615507813,39.3684755683594],[121.637564726563,39.3570851875001],[121.618082304688,39.3318447089844],[121.566910429688,39.3194863105469],[121.54298953125,39.3594863105469],[121.505889921875,39.3698171210938],[121.4786340625,39.4051308417969],[121.447345,39.413843]],[[121.477345,39.523843],[121.471910429688,39.5365395332031],[121.454346953125,39.5278957343751],[121.477345,39.523843]],[[121.537345,39.603843],[121.533922148438,39.6160353828125],[121.525152617188,39.6072658515626],[121.542779570313,39.5911464667969],[121.560343046875,39.599790265625],[121.537345,39.603843]],[[121.807345,39.9338430000001],[121.803922148438,39.9460353828126],[121.795152617188,39.9372658515625],[121.807345,39.9338430000001]],[[121.887345,39.993843],[121.883922148438,40.0060353828125],[121.875152617188,39.9972658515625],[121.887345,39.993843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,40.9638430000001],[122.315152617188,40.9672658515625],[122.323922148438,40.9760353828126],[122.327345,40.9638430000001]]],[[[122.327345,40.9638430000001],[122.347345,40.9638430000001],[122.347345,40.973843],[122.359537382813,40.9772658515626],[122.350767851563,40.9860353828125],[122.347345,40.973843],[122.337345,40.973843],[122.337345,40.983843],[122.346158476563,40.9976076484375],[122.38310671875,40.9872231269532],[122.39158328125,41.0004628730469],[122.406158476563,40.9963661933594],[122.417345,41.013843],[122.441959257813,41.0212538886719],[122.413756132813,41.0455495429688],[122.4427746875,41.0584963203126],[122.441304960938,41.0767909980469],[122.515513945313,41.0936501289063],[122.53271609375,41.1084706855469],[122.54197390625,41.1192153144532],[122.593287382813,41.1421120429688],[122.591163359375,41.1685195136719],[122.597345,41.173843],[122.614586210938,41.1686525703125],[122.63197390625,41.1484706855469],[122.66271609375,41.1392153144531],[122.700909453125,41.1121352363282],[122.827345,41.083843],[122.85218875,41.0785353828125],[122.892061796875,41.0809120917969],[122.882628203125,41.0585622382812],[122.86615359375,41.043843],[122.891910429688,41.0208278632813],[122.832628203125,40.9831215644531],[122.872276640625,40.9769789863282],[122.900494414063,41.0085622382813],[122.932628203125,40.9991237617187],[122.942061796875,40.9885622382813],[122.987086210938,40.9780861640625],[123.035094023438,40.9475551582032],[123.052061796875,40.9285622382813],[123.057345,40.9238430000001],[123.063585234375,40.8984291816406],[123.040347929688,40.8627443671876],[123.043468046875,40.8488430000001],[123.041051054688,40.8380605292969],[123.097345,40.8183266425781],[123.08326296875,40.7979274726563],[123.06326296875,40.7841188789063],[123.07142703125,40.7579274726563],[123.11904421875,40.7258632636719],[123.127345,40.713843],[123.136178007813,40.6600661445313],[123.11170046875,40.6194863105469],[123.101373320313,40.5705336738281],[123.06170046875,40.5594863105469],[123.05298953125,40.5381996894532],[123.03154421875,40.5092726875],[123.033170195313,40.4982717109375],[122.997345,40.483843],[122.98170046875,40.4881996894531],[122.96490359375,40.5099599433594],[122.951832304688,40.5080287910156],[122.94298953125,40.5194863105469],[122.922266875,40.5354811835937],[122.867345,40.5273647285157],[122.825264921875,40.5335842109375],[122.7987121875,40.5679848457031],[122.72170046875,40.5881996894532],[122.69244265625,40.5997023750001],[122.652554960938,40.5880727363282],[122.637261992188,40.5903334785157],[122.653267851563,40.659408185547],[122.62170046875,40.6681996894532],[122.61298953125,40.6827614570313],[122.64744265625,40.7093544746094],[122.640230742188,40.7581362128906],[122.571832304688,40.7480287910157],[122.56298953125,40.7594863105469],[122.515660429688,40.7694741035156],[122.536392851563,40.8038430000001],[122.518795195313,40.8330178046876],[122.481080351563,40.8484535957032],[122.494327421875,40.8704201484375],[122.490362578125,40.8972658515625],[122.506470976563,40.9239699531251],[122.46607546875,40.9405007148438],[122.385640898438,40.9218617988281],[122.362735625,40.9080458808594],[122.34478640625,40.91069846875],[122.327345,40.903843],[122.317345,40.903843],[122.320704375,40.920483625],[122.333985625,40.927202375],[122.345401640625,40.9497670722656],[122.330704375,40.957202375],[122.327345,40.9638430000001]]]]}},{"type":"Feature","properties":{"name":"立山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.02361453125,41.17284690625],[123.068565703125,41.1368508125001],[123.027345,41.103843],[123.02062625,41.11712425],[123.000704375,41.127202375],[122.997345,41.133843],[123.007345,41.133843],[123.007345,41.163843],[122.997345,41.163843],[123.007345,41.1838430000001],[123.007345,41.1938430000001],[123.027345,41.1938430000001],[123.027345,41.203843],[123.047345,41.203843],[123.047345,41.1938430000001],[123.042896757813,41.1882900214844],[123.02361453125,41.17284690625]]]]}},{"type":"Feature","properties":{"name":"千山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.997345,41.163843],[122.952623320313,41.1384181953126],[122.941983671875,41.1392739082032],[122.93271609375,41.0942690253906],[122.967345,41.083843],[123.007345,41.0694899726563],[123.027345,41.103843],[123.068565703125,41.1368508125001],[123.02361453125,41.17284690625],[123.042896757813,41.1882900214844],[123.047345,41.1938430000001],[123.0855090625,41.1760231757813],[123.117345,41.1838430000001],[123.117345,41.173843],[123.127345,41.173843],[123.131519804688,41.1580178046875],[123.143453398438,41.1494631171875],[123.134351835938,41.1033864570313],[123.162345,41.0978554511719],[123.200079375,41.1053115058594],[123.203331328125,41.088843],[123.201236601563,41.0782228828125],[123.22021609375,41.0646181464844],[123.223453398438,41.0482228828126],[123.2007434375,41.0319448066407],[123.204361601563,41.0136342597657],[123.180484648438,40.9803188300782],[123.129386015625,40.9904152656251],[123.084146757813,40.9729677558594],[123.081358671875,40.9588430000001],[123.087315703125,40.9286879707032],[123.057345,40.9238430000001],[123.052061796875,40.9285622382813],[123.035094023438,40.9475551582032],[122.987086210938,40.9780861640625],[122.942061796875,40.9885622382813],[122.932628203125,40.9991237617187],[122.900494414063,41.0085622382813],[122.872276640625,40.9769789863282],[122.832628203125,40.9831215644531],[122.891910429688,41.0208278632813],[122.86615359375,41.043843],[122.882628203125,41.0585622382812],[122.892061796875,41.0809120917969],[122.85218875,41.0785353828125],[122.827345,41.083843],[122.842896757813,41.1082900214844],[122.851793242188,41.1393959785157],[122.862896757813,41.1482900214844],[122.871793242188,41.1593959785156],[122.888453398438,41.1727370429688],[122.902940703125,41.1908327460938],[122.972706328125,41.1995095039063],[122.991793242188,41.1882900214844],[123.007345,41.1838430000001],[122.997345,41.163843]]],[[[123.027345,41.1938430000001],[123.007345,41.1938430000001],[123.007345,41.203843],[123.027345,41.203843],[123.027345,41.1938430000001]]]]}},{"type":"Feature","properties":{"name":"台安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.607345,41.203843],[122.617345,41.203843],[122.612345,41.1910353828125],[122.607345,41.203843]]],[[[122.597345,41.513843],[122.585152617188,41.5104201484376],[122.593922148438,41.5016506171875],[122.624195585938,41.5063661933594],[122.621607695313,41.4888430000001],[122.623082304688,41.478843],[122.6216028125,41.4688088203125],[122.627345,41.433843],[122.615152617188,41.4304201484376],[122.623922148438,41.4216506171875],[122.627345,41.433843],[122.634483671875,41.4283315253907],[122.630284453125,41.3998867011719],[122.642345,41.3981044746094],[122.660592070313,41.4007997871094],[122.640362578125,41.3672658515625],[122.644068632813,41.3421877265625],[122.59306765625,41.3028212714844],[122.58298953125,41.2781996894532],[122.545748320313,41.2494557929688],[122.5976965625,41.2384938789063],[122.607345,41.203843],[122.597345,41.203843],[122.597345,41.173843],[122.591163359375,41.1685195136719],[122.593287382813,41.1421120429688],[122.54197390625,41.1192153144532],[122.53271609375,41.1084706855469],[122.515513945313,41.0936501289063],[122.441304960938,41.0767909980469],[122.4427746875,41.0584963203126],[122.413756132813,41.0455495429688],[122.441959257813,41.0212538886719],[122.417345,41.013843],[122.400308867188,41.0285195136719],[122.404874296875,41.0853444648438],[122.383331328125,41.1239601875],[122.37271609375,41.1592153144532],[122.3619153125,41.1685195136719],[122.363370390625,41.1866249824219],[122.40271609375,41.1984706855469],[122.41197390625,41.2092153144532],[122.43271609375,41.2184706855469],[122.45197390625,41.2292153144532],[122.47271609375,41.2384706855469],[122.48197390625,41.2508217597657],[122.452345,41.2484413886719],[122.407003203125,41.2520851875],[122.332652617188,41.1884169746095],[122.307345,41.1904494453126],[122.25584109375,41.1863112617188],[122.20603640625,41.2141005683594],[122.241593046875,41.244731671875],[122.25197390625,41.2792153144532],[122.26271609375,41.2984706855469],[122.273829375,41.3353774238282],[122.271793242188,41.3607021308594],[122.23197390625,41.3784706855469],[122.206090117188,41.40851096875],[122.187345,41.4538430000001],[122.187345,41.463843],[122.197345,41.463843],[122.197345,41.473843],[122.247340117188,41.5059535957031],[122.355523710938,41.5489553046875],[122.46298953125,41.5581996894531],[122.477345,41.5638430000001],[122.4934778125,41.5595864082032],[122.489678984375,41.5403578925782],[122.512345,41.5358791328125],[122.537447539063,41.5408388496095],[122.593170195313,41.5296681953125],[122.597345,41.513843]]]]}},{"type":"Feature","properties":{"name":"铁东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.027345,41.103843],[123.007345,41.0694899726563],[122.967345,41.083843],[122.990704375,41.1304836250001],[122.997345,41.133843],[123.000704375,41.127202375],[123.02062625,41.11712425],[123.027345,41.103843]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.007345,41.163843],[123.007345,41.133843],[122.997345,41.133843],[122.990704375,41.1304836250001],[122.967345,41.083843],[122.93271609375,41.0942690253906],[122.941983671875,41.1392739082032],[122.952623320313,41.1384181953126],[122.997345,41.163843],[123.007345,41.163843]]]]}},{"type":"Feature","properties":{"name":"岫岩满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.551793242188,40.8082900214844],[123.578018828125,40.7723891425781],[123.553448515625,40.7527150703125],[123.550611601563,40.7299062324219],[123.573013945313,40.6992348457031],[123.571163359375,40.6843422675781],[123.625206328125,40.6910646796875],[123.652896757813,40.6793959785157],[123.671793242188,40.6682900214844],[123.728844023438,40.651977765625],[123.735391875,40.599341046875],[123.71127078125,40.5891762519532],[123.733316679688,40.5516689277344],[123.731085234375,40.5337026191407],[123.741793242188,40.5082900214844],[123.755284453125,40.4974843574219],[123.751724882813,40.4688430000001],[123.754830351563,40.443843],[123.751099882813,40.413843],[123.7537903125,40.3922365546875],[123.722896757813,40.3482900214844],[123.700308867188,40.3302016425782],[123.70341921875,40.3051955390625],[123.652896757813,40.2682900214844],[123.631793242188,40.2593959785157],[123.612896757813,40.2482900214844],[123.590982695313,40.2390554023438],[123.552896757813,40.1742665839844],[123.576431914063,40.166821515625],[123.607345,40.173843],[123.595211210938,40.1314064765625],[123.558717070313,40.1099538398438],[123.520640898438,40.099067609375],[123.471666289063,40.0693178535156],[123.47474734375,40.0445363593751],[123.421793242188,40.0293959785157],[123.397345,40.0138430000001],[123.38170046875,40.0094863105469],[123.372686796875,39.9978115058594],[123.313219023438,40.0211891914063],[123.283922148438,40.0168593574219],[123.26298953125,40.0294863105469],[123.2310559375,40.0425551582031],[123.20298953125,40.0594863105469],[123.13369265625,40.0712587714844],[123.112345,40.0681044746094],[123.092857695313,40.0709841132813],[123.073883085938,40.0463991523438],[123.036549101563,40.0519155097657],[123.02298953125,40.0694863105469],[123.00170046875,40.0781996894532],[122.98045046875,40.0910182929688],[122.9831653125,40.1093825507813],[122.940982695313,40.1346108222656],[122.94312625,40.1491347480469],[122.930123320313,40.1822096992188],[122.89978640625,40.1777260566406],[122.887345,40.1938430000001],[122.88298953125,40.2294863105469],[122.86662234375,40.2711244941406],[122.887345,40.323843],[122.920416289063,40.333051984375],[122.93298953125,40.4070607734375],[122.9870325,40.4221108222657],[122.98154421875,40.4592458320313],[122.997345,40.483843],[123.033170195313,40.4982717109375],[123.03154421875,40.5092726875],[123.05298953125,40.5381996894532],[123.06170046875,40.5594863105469],[123.101373320313,40.5705336738281],[123.11170046875,40.6194863105469],[123.136178007813,40.6600661445313],[123.127345,40.713843],[123.148619414063,40.7227797675782],[123.172345,40.7073305488282],[123.204796171875,40.7284633613282],[123.25326296875,40.7379274726562],[123.322022734375,40.7700356269532],[123.338297148438,40.7663881660156],[123.387022734375,40.7788930488281],[123.40435671875,40.8039968085938],[123.439141875,40.7961977363282],[123.472066679688,40.8100258613281],[123.482491484375,40.8076894355469],[123.52142703125,40.8197585273438],[123.547345,40.823843],[123.551793242188,40.8082900214844]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"望花区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.777345,41.973843],[123.77326296875,41.9479274726563],[123.75326296875,41.9172145820313],[123.773765898438,41.8687990546875],[123.817345,41.863843],[123.833013945313,41.8411464667969],[123.907652617188,41.8578798652344],[123.917345,41.843843],[123.912535429688,41.8386525703126],[123.872535429688,41.8259877753906],[123.896090117188,41.7835378242187],[123.922535429688,41.7590334296876],[123.932154570313,41.7486525703125],[123.942535429688,41.7390334296875],[123.947345,41.733843],[123.880704375,41.737202375],[123.81545046875,41.769720685547],[123.827203398438,41.7937953925782],[123.787486601563,41.8138893867188],[123.777345,41.7938430000001],[123.703414335938,41.7728810859375],[123.652808867188,41.7917678046875],[123.673834257813,41.809233625],[123.67166140625,41.8305361152344],[123.712808867188,41.8483803535156],[123.74076296875,41.8643910957031],[123.711324492188,41.888843],[123.722808867188,41.8983803535157],[123.7358215625,41.9140456367188],[123.721803007813,41.9385207343751],[123.722896757813,41.9492336250001],[123.717345,41.9538430000001],[123.728463164063,41.9677297187501],[123.777345,41.973843]]],[[[123.777345,41.973843],[123.777345,41.9838430000001],[123.797345,41.9938430000001],[123.797345,41.973843],[123.777345,41.973843]]]]}},{"type":"Feature","properties":{"name":"新宾满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.395699492188,41.9805825019531],[124.422345,41.9784413886719],[124.440328398438,41.9798867011719],[124.472457304688,41.9522072578125],[124.493912382813,41.9041274238281],[124.536182890625,41.8805434394531],[124.562345,41.878441388672],[124.572584257813,41.8792641425782],[124.602105742188,41.8684218574219],[124.680621367188,41.8747304511719],[124.708228789063,41.8019863105469],[124.752647734375,41.7984169746095],[124.792974882813,41.8299977851563],[124.820787382813,41.8277626777344],[124.852252226563,41.8393166328125],[124.910074492188,41.826704328125],[125.01271609375,41.8384706855469],[125.022667265625,41.8500221992187],[125.054327421875,41.8474782539063],[125.116871367188,41.8616872382813],[125.140728789063,41.8893752265625],[125.161490507813,41.8877065253907],[125.218131132813,41.9230580878907],[125.287345,41.9538430000001],[125.304298125,41.9504201484375],[125.343985625,41.9304836250001],[125.347345,41.923843],[125.296695585938,41.9191188789063],[125.290621367188,41.883843],[125.293204375,41.8688430000001],[125.2855090625,41.8241274238281],[125.317393828125,41.7726076484376],[125.325787382813,41.7238430000001],[125.316534453125,41.6700954414062],[125.403917265625,41.6851393867188],[125.448267851563,41.667514875],[125.454068632813,41.633843],[125.4484778125,41.601372296875],[125.457345,41.5638430000001],[125.45170046875,41.5594863105469],[125.442857695313,41.5480287910156],[125.432345,41.5495815253906],[125.412345,41.5466262031251],[125.383922148438,41.5508266425781],[125.345914335938,41.5278993964844],[125.316715117188,41.4900698066406],[125.251832304688,41.4996572089844],[125.24298953125,41.4881996894532],[125.208424101563,41.4794863105469],[125.192686796875,41.4998744941406],[125.15615359375,41.485512921875],[125.132735625,41.4996401191407],[125.072686796875,41.4907656074219],[125.060914335938,41.475512921875],[125.009190703125,41.4905934882812],[124.991954375,41.4880458808594],[124.955484648438,41.5100453925782],[124.931080351563,41.5064394355469],[124.881905546875,41.4699806953126],[124.87298953125,41.4481996894531],[124.86170046875,41.4394863105469],[124.849429960938,41.4235854316407],[124.853082304688,41.398843],[124.85048953125,41.3812831855469],[124.8701965625,41.3311501289063],[124.84170046875,41.3194863105469],[124.83298953125,41.3081996894532],[124.797081328125,41.2935036445313],[124.757345,41.2638430000001],[124.75209109375,41.2697219062501],[124.695343046875,41.2663393378907],[124.648785429688,41.241040265625],[124.632628203125,41.2591237617188],[124.590011015625,41.2690395332032],[124.532628203125,41.3091237617188],[124.512061796875,41.3185622382813],[124.476168242188,41.3380678535156],[124.462628203125,41.3085622382813],[124.426392851563,41.2991237617187],[124.412628203125,41.3291237617188],[124.39197390625,41.3475783515625],[124.392867460938,41.3626113105469],[124.352061796875,41.3885622382813],[124.342628203125,41.4217568183594],[124.372628203125,41.4485622382813],[124.377345,41.4538430000001],[124.426329375,41.4590566230469],[124.44427859375,41.5157411933594],[124.43205203125,41.538843],[124.442672148438,41.5589076972657],[124.429683867188,41.5709401679688],[124.391749296875,41.588843],[124.392769804688,41.6146059394532],[124.422535429688,41.6286525703125],[124.43576296875,41.6429311347656],[124.422017851563,41.6689076972657],[124.451475859375,41.6962026191407],[124.408062773438,41.7099477363282],[124.392535429688,41.7328224921876],[124.432642851563,41.7587221503906],[124.42033328125,41.7938430000001],[124.435655546875,41.8375600410157],[124.410636015625,41.84937034375],[124.34166140625,41.84663596875],[124.343175078125,41.8847963691407],[124.373018828125,41.8988808417969],[124.319195585938,41.9159206367188],[124.302535429688,41.9460439277344],[124.352232695313,41.9286244941407],[124.402154570313,41.9333242011719],[124.377345,41.973843],[124.395699492188,41.9805825019531]]]]}},{"type":"Feature","properties":{"name":"新抚区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.979346953125,41.8580348945313],[123.930704375,41.8504836250001],[123.917345,41.843843],[123.907652617188,41.8578798652344],[123.833013945313,41.8411464667969],[123.817345,41.863843],[123.902628203125,41.8685622382813],[123.987345,41.8738430000001],[123.979346953125,41.8580348945313]]]]}},{"type":"Feature","properties":{"name":"东洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.069810820313,41.8186977363282],[124.073834257813,41.779233625],[124.056422148438,41.7647682929688],[124.035631132813,41.7397402167969],[124.0145325,41.7883803535157],[123.981793242188,41.7692531562501],[123.9828528125,41.7588430000001],[123.9818371875,41.748843],[123.983804960938,41.7295021796875],[123.953516875,41.7264138007813],[123.947345,41.733843],[123.942535429688,41.7390334296875],[123.932154570313,41.7486525703125],[123.922535429688,41.7590334296876],[123.896090117188,41.7835378242187],[123.872535429688,41.8259877753906],[123.912535429688,41.8386525703126],[123.917345,41.843843],[123.930704375,41.8504836250001],[123.979346953125,41.8580348945313],[123.987345,41.8738430000001],[124.049078398438,41.877505109375],[124.057345,41.893843],[124.090347929688,41.8879616523438],[124.113365507813,41.8688430000001],[124.100855742188,41.858452375],[124.10388796875,41.8286977363281],[124.069810820313,41.8186977363282]]]]}},{"type":"Feature","properties":{"name":"抚顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.247789335938,42.0759670234375],[124.2680871875,42.0395864082031],[124.28252078125,42.0072438789063],[124.337345,42.013843],[124.3551575,41.9783217597656],[124.377345,41.973843],[124.402154570313,41.9333242011719],[124.352232695313,41.9286244941407],[124.302535429688,41.9460439277344],[124.319195585938,41.9159206367188],[124.373018828125,41.8988808417969],[124.343175078125,41.8847963691407],[124.34166140625,41.84663596875],[124.410636015625,41.84937034375],[124.435655546875,41.8375600410157],[124.42033328125,41.7938430000001],[124.432642851563,41.7587221503906],[124.392535429688,41.7328224921876],[124.408062773438,41.7099477363282],[124.451475859375,41.6962026191407],[124.422017851563,41.6689076972657],[124.43576296875,41.6429311347656],[124.422535429688,41.6286525703125],[124.392769804688,41.6146059394532],[124.391749296875,41.588843],[124.429683867188,41.5709401679688],[124.442672148438,41.5589076972657],[124.43205203125,41.538843],[124.44427859375,41.5157411933594],[124.426329375,41.4590566230469],[124.377345,41.4538430000001],[124.373077421875,41.4595778632813],[124.35812625,41.4706996894531],[124.341886015625,41.4679030585938],[124.31025515625,41.4917031074219],[124.31330203125,41.5094106269531],[124.301612578125,41.5181081367188],[124.284049101563,41.5417189765625],[124.257345,41.5371218085938],[124.232345,41.5414260078126],[124.188580351563,41.5338906074219],[124.163077421875,41.5181081367188],[124.114058867188,41.5048183417969],[124.094049101563,41.5317189765626],[124.065050078125,41.5267263007813],[124.033077421875,41.5395778632813],[124.001612578125,41.5481081367188],[123.982603789063,41.5598720527344],[123.933687773438,41.5453139472656],[123.917237578125,41.5674318671875],[123.858306914063,41.5572878242188],[123.863258085938,41.5285488105469],[123.857345,41.513843],[123.793673125,41.5033827949219],[123.781143828125,41.5339919257813],[123.737345,41.523843],[123.717296171875,41.5678786445313],[123.79125125,41.5948622871094],[123.757345,41.6138430000001],[123.747940703125,41.6383058906251],[123.781632109375,41.6652834296875],[123.791793242188,41.6893959785157],[123.807335234375,41.7018447089844],[123.770631132813,41.7642873359375],[123.777345,41.7938430000001],[123.787486601563,41.8138893867188],[123.827203398438,41.7937953925782],[123.81545046875,41.769720685547],[123.880704375,41.737202375],[123.947345,41.733843],[123.953516875,41.7264138007813],[123.983804960938,41.7295021796875],[123.9818371875,41.748843],[123.9828528125,41.7588430000001],[123.981793242188,41.7692531562501],[124.0145325,41.7883803535157],[124.035631132813,41.7397402167969],[124.056422148438,41.7647682929688],[124.073834257813,41.779233625],[124.069810820313,41.8186977363282],[124.10388796875,41.8286977363281],[124.100855742188,41.858452375],[124.113365507813,41.8688430000001],[124.090347929688,41.8879616523438],[124.057345,41.893843],[124.050704375,41.8972023750001],[124.043336210938,41.9117690253907],[124.023336210938,41.9020009589845],[124.011353789063,41.9256850410157],[123.983336210938,41.9120009589844],[123.973985625,41.9304836250001],[123.940704375,41.9372023750001],[123.914796171875,41.9887783027344],[123.943985625,41.997202375],[123.947345,42.003843],[124.0252746875,42.01179221875],[124.049371367188,42.0657912421876],[124.09982546875,42.0698451972657],[124.15486453125,42.0578408027344],[124.182345,42.0600478339844],[124.230728789063,42.0561611152344],[124.247789335938,42.0759670234375]]]]}},{"type":"Feature","properties":{"name":"清原满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.2005871875,42.3665834785157],[125.16654421875,42.3479213691407],[125.174405546875,42.3288430000001],[125.165650664063,42.3075978828125],[125.257345,42.303843],[125.29146609375,42.2847414375],[125.271529570313,42.2693544746094],[125.274561796875,42.248843],[125.271519804688,42.2282497382813],[125.305421171875,42.2188100410156],[125.279742460938,42.1762416816407],[125.30623171875,42.1801564765625],[125.300225859375,42.1394863105469],[125.353175078125,42.1482302070313],[125.348834257813,42.1775856757813],[125.362735625,42.1796401191406],[125.39763796875,42.1585866523438],[125.447345,42.153843],[125.481793242188,42.1439943671876],[125.470831328125,42.1246450019531],[125.451793242188,42.1093959785156],[125.440987578125,42.0959023261719],[125.41037234375,42.0997109199219],[125.414156523438,42.0692958808594],[125.401793242188,42.0593959785157],[125.3491028125,41.9935451484375],[125.291793242188,41.9693959785156],[125.287345,41.9538430000001],[125.218131132813,41.9230580878907],[125.161490507813,41.8877065253907],[125.140728789063,41.8893752265625],[125.116871367188,41.8616872382813],[125.054327421875,41.8474782539063],[125.022667265625,41.8500221992187],[125.01271609375,41.8384706855469],[124.910074492188,41.826704328125],[124.852252226563,41.8393166328125],[124.820787382813,41.8277626777344],[124.792974882813,41.8299977851563],[124.752647734375,41.7984169746095],[124.708228789063,41.8019863105469],[124.680621367188,41.8747304511719],[124.602105742188,41.8684218574219],[124.572584257813,41.8792641425782],[124.562345,41.878441388672],[124.536182890625,41.8805434394531],[124.493912382813,41.9041274238281],[124.472457304688,41.9522072578125],[124.440328398438,41.9798867011719],[124.422345,41.9784413886719],[124.395699492188,41.9805825019531],[124.377345,41.973843],[124.3551575,41.9783217597656],[124.337345,42.013843],[124.363658476563,42.0179897285157],[124.361051054688,42.0296254707031],[124.41326296875,42.0479274726563],[124.46142703125,42.0697585273438],[124.521329375,42.0851308417969],[124.544010039063,42.1179775214844],[124.537345,42.133843],[124.54197390625,42.1392153144531],[124.56197390625,42.1564455390625],[124.55271609375,42.1692153144531],[124.524205351563,42.1937795234375],[124.511807890625,42.2390724921875],[124.52271609375,42.2484706855469],[124.53197390625,42.2592153144532],[124.551715117188,42.2762221503907],[124.56197390625,42.2992153144532],[124.572769804688,42.3185646796875],[124.570367460938,42.3484706855469],[124.6227746875,42.3392043281251],[124.621241484375,42.3201369453125],[124.681202421875,42.3153188300782],[124.73197390625,42.3292153144531],[124.791861601563,42.3428212714844],[124.763638945313,42.3934072089844],[124.79197390625,42.4092153144532],[124.817345,42.413843],[124.842896757813,42.4093959785157],[124.902799101563,42.3957900214844],[124.936422148438,42.3999721503907],[124.96365359375,42.3659658027344],[124.992896757813,42.3782900214844],[125.001793242188,42.3993959785157],[125.03302859375,42.4083278632813],[125.029957304688,42.4330471015625],[125.091793242188,42.4693959785157],[125.107345,42.473843],[125.12892703125,42.4692006660157],[125.145445585938,42.4390639472656],[125.175816679688,42.4296804023437],[125.18646609375,42.4038430000001],[125.17654421875,42.3797646308594],[125.2005871875,42.3665834785157]]]]}},{"type":"Feature","properties":{"name":"顺城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.973985625,41.9304836250001],[123.983336210938,41.9120009589844],[124.011353789063,41.9256850410157],[124.023336210938,41.9020009589845],[124.043336210938,41.9117690253907],[124.050704375,41.8972023750001],[124.057345,41.893843],[124.049078398438,41.877505109375],[123.987345,41.8738430000001],[123.902628203125,41.8685622382813],[123.817345,41.863843],[123.773765898438,41.8687990546875],[123.75326296875,41.9172145820313],[123.77326296875,41.9479274726563],[123.777345,41.973843],[123.797345,41.973843],[123.797345,41.9938430000001],[123.813531523438,41.9976552558594],[123.823902617188,42.0144887519532],[123.877701445313,42.0321828437501],[123.943531523438,42.0100307441407],[123.947345,42.003843],[123.943985625,41.997202375],[123.914796171875,41.9887783027344],[123.940704375,41.9372023750001],[123.973985625,41.9304836250001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"本溪满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.917237578125,41.5674318671875],[123.933687773438,41.5453139472656],[123.982603789063,41.5598720527344],[124.001612578125,41.5481081367188],[124.033077421875,41.5395778632813],[124.065050078125,41.5267263007813],[124.094049101563,41.5317189765626],[124.114058867188,41.5048183417969],[124.163077421875,41.5181081367188],[124.188580351563,41.5338906074219],[124.232345,41.5414260078126],[124.257345,41.5371218085938],[124.284049101563,41.5417189765625],[124.301612578125,41.5181081367188],[124.31330203125,41.5094106269531],[124.31025515625,41.4917031074219],[124.341886015625,41.4679030585938],[124.35812625,41.4706996894531],[124.373077421875,41.4595778632813],[124.377345,41.4538430000001],[124.372628203125,41.4485622382813],[124.342628203125,41.4217568183594],[124.352061796875,41.3885622382813],[124.392867460938,41.3626113105469],[124.39197390625,41.3475783515625],[124.412628203125,41.3291237617188],[124.426392851563,41.2991237617187],[124.462628203125,41.3085622382813],[124.476168242188,41.3380678535156],[124.512061796875,41.3185622382813],[124.532628203125,41.3091237617188],[124.590011015625,41.2690395332032],[124.632628203125,41.2591237617188],[124.648785429688,41.241040265625],[124.695343046875,41.2663393378907],[124.75209109375,41.2697219062501],[124.757345,41.2638430000001],[124.737428007813,41.2239138007813],[124.748004179688,41.2022585273438],[124.730704375,41.180483625],[124.727345,41.1538430000001],[124.708101835938,41.1306764960938],[124.679234648438,41.1181569648438],[124.656490507813,41.0907753730469],[124.566436796875,41.0999550605469],[124.541881132813,41.0893056464844],[124.528267851563,41.0729177070312],[124.511881132813,41.0593056464844],[124.507345,41.043843],[124.472808867188,41.0593056464844],[124.4209778125,41.0745143867188],[124.392667265625,41.0583010078125],[124.382345,41.0593520332032],[124.363531523438,41.0574355292969],[124.34244265625,41.0695156074219],[124.310474882813,41.0575051093751],[124.290885039063,41.0595021796876],[124.294361601563,41.0936354804688],[124.230987578125,41.0871755195313],[124.2328528125,41.068843],[124.231138945313,41.0519924140626],[124.201881132813,41.0393056464844],[124.18107546875,41.0273879218751],[124.137345,41.0524343085937],[124.112808867188,41.0383803535156],[124.091456328125,41.0291213203126],[124.102808867188,41.0093056464844],[124.111881132813,40.9883803535157],[124.122896757813,40.979233625],[124.121636992188,40.9668910957032],[124.1431653125,40.9490077949219],[124.130069609375,40.9261440253906],[124.136803007813,40.86011253125],[124.096612578125,40.8426833320313],[124.081954375,40.8603322578126],[124.062345,40.8583339667969],[124.037345,40.8608815742188],[124.012345,40.8583339667969],[123.97541140625,40.8620973945313],[123.929957304688,40.8261232734376],[123.856339140625,40.8467055488282],[123.82250125,40.8594203925781],[123.75892703125,40.8476625800782],[123.741988554688,40.8493886542969],[123.696690703125,40.8135390449219],[123.612808867188,40.8493056464844],[123.587345,40.853843],[123.62197390625,40.9092153144531],[123.64271609375,40.9384706855469],[123.647345,40.973843],[123.653170195313,40.9780178046875],[123.702896757813,40.9878444648437],[123.72216921875,41.0000795722656],[123.751519804688,40.9880178046876],[123.793170195313,40.9796681953125],[123.801519804688,40.9580178046875],[123.819088164063,40.9454262519532],[123.855308867188,40.968423078125],[123.91500125,40.9803908515625],[123.911236601563,40.9994631171875],[123.923170195313,41.0080178046875],[123.931519804688,41.0196681953125],[123.9469153125,41.0307033515626],[123.94127078125,41.0592763496094],[123.95341921875,41.0784096503906],[123.947681914063,41.1074428535156],[123.983170195313,41.1280178046875],[123.991519804688,41.1693483710938],[123.977345,41.203843],[124.00326296875,41.2179274726563],[124.01142703125,41.2341188789063],[123.99142703125,41.2479274726563],[123.98326296875,41.2641188789063],[124.00326296875,41.2779274726563],[124.02142703125,41.3076625800782],[123.971724882813,41.3204189277344],[123.95326296875,41.3697585273438],[123.91713015625,41.3832778144532],[123.865694609375,41.3717482734376],[123.84654421875,41.3994826484375],[123.885474882813,41.4263600898438],[123.87142703125,41.4479274726563],[123.857345,41.503843],[123.857345,41.513843],[123.863258085938,41.5285488105469],[123.858306914063,41.5572878242188],[123.917237578125,41.5674318671875]]]]}},{"type":"Feature","properties":{"name":"桓仁满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.469176054688,41.5556740546875],[125.48142703125,41.5379274726562],[125.49361453125,41.5295131660156],[125.489254179688,41.5100478339844],[125.51142703125,41.4779274726563],[125.535709257813,41.468843],[125.531221953125,41.448843],[125.533468046875,41.438843],[125.530943632813,41.4275966621094],[125.55142703125,41.3979274726563],[125.57326296875,41.3897585273438],[125.58142703125,41.3679274726563],[125.607345,41.363843],[125.61170046875,41.3581996894531],[125.625811796875,41.3473073554688],[125.620362578125,41.3104201484375],[125.63298953125,41.2894863105469],[125.642345,41.266626203125],[125.673883085938,41.2712868476563],[125.69170046875,41.2481996894531],[125.750831328125,41.2381545234375],[125.727701445313,41.1793129707032],[125.781085234375,41.1644472480469],[125.76170046875,41.1494863105469],[125.75298953125,41.1281996894531],[125.713560820313,41.1120619941406],[125.711529570313,41.0983315253907],[125.73170046875,41.0827614570313],[125.710865507813,41.0442800117188],[125.682276640625,41.022212140625],[125.67298953125,40.9781996894531],[125.648365507813,40.9681215644532],[125.63298953125,40.9481996894531],[125.593746367188,40.9321388984375],[125.58298953125,40.9181996894532],[125.577345,40.913843],[125.565982695313,40.9270314765626],[125.52713015625,40.9053530097657],[125.49271609375,40.9261598945313],[125.529049101563,40.9774025703125],[125.490367460938,40.988470685547],[125.49291140625,40.9567885566406],[125.450445585938,40.9602004218751],[125.455025664063,41.0172243476563],[125.434508085938,41.0349001289063],[125.422691679688,41.0084133125001],[125.381715117188,41.0117055488281],[125.382974882813,40.9959804511719],[125.340382109375,40.9994020820313],[125.3427746875,41.0291786933594],[125.31197390625,41.0484706855469],[125.287320585938,41.0878285957032],[125.25197390625,41.0984706855469],[125.222266875,41.109380109375],[125.202623320313,41.0984194160157],[125.172345,41.1008522773438],[125.089620390625,41.094204328125],[125.04654421875,41.1182375312501],[124.992266875,41.098305890625],[124.97271609375,41.1092153144531],[124.90197390625,41.1184706855469],[124.87271609375,41.1292153144532],[124.825714140625,41.1398928046875],[124.760875273438,41.1281374335937],[124.74271609375,41.1492153144532],[124.727345,41.1538430000001],[124.730704375,41.180483625],[124.748004179688,41.2022585273438],[124.737428007813,41.2239138007813],[124.757345,41.2638430000001],[124.797081328125,41.2935036445313],[124.83298953125,41.3081996894532],[124.84170046875,41.3194863105469],[124.8701965625,41.3311501289063],[124.85048953125,41.3812831855469],[124.853082304688,41.398843],[124.849429960938,41.4235854316407],[124.86170046875,41.4394863105469],[124.87298953125,41.4481996894531],[124.881905546875,41.4699806953126],[124.931080351563,41.5064394355469],[124.955484648438,41.5100453925782],[124.991954375,41.4880458808594],[125.009190703125,41.4905934882812],[125.060914335938,41.475512921875],[125.072686796875,41.4907656074219],[125.132735625,41.4996401191407],[125.15615359375,41.485512921875],[125.192686796875,41.4998744941406],[125.208424101563,41.4794863105469],[125.24298953125,41.4881996894532],[125.251832304688,41.4996572089844],[125.316715117188,41.4900698066406],[125.345914335938,41.5278993964844],[125.383922148438,41.5508266425781],[125.412345,41.5466262031251],[125.432345,41.5495815253906],[125.442857695313,41.5480287910156],[125.45170046875,41.5594863105469],[125.457345,41.5638430000001],[125.469176054688,41.5556740546875]]]]}},{"type":"Feature","properties":{"name":"明山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.84654421875,41.3994826484375],[123.865694609375,41.3717482734376],[123.91713015625,41.3832778144532],[123.95326296875,41.3697585273438],[123.971724882813,41.3204189277344],[124.02142703125,41.3076625800782],[124.00326296875,41.2779274726563],[123.98326296875,41.2641188789063],[123.99142703125,41.2479274726563],[124.01142703125,41.2341188789063],[124.00326296875,41.2179274726563],[123.977345,41.203843],[123.94142703125,41.2079274726563],[123.907345,41.2222426582031],[123.872310820313,41.2075283027344],[123.811553984375,41.235063703125],[123.777345,41.243843],[123.769615507813,41.2664186835938],[123.791715117188,41.2876491523438],[123.747345,41.293843],[123.7560559375,41.3051308417969],[123.787740507813,41.3295876289063],[123.747945585938,41.3832631660157],[123.76298953125,41.4081996894531],[123.783316679688,41.4578700996094],[123.83298953125,41.4781996894531],[123.8460559375,41.4951308417969],[123.857345,41.503843],[123.87142703125,41.4479274726563],[123.885474882813,41.4263600898438],[123.84654421875,41.3994826484375]]]]}},{"type":"Feature","properties":{"name":"南芬区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.811553984375,41.235063703125],[123.872310820313,41.2075283027344],[123.907345,41.2222426582031],[123.94142703125,41.2079274726563],[123.977345,41.203843],[123.991519804688,41.1693483710938],[123.983170195313,41.1280178046875],[123.947681914063,41.1074428535156],[123.95341921875,41.0784096503906],[123.94127078125,41.0592763496094],[123.9469153125,41.0307033515626],[123.931519804688,41.0196681953125],[123.923170195313,41.0080178046875],[123.911236601563,40.9994631171875],[123.91500125,40.9803908515625],[123.855308867188,40.968423078125],[123.819088164063,40.9454262519532],[123.801519804688,40.9580178046875],[123.793170195313,40.9796681953125],[123.751519804688,40.9880178046876],[123.72216921875,41.0000795722656],[123.702896757813,40.9878444648437],[123.653170195313,40.9780178046875],[123.647345,40.973843],[123.654849882813,41.0338356757813],[123.684830351563,41.05784690625],[123.666236601563,41.0727370429688],[123.647633085938,41.0959694648438],[123.653004179688,41.139126203125],[123.647345,41.1538430000001],[123.692345,41.1482204414063],[123.707345,41.1500868964844],[123.735484648438,41.146587140625],[123.781793242188,41.1572206855469],[123.751793242188,41.1982900214844],[123.742896757813,41.2256484199219],[123.772896757813,41.2382900214844],[123.777345,41.243843],[123.811553984375,41.235063703125]]]]}},{"type":"Feature","properties":{"name":"平山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.673531523438,41.3000307441406],[123.681383085938,41.2666994453125],[123.713531523438,41.2776552558594],[123.731158476563,41.2900307441407],[123.747345,41.293843],[123.791715117188,41.2876491523438],[123.769615507813,41.2664186835938],[123.777345,41.243843],[123.772896757813,41.2382900214844],[123.742896757813,41.2256484199219],[123.751793242188,41.1982900214844],[123.781793242188,41.1572206855469],[123.735484648438,41.146587140625],[123.707345,41.1500868964844],[123.692345,41.1482204414063],[123.647345,41.1538430000001],[123.634034453125,41.1605776191406],[123.613985625,41.2004836250001],[123.599420195313,41.2078530097657],[123.60478640625,41.218843],[123.595504179688,41.2378530097656],[123.607345,41.243843],[123.6660559375,41.2511855292969],[123.651578398438,41.288843],[123.657345,41.3038430000001],[123.673531523438,41.3000307441406]]]]}},{"type":"Feature","properties":{"name":"溪湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.781143828125,41.5339919257813],[123.793673125,41.5033827949219],[123.857345,41.513843],[123.857345,41.503843],[123.8460559375,41.4951308417969],[123.83298953125,41.4781996894531],[123.783316679688,41.4578700996094],[123.76298953125,41.4081996894531],[123.747945585938,41.3832631660157],[123.787740507813,41.3295876289063],[123.7560559375,41.3051308417969],[123.747345,41.293843],[123.731158476563,41.2900307441407],[123.713531523438,41.2776552558594],[123.681383085938,41.2666994453125],[123.673531523438,41.3000307441406],[123.657345,41.3038430000001],[123.65142703125,41.3279274726563],[123.64326296875,41.3897585273438],[123.6307825,41.4089223457032],[123.653580351563,41.4383376289062],[123.649112578125,41.4582570625],[123.603902617188,41.469858625],[123.587345,41.4938430000001],[123.628258085938,41.5208803535157],[123.642345,41.5177223945313],[123.662345,41.5222060371094],[123.682345,41.5177223945313],[123.692789335938,41.5200637031251],[123.711900664063,41.507622296875],[123.728756132813,41.5114003730469],[123.737345,41.523843],[123.781143828125,41.5339919257813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东港市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.747345,39.753843],[123.759537382813,39.7504201484375],[123.750767851563,39.7416506171875],[123.747345,39.753843]]],[[[123.713922148438,39.7560353828126],[123.717345,39.7438430000001],[123.705152617188,39.7472658515625],[123.713922148438,39.7560353828126]]],[[[123.747345,39.753843],[123.724346953125,39.7578957343751],[123.741910429688,39.7665395332031],[123.747345,39.753843]]],[[[123.813922148438,39.7960353828126],[123.817345,39.7838430000001],[123.805152617188,39.7872658515625],[123.813922148438,39.7960353828126]]],[[[123.947345,39.823843],[123.959537382813,39.8272658515625],[123.950767851563,39.8360353828126],[123.851881132813,39.8283803535156],[123.842735625,39.8393923164062],[123.831954375,39.8382936835938],[123.822345,39.8498622871094],[123.805704375,39.8298268867188],[123.693804960938,39.8172780585938],[123.66634890625,39.8330055976563],[123.648267851563,39.8547682929688],[123.637345,39.863843],[123.63334109375,39.8865688300782],[123.624346953125,39.8694045234376],[123.637345,39.863843],[123.643643828125,39.8381923652344],[123.63142703125,39.8297585273437],[123.621085234375,39.7894557929688],[123.57142703125,39.7797585273438],[123.551998320313,39.76710471875],[123.54326296875,39.7797585273438],[123.517345,39.7838430000001],[123.513170195313,39.7996681953125],[123.48968875,39.8304128242187],[123.493453398438,39.8494631171875],[123.465201445313,39.8697145820313],[123.48341921875,39.8984096503907],[123.479879179688,39.9163185859375],[123.407447539063,39.9308388496094],[123.391636992188,39.9277150703126],[123.383170195313,39.9496681953125],[123.37080203125,39.9691518378906],[123.392652617188,39.9848146796875],[123.397345,40.0138430000001],[123.421793242188,40.0293959785157],[123.47474734375,40.0445363593751],[123.471666289063,40.0693178535156],[123.520640898438,40.099067609375],[123.558717070313,40.1099538398438],[123.595211210938,40.1314064765625],[123.607345,40.173843],[123.629049101563,40.1818141914063],[123.66197390625,40.1584706855469],[123.68271609375,40.1492153144531],[123.70197390625,40.1350612617187],[123.662843046875,40.1013491035157],[123.711158476563,40.0332082343751],[123.782291289063,40.05933128125],[123.835889921875,40.0446620917969],[123.867345,40.062212140625],[123.892183867188,40.04835471875],[123.942174101563,40.0592580390625],[123.982974882813,40.0559804511719],[123.981539335938,40.073843],[123.984298125,40.1081435371094],[124.03271609375,40.1384706855469],[124.056788359375,40.1769008613282],[124.087213164063,40.1904787421876],[124.107345,40.213843],[124.117345,40.213843],[124.135894804688,40.2086769843751],[124.15170046875,40.1881996894531],[124.187779570313,40.1781520820313],[124.13298953125,40.1042470527344],[124.161280546875,40.0951039863282],[124.215797148438,40.1279885078126],[124.233140898438,40.099233625],[124.231256132813,40.0864650703125],[124.252857695313,40.0896572089844],[124.26297,40.0765541816407],[124.307345,40.0838430000001],[124.2994934375,40.0210695625],[124.263863554688,40.0060549140626],[124.260479765625,39.978843],[124.282896757813,39.9693959785157],[124.287345,39.9638430000001],[124.281685820313,39.9491262031251],[124.283033476563,39.9383193183594],[124.22584109375,39.9259450507813],[124.211793242188,39.8893959785157],[124.202686796875,39.8575588203126],[124.152706328125,39.8281764960937],[124.120748320313,39.8321511054688],[124.061793242188,39.8193959785157],[124.009761992188,39.7993959785156],[123.9570325,39.8117470527344],[123.947345,39.823843]]]]}},{"type":"Feature","properties":{"name":"凤城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.107345,40.213843],[124.112345,40.2266506171875],[124.117345,40.213843],[124.107345,40.213843]]],[[[124.107345,40.213843],[124.087213164063,40.1904787421876],[124.056788359375,40.1769008613282],[124.03271609375,40.1384706855469],[123.984298125,40.1081435371094],[123.981539335938,40.073843],[123.982974882813,40.0559804511719],[123.942174101563,40.0592580390625],[123.892183867188,40.04835471875],[123.867345,40.062212140625],[123.835889921875,40.0446620917969],[123.782291289063,40.05933128125],[123.711158476563,40.0332082343751],[123.662843046875,40.1013491035157],[123.70197390625,40.1350612617187],[123.68271609375,40.1492153144531],[123.66197390625,40.1584706855469],[123.629049101563,40.1818141914063],[123.607345,40.173843],[123.576431914063,40.166821515625],[123.552896757813,40.1742665839844],[123.590982695313,40.2390554023438],[123.612896757813,40.2482900214844],[123.631793242188,40.2593959785157],[123.652896757813,40.2682900214844],[123.70341921875,40.3051955390625],[123.700308867188,40.3302016425782],[123.722896757813,40.3482900214844],[123.7537903125,40.3922365546875],[123.751099882813,40.413843],[123.754830351563,40.443843],[123.751724882813,40.4688430000001],[123.755284453125,40.4974843574219],[123.741793242188,40.5082900214844],[123.731085234375,40.5337026191407],[123.733316679688,40.5516689277344],[123.71127078125,40.5891762519532],[123.735391875,40.599341046875],[123.728844023438,40.651977765625],[123.671793242188,40.6682900214844],[123.652896757813,40.6793959785157],[123.625206328125,40.6910646796875],[123.571163359375,40.6843422675781],[123.573013945313,40.6992348457031],[123.550611601563,40.7299062324219],[123.553448515625,40.7527150703125],[123.578018828125,40.7723891425781],[123.551793242188,40.8082900214844],[123.547345,40.823843],[123.53916140625,40.8598622871094],[123.587345,40.853843],[123.612808867188,40.8493056464844],[123.696690703125,40.8135390449219],[123.741988554688,40.8493886542969],[123.75892703125,40.8476625800782],[123.82250125,40.8594203925781],[123.856339140625,40.8467055488282],[123.929957304688,40.8261232734376],[123.97541140625,40.8620973945313],[124.012345,40.8583339667969],[124.037345,40.8608815742188],[124.062345,40.8583339667969],[124.081954375,40.8603322578126],[124.096612578125,40.8426833320313],[124.136803007813,40.86011253125],[124.130069609375,40.9261440253906],[124.1431653125,40.9490077949219],[124.121636992188,40.9668910957032],[124.122896757813,40.979233625],[124.111881132813,40.9883803535157],[124.102808867188,41.0093056464844],[124.091456328125,41.0291213203126],[124.112808867188,41.0383803535156],[124.137345,41.0524343085937],[124.18107546875,41.0273879218751],[124.201881132813,41.0393056464844],[124.231138945313,41.0519924140626],[124.2328528125,41.068843],[124.230987578125,41.0871755195313],[124.294361601563,41.0936354804688],[124.290885039063,41.0595021796876],[124.310474882813,41.0575051093751],[124.34244265625,41.0695156074219],[124.363531523438,41.0574355292969],[124.382345,41.0593520332032],[124.392667265625,41.0583010078125],[124.4209778125,41.0745143867188],[124.472808867188,41.0593056464844],[124.507345,41.043843],[124.529595976563,40.9659523750001],[124.5361340625,40.9133766914063],[124.501676054688,40.8592153144532],[124.504156523438,40.8392958808594],[124.491099882813,40.828843],[124.519586210938,40.8060341621094],[124.5241809375,40.7690700507813],[124.4812121875,40.7429689765625],[124.483472929688,40.7247670722656],[124.451793242188,40.6993959785157],[124.442896757813,40.6882900214844],[124.431793242188,40.6793959785157],[124.4214075,40.6430800605469],[124.372345,40.6369777656251],[124.342896757813,40.640639875],[124.354117460938,40.6124428535156],[124.382896757813,40.5893959785156],[124.39373171875,40.5271498847657],[124.420279570313,40.5304518867188],[124.422965117188,40.508843],[124.420650664063,40.4902297187501],[124.433013945313,40.4692031074219],[124.430533476563,40.4492958808594],[124.448453398438,40.4349489570312],[124.461793242188,40.4182900214844],[124.474830351563,40.40784690625],[124.446236601563,40.3849489570313],[124.413702421875,40.3443202949219],[124.371890898438,40.3495217109376],[124.367345,40.3438430000001],[124.33982546875,40.3498451972657],[124.283316679688,40.3453054023437],[124.243961210938,40.390981671875],[124.199000273438,40.387368390625],[124.181300078125,40.3668288398438],[124.182745390625,40.3488430000001],[124.180167265625,40.3167360664063],[124.105386992188,40.2942214179688],[124.08271609375,40.2350612617188],[124.107345,40.213843]]]]}},{"type":"Feature","properties":{"name":"宽甸满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.74271609375,41.1492153144532],[124.760875273438,41.1281374335937],[124.825714140625,41.1398928046875],[124.87271609375,41.1292153144532],[124.90197390625,41.1184706855469],[124.97271609375,41.1092153144531],[124.992266875,41.098305890625],[125.04654421875,41.1182375312501],[125.089620390625,41.094204328125],[125.172345,41.1008522773438],[125.202623320313,41.0984194160157],[125.222266875,41.109380109375],[125.25197390625,41.0984706855469],[125.287320585938,41.0878285957032],[125.31197390625,41.0484706855469],[125.3427746875,41.0291786933594],[125.340382109375,40.9994020820313],[125.382974882813,40.9959804511719],[125.381715117188,41.0117055488281],[125.422691679688,41.0084133125001],[125.434508085938,41.0349001289063],[125.455025664063,41.0172243476563],[125.450445585938,40.9602004218751],[125.49291140625,40.9567885566406],[125.490367460938,40.988470685547],[125.529049101563,40.9774025703125],[125.49271609375,40.9261598945313],[125.52713015625,40.9053530097657],[125.565982695313,40.9270314765626],[125.577345,40.913843],[125.5676575,40.8897377753906],[125.657701445313,40.9110170722657],[125.691339140625,40.8859938789062],[125.697345,40.863843],[125.67873171875,40.8422389960937],[125.62271609375,40.807153546875],[125.63197390625,40.7984706855469],[125.68197390625,40.7761598945313],[125.661573515625,40.7592153144531],[125.59197390625,40.7684706855469],[125.574742460938,40.7884706855469],[125.544093046875,40.7662526679688],[125.53271609375,40.7284706855469],[125.457320585938,40.7169826484375],[125.442701445313,40.6684133125],[125.410162382813,40.6710268378906],[125.413511992188,40.6293386054688],[125.402047148438,40.6284169746094],[125.37060671875,40.6507118964844],[125.332345,40.6476381660157],[125.263170195313,40.6531960273438],[125.251988554688,40.6160585761719],[125.197877226563,40.6204067207031],[125.10345828125,40.5677272773438],[125.016168242188,40.5414455390626],[124.99271609375,40.5212404609375],[125.00625125,40.4879518867188],[125.031051054688,40.4899440742187],[125.03291140625,40.4667885566406],[124.977491484375,40.4712416816407],[124.925904570313,40.4522975898438],[124.897345,40.4854494453125],[124.840636015625,40.4196279121094],[124.80271609375,40.3984706855469],[124.764288359375,40.3869008613281],[124.727345,40.363843],[124.693531523438,40.3721486640625],[124.68326296875,40.3604714179688],[124.70326296875,40.3297585273438],[124.707345,40.3138430000001],[124.652564726563,40.2981935859376],[124.642345,40.2994643378907],[124.62658328125,40.2975038886719],[124.548804960938,40.2406899238282],[124.507345,40.223843],[124.501793242188,40.2282900214844],[124.489078398438,40.2870412421876],[124.409537382813,40.298618390625],[124.392896757813,40.3193959785157],[124.371793242188,40.3282900214844],[124.367345,40.3438430000001],[124.371890898438,40.3495217109376],[124.413702421875,40.3443202949219],[124.446236601563,40.3849489570313],[124.474830351563,40.40784690625],[124.461793242188,40.4182900214844],[124.448453398438,40.4349489570312],[124.430533476563,40.4492958808594],[124.433013945313,40.4692031074219],[124.420650664063,40.4902297187501],[124.422965117188,40.508843],[124.420279570313,40.5304518867188],[124.39373171875,40.5271498847657],[124.382896757813,40.5893959785156],[124.354117460938,40.6124428535156],[124.342896757813,40.640639875],[124.372345,40.6369777656251],[124.4214075,40.6430800605469],[124.431793242188,40.6793959785157],[124.442896757813,40.6882900214844],[124.451793242188,40.6993959785157],[124.483472929688,40.7247670722656],[124.4812121875,40.7429689765625],[124.5241809375,40.7690700507813],[124.519586210938,40.8060341621094],[124.491099882813,40.828843],[124.504156523438,40.8392958808594],[124.501676054688,40.8592153144532],[124.5361340625,40.9133766914063],[124.529595976563,40.9659523750001],[124.507345,41.043843],[124.511881132813,41.0593056464844],[124.528267851563,41.0729177070312],[124.541881132813,41.0893056464844],[124.566436796875,41.0999550605469],[124.656490507813,41.0907753730469],[124.679234648438,41.1181569648438],[124.708101835938,41.1306764960938],[124.727345,41.1538430000001],[124.74271609375,41.1492153144532]]]]}},{"type":"Feature","properties":{"name":"元宝区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.324845,40.2283803535157],[124.321016875,40.1907900214844],[124.372808867188,40.1793056464844],[124.392022734375,40.1683010078126],[124.402345,40.1693520332032],[124.416392851563,40.1679213691407],[124.407345,40.143843],[124.407345,40.133843],[124.397345,40.133843],[124.360704375,40.137202375],[124.351314726563,40.1557582832031],[124.327345,40.143843],[124.321881132813,40.1483803535157],[124.266236601563,40.1607680488281],[124.223272734375,40.1563893867188],[124.243511992188,40.2102529121094],[124.262345,40.2083339667969],[124.272345,40.2093520332032],[124.282667265625,40.2083010078126],[124.301881132813,40.2193056464844],[124.324845,40.2283803535157]]]]}},{"type":"Feature","properties":{"name":"振安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.723511992188,40.3220204902344],[124.707345,40.3138430000001],[124.70326296875,40.3297585273438],[124.68326296875,40.3604714179688],[124.693531523438,40.3721486640625],[124.727345,40.363843],[124.723511992188,40.3220204902344]]],[[[124.243961210938,40.390981671875],[124.283316679688,40.3453054023437],[124.33982546875,40.3498451972657],[124.367345,40.3438430000001],[124.371793242188,40.3282900214844],[124.392896757813,40.3193959785157],[124.409537382813,40.298618390625],[124.489078398438,40.2870412421876],[124.501793242188,40.2282900214844],[124.507345,40.223843],[124.502838164063,40.2062831855469],[124.483013945313,40.1775722480469],[124.470069609375,40.180473859375],[124.44142703125,40.1697585273438],[124.427022734375,40.1488930488282],[124.407345,40.143843],[124.416392851563,40.1679213691407],[124.402345,40.1693520332032],[124.392022734375,40.1683010078126],[124.372808867188,40.1793056464844],[124.321016875,40.1907900214844],[124.324845,40.2283803535157],[124.301881132813,40.2193056464844],[124.282667265625,40.2083010078126],[124.272345,40.2093520332032],[124.262345,40.2083339667969],[124.243511992188,40.2102529121094],[124.223272734375,40.1563893867188],[124.266236601563,40.1607680488281],[124.321881132813,40.1483803535157],[124.327345,40.143843],[124.33302859375,40.098344953125],[124.311793242188,40.0893959785157],[124.307345,40.0838430000001],[124.26297,40.0765541816407],[124.252857695313,40.0896572089844],[124.231256132813,40.0864650703125],[124.233140898438,40.099233625],[124.215797148438,40.1279885078126],[124.161280546875,40.0951039863282],[124.13298953125,40.1042470527344],[124.187779570313,40.1781520820313],[124.15170046875,40.1881996894531],[124.135894804688,40.2086769843751],[124.117345,40.213843],[124.112345,40.2266506171875],[124.107345,40.213843],[124.08271609375,40.2350612617188],[124.105386992188,40.2942214179688],[124.180167265625,40.3167360664063],[124.182745390625,40.3488430000001],[124.181300078125,40.3668288398438],[124.199000273438,40.387368390625],[124.243961210938,40.390981671875]]]]}},{"type":"Feature","properties":{"name":"振兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.30298953125,39.9681996894532],[124.287345,39.9638430000001],[124.282896757813,39.9693959785157],[124.260479765625,39.978843],[124.263863554688,40.0060549140626],[124.2994934375,40.0210695625],[124.307345,40.0838430000001],[124.311793242188,40.0893959785157],[124.33302859375,40.098344953125],[124.327345,40.143843],[124.351314726563,40.1557582832031],[124.360704375,40.137202375],[124.397345,40.133843],[124.38427859375,40.1169118476563],[124.36170046875,40.0994863105469],[124.35298953125,40.0881996894532],[124.33375125,40.0733498359375],[124.330128203125,40.0488430000001],[124.360484648438,40.0364174628907],[124.363140898438,40.018452375],[124.351549101563,39.9992336250001],[124.353219023438,39.9879445625001],[124.30298953125,39.9681996894532]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"凌河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.211158476563,41.1376552558594],[121.247345,41.133843],[121.239166289063,41.1176772285156],[121.197345,41.1138430000001],[121.181246367188,41.1099404121094],[121.16857546875,41.0901467109375],[121.137345,41.103843],[121.1289465625,41.1380434394532],[121.137345,41.143843],[121.141558867188,41.1370058417969],[121.189586210938,41.1528017402344],[121.211158476563,41.1376552558594]]]]}},{"type":"Feature","properties":{"name":"古塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.077345,41.143843],[121.065152617188,41.1472658515625],[121.073922148438,41.1560353828125],[121.077345,41.143843]]],[[[121.077345,41.143843],[121.103985625,41.147202375],[121.111422148438,41.1618984199219],[121.133985625,41.150483625],[121.137345,41.143843],[121.1289465625,41.1380434394532],[121.137345,41.103843],[121.110704375,41.107202375],[121.093985625,41.120483625],[121.06927859375,41.1276137519531],[121.077345,41.143843]]]]}},{"type":"Feature","properties":{"name":"太和区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.183922148438,41.0360353828125],[121.187345,41.023843],[121.175152617188,41.0272658515625],[121.183922148438,41.0360353828125]]],[[[121.077345,41.143843],[121.073922148438,41.1560353828125],[121.065152617188,41.1472658515625],[121.06927859375,41.1276137519531],[121.093985625,41.120483625],[121.110704375,41.107202375],[121.137345,41.103843],[121.16857546875,41.0901467109375],[121.181246367188,41.1099404121094],[121.197345,41.1138430000001],[121.20142703125,41.0979274726563],[121.21422,41.078286359375],[121.187257109375,41.0681972480469],[121.173013945313,41.0475722480469],[121.162066679688,41.0500258613281],[121.11380984375,41.0297585273438],[121.05142703125,41.0379274726563],[121.027345,41.043843],[120.991080351563,41.0349355292969],[120.937354765625,41.0515883613282],[120.9446496875,41.0841127753907],[120.937345,41.1138430000001],[120.95326296875,41.1179274726562],[120.96142703125,41.1297585273437],[120.99490359375,41.1383498359375],[121.02326296875,41.1579274726562],[121.042271757813,41.1854640937501],[121.082183867188,41.1944106269531],[121.122647734375,41.177415998047],[121.168175078125,41.2153823066406],[121.202345,41.2077223945312],[121.213053007813,41.210122296875],[121.23142703125,41.1779274726563],[121.2651965625,41.1692629218751],[121.25107546875,41.1595131660156],[121.253526640625,41.1485646796875],[121.247345,41.133843],[121.211158476563,41.1376552558594],[121.189586210938,41.1528017402344],[121.141558867188,41.1370058417969],[121.137345,41.143843],[121.133985625,41.150483625],[121.111422148438,41.1618984199219],[121.103985625,41.147202375],[121.077345,41.143843]]],[[[121.227345,41.273843],[121.207769804688,41.2493959785157],[121.183609648438,41.2628444648438],[121.202896757813,41.2782900214844],[121.207345,41.283843],[121.217345,41.283843],[121.217345,41.273843],[121.227345,41.273843]]],[[[121.227345,41.273843],[121.227345,41.293843],[121.227345,41.3038430000001],[121.237345,41.3038430000001],[121.2609778125,41.2887148261719],[121.2709778125,41.2531264472657],[121.227345,41.273843]]]]}},{"type":"Feature","properties":{"name":"黑山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.197345,41.473843],[122.197345,41.463843],[122.187345,41.463843],[122.187345,41.473843],[122.197345,41.473843]]],[[[122.467345,42.033843],[122.470767851563,42.0460353828126],[122.479537382813,42.0372658515625],[122.467345,42.033843]]],[[[122.467345,42.033843],[122.483077421875,42.0095778632813],[122.501612578125,41.9381081367188],[122.518140898438,41.8969838691406],[122.453526640625,41.9081081367188],[122.433756132813,41.8939528632812],[122.453077421875,41.8795778632813],[122.461612578125,41.8381081367188],[122.503839140625,41.8213271308594],[122.533077421875,41.7995778632813],[122.54177859375,41.7878847480469],[122.55291140625,41.7898012519532],[122.561612578125,41.7781081367188],[122.583077421875,41.7695778632813],[122.587345,41.7638430000001],[122.583624296875,41.7575649238281],[122.571065703125,41.7501210761719],[122.563624296875,41.7175649238282],[122.540445585938,41.6893679023438],[122.54642703125,41.6719606757813],[122.532345,41.6671254707032],[122.504498320313,41.6766884589844],[122.516666289063,41.641264875],[122.491065703125,41.6101210761719],[122.483624296875,41.5875649238282],[122.470147734375,41.579575421875],[122.477345,41.5638430000001],[122.46298953125,41.5581996894531],[122.355523710938,41.5489553046875],[122.247340117188,41.5059535957031],[122.197345,41.473843],[122.192628203125,41.4991237617188],[122.105640898438,41.5477407050782],[122.078678007813,41.5601149726563],[122.04310671875,41.5579946113282],[122.017994414063,41.5716396308594],[122.03373171875,41.6005947089844],[122.031451445313,41.638843],[122.033111601563,41.666684796875],[121.9820325,41.6785695625001],[121.98322390625,41.6985903144531],[121.972061796875,41.7085622382812],[121.962628203125,41.7291237617188],[121.893853789063,41.7790358710938],[121.827345,41.783843],[121.838365507813,41.7981215644531],[121.864859648438,41.8089650703126],[121.830474882813,41.818540265625],[121.84298953125,41.8281996894531],[121.85170046875,41.8394863105469],[121.89298953125,41.8481996894532],[121.9210559375,41.8651308417969],[121.95298953125,41.8781996894532],[121.96170046875,41.8894863105469],[121.9786340625,41.9025551582031],[121.99170046875,41.9194863105469],[122.02298953125,41.9281996894532],[122.06170046875,41.9594863105469],[122.09298953125,41.9781996894531],[122.10978640625,41.9999599433594],[122.122857695313,41.9980287910156],[122.133902617188,42.0123378730469],[122.27298953125,42.0681996894532],[122.296768828125,42.0825441718751],[122.35298953125,42.0981996894532],[122.40170046875,42.1194863105469],[122.417345,42.123843],[122.427345,42.123843],[122.440338164063,42.1177895332031],[122.428873320313,42.0977895332032],[122.448077421875,42.088843],[122.426612578125,42.078843],[122.445816679688,42.0698964667969],[122.438873320313,42.0577895332032],[122.454166289063,42.0506642890625],[122.460523710938,42.0370217109375],[122.467345,42.033843]]]]}},{"type":"Feature","properties":{"name":"凌海市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.193922148438,40.9260353828125],[121.197345,40.913843],[121.185152617188,40.9172658515625],[121.193922148438,40.9260353828125]]],[[[121.753531523438,41.1000307441406],[121.757345,41.083843],[121.71029421875,41.0877272773438],[121.673531523438,41.1002541328126],[121.753531523438,41.1000307441406]]],[[[121.227345,41.273843],[121.217345,41.273843],[121.217345,41.283843],[121.217345,41.293843],[121.227345,41.293843],[121.227345,41.273843]]],[[[121.187345,40.943843],[121.197345,40.943843],[121.197345,40.9538430000001],[121.209537382813,40.9572658515625],[121.200767851563,40.9660353828125],[121.197345,40.9538430000001],[121.187345,40.9538430000001],[121.181519804688,40.9396681953125],[121.170152617188,40.9101882148438],[121.132310820313,40.8830678535156],[121.081519804688,40.8696681953125],[121.070797148438,40.8161843085938],[121.01162234375,40.8278786445313],[121.003170195313,40.8396681953125],[120.997345,40.8438430000001],[121.001612578125,40.8595778632813],[121.022633085938,40.8752138496094],[121.031612578125,40.9332314277344],[121.003756132813,40.9539516425781],[121.013155546875,41.0085378242188],[121.027345,41.043843],[121.05142703125,41.0379274726563],[121.11380984375,41.0297585273438],[121.162066679688,41.0500258613281],[121.173013945313,41.0475722480469],[121.187257109375,41.0681972480469],[121.21422,41.078286359375],[121.20142703125,41.0979274726563],[121.197345,41.1138430000001],[121.239166289063,41.1176772285156],[121.247345,41.133843],[121.253526640625,41.1485646796875],[121.25107546875,41.1595131660156],[121.2651965625,41.1692629218751],[121.23142703125,41.1779274726563],[121.213053007813,41.210122296875],[121.202345,41.2077223945312],[121.168175078125,41.2153823066406],[121.122647734375,41.177415998047],[121.082183867188,41.1944106269531],[121.042271757813,41.1854640937501],[121.02326296875,41.1579274726562],[120.99490359375,41.1383498359375],[120.96142703125,41.1297585273437],[120.95326296875,41.1179274726562],[120.937345,41.1138430000001],[120.93330203125,41.12151878125],[120.922345,41.11659690625],[120.8992590625,41.1269692207031],[120.905142851563,41.1400673652344],[120.869698515625,41.1572927070313],[120.857345,41.133843],[120.847345,41.133843],[120.815303984375,41.1388930488282],[120.77970828125,41.1620729804688],[120.788853789063,41.2028774238281],[120.767345,41.1938430000001],[120.7534778125,41.2088088203125],[120.703389921875,41.2207399726563],[120.763331328125,41.249028546875],[120.7317590625,41.2782851386719],[120.742535429688,41.2986525703125],[120.752154570313,41.3490334296875],[120.767725859375,41.363462140625],[120.777345,41.393843],[120.804195585938,41.4013198066407],[120.800225859375,41.4281996894532],[120.81298953125,41.4194863105469],[120.831754179688,41.3951772285157],[120.841783476563,41.4196852851563],[120.877345,41.4138430000001],[120.88142703125,41.3979274726563],[120.896280546875,41.3876723457032],[120.881046171875,41.3385182929688],[120.89408328125,41.3184950996094],[120.87326296875,41.3041188789063],[120.925728789063,41.2862392402344],[120.942345,41.2899636054688],[120.961676054688,41.285630109375],[120.9770715625,41.3079274726562],[120.99326296875,41.2997585273438],[121.005553007813,41.2819545722657],[121.050440703125,41.316743390625],[121.085548125,41.3314882636719],[121.102345,41.3277223945313],[121.117345,41.3310842109376],[121.132345,41.3277223945313],[121.142789335938,41.3300637031251],[121.161900664063,41.317622296875],[121.173013945313,41.3201137519532],[121.18142703125,41.3079274726562],[121.199176054688,41.2956740546875],[121.207345,41.283843],[121.202896757813,41.2782900214844],[121.183609648438,41.2628444648438],[121.207769804688,41.2493959785157],[121.227345,41.273843],[121.2709778125,41.2531264472657],[121.2609778125,41.2887148261719],[121.237345,41.3038430000001],[121.250728789063,41.3193752265625],[121.262642851563,41.3184169746094],[121.29408328125,41.3407118964844],[121.366329375,41.334907453125],[121.394586210938,41.3506716132813],[121.525050078125,41.3401894355469],[121.521138945313,41.388843],[121.54271609375,41.3984706855469],[121.55197390625,41.4092153144531],[121.587345,41.433843],[121.59142703125,41.4279274726563],[121.628961210938,41.4065041328125],[121.643682890625,41.3491481757813],[121.70326296875,41.3397585273438],[121.717345,41.333843],[121.711246367188,41.314575421875],[121.649371367188,41.2949867988282],[121.632154570313,41.2790334296875],[121.622535429688,41.2686525703126],[121.572535429688,41.2363649726563],[121.586011992188,41.2115517402344],[121.621822539063,41.1946498847656],[121.562535429688,41.1563649726563],[121.578941679688,41.1090908027344],[121.671846953125,41.0963942695313],[121.672550078125,41.0786916328126],[121.661783476563,41.0479787421875],[121.664874296875,40.9700832343751],[121.642154570313,40.9490334296876],[121.632535429688,40.9286525703126],[121.622154570313,40.9190334296876],[121.596422148438,40.8791835761719],[121.557345,40.873843],[121.498863554688,40.8602919746094],[121.503170195313,40.8894130683594],[121.47673953125,40.9002309394532],[121.437857695313,40.8944850898438],[121.41298953125,40.9094863105469],[121.347564726563,40.9206008125001],[121.332857695313,40.9396572089844],[121.310494414063,40.9363527656251],[121.313175078125,40.9182326484375],[121.265264921875,40.9094863105469],[121.252808867188,40.9399233222656],[121.21990359375,40.92698753125],[121.197838164063,40.9302480292969],[121.187345,40.943843]],[[121.187345,41.023843],[121.183922148438,41.0360353828125],[121.175152617188,41.0272658515625],[121.187345,41.023843]]]]}},{"type":"Feature","properties":{"name":"北镇市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.03373171875,41.6005947089844],[122.017994414063,41.5716396308594],[122.04310671875,41.5579946113282],[122.078678007813,41.5601149726563],[122.105640898438,41.5477407050782],[122.192628203125,41.4991237617188],[122.197345,41.473843],[122.187345,41.473843],[122.187345,41.463843],[122.187345,41.4538430000001],[122.171793242188,41.4493959785157],[122.14537234375,41.4338649726563],[122.132896757813,41.4182900214844],[122.111793242188,41.4093959785157],[122.083453398438,41.3927370429687],[122.051793242188,41.3793959785157],[122.027345,41.3650258613282],[122.002896757813,41.3793959785157],[121.966920195313,41.3882900214844],[121.902711210938,41.3505458808594],[121.87834109375,41.3201113105469],[121.862896757813,41.3393959785157],[121.841129179688,41.3568288398438],[121.790181914063,41.3372463203125],[121.771890898438,41.3395217109376],[121.762799101563,41.3281642890625],[121.717345,41.333843],[121.70326296875,41.3397585273438],[121.643682890625,41.3491481757813],[121.628961210938,41.4065041328125],[121.59142703125,41.4279274726563],[121.587345,41.433843],[121.59170046875,41.4494863105469],[121.60312625,41.4785512519531],[121.601607695313,41.4888430000001],[121.603160429688,41.4993544746094],[121.569600859375,41.525259015625],[121.574561796875,41.558843],[121.569967070313,41.5899330878906],[121.590767851563,41.5868593574219],[121.61170046875,41.5994863105469],[121.6722278125,41.6163417792969],[121.693253203125,41.6677077460938],[121.690865507813,41.6838430000001],[121.697218046875,41.7268044257813],[121.733560820313,41.748540265625],[121.72170046875,41.7681996894532],[121.717345,41.7938430000001],[121.787447539063,41.8026015449219],[121.811793242188,41.7882900214844],[121.827345,41.783843],[121.893853789063,41.7790358710938],[121.962628203125,41.7291237617188],[121.972061796875,41.7085622382812],[121.98322390625,41.6985903144531],[121.9820325,41.6785695625001],[122.033111601563,41.666684796875],[122.031451445313,41.638843],[122.03373171875,41.6005947089844]]]]}},{"type":"Feature","properties":{"name":"义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.717345,41.7938430000001],[121.72170046875,41.7681996894532],[121.733560820313,41.748540265625],[121.697218046875,41.7268044257813],[121.690865507813,41.6838430000001],[121.693253203125,41.6677077460938],[121.6722278125,41.6163417792969],[121.61170046875,41.5994863105469],[121.590767851563,41.5868593574219],[121.569967070313,41.5899330878906],[121.574561796875,41.558843],[121.569600859375,41.525259015625],[121.603160429688,41.4993544746094],[121.601607695313,41.4888430000001],[121.60312625,41.4785512519531],[121.59170046875,41.4494863105469],[121.587345,41.433843],[121.55197390625,41.4092153144531],[121.54271609375,41.3984706855469],[121.521138945313,41.388843],[121.525050078125,41.3401894355469],[121.394586210938,41.3506716132813],[121.366329375,41.334907453125],[121.29408328125,41.3407118964844],[121.262642851563,41.3184169746094],[121.250728789063,41.3193752265625],[121.237345,41.3038430000001],[121.227345,41.3038430000001],[121.227345,41.293843],[121.217345,41.293843],[121.217345,41.283843],[121.207345,41.283843],[121.199176054688,41.2956740546875],[121.18142703125,41.3079274726562],[121.173013945313,41.3201137519532],[121.161900664063,41.317622296875],[121.142789335938,41.3300637031251],[121.132345,41.3277223945313],[121.117345,41.3310842109376],[121.102345,41.3277223945313],[121.085548125,41.3314882636719],[121.050440703125,41.316743390625],[121.005553007813,41.2819545722657],[120.99326296875,41.2997585273438],[120.9770715625,41.3079274726562],[120.961676054688,41.285630109375],[120.942345,41.2899636054688],[120.925728789063,41.2862392402344],[120.87326296875,41.3041188789063],[120.89408328125,41.3184950996094],[120.881046171875,41.3385182929688],[120.896280546875,41.3876723457032],[120.88142703125,41.3979274726563],[120.877345,41.4138430000001],[120.88197390625,41.4692153144532],[120.89271609375,41.4784706855469],[120.90197390625,41.5192153144531],[120.959576445313,41.5449184394532],[120.972769804688,41.5685646796875],[120.971085234375,41.5895107246094],[121.053902617188,41.6199233222656],[121.098624296875,41.6163295722657],[121.12345828125,41.6377272773438],[121.14197390625,41.6592153144532],[121.221295195313,41.6808071113281],[121.224176054688,41.7166030097656],[121.208878203125,41.7440163398438],[121.22197390625,41.7592153144532],[121.24271609375,41.7684706855469],[121.25197390625,41.7792153144532],[121.257345,41.783843],[121.283985625,41.7804836250001],[121.293336210938,41.7620009589844],[121.31740359375,41.773755109375],[121.337345,41.7638430000001],[121.33099734375,41.7364589667969],[121.356939726563,41.7164357734375],[121.42834109375,41.7372548652344],[121.456627226563,41.6899599433594],[121.47170046875,41.7094863105469],[121.50459109375,41.7186452460938],[121.501607695313,41.738843],[121.50375125,41.7533498359375],[121.52298953125,41.7681996894532],[121.527345,41.773843],[121.5318371875,41.7794509101563],[121.621890898438,41.7906520820313],[121.632799101563,41.7770339179688],[121.657345,41.7800868964844],[121.672799101563,41.7781642890625],[121.681793242188,41.7893959785157],[121.717345,41.7938430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大石桥市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.747345,40.443843],[122.759537382813,40.4472658515626],[122.750767851563,40.4560353828125],[122.69170046875,40.4481996894531],[122.67248171875,40.4597927070313],[122.64263796875,40.4480605292969],[122.627838164063,40.4502480292969],[122.598238554688,40.4885951972657],[122.532232695313,40.4998073554688],[122.499845,40.4802700019532],[122.43298953125,40.5094863105469],[122.407345,40.513843],[122.407345,40.523843],[122.445128203125,40.5302614570313],[122.437345,40.563843],[122.44312625,40.5785512519532],[122.43798953125,40.6133303046876],[122.453516875,40.639077375],[122.44170046875,40.6481996894532],[122.43298953125,40.6894863105469],[122.36170046875,40.7181996894531],[122.3500403125,40.7466957832031],[122.30298953125,40.7281996894532],[122.267345,40.723843],[122.267345,40.7338430000001],[122.247345,40.7338430000001],[122.227345,40.7338430000001],[122.211363554688,40.7417873359375],[122.207345,40.7338430000001],[122.086495390625,40.7961794257813],[122.122896757813,40.8182900214844],[122.151954375,40.8395131660156],[122.17447390625,40.8367116523438],[122.169425078125,40.8773159003906],[122.205421171875,40.8561550117187],[122.252125273438,40.8694924140625],[122.271402617188,40.8670937324219],[122.317345,40.903843],[122.322345,40.8910353828125],[122.327345,40.903843],[122.34478640625,40.91069846875],[122.362735625,40.9080458808594],[122.385640898438,40.9218617988281],[122.46607546875,40.9405007148438],[122.506470976563,40.9239699531251],[122.490362578125,40.8972658515625],[122.494327421875,40.8704201484375],[122.481080351563,40.8484535957032],[122.518795195313,40.8330178046876],[122.536392851563,40.8038430000001],[122.515660429688,40.7694741035156],[122.56298953125,40.7594863105469],[122.571832304688,40.7480287910157],[122.640230742188,40.7581362128906],[122.64744265625,40.7093544746094],[122.61298953125,40.6827614570313],[122.62170046875,40.6681996894532],[122.653267851563,40.659408185547],[122.637261992188,40.5903334785157],[122.652554960938,40.5880727363282],[122.69244265625,40.5997023750001],[122.72170046875,40.5881996894532],[122.7987121875,40.5679848457031],[122.825264921875,40.5335842109375],[122.867345,40.5273647285157],[122.922266875,40.5354811835937],[122.94298953125,40.5194863105469],[122.951832304688,40.5080287910156],[122.96490359375,40.5099599433594],[122.98170046875,40.4881996894531],[122.997345,40.483843],[122.98154421875,40.4592458320313],[122.9870325,40.4221108222657],[122.93298953125,40.4070607734375],[122.920416289063,40.333051984375],[122.887345,40.323843],[122.811300078125,40.3367617011719],[122.815386992188,40.3644130683594],[122.78170046875,40.3781996894531],[122.7686340625,40.3951308417969],[122.737608671875,40.4190761542969],[122.747345,40.443843]]]]}},{"type":"Feature","properties":{"name":"盖州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.747345,40.443843],[122.750767851563,40.4560353828125],[122.759537382813,40.4472658515626],[122.747345,40.443843]]],[[[122.747345,40.443843],[122.737608671875,40.4190761542969],[122.7686340625,40.3951308417969],[122.78170046875,40.3781996894531],[122.815386992188,40.3644130683594],[122.811300078125,40.3367617011719],[122.887345,40.323843],[122.86662234375,40.2711244941406],[122.88298953125,40.2294863105469],[122.887345,40.1938430000001],[122.862105742188,40.1728774238281],[122.838189726563,40.1177370429688],[122.822022734375,40.1193849921876],[122.799644804688,40.1065700507813],[122.772345,40.1093520332032],[122.7576575,40.1078554511719],[122.702691679688,40.0682973457032],[122.692301054688,40.0693569160156],[122.525836210938,40.0489394355469],[122.543233671875,40.0185646796876],[122.5132434375,40.0055580878906],[122.534879179688,39.987583234375],[122.556881132813,39.9368520332032],[122.521173125,39.9404909492188],[122.507345,39.923843],[122.47170046875,39.9381996894532],[122.45298953125,39.9494863105469],[122.43170046875,39.9581996894531],[122.412735625,39.9696401191406],[122.402345,39.9681044746094],[122.392345,39.9695815253907],[122.365889921875,39.9656728339844],[122.340767851563,39.9808266425782],[122.322345,39.9781044746094],[122.312017851563,39.9796303535157],[122.277345,39.9638430000001],[122.241954375,40.0162917304688],[122.210406523438,39.9962624335937],[122.183267851563,40.0016237617188],[122.161510039063,40.0319814277344],[122.081519804688,40.0480178046875],[122.0532825,40.0659450507813],[121.983033476563,40.0520632148438],[121.967345,40.113843],[122.013424101563,40.1404103828125],[122.009932890625,40.183843],[122.04271609375,40.1984706855469],[122.087345,40.223843],[122.115592070313,40.2139418769531],[122.132159453125,40.249048078125],[122.179390898438,40.2471767402344],[122.152139921875,40.2986794257813],[122.152701445313,40.3128749824219],[122.211475859375,40.3314833808594],[122.187345,40.3538430000001],[122.205548125,40.3821804023438],[122.20009890625,40.4190407539063],[122.23298953125,40.4281996894532],[122.272369414063,40.4573952460938],[122.277345,40.4638430000001],[122.306060820313,40.4504262519532],[122.3709778125,40.5102114082032],[122.407345,40.513843],[122.43298953125,40.5094863105469],[122.499845,40.4802700019532],[122.532232695313,40.4998073554688],[122.598238554688,40.4885951972657],[122.627838164063,40.4502480292969],[122.64263796875,40.4480605292969],[122.67248171875,40.4597927070313],[122.69170046875,40.4481996894531],[122.747345,40.443843]]],[[[122.445128203125,40.5302614570313],[122.407345,40.523843],[122.399288359375,40.5279189277344],[122.415201445313,40.5593727851563],[122.437345,40.563843],[122.445128203125,40.5302614570313]]]]}},{"type":"Feature","properties":{"name":"老边区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.267345,40.723843],[122.247345,40.723843],[122.247345,40.7338430000001],[122.267345,40.7338430000001],[122.267345,40.723843]]],[[[122.237345,40.713843],[122.19974734375,40.6997158027344],[122.207345,40.7338430000001],[122.211363554688,40.7417873359375],[122.227345,40.7338430000001],[122.237345,40.713843]]],[[[122.267345,40.723843],[122.30298953125,40.7281996894532],[122.3500403125,40.7466957832031],[122.36170046875,40.7181996894531],[122.43298953125,40.6894863105469],[122.44170046875,40.6481996894532],[122.453516875,40.639077375],[122.43798953125,40.6133303046876],[122.44312625,40.5785512519532],[122.437345,40.563843],[122.415201445313,40.5593727851563],[122.399288359375,40.5279189277344],[122.407345,40.523843],[122.407345,40.513843],[122.3709778125,40.5102114082032],[122.306060820313,40.4504262519532],[122.277345,40.4638430000001],[122.285787382813,40.5050575996094],[122.26513796875,40.5265468574219],[122.22244265625,40.5589430976563],[122.132735625,40.6098049140625],[122.147345,40.6238430000001],[122.16298953125,40.6281996894532],[122.1760559375,40.6451308417969],[122.227345,40.6538430000001],[122.239039335938,40.6397658515626],[122.271881132813,40.6793056464844],[122.28732546875,40.6921340156251],[122.267345,40.723843]]]]}},{"type":"Feature","properties":{"name":"西市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.16298953125,40.6281996894532],[122.147345,40.6238430000001],[122.169273710938,40.6678078437501],[122.150704375,40.6772023750001],[122.147345,40.683843],[122.155323515625,40.7149282050782],[122.195303984375,40.6888930488282],[122.227345,40.683843],[122.227345,40.6538430000001],[122.1760559375,40.6451308417969],[122.16298953125,40.6281996894532]]]]}},{"type":"Feature","properties":{"name":"站前区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.247345,40.7338430000001],[122.247345,40.723843],[122.267345,40.723843],[122.28732546875,40.6921340156251],[122.271881132813,40.6793056464844],[122.239039335938,40.6397658515626],[122.227345,40.6538430000001],[122.227345,40.683843],[122.25326296875,40.6879274726563],[122.27142703125,40.7050954414063],[122.237345,40.713843],[122.227345,40.7338430000001],[122.247345,40.7338430000001]]]]}},{"type":"Feature","properties":{"name":"鲅鱼圈区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.152139921875,40.2986794257813],[122.179390898438,40.2471767402344],[122.132159453125,40.249048078125],[122.115592070313,40.2139418769531],[122.087345,40.223843],[122.11142703125,40.2602883125],[122.10326296875,40.2797585273438],[122.087120390625,40.290903546875],[122.13142703125,40.3197585273438],[122.15326296875,40.3279274726563],[122.16142703125,40.3397585273438],[122.187345,40.3538430000001],[122.211475859375,40.3314833808594],[122.152701445313,40.3128749824219],[122.152139921875,40.2986794257813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.631851835938,42.0331972480469],[121.652345,42.0274379707032],[121.662584257813,42.0303151679687],[121.677345,42.0238430000001],[121.673985625,42.0172023750001],[121.647437773438,42.0037721992188],[121.663985625,41.9704836250001],[121.667345,41.9538430000001],[121.657345,41.933843],[121.641246367188,41.9377455878906],[121.633443632813,41.9499404121094],[121.583912382813,41.9673598457031],[121.622159453125,41.9808119941406],[121.631851835938,42.0331972480469]]]]}},{"type":"Feature","properties":{"name":"清河门区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.452896757813,41.7893959785157],[121.462847929688,41.7657851386719],[121.527345,41.773843],[121.52298953125,41.7681996894532],[121.50375125,41.7533498359375],[121.501607695313,41.738843],[121.50459109375,41.7186452460938],[121.47170046875,41.7094863105469],[121.456627226563,41.6899599433594],[121.42834109375,41.7372548652344],[121.356939726563,41.7164357734375],[121.33099734375,41.7364589667969],[121.337345,41.7638430000001],[121.372896757813,41.7682900214844],[121.417789335938,41.8041909003907],[121.452896757813,41.7893959785157]]]]}},{"type":"Feature","properties":{"name":"太平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.747345,42.033843],[121.74326296875,42.0279274726563],[121.7305871875,42.0191762519531],[121.709454375,41.9867287421875],[121.71361453125,41.9681728339844],[121.70142703125,41.9597585273438],[121.697345,41.9538430000001],[121.667345,41.9538430000001],[121.663985625,41.9704836250001],[121.647437773438,42.0037721992188],[121.673985625,42.0172023750001],[121.677345,42.0238430000001],[121.70470828125,42.0107900214844],[121.717345,42.033843],[121.737345,42.033843],[121.747345,42.033843]]],[[[121.747345,42.033843],[121.747345,42.043843],[121.760152617188,42.038843],[121.747345,42.033843]]]]}},{"type":"Feature","properties":{"name":"阜新蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,42.283843],[122.327345,42.2938430000001],[122.340152617188,42.288843],[122.327345,42.283843]]],[[[121.597345,42.503843],[121.600767851563,42.5160353828125],[121.609537382813,42.5072658515626],[121.597345,42.503843]]],[[[122.327345,42.2938430000001],[122.314537382813,42.288843],[122.327345,42.283843],[122.332857695313,42.2767018867188],[122.352735625,42.2796401191407],[122.37170046875,42.2681996894532],[122.393170195313,42.2594130683594],[122.391607695313,42.248843],[122.393824492188,42.233843],[122.38845828125,42.1975295234376],[122.404425078125,42.1998891425782],[122.417345,42.123843],[122.40170046875,42.1194863105469],[122.35298953125,42.0981996894532],[122.296768828125,42.0825441718751],[122.27298953125,42.0681996894532],[122.133902617188,42.0123378730469],[122.122857695313,41.9980287910156],[122.10978640625,41.9999599433594],[122.09298953125,41.9781996894531],[122.06170046875,41.9594863105469],[122.02298953125,41.9281996894532],[121.99170046875,41.9194863105469],[121.9786340625,41.9025551582031],[121.96170046875,41.8894863105469],[121.95298953125,41.8781996894532],[121.9210559375,41.8651308417969],[121.89298953125,41.8481996894532],[121.85170046875,41.8394863105469],[121.84298953125,41.8281996894531],[121.830474882813,41.818540265625],[121.864859648438,41.8089650703126],[121.838365507813,41.7981215644531],[121.827345,41.783843],[121.811793242188,41.7882900214844],[121.787447539063,41.8026015449219],[121.717345,41.7938430000001],[121.681793242188,41.7893959785157],[121.672799101563,41.7781642890625],[121.657345,41.7800868964844],[121.632799101563,41.7770339179688],[121.621890898438,41.7906520820313],[121.5318371875,41.7794509101563],[121.527345,41.773843],[121.462847929688,41.7657851386719],[121.452896757813,41.7893959785157],[121.417789335938,41.8041909003907],[121.372896757813,41.7682900214844],[121.337345,41.7638430000001],[121.31740359375,41.773755109375],[121.293336210938,41.7620009589844],[121.283985625,41.7804836250001],[121.257345,41.783843],[121.262154570313,41.7990334296875],[121.27482546875,41.8351784492187],[121.302115507813,41.8867519355469],[121.252154570313,41.8986525703125],[121.206597929688,41.9146205878907],[121.192535429688,41.9590334296875],[121.172154570313,41.9686525703125],[121.1523840625,41.9791139960937],[121.118433867188,41.9672145820313],[121.041807890625,41.9702516914063],[121.042545195313,41.9888430000001],[121.042144804688,41.998843],[121.043136015625,42.0238430000001],[121.041729765625,42.0593740058595],[121.062535429688,42.0786525703125],[121.0789465625,42.1134255195313],[121.051417265625,42.1804457832031],[121.052550078125,42.2090200019532],[121.03248171875,42.22761253125],[121.027345,42.243843],[121.030704375,42.250483625],[121.063985625,42.257202375],[121.091881132813,42.2815102363282],[121.111353789063,42.2720009589844],[121.127393828125,42.3037038398438],[121.143336210938,42.2959169746094],[121.15406375,42.31712425],[121.173985625,42.327202375],[121.18406375,42.34712425],[121.203985625,42.3572023750001],[121.207345,42.363843],[121.211612578125,42.3695778632813],[121.271207304688,42.3818373847657],[121.293077421875,42.3981081367187],[121.304288359375,42.4394594550782],[121.373077421875,42.4581081367188],[121.385733671875,42.475122296875],[121.412345,42.4797035957031],[121.44623171875,42.4738698554688],[121.476285429688,42.4924684882813],[121.549703398438,42.479829328125],[121.581612578125,42.4995778632813],[121.597345,42.503843],[121.609595976563,42.4860964179688],[121.63326296875,42.4697585273438],[121.66033328125,42.4305458808594],[121.708756132813,42.4414003730469],[121.735426054688,42.4800283027344],[121.790069609375,42.500473859375],[121.805694609375,42.4969704414062],[121.828995390625,42.5307155585937],[121.842345,42.5277223945313],[121.852345,42.5299636054688],[121.863116484375,42.5275490546876],[121.87142703125,42.5497585273438],[121.889176054688,42.5620119453125],[121.897345,42.573843],[121.94197390625,42.5484706855469],[122.03838015625,42.4961415839844],[122.069371367188,42.4466616035156],[122.104586210938,42.4270143867188],[122.151373320313,42.4307741523437],[122.16197390625,42.4184706855469],[122.1727746875,42.4091664863282],[122.1719153125,42.3984963203126],[122.19271609375,42.3892153144532],[122.20197390625,42.3784706855469],[122.223287382813,42.3689614082031],[122.211539335938,42.358843],[122.22271609375,42.3492153144532],[122.232022734375,42.3384157539063],[122.242623320313,42.3392665839844],[122.26197390625,42.3284706855469],[122.306158476563,42.3184328437501],[122.327345,42.2938430000001]],[[121.783912382813,42.12788596875],[121.74970828125,42.1056130195313],[121.753468046875,42.088843],[121.750474882813,42.0754921699219],[121.767345,42.0638430000001],[121.767345,42.053843],[121.747345,42.053843],[121.747345,42.043843],[121.747345,42.033843],[121.737345,42.033843],[121.727345,42.0477956367188],[121.717345,42.033843],[121.70142703125,42.0379274726563],[121.691529570313,42.0765065742187],[121.652198515625,42.0676894355469],[121.6014465625,42.0834206367188],[121.57959109375,42.11507346875],[121.54422,42.0920412421875],[121.585611601563,42.0684169746094],[121.578980742188,42.038843],[121.583468046875,42.018843],[121.581221953125,42.008843],[121.5858215625,41.9883315253906],[121.52529421875,41.9787917304688],[121.584605742188,41.9388539863281],[121.569132109375,41.9281728339844],[121.57494265625,41.9022499824219],[121.652027617188,41.9261440253906],[121.657345,41.933843],[121.689176054688,41.9420119453126],[121.697345,41.9538430000001],[121.739615507813,41.9470290351563],[121.777550078125,41.9616091132813],[121.791793242188,41.9793959785157],[121.83468875,41.9916616035156],[121.883370390625,41.9856056953125],[121.881724882813,41.998843],[121.882965117188,42.008843],[121.874058867188,42.0804592109376],[121.851793242188,42.0982900214844],[121.847345,42.1038430000001],[121.847345,42.113843],[121.817345,42.113843],[121.783912382813,42.12788596875]]]]}},{"type":"Feature","properties":{"name":"细河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.657345,41.933843],[121.667345,41.9538430000001],[121.697345,41.9538430000001],[121.689176054688,41.9420119453126],[121.657345,41.933843]]],[[[121.717345,42.033843],[121.727345,42.0477956367188],[121.737345,42.033843],[121.717345,42.033843]]],[[[121.767345,42.053843],[121.767345,42.0638430000001],[121.780152617188,42.058843],[121.767345,42.053843]]],[[[121.697345,41.9538430000001],[121.70142703125,41.9597585273438],[121.71361453125,41.9681728339844],[121.709454375,41.9867287421875],[121.7305871875,42.0191762519531],[121.74326296875,42.0279274726563],[121.747345,42.033843],[121.760152617188,42.038843],[121.747345,42.043843],[121.747345,42.053843],[121.767345,42.053843],[121.771158476563,42.0476552558594],[121.803057890625,42.0367848945313],[121.827374296875,42.0814516425782],[121.817345,42.1038430000001],[121.847345,42.1038430000001],[121.851793242188,42.0982900214844],[121.874058867188,42.0804592109376],[121.882965117188,42.008843],[121.881724882813,41.998843],[121.883370390625,41.9856056953125],[121.83468875,41.9916616035156],[121.791793242188,41.9793959785157],[121.777550078125,41.9616091132813],[121.739615507813,41.9470290351563],[121.697345,41.9538430000001]]],[[[121.717345,42.033843],[121.70470828125,42.0107900214844],[121.677345,42.0238430000001],[121.662584257813,42.0303151679687],[121.652345,42.0274379707032],[121.631851835938,42.0331972480469],[121.622159453125,41.9808119941406],[121.583912382813,41.9673598457031],[121.633443632813,41.9499404121094],[121.641246367188,41.9377455878906],[121.657345,41.933843],[121.652027617188,41.9261440253906],[121.57494265625,41.9022499824219],[121.569132109375,41.9281728339844],[121.584605742188,41.9388539863281],[121.52529421875,41.9787917304688],[121.5858215625,41.9883315253906],[121.581221953125,42.008843],[121.583468046875,42.018843],[121.578980742188,42.038843],[121.585611601563,42.0684169746094],[121.54422,42.0920412421875],[121.57959109375,42.11507346875],[121.6014465625,42.0834206367188],[121.652198515625,42.0676894355469],[121.691529570313,42.0765065742187],[121.70142703125,42.0379274726563],[121.717345,42.033843]]],[[[121.817345,42.1038430000001],[121.78170046875,42.0894863105469],[121.767345,42.0638430000001],[121.750474882813,42.0754921699219],[121.753468046875,42.088843],[121.74970828125,42.1056130195313],[121.783912382813,42.12788596875],[121.817345,42.113843],[121.817345,42.1038430000001]]]]}},{"type":"Feature","properties":{"name":"新邱区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.817345,42.1038430000001],[121.827374296875,42.0814516425782],[121.803057890625,42.0367848945313],[121.771158476563,42.0476552558594],[121.767345,42.053843],[121.780152617188,42.058843],[121.767345,42.0638430000001],[121.78170046875,42.0894863105469],[121.817345,42.1038430000001]]],[[[121.817345,42.1038430000001],[121.817345,42.113843],[121.847345,42.113843],[121.847345,42.1038430000001],[121.817345,42.1038430000001]]]]}},{"type":"Feature","properties":{"name":"彰武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.327345,42.283843],[122.314537382813,42.288843],[122.327345,42.2938430000001],[122.327345,42.283843]]],[[[122.327345,42.283843],[122.340152617188,42.288843],[122.327345,42.2938430000001],[122.306158476563,42.3184328437501],[122.26197390625,42.3284706855469],[122.242623320313,42.3392665839844],[122.232022734375,42.3384157539063],[122.22271609375,42.3492153144532],[122.211539335938,42.358843],[122.223287382813,42.3689614082031],[122.20197390625,42.3784706855469],[122.19271609375,42.3892153144532],[122.1719153125,42.3984963203126],[122.1727746875,42.4091664863282],[122.16197390625,42.4184706855469],[122.151373320313,42.4307741523437],[122.104586210938,42.4270143867188],[122.069371367188,42.4466616035156],[122.03838015625,42.4961415839844],[121.94197390625,42.5484706855469],[121.897345,42.573843],[121.9052746875,42.5940151191406],[121.900206328125,42.6283315253907],[121.913160429688,42.6383315253906],[121.911226835938,42.6514028144532],[121.933160429688,42.6683315253907],[121.931519804688,42.6794203925782],[121.991265898438,42.7012197089844],[122.015484648438,42.6976406074219],[122.059400664063,42.7241323066406],[122.071832304688,42.7080287910157],[122.082345,42.7095815253907],[122.100767851563,42.7068593574219],[122.13170046875,42.6881996894532],[122.19283328125,42.6778151679687],[122.204361601563,42.7059902167969],[122.197345,42.723843],[122.222896757813,42.7193959785156],[122.255972929688,42.6999538398438],[122.321422148438,42.6812416816407],[122.33205203125,42.6679653144532],[122.3819934375,42.6871620917969],[122.396236601563,42.7049489570313],[122.441949492188,42.7415529609375],[122.461793242188,42.7718837714844],[122.427345,42.7675991035156],[122.36687625,42.7751210761719],[122.342896757813,42.8278481269532],[122.419136992188,42.8411159492187],[122.561226835938,42.8233632636719],[122.574757109375,42.7912538886719],[122.614039335938,42.7746999335938],[122.710479765625,42.7866957832032],[122.751236601563,42.7627370429687],[122.782896757813,42.7493959785157],[122.791793242188,42.7382900214844],[122.83099734375,42.7217690253907],[122.837345,42.7138430000001],[122.78709109375,42.7214870429688],[122.743468046875,42.6825075507813],[122.774429960938,42.668296125],[122.79209109375,42.6485305],[122.802345,42.6491408515626],[122.812345,42.6485451484375],[122.823609648438,42.6492165351563],[122.842061796875,42.6285622382813],[122.852628203125,42.6191237617188],[122.863101835938,42.6073976875],[122.910220976563,42.6102065253907],[122.9226575,42.5990956855469],[122.92166140625,42.5823696113281],[122.967345,42.573843],[122.95197390625,42.5474416328126],[122.912061796875,42.5291237617188],[122.897877226563,42.4982155585938],[122.81822390625,42.5029628730469],[122.822642851563,42.428843],[122.821715117188,42.4133107734375],[122.856236601563,42.3974672675782],[122.882061796875,42.3685622382813],[122.902003203125,42.3507436347657],[122.849268828125,42.3384743476563],[122.793189726563,42.3079994941406],[122.752061796875,42.2891237617187],[122.747345,42.283843],[122.729610625,42.2783669257813],[122.672628203125,42.2385622382813],[122.620787382813,42.2288857246094],[122.600264921875,42.2059206367188],[122.463199492188,42.1487380195313],[122.432061796875,42.1391237617187],[122.427345,42.123843],[122.417345,42.123843],[122.404425078125,42.1998891425782],[122.38845828125,42.1975295234376],[122.393824492188,42.233843],[122.391607695313,42.248843],[122.393170195313,42.2594130683594],[122.37170046875,42.2681996894532],[122.352735625,42.2796401191407],[122.332857695313,42.2767018867188],[122.327345,42.283843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宏伟区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.167345,41.213843],[123.179537382813,41.2172658515625],[123.170767851563,41.2260353828125],[123.147345,41.213843],[123.147345,41.203843],[123.13361453125,41.2148390937501],[123.162896757813,41.2382900214844],[123.167345,41.243843],[123.183326445313,41.2358986640626],[123.187345,41.243843],[123.197345,41.243843],[123.202345,41.2310353828125],[123.207345,41.243843],[123.227345,41.243843],[123.240704375,41.237202375],[123.287345,41.233843],[123.281148710938,41.1998622871094],[123.2573059375,41.1721901679688],[123.220787382813,41.1518141914063],[123.167345,41.213843]]]]}},{"type":"Feature","properties":{"name":"辽阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.167345,41.213843],[123.170767851563,41.2260353828125],[123.179537382813,41.2172658515625],[123.167345,41.213843]]],[[[123.537345,41.243843],[123.527345,41.243843],[123.527345,41.253843],[123.537345,41.253843],[123.537345,41.243843]]],[[[123.537345,41.243843],[123.567003203125,41.2302724433594],[123.555191679688,41.2646694160157],[123.581002226563,41.2735329414063],[123.603624296875,41.2601210761719],[123.607345,41.243843],[123.595504179688,41.2378530097656],[123.60478640625,41.218843],[123.599420195313,41.2078530097657],[123.613985625,41.2004836250001],[123.634034453125,41.1605776191406],[123.647345,41.1538430000001],[123.653004179688,41.139126203125],[123.647633085938,41.0959694648438],[123.666236601563,41.0727370429688],[123.684830351563,41.05784690625],[123.654849882813,41.0338356757813],[123.647345,40.973843],[123.64271609375,40.9384706855469],[123.62197390625,40.9092153144531],[123.587345,40.853843],[123.53916140625,40.8598622871094],[123.547345,40.823843],[123.52142703125,40.8197585273438],[123.482491484375,40.8076894355469],[123.472066679688,40.8100258613281],[123.439141875,40.7961977363282],[123.40435671875,40.8039968085938],[123.387022734375,40.7788930488281],[123.338297148438,40.7663881660156],[123.322022734375,40.7700356269532],[123.25326296875,40.7379274726562],[123.204796171875,40.7284633613282],[123.172345,40.7073305488282],[123.148619414063,40.7227797675782],[123.127345,40.713843],[123.11904421875,40.7258632636719],[123.07142703125,40.7579274726563],[123.06326296875,40.7841188789063],[123.08326296875,40.7979274726563],[123.097345,40.8183266425781],[123.041051054688,40.8380605292969],[123.043468046875,40.8488430000001],[123.040347929688,40.8627443671876],[123.063585234375,40.8984291816406],[123.057345,40.9238430000001],[123.087315703125,40.9286879707032],[123.081358671875,40.9588430000001],[123.084146757813,40.9729677558594],[123.129386015625,40.9904152656251],[123.180484648438,40.9803188300782],[123.204361601563,41.0136342597657],[123.2007434375,41.0319448066407],[123.223453398438,41.0482228828126],[123.22021609375,41.0646181464844],[123.201236601563,41.0782228828125],[123.203331328125,41.088843],[123.200079375,41.1053115058594],[123.162345,41.0978554511719],[123.134351835938,41.1033864570313],[123.143453398438,41.1494631171875],[123.131519804688,41.1580178046875],[123.127345,41.173843],[123.133985625,41.1772023750001],[123.147345,41.203843],[123.147345,41.213843],[123.167345,41.213843],[123.220787382813,41.1518141914063],[123.2573059375,41.1721901679688],[123.281148710938,41.1998622871094],[123.287345,41.233843],[123.297345,41.233843],[123.321329375,41.2504030585938],[123.327345,41.273843],[123.327345,41.283843],[123.359991484375,41.2914076972657],[123.382735625,41.2880458808594],[123.407345,41.3028908515625],[123.431978789063,41.2880324531251],[123.519600859375,41.302426984375],[123.52312625,41.2785512519532],[123.517345,41.2638430000001],[123.493765898438,41.2577919746094],[123.460230742188,41.2359548164063],[123.43037234375,41.2426479316406],[123.433526640625,41.2285646796876],[123.418736601563,41.1933534980469],[123.35142703125,41.1697585273438],[123.34326296875,41.1579274726562],[123.30142703125,41.1497585273438],[123.253624296875,41.1349404121094],[123.24326296875,41.1104714179688],[123.27093875,41.0679689765625],[123.3676184375,41.0597585273438],[123.38142703125,41.0797585273438],[123.41755984375,41.0932778144531],[123.472418242188,41.0809804511719],[123.48142703125,41.0679274726563],[123.511964140625,41.0468459296875],[123.558819609375,41.0859206367188],[123.54142703125,41.0979274726563],[123.529176054688,41.1156740546875],[123.500474882813,41.1354921699219],[123.505709257813,41.158843],[123.48142703125,41.1679274726563],[123.46654421875,41.1894826484376],[123.509176054688,41.2189150214844],[123.53326296875,41.2279274726563],[123.537345,41.243843]]],[[[122.987345,41.353843],[122.975152617188,41.3504201484375],[122.983922148438,41.3416506171875],[123.137345,41.353843],[123.137345,41.3438430000001],[123.132535429688,41.3155202460938],[123.082345,41.3081044746094],[123.056495390625,41.3119240546875],[123.050128203125,41.2688430000001],[123.1171496875,41.2414125800782],[123.089390898438,41.2199831367188],[123.112178984375,41.2023928046876],[123.117345,41.1838430000001],[123.0855090625,41.1760231757813],[123.047345,41.1938430000001],[123.047345,41.203843],[123.027345,41.203843],[123.007345,41.203843],[123.007345,41.1938430000001],[123.007345,41.1838430000001],[122.991793242188,41.1882900214844],[122.972706328125,41.1995095039063],[122.902940703125,41.1908327460938],[122.888453398438,41.1727370429688],[122.871793242188,41.1593959785156],[122.862896757813,41.1482900214844],[122.851793242188,41.1393959785157],[122.842896757813,41.1082900214844],[122.827345,41.083843],[122.700909453125,41.1121352363282],[122.66271609375,41.1392153144531],[122.63197390625,41.1484706855469],[122.614586210938,41.1686525703125],[122.597345,41.173843],[122.597345,41.203843],[122.607345,41.203843],[122.612345,41.1910353828125],[122.617345,41.203843],[122.664068632813,41.2123659492188],[122.661300078125,41.2468288398438],[122.67197390625,41.2592153144531],[122.691715117188,41.2762221503907],[122.70197390625,41.2992153144531],[122.7127746875,41.3085195136719],[122.7119153125,41.3191970039063],[122.74271609375,41.3284706855469],[122.755670195313,41.3574990058594],[122.840328398438,41.3805434394531],[122.8519934375,41.4192751289063],[122.917345,41.4138430000001],[122.924801054688,41.4112990546875],[122.930494414063,41.3722280097656],[122.942374296875,41.3836989570313],[122.959888945313,41.3663869453125],[122.984801054688,41.3612990546876],[122.987345,41.353843]]]]}},{"type":"Feature","properties":{"name":"白塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.203531523438,41.3000307441406],[123.207345,41.293843],[123.183682890625,41.277505109375],[123.167345,41.253843],[123.167345,41.243843],[123.137471953125,41.2481923652344],[123.143902617188,41.2688430000001],[123.133531523438,41.3021352363282],[123.153018828125,41.3108644843751],[123.162345,41.295727765625],[123.171685820313,41.310884015625],[123.203531523438,41.3000307441406]]]]}},{"type":"Feature","properties":{"name":"灯塔市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.987345,41.353843],[122.983922148438,41.3416506171875],[122.975152617188,41.3504201484375],[122.987345,41.353843]]],[[[122.957345,41.4938430000001],[122.953922148438,41.4816506171875],[122.945152617188,41.4904201484375],[122.957345,41.4938430000001]]],[[[122.987345,41.353843],[122.984801054688,41.3612990546876],[122.959888945313,41.3663869453125],[122.942374296875,41.3836989570313],[122.930494414063,41.3722280097656],[122.924801054688,41.4112990546875],[122.917345,41.4138430000001],[122.911514921875,41.4493422675782],[122.92298953125,41.4581996894532],[122.931954375,41.4801100898438],[122.952374296875,41.4677944160157],[122.98170046875,41.4870607734376],[122.957345,41.4938430000001],[122.96142703125,41.4997585273438],[122.980167265625,41.5126943183594],[123.01435671875,41.5050295234375],[123.043082304688,41.5466347480469],[123.07326296875,41.5579274726563],[123.08142703125,41.5797585273438],[123.097345,41.6038430000001],[123.107345,41.6038430000001],[123.107345,41.6138430000001],[123.128487578125,41.607798078125],[123.103355742188,41.5650453925781],[123.122896757813,41.5493959785156],[123.138697539063,41.5296645332031],[123.182896757813,41.5482900214844],[123.210699492188,41.5646315742188],[123.231793242188,41.5382900214844],[123.293453398438,41.5249489570313],[123.321983671875,41.5081764960937],[123.350045195313,41.5116664863281],[123.402896757813,41.4893959785157],[123.431954375,41.4681728339844],[123.442345,41.4694643378907],[123.469210234375,41.4661232734375],[123.505318632813,41.4873464179688],[123.522345,41.4894643378906],[123.543707304688,41.4868080878907],[123.587345,41.4938430000001],[123.603902617188,41.469858625],[123.649112578125,41.4582570625],[123.653580351563,41.4383376289062],[123.6307825,41.4089223457032],[123.64326296875,41.3897585273438],[123.65142703125,41.3279274726563],[123.657345,41.3038430000001],[123.651578398438,41.288843],[123.6660559375,41.2511855292969],[123.607345,41.243843],[123.603624296875,41.2601210761719],[123.581002226563,41.2735329414063],[123.555191679688,41.2646694160157],[123.567003203125,41.2302724433594],[123.537345,41.243843],[123.537345,41.253843],[123.527345,41.253843],[123.517345,41.253843],[123.517345,41.2638430000001],[123.52312625,41.2785512519532],[123.519600859375,41.302426984375],[123.431978789063,41.2880324531251],[123.407345,41.3028908515625],[123.382735625,41.2880458808594],[123.359991484375,41.2914076972657],[123.327345,41.283843],[123.313985625,41.310483625],[123.2941028125,41.317202375],[123.287345,41.3038430000001],[123.267345,41.3038430000001],[123.257345,41.3038430000001],[123.19298953125,41.3294863105469],[123.15170046875,41.3381996894532],[123.137345,41.3438430000001],[123.137345,41.353843],[122.987345,41.353843]]]]}},{"type":"Feature","properties":{"name":"弓长岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.517345,41.2638430000001],[123.517345,41.253843],[123.527345,41.253843],[123.527345,41.243843],[123.537345,41.243843],[123.53326296875,41.2279274726563],[123.509176054688,41.2189150214844],[123.46654421875,41.1894826484376],[123.48142703125,41.1679274726563],[123.505709257813,41.158843],[123.500474882813,41.1354921699219],[123.529176054688,41.1156740546875],[123.54142703125,41.0979274726563],[123.558819609375,41.0859206367188],[123.511964140625,41.0468459296875],[123.48142703125,41.0679274726563],[123.472418242188,41.0809804511719],[123.41755984375,41.0932778144531],[123.38142703125,41.0797585273438],[123.3676184375,41.0597585273438],[123.27093875,41.0679689765625],[123.24326296875,41.1104714179688],[123.253624296875,41.1349404121094],[123.30142703125,41.1497585273438],[123.34326296875,41.1579274726562],[123.35142703125,41.1697585273438],[123.418736601563,41.1933534980469],[123.433526640625,41.2285646796876],[123.43037234375,41.2426479316406],[123.460230742188,41.2359548164063],[123.493765898438,41.2577919746094],[123.517345,41.2638430000001]]]]}},{"type":"Feature","properties":{"name":"太子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.207345,41.243843],[123.202345,41.2310353828125],[123.197345,41.243843],[123.207345,41.243843]]],[[[123.167345,41.243843],[123.167345,41.253843],[123.187345,41.253843],[123.187345,41.243843],[123.183326445313,41.2358986640626],[123.167345,41.243843]]],[[[123.287345,41.3038430000001],[123.277345,41.2898903632813],[123.267345,41.3038430000001],[123.287345,41.3038430000001]]],[[[123.287345,41.3038430000001],[123.2941028125,41.317202375],[123.313985625,41.310483625],[123.327345,41.283843],[123.327345,41.273843],[123.298892851563,41.2773220039062],[123.310538359375,41.29931175],[123.287345,41.3038430000001]]],[[[123.167345,41.243843],[123.162896757813,41.2382900214844],[123.13361453125,41.2148390937501],[123.147345,41.203843],[123.133985625,41.1772023750001],[123.127345,41.173843],[123.117345,41.173843],[123.117345,41.1838430000001],[123.112178984375,41.2023928046876],[123.089390898438,41.2199831367188],[123.1171496875,41.2414125800782],[123.050128203125,41.2688430000001],[123.056495390625,41.3119240546875],[123.082345,41.3081044746094],[123.132535429688,41.3155202460938],[123.137345,41.3438430000001],[123.15170046875,41.3381996894532],[123.19298953125,41.3294863105469],[123.257345,41.3038430000001],[123.250733671875,41.2881056953126],[123.286163359375,41.2790138984376],[123.24326296875,41.2629604316407],[123.269156523438,41.2470070625],[123.285694609375,41.2507155585938],[123.297345,41.233843],[123.287345,41.233843],[123.240704375,41.237202375],[123.227345,41.243843],[123.2237121875,41.2502114082031],[123.203922148438,41.2614968085938],[123.214561796875,41.2897280097657],[123.207345,41.293843],[123.203531523438,41.3000307441406],[123.171685820313,41.310884015625],[123.162345,41.295727765625],[123.153018828125,41.3108644843751],[123.133531523438,41.3021352363282],[123.143902617188,41.2688430000001],[123.137471953125,41.2481923652344],[123.167345,41.243843]]]]}},{"type":"Feature","properties":{"name":"文圣区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.203922148438,41.2614968085938],[123.2237121875,41.2502114082031],[123.227345,41.243843],[123.207345,41.243843],[123.197345,41.243843],[123.187345,41.243843],[123.187345,41.253843],[123.167345,41.253843],[123.183682890625,41.277505109375],[123.207345,41.293843],[123.214561796875,41.2897280097657],[123.203922148438,41.2614968085938]]],[[[123.310538359375,41.29931175],[123.298892851563,41.2773220039062],[123.327345,41.273843],[123.321329375,41.2504030585938],[123.297345,41.233843],[123.285694609375,41.2507155585938],[123.269156523438,41.2470070625],[123.24326296875,41.2629604316407],[123.286163359375,41.2790138984376],[123.250733671875,41.2881056953126],[123.257345,41.3038430000001],[123.267345,41.3038430000001],[123.277345,41.2898903632813],[123.287345,41.3038430000001],[123.310538359375,41.29931175]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大洼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.317345,40.903843],[122.327345,40.903843],[122.322345,40.8910353828125],[122.317345,40.903843]]],[[[122.347345,40.973843],[122.350767851563,40.9860353828125],[122.359537382813,40.9772658515626],[122.347345,40.973843]]],[[[122.347345,40.973843],[122.347345,40.9638430000001],[122.327345,40.9638430000001],[122.323922148438,40.9760353828126],[122.315152617188,40.9672658515625],[122.327345,40.9638430000001],[122.330704375,40.957202375],[122.345401640625,40.9497670722656],[122.333985625,40.927202375],[122.320704375,40.920483625],[122.317345,40.903843],[122.271402617188,40.8670937324219],[122.252125273438,40.8694924140625],[122.205421171875,40.8561550117187],[122.169425078125,40.8773159003906],[122.17447390625,40.8367116523438],[122.151954375,40.8395131660156],[122.122896757813,40.8182900214844],[122.086495390625,40.7961794257813],[122.207345,40.7338430000001],[122.19974734375,40.6997158027344],[122.237345,40.713843],[122.27142703125,40.7050954414063],[122.25326296875,40.6879274726563],[122.227345,40.683843],[122.195303984375,40.6888930488282],[122.155323515625,40.7149282050782],[122.147345,40.683843],[122.12170046875,40.6881996894532],[122.085914335938,40.7097866035156],[122.06298953125,40.7394863105469],[122.0160559375,40.7525551582032],[122.00298953125,40.7694863105469],[121.97673953125,40.7802309394532],[121.962345,40.7781044746094],[121.948834257813,40.7801003242187],[121.957139921875,40.8362831855469],[121.941529570313,40.8483315253906],[121.945933867188,40.8781362128907],[121.923990507813,40.8881996894532],[121.90193484375,40.8041774726563],[121.861378203125,40.8201198554688],[121.830328398438,40.8959902167969],[121.847779570313,40.9403847480469],[121.823487578125,40.9367958808594],[121.81298953125,40.9450429511719],[121.84298953125,40.9681996894532],[121.847345,40.973843],[121.887994414063,41.0484059882813],[121.802628203125,41.0598244453125],[121.81771609375,41.0746938300782],[121.847345,41.083843],[121.877345,41.103843],[121.887345,41.103843],[121.892515898438,41.0973842597656],[121.901793242188,41.1193959785156],[121.917769804688,41.1382900214844],[121.951983671875,41.1181764960938],[122.028267851563,41.1276650214844],[122.060792265625,41.0870510078125],[122.089678984375,41.1040322089844],[122.127345,41.1538430000001],[122.182965117188,41.1493910957032],[122.260714140625,41.1271620917969],[122.291632109375,41.1024025703126],[122.301793242188,41.0782900214844],[122.313013945313,41.0592031074219],[122.307633085938,41.0159694648438],[122.326236601563,40.9927370429688],[122.337345,40.983843],[122.337345,40.973843],[122.347345,40.973843]],[[122.277345,41.013843],[122.271910429688,41.0265395332031],[122.254346953125,41.0178957343751],[122.277345,41.013843]],[[122.247345,41.023843],[122.243922148438,41.0360353828125],[122.235152617188,41.0272658515625],[122.247345,41.023843]],[[122.217345,41.0338430000001],[122.213922148438,41.0460353828125],[122.205152617188,41.0372658515625],[122.217345,41.0338430000001]],[[122.275152617188,41.0472658515625],[122.287345,41.043843],[122.283922148438,41.0560353828126],[122.275152617188,41.0472658515625]]]]}},{"type":"Feature","properties":{"name":"盘山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.877345,41.1138430000001],[121.887345,41.1138430000001],[121.887345,41.103843],[121.877345,41.103843],[121.877345,41.1138430000001]]],[[[121.877345,41.1138430000001],[121.865152617188,41.1172658515625],[121.873922148438,41.1260353828126],[121.877345,41.1138430000001]]],[[[121.890025664063,41.1581520820313],[121.897345,41.133843],[121.85271609375,41.1396816230469],[121.890025664063,41.1581520820313]]],[[[122.23197390625,41.3784706855469],[122.271793242188,41.3607021308594],[122.273829375,41.3353774238282],[122.26271609375,41.2984706855469],[122.25197390625,41.2792153144532],[122.241593046875,41.244731671875],[122.20603640625,41.2141005683594],[122.25584109375,41.1863112617188],[122.307345,41.1904494453126],[122.332652617188,41.1884169746095],[122.407003203125,41.2520851875],[122.452345,41.2484413886719],[122.48197390625,41.2508217597657],[122.47271609375,41.2384706855469],[122.45197390625,41.2292153144532],[122.43271609375,41.2184706855469],[122.41197390625,41.2092153144532],[122.40271609375,41.1984706855469],[122.363370390625,41.1866249824219],[122.3619153125,41.1685195136719],[122.37271609375,41.1592153144532],[122.383331328125,41.1239601875],[122.404874296875,41.0853444648438],[122.400308867188,41.0285195136719],[122.417345,41.013843],[122.406158476563,40.9963661933594],[122.39158328125,41.0004628730469],[122.38310671875,40.9872231269532],[122.346158476563,40.9976076484375],[122.337345,40.983843],[122.326236601563,40.9927370429688],[122.307633085938,41.0159694648438],[122.313013945313,41.0592031074219],[122.301793242188,41.0782900214844],[122.291632109375,41.1024025703126],[122.260714140625,41.1271620917969],[122.182965117188,41.1493910957032],[122.127345,41.1538430000001],[122.120704375,41.157202375],[122.109263945313,41.1798183417969],[122.077345,41.1838430000001],[122.0876184375,41.2072670722657],[122.065816679688,41.2212233710938],[122.051886015625,41.2173085761719],[122.024073515625,41.2363552070313],[121.974112578125,41.2223146796875],[121.9951575,41.208843],[121.973648710938,41.1950746894532],[121.987345,41.163843],[121.962183867188,41.1532753730469],[121.92724734375,41.1611061835938],[121.937345,41.2061440253907],[121.870733671875,41.22323753125],[121.85326296875,41.1979274726563],[121.84107546875,41.1895131660156],[121.847003203125,41.1630690742188],[121.804620390625,41.1472121406251],[121.788541289063,41.1508168769532],[121.796207304688,41.1166164375],[121.84326296875,41.0897585273437],[121.847345,41.083843],[121.81771609375,41.0746938300782],[121.802628203125,41.0598244453125],[121.887994414063,41.0484059882813],[121.847345,40.973843],[121.804605742188,40.9665822578125],[121.790030546875,40.9309694648438],[121.803516875,40.9086086250001],[121.77033328125,40.882993390625],[121.74298953125,40.8994863105469],[121.72170046875,40.9081996894531],[121.701846953125,40.9201760078126],[121.69298953125,40.8781996894532],[121.655264921875,40.8494863105469],[121.6425403125,40.8805763984376],[121.632857695313,40.8680287910157],[121.621954375,40.8696401191407],[121.60298953125,40.8581996894532],[121.576143828125,40.8494863105469],[121.557345,40.873843],[121.596422148438,40.8791835761719],[121.622154570313,40.9190334296876],[121.632535429688,40.9286525703126],[121.642154570313,40.9490334296876],[121.664874296875,40.9700832343751],[121.661783476563,41.0479787421875],[121.672550078125,41.0786916328126],[121.671846953125,41.0963942695313],[121.578941679688,41.1090908027344],[121.562535429688,41.1563649726563],[121.621822539063,41.1946498847656],[121.586011992188,41.2115517402344],[121.572535429688,41.2363649726563],[121.622535429688,41.2686525703126],[121.632154570313,41.2790334296875],[121.649371367188,41.2949867988282],[121.711246367188,41.314575421875],[121.717345,41.333843],[121.762799101563,41.3281642890625],[121.771890898438,41.3395217109376],[121.790181914063,41.3372463203125],[121.841129179688,41.3568288398438],[121.862896757813,41.3393959785157],[121.87834109375,41.3201113105469],[121.902711210938,41.3505458808594],[121.966920195313,41.3882900214844],[122.002896757813,41.3793959785157],[122.027345,41.3650258613282],[122.051793242188,41.3793959785157],[122.083453398438,41.3927370429687],[122.111793242188,41.4093959785157],[122.132896757813,41.4182900214844],[122.14537234375,41.4338649726563],[122.171793242188,41.4493959785157],[122.187345,41.4538430000001],[122.206090117188,41.40851096875],[122.23197390625,41.3784706855469]],[[122.235152617188,41.3372658515625],[122.247345,41.333843],[122.243922148438,41.3460353828125],[122.235152617188,41.3372658515625]],[[121.71029421875,41.0877272773438],[121.757345,41.083843],[121.753531523438,41.1000307441406],[121.673531523438,41.1002541328126],[121.71029421875,41.0877272773438]],[[121.687345,41.053843],[121.675152617188,41.0504201484376],[121.683922148438,41.0416506171875],[121.699537382813,41.0572658515626],[121.690767851563,41.0660353828125],[121.687345,41.053843]]]]}},{"type":"Feature","properties":{"name":"双台子区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.024073515625,41.2363552070313],[122.051886015625,41.2173085761719],[122.065816679688,41.2212233710938],[122.0876184375,41.2072670722657],[122.077345,41.1838430000001],[122.071519804688,41.1796681953125],[122.056861601563,41.1592201972656],[122.027506132813,41.1496681953125],[122.007345,41.1777956367188],[121.992345,41.1568666816407],[121.987345,41.163843],[121.973648710938,41.1950746894532],[121.9951575,41.208843],[121.974112578125,41.2223146796875],[122.024073515625,41.2363552070313]]]]}},{"type":"Feature","properties":{"name":"兴隆台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.271910429688,41.0265395332031],[122.277345,41.013843],[122.254346953125,41.0178957343751],[122.271910429688,41.0265395332031]]],[[[122.243922148438,41.0360353828125],[122.247345,41.023843],[122.235152617188,41.0272658515625],[122.243922148438,41.0360353828125]]],[[[122.213922148438,41.0460353828125],[122.217345,41.0338430000001],[122.205152617188,41.0372658515625],[122.213922148438,41.0460353828125]]],[[[121.687345,41.053843],[121.683922148438,41.0416506171875],[121.675152617188,41.0504201484376],[121.687345,41.053843]]],[[[122.283922148438,41.0560353828126],[122.287345,41.043843],[122.275152617188,41.0472658515625],[122.283922148438,41.0560353828126]]],[[[121.687345,41.053843],[121.690767851563,41.0660353828125],[121.699537382813,41.0572658515626],[121.687345,41.053843]]],[[[121.877345,41.1138430000001],[121.873922148438,41.1260353828126],[121.865152617188,41.1172658515625],[121.877345,41.103843],[121.847345,41.083843],[121.84326296875,41.0897585273437],[121.796207304688,41.1166164375],[121.788541289063,41.1508168769532],[121.804620390625,41.1472121406251],[121.847003203125,41.1630690742188],[121.84107546875,41.1895131660156],[121.85326296875,41.1979274726563],[121.870733671875,41.22323753125],[121.937345,41.2061440253907],[121.92724734375,41.1611061835938],[121.962183867188,41.1532753730469],[121.987345,41.163843],[121.992345,41.1568666816407],[122.007345,41.1777956367188],[122.027506132813,41.1496681953125],[122.056861601563,41.1592201972656],[122.071519804688,41.1796681953125],[122.077345,41.1838430000001],[122.109263945313,41.1798183417969],[122.120704375,41.157202375],[122.127345,41.1538430000001],[122.089678984375,41.1040322089844],[122.060792265625,41.0870510078125],[122.028267851563,41.1276650214844],[121.951983671875,41.1181764960938],[121.917769804688,41.1382900214844],[121.901793242188,41.1193959785156],[121.892515898438,41.0973842597656],[121.887345,41.103843],[121.887345,41.1138430000001],[121.877345,41.1138430000001]],[[121.897345,41.133843],[121.890025664063,41.1581520820313],[121.85271609375,41.1396816230469],[121.897345,41.133843]]],[[[122.243922148438,41.3460353828125],[122.247345,41.333843],[122.235152617188,41.3372658515625],[122.243922148438,41.3460353828125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昌图县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.767345,43.483843],[123.77252078125,43.4782552314453],[123.799971953125,43.4793434882813],[123.862115507813,43.4596688056641],[123.862550078125,43.4486788154297],[123.842720976563,43.4112026191407],[123.892935820313,43.3787746406251],[123.892139921875,43.3586562324219],[123.9439075,43.3463246894532],[124.013961210938,43.2871230292969],[124.09259890625,43.2902407050781],[124.092139921875,43.2786659980469],[124.102535429688,43.2690334296875],[124.112345,43.2482485175782],[124.137345,43.2492397285157],[124.172345,43.2478517890626],[124.202511015625,43.249048078125],[124.222154570313,43.2386525703125],[124.277345,43.223843],[124.270753203125,43.1710695625],[124.322896757813,43.1393959785157],[124.331793242188,43.1282900214844],[124.347345,43.123843],[124.382154570313,43.0986525703126],[124.422037382813,43.0728969550782],[124.32490359375,42.9930727363282],[124.372550078125,42.9678603339844],[124.42093875,42.9697780585938],[124.442154570313,42.9501210761719],[124.425206328125,42.9299123359375],[124.402154570313,42.9190334296875],[124.382535429688,42.9086525703126],[124.362154570313,42.8990334296876],[124.357345,42.883843],[124.342345,42.8896083808594],[124.310655546875,42.8774282050782],[124.313023710938,42.8583901191407],[124.301793242188,42.8493959785157],[124.292896757813,42.8182900214844],[124.251793242188,42.8093959785156],[124.193453398438,42.7327370429688],[124.161793242188,42.7193959785156],[124.152896757813,42.7082900214844],[124.131793242188,42.6993959785157],[124.110709257813,42.6870021796875],[124.11302859375,42.6683388496094],[124.088912382813,42.6593959785156],[124.072896757813,42.6793959785157],[123.960943632813,42.6882900214844],[123.87138796875,42.6538649726563],[123.811920195313,42.5796022773438],[123.741793242188,42.5693959785156],[123.727345,42.5638430000001],[123.693443632813,42.5725429511719],[123.68326296875,42.5997585273438],[123.66142703125,42.6079274726563],[123.65326296875,42.6297585273438],[123.627257109375,42.6394887519531],[123.617345,42.653843],[123.6126184375,42.6722670722656],[123.58037234375,42.6650380683594],[123.58361453125,42.6795131660156],[123.57107546875,42.6881728339844],[123.573565703125,42.6992897773438],[123.558409453125,42.7225661445313],[123.576925078125,42.7666469550782],[123.59361453125,42.7781728339844],[123.587862578125,42.803843],[123.593565703125,42.8292897773438],[123.580831328125,42.848843],[123.59408328125,42.8691909003907],[123.58060671875,42.8784950996094],[123.59408328125,42.8991909003906],[123.58060671875,42.9084950996094],[123.594132109375,42.9292629218751],[123.54580203125,42.9568471503906],[123.557345,43.003843],[123.57326296875,43.0079274726563],[123.58298953125,43.0339321113281],[123.604586210938,43.048843],[123.590103789063,43.0588430000001],[123.622164335938,43.0809804511719],[123.63142703125,43.1397585273438],[123.643565703125,43.1583962226563],[123.641051054688,43.1696169257813],[123.664361601563,43.1783388496094],[123.640328398438,43.2093471503907],[123.669845,43.2203908515625],[123.66107546875,43.2595131660157],[123.679176054688,43.2720119453126],[123.703746367188,43.3075966621094],[123.701221953125,43.3188430000001],[123.7046496875,43.3341127753907],[123.697345,43.3638430000001],[123.689561796875,43.3812142158203],[123.708780546875,43.4124056220704],[123.737564726563,43.4301387763672],[123.75281375,43.4748891425781],[123.767345,43.483843]]]]}},{"type":"Feature","properties":{"name":"调兵山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.647345,42.513843],[123.66576296875,42.4669875312501],[123.659303007813,42.4232729316407],[123.70170046875,42.4059206367187],[123.69298953125,42.3981996894531],[123.651514921875,42.3894472480469],[123.65423953125,42.3710182929688],[123.620767851563,42.3508266425781],[123.596607695313,42.3472560859376],[123.522276640625,42.3615468574219],[123.517345,42.343843],[123.461749296875,42.3786098457032],[123.472926054688,42.4090358710937],[123.452955351563,42.4262404609375],[123.451236601563,42.4476454902344],[123.47197390625,42.4592153144532],[123.50271609375,42.4684706855469],[123.57662234375,42.5097048164062],[123.602345,42.5076381660157],[123.620113554688,42.5474587226563],[123.660894804688,42.5507350898438],[123.647345,42.513843]]]]}},{"type":"Feature","properties":{"name":"开原市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.757345,42.5238430000001],[123.769537382813,42.5272658515625],[123.760767851563,42.5360353828125],[123.747345,42.5238430000001],[123.747345,42.543843],[123.760260039063,42.54937034375],[123.730343046875,42.5568398261719],[123.727345,42.5638430000001],[123.741793242188,42.5693959785156],[123.811920195313,42.5796022773438],[123.87138796875,42.6538649726563],[123.960943632813,42.6882900214844],[124.072896757813,42.6793959785157],[124.088912382813,42.6593959785156],[124.11302859375,42.6683388496094],[124.110709257813,42.6870021796875],[124.131793242188,42.6993959785157],[124.152896757813,42.7082900214844],[124.161793242188,42.7193959785156],[124.193453398438,42.7327370429688],[124.251793242188,42.8093959785156],[124.292896757813,42.8182900214844],[124.301793242188,42.8493959785157],[124.313023710938,42.8583901191407],[124.310655546875,42.8774282050782],[124.342345,42.8896083808594],[124.357345,42.883843],[124.37142703125,42.8779274726563],[124.440953398438,42.8687416816407],[124.45142703125,42.8279274726563],[124.457345,42.8238430000001],[124.466812773438,42.7997634101563],[124.434605742188,42.7865822578126],[124.416207304688,42.7416298652344],[124.367345,42.73440940625],[124.331773710938,42.7396657539063],[124.32298953125,42.7181996894532],[124.27298953125,42.6796059394532],[124.308507109375,42.6283827949219],[124.33298953125,42.6094863105469],[124.337345,42.583843],[124.312486601563,42.5896034980469],[124.301954375,42.5880458808594],[124.27281375,42.6056240058594],[124.180689726563,42.6269716621094],[124.13298953125,42.5981996894532],[124.087393828125,42.58550315625],[124.065152617188,42.5486318183594],[124.08170046875,42.5081996894531],[124.12427859375,42.4907741523438],[124.173922148438,42.4608266425781],[124.192345,42.4581044746094],[124.205953398438,42.4601149726563],[124.26170046875,42.4381996894531],[124.317750273438,42.428676984375],[124.38263796875,42.3895388007813],[124.429215117188,42.3826552558594],[124.433140898438,42.4092336250001],[124.414576445313,42.4400112128907],[124.39123171875,42.4993886542969],[124.437471953125,42.509145734375],[124.431519804688,42.5494362617188],[124.447345,42.553843],[124.468551054688,42.5451296210938],[124.495303984375,42.5504152656251],[124.523170195313,42.5396681953126],[124.568717070313,42.5020790839844],[124.628023710938,42.526450421875],[124.698350859375,42.4949587226563],[124.730904570313,42.5156264472657],[124.758995390625,42.495493390625],[124.771519804688,42.4780178046876],[124.783170195313,42.4696681953125],[124.791519804688,42.4580178046875],[124.811295195313,42.4438430000001],[124.790025664063,42.4285951972657],[124.813170195313,42.4196681953126],[124.817345,42.413843],[124.79197390625,42.4092153144532],[124.763638945313,42.3934072089844],[124.791861601563,42.3428212714844],[124.73197390625,42.3292153144531],[124.681202421875,42.3153188300782],[124.621241484375,42.3201369453125],[124.6227746875,42.3392043281251],[124.570367460938,42.3484706855469],[124.572769804688,42.3185646796875],[124.56197390625,42.2992153144532],[124.551715117188,42.2762221503907],[124.53197390625,42.2592153144532],[124.52271609375,42.2484706855469],[124.511807890625,42.2390724921875],[124.524205351563,42.1937795234375],[124.55271609375,42.1692153144531],[124.56197390625,42.1564455390625],[124.54197390625,42.1392153144531],[124.537345,42.133843],[124.531793242188,42.1293959785157],[124.471143828125,42.1156191230469],[124.42062625,42.130044171875],[124.423214140625,42.1508351875001],[124.377486601563,42.1701039863282],[124.34486453125,42.1660463691407],[124.312896757813,42.1893959785156],[124.251656523438,42.1983095527344],[124.25302859375,42.2093581367188],[124.18259890625,42.2294960761719],[124.172345,42.2282216621094],[124.162345,42.2294643378907],[124.151890898438,42.2281642890625],[124.140079375,42.242915265625],[124.102203398438,42.2382033515625],[124.082896757813,42.2422743964844],[124.114381132813,42.2674843574219],[124.11150515625,42.2906044746095],[124.092345,42.2882216621094],[124.06951296875,42.2910610175781],[124.072965117188,42.318843],[124.070982695313,42.3347988105469],[124.042706328125,42.3181764960938],[123.99119265625,42.3245839667969],[123.99880984375,42.385805890625],[123.958580351563,42.4102407050781],[123.920889921875,42.4055519843751],[123.923922148438,42.3811586738281],[123.88537234375,42.4038210273438],[123.869342070313,42.4238356757813],[123.842706328125,42.4081764960938],[123.832345,42.4094643378906],[123.817345,42.4075991035157],[123.800582304688,42.4096840644532],[123.803023710938,42.4292958808594],[123.791099882813,42.438843],[123.806163359375,42.4509035468751],[123.790928984375,42.490532453125],[123.7676965625,42.4876430488281],[123.757345,42.5238430000001]]]]}},{"type":"Feature","properties":{"name":"清河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.27281375,42.6056240058594],[124.301954375,42.5880458808594],[124.312486601563,42.5896034980469],[124.337345,42.583843],[124.353804960938,42.5803029609375],[124.375440703125,42.5639369941406],[124.40806765625,42.5773830390625],[124.443077421875,42.5616323066407],[124.447345,42.553843],[124.431519804688,42.5494362617188],[124.437471953125,42.509145734375],[124.39123171875,42.4993886542969],[124.414576445313,42.4400112128907],[124.433140898438,42.4092336250001],[124.429215117188,42.3826552558594],[124.38263796875,42.3895388007813],[124.317750273438,42.428676984375],[124.26170046875,42.4381996894531],[124.205953398438,42.4601149726563],[124.192345,42.4581044746094],[124.173922148438,42.4608266425781],[124.12427859375,42.4907741523438],[124.08170046875,42.5081996894531],[124.065152617188,42.5486318183594],[124.087393828125,42.58550315625],[124.13298953125,42.5981996894532],[124.180689726563,42.6269716621094],[124.27281375,42.6056240058594]]]]}},{"type":"Feature","properties":{"name":"铁岭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.757345,42.5238430000001],[123.760767851563,42.5360353828125],[123.769537382813,42.5272658515625],[123.757345,42.5238430000001]]],[[[123.757345,42.5238430000001],[123.7676965625,42.4876430488281],[123.790928984375,42.490532453125],[123.806163359375,42.4509035468751],[123.791099882813,42.438843],[123.803023710938,42.4292958808594],[123.800582304688,42.4096840644532],[123.817345,42.4075991035157],[123.832345,42.4094643378906],[123.842706328125,42.4081764960938],[123.869342070313,42.4238356757813],[123.88537234375,42.4038210273438],[123.923922148438,42.3811586738281],[123.920889921875,42.4055519843751],[123.958580351563,42.4102407050781],[123.99880984375,42.385805890625],[123.99119265625,42.3245839667969],[124.042706328125,42.3181764960938],[124.070982695313,42.3347988105469],[124.072965117188,42.318843],[124.06951296875,42.2910610175781],[124.092345,42.2882216621094],[124.11150515625,42.2906044746095],[124.114381132813,42.2674843574219],[124.082896757813,42.2422743964844],[124.102203398438,42.2382033515625],[124.140079375,42.242915265625],[124.151890898438,42.2281642890625],[124.162345,42.2294643378907],[124.172345,42.2282216621094],[124.18259890625,42.2294960761719],[124.25302859375,42.2093581367188],[124.251656523438,42.1983095527344],[124.312896757813,42.1893959785156],[124.34486453125,42.1660463691407],[124.377486601563,42.1701039863282],[124.423214140625,42.1508351875001],[124.42062625,42.130044171875],[124.471143828125,42.1156191230469],[124.531793242188,42.1293959785157],[124.537345,42.133843],[124.544010039063,42.1179775214844],[124.521329375,42.0851308417969],[124.46142703125,42.0697585273438],[124.41326296875,42.0479274726563],[124.361051054688,42.0296254707031],[124.363658476563,42.0179897285157],[124.337345,42.013843],[124.28252078125,42.0072438789063],[124.2680871875,42.0395864082031],[124.247789335938,42.0759670234375],[124.230728789063,42.0561611152344],[124.182345,42.0600478339844],[124.15486453125,42.0578408027344],[124.09982546875,42.0698451972657],[124.049371367188,42.0657912421876],[124.0252746875,42.01179221875],[123.947345,42.003843],[123.943531523438,42.0100307441407],[123.877701445313,42.0321828437501],[123.823902617188,42.0144887519532],[123.813531523438,41.9976552558594],[123.797345,41.9938430000001],[123.777345,41.9838430000001],[123.761676054688,42.0084706855469],[123.76318484375,42.0206044746094],[123.798350859375,42.0162294746094],[123.811793242188,42.0518837714844],[123.754610625,42.044770734375],[123.742896757813,42.0593959785157],[123.69375125,42.0892482734376],[123.641793242188,42.0982900214844],[123.543761015625,42.1436220527344],[123.532896757813,42.1693959785157],[123.516173125,42.1978493476563],[123.482896757813,42.1782900214844],[123.467345,42.1738430000001],[123.447550078125,42.2037990546876],[123.46326296875,42.2279274726563],[123.473204375,42.2666811347656],[123.50326296875,42.2779274726563],[123.51142703125,42.3097585273437],[123.523726835938,42.3286452460938],[123.517345,42.343843],[123.522276640625,42.3615468574219],[123.596607695313,42.3472560859376],[123.620767851563,42.3508266425781],[123.65423953125,42.3710182929688],[123.651514921875,42.3894472480469],[123.69298953125,42.3981996894531],[123.70170046875,42.4059206367187],[123.659303007813,42.4232729316407],[123.66576296875,42.4669875312501],[123.647345,42.513843],[123.68326296875,42.5179274726563],[123.707261992188,42.5335561347656],[123.747345,42.543843],[123.747345,42.5238430000001],[123.757345,42.5238430000001]],[[123.793682890625,42.2187673164063],[123.750054960938,42.1922658515625],[123.75326296875,42.1664455390625],[123.797345,42.153843],[123.790787382813,42.1709023261719],[123.823214140625,42.1668691230469],[123.82166140625,42.179341046875],[123.842896757813,42.1882900214844],[123.87595828125,42.2077223945313],[123.9614465625,42.1970888496094],[123.971793242188,42.2056484199219],[123.941793242188,42.2182900214844],[123.932896757813,42.2293959785156],[123.8992590625,42.2390151191406],[123.904210234375,42.278843],[123.880714140625,42.2887429023438],[123.928531523438,42.3177858710938],[123.867203398438,42.3353200507813],[123.799195585938,42.3091786933594],[123.804156523438,42.2692958808594],[123.784371367188,42.2534560371095],[123.772896757813,42.2354116035156],[123.793682890625,42.2187673164063]]]]}},{"type":"Feature","properties":{"name":"西丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.887345,43.1338430000001],[124.87271609375,43.0684706855469],[124.836949492188,43.0227992988282],[124.85271609375,43.0092153144531],[124.8663684375,42.9786183906251],[124.849146757813,42.8836330390625],[124.852745390625,42.838843],[124.851217070313,42.8198232246094],[124.8668371875,42.7918300605469],[124.886124296875,42.7792153144531],[124.913316679688,42.8107741523437],[124.955689726563,42.8073683906251],[124.97986453125,42.7793105292969],[124.99197390625,42.7364455390625],[124.971163359375,42.7185195136719],[124.973150664063,42.693843],[124.9719153125,42.6785073066406],[125.00271609375,42.6592153144531],[125.01197390625,42.628470685547],[125.034742460938,42.6092153144532],[125.047345,42.623843],[125.090279570313,42.6193190742188],[125.079229765625,42.583843],[125.08404421875,42.5683852363282],[125.066329375,42.5431545234375],[125.075460234375,42.513843],[125.07048953125,42.4978835273438],[125.098389921875,42.48837425],[125.107345,42.473843],[125.091793242188,42.4693959785157],[125.029957304688,42.4330471015625],[125.03302859375,42.4083278632813],[125.001793242188,42.3993959785157],[124.992896757813,42.3782900214844],[124.96365359375,42.3659658027344],[124.936422148438,42.3999721503907],[124.902799101563,42.3957900214844],[124.842896757813,42.4093959785157],[124.817345,42.413843],[124.813170195313,42.4196681953126],[124.790025664063,42.4285951972657],[124.811295195313,42.4438430000001],[124.791519804688,42.4580178046875],[124.783170195313,42.4696681953125],[124.771519804688,42.4780178046876],[124.758995390625,42.495493390625],[124.730904570313,42.5156264472657],[124.698350859375,42.4949587226563],[124.628023710938,42.526450421875],[124.568717070313,42.5020790839844],[124.523170195313,42.5396681953126],[124.495303984375,42.5504152656251],[124.468551054688,42.5451296210938],[124.447345,42.553843],[124.443077421875,42.5616323066407],[124.40806765625,42.5773830390625],[124.375440703125,42.5639369941406],[124.353804960938,42.5803029609375],[124.337345,42.583843],[124.33298953125,42.6094863105469],[124.308507109375,42.6283827949219],[124.27298953125,42.6796059394532],[124.32298953125,42.7181996894532],[124.331773710938,42.7396657539063],[124.367345,42.73440940625],[124.416207304688,42.7416298652344],[124.434605742188,42.7865822578126],[124.466812773438,42.7997634101563],[124.457345,42.8238430000001],[124.463453398438,42.8282228828125],[124.460089140625,42.845259015625],[124.493170195313,42.8580178046876],[124.514283476563,42.8714235664063],[124.532965117188,42.8677321601563],[124.541519804688,42.8796681953126],[124.582862578125,42.903637921875],[124.601519804688,42.9296681953125],[124.62166140625,42.9441030097657],[124.631519804688,42.9696681953125],[124.6618371875,42.9813600898438],[124.676529570313,43.0546584296876],[124.743170195313,43.0680178046875],[124.755694609375,43.0854933906251],[124.773170195313,43.0980178046875],[124.789244414063,43.1204433417969],[124.807345,43.1168666816406],[124.832345,43.1218068671875],[124.852345,43.1178554511719],[124.868121367188,43.12097190625],[124.877345,43.1338430000001],[124.887345,43.1338430000001]]]]}},{"type":"Feature","properties":{"name":"银州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.941793242188,42.2182900214844],[123.971793242188,42.2056484199219],[123.9614465625,42.1970888496094],[123.87595828125,42.2077223945313],[123.842896757813,42.1882900214844],[123.82166140625,42.179341046875],[123.823214140625,42.1668691230469],[123.790787382813,42.1709023261719],[123.797345,42.153843],[123.75326296875,42.1664455390625],[123.750054960938,42.1922658515625],[123.793682890625,42.2187673164063],[123.772896757813,42.2354116035156],[123.784371367188,42.2534560371095],[123.804156523438,42.2692958808594],[123.799195585938,42.3091786933594],[123.867203398438,42.3353200507813],[123.928531523438,42.3177858710938],[123.880714140625,42.2887429023438],[123.904210234375,42.278843],[123.8992590625,42.2390151191406],[123.932896757813,42.2293959785156],[123.941793242188,42.2182900214844]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"双塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.447345,41.713843],[120.471890898438,41.6976210761719],[120.491676054688,41.702055890625],[120.505513945313,41.6820119453125],[120.52326296875,41.6697585273438],[120.53142703125,41.6579274726563],[120.556158476563,41.6408534980469],[120.551041289063,41.6180275703125],[120.611329375,41.6025551582031],[120.62142703125,41.5879274726563],[120.634586210938,41.578843],[120.62142703125,41.5697585273438],[120.617345,41.5638430000001],[120.59170046875,41.5594863105469],[120.552320585938,41.5302907539063],[120.541202421875,41.5158876777344],[120.522579375,41.5400160957032],[120.49486453125,41.5232985664063],[120.452345,41.5295815253907],[120.421031523438,41.5249550605469],[120.4231653125,41.5393886542969],[120.397345,41.553843],[120.40170046875,41.5594863105469],[120.4186340625,41.5725551582031],[120.4360559375,41.5951308417969],[120.45298953125,41.6081996894532],[120.46170046875,41.6227614570312],[120.423678007813,41.6521108222656],[120.463721953125,41.6684987617188],[120.4413684375,41.6986452460938],[120.447345,41.713843]]]]}},{"type":"Feature","properties":{"name":"龙城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.447345,41.713843],[120.4413684375,41.6986452460938],[120.463721953125,41.6684987617188],[120.423678007813,41.6521108222656],[120.46170046875,41.6227614570312],[120.45298953125,41.6081996894532],[120.4360559375,41.5951308417969],[120.4186340625,41.5725551582031],[120.40170046875,41.5594863105469],[120.397345,41.553843],[120.391881132813,41.5493056464844],[120.377257109375,41.5316994453125],[120.362808867188,41.4983803535156],[120.34119265625,41.4606423164062],[120.282808867188,41.4534609199219],[120.31322390625,41.4787270332031],[120.291881132813,41.5083803535156],[120.274439726563,41.5485976386719],[120.244908476563,41.5614052558594],[120.225103789063,41.6070632148437],[120.262808867188,41.6383803535157],[120.285299101563,41.6748464179688],[120.281822539063,41.7089687324219],[120.285269804688,41.7283803535156],[120.301881132813,41.7083803535157],[120.335269804688,41.6993056464844],[120.351881132813,41.7193056464844],[120.372808867188,41.7283803535156],[120.387345,41.753843],[120.41142703125,41.7379274726563],[120.437432890625,41.7281972480469],[120.447345,41.713843]]]]}},{"type":"Feature","properties":{"name":"北票市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.934307890625,42.274887921875],[120.99326296875,42.2597585273438],[121.01142703125,42.2479274726563],[121.027345,42.243843],[121.03248171875,42.22761253125],[121.052550078125,42.2090200019532],[121.051417265625,42.1804457832031],[121.0789465625,42.1134255195313],[121.062535429688,42.0786525703125],[121.041729765625,42.0593740058595],[121.043136015625,42.0238430000001],[121.042144804688,41.998843],[121.042545195313,41.9888430000001],[121.041807890625,41.9702516914063],[121.118433867188,41.9672145820313],[121.1523840625,41.9791139960937],[121.172154570313,41.9686525703125],[121.192535429688,41.9590334296875],[121.206597929688,41.9146205878907],[121.252154570313,41.8986525703125],[121.302115507813,41.8867519355469],[121.27482546875,41.8351784492187],[121.262154570313,41.7990334296875],[121.257345,41.783843],[121.25197390625,41.7792153144532],[121.24271609375,41.7684706855469],[121.22197390625,41.7592153144532],[121.208878203125,41.7440163398438],[121.224176054688,41.7166030097656],[121.221295195313,41.6808071113281],[121.14197390625,41.6592153144532],[121.12345828125,41.6377272773438],[121.098624296875,41.6163295722657],[121.053902617188,41.6199233222656],[120.971085234375,41.5895107246094],[120.972769804688,41.5685646796875],[120.959576445313,41.5449184394532],[120.90197390625,41.5192153144531],[120.89271609375,41.4784706855469],[120.88197390625,41.4692153144532],[120.877345,41.4138430000001],[120.841783476563,41.4196852851563],[120.831754179688,41.3951772285157],[120.81298953125,41.4194863105469],[120.800225859375,41.4281996894532],[120.804195585938,41.4013198066407],[120.777345,41.393843],[120.77326296875,41.4097585273438],[120.732960234375,41.4201015449219],[120.71033328125,41.4150295234375],[120.687022734375,41.4487929511719],[120.627691679688,41.46401878125],[120.65755984375,41.5098854804688],[120.63060671875,41.5284950996094],[120.650250273438,41.5586574531251],[120.617345,41.5638430000001],[120.62142703125,41.5697585273438],[120.634586210938,41.578843],[120.62142703125,41.5879274726563],[120.611329375,41.6025551582031],[120.551041289063,41.6180275703125],[120.556158476563,41.6408534980469],[120.53142703125,41.6579274726563],[120.52326296875,41.6697585273438],[120.505513945313,41.6820119453125],[120.491676054688,41.702055890625],[120.471890898438,41.6976210761719],[120.447345,41.713843],[120.437432890625,41.7281972480469],[120.41142703125,41.7379274726563],[120.387345,41.753843],[120.38298953125,41.7794863105469],[120.36170046875,41.8081996894532],[120.341436796875,41.8577077460938],[120.343082304688,41.8688430000001],[120.340728789063,41.8847743964844],[120.287345,41.893843],[120.287345,41.903843],[120.267345,41.903843],[120.275338164063,41.9310854316407],[120.302769804688,41.9282900214844],[120.316422148438,41.9597682929688],[120.365513945313,41.9900490546876],[120.410391875,41.985473859375],[120.421881132813,41.9993056464845],[120.4421496875,42.0161415839844],[120.453785429688,42.0557949042969],[120.482896757813,42.0684194160156],[120.481793242188,42.079233625],[120.493541289063,42.0889882636719],[120.4632434375,42.1021279121094],[120.482882109375,42.118442609375],[120.562808867188,42.1483803535156],[120.585045195313,42.1611159492188],[120.61255984375,42.1583119941407],[120.665479765625,42.1731069160156],[120.701881132813,42.1993056464844],[120.722808867188,42.2083803535157],[120.733516875,42.2212721992188],[120.781173125,42.2164138007813],[120.791881132813,42.2293056464844],[120.8490246875,42.2507106757813],[120.883604765625,42.2471852851563],[120.877345,42.263843],[120.881676054688,42.2701137519531],[120.897345,42.2666017890626],[120.934307890625,42.274887921875]]]]}},{"type":"Feature","properties":{"name":"朝阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.337345,40.9938430000001],[120.349537382813,40.9972658515625],[120.340767851563,41.0060353828125],[120.319439726563,41.00136253125],[120.30326296875,40.9779274726563],[120.29142703125,40.9697585273438],[120.270753203125,40.9398110175781],[120.237345,40.9538430000001],[120.210787382813,40.9488857246094],[120.18552859375,40.9206179023437],[120.152628203125,40.9317568183594],[120.1944153125,40.9690956855469],[120.191925078125,41.010903546875],[120.142345,41.0079494453126],[120.127906523438,41.0394057441407],[120.107882109375,41.0762538886719],[120.057345,41.103843],[120.040924101563,41.1299013496094],[120.0428528125,41.1488430000001],[120.040069609375,41.1761550117188],[119.9979309375,41.1944301582032],[119.972584257813,41.2528774238282],[119.9332434375,41.2855580878907],[119.96431765625,41.2990358710937],[119.911881132813,41.3083803535156],[119.883507109375,41.3246315742188],[119.86937625,41.35722190625],[119.882808867188,41.3683803535157],[119.89345828125,41.3929360175782],[119.8918371875,41.408843],[119.89287234375,41.4190151191407],[119.881754179688,41.4689614082032],[119.8940246875,41.5016164375001],[119.887345,41.543843],[119.897345,41.543843],[119.897345,41.553843],[119.908795195313,41.568676984375],[119.94298953125,41.5781996894532],[119.97170046875,41.5894863105469],[120.041695585938,41.5994362617188],[120.045391875,41.6244741035157],[120.001529570313,41.6583315253907],[120.003160429688,41.6693544746094],[119.987672148438,41.6813100410156],[120.00170046875,41.6994863105469],[120.027345,41.713843],[120.03197390625,41.7084706855469],[120.055655546875,41.6979042792969],[120.072345,41.6992446113281],[120.091363554688,41.6977162910157],[120.136300078125,41.7227883125001],[120.119088164063,41.7536391425782],[120.188658476563,41.8377443671875],[120.239859648438,41.8818544746094],[120.282701445313,41.8784133125001],[120.287345,41.893843],[120.340728789063,41.8847743964844],[120.343082304688,41.8688430000001],[120.341436796875,41.8577077460938],[120.36170046875,41.8081996894532],[120.38298953125,41.7794863105469],[120.387345,41.753843],[120.372808867188,41.7283803535156],[120.351881132813,41.7193056464844],[120.335269804688,41.6993056464844],[120.301881132813,41.7083803535157],[120.285269804688,41.7283803535156],[120.281822539063,41.7089687324219],[120.285299101563,41.6748464179688],[120.262808867188,41.6383803535157],[120.225103789063,41.6070632148437],[120.244908476563,41.5614052558594],[120.274439726563,41.5485976386719],[120.291881132813,41.5083803535156],[120.31322390625,41.4787270332031],[120.282808867188,41.4534609199219],[120.34119265625,41.4606423164062],[120.362808867188,41.4983803535156],[120.377257109375,41.5316994453125],[120.391881132813,41.5493056464844],[120.397345,41.553843],[120.4231653125,41.5393886542969],[120.421031523438,41.5249550605469],[120.452345,41.5295815253907],[120.49486453125,41.5232985664063],[120.522579375,41.5400160957032],[120.541202421875,41.5158876777344],[120.552320585938,41.5302907539063],[120.59170046875,41.5594863105469],[120.617345,41.5638430000001],[120.650250273438,41.5586574531251],[120.63060671875,41.5284950996094],[120.65755984375,41.5098854804688],[120.627691679688,41.46401878125],[120.687022734375,41.4487929511719],[120.71033328125,41.4150295234375],[120.732960234375,41.4201015449219],[120.77326296875,41.4097585273438],[120.777345,41.393843],[120.767725859375,41.363462140625],[120.752154570313,41.3490334296875],[120.742535429688,41.2986525703125],[120.7317590625,41.2782851386719],[120.763331328125,41.249028546875],[120.703389921875,41.2207399726563],[120.7534778125,41.2088088203125],[120.767345,41.1938430000001],[120.712369414063,41.1869741035157],[120.68373171875,41.1905361152344],[120.662706328125,41.1781764960938],[120.651983671875,41.1795095039063],[120.632896757813,41.1682900214844],[120.611793242188,41.1593959785156],[120.592896757813,41.1082900214844],[120.541793242188,41.0893959785156],[120.52834109375,41.0574758125],[120.508472929688,41.059946515625],[120.49263796875,41.0797206855469],[120.456046171875,41.0656569648438],[120.442896757813,41.0154116035156],[120.457345,41.0038430000001],[120.427633085938,40.9603639960938],[120.403863554688,40.9568508125],[120.348365507813,40.9795644355469],[120.337345,40.9938430000001]]],[[[120.287345,41.893843],[120.254288359375,41.8977602363281],[120.267345,41.903843],[120.287345,41.903843],[120.287345,41.893843]]]]}},{"type":"Feature","properties":{"name":"建平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.797345,41.5338430000001],[119.793922148438,41.5460353828126],[119.785152617188,41.5372658515625],[119.788267851563,41.5229177070313],[119.76650515625,41.5048403144532],[119.748355742188,41.4731508613281],[119.729405546875,41.4227089667969],[119.751881132813,41.3834609199219],[119.722457304688,41.3580788398438],[119.643975859375,41.3246157050782],[119.577345,41.3178237128906],[119.56201296875,41.3193862128907],[119.537345,41.3038430000001],[119.53326296875,41.3097585273438],[119.517193632813,41.3208534980469],[119.52361453125,41.3495131660156],[119.493590117188,41.3702431464844],[119.477076445313,41.3665407539063],[119.415806914063,41.3815895820313],[119.396734648438,41.4092116523438],[119.367345,41.4138430000001],[119.371612578125,41.4495778632813],[119.393287382813,41.4783815742188],[119.390621367188,41.4938430000001],[119.393287382813,41.509321515625],[119.353360625,41.5582094550781],[119.413326445313,41.568149640625],[119.410069609375,41.5870607734375],[119.351612578125,41.6081081367188],[119.300299101563,41.6519533515625],[119.304068632813,41.673843],[119.296807890625,41.7160048652344],[119.31330203125,41.7282753730469],[119.309776640625,41.7487538886719],[119.288062773438,41.783843],[119.311226835938,41.8212721992188],[119.317345,41.843843],[119.323424101563,41.8603993964844],[119.321539335938,41.883843],[119.323951445313,41.9138430000001],[119.321944609375,41.938843],[119.322745390625,41.9488430000001],[119.321187773438,41.9682631660156],[119.374815703125,42.0330971503907],[119.371944609375,42.0688430000001],[119.373629179688,42.0898146796876],[119.357345,42.1038430000001],[119.35298953125,42.1094863105469],[119.308131132813,42.1189528632813],[119.26724734375,42.1777443671875],[119.225611601563,42.1947853828125],[119.24298953125,42.2081996894531],[119.27744265625,42.2577443671875],[119.30298953125,42.2681996894532],[119.346485625,42.3004482246094],[119.367345,42.2973647285156],[119.395299101563,42.3014955878906],[119.44170046875,42.3294863105469],[119.46298953125,42.3381996894532],[119.48900515625,42.353891828125],[119.497345,42.383843],[119.571500273438,42.3508596015626],[119.53271609375,42.2961598945313],[119.552095976563,42.2884218574219],[119.562623320313,42.2892665839844],[119.58197390625,42.2784706855469],[119.60271609375,42.2692153144532],[119.6173840625,42.2521901679688],[119.642066679688,42.2384194160157],[119.652345,42.2392446113281],[119.662345,42.2384413886719],[119.672623320313,42.2392665839844],[119.7220715625,42.2116774726563],[119.762345,42.2084413886719],[119.833233671875,42.2141371894531],[119.853502226563,42.1778041816406],[119.82271609375,42.1226247382813],[119.84197390625,42.0984706855469],[119.869542265625,42.0747170234375],[119.90197390625,42.018470685547],[119.91271609375,42.0092153144532],[119.93123171875,41.9877272773438],[119.955025664063,41.9672243476563],[119.95115359375,41.9189858222656],[119.98271609375,41.8992153144531],[119.99197390625,41.8684706855469],[120.00271609375,41.8492153144532],[120.016651640625,41.8179836250001],[120.035206328125,41.8194753242188],[120.031944609375,41.778843],[120.032764921875,41.7686049628906],[120.021871367188,41.7389382148438],[120.027345,41.713843],[120.00170046875,41.6994863105469],[119.987672148438,41.6813100410156],[120.003160429688,41.6693544746094],[120.001529570313,41.6583315253907],[120.045391875,41.6244741035157],[120.041695585938,41.5994362617188],[119.97170046875,41.5894863105469],[119.94298953125,41.5781996894532],[119.908795195313,41.568676984375],[119.897345,41.553843],[119.887345,41.553843],[119.887345,41.543843],[119.852843046875,41.5353688789063],[119.827076445313,41.5411452460938],[119.797345,41.5338430000001]]]]}},{"type":"Feature","properties":{"name":"喀喇沁左翼蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.797345,41.5338430000001],[119.827076445313,41.5411452460938],[119.852843046875,41.5353688789063],[119.887345,41.543843],[119.8940246875,41.5016164375001],[119.881754179688,41.4689614082032],[119.89287234375,41.4190151191407],[119.8918371875,41.408843],[119.89345828125,41.3929360175782],[119.882808867188,41.3683803535157],[119.86937625,41.35722190625],[119.883507109375,41.3246315742188],[119.911881132813,41.3083803535156],[119.96431765625,41.2990358710937],[119.9332434375,41.2855580878907],[119.972584257813,41.2528774238282],[119.9979309375,41.1944301582032],[120.040069609375,41.1761550117188],[120.0428528125,41.1488430000001],[120.040924101563,41.1299013496094],[120.057345,41.103843],[120.05013796875,41.0957790351563],[119.991124296875,41.0686928535157],[120.021827421875,41.0121889472657],[119.990367460938,40.9436354804688],[119.961529570313,40.9279665351563],[119.937345,40.9550356269532],[119.922628203125,40.9385622382813],[119.912061796875,40.9291237617188],[119.902271757813,40.9077919746094],[119.82209109375,40.9292678046876],[119.812628203125,40.8785622382813],[119.802061796875,40.8691237617188],[119.784312773438,40.8492580390626],[119.772164335938,40.8485341621094],[119.727086210938,40.8606081367188],[119.6930090625,40.8449684882813],[119.6920325,40.8285903144531],[119.706690703125,40.815493390625],[119.674195585938,40.7791237617188],[119.662061796875,40.7885622382813],[119.617628203125,40.838296125],[119.562198515625,40.8184084296875],[119.552628203125,40.8291237617188],[119.527345,40.833843],[119.522628203125,40.8591237617188],[119.472061796875,40.8685622382812],[119.462628203125,40.8770827460938],[119.5726575,40.938579328125],[119.5719934375,40.9497158027344],[119.549605742188,40.9483815742188],[119.522628203125,40.9847927070312],[119.556011992188,41.0001149726562],[119.582569609375,40.9985317207031],[119.602061796875,41.0091237617188],[119.622628203125,41.0185622382813],[119.632061796875,41.0510231757813],[119.572061796875,41.0785622382813],[119.552628203125,41.0891237617188],[119.502061796875,41.1085622382813],[119.492628203125,41.1203163886719],[119.522345,41.1185451484375],[119.532569609375,41.1191542792969],[119.56172,41.1033144355469],[119.582061796875,41.1317568183594],[119.55968875,41.172934796875],[119.474254179688,41.2121462226563],[119.4937903125,41.2296010566406],[119.491910429688,41.2611183906251],[119.522628203125,41.2885622382812],[119.532061796875,41.2991237617187],[119.537345,41.3038430000001],[119.56201296875,41.3193862128907],[119.577345,41.3178237128906],[119.643975859375,41.3246157050782],[119.722457304688,41.3580788398438],[119.751881132813,41.3834609199219],[119.729405546875,41.4227089667969],[119.748355742188,41.4731508613281],[119.76650515625,41.5048403144532],[119.788267851563,41.5229177070313],[119.797345,41.5338430000001]]],[[[119.797345,41.5338430000001],[119.785152617188,41.5372658515625],[119.793922148438,41.5460353828126],[119.797345,41.5338430000001]]],[[[119.887345,41.543843],[119.887345,41.553843],[119.897345,41.553843],[119.897345,41.543843],[119.887345,41.543843]]]]}},{"type":"Feature","properties":{"name":"凌源市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.415806914063,41.3815895820313],[119.477076445313,41.3665407539063],[119.493590117188,41.3702431464844],[119.52361453125,41.3495131660156],[119.517193632813,41.3208534980469],[119.53326296875,41.3097585273438],[119.537345,41.3038430000001],[119.532061796875,41.2991237617187],[119.522628203125,41.2885622382812],[119.491910429688,41.2611183906251],[119.4937903125,41.2296010566406],[119.474254179688,41.2121462226563],[119.55968875,41.172934796875],[119.582061796875,41.1317568183594],[119.56172,41.1033144355469],[119.532569609375,41.1191542792969],[119.522345,41.1185451484375],[119.492628203125,41.1203163886719],[119.502061796875,41.1085622382813],[119.552628203125,41.0891237617188],[119.572061796875,41.0785622382813],[119.632061796875,41.0510231757813],[119.622628203125,41.0185622382813],[119.602061796875,41.0091237617188],[119.582569609375,40.9985317207031],[119.556011992188,41.0001149726562],[119.522628203125,40.9847927070312],[119.549605742188,40.9483815742188],[119.5719934375,40.9497158027344],[119.5726575,40.938579328125],[119.462628203125,40.8770827460938],[119.472061796875,40.8685622382812],[119.522628203125,40.8591237617188],[119.527345,40.833843],[119.52107546875,40.8295131660157],[119.525557890625,40.8095131660156],[119.51142703125,40.7997585273438],[119.50170046875,40.7737538886719],[119.47697390625,40.7566835761719],[119.461676054688,40.7601137519532],[119.45326296875,40.7479274726563],[119.42455203125,40.7281069160156],[119.41170046875,40.6937538886719],[119.38697390625,40.6766835761719],[119.372345,40.6799636054688],[119.3441028125,40.6736330390625],[119.33326296875,40.6579274726563],[119.32142703125,40.6497585273438],[119.309176054688,40.6320119453125],[119.265582304688,40.6019130683594],[119.250797148438,40.6233266425782],[119.237345,40.603843],[119.147345,40.603843],[119.147345,40.6138430000001],[119.141358671875,40.6290651679688],[119.174400664063,40.6699440742188],[119.170308867188,40.6976186347657],[119.10013796875,40.6669533515626],[119.077345,40.6703212714844],[119.052857695313,40.6667018867188],[119.04298953125,40.6794863105469],[119.027086210938,40.6917604804688],[119.002345,40.6881044746094],[118.980113554688,40.6913893867188],[118.937125273438,40.7470851875],[118.897345,40.753843],[118.891632109375,40.7728115058594],[118.841158476563,40.8090566230469],[118.842955351563,40.8314455390625],[118.86271609375,40.8484706855469],[118.884766875,40.8836782050782],[118.881920195313,40.9191213203126],[118.89271609375,40.9384706855469],[118.903038359375,40.9615993476563],[118.952345,40.9576381660157],[118.98404421875,40.9601845527344],[119.02197390625,40.9964284492188],[118.953819609375,41.01694846875],[118.92271609375,41.0426247382813],[118.956920195313,41.0720912910156],[119.017345,41.0672365546876],[119.068834257813,41.0713735175781],[119.08197390625,41.1292153144532],[119.12271609375,41.1384706855469],[119.191080351563,41.1920095039063],[119.162730742188,41.2164321113282],[119.20271609375,41.2284706855469],[119.21197390625,41.2492153144531],[119.243199492188,41.2761159492187],[119.237345,41.313843],[119.24197390625,41.3192153144532],[119.32392703125,41.3341640449219],[119.321944609375,41.358843],[119.323472929688,41.3778627753907],[119.306842070313,41.407671125],[119.367345,41.4138430000001],[119.396734648438,41.4092116523438],[119.415806914063,41.3815895820313]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"建昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.127906523438,41.0394057441407],[120.142345,41.0079494453126],[120.191925078125,41.010903546875],[120.1944153125,40.9690956855469],[120.152628203125,40.9317568183594],[120.18552859375,40.9206179023437],[120.210787382813,40.9488857246094],[120.237345,40.9538430000001],[120.2438684375,40.9141408515625],[120.240206328125,40.8893544746094],[120.2586340625,40.8751308417969],[120.2760559375,40.8525551582032],[120.293375273438,40.8391872382812],[120.287345,40.823843],[120.270343046875,40.7973757148438],[120.275421171875,40.7630141425782],[120.245328398438,40.6894863105469],[120.23170046875,40.6981996894532],[120.216265898438,40.7181996894531],[120.20170046875,40.7094863105469],[120.192857695313,40.6980287910156],[120.172945585938,40.7009706855469],[120.1176575,40.6855751777344],[120.125953398438,40.6294130683594],[120.10170046875,40.6194863105469],[120.097345,40.6138430000001],[120.07197390625,40.6092153144531],[120.06271609375,40.5864455390625],[120.090499296875,40.5625112128906],[120.03197390625,40.5492153144532],[120.011363554688,40.5377162910156],[119.963961210938,40.5415248847656],[119.95271609375,40.5284706855469],[119.9091809375,40.5153627753906],[119.884464140625,40.4599770332032],[119.8666028125,40.4445864082032],[119.852667265625,40.4284157539063],[119.842345,40.4292446113282],[119.822345,40.4276381660157],[119.802105742188,40.4292641425781],[119.74814578125,40.40944846875],[119.706329375,40.432778546875],[119.652345,40.4284413886719],[119.632345,40.4300478339844],[119.612345,40.4284413886719],[119.602105742188,40.4292641425781],[119.587345,40.4238430000001],[119.593472929688,40.4488014960937],[119.58978640625,40.4652529121094],[119.565513945313,40.4820119453125],[119.55326296875,40.4997585273438],[119.54060671875,40.5084950996094],[119.553858671875,40.528843],[119.539112578125,40.5514821601563],[119.517345,40.5466017890625],[119.501900664063,40.550063703125],[119.472550078125,40.5309511542969],[119.425548125,40.5414882636719],[119.391842070313,40.5273305488281],[119.38326296875,40.5397585273438],[119.363975859375,40.5479274726562],[119.332789335938,40.527622296875],[119.312345,40.5322060371094],[119.291900664063,40.527622296875],[119.272789335938,40.540063703125],[119.261900664063,40.537622296875],[119.214136992188,40.5687233710938],[119.237345,40.603843],[119.250797148438,40.6233266425782],[119.265582304688,40.6019130683594],[119.309176054688,40.6320119453125],[119.32142703125,40.6497585273438],[119.33326296875,40.6579274726563],[119.3441028125,40.6736330390625],[119.372345,40.6799636054688],[119.38697390625,40.6766835761719],[119.41170046875,40.6937538886719],[119.42455203125,40.7281069160156],[119.45326296875,40.7479274726563],[119.461676054688,40.7601137519532],[119.47697390625,40.7566835761719],[119.50170046875,40.7737538886719],[119.51142703125,40.7997585273438],[119.525557890625,40.8095131660156],[119.52107546875,40.8295131660157],[119.527345,40.833843],[119.552628203125,40.8291237617188],[119.562198515625,40.8184084296875],[119.617628203125,40.838296125],[119.662061796875,40.7885622382813],[119.674195585938,40.7791237617188],[119.706690703125,40.815493390625],[119.6920325,40.8285903144531],[119.6930090625,40.8449684882813],[119.727086210938,40.8606081367188],[119.772164335938,40.8485341621094],[119.784312773438,40.8492580390626],[119.802061796875,40.8691237617188],[119.812628203125,40.8785622382813],[119.82209109375,40.9292678046876],[119.902271757813,40.9077919746094],[119.912061796875,40.9291237617188],[119.922628203125,40.9385622382813],[119.937345,40.9550356269532],[119.961529570313,40.9279665351563],[119.990367460938,40.9436354804688],[120.021827421875,41.0121889472657],[119.991124296875,41.0686928535157],[120.05013796875,41.0957790351563],[120.057345,41.103843],[120.107882109375,41.0762538886719],[120.127906523438,41.0394057441407]]]]}},{"type":"Feature","properties":{"name":"连山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.337345,40.9938430000001],[120.340767851563,41.0060353828125],[120.349537382813,40.9972658515625],[120.337345,40.9938430000001]]],[[[120.717345,41.023843],[120.707345,41.023843],[120.712345,41.0366506171875],[120.717345,41.023843]]],[[[120.857345,41.133843],[120.852345,41.1210353828125],[120.847345,41.133843],[120.857345,41.133843]]],[[[120.337345,40.9938430000001],[120.348365507813,40.9795644355469],[120.403863554688,40.9568508125],[120.427633085938,40.9603639960938],[120.457345,41.0038430000001],[120.484644804688,40.9858034492188],[120.524830351563,41.0119716621094],[120.55033328125,40.9750295234376],[120.572652617188,40.9800331855469],[120.639454375,40.9497585273438],[120.67326296875,40.9579274726563],[120.692862578125,41.013843],[120.707345,41.023843],[120.712345,41.0005995917969],[120.717345,41.023843],[120.768643828125,41.0112429023438],[120.78142703125,41.0297585273438],[120.814176054688,41.0420119453125],[120.84142703125,41.0897585273437],[120.869234648438,41.1256349921876],[120.857345,41.133843],[120.869698515625,41.1572927070313],[120.905142851563,41.1400673652344],[120.8992590625,41.1269692207031],[120.922345,41.11659690625],[120.93330203125,41.12151878125],[120.937345,41.1138430000001],[120.9446496875,41.0841127753907],[120.937354765625,41.0515883613282],[120.991080351563,41.0349355292969],[121.027345,41.043843],[121.013155546875,41.0085378242188],[121.003756132813,40.9539516425781],[121.031612578125,40.9332314277344],[121.022633085938,40.8752138496094],[121.001612578125,40.8595778632813],[120.997345,40.8438430000001],[120.99298953125,40.8381996894531],[120.957345,40.823843],[120.945650664063,40.8379201484375],[120.8914465625,40.7726638007813],[120.893897734375,40.7486220527344],[120.851881132813,40.7393056464844],[120.832808867188,40.7283803535157],[120.817345,40.723843],[120.810079375,40.7322768378906],[120.761998320313,40.7284133125],[120.75271609375,40.7492153144532],[120.7069934375,40.7696181464844],[120.659288359375,40.7657851386719],[120.5724621875,40.7792543769532],[120.562345,40.7784413886719],[120.542345,40.7800478339844],[120.517345,40.7780397773437],[120.502105742188,40.7792641425782],[120.44814578125,40.7594484687501],[120.41271609375,40.7792153144532],[120.39197390625,40.7884706855469],[120.376304960938,40.8235805488281],[120.303902617188,40.8177626777344],[120.287345,40.823843],[120.293375273438,40.8391872382812],[120.2760559375,40.8525551582032],[120.2586340625,40.8751308417969],[120.240206328125,40.8893544746094],[120.2438684375,40.9141408515625],[120.237345,40.9538430000001],[120.270753203125,40.9398110175781],[120.29142703125,40.9697585273438],[120.30326296875,40.9779274726563],[120.319439726563,41.00136253125],[120.337345,40.9938430000001]]]]}},{"type":"Feature","properties":{"name":"龙港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.021910429688,40.7265395332031],[121.027345,40.713843],[121.004346953125,40.717895734375],[121.021910429688,40.7265395332031]]],[[[120.92298953125,40.7670607734376],[120.937349882813,40.7194863105469],[120.96298953125,40.7281996894532],[120.990709257813,40.7449196601563],[120.99459109375,40.7186452460938],[120.96170046875,40.7094863105469],[120.938590117188,40.6955471015625],[120.83298953125,40.6781996894531],[120.827345,40.673843],[120.823443632813,40.6799404121094],[120.803648710938,40.6926113105469],[120.817345,40.723843],[120.832808867188,40.7283803535157],[120.851881132813,40.7393056464844],[120.893897734375,40.7486220527344],[120.8914465625,40.7726638007813],[120.945650664063,40.8379201484375],[120.957345,40.823843],[120.96170046875,40.7981996894531],[120.981085234375,40.7832387519531],[120.92298953125,40.7670607734376]]]]}},{"type":"Feature","properties":{"name":"南票区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.707345,41.023843],[120.717345,41.023843],[120.712345,41.0005995917969],[120.707345,41.023843]]],[[[120.717345,41.023843],[120.712345,41.0366506171875],[120.707345,41.023843],[120.692862578125,41.013843],[120.67326296875,40.9579274726563],[120.639454375,40.9497585273438],[120.572652617188,40.9800331855469],[120.55033328125,40.9750295234376],[120.524830351563,41.0119716621094],[120.484644804688,40.9858034492188],[120.457345,41.0038430000001],[120.442896757813,41.0154116035156],[120.456046171875,41.0656569648438],[120.49263796875,41.0797206855469],[120.508472929688,41.059946515625],[120.52834109375,41.0574758125],[120.541793242188,41.0893959785156],[120.592896757813,41.1082900214844],[120.611793242188,41.1593959785156],[120.632896757813,41.1682900214844],[120.651983671875,41.1795095039063],[120.662706328125,41.1781764960938],[120.68373171875,41.1905361152344],[120.712369414063,41.1869741035157],[120.767345,41.1938430000001],[120.788853789063,41.2028774238281],[120.77970828125,41.1620729804688],[120.815303984375,41.1388930488282],[120.847345,41.133843],[120.852345,41.1210353828125],[120.857345,41.133843],[120.869234648438,41.1256349921876],[120.84142703125,41.0897585273437],[120.814176054688,41.0420119453125],[120.78142703125,41.0297585273438],[120.768643828125,41.0112429023438],[120.717345,41.023843]]]]}},{"type":"Feature","properties":{"name":"绥中县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,40.2338430000001],[119.623922148438,40.2216506171876],[119.615152617188,40.2304201484375],[119.627345,40.2338430000001]]],[[[119.627345,40.2338430000001],[119.630704375,40.2504836250001],[119.644976835938,40.2684511542969],[119.631090117188,40.2968898750001],[119.610704375,40.307202375],[119.607345,40.3138430000001],[119.602896757813,40.3293959785156],[119.590533476563,40.3392958808594],[119.593013945313,40.3592031074219],[119.581676054688,40.3784841132813],[119.587345,40.4238430000001],[119.602105742188,40.4292641425781],[119.612345,40.4284413886719],[119.632345,40.4300478339844],[119.652345,40.4284413886719],[119.706329375,40.432778546875],[119.74814578125,40.40944846875],[119.802105742188,40.4292641425781],[119.822345,40.4276381660157],[119.842345,40.4292446113282],[119.852667265625,40.4284157539063],[119.8666028125,40.4445864082032],[119.884464140625,40.4599770332032],[119.9091809375,40.5153627753906],[119.95271609375,40.5284706855469],[119.963961210938,40.5415248847656],[120.011363554688,40.5377162910156],[120.03197390625,40.5492153144532],[120.090499296875,40.5625112128906],[120.06271609375,40.5864455390625],[120.07197390625,40.6092153144531],[120.097345,40.6138430000001],[120.10298953125,40.6094863105469],[120.111832304688,40.5980287910157],[120.12869265625,40.6005202460938],[120.14298953125,40.5894863105469],[120.161890898438,40.5578798652344],[120.2115246875,40.5723513007813],[120.186612578125,40.5310488105469],[120.253487578125,40.4936098457031],[120.27170046875,40.4281996894532],[120.312569609375,40.4114723945313],[120.32490359375,40.3530190253906],[120.392086210938,40.3236623359376],[120.44298953125,40.309486310547],[120.472984648438,40.2706264472657],[120.497345,40.263843],[120.5080871875,40.2542470527344],[120.442628203125,40.1985622382813],[120.31595828125,40.1866738105469],[120.233726835938,40.1419899726563],[120.192061796875,40.1291237617188],[120.12060671875,40.1034853339844],[119.91451296875,40.0470571113282],[119.899766875,39.9993056464844],[119.847345,39.993843],[119.83654421875,39.9997646308594],[119.84966921875,40.0316078925782],[119.8135559375,40.0514028144532],[119.787345,40.0405995917969],[119.754263945313,40.0542348457031],[119.76478640625,40.0797646308594],[119.741988554688,40.09226096875],[119.737345,40.113843],[119.74298953125,40.1181996894532],[119.756256132813,40.1353871894531],[119.740748320313,40.2023012519531],[119.706485625,40.1972377753906],[119.66111453125,40.2308779121094],[119.64205203125,40.2280605292969],[119.627345,40.2338430000001]]]]}},{"type":"Feature","properties":{"name":"兴城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.613922148438,40.4060353828126],[120.617345,40.3938430000001],[120.605152617188,40.3972658515625],[120.613922148438,40.4060353828126]]],[[[120.767345,40.473843],[120.763922148438,40.4616506171875],[120.755152617188,40.4704201484375],[120.767345,40.473843]]],[[[120.767345,40.473843],[120.775513945313,40.4856740546875],[120.79361453125,40.4981728339844],[120.789185820313,40.5179274726563],[120.83142703125,40.5078005195313],[120.82326296875,40.4879274726563],[120.767345,40.473843]]],[[[120.287345,40.823843],[120.303902617188,40.8177626777344],[120.376304960938,40.8235805488281],[120.39197390625,40.7884706855469],[120.41271609375,40.7792153144532],[120.44814578125,40.7594484687501],[120.502105742188,40.7792641425782],[120.517345,40.7780397773437],[120.542345,40.7800478339844],[120.562345,40.7784413886719],[120.5724621875,40.7792543769532],[120.659288359375,40.7657851386719],[120.7069934375,40.7696181464844],[120.75271609375,40.7492153144532],[120.761998320313,40.7284133125],[120.810079375,40.7322768378906],[120.817345,40.723843],[120.803648710938,40.6926113105469],[120.823443632813,40.6799404121094],[120.827345,40.673843],[120.820533476563,40.6683901191406],[120.823013945313,40.6484511542969],[120.79072390625,40.6042470527344],[120.731793242188,40.5593959785156],[120.722896757813,40.5482900214844],[120.675562773438,40.5283437324219],[120.662896757813,40.4982900214844],[120.650504179688,40.4772060371094],[120.61783328125,40.4812697578125],[120.582896757813,40.4554116035157],[120.603409453125,40.4389882636719],[120.568375273438,40.3910268378907],[120.591138945313,40.3727968574219],[120.50216921875,40.3241335273438],[120.497345,40.263843],[120.472984648438,40.2706264472657],[120.44298953125,40.309486310547],[120.392086210938,40.3236623359376],[120.32490359375,40.3530190253906],[120.312569609375,40.4114723945313],[120.27170046875,40.4281996894532],[120.253487578125,40.4936098457031],[120.186612578125,40.5310488105469],[120.2115246875,40.5723513007813],[120.161890898438,40.5578798652344],[120.14298953125,40.5894863105469],[120.12869265625,40.6005202460938],[120.111832304688,40.5980287910157],[120.10298953125,40.6094863105469],[120.097345,40.6138430000001],[120.10170046875,40.6194863105469],[120.125953398438,40.6294130683594],[120.1176575,40.6855751777344],[120.172945585938,40.7009706855469],[120.192857695313,40.6980287910156],[120.20170046875,40.7094863105469],[120.216265898438,40.7181996894531],[120.23170046875,40.6981996894532],[120.245328398438,40.6894863105469],[120.275421171875,40.7630141425782],[120.270343046875,40.7973757148438],[120.287345,40.823843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宽城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.517345,44.243843],[125.52197390625,44.2384712958984],[125.587345,44.213843],[125.5765246875,44.1697975898438],[125.5846496875,44.1335732246094],[125.577345,44.103843],[125.552271757813,44.1096529365235],[125.509190703125,44.0970925117188],[125.482857695313,44.1009841132813],[125.465714140625,44.0787740302734],[125.408370390625,44.0666738105469],[125.431324492188,44.0082784248048],[125.47298953125,43.9994869208985],[125.49170046875,43.9681990791016],[125.528819609375,43.9578633857422],[125.509547148438,43.9259120917969],[125.462345,43.9396742988281],[125.419898710938,43.9272988105469],[125.423160429688,43.9493550849609],[125.407086210938,43.9617604804688],[125.377345,43.9573653388673],[125.361715117188,43.9596749091797],[125.357345,43.8938430000001],[125.332105742188,43.9000423408203],[125.317345,43.8938430000001],[125.297345,43.8938430000001],[125.306988554688,43.9183730292969],[125.271519804688,43.9282503486328],[125.27744265625,43.9683309150391],[125.245953398438,43.9926375556641],[125.19654421875,43.9560060859375],[125.143482695313,43.963847272461],[125.130811796875,43.9948067451172],[125.108424101563,44.0081990791016],[125.085616484375,43.9786452460938],[125.057345,43.9738430000001],[125.048570585938,44.0117018867188],[125.041607695313,44.058843],[125.043546171875,44.071982038086],[125.017784453125,44.1146889472657],[125.067345,44.1073653388672],[125.092345,44.1110597968751],[125.112345,44.1081038642579],[125.128082304688,44.1104299140626],[125.198502226563,44.0968917060548],[125.242135039063,44.1096132636719],[125.26357546875,44.106444928711],[125.251593046875,44.1687587714844],[125.253824492188,44.183843],[125.250284453125,44.2077992988282],[125.262345,44.2095821357423],[125.272345,44.2081038642578],[125.282345,44.2095821357423],[125.30013796875,44.206952741211],[125.352662382813,44.229907453125],[125.368424101563,44.2094869208985],[125.3872278125,44.2207350898438],[125.40170046875,44.2394869208984],[125.427345,44.253843],[125.472896757813,44.2493959785156],[125.517345,44.243843]]],[[[125.517345,44.243843],[125.520767851563,44.2560353828126],[125.529537382813,44.2472664619141],[125.517345,44.243843]]]]}},{"type":"Feature","properties":{"name":"绿园区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.143482695313,43.963847272461],[125.19654421875,43.9560060859375],[125.245953398438,43.9926375556641],[125.27744265625,43.9683309150391],[125.271519804688,43.9282503486328],[125.306988554688,43.9183730292969],[125.297345,43.8938430000001],[125.292061796875,43.8891243720703],[125.267027617188,43.8611049628906],[125.156392851563,43.7791243720703],[125.137393828125,43.820526959961],[125.097345,43.843843],[125.091046171875,43.8694930244141],[125.104586210938,43.878843],[125.09142703125,43.8879274726563],[125.08326296875,43.8997585273438],[125.059595976563,43.9160964179688],[125.047345,43.9338430000001],[125.047345,43.9738430000001],[125.057345,43.9738430000001],[125.085616484375,43.9786452460938],[125.108424101563,44.0081990791016],[125.130811796875,43.9948067451172],[125.143482695313,43.963847272461]]]]}},{"type":"Feature","properties":{"name":"朝阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.307345,43.523843],[125.295152617188,43.520419538086],[125.303922148438,43.5116506171875],[125.328663359375,43.5327968574219],[125.357345,43.5138430000001],[125.379947539063,43.4796431708985],[125.34142703125,43.4697585273438],[125.275235625,43.4397585273438],[125.23326296875,43.4499013496094],[125.24142703125,43.4797585273438],[125.266158476563,43.4968325019531],[125.259132109375,43.5281728339844],[125.275557890625,43.5395131660157],[125.270338164063,43.5628035712891],[125.29142703125,43.5997585273438],[125.30408328125,43.6084950996094],[125.29142703125,43.6279274726563],[125.287345,43.643843],[125.29197390625,43.6492147041016],[125.302999296875,43.6587123847656],[125.291920195313,43.6785646796875],[125.2927746875,43.6891664863281],[125.27314578125,43.7060744453125],[125.2274621875,43.7198293281251],[125.143541289063,43.7666524482422],[125.118834257813,43.7953304267579],[125.0918371875,43.8185884833985],[125.097345,43.843843],[125.137393828125,43.820526959961],[125.156392851563,43.7791243720703],[125.267027617188,43.8611049628906],[125.292061796875,43.8891243720703],[125.297345,43.8938430000001],[125.317345,43.8938430000001],[125.313023710938,43.8256740546876],[125.271519804688,43.8096681953125],[125.263170195313,43.7880178046875],[125.243170195313,43.7736830878907],[125.2655871875,43.7545442939454],[125.333775664063,43.7680178046876],[125.354971953125,43.7266103339844],[125.320631132813,43.6725167060547],[125.325308867188,43.648843],[125.321358671875,43.6288430000001],[125.326060820313,43.6050484443359],[125.311519804688,43.5696681953126],[125.307345,43.523843]]]]}},{"type":"Feature","properties":{"name":"德惠市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.517345,44.243843],[125.529537382813,44.2472664619141],[125.520767851563,44.2560353828126],[125.472896757813,44.2493959785156],[125.427345,44.253843],[125.401573515625,44.3090468574219],[125.413448515625,44.318911359375],[125.381881132813,44.3383803535157],[125.372808867188,44.3493056464844],[125.349234648438,44.3595284248047],[125.33107546875,44.3813906074219],[125.333004179688,44.4003047919922],[125.352735625,44.3982936835938],[125.361881132813,44.4093056464844],[125.375933867188,44.4209792304688],[125.358756132813,44.4667067695313],[125.372808867188,44.4783803535156],[125.381881132813,44.4917671943359],[125.342882109375,44.5241652656251],[125.402808867188,44.5583803535157],[125.413697539063,44.5834902167969],[125.462808867188,44.6183803535157],[125.479644804688,44.6386482978516],[125.517725859375,44.649823834961],[125.532608671875,44.6483065009766],[125.59834109375,44.6730055976563],[125.611881132813,44.6893056464844],[125.633053007813,44.7068917060548],[125.6318371875,44.718843],[125.63547,44.7544887519532],[125.682896757813,44.7684072089844],[125.6818371875,44.778843],[125.683678007813,44.7968971992188],[125.72388796875,44.8086977363281],[125.7218371875,44.828843],[125.723004179688,44.8403047919922],[125.753018828125,44.837245709961],[125.751119414063,44.8558742500001],[125.757345,44.8838430000001],[125.77326296875,44.8797585273438],[125.78142703125,44.8579274726563],[125.803638945313,44.8496169257813],[125.7980090625,44.8245088935547],[125.822237578125,44.8402858710938],[125.86326296875,44.8297585273438],[125.87142703125,44.8179274726562],[125.90326296875,44.7997585273438],[125.918228789063,44.7597585273438],[125.96326296875,44.7679274726563],[126.00142703125,44.7797585273438],[126.027345,44.783843],[126.081793242188,44.7682900214844],[126.152896757813,44.7593959785157],[126.163673125,44.7217110419923],[126.21099734375,44.7017696357423],[126.228546171875,44.6798537421876],[126.273922148438,44.7065267158204],[126.270523710938,44.6791829658203],[126.315133085938,44.6478255439454],[126.331793242188,44.6082900214844],[126.344156523438,44.5983901191406],[126.34166140625,44.5783278632813],[126.380714140625,44.5671614814454],[126.402896757813,44.5493959785156],[126.407345,44.523843],[126.387198515625,44.5164443183594],[126.342345,44.5200484443359],[126.292345,44.5160305],[126.215636015625,44.5221944404297],[126.089766875,44.4947402167969],[126.050343046875,44.4667891669922],[125.9919153125,44.4491970039063],[125.993150664063,44.4338430000001],[125.991539335938,44.413843],[125.993043242188,44.3951711250001],[125.926363554688,44.4005287910156],[125.91271609375,44.3964455390625],[125.93271609375,44.3792147041016],[125.95197390625,44.3557784248047],[125.866417265625,44.3233119941407],[125.85271609375,44.3392147041016],[125.830631132813,44.3490706611329],[125.81271609375,44.3892147041016],[125.79056765625,44.3984712958985],[125.77271609375,44.3584712958985],[125.73197390625,44.3492147041016],[125.708951445313,44.3363692451172],[125.647916289063,44.317993390625],[125.612965117188,44.3208016181641],[125.580816679688,44.2694692207032],[125.5965246875,44.2559334541016],[125.587345,44.213843],[125.52197390625,44.2384712958984],[125.517345,44.243843]]]]}},{"type":"Feature","properties":{"name":"二道区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.691031523438,44.1927315498047],[125.732345,44.186626203125],[125.759854765625,44.1906917548829],[125.763116484375,44.1686324287109],[125.751534453125,44.1289168525391],[125.76310671875,44.0789852119141],[125.761607695313,44.068843],[125.765513945313,44.0423879218751],[125.749176054688,44.0152980781251],[125.753082304688,43.988843],[125.744351835938,43.929749982422],[125.810582304688,43.9157741523437],[125.813824492188,43.8938430000001],[125.81156375,43.8785512519531],[125.817345,43.863843],[125.813985625,43.8472023750001],[125.800704375,43.820483625],[125.797345,43.7838430000001],[125.788140898438,43.7719161201172],[125.759205351563,43.7676399970704],[125.708546171875,43.7981990791016],[125.604957304688,43.7737032294922],[125.59298953125,43.7581990791016],[125.557345,43.753843],[125.551978789063,43.7789656806641],[125.562886992188,43.7990431953125],[125.492667265625,43.8207277656251],[125.5126575,43.8385903144531],[125.511890898438,43.8514980292969],[125.462345,43.8485451484376],[125.451470976563,43.8491933417969],[125.452652617188,43.8690065742187],[125.450494414063,43.8785616279297],[125.406744414063,43.8295919013672],[125.364928007813,43.8191243720703],[125.342628203125,43.852821881836],[125.357345,43.8938430000001],[125.361715117188,43.9596749091797],[125.377345,43.9573653388673],[125.407086210938,43.9617604804688],[125.423160429688,43.9493550849609],[125.419898710938,43.9272988105469],[125.462345,43.9396742988281],[125.509547148438,43.9259120917969],[125.528819609375,43.9578633857422],[125.49170046875,43.9681990791016],[125.47298953125,43.9994869208985],[125.431324492188,44.0082784248048],[125.408370390625,44.0666738105469],[125.465714140625,44.0787740302734],[125.482857695313,44.1009841132813],[125.509190703125,44.0970925117188],[125.552271757813,44.1096529365235],[125.577345,44.103843],[125.584420195313,44.0946749091797],[125.6486340625,44.1125557685547],[125.66170046875,44.1294869208984],[125.694522734375,44.1491158271484],[125.691607695313,44.168843],[125.693082304688,44.178843],[125.691031523438,44.1927315498047]]]]}},{"type":"Feature","properties":{"name":"九台市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.407345,44.523843],[126.416964140625,44.5134615302735],[126.432740507813,44.498843],[126.412535429688,44.4801210761719],[126.422154570313,44.4586525703125],[126.43263796875,44.438843],[126.421510039063,44.4178188300781],[126.46134890625,44.4193978095704],[126.482154570313,44.4001210761719],[126.472535429688,44.3686525703125],[126.444732695313,44.3555306220703],[126.462535429688,44.3390334296875],[126.472154570313,44.3086525703125],[126.482672148438,44.2989083076172],[126.452745390625,44.2423574042969],[126.497345,44.2338430000001],[126.49326296875,44.2179274726563],[126.459757109375,44.2053908515625],[126.465225859375,44.1809975410157],[126.437345,44.173843],[126.331793242188,44.1782900214844],[126.291954375,44.1896651435547],[126.272423125,44.1575044990234],[126.262896757813,44.1693959785156],[126.236920195313,44.1782900214844],[126.199210234375,44.1561232734375],[126.170079375,44.1597463203126],[126.152896757813,44.1382900214844],[126.13166140625,44.129341046875],[126.133214140625,44.1168691230469],[126.095553007813,44.1215535712891],[126.052896757813,44.0682900214844],[126.041793242188,44.0593959785156],[126.032896757813,44.0482900214844],[126.00873171875,44.0381056953126],[125.992896757813,43.9954116035156],[126.012896757813,43.9793959785156],[126.017345,43.9738430000001],[126.029722929688,43.9489455390625],[126.019420195313,43.9278523994141],[126.039185820313,43.9178523994141],[126.029893828125,43.8988283515626],[126.037345,43.883843],[126.02326296875,43.8779274726563],[125.98142703125,43.8697585273437],[125.97326296875,43.8579274726563],[125.952213164063,43.8433968330079],[125.912623320313,43.8600264716797],[125.897345,43.856601178711],[125.877345,43.8610848212891],[125.851846953125,43.8553688789063],[125.817345,43.863843],[125.81156375,43.8785512519531],[125.813824492188,43.8938430000001],[125.810582304688,43.9157741523437],[125.744351835938,43.929749982422],[125.753082304688,43.988843],[125.749176054688,44.0152980781251],[125.765513945313,44.0423879218751],[125.761607695313,44.068843],[125.76310671875,44.0789852119141],[125.751534453125,44.1289168525391],[125.763116484375,44.1686324287109],[125.759854765625,44.1906917548829],[125.732345,44.186626203125],[125.691031523438,44.1927315498047],[125.693082304688,44.178843],[125.691607695313,44.168843],[125.694522734375,44.1491158271484],[125.66170046875,44.1294869208984],[125.6486340625,44.1125557685547],[125.584420195313,44.0946749091797],[125.577345,44.103843],[125.5846496875,44.1335732246094],[125.5765246875,44.1697975898438],[125.587345,44.213843],[125.5965246875,44.2559334541016],[125.580816679688,44.2694692207032],[125.612965117188,44.3208016181641],[125.647916289063,44.317993390625],[125.708951445313,44.3363692451172],[125.73197390625,44.3492147041016],[125.77271609375,44.3584712958985],[125.79056765625,44.3984712958985],[125.81271609375,44.3892147041016],[125.830631132813,44.3490706611329],[125.85271609375,44.3392147041016],[125.866417265625,44.3233119941407],[125.95197390625,44.3557784248047],[125.93271609375,44.3792147041016],[125.91271609375,44.3964455390625],[125.926363554688,44.4005287910156],[125.993043242188,44.3951711250001],[125.991539335938,44.413843],[125.993150664063,44.4338430000001],[125.9919153125,44.4491970039063],[126.050343046875,44.4667891669922],[126.089766875,44.4947402167969],[126.215636015625,44.5221944404297],[126.292345,44.5160305],[126.342345,44.5200484443359],[126.387198515625,44.5164443183594],[126.407345,44.523843]]]]}},{"type":"Feature","properties":{"name":"南关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.307345,43.523843],[125.303922148438,43.5116506171875],[125.295152617188,43.520419538086],[125.307345,43.523843]]],[[[125.307345,43.523843],[125.311519804688,43.5696681953126],[125.326060820313,43.6050484443359],[125.321358671875,43.6288430000001],[125.325308867188,43.648843],[125.320631132813,43.6725167060547],[125.354971953125,43.7266103339844],[125.333775664063,43.7680178046876],[125.2655871875,43.7545442939454],[125.243170195313,43.7736830878907],[125.263170195313,43.7880178046875],[125.271519804688,43.8096681953125],[125.313023710938,43.8256740546876],[125.317345,43.8938430000001],[125.332105742188,43.9000423408203],[125.357345,43.8938430000001],[125.342628203125,43.852821881836],[125.364928007813,43.8191243720703],[125.406744414063,43.8295919013672],[125.450494414063,43.8785616279297],[125.452652617188,43.8690065742187],[125.451470976563,43.8491933417969],[125.462345,43.8485451484376],[125.511890898438,43.8514980292969],[125.5126575,43.8385903144531],[125.492667265625,43.8207277656251],[125.562886992188,43.7990431953125],[125.551978789063,43.7789656806641],[125.557345,43.753843],[125.55107546875,43.7495131660156],[125.554815703125,43.7328115058594],[125.503590117188,43.6974428535156],[125.487345,43.7010848212891],[125.469381132813,43.6970577216797],[125.475406523438,43.6701802802735],[125.506549101563,43.6585292792969],[125.490250273438,43.6059505439453],[125.472301054688,43.6099733710938],[125.447345,43.603843],[125.42326296875,43.5879274726563],[125.39142703125,43.5797585273438],[125.38326296875,43.5579274726562],[125.36326296875,43.5441188789063],[125.371846953125,43.5376107001953],[125.39142703125,43.5420003486329],[125.38326296875,43.5279274726563],[125.36142703125,43.5197585273438],[125.357345,43.5138430000001],[125.328663359375,43.5327968574219],[125.307345,43.523843]]]]}},{"type":"Feature","properties":{"name":"农安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.747345,44.2038430000001],[124.7600403125,44.2092763496094],[124.751397734375,44.2268398261719],[124.71244265625,44.1983229804688],[124.613511992188,44.2084072089844],[124.592808867188,44.2617671943359],[124.612896757813,44.2784529853516],[124.6118371875,44.288843],[124.613873320313,44.3088430000001],[124.611324492188,44.333843],[124.613834257813,44.3584529853516],[124.601881132813,44.3683803535156],[124.588267851563,44.3847682929688],[124.551475859375,44.4153304267579],[124.55310671875,44.431313703125],[124.582345,44.4283333564453],[124.633394804688,44.4335366035157],[124.631597929688,44.4511556220703],[124.581241484375,44.4729964423829],[124.582896757813,44.4892507148438],[124.551881132813,44.5083803535156],[124.547345,44.513843],[124.551793242188,44.5193959785156],[124.571334257813,44.5350453925781],[124.551344023438,44.5690541816406],[124.607999296875,44.6121718574219],[124.627730742188,44.6368148017579],[124.69033328125,44.6546907783203],[124.742706328125,44.6481764960938],[124.779517851563,44.6698165107422],[124.797345,44.6675991035156],[124.812345,44.6694649482422],[124.830030546875,44.667265241211],[124.80732546875,44.7058852363282],[124.862037382813,44.7295027900391],[124.887735625,44.7263063789063],[124.936236601563,44.7449489570313],[124.982896757813,44.7582900214844],[125.013800078125,44.7808626533204],[125.10908328125,44.7655025458985],[125.141954375,44.7895137763672],[125.166495390625,44.7864614082032],[125.22123171875,44.8020912910156],[125.265206328125,44.7966213203125],[125.301793242188,44.8120375800781],[125.284991484375,44.8259389472656],[125.222896757813,44.8436916328125],[125.231793242188,44.8493959785157],[125.247345,44.853843],[125.29326296875,44.8463002753907],[125.355108671875,44.8836067939454],[125.400767851563,44.8768593574219],[125.425377226563,44.8917055488282],[125.476187773438,44.8768917060547],[125.54170046875,44.8894869208984],[125.60298953125,44.8981990791016],[125.61170046875,44.9094869208985],[125.62298953125,44.9181990791016],[125.637838164063,44.9374379707031],[125.668800078125,44.9420137763672],[125.69170046875,44.9281990791016],[125.737979765625,44.9184334541016],[125.757345,44.8838430000001],[125.751119414063,44.8558742500001],[125.753018828125,44.837245709961],[125.723004179688,44.8403047919922],[125.7218371875,44.828843],[125.72388796875,44.8086977363281],[125.683678007813,44.7968971992188],[125.6818371875,44.778843],[125.682896757813,44.7684072089844],[125.63547,44.7544887519532],[125.6318371875,44.718843],[125.633053007813,44.7068917060548],[125.611881132813,44.6893056464844],[125.59834109375,44.6730055976563],[125.532608671875,44.6483065009766],[125.517725859375,44.649823834961],[125.479644804688,44.6386482978516],[125.462808867188,44.6183803535157],[125.413697539063,44.5834902167969],[125.402808867188,44.5583803535157],[125.342882109375,44.5241652656251],[125.381881132813,44.4917671943359],[125.372808867188,44.4783803535156],[125.358756132813,44.4667067695313],[125.375933867188,44.4209792304688],[125.361881132813,44.4093056464844],[125.352735625,44.3982936835938],[125.333004179688,44.4003047919922],[125.33107546875,44.3813906074219],[125.349234648438,44.3595284248047],[125.372808867188,44.3493056464844],[125.381881132813,44.3383803535157],[125.413448515625,44.318911359375],[125.401573515625,44.3090468574219],[125.427345,44.253843],[125.40170046875,44.2394869208984],[125.3872278125,44.2207350898438],[125.368424101563,44.2094869208985],[125.352662382813,44.229907453125],[125.30013796875,44.206952741211],[125.282345,44.2095821357423],[125.272345,44.2081038642578],[125.262345,44.2095821357423],[125.250284453125,44.2077992988282],[125.253824492188,44.183843],[125.251593046875,44.1687587714844],[125.26357546875,44.106444928711],[125.242135039063,44.1096132636719],[125.198502226563,44.0968917060548],[125.128082304688,44.1104299140626],[125.112345,44.1081038642579],[125.092345,44.1110597968751],[125.067345,44.1073653388672],[125.017784453125,44.1146889472657],[125.043546171875,44.071982038086],[125.041607695313,44.058843],[125.048570585938,44.0117018867188],[125.057345,43.9738430000001],[125.047345,43.9738430000001],[125.047345,43.9338430000001],[125.03142703125,43.9297585273438],[125.01326296875,43.9179274726563],[124.949595976563,43.9015895820313],[124.9577746875,43.9380690742188],[124.913551054688,43.9546169257813],[124.925225859375,44.0066884589844],[124.870816679688,44.0206502509766],[124.832847929688,44.0500771308594],[124.802506132813,44.0432747626953],[124.750396757813,44.0651607490234],[124.753468046875,44.0788430000001],[124.749454375,44.0967287421876],[124.765474882813,44.1213259101563],[124.74107546875,44.1381728339844],[124.743648710938,44.1496590400391],[124.727345,44.153843],[124.721046171875,44.1794930244141],[124.739176054688,44.1920119453126],[124.747345,44.2038430000001]]]]}},{"type":"Feature","properties":{"name":"双阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.708546171875,43.7981990791016],[125.759205351563,43.7676399970704],[125.788140898438,43.7719161201172],[125.797345,43.7838430000001],[125.8090246875,43.7741396308594],[125.841881132813,43.6983803535157],[125.859644804688,43.6836244941407],[125.882882109375,43.6291268134766],[125.8818371875,43.618843],[125.883707304688,43.6004885078125],[125.855440703125,43.5341927314453],[125.851793242188,43.4984529853516],[125.862808867188,43.4893056464844],[125.881881132813,43.4583803535157],[125.932808867188,43.4293056464844],[125.950596953125,43.4078884101562],[125.977345,43.413843],[125.991793242188,43.3882900214844],[126.018360625,43.3519203925782],[125.980181914063,43.3372463203125],[125.961983671875,43.3395095039063],[125.894268828125,43.2997035957032],[125.840719023438,43.2930434394531],[125.805850859375,43.3135390449219],[125.748258085938,43.2796840644532],[125.687345,43.263843],[125.662896757813,43.2793959785157],[125.631236601563,43.2927370429688],[125.576060820313,43.3251735664063],[125.534923125,43.3552230048828],[125.572896757813,43.3782900214844],[125.581793242188,43.3974721503907],[125.524893828125,43.4097823310548],[125.512345,43.4082210517578],[125.4870715625,43.4113649726563],[125.504112578125,43.4403548408203],[125.461793242188,43.4982900214844],[125.452896757813,43.5193959785157],[125.44146609375,43.5285500312501],[125.453004179688,43.5585610175782],[125.447345,43.603843],[125.472301054688,43.6099733710938],[125.490250273438,43.6059505439453],[125.506549101563,43.6585292792969],[125.475406523438,43.6701802802735],[125.469381132813,43.6970577216797],[125.487345,43.7010848212891],[125.503590117188,43.6974428535156],[125.554815703125,43.7328115058594],[125.55107546875,43.7495131660156],[125.557345,43.753843],[125.59298953125,43.7581990791016],[125.604957304688,43.7737032294922],[125.708546171875,43.7981990791016]]]]}},{"type":"Feature","properties":{"name":"榆树市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.717345,44.523843],[126.727345,44.523843],[126.722345,44.5110353828125],[126.717345,44.523843]]],[[[126.607345,44.563843],[126.619537382813,44.560419538086],[126.610767851563,44.5516506171875],[126.607345,44.563843]]],[[[126.727345,44.523843],[126.722345,44.5366506171875],[126.717345,44.523843],[126.688995390625,44.5354927802735],[126.63802859375,44.5489394355469],[126.617345,44.5777950263672],[126.607345,44.563843],[126.561793242188,44.5593959785156],[126.51306765625,44.5406679511719],[126.441890898438,44.549521100586],[126.432896757813,44.5382900214844],[126.407345,44.523843],[126.402896757813,44.5493959785156],[126.380714140625,44.5671614814454],[126.34166140625,44.5783278632813],[126.344156523438,44.5983901191406],[126.331793242188,44.6082900214844],[126.315133085938,44.6478255439454],[126.270523710938,44.6791829658203],[126.273922148438,44.7065267158204],[126.228546171875,44.6798537421876],[126.21099734375,44.7017696357423],[126.163673125,44.7217110419923],[126.152896757813,44.7593959785157],[126.081793242188,44.7682900214844],[126.027345,44.783843],[126.03142703125,44.7897585273437],[126.043472929688,44.8388014960938],[126.039454375,44.8567287421876],[126.053565703125,44.8783962226562],[126.051221953125,44.8888430000001],[126.054132109375,44.9018056464844],[126.091573515625,44.8934120917969],[126.10142703125,44.9197585273438],[126.1276184375,44.9279274726563],[126.143013945313,44.9056307197266],[126.162345,44.9099636054688],[126.172345,44.9077223945313],[126.190230742188,44.9117317939453],[126.133673125,44.9768569160156],[126.170538359375,44.9906502509766],[126.184776640625,45.028710553711],[126.167193632813,45.0408534980469],[126.174586210938,45.0738430000001],[126.17107546875,45.0895131660157],[126.1839075,45.0983736396485],[126.167345,45.133843],[126.17947390625,45.1568715644531],[126.202345,45.1465969062501],[126.217345,45.1533357978516],[126.232408476563,45.1465688300782],[126.247345,45.1538430000001],[126.250767851563,45.1416506171875],[126.259537382813,45.1504195380859],[126.247345,45.1538430000001],[126.25170046875,45.1594869208985],[126.276324492188,45.1695638251954],[126.292345,45.1903206611328],[126.305289335938,45.1735536933594],[126.331954375,45.1896395087891],[126.35111453125,45.1868086982422],[126.4110559375,45.2312502265625],[126.438595,45.2271810126953],[126.492203398438,45.2396028876954],[126.502345,45.2381038642578],[126.517345,45.2403206611329],[126.5425403125,45.23659690625],[126.547345,45.253843],[126.597408476563,45.2387703681641],[126.675719023438,45.189892194336],[126.759097929688,45.1709505439453],[126.77271609375,45.1592147041016],[126.792022734375,45.1368080878907],[126.822345,45.1392446113282],[126.837345,45.1380397773438],[126.852345,45.1392446113282],[126.867345,45.1380397773438],[126.882345,45.1392446113282],[126.892345,45.1384413886719],[126.915811796875,45.1403267646485],[126.9527746875,45.1291970039063],[126.9519153125,45.1185195136719],[126.964273710938,45.1078719306641],[126.961812773438,45.0772243476563],[126.993619414063,45.0498232246094],[127.07197390625,44.9584712958984],[127.0827746875,44.9491664863281],[127.081944609375,44.938843],[127.083453398438,44.9200411201172],[127.06271609375,44.9084712958985],[127.004659453125,44.8909914375],[126.977418242188,44.8168123603516],[126.99197390625,44.7684712958984],[127.032901640625,44.7107491279298],[127.030338164063,44.678843],[127.035777617188,44.6111092353516],[127.021539335938,44.598843],[127.03271609375,44.5892147041016],[127.037345,44.563843],[127.015343046875,44.5577169013672],[126.971671171875,44.5313729072266],[126.876627226563,44.5152272773438],[126.8430090625,44.5355055976563],[126.745406523438,44.5167421699219],[126.727345,44.523843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昌邑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.377345,43.963843],[126.389537382813,43.9672664619141],[126.380767851563,43.9760353828125],[126.361158476563,43.9600307441406],[126.333531523438,43.9476552558594],[126.291158476563,43.9400307441407],[126.231363554688,43.9203639960938],[126.219718046875,43.9014681220704],[126.188702421875,43.8823567939453],[126.163531523438,43.9000307441407],[126.141158476563,43.9076552558594],[126.133531523438,43.9182344794922],[126.173531523438,43.9276552558594],[126.181158476563,43.9440242744141],[126.129971953125,43.9614681220703],[126.0997278125,43.982700421875],[126.067345,43.9726137519531],[126.03623171875,43.982304303711],[126.017345,43.9738430000001],[126.012896757813,43.9793959785156],[125.992896757813,43.9954116035156],[126.00873171875,44.0381056953126],[126.032896757813,44.0482900214844],[126.041793242188,44.0593959785156],[126.052896757813,44.0682900214844],[126.095553007813,44.1215535712891],[126.133214140625,44.1168691230469],[126.13166140625,44.129341046875],[126.152896757813,44.1382900214844],[126.170079375,44.1597463203126],[126.199210234375,44.1561232734375],[126.236920195313,44.1782900214844],[126.262896757813,44.1693959785156],[126.272423125,44.1575044990234],[126.291954375,44.1896651435547],[126.331793242188,44.1782900214844],[126.437345,44.173843],[126.432808867188,44.1583803535157],[126.41146609375,44.1287264228516],[126.424771757813,44.1176723457032],[126.420264921875,44.0734194160157],[126.472550078125,44.0507430244141],[126.481881132813,43.9983803535157],[126.50158328125,43.9639791083985],[126.47111453125,43.9386678291016],[126.525264921875,43.9183846259766],[126.541881132813,43.8983803535156],[126.591480742188,43.8838259101563],[126.597345,43.863843],[126.597345,43.833843],[126.557345,43.833843],[126.552281523438,43.851548078125],[126.491666289063,43.8883675361329],[126.49302859375,43.899341046875],[126.471793242188,43.9082900214844],[126.442896757813,43.9293959785157],[126.391793242188,43.9382900214844],[126.377345,43.963843]]]]}},{"type":"Feature","properties":{"name":"船营区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.377345,43.963843],[126.380767851563,43.9760353828125],[126.389537382813,43.9672664619141],[126.377345,43.963843]]],[[[126.377345,43.963843],[126.391793242188,43.9382900214844],[126.442896757813,43.9293959785157],[126.471793242188,43.9082900214844],[126.49302859375,43.899341046875],[126.491666289063,43.8883675361329],[126.552281523438,43.851548078125],[126.557345,43.833843],[126.539644804688,43.8286482978516],[126.522808867188,43.8083803535157],[126.499654570313,43.7891481757813],[126.381344023438,43.7758809638673],[126.357345,43.733843],[126.321978789063,43.7396529365234],[126.2936340625,43.7225557685548],[126.239058867188,43.700219953125],[126.22298953125,43.7394869208985],[126.19170046875,43.7481990791016],[126.17298953125,43.7627620673828],[126.193824492188,43.7788430000001],[126.17041140625,43.7969118476563],[126.151832304688,43.8209841132813],[126.128116484375,43.8174788642578],[126.11298953125,43.8427620673828],[126.134078398438,43.8590407539063],[126.111519804688,43.8682729316407],[126.1131653125,43.8793819404297],[126.098424101563,43.8881990791016],[126.080806914063,43.8653755927734],[126.047838164063,43.8702480292969],[126.037345,43.883843],[126.029893828125,43.8988283515626],[126.039185820313,43.9178523994141],[126.019420195313,43.9278523994141],[126.029722929688,43.9489455390625],[126.017345,43.9738430000001],[126.03623171875,43.982304303711],[126.067345,43.9726137519531],[126.0997278125,43.982700421875],[126.129971953125,43.9614681220703],[126.181158476563,43.9440242744141],[126.173531523438,43.9276552558594],[126.133531523438,43.9182344794922],[126.141158476563,43.9076552558594],[126.163531523438,43.9000307441407],[126.188702421875,43.8823567939453],[126.219718046875,43.9014681220704],[126.231363554688,43.9203639960938],[126.291158476563,43.9400307441407],[126.333531523438,43.9476552558594],[126.361158476563,43.9600307441406],[126.377345,43.963843]]]]}},{"type":"Feature","properties":{"name":"丰满区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.597345,43.863843],[126.612056914063,43.857798078125],[126.627447539063,43.860839459961],[126.689381132813,43.848423078125],[126.721519804688,43.8280178046875],[126.743170195313,43.8196681953125],[126.76205203125,43.8076790595704],[126.802877226563,43.8200795722656],[126.807345,43.8138430000001],[126.824644804688,43.7863918281251],[126.8218371875,43.758843],[126.823834257813,43.7392330146485],[126.806422148438,43.7247682929688],[126.792808867188,43.7083803535156],[126.772808867188,43.6917671943359],[126.785484648438,43.6590981269532],[126.921324492188,43.6438649726563],[126.924771757813,43.6100136542969],[126.909830351563,43.5976003242187],[126.923570585938,43.53587425],[126.921207304688,43.5126619697266],[126.927345,43.4738430000001],[126.916080351563,43.4575264716797],[126.863013945313,43.4456307197266],[126.85267703125,43.4606026435547],[126.8225403125,43.4802260566406],[126.792623320313,43.4676595283203],[126.762345,43.4744472480469],[126.732345,43.4677223945313],[126.713013945313,43.4720552802735],[126.69271609375,43.4426564765625],[126.647345,43.463843],[126.636422148438,43.4729177070312],[126.622808867188,43.4893056464844],[126.611881132813,43.4983803535157],[126.597515898438,43.5156771064454],[126.63158328125,43.5439791083985],[126.611881132813,43.5783803535157],[126.592999296875,43.6219252753907],[126.620928984375,43.645126569336],[126.59818484375,43.6848409248047],[126.581793242188,43.6984529853516],[126.582896757813,43.7092665839844],[126.55634890625,43.7207802558594],[126.532345,43.7183333564454],[126.522345,43.7193526435548],[126.485406523438,43.7155873847657],[126.45591921875,43.6800905585938],[126.436285429688,43.6693056464844],[126.370982695313,43.7104567695313],[126.372896757813,43.7292787910156],[126.357345,43.733843],[126.381344023438,43.7758809638673],[126.499654570313,43.7891481757813],[126.522808867188,43.8083803535157],[126.539644804688,43.8286482978516],[126.557345,43.833843],[126.597345,43.833843],[126.597345,43.863843]]]]}},{"type":"Feature","properties":{"name":"龙潭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.698267851563,44.2999721503906],[126.712345,44.2982210517579],[126.725582304688,44.2998677802735],[126.719303007813,44.2493959785156],[126.732896757813,44.2582900214844],[126.7443371875,44.2725746894532],[126.771793242188,44.2382900214844],[126.79302859375,44.229341046875],[126.791724882813,44.218843],[126.793023710938,44.2083901191407],[126.770553007813,44.1903963447266],[126.782896757813,44.1693959785156],[126.796236601563,44.1377370429687],[126.812896757813,44.1093959785157],[126.817345,44.093843],[126.774932890625,44.1036708808594],[126.760670195313,44.0851924873047],[126.764483671875,44.059355084961],[126.750865507813,44.0488430000001],[126.789288359375,44.0191866279297],[126.816324492188,44.0081221748047],[126.850426054688,43.9639400458985],[126.83170046875,43.9494869208985],[126.82298953125,43.9326430488281],[126.853824492188,43.908843],[126.83869265625,43.8971657539063],[126.808990507813,43.9015554023438],[126.848604765625,43.8525356269532],[126.8260559375,43.8351302314454],[126.81298953125,43.8181990791016],[126.807345,43.8138430000001],[126.802877226563,43.8200795722656],[126.76205203125,43.8076790595704],[126.743170195313,43.8196681953125],[126.721519804688,43.8280178046875],[126.689381132813,43.848423078125],[126.627447539063,43.860839459961],[126.612056914063,43.857798078125],[126.597345,43.863843],[126.591480742188,43.8838259101563],[126.541881132813,43.8983803535156],[126.525264921875,43.9183846259766],[126.47111453125,43.9386678291016],[126.50158328125,43.9639791083985],[126.481881132813,43.9983803535157],[126.472550078125,44.0507430244141],[126.420264921875,44.0734194160157],[126.424771757813,44.1176723457032],[126.41146609375,44.1287264228516],[126.432808867188,44.1583803535157],[126.437345,44.173843],[126.465225859375,44.1809975410157],[126.459757109375,44.2053908515625],[126.49326296875,44.2179274726563],[126.497345,44.2338430000001],[126.508546171875,44.2478322578125],[126.542345,44.2279647041016],[126.5622278125,44.2396529365235],[126.600753203125,44.2248445869141],[126.663033476563,44.2383187080078],[126.6611340625,44.2535964179688],[126.698267851563,44.2999721503906]]]]}},{"type":"Feature","properties":{"name":"磐石市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.667345,43.0538430000001],[125.657345,43.0538430000001],[125.662345,43.0770864082032],[125.667345,43.0538430000001]]],[[[125.667345,43.0538430000001],[125.719732695313,43.0585036445313],[125.731573515625,43.0901369453126],[125.752345,43.0854799628907],[125.778707304688,43.0913906074219],[125.76103640625,43.1185329414063],[125.70142703125,43.1279274726563],[125.682271757813,43.1556728339844],[125.67170046875,43.1839321113281],[125.65142703125,43.1979274726563],[125.637994414063,43.2173867011719],[125.671007109375,43.240180890625],[125.687345,43.263843],[125.748258085938,43.2796840644532],[125.805850859375,43.3135390449219],[125.840719023438,43.2930434394531],[125.894268828125,43.2997035957032],[125.961983671875,43.3395095039063],[125.980181914063,43.3372463203125],[126.018360625,43.3519203925782],[125.991793242188,43.3882900214844],[125.977345,43.413843],[125.98201296875,43.4206026435547],[126.028443632813,43.4508382392578],[126.062345,43.4432387519532],[126.121925078125,43.4565950751953],[126.132554960938,43.4021584296876],[126.159141875,43.3961983466797],[126.192066679688,43.4100264716797],[126.202345,43.4077223945313],[126.221138945313,43.4119356513672],[126.25326296875,43.3897585273438],[126.26142703125,43.3779274726563],[126.297022734375,43.3687929511719],[126.307345,43.353843],[126.302896757813,43.3482900214844],[126.283922148438,43.3330934882813],[126.311793242188,43.2982900214844],[126.351793242188,43.2868532539063],[126.326846953125,43.2491445136719],[126.262896757813,43.23530784375],[126.291793242188,43.2082900214844],[126.312896757813,43.1993959785157],[126.345972929688,43.1449404121094],[126.393702421875,43.1508779121094],[126.411793242188,43.1282900214844],[126.450714140625,43.1171620917969],[126.478453398438,43.0949489570313],[126.49537234375,43.0738210273438],[126.521983671875,43.0581764960938],[126.53834109375,43.0602101875001],[126.56797,42.9899013496094],[126.598131132813,42.9771913886719],[126.580553007813,42.9472890449219],[126.611334257813,42.9226406074219],[126.586558867188,42.8804946113282],[126.61302859375,42.869341046875],[126.608136015625,42.8299892402344],[126.632345,42.826977765625],[126.664346953125,42.8309572578125],[126.68334109375,42.7986440253906],[126.652213164063,42.7737184882813],[126.647345,42.723843],[126.6274621875,42.717856671875],[126.59271609375,42.6984706855469],[126.569722929688,42.6882106757813],[126.547730742188,42.6626845527344],[126.500787382813,42.6799233222657],[126.482345,42.6784413886719],[126.467345,42.6796462226563],[126.417100859375,42.6756093574219],[126.380894804688,42.6958095527344],[126.390191679688,42.8114821601563],[126.342345,42.8076381660156],[126.303316679688,42.8107741523437],[126.29271609375,42.7984706855469],[126.26197390625,42.7892153144532],[126.229820585938,42.777407453125],[126.1386340625,42.7897682929688],[126.067345,42.7838430000001],[126.0094934375,42.7897438789063],[125.99271609375,42.8092153144532],[125.95197390625,42.8184706855469],[125.910186796875,42.8511977363282],[125.89271609375,42.9092153144532],[125.8416028125,42.92460471875],[125.843472929688,42.9478627753907],[125.820064726563,42.9898146796875],[125.767178984375,43.0184706855469],[125.727345,43.003843],[125.720704375,43.0072023750001],[125.709771757813,43.0288137031251],[125.674918242188,43.0388722968751],[125.667345,43.0538430000001]]]]}},{"type":"Feature","properties":{"name":"舒兰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.727345,44.523843],[126.717345,44.523843],[126.722345,44.5366506171875],[126.727345,44.523843]]],[[[127.157345,44.0838430000001],[127.169537382813,44.0872664619141],[127.160767851563,44.0960353828125],[127.10170046875,44.0981990791016],[127.091832304688,44.1109841132813],[127.071954375,44.1080464912109],[127.052735625,44.1196395087891],[127.042261992188,44.1180916572266],[126.965045195313,44.1329366279298],[126.93205203125,44.1280611396485],[126.886656523438,44.1459072089844],[126.850865507813,44.0995375800782],[126.817345,44.093843],[126.812896757813,44.1093959785157],[126.796236601563,44.1377370429687],[126.782896757813,44.1693959785156],[126.770553007813,44.1903963447266],[126.793023710938,44.2083901191407],[126.791724882813,44.218843],[126.79302859375,44.229341046875],[126.771793242188,44.2382900214844],[126.7443371875,44.2725746894532],[126.732896757813,44.2582900214844],[126.719303007813,44.2493959785156],[126.725582304688,44.2998677802735],[126.712345,44.2982210517579],[126.698267851563,44.2999721503906],[126.6611340625,44.2535964179688],[126.663033476563,44.2383187080078],[126.600753203125,44.2248445869141],[126.5622278125,44.2396529365235],[126.542345,44.2279647041016],[126.508546171875,44.2478322578125],[126.497345,44.2338430000001],[126.452745390625,44.2423574042969],[126.482672148438,44.2989083076172],[126.472154570313,44.3086525703125],[126.462535429688,44.3390334296875],[126.444732695313,44.3555306220703],[126.472535429688,44.3686525703125],[126.482154570313,44.4001210761719],[126.46134890625,44.4193978095704],[126.421510039063,44.4178188300781],[126.43263796875,44.438843],[126.422154570313,44.4586525703125],[126.412535429688,44.4801210761719],[126.432740507813,44.498843],[126.416964140625,44.5134615302735],[126.407345,44.523843],[126.432896757813,44.5382900214844],[126.441890898438,44.549521100586],[126.51306765625,44.5406679511719],[126.561793242188,44.5593959785156],[126.607345,44.563843],[126.610767851563,44.5516506171875],[126.619537382813,44.560419538086],[126.607345,44.563843],[126.617345,44.5777950263672],[126.63802859375,44.5489394355469],[126.688995390625,44.5354927802735],[126.717345,44.523843],[126.722345,44.5110353828125],[126.727345,44.523843],[126.745406523438,44.5167421699219],[126.8430090625,44.5355055976563],[126.876627226563,44.5152272773438],[126.971671171875,44.5313729072266],[127.015343046875,44.5577169013672],[127.037345,44.563843],[127.060650664063,44.5705062080079],[127.093702421875,44.6117836738282],[127.135753203125,44.6065529609375],[127.162896757813,44.6282900214844],[127.178912382813,44.6482900214844],[127.224000273438,44.6391732001954],[127.202896757813,44.6222743964844],[127.2598059375,44.6144271064453],[127.278912382813,44.6382900214844],[127.392896757813,44.6293959785156],[127.411793242188,44.6182900214844],[127.478179960938,44.6039260078125],[127.521793242188,44.5782900214844],[127.560689726563,44.5671688056641],[127.56330203125,44.5461611152344],[127.532896757813,44.5282900214844],[127.460611601563,44.5177687812501],[127.462965117188,44.498843],[127.460084257813,44.4756728339844],[127.501793242188,44.4422743964844],[127.492896757813,44.4182900214844],[127.473902617188,44.4030800605469],[127.512896757813,44.3793959785157],[127.552921171875,44.3294179511719],[127.613248320313,44.2811074042969],[127.611724882813,44.268843],[127.613013945313,44.2584505439453],[127.58849734375,44.2248891425782],[127.61662234375,44.1897670722656],[127.652896757813,44.1793959785156],[127.676763945313,44.1653682685547],[127.692896757813,44.1782900214844],[127.712423125,44.2026699042969],[127.727388945313,44.0998220039062],[127.747345,44.0838430000001],[127.721803007813,44.0359737373047],[127.649425078125,43.9894869208985],[127.606148710938,43.9994814277344],[127.578761015625,44.0349636054688],[127.521256132813,44.0264650703125],[127.525260039063,44.0535854316407],[127.508892851563,44.0747914863281],[127.45170046875,44.0981990791016],[127.438761015625,44.1149636054688],[127.387345,44.1073653388672],[127.37005984375,44.1099196601562],[127.35170046875,44.0794869208985],[127.34298953125,44.0581990791016],[127.331549101563,44.0392336250001],[127.33423953125,44.0210182929688],[127.31298953125,44.0081990791016],[127.273560820313,43.9920619941407],[127.271607695313,43.978843],[127.273980742188,43.9627791572266],[127.234815703125,43.9569911933594],[127.165631132813,43.9715895820313],[127.158878203125,44.0173073554688],[127.18093875,44.0343367744141],[127.183160429688,44.049355084961],[127.17170046875,44.0581990791016],[127.157345,44.0838430000001]]]]}},{"type":"Feature","properties":{"name":"永吉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.111519804688,43.8682729316407],[126.134078398438,43.8590407539063],[126.11298953125,43.8427620673828],[126.128116484375,43.8174788642578],[126.151832304688,43.8209841132813],[126.17041140625,43.7969118476563],[126.193824492188,43.7788430000001],[126.17298953125,43.7627620673828],[126.19170046875,43.7481990791016],[126.22298953125,43.7394869208985],[126.239058867188,43.700219953125],[126.2936340625,43.7225557685548],[126.321978789063,43.7396529365234],[126.357345,43.733843],[126.372896757813,43.7292787910156],[126.370982695313,43.7104567695313],[126.436285429688,43.6693056464844],[126.45591921875,43.6800905585938],[126.485406523438,43.7155873847657],[126.522345,43.7193526435548],[126.532345,43.7183333564454],[126.55634890625,43.7207802558594],[126.582896757813,43.7092665839844],[126.581793242188,43.6984529853516],[126.59818484375,43.6848409248047],[126.620928984375,43.645126569336],[126.592999296875,43.6219252753907],[126.611881132813,43.5783803535157],[126.63158328125,43.5439791083985],[126.597515898438,43.5156771064454],[126.611881132813,43.4983803535157],[126.622808867188,43.4893056464844],[126.636422148438,43.4729177070312],[126.647345,43.463843],[126.653214140625,43.4168514228516],[126.61166140625,43.399341046875],[126.613980742188,43.380683209961],[126.583453398438,43.3627370429688],[126.55166140625,43.349341046875],[126.556632109375,43.3093959785157],[126.516510039063,43.3196388984375],[126.482706328125,43.3395095039063],[126.467203398438,43.3375814033204],[126.439879179688,43.3490956855469],[126.415328398438,43.4073543525391],[126.382706328125,43.3881764960938],[126.365440703125,43.3903237128907],[126.351793242188,43.3793959785156],[126.342896757813,43.3582900214844],[126.307345,43.353843],[126.297022734375,43.3687929511719],[126.26142703125,43.3779274726563],[126.25326296875,43.3897585273438],[126.221138945313,43.4119356513672],[126.202345,43.4077223945313],[126.192066679688,43.4100264716797],[126.159141875,43.3961983466797],[126.132554960938,43.4021584296876],[126.121925078125,43.4565950751953],[126.062345,43.4432387519532],[126.028443632813,43.4508382392578],[125.98201296875,43.4206026435547],[125.977345,43.413843],[125.950596953125,43.4078884101562],[125.932808867188,43.4293056464844],[125.881881132813,43.4583803535157],[125.862808867188,43.4893056464844],[125.851793242188,43.4984529853516],[125.855440703125,43.5341927314453],[125.883707304688,43.6004885078125],[125.8818371875,43.618843],[125.882882109375,43.6291268134766],[125.859644804688,43.6836244941407],[125.841881132813,43.6983803535157],[125.8090246875,43.7741396308594],[125.797345,43.7838430000001],[125.800704375,43.820483625],[125.813985625,43.8472023750001],[125.817345,43.863843],[125.851846953125,43.8553688789063],[125.877345,43.8610848212891],[125.897345,43.856601178711],[125.912623320313,43.8600264716797],[125.952213164063,43.8433968330079],[125.97326296875,43.8579274726563],[125.98142703125,43.8697585273437],[126.02326296875,43.8779274726563],[126.037345,43.883843],[126.047838164063,43.8702480292969],[126.080806914063,43.8653755927734],[126.098424101563,43.8881990791016],[126.1131653125,43.8793819404297],[126.111519804688,43.8682729316407]]]]}},{"type":"Feature","properties":{"name":"桦甸市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.487345,42.6038430000001],[127.490767851563,42.6160353828126],[127.499537382813,42.6072658515625],[127.487345,42.6038430000001]]],[[[127.487345,42.6038430000001],[127.48326296875,42.5979274726563],[127.461051054688,42.5896169257813],[127.467735625,42.5597878242188],[127.417345,42.5710842109375],[127.400069609375,42.567212140625],[127.35377078125,42.5845339179688],[127.34326296875,42.5997585273438],[127.33142703125,42.6079274726563],[127.310714140625,42.6379274726563],[127.28142703125,42.6297585273438],[127.270147734375,42.6134206367188],[127.230855742188,42.5969167304688],[127.20076296875,42.6081764960938],[127.207345,42.623843],[127.220152617188,42.628843],[127.207345,42.6338430000001],[127.232896757813,42.6682900214844],[127.251793242188,42.7022743964844],[127.231793242188,42.7182900214844],[127.202921171875,42.7543447089844],[127.189527617188,42.80118675],[127.19455203125,42.8416054511719],[127.141983671875,42.7995595527344],[127.062345,42.8094643378907],[127.045318632813,42.8073464179687],[127.007345,42.7850258613282],[126.982896757813,42.7993959785156],[126.890548125,42.8082900214844],[126.893023710938,42.7883901191407],[126.879249296875,42.7773622871094],[126.852345,42.780708234375],[126.826261015625,42.7774648261719],[126.79978640625,42.7444057441407],[126.804156523438,42.7092958808594],[126.786236601563,42.6949489570313],[126.765479765625,42.669028546875],[126.747345,42.663843],[126.725108671875,42.6878432441407],[126.647345,42.723843],[126.652213164063,42.7737184882813],[126.68334109375,42.7986440253906],[126.664346953125,42.8309572578125],[126.632345,42.826977765625],[126.608136015625,42.8299892402344],[126.61302859375,42.869341046875],[126.586558867188,42.8804946113282],[126.611334257813,42.9226406074219],[126.580553007813,42.9472890449219],[126.598131132813,42.9771913886719],[126.56797,42.9899013496094],[126.53834109375,43.0602101875001],[126.521983671875,43.0581764960938],[126.49537234375,43.0738210273438],[126.478453398438,43.0949489570313],[126.450714140625,43.1171620917969],[126.411793242188,43.1282900214844],[126.393702421875,43.1508779121094],[126.345972929688,43.1449404121094],[126.312896757813,43.1993959785157],[126.291793242188,43.2082900214844],[126.262896757813,43.23530784375],[126.326846953125,43.2491445136719],[126.351793242188,43.2868532539063],[126.311793242188,43.2982900214844],[126.283922148438,43.3330934882813],[126.302896757813,43.3482900214844],[126.307345,43.353843],[126.342896757813,43.3582900214844],[126.351793242188,43.3793959785156],[126.365440703125,43.3903237128907],[126.382706328125,43.3881764960938],[126.415328398438,43.4073543525391],[126.439879179688,43.3490956855469],[126.467203398438,43.3375814033204],[126.482706328125,43.3395095039063],[126.516510039063,43.3196388984375],[126.556632109375,43.3093959785157],[126.55166140625,43.349341046875],[126.583453398438,43.3627370429688],[126.613980742188,43.380683209961],[126.61166140625,43.399341046875],[126.653214140625,43.4168514228516],[126.647345,43.463843],[126.69271609375,43.4426564765625],[126.713013945313,43.4720552802735],[126.732345,43.4677223945313],[126.762345,43.4744472480469],[126.792623320313,43.4676595283203],[126.8225403125,43.4802260566406],[126.85267703125,43.4606026435547],[126.863013945313,43.4456307197266],[126.916080351563,43.4575264716797],[126.927345,43.4738430000001],[126.987896757813,43.4469112373047],[127.017511015625,43.3996334052735],[127.042345,43.3976375556641],[127.078990507813,43.4005825019531],[127.113902617188,43.3877626777344],[127.14197390625,43.3900185371094],[127.129132109375,43.3739961982422],[127.09271609375,43.3426247382813],[127.106656523438,43.3062477851563],[127.12197390625,43.2884706855469],[127.147515898438,43.2770729804688],[127.131597929688,43.2485402656251],[127.184361601563,43.2389150214844],[127.209742460938,43.2094533515625],[127.224854765625,43.2082399726563],[127.282105742188,43.2292641425782],[127.34865359375,43.2239174628906],[127.423385039063,43.2408950019531],[127.4219153125,43.2591970039063],[127.45271609375,43.2684706855469],[127.502828398438,43.2868727851562],[127.542345,43.2900478339844],[127.572022734375,43.2876638007813],[127.58197390625,43.2992153144532],[127.607345,43.303843],[127.611793242188,43.2982900214844],[127.651378203125,43.2816091132813],[127.653077421875,43.2679726386719],[127.621187773438,43.2154726386719],[127.561793242188,43.1793959785156],[127.550123320313,43.1648281074219],[127.491666289063,43.1293178535157],[127.493590117188,43.113843],[127.490479765625,43.0888430000001],[127.493023710938,43.0683901191406],[127.473448515625,43.0527150703126],[127.470479765625,43.028843],[127.492896757813,43.0193959785157],[127.51767703125,42.9884511542969],[127.562896757813,42.9693959785157],[127.581793242188,42.9582900214844],[127.62099734375,42.9417690253907],[127.63537234375,42.9238210273438],[127.665631132813,42.9060341621094],[127.712261992188,42.8881081367188],[127.752589140625,42.8996230292969],[127.781793242188,42.8782900214844],[127.814229765625,42.8690151191407],[127.810533476563,42.8392958808594],[127.822896757813,42.8293959785157],[127.831793242188,42.8182900214844],[127.847100859375,42.8060292792969],[127.832896757813,42.7882900214844],[127.827345,42.7838430000001],[127.822896757813,42.7893959785157],[127.799039335938,42.8085024238281],[127.7230871875,42.8195571113282],[127.710582304688,42.8180019355469],[127.712965117188,42.798843],[127.71041140625,42.7783119941406],[127.64166140625,42.749341046875],[127.642965117188,42.738843],[127.641724882813,42.728843],[127.64302859375,42.718344953125],[127.612769804688,42.7055947089844],[127.582896757813,42.6682900214844],[127.53937625,42.6418556953126],[127.481793242188,42.6293959785157],[127.472896757813,42.6154116035156],[127.487345,42.6038430000001]]]]}},{"type":"Feature","properties":{"name":"蛟河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.157345,44.0838430000001],[127.160767851563,44.0960353828125],[127.169537382813,44.0872664619141],[127.157345,44.0838430000001]]],[[[127.157345,44.0838430000001],[127.17170046875,44.0581990791016],[127.183160429688,44.049355084961],[127.18093875,44.0343367744141],[127.158878203125,44.0173073554688],[127.165631132813,43.9715895820313],[127.234815703125,43.9569911933594],[127.273980742188,43.9627791572266],[127.271607695313,43.978843],[127.273560820313,43.9920619941407],[127.31298953125,44.0081990791016],[127.33423953125,44.0210182929688],[127.331549101563,44.0392336250001],[127.34298953125,44.0581990791016],[127.35170046875,44.0794869208985],[127.37005984375,44.1099196601562],[127.387345,44.1073653388672],[127.438761015625,44.1149636054688],[127.45170046875,44.0981990791016],[127.508892851563,44.0747914863281],[127.525260039063,44.0535854316407],[127.521256132813,44.0264650703125],[127.578761015625,44.0349636054688],[127.606148710938,43.9994814277344],[127.649425078125,43.9894869208985],[127.721803007813,44.0359737373047],[127.747345,44.0838430000001],[127.772506132813,44.0732747626953],[127.8251965625,44.0850868964844],[127.857345,44.063843],[127.85209109375,44.0463881660157],[127.81271609375,44.0184712958985],[127.776519804688,43.9957991767578],[127.771148710938,43.9289296699219],[127.86197390625,43.8785292792969],[127.85271609375,43.8684712958985],[127.80271609375,43.8534169746094],[127.81197390625,43.8084712958985],[127.83271609375,43.7992147041016],[127.845113554688,43.7580397773438],[127.86197390625,43.7384712958984],[127.921861601563,43.7248653388672],[127.900513945313,43.6866036201172],[127.903526640625,43.6491664863281],[127.8919153125,43.6391664863282],[127.8927746875,43.6284889960938],[127.86197390625,43.6192147041016],[127.83271609375,43.5984712958985],[127.81197390625,43.5892147041016],[127.80271609375,43.5784712958985],[127.79197390625,43.5692147041016],[127.78271609375,43.5584712958985],[127.77197390625,43.5492147041016],[127.7555090625,43.5123232246094],[127.695592070313,43.4942836738281],[127.691539335938,43.4438430000001],[127.6962121875,43.3857399726563],[127.664967070313,43.3494747138672],[127.621832304688,43.3302272773438],[127.622877226563,43.3172243476563],[127.607345,43.303843],[127.58197390625,43.2992153144532],[127.572022734375,43.2876638007813],[127.542345,43.2900478339844],[127.502828398438,43.2868727851562],[127.45271609375,43.2684706855469],[127.4219153125,43.2591970039063],[127.423385039063,43.2408950019531],[127.34865359375,43.2239174628906],[127.282105742188,43.2292641425782],[127.224854765625,43.2082399726563],[127.209742460938,43.2094533515625],[127.184361601563,43.2389150214844],[127.131597929688,43.2485402656251],[127.147515898438,43.2770729804688],[127.12197390625,43.2884706855469],[127.106656523438,43.3062477851563],[127.09271609375,43.3426247382813],[127.129132109375,43.3739961982422],[127.14197390625,43.3900185371094],[127.113902617188,43.3877626777344],[127.078990507813,43.4005825019531],[127.042345,43.3976375556641],[127.017511015625,43.3996334052735],[126.987896757813,43.4469112373047],[126.927345,43.4738430000001],[126.921207304688,43.5126619697266],[126.923570585938,43.53587425],[126.909830351563,43.5976003242187],[126.924771757813,43.6100136542969],[126.921324492188,43.6438649726563],[126.785484648438,43.6590981269532],[126.772808867188,43.6917671943359],[126.792808867188,43.7083803535156],[126.806422148438,43.7247682929688],[126.823834257813,43.7392330146485],[126.8218371875,43.758843],[126.824644804688,43.7863918281251],[126.807345,43.8138430000001],[126.81298953125,43.8181990791016],[126.8260559375,43.8351302314454],[126.848604765625,43.8525356269532],[126.808990507813,43.9015554023438],[126.83869265625,43.8971657539063],[126.853824492188,43.908843],[126.82298953125,43.9326430488281],[126.83170046875,43.9494869208985],[126.850426054688,43.9639400458985],[126.816324492188,44.0081221748047],[126.789288359375,44.0191866279297],[126.750865507813,44.0488430000001],[126.764483671875,44.059355084961],[126.760670195313,44.0851924873047],[126.774932890625,44.1036708808594],[126.817345,44.093843],[126.850865507813,44.0995375800782],[126.886656523438,44.1459072089844],[126.93205203125,44.1280611396485],[126.965045195313,44.1329366279298],[127.042261992188,44.1180916572266],[127.052735625,44.1196395087891],[127.071954375,44.1080464912109],[127.091832304688,44.1109841132813],[127.10170046875,44.0981990791016],[127.157345,44.0838430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"公主岭市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.743648710938,44.1496590400391],[124.74107546875,44.1381728339844],[124.765474882813,44.1213259101563],[124.749454375,44.0967287421876],[124.753468046875,44.0788430000001],[124.750396757813,44.0651607490234],[124.802506132813,44.0432747626953],[124.832847929688,44.0500771308594],[124.870816679688,44.0206502509766],[124.925225859375,44.0066884589844],[124.913551054688,43.9546169257813],[124.9577746875,43.9380690742188],[124.949595976563,43.9015895820313],[125.01326296875,43.9179274726563],[125.03142703125,43.9297585273438],[125.047345,43.9338430000001],[125.059595976563,43.9160964179688],[125.08326296875,43.8997585273438],[125.09142703125,43.8879274726563],[125.104586210938,43.878843],[125.091046171875,43.8694930244141],[125.097345,43.843843],[125.0918371875,43.8185884833985],[125.118834257813,43.7953304267579],[125.143541289063,43.7666524482422],[125.2274621875,43.7198293281251],[125.27314578125,43.7060744453125],[125.2927746875,43.6891664863281],[125.291920195313,43.6785646796875],[125.302999296875,43.6587123847656],[125.29197390625,43.6492147041016],[125.287345,43.643843],[125.2134778125,43.6375374580078],[125.054879179688,43.5950600410157],[124.9919153125,43.5510787177735],[124.992642851563,43.538843],[124.9913684375,43.5174367500001],[124.904400664063,43.49058128125],[124.882628203125,43.4769942451172],[124.902628203125,43.4591243720704],[124.912061796875,43.4314760566406],[124.8596496875,43.4152907539063],[124.87939578125,43.360259015625],[124.912628203125,43.3391243720704],[124.9305871875,43.3190200019532],[124.862061796875,43.2791237617188],[124.852628203125,43.2585622382813],[124.822720976563,43.2157509589844],[124.846490507813,43.1720143867188],[124.837345,43.163843],[124.782960234375,43.1951992011719],[124.777345,43.2138430000001],[124.771890898438,43.2290444160156],[124.792960234375,43.238716046875],[124.748609648438,43.2927700019532],[124.76373171875,43.3205947089844],[124.7616028125,43.3562709785157],[124.732061796875,43.3985616279297],[124.722628203125,43.4191243720704],[124.702061796875,43.4485616279297],[124.679386015625,43.4842171455079],[124.6848059375,43.5751149726563],[124.671495390625,43.5996059394532],[124.672940703125,43.6238430000001],[124.671490507813,43.648139875],[124.602061796875,43.6885616279297],[124.555699492188,43.7244911933594],[124.542628203125,43.7391243720703],[124.530220976563,43.7502065253907],[124.488961210938,43.7477474189454],[124.35218875,43.7638997626954],[124.217003203125,43.7558425117188],[124.175474882813,43.7093672919922],[124.087345,43.7038430000001],[124.072628203125,43.7391243720703],[124.03818484375,43.7835689521484],[124.0626575,43.8186061835938],[124.06146609375,43.8385903144531],[124.082056914063,43.8569893623047],[124.024049101563,43.9400392890625],[124.012628203125,43.9891243720704],[124.007345,44.0038430000001],[124.0813684375,44.0109871650391],[124.127345,44.0082466865235],[124.15209109375,44.0097219062501],[124.162061796875,43.9985616279297],[124.173844023438,43.9880379462891],[124.207345,43.9900350166016],[124.232345,43.9885451484375],[124.283150664063,43.9915731025391],[124.41349734375,44.0383431220704],[124.432061796875,44.0591243720703],[124.452628203125,44.0685616279297],[124.487730742188,44.0930825019532],[124.502061796875,44.1091243720704],[124.652628203125,44.1285616279297],[124.710318632813,44.1492617011719],[124.72259890625,44.1485298896485],[124.727345,44.153843],[124.743648710938,44.1496590400391]]]]}},{"type":"Feature","properties":{"name":"梨树县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.35218875,43.7638997626954],[124.488961210938,43.7477474189454],[124.530220976563,43.7502065253907],[124.542628203125,43.7391243720703],[124.555699492188,43.7244911933594],[124.602061796875,43.6885616279297],[124.671490507813,43.648139875],[124.672940703125,43.6238430000001],[124.671495390625,43.5996059394532],[124.6848059375,43.5751149726563],[124.679386015625,43.4842171455079],[124.702061796875,43.4485616279297],[124.722628203125,43.4191243720704],[124.732061796875,43.3985616279297],[124.7616028125,43.3562709785157],[124.76373171875,43.3205947089844],[124.748609648438,43.2927700019532],[124.792960234375,43.238716046875],[124.771890898438,43.2290444160156],[124.777345,43.2138430000001],[124.72197390625,43.1992153144531],[124.69271609375,43.1784706855469],[124.65197390625,43.1692153144531],[124.609840117188,43.139341046875],[124.59271609375,43.1592153144531],[124.56197390625,43.1684706855469],[124.532584257813,43.1792641425782],[124.522105742188,43.1784218574219],[124.488668242188,43.1907021308594],[124.462183867188,43.2214418769532],[124.427345,43.2138430000001],[124.415616484375,43.2290407539062],[124.352994414063,43.2396779609375],[124.337345,43.2373647285157],[124.313922148438,43.2408266425782],[124.29298953125,43.2281996894531],[124.277345,43.223843],[124.222154570313,43.2386525703125],[124.202511015625,43.249048078125],[124.172345,43.2478517890626],[124.137345,43.2492397285157],[124.112345,43.2482485175782],[124.102535429688,43.2690334296875],[124.092139921875,43.2786659980469],[124.09259890625,43.2902407050781],[124.013961210938,43.2871230292969],[123.9439075,43.3463246894532],[123.892139921875,43.3586562324219],[123.892935820313,43.3787746406251],[123.842720976563,43.4112026191407],[123.862550078125,43.4486788154297],[123.862115507813,43.4596688056641],[123.799971953125,43.4793434882813],[123.77252078125,43.4782552314453],[123.767345,43.483843],[123.77142703125,43.4997585273438],[123.78326296875,43.5179274726562],[123.79142703125,43.5397585273438],[123.86662234375,43.5483095527344],[123.893902617188,43.5878273750001],[123.93326296875,43.5979274726562],[123.94377078125,43.6131514716797],[123.98326296875,43.6279274726563],[123.995513945313,43.6456740546875],[124.04326296875,43.6579274726563],[124.059595976563,43.6815895820313],[124.08326296875,43.6979274726563],[124.087345,43.7038430000001],[124.175474882813,43.7093672919922],[124.217003203125,43.7558425117188],[124.35218875,43.7638997626954]]]]}},{"type":"Feature","properties":{"name":"双辽市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.692061796875,44.0785616279297],[123.707906523438,44.0644057441406],[123.730260039063,44.0393904853516],[123.762974882813,44.0243758369141],[123.761485625,43.9994295478516],[123.806138945313,43.9874697089844],[123.982061796875,43.9991243720704],[124.007345,44.0038430000001],[124.012628203125,43.9891243720704],[124.024049101563,43.9400392890625],[124.082056914063,43.8569893623047],[124.06146609375,43.8385903144531],[124.0626575,43.8186061835938],[124.03818484375,43.7835689521484],[124.072628203125,43.7391243720703],[124.087345,43.7038430000001],[124.08326296875,43.6979274726563],[124.059595976563,43.6815895820313],[124.04326296875,43.6579274726563],[123.995513945313,43.6456740546875],[123.98326296875,43.6279274726563],[123.94377078125,43.6131514716797],[123.93326296875,43.5979274726562],[123.893902617188,43.5878273750001],[123.86662234375,43.5483095527344],[123.79142703125,43.5397585273438],[123.78326296875,43.5179274726562],[123.77142703125,43.4997585273438],[123.767345,43.483843],[123.75281375,43.4748891425781],[123.737564726563,43.4301387763672],[123.708780546875,43.4124056220704],[123.689561796875,43.3812142158203],[123.697345,43.3638430000001],[123.59170046875,43.3681990791016],[123.542452421875,43.4099404121094],[123.51744265625,43.3948525214844],[123.480806914063,43.4423104072266],[123.447838164063,43.4374379707032],[123.430806914063,43.4153755927734],[123.402882109375,43.4195021796876],[123.37298953125,43.4694869208985],[123.357086210938,43.4817604804688],[123.332345,43.4781038642578],[123.310494414063,43.4813326240234],[123.315513945313,43.515298078125],[123.30170046875,43.5381990791016],[123.297345,43.5538430000001],[123.368311796875,43.5627095771485],[123.438258085938,43.5468215156251],[123.461793242188,43.5542659736329],[123.424381132813,43.5842232490235],[123.412896757813,43.6022518134766],[123.47123171875,43.5855947089844],[123.504107695313,43.5896840644532],[123.501441679688,43.6111074042969],[123.522896757813,43.6282900214844],[123.531793242188,43.6442659736329],[123.511676054688,43.6784828925782],[123.515284453125,43.7074843574219],[123.501793242188,43.7182900214844],[123.492896757813,43.7293959785157],[123.479405546875,43.7402016425782],[123.485284453125,43.7874843574219],[123.464215117188,43.8043556953125],[123.452896757813,43.8693959785156],[123.441793242188,43.8782900214844],[123.42656375,43.9144295478516],[123.364859648438,43.963843],[123.388565703125,43.982827375],[123.317940703125,44.0393807197266],[123.327345,44.063843],[123.333609648438,44.0708534980469],[123.386261015625,44.0677156806641],[123.478428984375,44.079970319336],[123.522345,44.0773531318359],[123.577345,44.0806313300781],[123.631011992188,44.0774324775391],[123.669224882813,44.1041249824219],[123.692061796875,44.0785616279297]]]]}},{"type":"Feature","properties":{"name":"铁东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.462183867188,43.2214418769532],[124.488668242188,43.1907021308594],[124.522105742188,43.1784218574219],[124.532584257813,43.1792641425782],[124.56197390625,43.1684706855469],[124.59271609375,43.1592153144531],[124.609840117188,43.139341046875],[124.65197390625,43.1692153144531],[124.69271609375,43.1784706855469],[124.72197390625,43.1992153144531],[124.777345,43.2138430000001],[124.782960234375,43.1951992011719],[124.837345,43.163843],[124.844918242188,43.148872296875],[124.873985625,43.140483625],[124.877345,43.1338430000001],[124.868121367188,43.12097190625],[124.852345,43.1178554511719],[124.832345,43.1218068671875],[124.807345,43.1168666816406],[124.789244414063,43.1204433417969],[124.773170195313,43.0980178046875],[124.755694609375,43.0854933906251],[124.743170195313,43.0680178046875],[124.676529570313,43.0546584296876],[124.6618371875,42.9813600898438],[124.631519804688,42.9696681953125],[124.62166140625,42.9441030097657],[124.601519804688,42.9296681953125],[124.582862578125,42.903637921875],[124.541519804688,42.8796681953126],[124.532965117188,42.8677321601563],[124.514283476563,42.8714235664063],[124.493170195313,42.8580178046876],[124.460089140625,42.845259015625],[124.463453398438,42.8282228828125],[124.457345,42.8238430000001],[124.45142703125,42.8279274726563],[124.440953398438,42.8687416816407],[124.37142703125,42.8779274726563],[124.357345,42.883843],[124.362154570313,42.8990334296876],[124.382535429688,42.9086525703126],[124.402154570313,42.9190334296875],[124.425206328125,42.9299123359375],[124.442154570313,42.9501210761719],[124.42093875,42.9697780585938],[124.372550078125,42.9678603339844],[124.32490359375,42.9930727363282],[124.422037382813,43.0728969550782],[124.382154570313,43.0986525703126],[124.347345,43.123843],[124.351676054688,43.1407265449219],[124.391671171875,43.2001149726563],[124.402799101563,43.1976210761719],[124.427345,43.2138430000001],[124.462183867188,43.2214418769532]]]]}},{"type":"Feature","properties":{"name":"铁西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.313922148438,43.2408266425782],[124.337345,43.2373647285157],[124.352994414063,43.2396779609375],[124.415616484375,43.2290407539062],[124.427345,43.2138430000001],[124.402799101563,43.1976210761719],[124.391671171875,43.2001149726563],[124.351676054688,43.1407265449219],[124.347345,43.123843],[124.331793242188,43.1282900214844],[124.322896757813,43.1393959785157],[124.270753203125,43.1710695625],[124.277345,43.223843],[124.29298953125,43.2281996894531],[124.313922148438,43.2408266425782]]]]}},{"type":"Feature","properties":{"name":"伊通满族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.23326296875,43.4499013496094],[125.275235625,43.4397585273438],[125.34142703125,43.4697585273438],[125.379947539063,43.4796431708985],[125.357345,43.5138430000001],[125.36142703125,43.5197585273438],[125.38326296875,43.5279274726563],[125.39142703125,43.5420003486329],[125.371846953125,43.5376107001953],[125.36326296875,43.5441188789063],[125.38326296875,43.5579274726562],[125.39142703125,43.5797585273438],[125.42326296875,43.5879274726563],[125.447345,43.603843],[125.453004179688,43.5585610175782],[125.44146609375,43.5285500312501],[125.452896757813,43.5193959785157],[125.461793242188,43.4982900214844],[125.504112578125,43.4403548408203],[125.4870715625,43.4113649726563],[125.512345,43.4082210517578],[125.524893828125,43.4097823310548],[125.581793242188,43.3974721503907],[125.572896757813,43.3782900214844],[125.534923125,43.3552230048828],[125.576060820313,43.3251735664063],[125.631236601563,43.2927370429688],[125.662896757813,43.2793959785157],[125.687345,43.263843],[125.671007109375,43.240180890625],[125.637994414063,43.2173867011719],[125.65142703125,43.1979274726563],[125.67170046875,43.1839321113281],[125.682271757813,43.1556728339844],[125.70142703125,43.1279274726563],[125.76103640625,43.1185329414063],[125.778707304688,43.0913906074219],[125.752345,43.0854799628907],[125.731573515625,43.0901369453126],[125.719732695313,43.0585036445313],[125.667345,43.0538430000001],[125.662345,43.0770864082032],[125.657345,43.0538430000001],[125.64326296875,43.0597585273438],[125.58142703125,43.0679274726563],[125.55326296875,43.0897585273438],[125.49142703125,43.0979274726563],[125.475103789063,43.1415517402344],[125.483468046875,43.178843],[125.47978640625,43.1952529121094],[125.436236601563,43.2253200507813],[125.392345,43.2154799628906],[125.372345,43.2199636054688],[125.359381132813,43.2170583320313],[125.364991484375,43.1920449042969],[125.349849882813,43.156001203125],[125.39326296875,43.1397585273438],[125.397345,43.1338430000001],[125.377667265625,43.0997145820313],[125.329210234375,43.1267507148437],[125.27197390625,43.1484706855469],[125.185260039063,43.2258705878907],[125.02197390625,43.2092153144532],[125.00271609375,43.198470685547],[124.970103789063,43.1886525703125],[124.95271609375,43.1684706855469],[124.887345,43.1338430000001],[124.877345,43.1338430000001],[124.873985625,43.140483625],[124.844918242188,43.148872296875],[124.837345,43.163843],[124.846490507813,43.1720143867188],[124.822720976563,43.2157509589844],[124.852628203125,43.2585622382813],[124.862061796875,43.2791237617188],[124.9305871875,43.3190200019532],[124.912628203125,43.3391243720704],[124.87939578125,43.360259015625],[124.8596496875,43.4152907539063],[124.912061796875,43.4314760566406],[124.902628203125,43.4591243720704],[124.882628203125,43.4769942451172],[124.904400664063,43.49058128125],[124.9913684375,43.5174367500001],[124.992642851563,43.538843],[124.9919153125,43.5510787177735],[125.054879179688,43.5950600410157],[125.2134778125,43.6375374580078],[125.287345,43.643843],[125.29142703125,43.6279274726563],[125.30408328125,43.6084950996094],[125.29142703125,43.5997585273438],[125.270338164063,43.5628035712891],[125.275557890625,43.5395131660157],[125.259132109375,43.5281728339844],[125.266158476563,43.4968325019531],[125.24142703125,43.4797585273438],[125.23326296875,43.4499013496094]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.436236601563,43.2253200507813],[125.47978640625,43.1952529121094],[125.483468046875,43.178843],[125.475103789063,43.1415517402344],[125.49142703125,43.0979274726563],[125.55326296875,43.0897585273438],[125.58142703125,43.0679274726563],[125.64326296875,43.0597585273438],[125.657345,43.0538430000001],[125.667345,43.0538430000001],[125.674918242188,43.0388722968751],[125.709771757813,43.0288137031251],[125.720704375,43.0072023750001],[125.727345,43.003843],[125.755357695313,42.9407448554687],[125.735548125,42.923676984375],[125.730889921875,42.8657216621094],[125.75197390625,42.8184706855469],[125.786793242188,42.8029335761719],[125.83197390625,42.764009015625],[125.805523710938,42.7481850410156],[125.792252226563,42.7492519355469],[125.712437773438,42.7384340644532],[125.698604765625,42.7395449042969],[125.641261015625,42.7290846992188],[125.662877226563,42.7104616523438],[125.657008085938,42.637446515625],[125.68197390625,42.6084706855469],[125.713355742188,42.5990224433594],[125.70197390625,42.5892153144531],[125.6880871875,42.5730995917969],[125.67197390625,42.5592153144531],[125.662022734375,42.5476638007813],[125.63877078125,42.5495314765625],[125.58275515625,42.5012721992188],[125.558131132813,42.4363881660156],[125.430968046875,42.3799379707031],[125.412345,42.3784413886719],[125.389224882813,42.3802992988281],[125.34197390625,42.3592153144531],[125.316832304688,42.3300319648438],[125.26197390625,42.3092153144532],[125.257345,42.303843],[125.165650664063,42.3075978828125],[125.174405546875,42.3288430000001],[125.16654421875,42.3479213691407],[125.2005871875,42.3665834785157],[125.17654421875,42.3797646308594],[125.18646609375,42.4038430000001],[125.175816679688,42.4296804023437],[125.145445585938,42.4390639472656],[125.12892703125,42.4692006660157],[125.107345,42.473843],[125.098389921875,42.48837425],[125.07048953125,42.4978835273438],[125.075460234375,42.513843],[125.066329375,42.5431545234375],[125.08404421875,42.5683852363282],[125.079229765625,42.583843],[125.090279570313,42.6193190742188],[125.047345,42.623843],[125.06271609375,42.6484706855469],[125.077022734375,42.6959938789063],[125.17654421875,42.65944846875],[125.228468046875,42.6884194160157],[125.27271609375,42.6984706855469],[125.322935820313,42.7264894843751],[125.321944609375,42.738843],[125.322906523438,42.7508071113281],[125.360445585938,42.7477907539063],[125.43213015625,42.7692617011719],[125.443961210938,42.7683107734376],[125.46197390625,42.7892153144532],[125.4780871875,42.8030995917969],[125.500103789063,42.8286525703125],[125.533355742188,42.8386635566407],[125.5219153125,42.8485195136719],[125.523936796875,42.8736305976562],[125.5118371875,42.9290969062501],[125.535831328125,42.9497682929688],[125.561363554688,42.9477162910156],[125.583453398438,42.9600405097657],[125.580870390625,42.9921901679688],[125.56197390625,43.008470685547],[125.544439726563,43.02882346875],[125.486656523438,43.0419509101563],[125.45271609375,43.0892153144531],[125.42505984375,43.1015566230469],[125.41271609375,43.1292153144531],[125.397345,43.1338430000001],[125.39326296875,43.1397585273438],[125.349849882813,43.156001203125],[125.364991484375,43.1920449042969],[125.359381132813,43.2170583320313],[125.372345,43.2199636054688],[125.392345,43.2154799628906],[125.436236601563,43.2253200507813]]]]}},{"type":"Feature","properties":{"name":"东辽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.329210234375,43.1267507148437],[125.377667265625,43.0997145820313],[125.397345,43.1338430000001],[125.41271609375,43.1292153144531],[125.42505984375,43.1015566230469],[125.45271609375,43.0892153144531],[125.486656523438,43.0419509101563],[125.544439726563,43.02882346875],[125.56197390625,43.008470685547],[125.580870390625,42.9921901679688],[125.583453398438,42.9600405097657],[125.561363554688,42.9477162910156],[125.535831328125,42.9497682929688],[125.5118371875,42.9290969062501],[125.523936796875,42.8736305976562],[125.5219153125,42.8485195136719],[125.533355742188,42.8386635566407],[125.500103789063,42.8286525703125],[125.4780871875,42.8030995917969],[125.46197390625,42.7892153144532],[125.443961210938,42.7683107734376],[125.43213015625,42.7692617011719],[125.360445585938,42.7477907539063],[125.322906523438,42.7508071113281],[125.321944609375,42.738843],[125.322935820313,42.7264894843751],[125.27271609375,42.6984706855469],[125.228468046875,42.6884194160157],[125.17654421875,42.65944846875],[125.077022734375,42.6959938789063],[125.06271609375,42.6484706855469],[125.047345,42.623843],[125.034742460938,42.6092153144532],[125.01197390625,42.628470685547],[125.00271609375,42.6592153144531],[124.9719153125,42.6785073066406],[124.973150664063,42.693843],[124.971163359375,42.7185195136719],[124.99197390625,42.7364455390625],[124.97986453125,42.7793105292969],[124.955689726563,42.8073683906251],[124.913316679688,42.8107741523437],[124.886124296875,42.7792153144531],[124.8668371875,42.7918300605469],[124.851217070313,42.8198232246094],[124.852745390625,42.838843],[124.849146757813,42.8836330390625],[124.8663684375,42.9786183906251],[124.85271609375,43.0092153144531],[124.836949492188,43.0227992988282],[124.87271609375,43.0684706855469],[124.887345,43.1338430000001],[124.95271609375,43.1684706855469],[124.970103789063,43.1886525703125],[125.00271609375,43.198470685547],[125.02197390625,43.2092153144532],[125.185260039063,43.2258705878907],[125.27197390625,43.1484706855469],[125.329210234375,43.1267507148437]],[[125.317345,42.9038430000001],[125.329537382813,42.9072658515625],[125.320767851563,42.9160353828125],[125.304810820313,42.9146425605469],[125.271959257813,43.0012087226563],[125.242823515625,43.0284706855469],[125.187345,42.993843],[125.161246367188,42.9899404121094],[125.15158328125,42.9748415351562],[125.132345,42.9802480292969],[125.122345,42.9774379707032],[125.102345,42.9830580878906],[125.077345,42.9760329414063],[125.054288359375,42.9825124335938],[125.0651575,42.9438430000001],[125.058345976563,42.9196059394532],[125.067345,42.913843],[125.07170046875,42.9081996894532],[125.081422148438,42.8424050117188],[125.11298953125,42.8294863105469],[125.125811796875,42.812876203125],[125.16170046875,42.8394863105469],[125.19021609375,42.8511574531251],[125.217926054688,42.8344448066407],[125.266485625,42.8704482246094],[125.297345,42.8658876777344],[125.325186796875,42.8700014472656],[125.317345,42.9038430000001]]]]}},{"type":"Feature","properties":{"name":"龙山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.317345,42.9038430000001],[125.320767851563,42.9160353828125],[125.329537382813,42.9072658515625],[125.317345,42.9038430000001]]],[[[125.317345,42.9038430000001],[125.325186796875,42.8700014472656],[125.297345,42.8658876777344],[125.266485625,42.8704482246094],[125.217926054688,42.8344448066407],[125.19021609375,42.8511574531251],[125.16170046875,42.8394863105469],[125.125811796875,42.812876203125],[125.11298953125,42.8294863105469],[125.081422148438,42.8424050117188],[125.07170046875,42.9081996894532],[125.067345,42.913843],[125.132340117188,42.9084401679688],[125.16338015625,42.9109352851563],[125.161920195313,42.9291213203125],[125.182916289063,42.9667494941407],[125.181925078125,42.9790810371094],[125.187345,42.993843],[125.242823515625,43.0284706855469],[125.271959257813,43.0012087226563],[125.304810820313,42.9146425605469],[125.317345,42.9038430000001]]]]}},{"type":"Feature","properties":{"name":"西安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.181925078125,42.9790810371094],[125.182916289063,42.9667494941407],[125.161920195313,42.9291213203125],[125.16338015625,42.9109352851563],[125.132340117188,42.9084401679688],[125.067345,42.913843],[125.058345976563,42.9196059394532],[125.0651575,42.9438430000001],[125.054288359375,42.9825124335938],[125.077345,42.9760329414063],[125.102345,42.9830580878906],[125.122345,42.9774379707032],[125.132345,42.9802480292969],[125.15158328125,42.9748415351562],[125.161246367188,42.9899404121094],[125.187345,42.993843],[125.181925078125,42.9790810371094]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东昌区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.931793242188,41.7882900214844],[125.955777617188,41.7793959785156],[125.967345,41.7938430000001],[125.972896757813,41.7893959785157],[125.981793242188,41.7782900214844],[125.992896757813,41.7693959785156],[126.001793242188,41.7582900214844],[126.022896757813,41.7493959785157],[126.03490359375,41.7074147773438],[126.117345,41.6838430000001],[126.110455351563,41.6758437324219],[126.034771757813,41.6284389472656],[126.05197390625,41.6084706855469],[126.121695585938,41.5519338203125],[126.077345,41.543843],[126.042838164063,41.5574086738281],[125.99170046875,41.5681996894532],[125.97298953125,41.5794863105469],[125.88380984375,41.5946364570313],[125.872808867188,41.5677626777344],[125.857345,41.5738430000001],[125.8451575,41.6274990058594],[125.882896757813,41.6382900214844],[125.9209778125,41.6529262519531],[125.899249296875,41.6703237128906],[125.881846953125,41.66815940625],[125.871085234375,41.6937026191407],[125.872965117188,41.708843],[125.871241484375,41.7227150703125],[125.851793242188,41.7382900214844],[125.842896757813,41.7668532539063],[125.8960559375,41.7820522285157],[125.915240507813,41.8275746894532],[125.931793242188,41.7882900214844]]]]}},{"type":"Feature","properties":{"name":"二道江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.10142703125,41.7879274726563],[126.130069609375,41.777212140625],[126.1605871875,41.7840529609375],[126.17142703125,41.7997585273438],[126.197432890625,41.8094887519532],[126.21142703125,41.8297585273438],[126.22326296875,41.8379274726563],[126.227345,41.843843],[126.271358671875,41.8384633613282],[126.315787382813,41.8041689277345],[126.301217070313,41.7518434882813],[126.281549101563,41.7192336250001],[126.283082304688,41.708843],[126.281549101563,41.698452375],[126.29298953125,41.6794863105469],[126.297345,41.663843],[126.26298953125,41.6694863105469],[126.191514921875,41.6782216621094],[126.193082304688,41.6888430000001],[126.190421171875,41.7068495917969],[126.158424101563,41.7181996894532],[126.135894804688,41.689009015625],[126.117345,41.6838430000001],[126.03490359375,41.7074147773438],[126.022896757813,41.7493959785157],[126.001793242188,41.7582900214844],[125.992896757813,41.7693959785156],[125.981793242188,41.7782900214844],[125.972896757813,41.7893959785157],[125.967345,41.7938430000001],[125.960831328125,41.7983388496094],[125.976636992188,41.835962140625],[126.02326296875,41.8479274726563],[126.055250273438,41.86136253125],[126.07142703125,41.8379274726563],[126.092296171875,41.8235207343751],[126.10142703125,41.7879274726563]]]]}},{"type":"Feature","properties":{"name":"辉南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.390191679688,42.8114821601563],[126.380894804688,42.6958095527344],[126.417100859375,42.6756093574219],[126.467345,42.6796462226563],[126.482345,42.6784413886719],[126.500787382813,42.6799233222657],[126.547730742188,42.6626845527344],[126.569722929688,42.6882106757813],[126.59271609375,42.6984706855469],[126.6274621875,42.717856671875],[126.647345,42.723843],[126.725108671875,42.6878432441407],[126.747345,42.663843],[126.74170046875,42.6594863105469],[126.701417265625,42.6061147285157],[126.620455351563,42.5835707832032],[126.63310671875,42.5289858222656],[126.631607695313,42.5188430000001],[126.633082304688,42.508843],[126.627183867188,42.4689113593751],[126.57170046875,42.4594863105469],[126.509464140625,42.4133437324219],[126.513082304688,42.388843],[126.511549101563,42.3784523750001],[126.534410429688,42.3405544257813],[126.521549101563,42.319233625],[126.52420046875,42.3012831855469],[126.517345,42.283843],[126.472237578125,42.2784133125],[126.422515898438,42.2892580390626],[126.407345,42.2880397773438],[126.3766809375,42.2905031562501],[126.33271609375,42.2784706855469],[126.209097929688,42.2671132636719],[126.192701445313,42.3392739082031],[126.14392703125,42.3353542304688],[126.09271609375,42.3426247382812],[126.12271609375,42.3684706855469],[126.149049101563,42.4274867988281],[126.09197390625,42.4684706855469],[126.08271609375,42.4792153144531],[126.07197390625,42.4884706855469],[126.050264921875,42.5371254707032],[126.027345,42.573843],[126.02000125,42.5938430000001],[126.03271609375,42.628470685547],[126.04197390625,42.6608217597657],[126.012066679688,42.6584194160157],[125.980269804688,42.6761598945313],[126.021099882813,42.7493447089844],[126.036553984375,42.7481032539063],[126.067345,42.7838430000001],[126.1386340625,42.7897682929688],[126.229820585938,42.777407453125],[126.26197390625,42.7892153144532],[126.29271609375,42.7984706855469],[126.303316679688,42.8107741523437],[126.342345,42.8076381660156],[126.390191679688,42.8114821601563]]]]}},{"type":"Feature","properties":{"name":"集安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.017345,40.893843],[125.987345,40.893843],[125.987345,40.913843],[126.017345,40.913843],[126.017345,40.893843]]],[[[126.507345,41.373843],[126.540797148438,41.3694960761719],[126.5243371875,41.3403932929688],[126.474014921875,41.3483669257812],[126.503892851563,41.3572927070313],[126.507345,41.373843]]],[[[126.467345,41.503843],[126.455152617188,41.5004201484375],[126.463922148438,41.4916506171875],[126.503985625,41.507202375],[126.515426054688,41.5298183417969],[126.547345,41.5338430000001],[126.542061796875,41.5191237617188],[126.531485625,41.4848610664063],[126.49295046875,41.4139553046876],[126.507345,41.373843],[126.48170046875,41.3694863105469],[126.432081328125,41.3499806953125],[126.42298953125,41.3381996894532],[126.4060559375,41.3251308417969],[126.3886340625,41.3025551582031],[126.362511015625,41.2823928046876],[126.35298953125,41.2481996894531],[126.313878203125,41.2248085761719],[126.30298953125,41.1981996894532],[126.29170046875,41.1894863105469],[126.279654570313,41.1600563789063],[126.238795195313,41.148676984375],[126.22298953125,41.1281996894531],[126.19170046875,41.1194863105469],[126.1786340625,41.1025551582031],[126.155479765625,41.0846852851562],[126.121905546875,41.0896462226563],[126.10298953125,41.0749245429688],[126.130299101563,41.053843],[126.09990359375,41.0303786445313],[126.103170195313,41.0082497382813],[126.07009890625,40.9990407539063],[126.073463164063,40.9762831855469],[126.05170046875,40.9594863105469],[126.0320715625,40.9266664863282],[126.002345,40.931059796875],[125.979127226563,40.9276284003906],[125.96298953125,40.8881996894532],[125.947086210938,40.8759255195313],[125.913746367188,40.8808522773438],[125.907345,40.903843],[125.919537382813,40.9072658515626],[125.910767851563,40.9160353828125],[125.907345,40.903843],[125.892491484375,40.8969033027344],[125.864996367188,40.9072658515626],[125.8537121875,40.8874745917969],[125.804400664063,40.8614711738282],[125.789244414063,40.8880519843751],[125.7651184375,40.8974745917969],[125.7537121875,40.8774745917969],[125.7109778125,40.8702114082031],[125.697345,40.863843],[125.691339140625,40.8859938789062],[125.657701445313,40.9110170722657],[125.5676575,40.8897377753906],[125.577345,40.913843],[125.58298953125,40.9181996894532],[125.593746367188,40.9321388984375],[125.63298953125,40.9481996894531],[125.648365507813,40.9681215644532],[125.67298953125,40.9781996894531],[125.682276640625,41.022212140625],[125.710865507813,41.0442800117188],[125.73170046875,41.0827614570313],[125.711529570313,41.0983315253907],[125.713560820313,41.1120619941406],[125.75298953125,41.1281996894531],[125.76170046875,41.1494863105469],[125.781085234375,41.1644472480469],[125.727701445313,41.1793129707032],[125.750831328125,41.2381545234375],[125.69170046875,41.2481996894531],[125.673883085938,41.2712868476563],[125.642345,41.266626203125],[125.63298953125,41.2894863105469],[125.620362578125,41.3104201484375],[125.625811796875,41.3473073554688],[125.61170046875,41.3581996894531],[125.607345,41.363843],[125.633814726563,41.3808425117188],[125.664947539063,41.3762416816407],[125.646241484375,41.4072524238282],[125.67298953125,41.4181996894532],[125.69170046875,41.4494863105469],[125.754371367188,41.4601332832032],[125.749742460938,41.4914443183594],[125.781832304688,41.4867018867188],[125.795811796875,41.504809796875],[125.781011992188,41.529341046875],[125.82298953125,41.5381996894532],[125.83170046875,41.5594863105469],[125.85298953125,41.5681996894532],[125.857345,41.5738430000001],[125.872808867188,41.5677626777344],[125.88380984375,41.5946364570313],[125.97298953125,41.5794863105469],[125.99170046875,41.5681996894532],[126.042838164063,41.5574086738281],[126.077345,41.543843],[126.0860559375,41.5325551582031],[126.109127226563,41.5147499824219],[126.12420046875,41.4764028144531],[126.121607695313,41.4588430000001],[126.123824492188,41.443843],[126.118878203125,41.4103786445313],[126.142178984375,41.3923928046876],[126.157891875,41.3359682441407],[126.182345,41.3395815253907],[126.20369265625,41.3364272285157],[126.27298953125,41.3481996894532],[126.29170046875,41.3594863105469],[126.313170195313,41.3682729316406],[126.309429960938,41.3935854316407],[126.32170046875,41.4094863105469],[126.3386340625,41.4225551582031],[126.36041140625,41.4507741523438],[126.38298953125,41.4681996894532],[126.39170046875,41.5094863105469],[126.397345,41.513843],[126.422301054688,41.5077126289063],[126.458995390625,41.5159377265625],[126.467345,41.503843]]]]}},{"type":"Feature","properties":{"name":"柳河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.807345,41.943843],[125.803922148438,41.9560353828125],[125.795152617188,41.9472658515625],[125.791378203125,41.9153249335938],[125.760767851563,41.8968593574219],[125.727345,41.9017983222657],[125.702345,41.8981044746094],[125.678863554688,41.9015749335938],[125.6173059375,41.8836269355469],[125.578365507813,41.8995644355469],[125.56298953125,41.9194863105469],[125.541226835938,41.9362831855469],[125.544195585938,41.9563515449219],[125.511519804688,41.9805751777344],[125.469928007813,41.9689931464844],[125.419390898438,41.9299831367188],[125.44170046875,41.9127614570313],[125.388238554688,41.8997267890626],[125.37298953125,41.9194863105469],[125.347345,41.923843],[125.343985625,41.9304836250001],[125.304298125,41.9504201484375],[125.287345,41.9538430000001],[125.291793242188,41.9693959785156],[125.3491028125,41.9935451484375],[125.401793242188,42.0593959785157],[125.414156523438,42.0692958808594],[125.41037234375,42.0997109199219],[125.440987578125,42.0959023261719],[125.451793242188,42.1093959785156],[125.470831328125,42.1246450019531],[125.481793242188,42.1439943671876],[125.447345,42.153843],[125.454068632813,42.1761696601563],[125.497345,42.1796462226563],[125.512691679688,42.1784133125],[125.52197390625,42.1992153144532],[125.5627746875,42.2285121894532],[125.561124296875,42.2490224433595],[125.62197390625,42.2628456855469],[125.61271609375,42.2792153144531],[125.59271609375,42.2964455390625],[125.603116484375,42.3107900214844],[125.644610625,42.3074550605469],[125.674556914063,42.342212140625],[125.728238554688,42.3224977851563],[125.81197390625,42.3692153144532],[125.8430871875,42.3830995917969],[125.883853789063,42.4481850410157],[125.90197390625,42.4692153144531],[125.93271609375,42.4884706855469],[125.96197390625,42.5092153144531],[125.98271609375,42.5184706855469],[126.01197390625,42.5692153144532],[126.027345,42.573843],[126.050264921875,42.5371254707032],[126.07197390625,42.4884706855469],[126.08271609375,42.4792153144531],[126.09197390625,42.4684706855469],[126.149049101563,42.4274867988281],[126.12271609375,42.3684706855469],[126.09271609375,42.3426247382812],[126.14392703125,42.3353542304688],[126.192701445313,42.3392739082031],[126.209097929688,42.2671132636719],[126.33271609375,42.2784706855469],[126.3766809375,42.2905031562501],[126.407345,42.2880397773438],[126.422515898438,42.2892580390626],[126.472237578125,42.2784133125],[126.517345,42.283843],[126.521378203125,42.2518740058594],[126.577345,42.2238430000001],[126.546954375,42.1844680000001],[126.486812773438,42.19335471875],[126.46170046875,42.1594863105469],[126.44298953125,42.1281996894531],[126.391119414063,42.0921291328125],[126.39312625,42.0785512519532],[126.387345,42.0638430000001],[126.360704375,42.060483625],[126.313985625,42.037202375],[126.287345,42.033843],[126.298306914063,42.0784645820313],[126.261041289063,42.0880275703125],[126.265557890625,42.1081728339844],[126.246500273438,42.1213307929688],[126.1912121875,42.1041933417969],[126.13326296875,42.0779274726563],[126.04142703125,42.0697585273438],[126.01326296875,42.0479274726563],[125.98142703125,42.0397585273437],[125.95326296875,42.0279274726563],[125.92142703125,42.0197585273438],[125.89326296875,41.9979274726562],[125.868980742188,41.9888430000001],[125.87361453125,41.9681728339844],[125.86142703125,41.9597585273438],[125.85326296875,41.9479274726563],[125.807345,41.943843]]]]}},{"type":"Feature","properties":{"name":"梅河口市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.067345,42.7838430000001],[126.036553984375,42.7481032539063],[126.021099882813,42.7493447089844],[125.980269804688,42.6761598945313],[126.012066679688,42.6584194160157],[126.04197390625,42.6608217597657],[126.03271609375,42.628470685547],[126.02000125,42.5938430000001],[126.027345,42.573843],[126.01197390625,42.5692153144532],[125.98271609375,42.5184706855469],[125.96197390625,42.5092153144531],[125.93271609375,42.4884706855469],[125.90197390625,42.4692153144531],[125.883853789063,42.4481850410157],[125.8430871875,42.3830995917969],[125.81197390625,42.3692153144532],[125.728238554688,42.3224977851563],[125.674556914063,42.342212140625],[125.644610625,42.3074550605469],[125.603116484375,42.3107900214844],[125.59271609375,42.2964455390625],[125.61271609375,42.2792153144531],[125.62197390625,42.2628456855469],[125.561124296875,42.2490224433595],[125.5627746875,42.2285121894532],[125.52197390625,42.1992153144532],[125.512691679688,42.1784133125],[125.497345,42.1796462226563],[125.454068632813,42.1761696601563],[125.447345,42.153843],[125.39763796875,42.1585866523438],[125.362735625,42.1796401191406],[125.348834257813,42.1775856757813],[125.353175078125,42.1482302070313],[125.300225859375,42.1394863105469],[125.30623171875,42.1801564765625],[125.279742460938,42.1762416816407],[125.305421171875,42.2188100410156],[125.271519804688,42.2282497382813],[125.274561796875,42.248843],[125.271529570313,42.2693544746094],[125.29146609375,42.2847414375],[125.257345,42.303843],[125.26197390625,42.3092153144532],[125.316832304688,42.3300319648438],[125.34197390625,42.3592153144531],[125.389224882813,42.3802992988281],[125.412345,42.3784413886719],[125.430968046875,42.3799379707031],[125.558131132813,42.4363881660156],[125.58275515625,42.5012721992188],[125.63877078125,42.5495314765625],[125.662022734375,42.5476638007813],[125.67197390625,42.5592153144531],[125.6880871875,42.5730995917969],[125.70197390625,42.5892153144531],[125.713355742188,42.5990224433594],[125.68197390625,42.6084706855469],[125.657008085938,42.637446515625],[125.662877226563,42.7104616523438],[125.641261015625,42.7290846992188],[125.698604765625,42.7395449042969],[125.712437773438,42.7384340644532],[125.792252226563,42.7492519355469],[125.805523710938,42.7481850410156],[125.83197390625,42.764009015625],[125.786793242188,42.8029335761719],[125.75197390625,42.8184706855469],[125.730889921875,42.8657216621094],[125.735548125,42.923676984375],[125.755357695313,42.9407448554687],[125.727345,43.003843],[125.767178984375,43.0184706855469],[125.820064726563,42.9898146796875],[125.843472929688,42.9478627753907],[125.8416028125,42.92460471875],[125.89271609375,42.9092153144532],[125.910186796875,42.8511977363282],[125.95197390625,42.8184706855469],[125.99271609375,42.8092153144532],[126.0094934375,42.7897438789063],[126.067345,42.7838430000001]]]]}},{"type":"Feature","properties":{"name":"通化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.297345,41.663843],[126.314215117188,41.657505109375],[126.416138945313,41.6678932929688],[126.392808867188,41.5883803535157],[126.3783996875,41.5632216621094],[126.403033476563,41.5289882636719],[126.397345,41.513843],[126.39170046875,41.5094863105469],[126.38298953125,41.4681996894532],[126.36041140625,41.4507741523438],[126.3386340625,41.4225551582031],[126.32170046875,41.4094863105469],[126.309429960938,41.3935854316407],[126.313170195313,41.3682729316406],[126.29170046875,41.3594863105469],[126.27298953125,41.3481996894532],[126.20369265625,41.3364272285157],[126.182345,41.3395815253907],[126.157891875,41.3359682441407],[126.142178984375,41.3923928046876],[126.118878203125,41.4103786445313],[126.123824492188,41.443843],[126.121607695313,41.4588430000001],[126.12420046875,41.4764028144531],[126.109127226563,41.5147499824219],[126.0860559375,41.5325551582031],[126.077345,41.543843],[126.121695585938,41.5519338203125],[126.05197390625,41.6084706855469],[126.034771757813,41.6284389472656],[126.110455351563,41.6758437324219],[126.117345,41.6838430000001],[126.135894804688,41.689009015625],[126.158424101563,41.7181996894532],[126.190421171875,41.7068495917969],[126.193082304688,41.6888430000001],[126.191514921875,41.6782216621094],[126.26298953125,41.6694863105469],[126.297345,41.663843]]],[[[125.807345,41.943843],[125.795152617188,41.9472658515625],[125.803922148438,41.9560353828125],[125.807345,41.943843]]],[[[125.807345,41.943843],[125.85326296875,41.9479274726563],[125.86142703125,41.9597585273438],[125.87361453125,41.9681728339844],[125.868980742188,41.9888430000001],[125.89326296875,41.9979274726562],[125.92142703125,42.0197585273438],[125.95326296875,42.0279274726563],[125.98142703125,42.0397585273437],[126.01326296875,42.0479274726563],[126.04142703125,42.0697585273438],[126.13326296875,42.0779274726563],[126.1912121875,42.1041933417969],[126.246500273438,42.1213307929688],[126.265557890625,42.1081728339844],[126.261041289063,42.0880275703125],[126.298306914063,42.0784645820313],[126.287345,42.033843],[126.25142703125,42.0097585273438],[126.240147734375,41.9934206367188],[126.20326296875,41.9779274726563],[126.144283476563,41.9686318183594],[126.117818632813,41.9503603339844],[126.16904421875,41.9158632636719],[126.181676054688,41.8975722480469],[126.201676054688,41.902055890625],[126.211676054688,41.8875722480469],[126.230557890625,41.8918056464844],[126.233565703125,41.8783962226563],[126.21611453125,41.85159690625],[126.227345,41.843843],[126.22326296875,41.8379274726563],[126.21142703125,41.8297585273438],[126.197432890625,41.8094887519532],[126.17142703125,41.7997585273438],[126.1605871875,41.7840529609375],[126.130069609375,41.777212140625],[126.10142703125,41.7879274726563],[126.092296171875,41.8235207343751],[126.07142703125,41.8379274726563],[126.055250273438,41.86136253125],[126.02326296875,41.8479274726563],[125.976636992188,41.835962140625],[125.960831328125,41.7983388496094],[125.967345,41.7938430000001],[125.955777617188,41.7793959785156],[125.931793242188,41.7882900214844],[125.915240507813,41.8275746894532],[125.8960559375,41.7820522285157],[125.842896757813,41.7668532539063],[125.851793242188,41.7382900214844],[125.871241484375,41.7227150703125],[125.872965117188,41.708843],[125.871085234375,41.6937026191407],[125.881846953125,41.66815940625],[125.899249296875,41.6703237128906],[125.9209778125,41.6529262519531],[125.882896757813,41.6382900214844],[125.8451575,41.6274990058594],[125.857345,41.5738430000001],[125.85298953125,41.5681996894532],[125.83170046875,41.5594863105469],[125.82298953125,41.5381996894532],[125.781011992188,41.529341046875],[125.795811796875,41.504809796875],[125.781832304688,41.4867018867188],[125.749742460938,41.4914443183594],[125.754371367188,41.4601332832032],[125.69170046875,41.4494863105469],[125.67298953125,41.4181996894532],[125.646241484375,41.4072524238282],[125.664947539063,41.3762416816407],[125.633814726563,41.3808425117188],[125.607345,41.363843],[125.58142703125,41.3679274726563],[125.57326296875,41.3897585273438],[125.55142703125,41.3979274726563],[125.530943632813,41.4275966621094],[125.533468046875,41.438843],[125.531221953125,41.448843],[125.535709257813,41.468843],[125.51142703125,41.4779274726563],[125.489254179688,41.5100478339844],[125.49361453125,41.5295131660156],[125.48142703125,41.5379274726562],[125.469176054688,41.5556740546875],[125.457345,41.5638430000001],[125.4484778125,41.601372296875],[125.454068632813,41.633843],[125.448267851563,41.667514875],[125.403917265625,41.6851393867188],[125.316534453125,41.6700954414062],[125.325787382813,41.7238430000001],[125.317393828125,41.7726076484376],[125.2855090625,41.8241274238281],[125.293204375,41.8688430000001],[125.290621367188,41.883843],[125.296695585938,41.9191188789063],[125.347345,41.923843],[125.37298953125,41.9194863105469],[125.388238554688,41.8997267890626],[125.44170046875,41.9127614570313],[125.419390898438,41.9299831367188],[125.469928007813,41.9689931464844],[125.511519804688,41.9805751777344],[125.544195585938,41.9563515449219],[125.541226835938,41.9362831855469],[125.56298953125,41.9194863105469],[125.578365507813,41.8995644355469],[125.6173059375,41.8836269355469],[125.678863554688,41.9015749335938],[125.702345,41.8981044746094],[125.727345,41.9017983222657],[125.760767851563,41.8968593574219],[125.791378203125,41.9153249335938],[125.807345,41.943843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"浑江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.467345,41.503843],[126.463922148438,41.4916506171875],[126.455152617188,41.5004201484375],[126.467345,41.503843]]],[[[126.467345,41.503843],[126.458995390625,41.5159377265625],[126.422301054688,41.5077126289063],[126.397345,41.513843],[126.403033476563,41.5289882636719],[126.3783996875,41.5632216621094],[126.392808867188,41.5883803535157],[126.416138945313,41.6678932929688],[126.314215117188,41.657505109375],[126.297345,41.663843],[126.29298953125,41.6794863105469],[126.281549101563,41.698452375],[126.283082304688,41.708843],[126.281549101563,41.7192336250001],[126.301217070313,41.7518434882813],[126.315787382813,41.8041689277345],[126.271358671875,41.8384633613282],[126.227345,41.843843],[126.21611453125,41.85159690625],[126.233565703125,41.8783962226563],[126.230557890625,41.8918056464844],[126.211676054688,41.8875722480469],[126.201676054688,41.902055890625],[126.181676054688,41.8975722480469],[126.16904421875,41.9158632636719],[126.117818632813,41.9503603339844],[126.144283476563,41.9686318183594],[126.20326296875,41.9779274726563],[126.240147734375,41.9934206367188],[126.25142703125,42.0097585273438],[126.287345,42.033843],[126.313985625,42.037202375],[126.360704375,42.060483625],[126.387345,42.0638430000001],[126.478546171875,42.0714235664063],[126.524586210938,42.0317568183594],[126.521138945313,41.9888430000001],[126.523511992188,41.9593386054688],[126.512345,41.9584413886719],[126.493638945313,41.9599440742188],[126.488912382813,41.90112815625],[126.527345,41.8980397773438],[126.555377226563,41.9002919746094],[126.57271609375,41.8692153144531],[126.577345,41.823843],[126.557608671875,41.8086098457032],[126.57298953125,41.7694863105469],[126.582511015625,41.7352931953125],[126.60298953125,41.7194863105469],[126.61170046875,41.7081996894531],[126.633150664063,41.6916432929688],[126.677345,41.673843],[126.664874296875,41.659887921875],[126.642120390625,41.6585317207031],[126.605260039063,41.6785622382813],[126.602037382813,41.6589748359375],[126.60318484375,41.6397341132813],[126.582628203125,41.6285622382813],[126.553121367188,41.6150197578126],[126.580147734375,41.5652822089844],[126.562061796875,41.5491237617188],[126.552628203125,41.5385622382813],[126.547345,41.5338430000001],[126.515426054688,41.5298183417969],[126.503985625,41.507202375],[126.467345,41.503843]]]]}},{"type":"Feature","properties":{"name":"长白朝鲜族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.997345,41.433843],[128.009537382813,41.4372658515626],[128.000767851563,41.4460353828125],[127.991881132813,41.4293056464845],[127.982345,41.4178237128907],[127.972808867188,41.4293056464845],[127.941881132813,41.4383803535157],[127.9324621875,41.44972190625],[127.902491484375,41.4281520820312],[127.87197390625,41.4396181464844],[127.862672148438,41.4079274726563],[127.835406523438,41.4235451484375],[127.822345,41.4078237128907],[127.811173125,41.4212721992188],[127.782345,41.4183339667969],[127.747345,41.4219008613281],[127.707345,41.4178237128907],[127.687345,41.4198622871094],[127.672345,41.4183339667969],[127.651671171875,41.4204409003906],[127.653775664063,41.3998220039063],[127.612691679688,41.4293886542969],[127.578482695313,41.4259011054688],[127.539952421875,41.4403774238282],[127.543018828125,41.4704409003906],[127.514801054688,41.4675649238281],[127.463062773438,41.4820302558594],[127.452345,41.4573146796875],[127.427345,41.4598622871094],[127.410391875,41.4581349921875],[127.390206328125,41.4824343085938],[127.343878203125,41.4650258613281],[127.289888945313,41.4801210761719],[127.264224882813,41.4775063300781],[127.252808867188,41.4817678046875],[127.272808867188,41.4983803535156],[127.277725859375,41.5183803535157],[127.242667265625,41.4983010078126],[127.230885039063,41.4995021796875],[127.232896757813,41.519233625],[127.227345,41.523843],[127.2321496875,41.5410890937501],[127.25490359375,41.5377260566406],[127.295689726563,41.5905654121094],[127.323516875,41.5864528632813],[127.376939726563,41.6186769843751],[127.43298953125,41.6281996894531],[127.46170046875,41.6394863105469],[127.5397278125,41.6599684882813],[127.581710234375,41.6537648750001],[127.62170046875,41.6694863105469],[127.75298953125,41.6781996894532],[127.78170046875,41.6894863105469],[127.815894804688,41.699009015625],[127.827345,41.713843],[127.85298953125,41.7281996894532],[127.864327421875,41.7428908515625],[127.902686796875,41.7278115058594],[127.91170046875,41.7394863105469],[127.93298953125,41.7481996894531],[127.95423953125,41.7610182929688],[127.951529570313,41.7793544746094],[127.989928007813,41.8089931464844],[128.02298953125,41.8181996894531],[128.058253203125,41.8320619941407],[128.077764921875,41.8573403144532],[128.057877226563,41.9079225898438],[128.08318484375,41.9182802558594],[128.077345,41.9538430000001],[128.098204375,41.9371401191407],[128.105455351563,41.8788430000001],[128.097633085938,41.8159694648438],[128.116236601563,41.7927370429688],[128.132896757813,41.7793959785156],[128.14797,41.7266860175781],[128.192896757813,41.6993959785156],[128.201793242188,41.6882900214844],[128.248472929688,41.6749428535156],[128.293018828125,41.6192470527344],[128.291666289063,41.6083901191407],[128.311334257813,41.5926406074219],[128.290650664063,41.55745628125],[128.293023710938,41.5383852363282],[128.236241484375,41.4951723457032],[128.231724882813,41.4588430000001],[128.233023710938,41.4483901191407],[128.216236601563,41.4349489570313],[128.202896757813,41.4182900214844],[128.16369265625,41.4017690253906],[128.152896757813,41.3882900214844],[128.121793242188,41.3793959785157],[128.105777617188,41.3593959785156],[128.091275664063,41.3789846015625],[128.111793242188,41.3954116035156],[128.081793242188,41.3893959785156],[128.072345,41.3775991035157],[128.062896757813,41.3893959785156],[128.041793242188,41.3982900214844],[128.032843046875,41.41952659375],[128.010987578125,41.4168080878907],[127.997345,41.433843]]]]}},{"type":"Feature","properties":{"name":"抚松县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.027345,42.3738430000001],[127.023922148438,42.3616506171875],[127.015152617188,42.3704201484375],[127.027345,42.3738430000001]]],[[[127.207345,42.623843],[127.207345,42.6338430000001],[127.220152617188,42.628843],[127.207345,42.623843]]],[[[127.857345,42.723843],[127.857345,42.733843],[127.867345,42.733843],[127.867345,42.723843],[127.857345,42.723843]]],[[[127.857345,42.733843],[127.8341028125,42.728843],[127.857345,42.723843],[127.862530546875,42.7057057929688],[127.883023710938,42.6892958808594],[127.88166140625,42.6783278632813],[127.954058867188,42.6576271796875],[127.951402617188,42.63628440625],[128.01545046875,42.5562038398438],[128.034820585938,42.4709242988281],[128.011793242188,42.4393959785157],[128.002896757813,42.4182900214844],[127.964034453125,42.3946840644532],[127.942896757813,42.3682900214844],[127.901793242188,42.3593959785157],[127.882896757813,42.3282900214844],[127.802896757813,42.3182839179688],[127.8141028125,42.2804897285157],[127.832345,42.2782216621095],[127.849249296875,42.2803237128906],[127.868453398438,42.2649489570312],[127.890079375,42.2379396796875],[127.902857695313,42.2395290351563],[127.916612578125,42.1914369941407],[127.952896757813,42.1693959785157],[127.962530546875,42.1357057929688],[127.984781523438,42.1178896308594],[128.012896757813,42.0793959785156],[128.031793242188,42.0282900214844],[128.057345,42.013843],[128.053170195313,42.0080178046875],[128.033394804688,41.9938430000001],[128.064820585938,41.9713185859375],[128.077345,41.9538430000001],[128.08318484375,41.9182802558594],[128.057877226563,41.9079225898438],[128.077764921875,41.8573403144532],[128.058253203125,41.8320619941407],[128.02298953125,41.8181996894531],[127.989928007813,41.8089931464844],[127.951529570313,41.7793544746094],[127.95423953125,41.7610182929688],[127.93298953125,41.7481996894531],[127.91170046875,41.7394863105469],[127.902686796875,41.7278115058594],[127.864327421875,41.7428908515625],[127.85298953125,41.7281996894532],[127.827345,41.713843],[127.821793242188,41.7182900214844],[127.812896757813,41.7293959785156],[127.781793242188,41.7382900214844],[127.752896757813,41.7493959785157],[127.694991484375,41.7659523750001],[127.658370390625,41.7927028632813],[127.621983671875,41.7881764960938],[127.59138796875,41.8061611152344],[127.595284453125,41.8374843574219],[127.568853789063,41.8586513496094],[127.487994414063,41.868764875],[127.447706328125,41.8924477363281],[127.464039335938,41.92022971875],[127.459234648438,41.958843],[127.463004179688,41.989126203125],[127.448389921875,42.0271413398438],[127.32084109375,42.0457057929688],[127.272896757813,42.0593959785157],[127.217345,42.0638430000001],[127.206143828125,42.0778322578126],[127.171832304688,42.0576650214844],[127.167345,42.123843],[127.179537382813,42.1272658515626],[127.170767851563,42.1360353828125],[127.167345,42.123843],[127.115675078125,42.128774640625],[127.077345,42.1438430000001],[127.081793242188,42.1493959785156],[127.092896757813,42.1582900214844],[127.105577421875,42.1741249824219],[127.202896757813,42.1882900214844],[127.225142851563,42.2013649726562],[127.22166140625,42.2293410468751],[127.245904570313,42.2395571113281],[127.26490359375,42.2632802558594],[127.260479765625,42.2988430000001],[127.262965117188,42.318843],[127.261241484375,42.3327150703125],[127.232530546875,42.3557070136719],[127.185172148438,42.3278700996094],[127.167345,42.3300868964844],[127.152345,42.3282216621094],[127.131475859375,42.3308168769532],[127.13302859375,42.3183278632813],[127.0810559375,42.3034670234375],[127.08302859375,42.3193581367188],[127.04080203125,42.3314321113282],[127.042965117188,42.348843],[127.041241484375,42.3627150703126],[127.027345,42.3738430000001],[127.052769804688,42.4185634589844],[127.051944609375,42.428843],[127.053526640625,42.4485195136719],[127.029932890625,42.468843],[127.05271609375,42.4884706855469],[127.089288359375,42.5769008613282],[127.1027746875,42.5885195136719],[127.1019153125,42.5991896796875],[127.12271609375,42.6084706855469],[127.142667265625,42.6316286445313],[127.207345,42.623843],[127.20076296875,42.6081764960938],[127.230855742188,42.5969167304688],[127.270147734375,42.6134206367188],[127.28142703125,42.6297585273438],[127.310714140625,42.6379274726563],[127.33142703125,42.6079274726563],[127.34326296875,42.5997585273438],[127.35377078125,42.5845339179688],[127.400069609375,42.567212140625],[127.417345,42.5710842109375],[127.467735625,42.5597878242188],[127.461051054688,42.5896169257813],[127.48326296875,42.5979274726563],[127.487345,42.6038430000001],[127.499537382813,42.6072658515625],[127.490767851563,42.6160353828126],[127.487345,42.6038430000001],[127.472896757813,42.6154116035156],[127.481793242188,42.6293959785157],[127.53937625,42.6418556953126],[127.582896757813,42.6682900214844],[127.612769804688,42.7055947089844],[127.64302859375,42.718344953125],[127.641724882813,42.728843],[127.642965117188,42.738843],[127.64166140625,42.749341046875],[127.71041140625,42.7783119941406],[127.712965117188,42.798843],[127.710582304688,42.8180019355469],[127.7230871875,42.8195571113282],[127.799039335938,42.8085024238281],[127.822896757813,42.7893959785157],[127.827345,42.7838430000001],[127.830704375,42.757202375],[127.86547,42.7501845527344],[127.857345,42.733843]]]]}},{"type":"Feature","properties":{"name":"江源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,42.123843],[127.170767851563,42.1360353828125],[127.179537382813,42.1272658515626],[127.167345,42.123843]]],[[[127.167345,42.123843],[127.171832304688,42.0576650214844],[127.206143828125,42.0778322578126],[127.217345,42.0638430000001],[127.208453398438,42.0527370429688],[127.191666289063,42.0392958808594],[127.19302859375,42.0283278632813],[127.161793242188,42.0193959785157],[127.14666140625,42.0005019355469],[127.086710234375,41.9868849921876],[126.99615359375,42.0127443671876],[126.970611601563,41.9777797675782],[126.974107695313,41.9496840644532],[126.952345,41.946977765625],[126.932345,41.9494643378906],[126.922061796875,41.9481862617188],[126.892896757813,41.9593959785156],[126.85662234375,41.9697670722657],[126.831890898438,42.0006520820312],[126.812345,41.9982216621094],[126.787808867188,42.0012734199219],[126.748111601563,41.9771620917969],[126.731676054688,41.9492031074219],[126.734366484375,41.9275868964844],[126.686846953125,41.8682460761719],[126.652896757813,41.8482900214844],[126.631793242188,41.8393959785157],[126.612896757813,41.8282900214844],[126.577345,41.823843],[126.57271609375,41.8692153144531],[126.555377226563,41.9002919746094],[126.527345,41.8980397773438],[126.488912382813,41.90112815625],[126.493638945313,41.9599440742188],[126.512345,41.9584413886719],[126.523511992188,41.9593386054688],[126.521138945313,41.9888430000001],[126.524586210938,42.0317568183594],[126.478546171875,42.0714235664063],[126.387345,42.0638430000001],[126.39312625,42.0785512519532],[126.391119414063,42.0921291328125],[126.44298953125,42.1281996894531],[126.46170046875,42.1594863105469],[126.486812773438,42.19335471875],[126.546954375,42.1844680000001],[126.577345,42.2238430000001],[126.59271609375,42.2192153144532],[126.603541289063,42.2066518378906],[126.672066679688,42.1684194160157],[126.700987578125,42.1707424140626],[126.702745390625,42.148843],[126.701178007813,42.1293386054688],[126.732345,42.1268337226563],[126.772345,42.1300478339844],[126.792345,42.1284413886719],[126.802584257813,42.1292641425782],[126.8325403125,42.1182631660156],[126.849000273438,42.137368390625],[126.899586210938,42.1414333320313],[126.959132109375,42.0992153144531],[126.98271609375,42.1084706855469],[127.017310820313,42.1684706855469],[127.03271609375,42.1592153144532],[127.04197390625,42.1484706855469],[127.077345,42.1438430000001],[127.115675078125,42.128774640625],[127.167345,42.123843]]]]}},{"type":"Feature","properties":{"name":"靖宇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.027345,42.3738430000001],[127.015152617188,42.3704201484375],[127.023922148438,42.3616506171875],[127.041241484375,42.3627150703126],[127.042965117188,42.348843],[127.04080203125,42.3314321113282],[127.08302859375,42.3193581367188],[127.0810559375,42.3034670234375],[127.13302859375,42.3183278632813],[127.131475859375,42.3308168769532],[127.152345,42.3282216621094],[127.167345,42.3300868964844],[127.185172148438,42.3278700996094],[127.232530546875,42.3557070136719],[127.261241484375,42.3327150703125],[127.262965117188,42.318843],[127.260479765625,42.2988430000001],[127.26490359375,42.2632802558594],[127.245904570313,42.2395571113281],[127.22166140625,42.2293410468751],[127.225142851563,42.2013649726562],[127.202896757813,42.1882900214844],[127.105577421875,42.1741249824219],[127.092896757813,42.1582900214844],[127.081793242188,42.1493959785156],[127.077345,42.1438430000001],[127.04197390625,42.1484706855469],[127.03271609375,42.1592153144532],[127.017310820313,42.1684706855469],[126.98271609375,42.1084706855469],[126.959132109375,42.0992153144531],[126.899586210938,42.1414333320313],[126.849000273438,42.137368390625],[126.8325403125,42.1182631660156],[126.802584257813,42.1292641425782],[126.792345,42.1284413886719],[126.772345,42.1300478339844],[126.732345,42.1268337226563],[126.701178007813,42.1293386054688],[126.702745390625,42.148843],[126.700987578125,42.1707424140626],[126.672066679688,42.1684194160157],[126.603541289063,42.2066518378906],[126.59271609375,42.2192153144532],[126.577345,42.2238430000001],[126.521378203125,42.2518740058594],[126.517345,42.283843],[126.52420046875,42.3012831855469],[126.521549101563,42.319233625],[126.534410429688,42.3405544257813],[126.511549101563,42.3784523750001],[126.513082304688,42.388843],[126.509464140625,42.4133437324219],[126.57170046875,42.4594863105469],[126.627183867188,42.4689113593751],[126.633082304688,42.508843],[126.631607695313,42.5188430000001],[126.63310671875,42.5289858222656],[126.620455351563,42.5835707832032],[126.701417265625,42.6061147285157],[126.74170046875,42.6594863105469],[126.747345,42.663843],[126.765479765625,42.669028546875],[126.786236601563,42.6949489570313],[126.804156523438,42.7092958808594],[126.79978640625,42.7444057441407],[126.826261015625,42.7774648261719],[126.852345,42.780708234375],[126.879249296875,42.7773622871094],[126.893023710938,42.7883901191407],[126.890548125,42.8082900214844],[126.982896757813,42.7993959785156],[127.007345,42.7850258613282],[127.045318632813,42.8073464179687],[127.062345,42.8094643378907],[127.141983671875,42.7995595527344],[127.19455203125,42.8416054511719],[127.189527617188,42.80118675],[127.202921171875,42.7543447089844],[127.231793242188,42.7182900214844],[127.251793242188,42.7022743964844],[127.232896757813,42.6682900214844],[127.207345,42.6338430000001],[127.207345,42.623843],[127.142667265625,42.6316286445313],[127.12271609375,42.6084706855469],[127.1019153125,42.5991896796875],[127.1027746875,42.5885195136719],[127.089288359375,42.5769008613282],[127.05271609375,42.4884706855469],[127.029932890625,42.468843],[127.053526640625,42.4485195136719],[127.051944609375,42.428843],[127.052769804688,42.4185634589844],[127.027345,42.3738430000001]]]]}},{"type":"Feature","properties":{"name":"临江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.107345,41.543843],[127.095152617188,41.5472658515625],[127.103922148438,41.5560353828126],[127.107345,41.543843]]],[[[127.107345,41.543843],[127.112808867188,41.5483803535156],[127.121881132813,41.5593056464844],[127.132808867188,41.5683803535157],[127.141881132813,41.5793056464844],[127.174600859375,41.5889076972657],[127.1298059375,41.5988405585938],[127.112808867188,41.6193056464844],[127.101793242188,41.628452375],[127.102896757813,41.6392787910156],[127.065367460938,41.6502919746094],[127.032808867188,41.6753700996094],[127.080401640625,41.6960109687501],[127.051881132813,41.7083803535157],[127.042808867188,41.7393056464844],[127.001788359375,41.7484011054688],[127.003233671875,41.7625588203126],[126.931002226563,41.7785756660156],[126.945191679688,41.7903591132813],[126.937725859375,41.8183803535157],[126.902808867188,41.7983803535157],[126.881881132813,41.7893056464844],[126.85927859375,41.7763588691407],[126.837159453125,41.7253578925782],[126.811158476563,41.7402504707031],[126.788863554688,41.7379787421875],[126.792882109375,41.698579328125],[126.789420195313,41.6893056464844],[126.768267851563,41.7147682929688],[126.731016875,41.7457131171875],[126.7020715625,41.7583803535157],[126.672808867188,41.7323159003907],[126.720694609375,41.7115468574219],[126.681881132813,41.6793056464844],[126.677345,41.673843],[126.633150664063,41.6916432929688],[126.61170046875,41.7081996894531],[126.60298953125,41.7194863105469],[126.582511015625,41.7352931953125],[126.57298953125,41.7694863105469],[126.557608671875,41.8086098457032],[126.577345,41.823843],[126.612896757813,41.8282900214844],[126.631793242188,41.8393959785157],[126.652896757813,41.8482900214844],[126.686846953125,41.8682460761719],[126.734366484375,41.9275868964844],[126.731676054688,41.9492031074219],[126.748111601563,41.9771620917969],[126.787808867188,42.0012734199219],[126.812345,41.9982216621094],[126.831890898438,42.0006520820312],[126.85662234375,41.9697670722657],[126.892896757813,41.9593959785156],[126.922061796875,41.9481862617188],[126.932345,41.9494643378906],[126.952345,41.946977765625],[126.974107695313,41.9496840644532],[126.970611601563,41.9777797675782],[126.99615359375,42.0127443671876],[127.086710234375,41.9868849921876],[127.14666140625,42.0005019355469],[127.161793242188,42.0193959785157],[127.19302859375,42.0283278632813],[127.191666289063,42.0392958808594],[127.208453398438,42.0527370429688],[127.217345,42.0638430000001],[127.272896757813,42.0593959785157],[127.32084109375,42.0457057929688],[127.448389921875,42.0271413398438],[127.463004179688,41.989126203125],[127.459234648438,41.958843],[127.464039335938,41.92022971875],[127.447706328125,41.8924477363281],[127.487994414063,41.868764875],[127.568853789063,41.8586513496094],[127.595284453125,41.8374843574219],[127.59138796875,41.8061611152344],[127.621983671875,41.7881764960938],[127.658370390625,41.7927028632813],[127.694991484375,41.7659523750001],[127.752896757813,41.7493959785157],[127.781793242188,41.7382900214844],[127.812896757813,41.7293959785156],[127.821793242188,41.7182900214844],[127.827345,41.713843],[127.815894804688,41.699009015625],[127.78170046875,41.6894863105469],[127.75298953125,41.6781996894532],[127.62170046875,41.6694863105469],[127.581710234375,41.6537648750001],[127.5397278125,41.6599684882813],[127.46170046875,41.6394863105469],[127.43298953125,41.6281996894531],[127.376939726563,41.6186769843751],[127.323516875,41.5864528632813],[127.295689726563,41.5905654121094],[127.25490359375,41.5377260566406],[127.2321496875,41.5410890937501],[127.227345,41.523843],[127.211553984375,41.5164638496094],[127.203228789063,41.5310610175781],[127.174996367188,41.5204201484375],[127.163228789063,41.5410610175782],[127.147345,41.5350734687501],[127.132345,41.540727765625],[127.113228789063,41.5335219550781],[127.107345,41.543843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长岭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.747345,44.2038430000001],[124.751397734375,44.2268398261719],[124.7600403125,44.2092763496094],[124.747345,44.2038430000001]]],[[[124.747345,44.2038430000001],[124.739176054688,44.1920119453126],[124.721046171875,44.1794930244141],[124.727345,44.153843],[124.72259890625,44.1485298896485],[124.710318632813,44.1492617011719],[124.652628203125,44.1285616279297],[124.502061796875,44.1091243720704],[124.487730742188,44.0930825019532],[124.452628203125,44.0685616279297],[124.432061796875,44.0591243720703],[124.41349734375,44.0383431220704],[124.283150664063,43.9915731025391],[124.232345,43.9885451484375],[124.207345,43.9900350166016],[124.173844023438,43.9880379462891],[124.162061796875,43.9985616279297],[124.15209109375,44.0097219062501],[124.127345,44.0082466865235],[124.0813684375,44.0109871650391],[124.007345,44.0038430000001],[123.982061796875,43.9991243720704],[123.806138945313,43.9874697089844],[123.761485625,43.9994295478516],[123.762974882813,44.0243758369141],[123.730260039063,44.0393904853516],[123.707906523438,44.0644057441406],[123.692061796875,44.0785616279297],[123.669224882813,44.1041249824219],[123.631011992188,44.0774324775391],[123.577345,44.0806313300781],[123.522345,44.0773531318359],[123.478428984375,44.079970319336],[123.386261015625,44.0677156806641],[123.333609648438,44.0708534980469],[123.327345,44.063843],[123.313756132813,44.0755489326172],[123.34271609375,44.0884712958985],[123.360225859375,44.1277095771485],[123.37271609375,44.1384712958985],[123.38896609375,44.1573329902344],[123.325738554688,44.1763692451172],[123.292476835938,44.1949269843751],[123.2649621875,44.2565920234375],[123.1947278125,44.3386092353516],[123.16197390625,44.3484712958984],[123.14271609375,44.3592147041016],[123.12197390625,44.3684712958985],[123.109288359375,44.3969008613281],[123.13728640625,44.4210237861328],[123.121920195313,44.4485646796875],[123.125777617188,44.4965767646484],[123.117345,44.5038430000001],[123.13271609375,44.5284712958985],[123.143170195313,44.5519008613282],[123.210030546875,44.5817342353516],[123.25271609375,44.6084712958985],[123.28197390625,44.6292147041016],[123.31271609375,44.6384712958985],[123.3416028125,44.6545870185547],[123.40271609375,44.6684712958985],[123.454654570313,44.6974483466798],[123.517345,44.703843],[123.5455871875,44.6965950751954],[123.61142703125,44.6379274726563],[123.627345,44.633843],[123.648453398438,44.6102193427734],[123.672628203125,44.5991243720704],[123.682061796875,44.5785616279297],[123.710968046875,44.5527352119141],[123.730440703125,44.5103127265626],[123.752061796875,44.4985616279297],[123.785382109375,44.4882729316407],[123.852628203125,44.4491243720704],[123.914928007813,44.4056063056641],[124.013336210938,44.3604409003906],[124.0120325,44.3385768867188],[124.042906523438,44.3244057441407],[124.0916809375,44.2979012275391],[124.128345976563,44.3235115791016],[124.262628203125,44.3985616279297],[124.356768828125,44.4567617011719],[124.523546171875,44.5080202460938],[124.542061796875,44.5091243720703],[124.547345,44.513843],[124.551881132813,44.5083803535156],[124.582896757813,44.4892507148438],[124.581241484375,44.4729964423829],[124.631597929688,44.4511556220703],[124.633394804688,44.4335366035157],[124.582345,44.4283333564453],[124.55310671875,44.431313703125],[124.551475859375,44.4153304267579],[124.588267851563,44.3847682929688],[124.601881132813,44.3683803535156],[124.613834257813,44.3584529853516],[124.611324492188,44.333843],[124.613873320313,44.3088430000001],[124.6118371875,44.288843],[124.612896757813,44.2784529853516],[124.592808867188,44.2617671943359],[124.613511992188,44.2084072089844],[124.71244265625,44.1983229804688],[124.747345,44.2038430000001]]]]}},{"type":"Feature","properties":{"name":"扶余县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.63095828125,45.5205361152344],[125.66013796875,45.5033846259766],[125.687345,45.513843],[125.693375273438,45.4984987617188],[125.68047,45.4885353828125],[125.69170046875,45.4481990791016],[125.709136992188,45.403843],[125.684342070313,45.3407643867188],[125.702345,45.3381038642579],[125.712857695313,45.339657819336],[125.75170046875,45.2881990791016],[125.77298953125,45.2794869208985],[125.791954375,45.268046491211],[125.802935820313,45.2696694160157],[125.81170046875,45.2381990791016],[125.855699492188,45.2259468818359],[125.90170046875,45.1981990791016],[125.95298953125,45.1894869208984],[125.9875403125,45.1686452460938],[126.07298953125,45.1594869208985],[126.094190703125,45.1466982246095],[126.15170046875,45.1381990791016],[126.167345,45.133843],[126.1839075,45.0983736396485],[126.17107546875,45.0895131660157],[126.174586210938,45.0738430000001],[126.167193632813,45.0408534980469],[126.184776640625,45.028710553711],[126.170538359375,44.9906502509766],[126.133673125,44.9768569160156],[126.190230742188,44.9117317939453],[126.172345,44.9077223945313],[126.162345,44.9099636054688],[126.143013945313,44.9056307197266],[126.1276184375,44.9279274726563],[126.10142703125,44.9197585273438],[126.091573515625,44.8934120917969],[126.054132109375,44.9018056464844],[126.051221953125,44.8888430000001],[126.053565703125,44.8783962226562],[126.039454375,44.8567287421876],[126.043472929688,44.8388014960938],[126.03142703125,44.7897585273437],[126.027345,44.783843],[126.00142703125,44.7797585273438],[125.96326296875,44.7679274726563],[125.918228789063,44.7597585273438],[125.90326296875,44.7997585273438],[125.87142703125,44.8179274726562],[125.86326296875,44.8297585273438],[125.822237578125,44.8402858710938],[125.7980090625,44.8245088935547],[125.803638945313,44.8496169257813],[125.78142703125,44.8579274726563],[125.77326296875,44.8797585273438],[125.757345,44.8838430000001],[125.737979765625,44.9184334541016],[125.69170046875,44.9281990791016],[125.668800078125,44.9420137763672],[125.637838164063,44.9374379707031],[125.62298953125,44.9181990791016],[125.61170046875,44.9094869208985],[125.60298953125,44.8981990791016],[125.54170046875,44.8894869208984],[125.476187773438,44.8768917060547],[125.425377226563,44.8917055488282],[125.400767851563,44.8768593574219],[125.355108671875,44.8836067939454],[125.29326296875,44.8463002753907],[125.247345,44.853843],[125.242896757813,44.8593959785156],[125.22656375,44.8724770332032],[125.192345,44.8682210517579],[125.173472929688,44.8705684638672],[125.14966921875,44.9270626044922],[125.081793242188,44.9682900214844],[125.052896757813,45.0093959785156],[124.957345,45.0738430000001],[124.96142703125,45.0897585273437],[125.00326296875,45.0979274726563],[125.037198515625,45.11218284375],[125.031221953125,45.138843],[125.033468046875,45.1488430000001],[125.024713164063,45.1878835273438],[125.001109648438,45.2183382392578],[125.003468046875,45.2288430000001],[125.000474882813,45.2421938300782],[125.027496367188,45.2608534980469],[125.021221953125,45.288843],[125.026265898438,45.3113271308594],[125.042652617188,45.3076528144531],[125.097496367188,45.3325087714844],[125.087345,45.3738430000001],[125.092711210938,45.3805458808594],[125.147345,45.4126601386719],[125.175421171875,45.3961556220703],[125.252935820313,45.4182900214844],[125.282896757813,45.4093959785157],[125.30267703125,45.3977687812501],[125.312857695313,45.4219313789063],[125.338472929688,45.3899465156251],[125.359249296875,45.3873622871094],[125.420142851563,45.4361208320313],[125.423590117188,45.463843],[125.420548125,45.4882900214844],[125.472896757813,45.4793959785156],[125.488546171875,45.4598537421875],[125.521793242188,45.4793959785156],[125.586832304688,45.4907149482422],[125.608472929688,45.517739484375],[125.63095828125,45.5205361152344]]]]}},{"type":"Feature","properties":{"name":"宁江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.827345,45.1138430000001],[124.823922148438,45.1260353828125],[124.815152617188,45.1172664619141],[124.832799101563,45.1070333076172],[124.86150515625,45.1106044746094],[124.86625125,45.0724385810548],[124.828624296875,45.0677584052734],[124.791793242188,45.0782900214844],[124.743570585938,45.0968245673829],[124.71373171875,45.1005361152344],[124.68822390625,45.08554221875],[124.671685820313,45.1285604072266],[124.673023710938,45.1393074775391],[124.631793242188,45.1682900214844],[124.622896757813,45.1793959785157],[124.611793242188,45.1882900214844],[124.602843046875,45.2095265937501],[124.56400515625,45.2046956611328],[124.59181765625,45.2394271064454],[124.643287382813,45.2805916572266],[124.666065703125,45.2777584052735],[124.727857695313,45.2954256416016],[124.711666289063,45.3083901191407],[124.715709257813,45.3409078193359],[124.692896757813,45.3693959785157],[124.663863554688,45.381630475586],[124.661666289063,45.3992958808594],[124.673365507813,45.4086629462891],[124.657345,45.433843],[124.669107695313,45.4480031562501],[124.687345,45.4498622871094],[124.730391875,45.4454744697266],[124.749420195313,45.4683803535156],[124.772896757813,45.4592702460938],[124.769888945313,45.4297695136719],[124.834517851563,45.4540535712891],[124.877725859375,45.4293056464845],[124.884610625,45.4416036201172],[124.880015898438,45.4867098212891],[124.902808867188,45.5183803535157],[124.914234648438,45.5447322822266],[124.932808867188,45.5293056464844],[124.965406523438,45.4900600410157],[124.982345,45.4883333564453],[125.046529570313,45.4948751044923],[125.027471953125,45.4616060615235],[125.045494414063,45.4200508857422],[125.062345,45.4183333564453],[125.091881132813,45.4213442207032],[125.082808867188,45.4083803535157],[125.052808867188,45.3953694892579],[125.071881132813,45.3783803535157],[125.087345,45.3738430000001],[125.097496367188,45.3325087714844],[125.042652617188,45.3076528144531],[125.026265898438,45.3113271308594],[125.021221953125,45.288843],[125.027496367188,45.2608534980469],[125.000474882813,45.2421938300782],[125.003468046875,45.2288430000001],[125.001109648438,45.2183382392578],[125.024713164063,45.1878835273438],[125.033468046875,45.1488430000001],[125.031221953125,45.138843],[125.037198515625,45.11218284375],[125.00326296875,45.0979274726563],[124.96142703125,45.0897585273437],[124.957345,45.0738430000001],[124.924879179688,45.0828829169922],[124.90298953125,45.1194869208984],[124.865191679688,45.1420925117188],[124.827345,45.1138430000001]]]]}},{"type":"Feature","properties":{"name":"乾安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.337301054688,45.0077376533203],[124.352476835938,44.9187508369141],[124.307984648438,44.9079042792969],[124.337218046875,44.7078481269532],[124.05244265625,44.6787429023438],[123.632476835938,44.6391835761719],[123.627345,44.633843],[123.61142703125,44.6379274726563],[123.5455871875,44.6965950751954],[123.517345,44.703843],[123.51298953125,44.7294869208985],[123.468956328125,44.7814388251954],[123.415904570313,44.8529903388672],[123.48298953125,44.9281990791016],[123.49170046875,44.9594869208984],[123.497345,44.9638430000001],[123.52755984375,44.9572530341797],[123.56064578125,44.959911725586],[123.627135039063,45.0070565009766],[123.73263796875,45.0541347480469],[123.920513945313,45.2150984931641],[124.02271609375,45.2284712958984],[124.076846953125,45.2402779365235],[124.067345,45.283843],[124.067345,45.293843],[124.12880984375,45.3064327216797],[124.14224734375,45.2787429023437],[124.18244265625,45.2689430976563],[124.19224734375,45.2487429023438],[124.24654421875,45.2131417060547],[124.26224734375,45.1487429023438],[124.306256132813,45.1380141425782],[124.32224734375,45.0887429023438],[124.381314726563,45.0743428779297],[124.382447539063,45.0187441230469],[124.337301054688,45.0077376533203]]]]}},{"type":"Feature","properties":{"name":"前郭尔罗斯蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.827345,45.1138430000001],[124.815152617188,45.1172664619141],[124.823922148438,45.1260353828125],[124.827345,45.1138430000001]]],[[[124.067345,45.293843],[124.067345,45.283843],[124.054537382813,45.288843],[124.067345,45.293843]]],[[[124.827345,45.1138430000001],[124.865191679688,45.1420925117188],[124.90298953125,45.1194869208984],[124.924879179688,45.0828829169922],[124.957345,45.0738430000001],[125.052896757813,45.0093959785156],[125.081793242188,44.9682900214844],[125.14966921875,44.9270626044922],[125.173472929688,44.8705684638672],[125.192345,44.8682210517579],[125.22656375,44.8724770332032],[125.242896757813,44.8593959785156],[125.247345,44.853843],[125.231793242188,44.8493959785157],[125.222896757813,44.8436916328125],[125.284991484375,44.8259389472656],[125.301793242188,44.8120375800781],[125.265206328125,44.7966213203125],[125.22123171875,44.8020912910156],[125.166495390625,44.7864614082032],[125.141954375,44.7895137763672],[125.10908328125,44.7655025458985],[125.013800078125,44.7808626533204],[124.982896757813,44.7582900214844],[124.936236601563,44.7449489570313],[124.887735625,44.7263063789063],[124.862037382813,44.7295027900391],[124.80732546875,44.7058852363282],[124.830030546875,44.667265241211],[124.812345,44.6694649482422],[124.797345,44.6675991035156],[124.779517851563,44.6698165107422],[124.742706328125,44.6481764960938],[124.69033328125,44.6546907783203],[124.627730742188,44.6368148017579],[124.607999296875,44.6121718574219],[124.551344023438,44.5690541816406],[124.571334257813,44.5350453925781],[124.551793242188,44.5193959785156],[124.547345,44.513843],[124.542061796875,44.5091243720703],[124.523546171875,44.5080202460938],[124.356768828125,44.4567617011719],[124.262628203125,44.3985616279297],[124.128345976563,44.3235115791016],[124.0916809375,44.2979012275391],[124.042906523438,44.3244057441407],[124.0120325,44.3385768867188],[124.013336210938,44.3604409003906],[123.914928007813,44.4056063056641],[123.852628203125,44.4491243720704],[123.785382109375,44.4882729316407],[123.752061796875,44.4985616279297],[123.730440703125,44.5103127265626],[123.710968046875,44.5527352119141],[123.682061796875,44.5785616279297],[123.672628203125,44.5991243720704],[123.648453398438,44.6102193427734],[123.627345,44.633843],[123.632476835938,44.6391835761719],[124.05244265625,44.6787429023438],[124.337218046875,44.7078481269532],[124.307984648438,44.9079042792969],[124.352476835938,44.9187508369141],[124.337301054688,45.0077376533203],[124.382447539063,45.0187441230469],[124.381314726563,45.0743428779297],[124.32224734375,45.0887429023438],[124.306256132813,45.1380141425782],[124.26224734375,45.1487429023438],[124.24654421875,45.2131417060547],[124.19224734375,45.2487429023438],[124.18244265625,45.2689430976563],[124.14224734375,45.2787429023437],[124.12880984375,45.3064327216797],[124.067345,45.293843],[124.0766028125,45.3245870185547],[124.123814726563,45.3388021064453],[124.226671171875,45.3846981025391],[124.28197390625,45.4192147041016],[124.31271609375,45.4284712958985],[124.367345,45.4538430000001],[124.395924101563,45.4365114570313],[124.459947539063,45.4584255195313],[124.525162382813,45.4089430976563],[124.572803984375,45.4214650703125],[124.57216921875,45.4524599433594],[124.61224734375,45.4387429023438],[124.657345,45.433843],[124.673365507813,45.4086629462891],[124.661666289063,45.3992958808594],[124.663863554688,45.381630475586],[124.692896757813,45.3693959785157],[124.715709257813,45.3409078193359],[124.711666289063,45.3083901191407],[124.727857695313,45.2954256416016],[124.666065703125,45.2777584052735],[124.643287382813,45.2805916572266],[124.59181765625,45.2394271064454],[124.56400515625,45.2046956611328],[124.602843046875,45.2095265937501],[124.611793242188,45.1882900214844],[124.622896757813,45.1793959785157],[124.631793242188,45.1682900214844],[124.673023710938,45.1393074775391],[124.671685820313,45.1285604072266],[124.68822390625,45.08554221875],[124.71373171875,45.1005361152344],[124.743570585938,45.0968245673829],[124.791793242188,45.0782900214844],[124.828624296875,45.0677584052734],[124.86625125,45.0724385810548],[124.86150515625,45.1106044746094],[124.832799101563,45.1070333076172],[124.827345,45.1138430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.527345,45.7598622871094],[123.542345,45.7583333564453],[123.552667265625,45.7593856025391],[123.571881132813,45.7483803535157],[123.612808867188,45.7393056464844],[123.664547148438,45.7198635078126],[123.752662382813,45.7394789863282],[123.761954375,45.7282936835938],[123.813331328125,45.7335305],[123.810885039063,45.709501569336],[123.861939726563,45.7042971015625],[123.925553007813,45.7281990791016],[124.027847929688,45.7177724433594],[124.077345,45.7238430000001],[124.08298953125,45.7194869208985],[124.098365507813,45.6995638251953],[124.139078398438,45.6829012275391],[124.120611601563,45.6686452460938],[124.143424101563,45.6593080878906],[124.128604765625,45.6216121650391],[124.18486453125,45.6132985664063],[124.225924101563,45.6380666328126],[124.219049101563,45.5915462470704],[124.242345,45.5881038642578],[124.264947539063,45.5914437080078],[124.259093046875,45.5518367744141],[124.283922148438,45.5368593574219],[124.358785429688,45.5479225898438],[124.36312625,45.5185512519531],[124.351392851563,45.4887075019532],[124.36298953125,45.4694869208985],[124.367345,45.4538430000001],[124.31271609375,45.4284712958985],[124.28197390625,45.4192147041016],[124.226671171875,45.3846981025391],[124.123814726563,45.3388021064453],[124.0766028125,45.3245870185547],[124.067345,45.293843],[124.054537382813,45.288843],[124.067345,45.283843],[124.076846953125,45.2402779365235],[124.02271609375,45.2284712958984],[123.920513945313,45.2150984931641],[123.73263796875,45.0541347480469],[123.627135039063,45.0070565009766],[123.56064578125,44.959911725586],[123.52755984375,44.9572530341797],[123.497345,44.9638430000001],[123.491617460938,44.9790853095704],[123.503096953125,44.988622663086],[123.47318484375,45.0587844062501],[123.444908476563,45.0980721259766],[123.424390898438,45.1679915595703],[123.406422148438,45.1829177070313],[123.391954375,45.2003322578125],[123.35634890625,45.1967024970704],[123.337345,45.203843],[123.330474882813,45.2433303046875],[123.311793242188,45.2582900214844],[123.285831328125,45.3010323310547],[123.241441679688,45.3365785957032],[123.243023710938,45.3492958808594],[123.231793242188,45.3582900214844],[123.191768828125,45.4082680488282],[123.147345,45.443843],[123.161793242188,45.4793959785156],[123.189766875,45.5269893623047],[123.232896757813,45.5782900214844],[123.257345,45.6138430000001],[123.293350859375,45.6244087958984],[123.312808867188,45.6583803535156],[123.326500273438,45.6899483466798],[123.342735625,45.6882936835938],[123.351881132813,45.6993056464844],[123.428204375,45.7106740546875],[123.491470976563,45.7562056708985],[123.527345,45.7598622871094]]]]}},{"type":"Feature","properties":{"name":"通榆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.321822539063,45.1850704169922],[122.446783476563,45.1168538642579],[122.486920195313,45.0719368720704],[122.5751965625,45.0402620673829],[122.738189726563,45.0656618476563],[122.763189726563,45.0879994941407],[122.795162382813,45.12378440625],[122.952628203125,45.1385616279297],[122.997633085938,45.1547109199219],[123.013013945313,45.1374983955078],[123.157999296875,45.1498738837891],[123.232628203125,45.1785616279297],[123.282061796875,45.1991243720703],[123.337345,45.203843],[123.35634890625,45.1967024970704],[123.391954375,45.2003322578125],[123.406422148438,45.1829177070313],[123.424390898438,45.1679915595703],[123.444908476563,45.0980721259766],[123.47318484375,45.0587844062501],[123.503096953125,44.988622663086],[123.491617460938,44.9790853095704],[123.497345,44.9638430000001],[123.49170046875,44.9594869208984],[123.48298953125,44.9281990791016],[123.415904570313,44.8529903388672],[123.468956328125,44.7814388251954],[123.51298953125,44.7294869208985],[123.517345,44.703843],[123.454654570313,44.6974483466798],[123.40271609375,44.6684712958985],[123.3416028125,44.6545870185547],[123.31271609375,44.6384712958985],[123.28197390625,44.6292147041016],[123.25271609375,44.6084712958985],[123.210030546875,44.5817342353516],[123.143170195313,44.5519008613282],[123.13271609375,44.5284712958985],[123.117345,44.5038430000001],[123.032379179688,44.4985170722657],[122.868292265625,44.4026625800781],[122.765201445313,44.370829694336],[122.730206328125,44.35181175],[122.673970976563,44.2888747382813],[122.611783476563,44.2744057441407],[122.552628203125,44.2585616279298],[122.512061796875,44.2491243720703],[122.482628203125,44.2385616279297],[122.307330351563,44.2291243720704],[122.267345,44.253843],[122.271881132813,44.2793056464844],[122.282808867188,44.3083803535157],[122.291881132813,44.4659059882812],[122.210968046875,44.4803255439453],[122.215714140625,44.5268917060547],[122.201881132813,44.5383803535157],[122.185045195313,44.5586482978516],[122.133936796875,44.5736470771485],[122.122808867188,44.5993056464844],[122.111881132813,44.6183803535157],[122.099581328125,44.6467415595703],[122.10447390625,44.694735944336],[122.15326296875,44.7248299384766],[122.151480742188,44.7423226142578],[122.1023059375,44.7373097968751],[122.092808867188,44.7613442207032],[122.139190703125,44.7566164375],[122.161881132813,44.7676882148438],[122.089967070313,44.7805037666016],[122.092882109375,44.8091268134766],[122.063043242188,44.8791091132813],[122.03533328125,44.9021279121094],[122.078756132813,44.9209596992188],[122.070909453125,44.9979500556641],[122.092808867188,45.0283803535157],[122.116173125,45.066264875],[122.108985625,45.1367897773438],[122.135513945313,45.1831069160156],[122.18482546875,45.1780806708985],[122.228277617188,45.2029677558594],[122.237345,45.273843],[122.252628203125,45.2691243720703],[122.272061796875,45.2585616279297],[122.292628203125,45.2491243720704],[122.306783476563,45.2332802558594],[122.3237903125,45.2180843330078],[122.321822539063,45.1850704169922]]]]}},{"type":"Feature","properties":{"name":"镇赉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.837345,46.303843],[123.853570585938,46.2980220771485],[123.902769804688,46.3009542060547],[123.899678984375,46.2491243720703],[123.915679960938,46.2607881904297],[123.940494414063,46.2885616279297],[123.953228789063,46.2786562324219],[123.9508996875,46.2396016669922],[123.973829375,46.2191139960938],[123.943468046875,46.2051784492188],[123.9726575,46.1790956855469],[123.9720325,46.1685720039063],[124.002886992188,46.1590431953125],[123.99185671875,46.1387453437501],[124.012061796875,46.1206917548828],[124.002628203125,46.1085616279297],[123.991749296875,46.098843],[124.01353640625,46.0793758369141],[123.994254179688,46.0621462226563],[124.031070585938,46.04524925],[124.032769804688,46.0167317939453],[123.982628203125,46.0197200751953],[123.995753203125,46.0042024970704],[124.022061796875,45.9806917548829],[123.9989075,45.978153913086],[123.973233671875,45.9796840644532],[123.952628203125,45.9417568183594],[123.99923953125,45.9025215888672],[124.044097929688,45.8886702705078],[124.057345,45.8738430000001],[124.06896609375,45.8406880927735],[124.023214140625,45.8262026191406],[124.055792265625,45.7960158515625],[123.992535429688,45.7759883857423],[124.01244265625,45.7482521796875],[124.05093875,45.7497780585938],[124.067725859375,45.7342244697266],[124.077345,45.7238430000001],[124.027847929688,45.7177724433594],[123.925553007813,45.7281990791016],[123.861939726563,45.7042971015625],[123.810885039063,45.709501569336],[123.813331328125,45.7335305],[123.761954375,45.7282936835938],[123.752662382813,45.7394789863282],[123.664547148438,45.7198635078126],[123.612808867188,45.7393056464844],[123.571881132813,45.7483803535157],[123.552667265625,45.7593856025391],[123.542345,45.7583333564453],[123.527345,45.7598622871094],[123.491470976563,45.7562056708985],[123.428204375,45.7106740546875],[123.351881132813,45.6993056464844],[123.342735625,45.6882936835938],[123.326500273438,45.6899483466798],[123.312808867188,45.6583803535156],[123.293350859375,45.6244087958984],[123.257345,45.6138430000001],[123.252896757813,45.6193959785156],[123.221793242188,45.6282900214844],[123.209141875,45.6583095527344],[123.098077421875,45.6776381660157],[123.00994265625,45.6576192451172],[122.972291289063,45.6797542548828],[122.952896757813,45.7139943671875],[122.997530546875,45.7411025214844],[122.913096953125,45.8466701484375],[122.840787382813,45.8771401191406],[122.817345,45.883843],[122.812281523438,45.9553646064454],[122.79197390625,46.0484712958985],[122.787345,46.073843],[122.859136992188,46.0789260078126],[123.029683867188,46.096322248047],[123.06197390625,46.1192147041016],[123.103565703125,46.1286635566406],[123.100416289063,46.1678719306641],[123.11271609375,46.1784712958984],[123.12505984375,46.2194625068359],[123.167345,46.243843],[123.234039335938,46.2746578193359],[123.284097929688,46.2474575019531],[123.312345,46.2491408515625],[123.334874296875,46.247798078125],[123.352061796875,46.2285616279297],[123.38322390625,46.2191243720703],[123.381886015625,46.2415523505859],[123.449698515625,46.2375106025391],[123.50047,46.2557289863282],[123.532061796875,46.2385616279298],[123.55947390625,46.2259810615234],[123.602061796875,46.2491243720703],[123.7353528125,46.2595577216797],[123.75255984375,46.2585323310547],[123.825572539063,46.2906697822266],[123.837345,46.303843]]]]}},{"type":"Feature","properties":{"name":"洮北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.49123171875,45.8489772773438],[122.503150664063,45.7804927802735],[122.552467070313,45.8199355292969],[122.571607695313,45.7960335517578],[122.601793242188,45.7782900214844],[122.632896757813,45.7693959785156],[122.646261015625,45.7376845527344],[122.676920195313,45.6993959785156],[122.735206328125,45.7086562324219],[122.785299101563,45.7712905097657],[122.745816679688,45.8384517646485],[122.795904570313,45.8595571113281],[122.811793242188,45.8793959785157],[122.817345,45.883843],[122.840787382813,45.8771401191406],[122.913096953125,45.8466701484375],[122.997530546875,45.7411025214844],[122.952896757813,45.7139943671875],[122.972291289063,45.6797542548828],[123.00994265625,45.6576192451172],[123.098077421875,45.6776381660157],[123.209141875,45.6583095527344],[123.221793242188,45.6282900214844],[123.252896757813,45.6193959785156],[123.257345,45.6138430000001],[123.232896757813,45.5782900214844],[123.189766875,45.5269893623047],[123.161793242188,45.4793959785156],[123.147345,45.443843],[123.131793242188,45.4393959785156],[123.122896757813,45.4282900214844],[123.091793242188,45.4093959785157],[123.082896757813,45.3982900214844],[123.031793242188,45.3893959785156],[123.015904570313,45.3695571113281],[122.987486601563,45.3575814033204],[122.972345,45.3594649482422],[122.952345,45.3569771552735],[122.932345,45.3594649482422],[122.922061796875,45.3581856513673],[122.892628203125,45.3695003486329],[122.882345,45.3682210517578],[122.867345,45.3700868964844],[122.842345,45.3669771552735],[122.822345,45.3694649482422],[122.812345,45.3682210517578],[122.802345,45.3694649482422],[122.791890898438,45.3681648994141],[122.782896757813,45.3793959785157],[122.763502226563,45.3949275947266],[122.731793242188,45.4082900214844],[122.701607695313,45.4260335517578],[122.675904570313,45.4581288886719],[122.63068484375,45.4771834541016],[122.591920195313,45.5255953193359],[122.561793242188,45.5382900214844],[122.532896757813,45.5593959785157],[122.511793242188,45.5682900214844],[122.482628203125,45.6163021064454],[122.472896757813,45.6393959785157],[122.452193632813,45.6559749580079],[122.442496367188,45.7117110419922],[122.421793242188,45.7282900214844],[122.412896757813,45.7493959785157],[122.396578398438,45.7771614814453],[122.361666289063,45.7983675361329],[122.362965117188,45.808843],[122.361676054688,45.8192031074219],[122.373155546875,45.8387270332032],[122.367345,45.853843],[122.352896757813,45.8914278388673],[122.36619265625,45.9182900214845],[122.44291140625,45.9093947578125],[122.49123171875,45.8489772773438]]]]}},{"type":"Feature","properties":{"name":"洮南市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.922271757813,45.9867055488282],[121.972345,45.9754805732423],[121.993013945313,45.9801143623047],[122.00142703125,45.9679274726563],[122.067345,45.923843],[122.07271609375,45.9192147041016],[122.0891809375,45.8823232246094],[122.205836210938,45.8471999335938],[122.22197390625,45.8284712958985],[122.23271609375,45.8192147041016],[122.255577421875,45.7926815009766],[122.31271609375,45.8284712958985],[122.33041140625,45.8490108466797],[122.367345,45.853843],[122.373155546875,45.8387270332032],[122.361676054688,45.8192031074219],[122.362965117188,45.808843],[122.361666289063,45.7983675361329],[122.396578398438,45.7771614814453],[122.412896757813,45.7493959785157],[122.421793242188,45.7282900214844],[122.442496367188,45.7117110419922],[122.452193632813,45.6559749580079],[122.472896757813,45.6393959785157],[122.482628203125,45.6163021064454],[122.511793242188,45.5682900214844],[122.532896757813,45.5593959785157],[122.561793242188,45.5382900214844],[122.591920195313,45.5255953193359],[122.63068484375,45.4771834541016],[122.675904570313,45.4581288886719],[122.701607695313,45.4260335517578],[122.731793242188,45.4082900214844],[122.763502226563,45.3949275947266],[122.782896757813,45.3793959785157],[122.791890898438,45.3681648994141],[122.802345,45.3694649482422],[122.812345,45.3682210517578],[122.822345,45.3694649482422],[122.842345,45.3669771552735],[122.867345,45.3700868964844],[122.882345,45.3682210517578],[122.892628203125,45.3695003486329],[122.922061796875,45.3581856513673],[122.932345,45.3594649482422],[122.952345,45.3569771552735],[122.972345,45.3594649482422],[122.987486601563,45.3575814033204],[123.015904570313,45.3695571113281],[123.031793242188,45.3893959785156],[123.082896757813,45.3982900214844],[123.091793242188,45.4093959785157],[123.122896757813,45.4282900214844],[123.131793242188,45.4393959785156],[123.147345,45.443843],[123.191768828125,45.4082680488282],[123.231793242188,45.3582900214844],[123.243023710938,45.3492958808594],[123.241441679688,45.3365785957032],[123.285831328125,45.3010323310547],[123.311793242188,45.2582900214844],[123.330474882813,45.2433303046875],[123.337345,45.203843],[123.282061796875,45.1991243720703],[123.232628203125,45.1785616279297],[123.157999296875,45.1498738837891],[123.013013945313,45.1374983955078],[122.997633085938,45.1547109199219],[122.952628203125,45.1385616279297],[122.795162382813,45.12378440625],[122.763189726563,45.0879994941407],[122.738189726563,45.0656618476563],[122.5751965625,45.0402620673829],[122.486920195313,45.0719368720704],[122.446783476563,45.1168538642579],[122.321822539063,45.1850704169922],[122.3237903125,45.2180843330078],[122.306783476563,45.2332802558594],[122.292628203125,45.2491243720704],[122.272061796875,45.2585616279297],[122.252628203125,45.2691243720703],[122.237345,45.273843],[122.21142703125,45.2779274726563],[122.16326296875,45.2897585273438],[122.137345,45.293843],[122.142154570313,45.3690334296876],[122.172550078125,45.4086708808594],[122.171617460938,45.4321846748047],[122.011041289063,45.4898189521485],[121.987725859375,45.5392244697266],[121.9615246875,45.5887374091798],[121.982535429688,45.5986525703125],[122.000245390625,45.6177669501953],[121.9494934375,45.7136843085938],[121.821011992188,45.7085921455078],[121.80216921875,45.6882552314453],[121.754644804688,45.6901393867187],[121.679625273438,45.7097963691406],[121.652535429688,45.7390334296875],[121.642139921875,45.7486659980469],[121.642960234375,45.7694130683594],[121.69088015625,45.7675136542969],[121.722174101563,45.7890480781251],[121.73927859375,45.7883699775391],[121.747345,45.813843],[121.76298953125,45.8181990791016],[121.779049101563,45.8574391914063],[121.80478640625,45.8773073554688],[121.801549101563,45.899233625],[121.814014921875,45.9198970771485],[121.801646757813,45.9643093085938],[121.7540246875,45.9927913642578],[121.793018828125,46.0163130927734],[121.837345,46.0238430000001],[121.848023710938,46.0083773017578],[121.91326296875,45.9997585273438],[121.922271757813,45.9867055488282]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安图县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.857345,42.723843],[127.8341028125,42.728843],[127.857345,42.733843],[127.857345,42.723843]]],[[[127.857345,42.723843],[127.867345,42.723843],[127.882535429688,42.7190334296875],[127.912994414063,42.7083571601563],[127.932154570313,42.7290334296875],[127.952579375,42.7479579902344],[127.95099734375,42.7878810859375],[128.025709257813,42.757192609375],[128.133629179688,42.761469953125],[128.132139921875,42.7990102363281],[128.167857695313,42.8573476386719],[128.121480742188,42.8720314765626],[128.122550078125,42.8990200019532],[128.082974882813,42.9356911445313],[128.112535429688,42.9786525703125],[128.125553007813,43.0062367988281],[128.11093875,43.0197780585938],[128.075767851563,43.018384015625],[128.062535429688,43.0559877753907],[128.105831328125,43.0696962714844],[128.132476835938,43.0686391425782],[128.182213164063,43.0790468574219],[128.192345,43.0786452460938],[128.218297148438,43.079673078125],[128.232154570313,43.1090334296875],[128.242535429688,43.1186525703125],[128.25216921875,43.129048078125],[128.291461210938,43.1274904609375],[128.308858671875,43.1462697578125],[128.344273710938,43.1275319648438],[128.384556914063,43.1291286445313],[128.502222929688,43.1086403632812],[128.512345,43.1090407539063],[128.522345,43.1086452460938],[128.542799101563,43.1094557929688],[128.603209257813,43.0882826972656],[128.623678007813,43.0890944648438],[128.650850859375,43.1184181953125],[128.672652617188,43.1287062812501],[128.662154570313,43.1586525703125],[128.652535429688,43.1890334296875],[128.642154570313,43.2086525703125],[128.632535429688,43.2414699531251],[128.699039335938,43.2937648750001],[128.750621367188,43.2756850410156],[128.774332304688,43.3124062324219],[128.871016875,43.3354366279297],[128.882496367188,43.359755475586],[128.922535429688,43.3786525703125],[128.9456653125,43.3908913398438],[129.03482546875,43.3873574042969],[129.047345,43.373843],[129.02298953125,43.3550429511719],[129.03662234375,43.3286855292969],[129.093385039063,43.2892104316406],[129.0794153125,43.2536708808594],[129.08423953125,43.2210182929688],[129.06298953125,43.2081996894532],[129.035777617188,43.1970619941407],[129.030670195313,43.1624941230469],[129.066715117188,43.1157936835938],[129.092994414063,43.1196779609376],[129.16271609375,43.1078346992188],[129.187345,43.063843],[129.113170195313,43.0442482734376],[129.13271609375,43.0092153144531],[129.14197390625,42.9817287421875],[128.991168242188,42.9692153144531],[128.992764921875,42.98905784375],[128.989947539063,42.9984706855469],[128.97271609375,42.9784706855469],[128.94197390625,42.9692153144531],[128.937345,42.9438430000001],[128.90013796875,42.9575075507813],[128.881202421875,42.9150807929688],[128.838990507813,42.9305825019532],[128.811178007813,42.9283473945313],[128.812877226563,42.9072243476562],[128.7919153125,42.8891664863281],[128.79310671875,42.8743630195313],[128.816295195313,42.8328041816406],[128.788565703125,42.7992153144532],[128.736221953125,42.8284194160156],[128.69197390625,42.8384706855469],[128.604683867188,42.8623610664063],[128.59271609375,42.8484706855469],[128.57197390625,42.8392153144532],[128.5580871875,42.8230995917969],[128.518980742188,42.7894057441407],[128.532764921875,42.7390456367188],[128.531812773438,42.7272243476563],[128.570709257813,42.6937136054688],[128.58197390625,42.6684706855469],[128.59271609375,42.6592153144531],[128.605401640625,42.6307851386719],[128.590738554688,42.6181508613281],[128.61271609375,42.5992153144532],[128.625592070313,42.5842690253906],[128.620460234375,42.5204018378907],[128.652901640625,42.4789772773438],[128.638765898438,42.4404799628907],[128.67353640625,42.4187001777344],[128.6719153125,42.3985195136719],[128.68271609375,42.3892153144532],[128.69197390625,42.3750612617188],[128.654932890625,42.3431508613281],[128.694342070313,42.3091970039063],[128.665982695313,42.2965419746094],[128.612022734375,42.3008779121094],[128.59271609375,42.2784706855469],[128.5766028125,42.2645864082031],[128.56271609375,42.2484706855469],[128.540416289063,42.2292568183594],[128.390728789063,42.2139870429688],[128.3927746875,42.1885195136719],[128.375738554688,42.1738430000001],[128.444796171875,42.1143459296875],[128.441925078125,42.0786049628906],[128.4565246875,42.038843],[128.447345,42.013843],[128.431119414063,42.0196645332031],[128.392345,42.0173525214844],[128.247345,42.0259950996094],[128.122345,42.0185451484376],[128.08873171875,42.0205483222656],[128.057345,42.013843],[128.031793242188,42.0282900214844],[128.012896757813,42.0793959785156],[127.984781523438,42.1178896308594],[127.962530546875,42.1357057929688],[127.952896757813,42.1693959785157],[127.916612578125,42.1914369941407],[127.902857695313,42.2395290351563],[127.890079375,42.2379396796875],[127.868453398438,42.2649489570312],[127.849249296875,42.2803237128906],[127.832345,42.2782216621095],[127.8141028125,42.2804897285157],[127.802896757813,42.3182839179688],[127.882896757813,42.3282900214844],[127.901793242188,42.3593959785157],[127.942896757813,42.3682900214844],[127.964034453125,42.3946840644532],[128.002896757813,42.4182900214844],[128.011793242188,42.4393959785157],[128.034820585938,42.4709242988281],[128.01545046875,42.5562038398438],[127.951402617188,42.63628440625],[127.954058867188,42.6576271796875],[127.88166140625,42.6783278632813],[127.883023710938,42.6892958808594],[127.862530546875,42.7057057929688],[127.857345,42.723843]]]]}},{"type":"Feature","properties":{"name":"敦化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.462808867188,44.3483803535157],[128.445308867188,44.333843],[128.47166140625,44.3119490791016],[128.451617460938,44.2586006904297],[128.465933867188,44.2467067695313],[128.451710234375,44.208843],[128.457345,44.193843],[128.463472929688,44.1602577949219],[128.52271609375,44.1092147041016],[128.53197390625,44.0884712958985],[128.557901640625,44.0519008613281],[128.585094023438,43.9802431464844],[128.6327746875,43.9391664863282],[128.62884890625,43.8903292060547],[128.652550078125,43.8884249091797],[128.6989075,43.901112897461],[128.751363554688,43.8559200263672],[128.71740359375,43.8266622138672],[128.75490359375,43.7594472480469],[128.71271609375,43.7406221748047],[128.743717070313,43.7277480292969],[128.76373171875,43.7293563056641],[128.78197390625,43.6884712958985],[128.80345828125,43.6499587226563],[128.836021757813,43.5769844794922],[128.85197390625,43.5584712958985],[128.86271609375,43.5492147041016],[128.8740246875,43.5360915351563],[128.935889921875,43.5530239082032],[128.977862578125,43.5296047187501],[129.008990507813,43.5271034980469],[129.04197390625,43.5392147041016],[129.087345,43.543843],[129.092213164063,43.5231655097656],[129.113531523438,43.5100307441406],[129.121158476563,43.4976552558594],[129.1560559375,43.4857619453126],[129.149039335938,43.4632222724609],[129.16431765625,43.4183760810547],[129.207345,43.413843],[129.20326296875,43.3979274726563],[129.178980742188,43.388843],[129.184830351563,43.3627626777344],[129.151007109375,43.3551796699219],[129.100714140625,43.3879274726563],[129.06142703125,43.3797585273438],[129.047345,43.373843],[129.03482546875,43.3873574042969],[128.9456653125,43.3908913398438],[128.922535429688,43.3786525703125],[128.882496367188,43.359755475586],[128.871016875,43.3354366279297],[128.774332304688,43.3124062324219],[128.750621367188,43.2756850410156],[128.699039335938,43.2937648750001],[128.632535429688,43.2414699531251],[128.642154570313,43.2086525703125],[128.652535429688,43.1890334296875],[128.662154570313,43.1586525703125],[128.672652617188,43.1287062812501],[128.650850859375,43.1184181953125],[128.623678007813,43.0890944648438],[128.603209257813,43.0882826972656],[128.542799101563,43.1094557929688],[128.522345,43.1086452460938],[128.512345,43.1090407539063],[128.502222929688,43.1086403632812],[128.384556914063,43.1291286445313],[128.344273710938,43.1275319648438],[128.308858671875,43.1462697578125],[128.291461210938,43.1274904609375],[128.25216921875,43.129048078125],[128.242535429688,43.1186525703125],[128.232154570313,43.1090334296875],[128.218297148438,43.079673078125],[128.192345,43.0786452460938],[128.182213164063,43.0790468574219],[128.132476835938,43.0686391425782],[128.105831328125,43.0696962714844],[128.062535429688,43.0559877753907],[128.075767851563,43.018384015625],[128.11093875,43.0197780585938],[128.125553007813,43.0062367988281],[128.112535429688,42.9786525703125],[128.082974882813,42.9356911445313],[128.122550078125,42.8990200019532],[128.121480742188,42.8720314765626],[128.167857695313,42.8573476386719],[128.132139921875,42.7990102363281],[128.133629179688,42.761469953125],[128.025709257813,42.757192609375],[127.95099734375,42.7878810859375],[127.952579375,42.7479579902344],[127.932154570313,42.7290334296875],[127.912994414063,42.7083571601563],[127.882535429688,42.7190334296875],[127.867345,42.723843],[127.867345,42.733843],[127.857345,42.733843],[127.86547,42.7501845527344],[127.830704375,42.757202375],[127.827345,42.7838430000001],[127.832896757813,42.7882900214844],[127.847100859375,42.8060292792969],[127.831793242188,42.8182900214844],[127.822896757813,42.8293959785157],[127.810533476563,42.8392958808594],[127.814229765625,42.8690151191407],[127.781793242188,42.8782900214844],[127.752589140625,42.8996230292969],[127.712261992188,42.8881081367188],[127.665631132813,42.9060341621094],[127.63537234375,42.9238210273438],[127.62099734375,42.9417690253907],[127.581793242188,42.9582900214844],[127.562896757813,42.9693959785157],[127.51767703125,42.9884511542969],[127.492896757813,43.0193959785157],[127.470479765625,43.028843],[127.473448515625,43.0527150703126],[127.493023710938,43.0683901191406],[127.490479765625,43.0888430000001],[127.493590117188,43.113843],[127.491666289063,43.1293178535157],[127.550123320313,43.1648281074219],[127.561793242188,43.1793959785156],[127.621187773438,43.2154726386719],[127.653077421875,43.2679726386719],[127.651378203125,43.2816091132813],[127.611793242188,43.2982900214844],[127.607345,43.303843],[127.622877226563,43.3172243476563],[127.621832304688,43.3302272773438],[127.664967070313,43.3494747138672],[127.6962121875,43.3857399726563],[127.691539335938,43.4438430000001],[127.695592070313,43.4942836738281],[127.7555090625,43.5123232246094],[127.77197390625,43.5492147041016],[127.78271609375,43.5584712958985],[127.79197390625,43.5692147041016],[127.80271609375,43.5784712958985],[127.81197390625,43.5892147041016],[127.83271609375,43.5984712958985],[127.86197390625,43.6192147041016],[127.8927746875,43.6284889960938],[127.8919153125,43.6391664863282],[127.903526640625,43.6491664863281],[127.900513945313,43.6866036201172],[127.921861601563,43.7248653388672],[127.86197390625,43.7384712958984],[127.845113554688,43.7580397773438],[127.83271609375,43.7992147041016],[127.81197390625,43.8084712958985],[127.80271609375,43.8534169746094],[127.85271609375,43.8684712958985],[127.86197390625,43.8785292792969],[127.771148710938,43.9289296699219],[127.776519804688,43.9957991767578],[127.81271609375,44.0184712958985],[127.85209109375,44.0463881660157],[127.857345,44.063843],[127.912808867188,44.0683803535157],[127.941881132813,44.0793056464844],[128.004327421875,44.0976302314454],[128.052808867188,44.1083803535157],[128.087232695313,44.1331563544922],[128.061798125,44.1684950996094],[128.063004179688,44.1803047919922],[128.082779570313,44.1782888007812],[128.098668242188,44.2324269843751],[128.0532434375,44.2521279121094],[128.095787382813,44.2874678779297],[128.061881132813,44.3083803535157],[128.05107546875,44.3213906074219],[128.0528528125,44.338843],[128.0518371875,44.3488430000001],[128.054410429688,44.3741146064453],[128.081881132813,44.3583803535156],[128.154620390625,44.3475460029297],[128.174659453125,44.3495882392578],[128.211641875,44.4348635078125],[128.242808867188,44.4483803535157],[128.247345,44.453843],[128.278267851563,44.4629177070312],[128.297564726563,44.4861446357422],[128.361202421875,44.5132784248047],[128.381881132813,44.4883803535157],[128.422100859375,44.4709389472657],[128.431881132813,44.4483803535157],[128.453053007813,44.4307942939453],[128.45093875,44.4100307441407],[128.471881132813,44.3734603095704],[128.462808867188,44.3483803535157]]]]}},{"type":"Feature","properties":{"name":"和龙市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.227345,42.303843],[129.208961210938,42.3276601386719],[129.19298953125,42.3096791816407],[129.222535429688,42.2986525703126],[129.201749296875,42.288843],[129.231685820313,42.2747158027344],[129.172535429688,42.2559877753907],[129.182164335938,42.238637921875],[129.202564726563,42.2394460273438],[129.2017590625,42.2190200019532],[129.212808867188,42.2087807441407],[129.192154570313,42.1990334296875],[129.182535429688,42.1886525703126],[129.162139921875,42.1790261054688],[129.162550078125,42.1686574531251],[129.132154570313,42.1590334296875],[129.113053007813,42.1384169746094],[129.0722278125,42.1491139960938],[129.062535429688,42.1386525703125],[129.035362578125,42.1258278632813],[129.022530546875,42.098637921875],[129.00533328125,42.0993190742188],[128.9514465625,42.0864833808594],[128.95287234375,42.0505532050782],[128.93810671875,42.0192690253907],[128.896143828125,42.0176064277344],[128.852486601563,42.0290468574219],[128.832877226563,42.0282692695312],[128.810416289063,42.0401540351563],[128.762877226563,42.0382692695313],[128.736666289063,42.0521388984376],[128.6740246875,42.0090334296875],[128.652154570313,42.0186525703125],[128.633624296875,42.0386525703125],[128.601129179688,42.0287209296875],[128.573678007813,41.9990944648437],[128.562345,41.9986452460938],[128.532345,41.9998342109375],[128.493209257813,41.9982826972657],[128.462535429688,42.0090334296875],[128.447345,42.013843],[128.4565246875,42.038843],[128.441925078125,42.0786049628906],[128.444796171875,42.1143459296875],[128.375738554688,42.1738430000001],[128.3927746875,42.1885195136719],[128.390728789063,42.2139870429688],[128.540416289063,42.2292568183594],[128.56271609375,42.2484706855469],[128.5766028125,42.2645864082031],[128.59271609375,42.2784706855469],[128.612022734375,42.3008779121094],[128.665982695313,42.2965419746094],[128.694342070313,42.3091970039063],[128.654932890625,42.3431508613281],[128.69197390625,42.3750612617188],[128.68271609375,42.3892153144532],[128.6719153125,42.3985195136719],[128.67353640625,42.4187001777344],[128.638765898438,42.4404799628907],[128.652901640625,42.4789772773438],[128.620460234375,42.5204018378907],[128.625592070313,42.5842690253906],[128.61271609375,42.5992153144532],[128.590738554688,42.6181508613281],[128.605401640625,42.6307851386719],[128.59271609375,42.6592153144531],[128.58197390625,42.6684706855469],[128.570709257813,42.6937136054688],[128.531812773438,42.7272243476563],[128.532764921875,42.7390456367188],[128.518980742188,42.7894057441407],[128.5580871875,42.8230995917969],[128.57197390625,42.8392153144532],[128.59271609375,42.8484706855469],[128.604683867188,42.8623610664063],[128.69197390625,42.8384706855469],[128.736221953125,42.8284194160156],[128.788565703125,42.7992153144532],[128.816295195313,42.8328041816406],[128.79310671875,42.8743630195313],[128.7919153125,42.8891664863281],[128.812877226563,42.9072243476562],[128.811178007813,42.9283473945313],[128.838990507813,42.9305825019532],[128.881202421875,42.9150807929688],[128.90013796875,42.9575075507813],[128.937345,42.9438430000001],[128.951793242188,42.9182900214844],[128.989561796875,42.8710634589844],[129.005689726563,42.8146633125001],[129.071168242188,42.76683128125],[129.092345,42.7694643378907],[129.147960234375,42.7625478339844],[129.191793242188,42.7793959785157],[129.222896757813,42.7882900214844],[129.256983671875,42.8013930488281],[129.352896757813,42.7893959785157],[129.361793242188,42.7682900214844],[129.37736453125,42.7558180976562],[129.400850859375,42.7158705878906],[129.404039335938,42.69022971875],[129.391793242188,42.6693959785157],[129.37906375,42.6391872382813],[129.266207304688,42.6227614570313],[129.30107546875,42.59483909375],[129.281666289063,42.5792958808594],[129.284381132813,42.5574843574219],[129.261099882813,42.538843],[129.303697539063,42.5047304511719],[129.301695585938,42.4886257148438],[129.312896757813,42.4493959785157],[129.317345,42.423843],[129.3077746875,42.4169826484376],[129.313482695313,42.38808128125],[129.257447539063,42.3768471503906],[129.241724882813,42.3799538398438],[129.223170195313,42.3540029121094],[129.260250273438,42.3274269843751],[129.227345,42.303843]]]]}},{"type":"Feature","properties":{"name":"龙井市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.357345,42.423843],[129.342345,42.4004128242188],[129.327345,42.423843],[129.337345,42.423843],[129.337345,42.433843],[129.357345,42.423843]]],[[[129.801910429688,42.6865395332032],[129.807345,42.6738430000001],[129.784346953125,42.677895734375],[129.801910429688,42.6865395332032]]],[[[129.357345,42.423843],[129.369713164063,42.4487282539063],[129.342061796875,42.457202375],[129.337345,42.433843],[129.327345,42.433843],[129.327345,42.423843],[129.317345,42.423843],[129.312896757813,42.4493959785157],[129.301695585938,42.4886257148438],[129.303697539063,42.5047304511719],[129.261099882813,42.538843],[129.284381132813,42.5574843574219],[129.281666289063,42.5792958808594],[129.30107546875,42.59483909375],[129.266207304688,42.6227614570313],[129.37906375,42.6391872382813],[129.391793242188,42.6693959785157],[129.404039335938,42.69022971875],[129.400850859375,42.7158705878906],[129.37736453125,42.7558180976562],[129.361793242188,42.7682900214844],[129.352896757813,42.7893959785157],[129.256983671875,42.8013930488281],[129.222896757813,42.7882900214844],[129.191793242188,42.7793959785157],[129.147960234375,42.7625478339844],[129.092345,42.7694643378907],[129.071168242188,42.76683128125],[129.005689726563,42.8146633125001],[128.989561796875,42.8710634589844],[128.951793242188,42.9182900214844],[128.937345,42.9438430000001],[128.94197390625,42.9692153144531],[128.97271609375,42.9784706855469],[128.989947539063,42.9984706855469],[128.992764921875,42.98905784375],[128.991168242188,42.9692153144531],[129.14197390625,42.9817287421875],[129.13271609375,43.0092153144531],[129.113170195313,43.0442482734376],[129.187345,43.063843],[129.19197390625,43.0584706855469],[129.22271609375,43.0492153144531],[129.277178984375,43.0292153144532],[129.301529570313,43.0437221503907],[129.302857695313,43.0602272773437],[129.2541028125,43.0819838691407],[129.251944609375,43.108843],[129.253951445313,43.1338430000001],[129.251168242188,43.1684706855469],[129.27271609375,43.1592153144531],[129.28197390625,43.1484706855469],[129.333345976563,43.116294171875],[129.330386992188,43.0794716621094],[129.34236453125,43.0267494941407],[129.398253203125,42.9785976386719],[129.41271609375,42.9392153144531],[129.42197390625,42.8784706855469],[129.44271609375,42.8692153144532],[129.462301054688,42.8379494453126],[129.5780871875,42.8530995917969],[129.605084257813,42.8844313789063],[129.697345,42.893843],[129.70283328125,42.8778066230469],[129.702242460938,42.8487465644532],[129.712550078125,42.838843],[129.70224734375,42.8289430976563],[129.69244265625,42.8187429023438],[129.672886992188,42.7999538398438],[129.797345,42.7838430000001],[129.792896757813,42.7782900214844],[129.781666289063,42.7692958808594],[129.783316679688,42.7560170722656],[129.758526640625,42.7138430000001],[129.779273710938,42.6785536933594],[129.783214140625,42.6468691230469],[129.747896757813,42.6512624335938],[129.761793242188,42.6182900214844],[129.773590117188,42.608843],[129.761793242188,42.5993959785157],[129.752896757813,42.5882900214844],[129.738272734375,42.5765785957032],[129.743941679688,42.5310048652344],[129.731578398438,42.498843],[129.745577421875,42.4624245429688],[129.701402617188,42.427094953125],[129.672345,42.4307082343751],[129.651939726563,42.4281703925782],[129.608585234375,42.4628444648438],[129.591099882813,42.4488430000001],[129.607100859375,42.4360292792969],[129.592896757813,42.4182900214844],[129.561217070313,42.3929189277344],[129.564141875,42.3693959785157],[129.531793242188,42.3782900214844],[129.522896757813,42.3893959785156],[129.501793242188,42.3982900214844],[129.491978789063,42.4105458808594],[129.442706328125,42.4395095039063],[129.42373171875,42.4371498847657],[129.393995390625,42.4546291328125],[129.382896757813,42.4282900214844],[129.357345,42.423843]],[[129.317345,43.033843],[129.313922148438,43.0460353828125],[129.305152617188,43.0372658515626],[129.317345,43.033843]]]]}},{"type":"Feature","properties":{"name":"图们市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.857345,42.923843],[129.869537382813,42.9204201484376],[129.860767851563,42.9116506171875],[129.857345,42.923843]]],[[[129.90334109375,42.9865688300782],[129.907345,42.963843],[129.894346953125,42.9694045234375],[129.90334109375,42.9865688300782]]],[[[130.187345,43.2038430000001],[130.14197390625,43.1492153144532],[130.1287903125,43.0911806464844],[130.087896757813,43.0729335761719],[130.06271609375,43.0512404609375],[130.07197390625,43.0384706855469],[130.084185820313,43.0279482246094],[130.077345,42.9838430000001],[130.064869414063,42.9676784492188],[129.992379179688,42.9795864082032],[129.953814726563,42.9738881660156],[129.951607695313,42.988843],[129.955943632813,43.0181996894532],[129.8911340625,43.0017104316407],[129.87298953125,42.9781996894532],[129.849034453125,42.9597096992188],[129.857345,42.923843],[129.837281523438,42.9094631171875],[129.84443484375,42.8732607246094],[129.811236601563,42.8494631171876],[129.813331328125,42.838843],[129.803311796875,42.7881179023437],[129.797345,42.7838430000001],[129.672886992188,42.7999538398438],[129.69244265625,42.8187429023438],[129.70224734375,42.8289430976563],[129.712550078125,42.838843],[129.702242460938,42.8487465644532],[129.70283328125,42.8778066230469],[129.697345,42.893843],[129.691900664063,42.9128908515625],[129.646920195313,42.9282900214844],[129.612535429688,42.9080776191406],[129.539254179688,42.9290029121094],[129.543590117188,42.963843],[129.53861453125,43.003843],[129.596129179688,43.0280788398438],[129.58156375,43.0790883613282],[129.607345,43.113843],[129.659327421875,43.118579328125],[129.663331328125,43.1388430000001],[129.658155546875,43.1650502753907],[129.685303984375,43.1704152656251],[129.717086210938,43.1581581855469],[129.744674101563,43.1196681953125],[129.773170195313,43.1280178046875],[129.796314726563,43.1427114082031],[129.852891875,43.153891828125],[129.897345,43.1356240058594],[129.941344023438,43.1537050605469],[129.972345,43.1598305488281],[129.982428007813,43.1578383613282],[130.032261992188,43.1698476386719],[130.05248171875,43.1658510566407],[130.113170195313,43.1780178046875],[130.12404421875,43.2062148261719],[130.147345,43.2108193183594],[130.162345,43.2078554511719],[130.172633085938,43.209887921875],[130.187345,43.2038430000001]]],[[[130.187345,43.2038430000001],[130.187345,43.2138430000001],[130.207345,43.2138430000001],[130.207345,43.2038430000001],[130.187345,43.2038430000001]]]]}},{"type":"Feature","properties":{"name":"汪清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.307345,43.803843],[129.295152617188,43.8072664619141],[129.303922148438,43.8160353828125],[129.307345,43.803843]]],[[[129.307345,43.803843],[129.363546171875,43.7947835517578],[129.392896757813,43.8182900214844],[129.409210234375,43.838657453125],[129.442896757813,43.8482900214844],[129.464610625,43.8754024482422],[129.522379179688,43.8682167792969],[129.602310820313,43.8794692207031],[129.647345,43.8738674140625],[129.697345,43.8800868964844],[129.733370390625,43.8756056953125],[129.731656523438,43.8893672919922],[129.775455351563,43.8988430000001],[129.771666289063,43.9292958808594],[129.783023710938,43.9383901191407],[129.780479765625,43.958843],[129.802896757813,43.9682900214844],[129.8615246875,44.0111135078125],[129.872198515625,43.9977797675782],[129.901954375,44.0195137763672],[129.912418242188,44.018212506836],[129.947345,44.023843],[129.97380984375,44.0088808417969],[130.01537234375,43.9381764960938],[130.006275664063,43.8650460029297],[130.06322390625,43.8315712714844],[130.102896757813,43.8482900214844],[130.111793242188,43.8693959785156],[130.139932890625,43.8812544990235],[130.159146757813,43.9268471503907],[130.19939578125,43.9423195625001],[130.239249296875,43.9373622871094],[130.252896757813,43.9482900214844],[130.274146757813,43.9832747626954],[130.292896757813,43.9982900214844],[130.309576445313,44.0378682685547],[130.357345,44.0438430000001],[130.35271609375,43.9884712958985],[130.327242460938,43.9525453925781],[130.3480871875,43.9345870185547],[130.36197390625,43.9184712958985],[130.372999296875,43.9089736152344],[130.361807890625,43.8889199042969],[130.372882109375,43.8587660957032],[130.361807890625,43.8389199042969],[130.37271609375,43.8092147041016],[130.38197390625,43.7684712958985],[130.414039335938,43.7408437324219],[130.38271609375,43.6847017646485],[130.411729765625,43.6451778388672],[130.480103789063,43.6506716132813],[130.515894804688,43.6307021308594],[130.57486453125,43.6178401923829],[130.592345,43.6192446113282],[130.602345,43.6184413886719],[130.624464140625,43.6202187324219],[130.6218371875,43.5874977851563],[130.729210234375,43.5467507148437],[130.76197390625,43.5284712958985],[130.78271609375,43.5192147041016],[130.79197390625,43.5084712958984],[130.81271609375,43.4992147041016],[130.847471953125,43.4389302802735],[130.897345,43.4338430000001],[130.89298953125,43.4281990791016],[130.86170046875,43.4194869208985],[130.83459109375,43.4031325507813],[130.79263796875,43.4196248603516],[130.777345,43.4173653388672],[130.72490359375,43.4251149726563],[130.68375125,43.393349225586],[130.680206328125,43.369355084961],[130.710557890625,43.3459242988281],[130.713082304688,43.328843],[130.711549101563,43.318452375],[130.724459257813,43.2970522285157],[130.697315703125,43.2761037421875],[130.679932890625,43.1937111640626],[130.609307890625,43.1773464179688],[130.55298953125,43.1994863105469],[130.49170046875,43.2081996894532],[130.47298953125,43.2194863105469],[130.45170046875,43.2281996894531],[130.40220828125,43.2681996894531],[130.318897734375,43.2538283515626],[130.29298953125,43.2381996894531],[130.25170046875,43.2294863105469],[130.22298953125,43.2181996894532],[130.207345,43.2138430000001],[130.187345,43.2138430000001],[130.187345,43.2038430000001],[130.172633085938,43.209887921875],[130.162345,43.2078554511719],[130.147345,43.2108193183594],[130.12404421875,43.2062148261719],[130.113170195313,43.1780178046875],[130.05248171875,43.1658510566407],[130.032261992188,43.1698476386719],[129.982428007813,43.1578383613282],[129.972345,43.1598305488281],[129.941344023438,43.1537050605469],[129.897345,43.1356240058594],[129.852891875,43.153891828125],[129.796314726563,43.1427114082031],[129.773170195313,43.1280178046875],[129.744674101563,43.1196681953125],[129.717086210938,43.1581581855469],[129.685303984375,43.1704152656251],[129.658155546875,43.1650502753907],[129.663331328125,43.1388430000001],[129.659327421875,43.118579328125],[129.607345,43.113843],[129.60197390625,43.1184706855469],[129.56750125,43.1664760566406],[129.53838015625,43.191567609375],[129.502398710938,43.17835471875],[129.46271609375,43.1892153144532],[129.38505984375,43.1993764472656],[129.2917590625,43.2765505195312],[129.292745390625,43.2888430000001],[129.291925078125,43.2990810371094],[129.302882109375,43.3289199042969],[129.291217070313,43.349823834961],[129.2927746875,43.369189069336],[129.27197390625,43.3784712958985],[129.26271609375,43.3992147041016],[129.22197390625,43.4084712958985],[129.207345,43.413843],[129.16431765625,43.4183760810547],[129.149039335938,43.4632222724609],[129.1560559375,43.4857619453126],[129.121158476563,43.4976552558594],[129.113531523438,43.5100307441406],[129.092213164063,43.5231655097656],[129.087345,43.543843],[129.091793242188,43.5493959785157],[129.13468875,43.5616609931641],[129.162706328125,43.5581764960938],[129.218985625,43.5912587714844],[129.231793242188,43.6142659736328],[129.211793242188,43.6482900214844],[129.202896757813,43.6742659736329],[129.22322390625,43.7088430000001],[129.211676054688,43.7284828925782],[129.212965117188,43.7388430000001],[129.207139921875,43.7856728339844],[129.232432890625,43.8059261298828],[129.265777617188,43.8182900214844],[129.281793242188,43.7982900214844],[129.295777617188,43.7893959785156],[129.307345,43.803843]]]]}},{"type":"Feature","properties":{"name":"延吉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.313922148438,43.0460353828125],[129.317345,43.033843],[129.305152617188,43.0372658515626],[129.313922148438,43.0460353828125]]],[[[129.2927746875,43.369189069336],[129.291217070313,43.349823834961],[129.302882109375,43.3289199042969],[129.291925078125,43.2990810371094],[129.292745390625,43.2888430000001],[129.2917590625,43.2765505195312],[129.38505984375,43.1993764472656],[129.46271609375,43.1892153144532],[129.502398710938,43.17835471875],[129.53838015625,43.191567609375],[129.56750125,43.1664760566406],[129.60197390625,43.1184706855469],[129.607345,43.113843],[129.58156375,43.0790883613282],[129.596129179688,43.0280788398438],[129.53861453125,43.003843],[129.543590117188,42.963843],[129.539254179688,42.9290029121094],[129.612535429688,42.9080776191406],[129.646920195313,42.9282900214844],[129.691900664063,42.9128908515625],[129.697345,42.893843],[129.605084257813,42.8844313789063],[129.5780871875,42.8530995917969],[129.462301054688,42.8379494453126],[129.44271609375,42.8692153144532],[129.42197390625,42.8784706855469],[129.41271609375,42.9392153144531],[129.398253203125,42.9785976386719],[129.34236453125,43.0267494941407],[129.330386992188,43.0794716621094],[129.333345976563,43.116294171875],[129.28197390625,43.1484706855469],[129.27271609375,43.1592153144531],[129.251168242188,43.1684706855469],[129.253951445313,43.1338430000001],[129.251944609375,43.108843],[129.2541028125,43.0819838691407],[129.302857695313,43.0602272773437],[129.301529570313,43.0437221503907],[129.277178984375,43.0292153144532],[129.22271609375,43.0492153144531],[129.19197390625,43.0584706855469],[129.187345,43.063843],[129.16271609375,43.1078346992188],[129.092994414063,43.1196779609376],[129.066715117188,43.1157936835938],[129.030670195313,43.1624941230469],[129.035777617188,43.1970619941407],[129.06298953125,43.2081996894532],[129.08423953125,43.2210182929688],[129.0794153125,43.2536708808594],[129.093385039063,43.2892104316406],[129.03662234375,43.3286855292969],[129.02298953125,43.3550429511719],[129.047345,43.373843],[129.06142703125,43.3797585273438],[129.100714140625,43.3879274726563],[129.151007109375,43.3551796699219],[129.184830351563,43.3627626777344],[129.178980742188,43.388843],[129.20326296875,43.3979274726563],[129.207345,43.413843],[129.22197390625,43.4084712958985],[129.26271609375,43.3992147041016],[129.27197390625,43.3784712958985],[129.2927746875,43.369189069336]]]]}},{"type":"Feature","properties":{"name":"珲春市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.587345,42.4838430000001],[130.595557890625,42.4781728339844],[130.591124296875,42.4583962226563],[130.609771757813,42.4297585273438],[130.56326296875,42.4396681953125],[130.57142703125,42.4597585273438],[130.587345,42.4838430000001]]],[[[130.587345,42.4838430000001],[130.554664335938,42.4882155585938],[130.546763945313,42.5073830390625],[130.582603789063,42.4924892402344],[130.587345,42.4838430000001]]],[[[131.112808867188,43.4393056464844],[131.126861601563,43.422387921875],[131.172081328125,43.4393794990235],[131.182667265625,43.438300397461],[131.201881132813,43.4493056464844],[131.222808867188,43.4583803535157],[131.233516875,43.4712715888672],[131.289058867188,43.465610578125],[131.297345,43.493843],[131.31599734375,43.488227765625],[131.30271609375,43.4584712958985],[131.288975859375,43.4338430000001],[131.31197390625,43.3926247382813],[131.292642851563,43.3784169746094],[131.273131132813,43.3799849677734],[131.26197390625,43.3392147041016],[131.249654570313,43.2716786933594],[131.19271609375,43.2226247382813],[131.20197390625,43.198470685547],[131.214190703125,43.1765761542969],[131.201593046875,43.134731671875],[131.161812773438,43.1004616523438],[131.164400664063,43.06827659375],[131.135211210938,43.0706215644532],[131.115689726563,43.0538027167969],[131.099273710938,43.0243752265625],[131.11197390625,42.9684706855469],[131.14197390625,42.9550844550782],[131.130079375,42.9337380195313],[131.100103789063,42.9170143867188],[131.067345,42.9196462226563],[131.052345,42.9184413886719],[131.01297,42.9216054511719],[131.011773710938,42.9067494941406],[131.03673953125,42.8620082832032],[130.975699492188,42.8571034980469],[130.932345,42.8730239082032],[130.881636992188,42.8544020820312],[130.818428984375,42.881020734375],[130.78505984375,42.8661293769532],[130.771998320313,42.8368617988281],[130.737345,42.8396462226562],[130.717345,42.8380397773437],[130.65880984375,42.8427431464844],[130.59271609375,42.8184706855469],[130.5574621875,42.8078566718751],[130.518951445313,42.7863686347657],[130.46197390625,42.7692153144532],[130.45271609375,42.7584706855469],[130.41373171875,42.7410744453125],[130.411485625,42.7131508613282],[130.44271609375,42.6992153144531],[130.462066679688,42.6884194160157],[130.472345,42.6892446113281],[130.482550078125,42.6884255195313],[130.527139921875,42.7006288886719],[130.566793242188,42.6829335761719],[130.58271609375,42.6692153144531],[130.60197390625,42.6384706855469],[130.620870390625,42.6221901679688],[130.62400515625,42.5831801582032],[130.60271609375,42.5584706855469],[130.563370390625,42.5466249824219],[130.561944609375,42.5288430000001],[130.563521757813,42.5092153144531],[130.55197390625,42.5184706855469],[130.54271609375,42.5292153144532],[130.524683867188,42.5447524238282],[130.521539335938,42.583843],[130.523453398438,42.6076454902344],[130.486124296875,42.628470685547],[130.463116484375,42.6134218574219],[130.461217070313,42.5898232246094],[130.48197390625,42.5526247382813],[130.444874296875,42.5473574042969],[130.41740359375,42.5710243964844],[130.439967070313,42.6114638496094],[130.383316679688,42.6069118476563],[130.36572390625,42.6273317695313],[130.32295046875,42.6541225410157],[130.284967070313,42.6982106757812],[130.242896757813,42.7169838691407],[130.241138945313,42.738843],[130.243150664063,42.763843],[130.2419153125,42.7791664863281],[130.252999296875,42.7887123847657],[130.236187773438,42.818843],[130.262916289063,42.8667494941406],[130.261539335938,42.883843],[130.26312625,42.9035573554687],[130.177345,42.9104494453126],[130.126065703125,42.9063295722657],[130.10271609375,42.9264455390625],[130.11213015625,42.9292617011719],[130.131851835938,42.9276772285157],[130.1327746875,42.9391664863282],[130.120738554688,42.9495351386719],[130.15197390625,42.9764455390626],[130.14255984375,42.9792617011719],[130.1323059375,42.9784377265625],[130.077345,42.9838430000001],[130.084185820313,43.0279482246094],[130.07197390625,43.0384706855469],[130.06271609375,43.0512404609375],[130.087896757813,43.0729335761719],[130.1287903125,43.0911806464844],[130.14197390625,43.1492153144532],[130.187345,43.2038430000001],[130.207345,43.2038430000001],[130.207345,43.2138430000001],[130.22298953125,43.2181996894532],[130.25170046875,43.2294863105469],[130.29298953125,43.2381996894531],[130.318897734375,43.2538283515626],[130.40220828125,43.2681996894531],[130.45170046875,43.2281996894531],[130.47298953125,43.2194863105469],[130.49170046875,43.2081996894532],[130.55298953125,43.1994863105469],[130.609307890625,43.1773464179688],[130.679932890625,43.1937111640626],[130.697315703125,43.2761037421875],[130.724459257813,43.2970522285157],[130.711549101563,43.318452375],[130.713082304688,43.328843],[130.710557890625,43.3459242988281],[130.680206328125,43.369355084961],[130.68375125,43.393349225586],[130.72490359375,43.4251149726563],[130.777345,43.4173653388672],[130.79263796875,43.4196248603516],[130.83459109375,43.4031325507813],[130.86170046875,43.4194869208985],[130.89298953125,43.4281990791016],[130.897345,43.4338430000001],[130.902808867188,43.4383803535156],[130.931090117188,43.472426984375],[131.012408476563,43.5083803535157],[131.081881132813,43.4583803535157],[131.112808867188,43.4393056464844]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"道外区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.85170046875,45.8681990791016],[126.893468046875,45.8511055732422],[126.887345,45.813843],[126.875250273438,45.8054921699219],[126.883468046875,45.768843],[126.87896609375,45.7487709785157],[126.845811796875,45.7258803535156],[126.772393828125,45.7601638007813],[126.742139921875,45.7474568916016],[126.717345,45.7638430000001],[126.70189578125,45.7561635566406],[126.667652617188,45.7860024238281],[126.643985625,45.767202375],[126.627345,45.7638430000001],[126.617345,45.783843],[126.702379179688,45.8158779121094],[126.707345,45.853843],[126.707345,45.863843],[126.697345,45.863843],[126.703155546875,45.8980348945312],[126.76298953125,45.9081990791016],[126.78170046875,45.9194869208984],[126.797345,45.923843],[126.816666289063,45.8893337226563],[126.85170046875,45.8681990791016]]]]}},{"type":"Feature","properties":{"name":"阿城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,45.2638430000001],[127.163922148438,45.2516506171876],[127.155152617188,45.2604195380859],[127.167345,45.2638430000001]]],[[[126.827345,45.663843],[126.830767851563,45.6760353828125],[126.839537382813,45.6672664619141],[126.827345,45.663843]]],[[[127.167345,45.2638430000001],[127.162701445313,45.2792732978516],[127.123961210938,45.2761605048829],[127.111300078125,45.2908577705079],[127.113560820313,45.3189607978516],[127.08197390625,45.3284712958985],[127.07271609375,45.3392147041016],[127.04197390625,45.3484712958985],[127.03271609375,45.3592147041016],[127.015211210938,45.374296491211],[126.916597929688,45.3663722968751],[126.839859648438,45.429848859375],[126.822345,45.4284413886719],[126.812345,45.4292446113281],[126.802345,45.4284413886719],[126.734425078125,45.4338985419922],[126.707345,45.443843],[126.693985625,45.4704836250001],[126.66841921875,45.4998244453125],[126.693985625,45.507202375],[126.709879179688,45.5386232734375],[126.697345,45.563843],[126.75654421875,45.5979750800782],[126.767345,45.633843],[126.79388796875,45.6234090400391],[126.788878203125,45.6573085761719],[126.827345,45.663843],[126.842711210938,45.640732038086],[126.871339140625,45.6598494697266],[126.893350859375,45.6678365302734],[126.931339140625,45.6998494697266],[126.962843046875,45.7112813544922],[127.001339140625,45.7574080634766],[126.961588164063,45.7473928046875],[126.943350859375,45.7798494697266],[126.92533328125,45.7918306708985],[126.913350859375,45.8098494697266],[126.887345,45.813843],[126.893468046875,45.8511055732422],[126.85170046875,45.8681990791016],[126.816666289063,45.8893337226563],[126.797345,45.923843],[126.81142703125,45.9497585273438],[126.84326296875,45.9579274726562],[126.880816679688,45.9870357490235],[126.92326296875,45.9979274726562],[126.927345,46.003843],[126.942535429688,45.9990334296875],[126.973326445313,45.9513497138672],[127.022154570313,45.8986525703125],[127.037725859375,45.8842244697266],[127.059859648438,45.8603340888672],[127.102535429688,45.8290334296876],[127.112154570313,45.7986525703125],[127.136846953125,45.7869985175782],[127.172432890625,45.6745943427735],[127.232218046875,45.5985695625001],[127.295220976563,45.6150777412109],[127.312535429688,45.5990334296876],[127.342784453125,45.5577913642579],[127.49963015625,45.5166939521485],[127.512535429688,45.5286525703125],[127.531011992188,45.5485921455078],[127.542511015625,45.5490474677735],[127.565592070313,45.5368331123048],[127.6366028125,45.555439069336],[127.647345,45.543843],[127.631300078125,45.5188631416015],[127.65170046875,45.4850429511719],[127.64298953125,45.4681990791016],[127.629049101563,45.4574391914062],[127.61298953125,45.4181990791016],[127.60170046875,45.4094869208985],[127.586265898438,45.3894869208985],[127.54170046875,45.3981990791016],[127.514952421875,45.4143349433594],[127.474620390625,45.35993675],[127.494327421875,45.3272658515626],[127.49156375,45.3085512519532],[127.506485625,45.2705940986328],[127.417061796875,45.3057485175782],[127.411607695313,45.2688430000001],[127.41677859375,45.233843],[127.37298953125,45.2159206367188],[127.38170046875,45.2081990791016],[127.4101965625,45.1965364814453],[127.397345,45.163843],[127.381065703125,45.1675649238282],[127.356339140625,45.1853652167969],[127.327345,45.1754091621094],[127.292345,45.1874282050781],[127.262345,45.1771260810548],[127.245191679688,45.1830159736329],[127.255777617188,45.213843],[127.24615359375,45.2418685126953],[127.224766875,45.2345235419922],[127.193624296875,45.2601210761719],[127.167345,45.2638430000001]]]]}},{"type":"Feature","properties":{"name":"巴彦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,46.4438430000001],[126.830767851563,46.4316506171876],[126.839537382813,46.4404195380859],[126.850728789063,46.4764681220703],[126.897276640625,46.5060201240235],[126.983170195313,46.5280178046875],[127.001519804688,46.5396681953126],[127.023170195313,46.5480178046876],[127.031519804688,46.5596681953125],[127.043170195313,46.5680178046875],[127.054918242188,46.5844118476563],[127.087345,46.5908193183594],[127.102779570313,46.5877693916016],[127.121519804688,46.5996681953125],[127.143170195313,46.6080178046875],[127.181710234375,46.6398256660156],[127.242345,46.6518068671875],[127.269386015625,46.6464632392579],[127.301519804688,46.6596681953125],[127.317345,46.663843],[127.337515898438,46.6717732978516],[127.367345,46.6673653388672],[127.385484648438,46.6700460029297],[127.42170046875,46.6481990791016],[127.482608671875,46.6232704902344],[127.503140898438,46.589233625],[127.500128203125,46.5688430000001],[127.503082304688,46.548843],[127.500299101563,46.5300038886719],[127.585426054688,46.513637921875],[127.625343046875,46.5377169013672],[127.647345,46.543843],[127.640928984375,46.5285707832031],[127.665318632813,46.4971041083985],[127.660714140625,46.4765657783203],[127.67142703125,46.4479274726563],[127.699488554688,46.4117244697266],[127.65547,46.3463564277344],[127.607823515625,46.3134615302735],[127.629224882813,46.2805971503906],[127.61326296875,46.2379274726563],[127.60142703125,46.2197585273438],[127.589176054688,46.1870119453125],[127.560347929688,46.142743756836],[127.56361453125,46.1281728339844],[127.529874296875,46.1048744941407],[127.534586210938,46.083843],[127.53107546875,46.0681728339844],[127.556827421875,46.0503908515625],[127.53326296875,46.0341188789063],[127.54142703125,46.0179274726563],[127.547345,46.013843],[127.551881132813,45.9983803535156],[127.564381132813,45.9879964423828],[127.541881132813,45.9693056464844],[127.527662382813,45.9365126777344],[127.457218046875,45.9168172431641],[127.39806765625,45.9228469062501],[127.357857695313,45.8998183417969],[127.36377078125,45.9578517890625],[127.322808867188,45.9693056464844],[127.297345,45.973843],[127.2886340625,46.0051302314454],[127.2660559375,46.0225557685547],[127.2486340625,46.0451302314454],[127.23170046875,46.0581990791016],[127.22298953125,46.0694869208984],[127.21170046875,46.0781990791016],[127.1986340625,46.0951302314453],[127.15373171875,46.1297872138672],[127.142345,46.1281038642579],[127.104386015625,46.1337136054688],[127.08298953125,46.1694869208985],[127.049303007813,46.1954866767578],[127.017218046875,46.2491384101562],[127.02375125,46.293349225586],[127.064761992188,46.325005109375],[127.08170046875,46.3727620673829],[127.061529570313,46.3883309150391],[127.064390898438,46.4076998115235],[127.056143828125,46.4181990791016],[127.02298953125,46.3981990791016],[126.971344023438,46.3838185859375],[126.932135039063,46.3896132636719],[126.892554960938,46.3780727363282],[126.872345,46.381059796875],[126.835240507813,46.3755763984376],[126.8027746875,46.3996456123047],[126.76490359375,46.3940492988282],[126.757345,46.403843],[126.76271609375,46.4084712958984],[126.77197390625,46.4192147041016],[126.827345,46.4438430000001]]]]}},{"type":"Feature","properties":{"name":"宾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.157432890625,45.9847408271484],[127.202345,45.9781038642579],[127.263511992188,45.9871431708985],[127.297345,45.973843],[127.322808867188,45.9693056464844],[127.36377078125,45.9578517890625],[127.357857695313,45.8998183417969],[127.39806765625,45.9228469062501],[127.457218046875,45.9168172431641],[127.527662382813,45.9365126777344],[127.541881132813,45.9693056464844],[127.564381132813,45.9879964423828],[127.551881132813,45.9983803535156],[127.547345,46.013843],[127.6025403125,46.0191701484375],[127.626070585938,46.0063832832032],[127.690050078125,46.010196149414],[127.70656375,45.9392110419923],[127.783111601563,45.9666756416016],[127.780474882813,45.9224733710938],[127.908140898438,45.9300826240235],[127.977808867188,45.9151973701172],[128.012891875,45.9397042060547],[128.046886015625,45.9376784492188],[128.113258085938,45.9016115546876],[128.16755984375,45.9210964179688],[128.243970976563,45.9388747382813],[128.257345,45.9538430000001],[128.267345,45.9538430000001],[128.284215117188,45.9421938300781],[128.278980742188,45.9188430000001],[128.317003203125,45.9046169257813],[128.311221953125,45.8788430000001],[128.31720828125,45.8521480537109],[128.280533476563,45.8603700996094],[128.271221953125,45.818843],[128.275557890625,45.7995131660156],[128.255513945313,45.7856740546875],[128.247345,45.753843],[128.224351835938,45.7496456123047],[128.237345,45.743843],[128.24322390625,45.72855003125],[128.2191809375,45.7092958808594],[128.225089140625,45.6617757392579],[128.176202421875,45.6477980781251],[128.206832304688,45.5956911445313],[128.1879309375,45.5720864082031],[128.137735625,45.5913796210938],[128.112310820313,45.5882167792969],[128.022916289063,45.6008010078125],[128.012896757813,45.5882900214844],[127.981793242188,45.5793959785156],[127.932608671875,45.5481044746094],[127.907345,45.553843],[127.8523840625,45.559247663086],[127.842066679688,45.5584188056641],[127.805943632813,45.5785744453125],[127.756104765625,45.5884712958985],[127.737369414063,45.5464888740235],[127.694556914063,45.5622121406251],[127.673765898438,45.5380800605469],[127.647345,45.543843],[127.6366028125,45.555439069336],[127.565592070313,45.5368331123048],[127.542511015625,45.5490474677735],[127.531011992188,45.5485921455078],[127.512535429688,45.5286525703125],[127.49963015625,45.5166939521485],[127.342784453125,45.5577913642579],[127.312535429688,45.5990334296876],[127.295220976563,45.6150777412109],[127.232218046875,45.5985695625001],[127.172432890625,45.6745943427735],[127.136846953125,45.7869985175782],[127.112154570313,45.7986525703125],[127.102535429688,45.8290334296876],[127.059859648438,45.8603340888672],[127.037725859375,45.8842244697266],[127.022154570313,45.8986525703125],[126.973326445313,45.9513497138672],[126.942535429688,45.9990334296875],[126.927345,46.003843],[126.940113554688,46.0203853583985],[127.04189578125,46.0354262519531],[127.121646757813,46.0063271308594],[127.157432890625,45.9847408271484]]],[[[127.583922148438,46.0360353828125],[127.587345,46.0238430000001],[127.575152617188,46.0272664619141],[127.583922148438,46.0360353828125]]]]}},{"type":"Feature","properties":{"name":"道里区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.627345,45.7638430000001],[126.609195585938,45.7419930244141],[126.57095828125,45.7102303291016],[126.545045195313,45.6790377021484],[126.492808867188,45.6637081123047],[126.501881132813,45.6383803535157],[126.5214465625,45.6221279121094],[126.491881132813,45.6093056464844],[126.447345,45.5738430000001],[126.43142703125,45.5779274726562],[126.404176054688,45.5956740546875],[126.349635039063,45.6160817695313],[126.286705351563,45.6019741035157],[126.252623320313,45.5876595283203],[126.23037234375,45.5926479316406],[126.234991484375,45.5720394111328],[126.162359648438,45.5465792060548],[126.148492460938,45.5666628242187],[126.153468046875,45.588843],[126.15107546875,45.5995131660157],[126.16326296875,45.6079274726563],[126.17142703125,45.6272139716797],[126.15142703125,45.6579274726563],[126.147345,45.673843],[126.152603789063,45.7063759589844],[126.186099882813,45.6851119208985],[126.235045195313,45.7052254462891],[126.300557890625,45.6922798896485],[126.291226835938,45.7395107246094],[126.307183867188,45.7480178046876],[126.322965117188,45.726001203125],[126.348121367188,45.73097190625],[126.357345,45.743843],[126.389049101563,45.7299398017578],[126.453443632813,45.7377461982423],[126.471886015625,45.7503768134766],[126.506011992188,45.7407863593751],[126.498804960938,45.7664430976563],[126.519893828125,45.7723696113282],[126.54591921875,45.7545479560547],[126.583443632813,45.7677461982422],[126.601246367188,45.7799398017579],[126.617345,45.783843],[126.627345,45.7638430000001]]]]}},{"type":"Feature","properties":{"name":"方正县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.247345,45.753843],[128.247345,45.743843],[128.237345,45.743843],[128.224351835938,45.7496456123047],[128.247345,45.753843]]],[[[128.247345,45.753843],[128.255513945313,45.7856740546875],[128.275557890625,45.7995131660156],[128.271221953125,45.818843],[128.280533476563,45.8603700996094],[128.31720828125,45.8521480537109],[128.311221953125,45.8788430000001],[128.317003203125,45.9046169257813],[128.278980742188,45.9188430000001],[128.284215117188,45.9421938300781],[128.267345,45.9538430000001],[128.276261015625,45.9649764228516],[128.3292590625,45.9715688300781],[128.412896757813,45.9593959785157],[128.505616484375,45.9165212226563],[128.632945585938,45.900683209961],[128.681793242188,45.9293959785156],[128.713453398438,45.9427370429688],[128.764757109375,45.9728963447266],[128.802345,45.9682210517579],[128.835181914063,45.9723055244141],[128.872896757813,45.9493959785157],[128.886236601563,45.9327370429688],[128.90334109375,45.9190419746094],[128.882896757813,45.8842659736329],[128.93123171875,45.8768392158203],[128.957345,45.8800868964844],[128.990987578125,45.8759023261719],[129.022799101563,45.9156276679688],[129.09982546875,45.9060463691407],[129.131793242188,45.9293959785156],[129.209849882813,45.9768086982422],[129.251236601563,46.0449489570313],[129.300142851563,46.0655568671875],[129.3132825,46.1262807441407],[129.331793242188,46.1493959785156],[129.337345,46.153843],[129.371417265625,46.1345803046875],[129.381793242188,46.0982900214844],[129.407432890625,46.0631899238282],[129.422965117188,45.9388442207032],[129.416754179688,45.888886334961],[129.461275664063,45.8627150703126],[129.512125273438,45.8481941962891],[129.522506132813,45.8494850898438],[129.547345,45.843843],[129.55603640625,45.8212288642578],[129.502896757813,45.7982900214844],[129.461793242188,45.7893959785157],[129.452345,45.7669771552735],[129.399898710938,45.7735005927735],[129.404254179688,45.7384871650391],[129.330611601563,45.72776878125],[129.336632109375,45.6793581367188],[129.2992590625,45.668671491211],[129.302984648438,45.638681256836],[129.297345,45.6138430000001],[129.259288359375,45.6200948310547],[129.218800078125,45.5956722236328],[129.170679960938,45.6027834296875],[129.142735625,45.6196395087891],[129.132345,45.6181038642578],[129.103883085938,45.6223104072266],[129.084322539063,45.5969704414063],[129.097345,45.563843],[129.077345,45.553843],[129.067345,45.553843],[129.06298953125,45.5594869208985],[129.009771757813,45.5812679267578],[128.933189726563,45.6274623847656],[128.83298953125,45.6081990791016],[128.769361601563,45.5994869208985],[128.75298953125,45.6394869208985],[128.74170046875,45.6481990791016],[128.732413359375,45.692212140625],[128.71170046875,45.7081990791016],[128.674625273438,45.7562319160157],[128.65298953125,45.7281990791016],[128.64170046875,45.7194869208985],[128.62298953125,45.6681990791016],[128.548424101563,45.6594869208985],[128.530670195313,45.6824935126953],[128.533082304688,45.698843],[128.529215117188,45.7250319648438],[128.45170046875,45.7381990791016],[128.408975859375,45.75499534375],[128.342345,45.7451485419922],[128.312345,45.7495821357422],[128.291783476563,45.7465431953125],[128.247345,45.753843]]]]}},{"type":"Feature","properties":{"name":"呼兰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.697345,45.863843],[126.707345,45.863843],[126.707345,45.853843],[126.697345,45.853843],[126.697345,45.863843]]],[[[126.417345,46.073843],[126.377345,46.073843],[126.377345,46.083843],[126.417345,46.083843],[126.417345,46.073843]]],[[[126.697345,45.863843],[126.681842070313,45.8703548408203],[126.67326296875,45.8579274726563],[126.651705351563,45.8430446601563],[126.631676054688,45.8720552802735],[126.612066679688,45.8676595283203],[126.5820715625,45.8802571845703],[126.55326296875,45.8579274726563],[126.51713015625,45.8444075751954],[126.477725859375,45.8532411933594],[126.49033328125,45.9094771552734],[126.539176054688,45.9220119453125],[126.55142703125,45.9397585273438],[126.595225859375,45.9509975410156],[126.590079375,45.9739400458984],[126.558995390625,45.9669710517578],[126.547345,45.9838430000001],[126.559537382813,45.9872664619141],[126.550767851563,45.9960353828125],[126.547345,45.9838430000001],[126.529390898438,45.9977022529297],[126.545738554688,46.0103231025391],[126.45170046875,46.0481990791016],[126.447345,46.053843],[126.459537382813,46.0572664619141],[126.450767851563,46.0660353828125],[126.447345,46.053843],[126.440704375,46.0572023750001],[126.427345,46.083843],[126.45197390625,46.1392147041016],[126.509986601563,46.1808711982422],[126.596051054688,46.2135311103516],[126.6166028125,46.2595870185547],[126.634400664063,46.2914907050782],[126.627345,46.323843],[126.63298953125,46.3281990791016],[126.641832304688,46.339657819336],[126.652857695313,46.3380281806641],[126.66170046875,46.3494869208985],[126.67298953125,46.3581990791016],[126.686988554688,46.3763368964844],[126.735611601563,46.4123867011719],[126.757345,46.403843],[126.76490359375,46.3940492988282],[126.8027746875,46.3996456123047],[126.835240507813,46.3755763984376],[126.872345,46.381059796875],[126.892554960938,46.3780727363282],[126.932135039063,46.3896132636719],[126.971344023438,46.3838185859375],[127.02298953125,46.3981990791016],[127.056143828125,46.4181990791016],[127.064390898438,46.4076998115235],[127.061529570313,46.3883309150391],[127.08170046875,46.3727620673829],[127.064761992188,46.325005109375],[127.02375125,46.293349225586],[127.017218046875,46.2491384101562],[127.049303007813,46.1954866767578],[127.08298953125,46.1694869208985],[127.104386015625,46.1337136054688],[127.142345,46.1281038642579],[127.15373171875,46.1297872138672],[127.1986340625,46.0951302314453],[127.21170046875,46.0781990791016],[127.22298953125,46.0694869208984],[127.23170046875,46.0581990791016],[127.2486340625,46.0451302314454],[127.2660559375,46.0225557685547],[127.2886340625,46.0051302314454],[127.297345,45.973843],[127.263511992188,45.9871431708985],[127.202345,45.9781038642579],[127.157432890625,45.9847408271484],[127.121646757813,46.0063271308594],[127.04189578125,46.0354262519531],[126.940113554688,46.0203853583985],[126.927345,46.003843],[126.92326296875,45.9979274726562],[126.880816679688,45.9870357490235],[126.84326296875,45.9579274726562],[126.81142703125,45.9497585273438],[126.797345,45.923843],[126.78170046875,45.9194869208984],[126.76298953125,45.9081990791016],[126.703155546875,45.8980348945312],[126.697345,45.863843]]]]}},{"type":"Feature","properties":{"name":"木兰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.808385039063,46.6050295234375],[127.830079375,46.5779396796875],[127.8484778125,46.5802278876953],[127.926871367188,46.568817975586],[127.977061796875,46.5393129707032],[128.022896757813,46.5293959785157],[128.100943632813,46.4993959785156],[128.113023710938,46.5083834052735],[128.110889921875,46.5255519843751],[128.14896609375,46.5302889228516],[128.177345,46.5238430000001],[128.164322539063,46.4928353095704],[128.188985625,46.4758046699219],[128.204801054688,46.4247933173829],[128.195592070313,46.3837197089844],[128.232345,46.3754805732422],[128.263487578125,46.3824611640625],[128.31142703125,46.3550960517578],[128.30326296875,46.3379274726562],[128.29142703125,46.3297585273438],[128.27326296875,46.2979274726563],[128.25490359375,46.2852523017579],[128.247193632813,46.2508534980469],[128.264483671875,46.2389150214844],[128.275377226563,46.190312116211],[128.260538359375,46.1506502509766],[128.23142703125,46.1397585273438],[128.22326296875,46.1279274726563],[128.20142703125,46.1197585273437],[128.187432890625,46.0994893623047],[128.146568632813,46.0841982246094],[128.177447539063,46.0443569160156],[128.148521757813,45.9999355292969],[128.16326296875,45.9897585273438],[128.17201296875,45.9770833564453],[128.20142703125,45.9579274726562],[128.257345,45.9538430000001],[128.243970976563,45.9388747382813],[128.16755984375,45.9210964179688],[128.113258085938,45.9016115546876],[128.046886015625,45.9376784492188],[128.012891875,45.9397042060547],[127.977808867188,45.9151973701172],[127.908140898438,45.9300826240235],[127.780474882813,45.9224733710938],[127.783111601563,45.9666756416016],[127.70656375,45.9392110419923],[127.690050078125,46.010196149414],[127.626070585938,46.0063832832032],[127.6025403125,46.0191701484375],[127.547345,46.013843],[127.54142703125,46.0179274726563],[127.53326296875,46.0341188789063],[127.556827421875,46.0503908515625],[127.53107546875,46.0681728339844],[127.534586210938,46.083843],[127.529874296875,46.1048744941407],[127.56361453125,46.1281728339844],[127.560347929688,46.142743756836],[127.589176054688,46.1870119453125],[127.60142703125,46.2197585273438],[127.61326296875,46.2379274726563],[127.629224882813,46.2805971503906],[127.607823515625,46.3134615302735],[127.65547,46.3463564277344],[127.699488554688,46.4117244697266],[127.67142703125,46.4479274726563],[127.660714140625,46.4765657783203],[127.665318632813,46.4971041083985],[127.640928984375,46.5285707832031],[127.647345,46.543843],[127.652896757813,46.5482900214844],[127.662799101563,46.5606526923829],[127.699210234375,46.5561232734375],[127.721983671875,46.5695095039062],[127.737486601563,46.5675814033204],[127.762896757813,46.5782900214844],[127.808385039063,46.6050295234375]],[[127.575152617188,46.0272664619141],[127.587345,46.0238430000001],[127.583922148438,46.0360353828125],[127.575152617188,46.0272664619141]]]]}},{"type":"Feature","properties":{"name":"南岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.667652617188,45.7860024238281],[126.70189578125,45.7561635566406],[126.717345,45.7638430000001],[126.711041289063,45.7417903876954],[126.682345,45.7382210517579],[126.672345,45.7394649482422],[126.662345,45.7382210517579],[126.645440703125,45.7403237128906],[126.629659453125,45.7276869941407],[126.64435671875,45.6629836250001],[126.592564726563,45.6481941962891],[126.574425078125,45.6504500556641],[126.567345,45.593843],[126.570704375,45.567202375],[126.577345,45.553843],[126.560753203125,45.5298116279298],[126.51326296875,45.5497585273437],[126.457955351563,45.5584749580078],[126.447345,45.5738430000001],[126.491881132813,45.6093056464844],[126.5214465625,45.6221279121094],[126.501881132813,45.6383803535157],[126.492808867188,45.6637081123047],[126.545045195313,45.6790377021484],[126.57095828125,45.7102303291016],[126.609195585938,45.7419930244141],[126.627345,45.7638430000001],[126.643985625,45.767202375],[126.667652617188,45.7860024238281]]]]}},{"type":"Feature","properties":{"name":"平房区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.767345,45.633843],[126.75654421875,45.5979750800782],[126.697345,45.563843],[126.67326296875,45.5479274726563],[126.609869414063,45.5257057929688],[126.59326296875,45.5497585273437],[126.577345,45.553843],[126.570704375,45.567202375],[126.567345,45.593843],[126.60298953125,45.5981990791016],[126.611773710938,45.6196663642579],[126.67564578125,45.6102272773438],[126.74170046875,45.6294869208985],[126.767345,45.633843]]]]}},{"type":"Feature","properties":{"name":"尚志市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.805943632813,45.5785744453125],[127.842066679688,45.5584188056641],[127.8523840625,45.559247663086],[127.907345,45.553843],[127.918453398438,45.5249489570313],[127.939947539063,45.4497627998048],[127.962345,45.4469771552735],[127.997906523438,45.4514003730469],[128.013023710938,45.4392958808594],[128.010460234375,45.4186714912109],[128.061793242188,45.4039943671875],[128.052896757813,45.3982900214844],[128.002896757813,45.3874721503907],[128.025982695313,45.3518190742188],[128.062896757813,45.3293959785157],[128.07369265625,45.3159163642578],[128.115904570313,45.2981288886719],[128.140079375,45.2679396796876],[128.152345,45.2694649482422],[128.162799101563,45.2681648994141],[128.193702421875,45.3067592597656],[128.307345,45.2926235175782],[128.367345,45.3000868964844],[128.382345,45.2982210517578],[128.40021609375,45.3004439521484],[128.425142851563,45.2663252998047],[128.421143828125,45.2341933417969],[128.472896757813,45.2193959785157],[128.484019804688,45.1805007148438],[128.512345,45.1769771552735],[128.532345,45.1794649482422],[128.5789075,45.1736733222657],[128.668917265625,45.1893379951172],[128.6847278125,45.2446938300782],[128.679859648438,45.283843],[128.683023710938,45.3092958808594],[128.667589140625,45.3216573310547],[128.695777617188,45.3568624091797],[128.722896757813,45.3682900214844],[128.731793242188,45.3993959785156],[128.743111601563,45.4186513496094],[128.729508085938,45.4662960029297],[128.762530546875,45.4857076240235],[128.782896757813,45.4693959785156],[128.79537234375,45.4538210273438],[128.836920195313,45.4293959785156],[128.882896757813,45.4382900214844],[128.901793242188,45.4493959785157],[128.952847929688,45.4639943671875],[128.999561796875,45.5304506660157],[129.031793242188,45.5493959785156],[129.067345,45.553843],[129.072345,45.5410353828125],[129.077345,45.553843],[129.097345,45.563843],[129.12724734375,45.5548403144532],[129.119732695313,45.4613307929688],[129.15197390625,45.4384712958985],[129.19197390625,45.4206221748047],[129.177535429688,45.3704653144532],[129.152345,45.3684413886719],[129.127828398438,45.3704109931641],[129.055260039063,45.3428719306641],[129.08271609375,45.3192147041016],[129.094561796875,45.2798702216798],[129.117345,45.2780397773437],[129.132345,45.2792446113281],[129.142623320313,45.2784188056641],[129.1683996875,45.2927999091797],[129.20158328125,45.2333235908204],[129.203189726563,45.213333966797],[129.16271609375,45.1984712958985],[129.13197390625,45.1892147041016],[129.1180871875,45.1730989814453],[129.09271609375,45.1512404609375],[129.10197390625,45.1384712958985],[129.11271609375,45.1292147041016],[129.12197390625,45.1184712958985],[129.133287382813,45.1087252021485],[129.07498171875,45.0827095771485],[129.062667265625,45.0684151435547],[128.99271609375,45.0740358710937],[129.003663359375,45.0556319404297],[129.032877226563,45.0304616523438],[129.031920195313,45.0185646796875],[129.04295046875,44.9987984443359],[129.018619414063,44.9644838691407],[129.04158328125,44.9233235908203],[129.04291140625,44.9067885566407],[129.005655546875,44.9097823310547],[128.98197390625,44.8992147041016],[128.9530871875,44.8830989814453],[128.876788359375,44.8657643867188],[128.853331328125,44.8237258125001],[128.84271609375,44.7884712958985],[128.78197390625,44.7792147041016],[128.758834257813,44.7523555732423],[128.731539335938,44.7288430000001],[128.75197390625,44.7112404609375],[128.680885039063,44.6599306464844],[128.662345,44.6584413886719],[128.652345,44.6592446113282],[128.62755984375,44.6572530341797],[128.523800078125,44.6798848701172],[128.487198515625,44.6664443183594],[128.404405546875,44.6730965400391],[128.38271609375,44.6384712958985],[128.361138945313,44.628843],[128.3627746875,44.6085195136719],[128.3519153125,44.5991664863281],[128.352799101563,44.588163678711],[128.28271609375,44.5384712958984],[128.267345,44.533843],[128.2293371875,44.5580232978516],[128.2334778125,44.5247170234376],[128.182926054688,44.4940102363282],[128.13013796875,44.5143013740235],[128.102896757813,44.4982900214844],[128.00380984375,44.4893959785157],[127.982896757813,44.5222743964844],[128.002896757813,44.5382900214844],[128.015162382813,44.58118675],[128.008951445313,44.6311074042969],[128.042896757813,44.6582900214844],[128.064268828125,44.7090041328125],[128.016969023438,44.7225276923829],[127.972345,44.7169771552735],[127.961085234375,44.7437020087891],[127.963023710938,44.7592958808594],[127.934327421875,44.7822762275391],[127.91463015625,44.8290218330079],[127.870704375,44.8385250068359],[127.882896757813,44.8482900214844],[127.891793242188,44.9056484199219],[127.861793242188,44.9182900214844],[127.845904570313,44.9381288886719],[127.80380984375,44.9558663154297],[127.742345,44.9482210517579],[127.730582304688,44.9496840644532],[127.734039335938,44.9774562812501],[127.721793242188,44.9982900214844],[127.712896757813,45.0193959785156],[127.645191679688,45.0340450263672],[127.631890898438,45.0506526923828],[127.612345,45.0482210517579],[127.59658328125,45.0501821113282],[127.542896757813,45.0893959785156],[127.50369265625,45.1059163642579],[127.492896757813,45.1193959785157],[127.461793242188,45.1282900214844],[127.412896757813,45.1593959785156],[127.397345,45.163843],[127.4101965625,45.1965364814453],[127.38170046875,45.2081990791016],[127.37298953125,45.2159206367188],[127.41677859375,45.233843],[127.411607695313,45.2688430000001],[127.417061796875,45.3057485175782],[127.506485625,45.2705940986328],[127.49156375,45.3085512519532],[127.494327421875,45.3272658515626],[127.474620390625,45.35993675],[127.514952421875,45.4143349433594],[127.54170046875,45.3981990791016],[127.586265898438,45.3894869208985],[127.60170046875,45.4094869208985],[127.61298953125,45.4181990791016],[127.629049101563,45.4574391914062],[127.64298953125,45.4681990791016],[127.65170046875,45.4850429511719],[127.631300078125,45.5188631416015],[127.647345,45.543843],[127.673765898438,45.5380800605469],[127.694556914063,45.5622121406251],[127.737369414063,45.5464888740235],[127.756104765625,45.5884712958985],[127.805943632813,45.5785744453125]]]]}},{"type":"Feature","properties":{"name":"双城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.247345,45.1538430000001],[126.259537382813,45.1504195380859],[126.250767851563,45.1416506171875],[126.247345,45.1538430000001]]],[[[126.247345,45.1538430000001],[126.232408476563,45.1465688300782],[126.217345,45.1533357978516],[126.202345,45.1465969062501],[126.17947390625,45.1568715644531],[126.167345,45.133843],[126.15170046875,45.1381990791016],[126.094190703125,45.1466982246095],[126.07298953125,45.1594869208985],[125.9875403125,45.1686452460938],[125.95298953125,45.1894869208984],[125.90170046875,45.1981990791016],[125.855699492188,45.2259468818359],[125.81170046875,45.2381990791016],[125.802935820313,45.2696694160157],[125.791954375,45.268046491211],[125.77298953125,45.2794869208985],[125.75170046875,45.2881990791016],[125.712857695313,45.339657819336],[125.702345,45.3381038642579],[125.684342070313,45.3407643867188],[125.709136992188,45.403843],[125.69170046875,45.4481990791016],[125.68047,45.4885353828125],[125.693375273438,45.4984987617188],[125.687345,45.513843],[125.7451965625,45.5197444892578],[125.757345,45.5338430000001],[125.768453398438,45.5249489570313],[125.781964140625,45.5080770087891],[125.832183867188,45.5194850898438],[125.860987578125,45.5159023261719],[125.871793242188,45.5293959785157],[125.902940703125,45.5543404365235],[125.923013945313,45.5884828925782],[125.921724882813,45.598843],[125.922965117188,45.6088430000001],[125.920582304688,45.6280019355469],[125.937345,45.6300868964844],[125.984791289063,45.6241854072266],[125.979405546875,45.6674843574219],[125.998453398438,45.6827370429688],[126.026920195313,45.7182900214844],[126.062896757813,45.6993959785156],[126.076236601563,45.6827370429688],[126.147345,45.673843],[126.15142703125,45.6579274726563],[126.17142703125,45.6272139716797],[126.16326296875,45.6079274726563],[126.15107546875,45.5995131660157],[126.153468046875,45.588843],[126.148492460938,45.5666628242187],[126.162359648438,45.5465792060548],[126.234991484375,45.5720394111328],[126.23037234375,45.5926479316406],[126.252623320313,45.5876595283203],[126.286705351563,45.6019741035157],[126.349635039063,45.6160817695313],[126.404176054688,45.5956740546875],[126.43142703125,45.5779274726562],[126.447345,45.5738430000001],[126.457955351563,45.5584749580078],[126.51326296875,45.5497585273437],[126.560753203125,45.5298116279298],[126.577345,45.553843],[126.59326296875,45.5497585273437],[126.609869414063,45.5257057929688],[126.67326296875,45.5479274726563],[126.697345,45.563843],[126.709879179688,45.5386232734375],[126.693985625,45.507202375],[126.66841921875,45.4998244453125],[126.693985625,45.4704836250001],[126.707345,45.443843],[126.696851835938,45.4302480292969],[126.667345,45.4258876777344],[126.61298953125,45.4339199042969],[126.62170046875,45.3981990791016],[126.638404570313,45.3705086494141],[126.645636015625,45.3215615058594],[126.59170046875,45.2994869208985],[126.58298953125,45.2881990791016],[126.57170046875,45.2794869208985],[126.56298953125,45.2681990791016],[126.55170046875,45.2594869208985],[126.547345,45.253843],[126.5425403125,45.23659690625],[126.517345,45.2403206611329],[126.502345,45.2381038642578],[126.492203398438,45.2396028876954],[126.438595,45.2271810126953],[126.4110559375,45.2312502265625],[126.35111453125,45.1868086982422],[126.331954375,45.1896395087891],[126.305289335938,45.1735536933594],[126.292345,45.1903206611328],[126.276324492188,45.1695638251954],[126.25170046875,45.1594869208985],[126.247345,45.1538430000001]]]]}},{"type":"Feature","properties":{"name":"松北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.547345,45.9838430000001],[126.550767851563,45.9960353828125],[126.559537382813,45.9872664619141],[126.547345,45.9838430000001]]],[[[126.447345,46.053843],[126.450767851563,46.0660353828125],[126.459537382813,46.0572664619141],[126.447345,46.053843]]],[[[126.447345,46.053843],[126.45170046875,46.0481990791016],[126.545738554688,46.0103231025391],[126.529390898438,45.9977022529297],[126.547345,45.9838430000001],[126.558995390625,45.9669710517578],[126.590079375,45.9739400458984],[126.595225859375,45.9509975410156],[126.55142703125,45.9397585273438],[126.539176054688,45.9220119453125],[126.49033328125,45.9094771552734],[126.477725859375,45.8532411933594],[126.51713015625,45.8444075751954],[126.55326296875,45.8579274726563],[126.5820715625,45.8802571845703],[126.612066679688,45.8676595283203],[126.631676054688,45.8720552802735],[126.651705351563,45.8430446601563],[126.67326296875,45.8579274726563],[126.681842070313,45.8703548408203],[126.697345,45.863843],[126.697345,45.853843],[126.707345,45.853843],[126.702379179688,45.8158779121094],[126.617345,45.783843],[126.601246367188,45.7799398017579],[126.583443632813,45.7677461982422],[126.54591921875,45.7545479560547],[126.519893828125,45.7723696113282],[126.498804960938,45.7664430976563],[126.506011992188,45.7407863593751],[126.471886015625,45.7503768134766],[126.453443632813,45.7377461982423],[126.389049101563,45.7299398017578],[126.357345,45.743843],[126.351163359375,45.7585646796875],[126.353468046875,45.768843],[126.350103789063,45.783843],[126.357496367188,45.8168325019531],[126.337579375,45.8305867744141],[126.358121367188,45.8794985175781],[126.325513945313,45.9020119453126],[126.310186796875,45.9242116523438],[126.313468046875,45.938843],[126.309283476563,45.9575057197266],[126.270875273438,45.9718764472657],[126.2326184375,45.9632997871094],[126.221329375,46.0072829414062],[126.173360625,46.0404030585938],[126.167345,46.0638430000001],[126.210572539063,46.0567421699219],[126.235889921875,46.0720137763672],[126.318761015625,46.0597670722656],[126.343414335938,46.0917055488281],[126.377345,46.083843],[126.377345,46.073843],[126.417345,46.073843],[126.417345,46.083843],[126.427345,46.083843],[126.440704375,46.0572023750001],[126.447345,46.053843]]]]}},{"type":"Feature","properties":{"name":"通河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.53298953125,46.5994869208984],[128.565240507813,46.5755763984375],[128.59990359375,46.5806990791015],[128.63205203125,46.5680611396485],[128.6790246875,46.5750026679688],[128.69298953125,46.5394869208985],[128.702955351563,46.4808058906251],[128.787345,46.4932759833985],[128.831832304688,46.4867018867188],[128.855264921875,46.5170577216797],[128.891636992188,46.5224330878907],[128.95298953125,46.5094869208985],[129.010142851563,46.4845107246094],[129.02170046875,46.4994869208985],[129.03298953125,46.5081990791016],[129.070616484375,46.5569490791016],[129.10982546875,46.5332985664063],[129.157642851563,46.5403646064453],[129.197345,46.533843],[129.225738554688,46.5111074042969],[129.218883085938,46.4560073066406],[129.241793242188,46.4182900214844],[129.262896757813,46.4093959785157],[129.271793242188,46.3882900214844],[129.295904570313,46.3781288886719],[129.311793242188,46.3582900214844],[129.32334109375,46.3490419746094],[129.30865359375,46.3240566230469],[129.421016875,46.3045021796875],[129.423824492188,46.2819496894532],[129.341793242188,46.1793959785157],[129.337345,46.153843],[129.331793242188,46.1493959785156],[129.3132825,46.1262807441407],[129.300142851563,46.0655568671875],[129.251236601563,46.0449489570313],[129.209849882813,45.9768086982422],[129.131793242188,45.9293959785156],[129.09982546875,45.9060463691407],[129.022799101563,45.9156276679688],[128.990987578125,45.8759023261719],[128.957345,45.8800868964844],[128.93123171875,45.8768392158203],[128.882896757813,45.8842659736329],[128.90334109375,45.9190419746094],[128.886236601563,45.9327370429688],[128.872896757813,45.9493959785157],[128.835181914063,45.9723055244141],[128.802345,45.9682210517579],[128.764757109375,45.9728963447266],[128.713453398438,45.9427370429688],[128.681793242188,45.9293959785156],[128.632945585938,45.900683209961],[128.505616484375,45.9165212226563],[128.412896757813,45.9593959785157],[128.3292590625,45.9715688300781],[128.276261015625,45.9649764228516],[128.267345,45.9538430000001],[128.257345,45.9538430000001],[128.20142703125,45.9579274726562],[128.17201296875,45.9770833564453],[128.16326296875,45.9897585273438],[128.148521757813,45.9999355292969],[128.177447539063,46.0443569160156],[128.146568632813,46.0841982246094],[128.187432890625,46.0994893623047],[128.20142703125,46.1197585273437],[128.22326296875,46.1279274726563],[128.23142703125,46.1397585273438],[128.260538359375,46.1506502509766],[128.275377226563,46.190312116211],[128.264483671875,46.2389150214844],[128.247193632813,46.2508534980469],[128.25490359375,46.2852523017579],[128.27326296875,46.2979274726563],[128.29142703125,46.3297585273438],[128.30326296875,46.3379274726562],[128.31142703125,46.3550960517578],[128.263487578125,46.3824611640625],[128.232345,46.3754805732422],[128.195592070313,46.3837197089844],[128.204801054688,46.4247933173829],[128.188985625,46.4758046699219],[128.164322539063,46.4928353095704],[128.177345,46.5238430000001],[128.187345,46.5238430000001],[128.187345,46.5638430000001],[128.217345,46.5638430000001],[128.217345,46.573843],[128.242418242188,46.5796529365235],[128.282135039063,46.5680727363282],[128.292345,46.5695821357423],[128.302345,46.5681038642578],[128.322345,46.571059796875],[128.342345,46.5681038642578],[128.352345,46.5695821357423],[128.377086210938,46.5659255195313],[128.393160429688,46.5783309150391],[128.389527617188,46.6029073310547],[128.447345,46.6256368232422],[128.49170046875,46.6081990791016],[128.53298953125,46.5994869208984]]]]}},{"type":"Feature","properties":{"name":"五常市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.167345,45.2638430000001],[127.155152617188,45.2604195380859],[127.163922148438,45.2516506171876],[127.193624296875,45.2601210761719],[127.224766875,45.2345235419922],[127.24615359375,45.2418685126953],[127.255777617188,45.213843],[127.245191679688,45.1830159736329],[127.262345,45.1771260810548],[127.292345,45.1874282050781],[127.327345,45.1754091621094],[127.356339140625,45.1853652167969],[127.381065703125,45.1675649238282],[127.397345,45.163843],[127.412896757813,45.1593959785156],[127.461793242188,45.1282900214844],[127.492896757813,45.1193959785157],[127.50369265625,45.1059163642579],[127.542896757813,45.0893959785156],[127.59658328125,45.0501821113282],[127.612345,45.0482210517579],[127.631890898438,45.0506526923828],[127.645191679688,45.0340450263672],[127.712896757813,45.0193959785156],[127.721793242188,44.9982900214844],[127.734039335938,44.9774562812501],[127.730582304688,44.9496840644532],[127.742345,44.9482210517579],[127.80380984375,44.9558663154297],[127.845904570313,44.9381288886719],[127.861793242188,44.9182900214844],[127.891793242188,44.9056484199219],[127.882896757813,44.8482900214844],[127.870704375,44.8385250068359],[127.91463015625,44.8290218330079],[127.934327421875,44.7822762275391],[127.963023710938,44.7592958808594],[127.961085234375,44.7437020087891],[127.972345,44.7169771552735],[128.016969023438,44.7225276923829],[128.064268828125,44.7090041328125],[128.042896757813,44.6582900214844],[128.008951445313,44.6311074042969],[128.015162382813,44.58118675],[128.002896757813,44.5382900214844],[127.982896757813,44.5222743964844],[128.00380984375,44.4893959785157],[128.102896757813,44.4982900214844],[128.13013796875,44.5143013740235],[128.182926054688,44.4940102363282],[128.2334778125,44.5247170234376],[128.2293371875,44.5580232978516],[128.267345,44.533843],[128.224635039063,44.4695241523437],[128.247345,44.453843],[128.242808867188,44.4483803535157],[128.211641875,44.4348635078125],[128.174659453125,44.3495882392578],[128.154620390625,44.3475460029297],[128.081881132813,44.3583803535156],[128.054410429688,44.3741146064453],[128.0518371875,44.3488430000001],[128.0528528125,44.338843],[128.05107546875,44.3213906074219],[128.061881132813,44.3083803535157],[128.095787382813,44.2874678779297],[128.0532434375,44.2521279121094],[128.098668242188,44.2324269843751],[128.082779570313,44.1782888007812],[128.063004179688,44.1803047919922],[128.061798125,44.1684950996094],[128.087232695313,44.1331563544922],[128.052808867188,44.1083803535157],[128.004327421875,44.0976302314454],[127.941881132813,44.0793056464844],[127.912808867188,44.0683803535157],[127.857345,44.063843],[127.8251965625,44.0850868964844],[127.772506132813,44.0732747626953],[127.747345,44.0838430000001],[127.727388945313,44.0998220039062],[127.712423125,44.2026699042969],[127.692896757813,44.1782900214844],[127.676763945313,44.1653682685547],[127.652896757813,44.1793959785156],[127.61662234375,44.1897670722656],[127.58849734375,44.2248891425782],[127.613013945313,44.2584505439453],[127.611724882813,44.268843],[127.613248320313,44.2811074042969],[127.552921171875,44.3294179511719],[127.512896757813,44.3793959785157],[127.473902617188,44.4030800605469],[127.492896757813,44.4182900214844],[127.501793242188,44.4422743964844],[127.460084257813,44.4756728339844],[127.462965117188,44.498843],[127.460611601563,44.5177687812501],[127.532896757813,44.5282900214844],[127.56330203125,44.5461611152344],[127.560689726563,44.5671688056641],[127.521793242188,44.5782900214844],[127.478179960938,44.6039260078125],[127.411793242188,44.6182900214844],[127.392896757813,44.6293959785156],[127.278912382813,44.6382900214844],[127.2598059375,44.6144271064453],[127.202896757813,44.6222743964844],[127.224000273438,44.6391732001954],[127.178912382813,44.6482900214844],[127.162896757813,44.6282900214844],[127.135753203125,44.6065529609375],[127.093702421875,44.6117836738282],[127.060650664063,44.5705062080079],[127.037345,44.563843],[127.03271609375,44.5892147041016],[127.021539335938,44.598843],[127.035777617188,44.6111092353516],[127.030338164063,44.678843],[127.032901640625,44.7107491279298],[126.99197390625,44.7684712958984],[126.977418242188,44.8168123603516],[127.004659453125,44.8909914375],[127.06271609375,44.9084712958985],[127.083453398438,44.9200411201172],[127.081944609375,44.938843],[127.0827746875,44.9491664863281],[127.07197390625,44.9584712958984],[126.993619414063,45.0498232246094],[126.961812773438,45.0772243476563],[126.964273710938,45.1078719306641],[126.9519153125,45.1185195136719],[126.9527746875,45.1291970039063],[126.915811796875,45.1403267646485],[126.892345,45.1384413886719],[126.882345,45.1392446113282],[126.867345,45.1380397773438],[126.852345,45.1392446113282],[126.837345,45.1380397773438],[126.822345,45.1392446113282],[126.792022734375,45.1368080878907],[126.77271609375,45.1592147041016],[126.759097929688,45.1709505439453],[126.675719023438,45.189892194336],[126.597408476563,45.2387703681641],[126.547345,45.253843],[126.55170046875,45.2594869208985],[126.56298953125,45.2681990791016],[126.57170046875,45.2794869208985],[126.58298953125,45.2881990791016],[126.59170046875,45.2994869208985],[126.645636015625,45.3215615058594],[126.638404570313,45.3705086494141],[126.62170046875,45.3981990791016],[126.61298953125,45.4339199042969],[126.667345,45.4258876777344],[126.696851835938,45.4302480292969],[126.707345,45.443843],[126.734425078125,45.4338985419922],[126.802345,45.4284413886719],[126.812345,45.4292446113281],[126.822345,45.4284413886719],[126.839859648438,45.429848859375],[126.916597929688,45.3663722968751],[127.015211210938,45.374296491211],[127.03271609375,45.3592147041016],[127.04197390625,45.3484712958985],[127.07271609375,45.3392147041016],[127.08197390625,45.3284712958985],[127.113560820313,45.3189607978516],[127.111300078125,45.2908577705079],[127.123961210938,45.2761605048829],[127.162701445313,45.2792732978516],[127.167345,45.2638430000001]]]]}},{"type":"Feature","properties":{"name":"香坊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,45.663843],[126.839537382813,45.6672664619141],[126.830767851563,45.6760353828125],[126.788878203125,45.6573085761719],[126.79388796875,45.6234090400391],[126.767345,45.633843],[126.74170046875,45.6294869208985],[126.67564578125,45.6102272773438],[126.611773710938,45.6196663642579],[126.60298953125,45.5981990791016],[126.567345,45.593843],[126.574425078125,45.6504500556641],[126.592564726563,45.6481941962891],[126.64435671875,45.6629836250001],[126.629659453125,45.7276869941407],[126.645440703125,45.7403237128906],[126.662345,45.7382210517579],[126.672345,45.7394649482422],[126.682345,45.7382210517579],[126.711041289063,45.7417903876954],[126.717345,45.7638430000001],[126.742139921875,45.7474568916016],[126.772393828125,45.7601638007813],[126.845811796875,45.7258803535156],[126.87896609375,45.7487709785157],[126.883468046875,45.768843],[126.875250273438,45.8054921699219],[126.887345,45.813843],[126.913350859375,45.8098494697266],[126.92533328125,45.7918306708985],[126.943350859375,45.7798494697266],[126.961588164063,45.7473928046875],[127.001339140625,45.7574080634766],[126.962843046875,45.7112813544922],[126.931339140625,45.6998494697266],[126.893350859375,45.6678365302734],[126.871339140625,45.6598494697266],[126.842711210938,45.640732038086],[126.827345,45.663843]]]]}},{"type":"Feature","properties":{"name":"延寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.067345,45.553843],[129.077345,45.553843],[129.072345,45.5410353828125],[129.067345,45.553843]]],[[[129.067345,45.553843],[129.031793242188,45.5493959785156],[128.999561796875,45.5304506660157],[128.952847929688,45.4639943671875],[128.901793242188,45.4493959785157],[128.882896757813,45.4382900214844],[128.836920195313,45.4293959785156],[128.79537234375,45.4538210273438],[128.782896757813,45.4693959785156],[128.762530546875,45.4857076240235],[128.729508085938,45.4662960029297],[128.743111601563,45.4186513496094],[128.731793242188,45.3993959785156],[128.722896757813,45.3682900214844],[128.695777617188,45.3568624091797],[128.667589140625,45.3216573310547],[128.683023710938,45.3092958808594],[128.679859648438,45.283843],[128.6847278125,45.2446938300782],[128.668917265625,45.1893379951172],[128.5789075,45.1736733222657],[128.532345,45.1794649482422],[128.512345,45.1769771552735],[128.484019804688,45.1805007148438],[128.472896757813,45.2193959785157],[128.421143828125,45.2341933417969],[128.425142851563,45.2663252998047],[128.40021609375,45.3004439521484],[128.382345,45.2982210517578],[128.367345,45.3000868964844],[128.307345,45.2926235175782],[128.193702421875,45.3067592597656],[128.162799101563,45.2681648994141],[128.152345,45.2694649482422],[128.140079375,45.2679396796876],[128.115904570313,45.2981288886719],[128.07369265625,45.3159163642578],[128.062896757813,45.3293959785157],[128.025982695313,45.3518190742188],[128.002896757813,45.3874721503907],[128.052896757813,45.3982900214844],[128.061793242188,45.4039943671875],[128.010460234375,45.4186714912109],[128.013023710938,45.4392958808594],[127.997906523438,45.4514003730469],[127.962345,45.4469771552735],[127.939947539063,45.4497627998048],[127.918453398438,45.5249489570313],[127.907345,45.553843],[127.932608671875,45.5481044746094],[127.981793242188,45.5793959785156],[128.012896757813,45.5882900214844],[128.022916289063,45.6008010078125],[128.112310820313,45.5882167792969],[128.137735625,45.5913796210938],[128.1879309375,45.5720864082031],[128.206832304688,45.5956911445313],[128.176202421875,45.6477980781251],[128.225089140625,45.6617757392579],[128.2191809375,45.7092958808594],[128.24322390625,45.72855003125],[128.237345,45.743843],[128.247345,45.743843],[128.247345,45.753843],[128.291783476563,45.7465431953125],[128.312345,45.7495821357422],[128.342345,45.7451485419922],[128.408975859375,45.75499534375],[128.45170046875,45.7381990791016],[128.529215117188,45.7250319648438],[128.533082304688,45.698843],[128.530670195313,45.6824935126953],[128.548424101563,45.6594869208985],[128.62298953125,45.6681990791016],[128.64170046875,45.7194869208985],[128.65298953125,45.7281990791016],[128.674625273438,45.7562319160157],[128.71170046875,45.7081990791016],[128.732413359375,45.692212140625],[128.74170046875,45.6481990791016],[128.75298953125,45.6394869208985],[128.769361601563,45.5994869208985],[128.83298953125,45.6081990791016],[128.933189726563,45.6274623847656],[129.009771757813,45.5812679267578],[129.06298953125,45.5594869208985],[129.067345,45.553843]]]]}},{"type":"Feature","properties":{"name":"依兰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.057345,46.583843],[130.057345,46.5938430000001],[130.067345,46.5938430000001],[130.067345,46.583843],[130.057345,46.583843]]],[[[130.067345,46.5938430000001],[130.070767851563,46.6060353828125],[130.079537382813,46.5972664619141],[130.067345,46.5938430000001]]],[[[130.057345,46.583843],[130.052388945313,46.5572835517579],[130.022628203125,46.5306917548828],[130.072174101563,46.5185347724609],[130.082525664063,46.5191518378906],[130.125054960938,46.5077608466797],[130.107940703125,46.5878517890625],[130.142628203125,46.5985616279297],[130.191676054688,46.6252156806641],[130.152388945313,46.5529152656251],[130.147345,46.493843],[130.14134890625,46.4890419746094],[130.152896757813,46.4693959785156],[130.161793242188,46.4454116035157],[130.134146757813,46.4232747626954],[130.111417265625,46.385849225586],[130.080079375,46.3897463203125],[130.056143828125,46.3598537421876],[130.019210234375,46.3815627265625],[129.992345,46.3782210517578],[129.935069609375,46.3853450751954],[129.912896757813,46.3754116035157],[129.943975859375,46.3505245185547],[129.982896757813,46.3393959785157],[130.013082304688,46.3216524482422],[130.031793242188,46.2982900214844],[130.048453398438,46.2849489570313],[130.07068484375,46.2571834541016],[130.115904570313,46.2381288886719],[130.131793242188,46.2182900214844],[130.151632109375,46.2024025703126],[130.161793242188,46.1782900214844],[130.222896757813,46.1293959785157],[130.227345,46.123843],[130.222369414063,46.1173952460938],[130.161744414063,46.0724483466797],[130.132345,46.0681038642578],[130.109742460938,46.0714437080079],[130.114908476563,46.0364888740235],[130.099654570313,45.9706557441407],[130.107345,45.923843],[130.058526640625,45.9118526435547],[129.989464140625,45.9273342109375],[129.9421496875,45.9074599433594],[129.920230742188,45.9217317939454],[129.901676054688,45.9175716376954],[129.881007109375,45.9475057197266],[129.85142703125,45.9679274726563],[129.837652617188,45.9878792548828],[129.777725859375,45.9744448066406],[129.784586210938,45.943843],[129.778980742188,45.9188430000001],[129.783468046875,45.898843],[129.779600859375,45.8816115546875],[129.726617460938,45.8934896064453],[129.655797148438,45.8760939765626],[129.6221496875,45.8902260566406],[129.600230742188,45.8759542060548],[129.577345,45.8810848212891],[129.559381132813,45.8770577216797],[129.56361453125,45.8581728339844],[129.55142703125,45.8497585273438],[129.547345,45.843843],[129.522506132813,45.8494850898438],[129.512125273438,45.8481941962891],[129.461275664063,45.8627150703126],[129.416754179688,45.888886334961],[129.422965117188,45.9388442207032],[129.407432890625,46.0631899238282],[129.381793242188,46.0982900214844],[129.371417265625,46.1345803046875],[129.337345,46.153843],[129.341793242188,46.1793959785157],[129.423824492188,46.2819496894532],[129.421016875,46.3045021796875],[129.30865359375,46.3240566230469],[129.32334109375,46.3490419746094],[129.311793242188,46.3582900214844],[129.295904570313,46.3781288886719],[129.271793242188,46.3882900214844],[129.262896757813,46.4093959785157],[129.241793242188,46.4182900214844],[129.218883085938,46.4560073066406],[129.225738554688,46.5111074042969],[129.197345,46.533843],[129.20201296875,46.5796181464844],[129.270479765625,46.6362526679688],[129.34197390625,46.6492147041016],[129.347345,46.653843],[129.36142703125,46.6479274726563],[129.400787382813,46.6378273750001],[129.426339140625,46.6008193183594],[129.477345,46.6222432685547],[129.497345,46.613843],[129.576773710938,46.6092690253907],[129.61170046875,46.5881990791016],[129.63298953125,46.5794869208985],[129.648482695313,46.5416304755859],[129.677345,46.5373653388672],[129.692345,46.5395821357422],[129.747564726563,46.5314217353516],[129.81298953125,46.5581990791016],[129.85170046875,46.5894869208985],[129.885201445313,46.6031978583985],[129.917345,46.623843],[129.923082304688,46.6171858955078],[129.987135039063,46.5641994453125],[130.032183867188,46.58933128125],[130.057345,46.583843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"昂昂溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.13125125,47.2270076728516],[124.141793242188,47.1782900214845],[124.182896757813,47.1693959785157],[124.187345,47.1338430000001],[124.18326296875,47.1279274726563],[124.14142703125,47.0997585273438],[124.09326296875,47.0579274726563],[124.071051054688,47.0496169257813],[124.076197539063,47.0266628242188],[124.06326296875,47.0079274726563],[124.00142703125,46.9997585273437],[123.997345,46.993843],[123.89170046875,46.9981990791016],[123.852686796875,47.0135372138672],[123.84298953125,47.0594869208984],[123.807164335938,47.0741487861329],[123.735460234375,47.127309796875],[123.677345,47.113843],[123.6668371875,47.1388619208985],[123.71431765625,47.1481337714844],[123.70060671875,47.1691909003907],[123.735870390625,47.1935396552734],[123.727345,47.2138430000001],[123.747081328125,47.2234542060547],[123.77521609375,47.2108144355469],[123.799698515625,47.2572927070313],[123.823892851563,47.2503932929688],[123.830797148438,47.2372927070312],[123.837345,47.233843],[123.84406375,47.2205617500001],[123.87062625,47.2071242500001],[123.880704375,47.187202375],[123.920616484375,47.180483625],[123.957345,47.2537252021485],[123.99062625,47.27056175],[123.997345,47.2838430000001],[124.06134890625,47.2918398261719],[124.063590117188,47.273843],[124.060289335938,47.2472975898438],[124.13125125,47.2270076728516]],[[123.725152617188,47.1672664619141],[123.737345,47.163843],[123.733922148438,47.1760353828125],[123.725152617188,47.1672664619141]]]]}},{"type":"Feature","properties":{"name":"拜泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.190289335938,47.878325421875],[126.19353640625,47.8238430000001],[126.191749296875,47.793843],[126.1926575,47.7786171699219],[126.180323515625,47.7559255195313],[126.203785429688,47.7048128486328],[126.356095,47.7195131660157],[126.397345,47.7170546699219],[126.432345,47.7191408515626],[126.442369414063,47.7185433173828],[126.517345,47.723843],[126.521671171875,47.5904311347656],[126.547345,47.583843],[126.54142703125,47.5697585273437],[126.53326296875,47.5279274726563],[126.519698515625,47.4956410957032],[126.52361453125,47.4781728339844],[126.505323515625,47.4655440498048],[126.469366484375,47.4121419501954],[126.442393828125,47.3935207343751],[126.437345,47.373843],[126.315308867188,47.3661934638672],[126.132628203125,47.3485616279297],[125.992237578125,47.3365785957032],[125.822628203125,47.3185616279297],[125.584664335938,47.3036458564454],[125.557345,47.293843],[125.563414335938,47.3433388496094],[125.561636992188,47.3607942939453],[125.582896757813,47.3784529853516],[125.580855742188,47.3984529853516],[125.592808867188,47.4083803535156],[125.601881132813,47.4693056464844],[125.6399621875,47.4804805732422],[125.645484648438,47.5346334052734],[125.6315246875,47.5590071845703],[125.6435559375,47.5690004707032],[125.632808867188,47.6293056464844],[125.59541140625,47.6523708320313],[125.573756132813,47.7100106025391],[125.570308867188,47.7438430000001],[125.57361453125,47.7762953925782],[125.562808867188,47.7893056464844],[125.502808867188,47.7999977851563],[125.515235625,47.8264430976563],[125.631881132813,47.8393056464844],[125.707345,47.843843],[125.712535429688,47.8486525703125],[125.832271757813,47.8590438056641],[125.847799101563,47.8584285712891],[126.125982695313,47.8715779853516],[126.137345,47.883843],[126.190289335938,47.878325421875]]]]}},{"type":"Feature","properties":{"name":"富拉尔基区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.733922148438,47.1760353828125],[123.737345,47.163843],[123.725152617188,47.1672664619141],[123.733922148438,47.1760353828125]]],[[[123.417345,47.333843],[123.405152617188,47.3372664619141],[123.413922148438,47.3460353828126],[123.417345,47.333843]]],[[[123.417345,47.333843],[123.430704375,47.3404836250001],[123.503985625,47.3472023750001],[123.530704375,47.360483625],[123.557345,47.3638430000001],[123.605396757813,47.3444893623048],[123.596944609375,47.2873140693359],[123.614449492188,47.2646364570313],[123.643922148438,47.2468593574219],[123.670767851563,47.2508266425782],[123.69170046875,47.2381990791016],[123.71298953125,47.2294869208985],[123.72170046875,47.2181990791016],[123.727345,47.2138430000001],[123.735870390625,47.1935396552734],[123.70060671875,47.1691909003907],[123.71431765625,47.1481337714844],[123.6668371875,47.1388619208985],[123.677345,47.113843],[123.657345,47.113843],[123.657345,47.0938430000001],[123.627345,47.0938430000001],[123.627345,47.073843],[123.617345,47.073843],[123.599386015625,47.0812227607423],[123.58216921875,47.0778206611329],[123.535928984375,47.0918679023438],[123.523170195313,47.1096681953126],[123.503394804688,47.123843],[123.528995390625,47.1421932197266],[123.54377078125,47.1982033515625],[123.52377078125,47.2468709541016],[123.47802859375,47.2589394355469],[123.463170195313,47.2796681953125],[123.451519804688,47.2880178046875],[123.443170195313,47.3096681953125],[123.425694609375,47.3221932197266],[123.417345,47.333843]]]]}},{"type":"Feature","properties":{"name":"富裕县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.937345,47.913843],[124.949537382813,47.910419538086],[124.940767851563,47.9016506171875],[124.937345,47.913843]]],[[[124.937345,47.913843],[124.90271609375,47.9034169746094],[124.914312773438,47.8721712470703],[125.009034453125,47.8797823310547],[125.043204375,47.8645351386719],[125.041944609375,47.848843],[125.044849882813,47.8126601386719],[124.992345,47.8084413886719],[124.937139921875,47.8128774238282],[124.845860625,47.7481587958985],[124.82271609375,47.7500185371094],[124.86197390625,47.6984712958985],[124.90271609375,47.6692147041016],[124.96197390625,47.6184712958985],[124.99271609375,47.5992147041016],[125.00197390625,47.5384712958985],[125.017345,47.4738430000001],[125.01271609375,47.4684712958985],[124.903277617188,47.4355208564453],[124.87271609375,47.4184712958985],[124.82197390625,47.4092147041016],[124.790660429688,47.3728700996094],[124.70197390625,47.3392147041016],[124.627486601563,47.3061495185548],[124.552803984375,47.3376009345703],[124.517345,47.3404500556641],[124.4822278125,47.3376284003907],[124.477345,47.353843],[124.469698515625,47.3720449042969],[124.473668242188,47.3897487617188],[124.14142703125,47.3979274726563],[124.117345,47.413843],[124.10271609375,47.4392147041016],[124.088546171875,47.4514235664063],[123.997345,47.4438430000001],[123.991265898438,47.460400006836],[123.992877226563,47.4804616523438],[123.9719153125,47.4985195136719],[123.972955351563,47.5114461494141],[123.995211210938,47.5306215644532],[124.022667265625,47.5284151435547],[124.0366028125,47.5445870185548],[124.057896757813,47.5629335761719],[124.093048125,47.5786196113282],[124.081724882813,47.5989150214844],[124.132921171875,47.6608058906251],[124.162345,47.6584413886719],[124.177345,47.6596462226563],[124.197345,47.6580397773438],[124.215108671875,47.6594667792969],[124.211138945313,47.7088430000001],[124.2327746875,47.7184969306641],[124.2319153125,47.7291664863281],[124.244273710938,47.7398140693359],[124.241920195313,47.7691213203126],[124.256031523438,47.7944161201173],[124.3037121875,47.8087709785157],[124.28197390625,47.8184712958984],[124.27271609375,47.8312404609376],[124.29271609375,47.8484712958985],[124.297345,47.8638430000001],[124.311295195313,47.873843],[124.291236601563,47.8882228828125],[124.295186796875,47.9082228828126],[124.281519804688,47.9180178046876],[124.273170195313,47.9387337470703],[124.323170195313,47.9580178046876],[124.327345,47.963843],[124.418746367188,47.9695723701173],[124.512628203125,47.9985616279297],[124.524752226563,48.0121321845704],[124.652437773438,48.0197426582032],[124.66806765625,47.9691243720703],[124.732628203125,47.9785616279297],[124.743189726563,48.0015743232422],[124.887345,48.023843],[124.929527617188,48.0165023017579],[124.932965117188,47.988843],[124.930474882813,47.9688198066407],[124.937345,47.913843]]]]}},{"type":"Feature","properties":{"name":"甘南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.40326296875,48.183319928711],[124.426519804688,48.1764162421875],[124.44697390625,48.1810018134766],[124.465557890625,48.1681728339844],[124.461221953125,48.148843],[124.464932890625,48.1322951484376],[124.426046171875,48.1177437568359],[124.417345,48.0838430000001],[124.376519804688,48.0733663154297],[124.360714140625,48.0311202216797],[124.363619414063,48.0181673408203],[124.321070585938,47.9895186591797],[124.32361453125,47.9781728339844],[124.3094934375,47.9684236884766],[124.327345,47.963843],[124.323170195313,47.9580178046876],[124.273170195313,47.9387337470703],[124.281519804688,47.9180178046876],[124.295186796875,47.9082228828126],[124.291236601563,47.8882228828125],[124.311295195313,47.873843],[124.297345,47.8638430000001],[124.24923953125,47.8739076972657],[124.208482695313,47.8458632636719],[124.17252078125,47.8070522285157],[124.100250273438,47.80991721875],[124.082535429688,47.8290334296875],[124.031363554688,47.8386525703125],[124.032550078125,47.8086568427735],[123.982935820313,47.7929482246094],[123.947608671875,47.8116414619141],[123.762633085938,47.7410573554688],[123.712154570313,47.7290334296875],[123.667515898438,47.7173372626953],[123.642276640625,47.6782509589844],[123.542906523438,47.6821895576172],[123.532310820313,47.6377095771485],[123.517345,47.6238430000001],[123.49197390625,47.6192147041016],[123.460787382813,47.6077626777344],[123.437511015625,47.6096334052734],[123.41271609375,47.6492147041016],[123.392652617188,47.6665010810547],[123.206085234375,47.6515102363282],[123.182623320313,47.6384188056641],[123.143961210938,47.6415254951172],[123.13271609375,47.6284712958984],[123.121539335938,47.618843],[123.141959257813,47.6012532783204],[123.095367460938,47.5872255683595],[123.077345,47.5938430000001],[123.072857695313,47.6223201728516],[123.043858671875,47.6158193183594],[122.984678984375,47.667212140625],[122.937345,47.6566011787109],[122.915655546875,47.6614638496094],[122.907345,47.693843],[122.9648059375,47.7107051826172],[123.071959257813,47.7563930488281],[123.150308867188,47.7793856025391],[123.20451296875,47.8183962226563],[123.233502226563,47.8532924628907],[123.271143828125,47.9143166328126],[123.287345,47.953843],[123.352628203125,47.9685616279297],[123.422061796875,47.9891243720704],[123.501798125,48.0110878730469],[123.561265898438,48.0324263740235],[123.752061796875,48.1991243720703],[123.852628203125,48.2685616279297],[123.892061796875,48.2991243720704],[123.932628203125,48.3285616279297],[123.991783476563,48.3744057441406],[124.079058867188,48.4377455878907],[124.123189726563,48.4579991889649],[124.232799101563,48.5175618720703],[124.247345,48.533843],[124.298565703125,48.5206981635743],[124.303468046875,48.498843],[124.301221953125,48.488843],[124.303468046875,48.478843],[124.299371367188,48.4605818916016],[124.3239075,48.4289223457031],[124.309454375,48.4067287421876],[124.314586210938,48.3838430000001],[124.311221953125,48.368843],[124.313468046875,48.358843],[124.310474882813,48.3454921699219],[124.336651640625,48.3274159980469],[124.35142703125,48.2879274726563],[124.388370390625,48.2668422675781],[124.40142703125,48.2479274726563],[124.415557890625,48.2381728339844],[124.40326296875,48.183319928711]]]]}},{"type":"Feature","properties":{"name":"建华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.957345,47.343843],[123.907345,47.343843],[123.907345,47.353843],[123.916046171875,47.387743756836],[123.94326296875,47.3979274726563],[123.95142703125,47.4197585273438],[123.97326296875,47.4279274726563],[123.98142703125,47.4397585273438],[123.997345,47.4438430000001],[124.088546171875,47.4514235664063],[124.10271609375,47.4392147041016],[124.117345,47.413843],[124.11326296875,47.4079274726563],[124.07377078125,47.3931514716797],[124.06326296875,47.3779274726563],[124.014796171875,47.3684633613282],[123.98326296875,47.3479274726563],[123.957345,47.343843]]]]}},{"type":"Feature","properties":{"name":"克东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.027345,48.283843],[126.189976835938,48.2784883857422],[126.238746367188,48.2794838691407],[126.277345,48.2738430000001],[126.288453398438,48.2649489570313],[126.301793242188,48.2482900214844],[126.318678007813,48.2347664619141],[126.310548125,48.1693959785157],[126.342896757813,48.1782900214844],[126.3724621875,48.195669171875],[126.432628203125,48.1881856513672],[126.481119414063,48.2068245673828],[126.562799101563,48.2169844794922],[126.607232695313,48.1614931464844],[126.661793242188,48.1231447578125],[126.652896757813,48.1182900214844],[126.611656523438,48.1093672919922],[126.613013945313,48.0984828925782],[126.5901575,48.0596004462891],[126.616822539063,48.0382460761719],[126.622965117188,47.988843],[126.620479765625,47.9688430000001],[126.623248320313,47.9465785957032],[126.564273710938,47.8993526435547],[126.561373320313,47.8760170722656],[126.589771757813,47.8277010322266],[126.561793242188,47.7893959785156],[126.552896757813,47.7282900214844],[126.517345,47.723843],[126.442369414063,47.7185433173828],[126.432345,47.7191408515626],[126.397345,47.7170546699219],[126.356095,47.7195131660157],[126.203785429688,47.7048128486328],[126.180323515625,47.7559255195313],[126.1926575,47.7786171699219],[126.191749296875,47.793843],[126.19353640625,47.8238430000001],[126.190289335938,47.878325421875],[126.137345,47.883843],[126.127310820313,47.9171639228516],[126.0983215625,47.9301003242188],[126.054283476563,48.126899640625],[126.09271609375,48.1384712958985],[126.10197390625,48.1575264716798],[126.041124296875,48.1686263251954],[126.042745390625,48.188843],[126.041402617188,48.2055605292969],[126.021871367188,48.2587483955079],[126.027345,48.283843]]]]}},{"type":"Feature","properties":{"name":"克山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.801793242188,48.5481017280274],[125.792896757813,48.4982900214844],[125.78134890625,48.4890419746094],[125.792896757813,48.4693959785157],[125.8137903125,48.3907698798828],[125.83922,48.3590126777344],[125.912125273438,48.3381941962891],[125.932345,48.3407088447266],[125.942471953125,48.3166725898437],[126.018453398438,48.2949489570313],[126.027345,48.283843],[126.021871367188,48.2587483955079],[126.041402617188,48.2055605292969],[126.042745390625,48.188843],[126.041124296875,48.1686263251954],[126.10197390625,48.1575264716798],[126.09271609375,48.1384712958985],[126.054283476563,48.126899640625],[126.0983215625,47.9301003242188],[126.127310820313,47.9171639228516],[126.137345,47.883843],[126.125982695313,47.8715779853516],[125.847799101563,47.8584285712891],[125.832271757813,47.8590438056641],[125.712535429688,47.8486525703125],[125.707345,47.843843],[125.688150664063,47.8761739326173],[125.66224734375,47.8887429023438],[125.65244265625,47.9089430976563],[125.63166140625,47.9187429023438],[125.61244265625,47.8987392402344],[125.584547148438,47.8993080878907],[125.572393828125,47.949150006836],[125.5225403125,47.9481325507813],[125.51244265625,47.9689430976563],[125.469390898438,47.9794393134766],[125.451807890625,48.0515627265625],[125.217345,48.0438430000001],[125.190733671875,48.1037898994141],[125.194351835938,48.148843],[125.187994414063,48.2280165839844],[125.2430871875,48.2446041083985],[125.241944609375,48.258843],[125.243155546875,48.2739583564454],[125.334722929688,48.2906606269532],[125.474303007813,48.2794448066407],[125.470308867188,48.3291664863282],[125.496920195313,48.3520912910156],[125.552374296875,48.3476357246094],[125.56197390625,48.3709316230469],[125.529576445313,48.5194673896485],[125.542623320313,48.5184188056641],[125.56197390625,48.5292150092774],[125.58271609375,48.5384709907227],[125.5920715625,48.5493315864259],[125.679761992188,48.5334328437501],[125.697345,48.553843],[125.7151965625,48.5607051826172],[125.801793242188,48.5481017280274]]]]}},{"type":"Feature","properties":{"name":"龙江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.417345,47.333843],[123.413922148438,47.3460353828126],[123.405152617188,47.3372664619141],[123.425694609375,47.3221932197266],[123.443170195313,47.3096681953125],[123.451519804688,47.2880178046875],[123.463170195313,47.2796681953125],[123.47802859375,47.2589394355469],[123.52377078125,47.2468709541016],[123.54377078125,47.1982033515625],[123.528995390625,47.1421932197266],[123.503394804688,47.123843],[123.523170195313,47.1096681953126],[123.535928984375,47.0918679023438],[123.58216921875,47.0778206611329],[123.599386015625,47.0812227607423],[123.617345,47.073843],[123.610113554688,47.01601096875],[123.570987578125,47.0208779121094],[123.552896757813,46.9982900214844],[123.541793242188,46.9893959785156],[123.517345,46.953843],[123.49250125,46.9485353828125],[123.473985625,46.9496395087891],[123.402374296875,46.9304592109375],[123.392628203125,46.8885616279297],[123.377061796875,46.8451876044922],[123.334615507813,46.8257057929688],[123.317906523438,46.8444057441407],[123.300845976563,46.859648053711],[123.210533476563,46.8542647529297],[123.2126575,46.8186019111328],[123.161553984375,46.7526595283204],[123.126383085938,46.7365163398438],[123.064991484375,46.740175397461],[123.032628203125,46.7285616279298],[123.000982695313,46.7191243720703],[122.981671171875,46.7612038398438],[122.922061796875,46.7885616279297],[122.912628203125,46.7991243720703],[122.902061796875,46.8085616279298],[122.892628203125,46.8591243720703],[122.879781523438,46.8827626777344],[122.892652617188,46.9186415839844],[122.892047148438,46.928843],[122.893228789063,46.9486922431641],[122.879429960938,46.9585616279298],[122.842628203125,46.9385616279297],[122.796392851563,46.9291243720704],[122.782628203125,46.9591243720704],[122.77146609375,46.9690956855469],[122.773482695313,47.0028951240235],[122.8520325,47.0599025703125],[122.752061796875,47.0785616279298],[122.712628203125,47.0891243720703],[122.65963015625,47.0990157294922],[122.616417265625,47.1224990058594],[122.592628203125,47.1491243720704],[122.572061796875,47.1585616279297],[122.530079375,47.1910982490235],[122.510968046875,47.2327352119141],[122.469176054688,47.270077741211],[122.407345,47.343843],[122.500357695313,47.4036855292969],[122.549986601563,47.5168971992188],[122.588521757813,47.5434133125],[122.739117460938,47.6054866767578],[122.807345,47.643843],[122.81142703125,47.6279274726563],[122.82326296875,47.5997585273438],[122.833604765625,47.5594564033204],[122.825250273438,47.5221938300782],[122.84326296875,47.5097585273438],[122.85142703125,47.4979274726563],[122.88326296875,47.4797585273438],[122.914522734375,47.4222371650391],[122.964390898438,47.4547115302735],[122.961041289063,47.4696590400391],[122.9951965625,47.4784236884766],[122.98142703125,47.4879274726563],[122.958726835938,47.5277022529297],[122.964586210938,47.5538430000001],[122.961031523438,47.5697060371094],[123.02326296875,47.5779274726563],[123.031676054688,47.5901143623047],[123.042345,47.5877223945313],[123.052345,47.5899636054688],[123.071676054688,47.5856307197266],[123.077345,47.5938430000001],[123.095367460938,47.5872255683595],[123.141959257813,47.6012532783204],[123.121539335938,47.618843],[123.13271609375,47.6284712958984],[123.143961210938,47.6415254951172],[123.182623320313,47.6384188056641],[123.206085234375,47.6515102363282],[123.392652617188,47.6665010810547],[123.41271609375,47.6492147041016],[123.437511015625,47.6096334052734],[123.460787382813,47.6077626777344],[123.49197390625,47.6192147041016],[123.517345,47.6238430000001],[123.52197390625,47.6184712958985],[123.62197390625,47.5805232978516],[123.61271609375,47.5584712958985],[123.574947539063,47.5416182685547],[123.551607695313,47.5086995673828],[123.582857695313,47.4891255927735],[123.571929960938,47.4390145087891],[123.574176054688,47.4110823798828],[123.56197390625,47.3892147041016],[123.557345,47.3638430000001],[123.530704375,47.360483625],[123.503985625,47.3472023750001],[123.430704375,47.3404836250001],[123.417345,47.333843]],[[123.2958215625,46.9683370185547],[123.357345,46.963843],[123.35326296875,46.9697585273438],[123.324845,46.9893794990235],[123.289185820313,46.9979274726563],[123.2958215625,46.9683370185547]],[[123.375152617188,46.9472664619141],[123.387345,46.9438430000001],[123.383922148438,46.9560353828125],[123.375152617188,46.9472664619141]]]]}},{"type":"Feature","properties":{"name":"龙沙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.907345,47.353843],[123.907345,47.343843],[123.957345,47.343843],[123.974366484375,47.3015785957032],[123.997345,47.2838430000001],[123.99062625,47.27056175],[123.957345,47.2537252021485],[123.920616484375,47.180483625],[123.880704375,47.187202375],[123.87062625,47.2071242500001],[123.84406375,47.2205617500001],[123.837345,47.233843],[123.854117460938,47.2372286201172],[123.873985625,47.2772023750001],[123.880767851563,47.3107961250001],[123.900704375,47.350483625],[123.907345,47.353843]]]]}},{"type":"Feature","properties":{"name":"梅里斯达斡尔族区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.3037121875,47.8087709785157],[124.256031523438,47.7944161201173],[124.241920195313,47.7691213203126],[124.244273710938,47.7398140693359],[124.2319153125,47.7291664863281],[124.2327746875,47.7184969306641],[124.211138945313,47.7088430000001],[124.215108671875,47.6594667792969],[124.197345,47.6580397773438],[124.177345,47.6596462226563],[124.162345,47.6584413886719],[124.132921171875,47.6608058906251],[124.081724882813,47.5989150214844],[124.093048125,47.5786196113282],[124.057896757813,47.5629335761719],[124.0366028125,47.5445870185548],[124.022667265625,47.5284151435547],[123.995211210938,47.5306215644532],[123.972955351563,47.5114461494141],[123.9719153125,47.4985195136719],[123.992877226563,47.4804616523438],[123.991265898438,47.460400006836],[123.997345,47.4438430000001],[123.98142703125,47.4397585273438],[123.97326296875,47.4279274726563],[123.95142703125,47.4197585273438],[123.94326296875,47.3979274726563],[123.916046171875,47.387743756836],[123.907345,47.353843],[123.900704375,47.350483625],[123.880767851563,47.3107961250001],[123.873985625,47.2772023750001],[123.854117460938,47.2372286201172],[123.837345,47.233843],[123.830797148438,47.2372927070312],[123.823892851563,47.2503932929688],[123.799698515625,47.2572927070313],[123.77521609375,47.2108144355469],[123.747081328125,47.2234542060547],[123.727345,47.2138430000001],[123.72170046875,47.2181990791016],[123.71298953125,47.2294869208985],[123.69170046875,47.2381990791016],[123.670767851563,47.2508266425782],[123.643922148438,47.2468593574219],[123.614449492188,47.2646364570313],[123.596944609375,47.2873140693359],[123.605396757813,47.3444893623048],[123.557345,47.3638430000001],[123.56197390625,47.3892147041016],[123.574176054688,47.4110823798828],[123.571929960938,47.4390145087891],[123.582857695313,47.4891255927735],[123.551607695313,47.5086995673828],[123.574947539063,47.5416182685547],[123.61271609375,47.5584712958985],[123.62197390625,47.5805232978516],[123.52197390625,47.6184712958985],[123.517345,47.6238430000001],[123.532310820313,47.6377095771485],[123.542906523438,47.6821895576172],[123.642276640625,47.6782509589844],[123.667515898438,47.7173372626953],[123.712154570313,47.7290334296875],[123.762633085938,47.7410573554688],[123.947608671875,47.8116414619141],[123.982935820313,47.7929482246094],[124.032550078125,47.8086568427735],[124.031363554688,47.8386525703125],[124.082535429688,47.8290334296875],[124.100250273438,47.80991721875],[124.17252078125,47.8070522285157],[124.208482695313,47.8458632636719],[124.24923953125,47.8739076972657],[124.297345,47.8638430000001],[124.29271609375,47.8484712958985],[124.27271609375,47.8312404609376],[124.28197390625,47.8184712958984],[124.3037121875,47.8087709785157]]]]}},{"type":"Feature","properties":{"name":"碾子山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.915655546875,47.6614638496094],[122.937345,47.6566011787109],[122.984678984375,47.667212140625],[123.043858671875,47.6158193183594],[123.072857695313,47.6223201728516],[123.077345,47.5938430000001],[123.071676054688,47.5856307197266],[123.052345,47.5899636054688],[123.042345,47.5877223945313],[123.031676054688,47.5901143623047],[123.02326296875,47.5779274726563],[122.961031523438,47.5697060371094],[122.964586210938,47.5538430000001],[122.958726835938,47.5277022529297],[122.98142703125,47.4879274726563],[122.9951965625,47.4784236884766],[122.961041289063,47.4696590400391],[122.964390898438,47.4547115302735],[122.914522734375,47.4222371650391],[122.88326296875,47.4797585273438],[122.85142703125,47.4979274726563],[122.84326296875,47.5097585273438],[122.825250273438,47.5221938300782],[122.833604765625,47.5594564033204],[122.82326296875,47.5997585273438],[122.81142703125,47.6279274726563],[122.807345,47.643843],[122.82306765625,47.6620925117188],[122.907345,47.693843],[122.915655546875,47.6614638496094]]]]}},{"type":"Feature","properties":{"name":"泰来县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.84298953125,47.0594869208984],[123.852686796875,47.0135372138672],[123.89170046875,46.9981990791016],[123.997345,46.993843],[124.01025515625,46.9594863105469],[123.95095828125,46.9102303291016],[123.932808867188,46.8683803535156],[123.9132434375,46.8521279121095],[123.942808867188,46.8393056464844],[123.951881132813,46.8183803535157],[123.972808867188,46.8093056464844],[123.991881132813,46.7783803535157],[124.013541289063,46.7689882636719],[123.991636992188,46.7507942939453],[123.992896757813,46.7384352851563],[123.961881132813,46.7193056464844],[123.951954375,46.7073537421875],[123.932061796875,46.7093813300782],[123.867159453125,46.6817079902344],[123.851881132813,46.7083803535157],[123.842491484375,46.7403865791016],[123.817345,46.7378237128906],[123.758780546875,46.7437929511719],[123.777047148438,46.7119026923828],[123.746983671875,46.6869307685548],[123.7631653125,46.6586788154297],[123.745308867188,46.6438430000001],[123.810753203125,46.5894802070313],[123.814620390625,46.5515419746094],[123.797642851563,46.5219026923828],[123.813834257813,46.5084529853516],[123.810816679688,46.478843],[123.833233671875,46.4691213203125],[123.818858671875,46.444028546875],[123.860069609375,46.4261556220703],[123.863834257813,46.3892330146485],[123.834288359375,46.3646895576172],[123.856373320313,46.3463442207031],[123.837345,46.303843],[123.825572539063,46.2906697822266],[123.75255984375,46.2585323310547],[123.7353528125,46.2595577216797],[123.602061796875,46.2491243720703],[123.55947390625,46.2259810615234],[123.532061796875,46.2385616279298],[123.50047,46.2557289863282],[123.449698515625,46.2375106025391],[123.381886015625,46.2415523505859],[123.38322390625,46.2191243720703],[123.352061796875,46.2285616279297],[123.334874296875,46.247798078125],[123.312345,46.2491408515625],[123.284097929688,46.2474575019531],[123.234039335938,46.2746578193359],[123.167345,46.243843],[123.162628203125,46.2591243720703],[123.136124296875,46.2970626044922],[123.09093875,46.3374367500001],[123.0008215625,46.4382955146485],[123.004429960938,46.498843],[123.000264921875,46.56870628125],[123.043834257813,46.578843],[123.0420325,46.6090956855469],[123.059058867188,46.6243093085938],[123.083511992188,46.5969417548828],[123.16845828125,46.6120369697266],[123.202105742188,46.5885311103516],[123.212345,46.5891408515625],[123.222569609375,46.5885317207032],[123.272823515625,46.6158388496094],[123.270260039063,46.658843],[123.399635039063,46.6790041328126],[123.598160429688,46.6888356757813],[123.612061796875,46.7191243720703],[123.62322390625,46.7290956855469],[123.621749296875,46.7538430000001],[123.622642851563,46.768843],[123.621451445313,46.7888430000001],[123.6226575,46.8091164375],[123.582061796875,46.8185616279297],[123.572628203125,46.8262099433594],[123.621412382813,46.8412746406251],[123.602061796875,46.8585616279297],[123.592628203125,46.8891243720704],[123.57353640625,46.8985616279297],[123.562628203125,46.8285616279297],[123.510767851563,46.8191243720704],[123.472628203125,46.8449520087891],[123.512628203125,46.9185616279297],[123.517345,46.953843],[123.541793242188,46.9893959785156],[123.552896757813,46.9982900214844],[123.570987578125,47.0208779121094],[123.610113554688,47.01601096875],[123.617345,47.073843],[123.627345,47.073843],[123.627345,47.0938430000001],[123.657345,47.0938430000001],[123.657345,47.113843],[123.677345,47.113843],[123.735460234375,47.127309796875],[123.807164335938,47.0741487861329],[123.84298953125,47.0594869208984]]]]}},{"type":"Feature","properties":{"name":"铁锋区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.4227746875,47.3085195136719],[124.401060820313,47.2898140693359],[124.402745390625,47.268843],[124.401265898438,47.250400006836],[124.4216809375,47.1948085761719],[124.378370390625,47.1574977851563],[124.337345,47.1338430000001],[124.299947539063,47.1394197822266],[124.187345,47.1338430000001],[124.182896757813,47.1693959785157],[124.141793242188,47.1782900214845],[124.13125125,47.2270076728516],[124.060289335938,47.2472975898438],[124.063590117188,47.273843],[124.06134890625,47.2918398261719],[123.997345,47.2838430000001],[123.974366484375,47.3015785957032],[123.957345,47.343843],[123.98326296875,47.3479274726563],[124.014796171875,47.3684633613282],[124.06326296875,47.3779274726563],[124.07377078125,47.3931514716797],[124.11326296875,47.4079274726563],[124.117345,47.413843],[124.14142703125,47.3979274726563],[124.473668242188,47.3897487617188],[124.469698515625,47.3720449042969],[124.477345,47.353843],[124.420504179688,47.3367299628907],[124.4227746875,47.3085195136719]],[[124.375152617188,47.2572664619141],[124.387345,47.2538430000001],[124.383922148438,47.2660353828126],[124.375152617188,47.2572664619141]]]]}},{"type":"Feature","properties":{"name":"依安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.937345,47.913843],[124.940767851563,47.9016506171875],[124.949537382813,47.910419538086],[124.930474882813,47.9688198066407],[124.932965117188,47.988843],[124.929527617188,48.0165023017579],[124.887345,48.023843],[124.881495390625,48.0401497626954],[125.092047148438,48.0526992011719],[125.217345,48.0438430000001],[125.451807890625,48.0515627265625],[125.469390898438,47.9794393134766],[125.51244265625,47.9689430976563],[125.5225403125,47.9481325507813],[125.572393828125,47.949150006836],[125.584547148438,47.8993080878907],[125.61244265625,47.8987392402344],[125.63166140625,47.9187429023438],[125.65244265625,47.9089430976563],[125.66224734375,47.8887429023438],[125.688150664063,47.8761739326173],[125.707345,47.843843],[125.631881132813,47.8393056464844],[125.515235625,47.8264430976563],[125.502808867188,47.7999977851563],[125.562808867188,47.7893056464844],[125.57361453125,47.7762953925782],[125.570308867188,47.7438430000001],[125.573756132813,47.7100106025391],[125.59541140625,47.6523708320313],[125.632808867188,47.6293056464844],[125.6435559375,47.5690004707032],[125.6315246875,47.5590071845703],[125.645484648438,47.5346334052734],[125.6399621875,47.4804805732422],[125.601881132813,47.4693056464844],[125.592808867188,47.4083803535156],[125.580855742188,47.3984529853516],[125.582896757813,47.3784529853516],[125.561636992188,47.3607942939453],[125.563414335938,47.3433388496094],[125.557345,47.293843],[125.452535429688,47.2886525703126],[125.327345,47.2838430000001],[125.322808867188,47.3093056464844],[125.306217070313,47.3838246894532],[125.178199492188,47.3707759833985],[125.162808867188,47.3893056464844],[125.071881132813,47.3983803535157],[125.042808867188,47.4693056464844],[125.017345,47.4738430000001],[125.00197390625,47.5384712958985],[124.99271609375,47.5992147041016],[124.96197390625,47.6184712958985],[124.90271609375,47.6692147041016],[124.86197390625,47.6984712958985],[124.82271609375,47.7500185371094],[124.845860625,47.7481587958985],[124.937139921875,47.8128774238282],[124.992345,47.8084413886719],[125.044849882813,47.8126601386719],[125.041944609375,47.848843],[125.043204375,47.8645351386719],[125.009034453125,47.8797823310547],[124.914312773438,47.8721712470703],[124.90271609375,47.9034169746094],[124.937345,47.913843]]]]}},{"type":"Feature","properties":{"name":"讷河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.01361453125,48.8525075507813],[125.002628203125,48.8285616279298],[124.975557890625,48.8161379218751],[125.02873171875,48.7917317939453],[125.044835234375,48.7395885444336],[125.062345,48.7385448432617],[125.089698515625,48.740175397461],[125.129263945313,48.7259773994141],[125.182345,48.7291411567383],[125.192345,48.7285448432618],[125.202569609375,48.7291545844727],[125.228961210938,48.7148125434571],[125.30810671875,48.7295842719727],[125.40513796875,48.7895705390625],[125.447345,48.7870549750977],[125.463453398438,48.8221553779298],[125.52427859375,48.8646416450196],[125.609332304688,48.8828133369141],[125.684107695313,48.7991243720704],[125.722628203125,48.8085616279297],[125.752061796875,48.8191243720703],[125.782628203125,48.8285616279298],[125.818365507813,48.8685616279298],[125.842628203125,48.8491243720703],[125.864703398438,48.8244155097657],[125.957345,48.7738430000001],[125.967345,48.7738430000001],[125.967345,48.763843],[125.977345,48.763843],[125.98406375,48.75056175],[125.997345,48.743843],[125.987164335938,48.7091573310547],[125.915904570313,48.6964577460938],[125.867257109375,48.6664534736329],[125.88330203125,48.6384392524414],[125.812808867188,48.6083803535157],[125.771881132813,48.5993056464844],[125.752506132813,48.5882067084961],[125.710845976563,48.5998537421876],[125.697345,48.553843],[125.679761992188,48.5334328437501],[125.5920715625,48.5493315864259],[125.58271609375,48.5384709907227],[125.56197390625,48.5292150092774],[125.542623320313,48.5184188056641],[125.529576445313,48.5194673896485],[125.56197390625,48.3709316230469],[125.552374296875,48.3476357246094],[125.496920195313,48.3520912910156],[125.470308867188,48.3291664863282],[125.474303007813,48.2794448066407],[125.334722929688,48.2906606269532],[125.243155546875,48.2739583564454],[125.241944609375,48.258843],[125.2430871875,48.2446041083985],[125.187994414063,48.2280165839844],[125.194351835938,48.148843],[125.190733671875,48.1037898994141],[125.217345,48.0438430000001],[125.092047148438,48.0526992011719],[124.881495390625,48.0401497626954],[124.887345,48.023843],[124.743189726563,48.0015743232422],[124.732628203125,47.9785616279297],[124.66806765625,47.9691243720703],[124.652437773438,48.0197426582032],[124.524752226563,48.0121321845704],[124.512628203125,47.9985616279297],[124.418746367188,47.9695723701173],[124.327345,47.963843],[124.3094934375,47.9684236884766],[124.32361453125,47.9781728339844],[124.321070585938,47.9895186591797],[124.363619414063,48.0181673408203],[124.360714140625,48.0311202216797],[124.376519804688,48.0733663154297],[124.417345,48.0838430000001],[124.431793242188,48.0893959785157],[124.462896757813,48.0982900214844],[124.472345,48.1207088447266],[124.492799101563,48.1181648994141],[124.501793242188,48.1293959785157],[124.51736453125,48.1418685126953],[124.53334109375,48.1690419746094],[124.521280546875,48.1786983466797],[124.546016875,48.2125569892579],[124.57341921875,48.2591762519532],[124.546632109375,48.2704640937501],[124.561793242188,48.2893959785156],[124.573590117188,48.298843],[124.561793242188,48.3082900214844],[124.552896757813,48.3193959785157],[124.541793242188,48.3282900214844],[124.532896757813,48.3593959785156],[124.511441679688,48.3765785957031],[124.515455351563,48.408843],[124.5105090625,48.4486159492188],[124.543682890625,48.4687670112305],[124.527139921875,48.4820134711914],[124.534156523438,48.5383901191407],[124.51861453125,48.5508351875],[124.552896757813,48.5782900214844],[124.561793242188,48.5893959785156],[124.572896757813,48.5982900214844],[124.581793242188,48.6193959785157],[124.592896757813,48.6282900214844],[124.601793242188,48.6593959785157],[124.613941679688,48.6910051704102],[124.6069153125,48.7474843574219],[124.644381132813,48.7774843574219],[124.6382825,48.8265151191407],[124.672061796875,48.8395000434571],[124.685025664063,48.8378874946289],[124.704039335938,48.8702294135743],[124.700865507813,48.8957497382813],[124.711793242188,48.9093959785157],[124.747345,48.9238430000001],[124.808956328125,48.9311190009766],[124.865240507813,48.9005324531251],[125.01177859375,48.8833663154298],[125.01361453125,48.8525075507813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.07291140625,45.4393941474609],[131.092994414063,45.3690602851563],[131.091724882813,45.358843],[131.093824492188,45.3419362617188],[131.082896757813,45.3282900214844],[131.071793242188,45.3193959785156],[131.067345,45.3038430000001],[131.032843046875,45.2953688789063],[130.983306914063,45.306474225586],[130.95326296875,45.3297585273438],[130.923204375,45.3410042548829],[130.917345,45.363843],[130.949195585938,45.3798152900391],[130.934293242188,45.4103273750001],[130.920704375,45.417202375],[130.917345,45.433843],[130.950264921875,45.4263655830079],[130.98826296875,45.4541243720703],[131.07291140625,45.4393941474609]]]]}},{"type":"Feature","properties":{"name":"滴道区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.687882109375,45.4711556220703],[130.754010039063,45.4463075996094],[130.908682890625,45.4633632636719],[130.917345,45.433843],[130.920704375,45.417202375],[130.934293242188,45.4103273750001],[130.949195585938,45.3798152900391],[130.917345,45.363843],[130.889888945313,45.3612990546876],[130.864801054688,45.3363869453125],[130.839888945313,45.3312990546875],[130.837345,45.323843],[130.81142703125,45.3197585273437],[130.80326296875,45.3079274726563],[130.77142703125,45.2997585273438],[130.76326296875,45.2879274726563],[130.742393828125,45.273520734375],[130.728209257813,45.2182497382813],[130.707345,45.203843],[130.690704375,45.2004836250001],[130.677345,45.1938430000001],[130.672628203125,45.1991243720703],[130.647471953125,45.2106703925782],[130.6626575,45.2386171699219],[130.661949492188,45.2504744697266],[130.597921171875,45.2911971259766],[130.547345,45.3838430000001],[130.551158476563,45.3900307441407],[130.586744414063,45.4021584296875],[130.621158476563,45.4300307441407],[130.651842070313,45.440487897461],[130.661158476563,45.4800307441407],[130.677345,45.483843],[130.687882109375,45.4711556220703]]]]}},{"type":"Feature","properties":{"name":"恒山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.85998171875,45.2438741279297],[130.91248171875,45.2276009345704],[130.94142703125,45.2397585273438],[131.057345,45.243843],[131.09318484375,45.2187337470704],[131.050426054688,45.2055306220703],[131.027647734375,45.1851784492188],[131.071221953125,45.1651784492188],[131.03658328125,45.1342287421875],[131.0120325,45.0990798164063],[131.012642851563,45.088843],[131.011495390625,45.0696059394531],[131.030968046875,45.0337740302734],[130.961148710938,44.9796657539063],[130.894620390625,44.9757002998047],[130.887345,44.983843],[130.895924101563,45.0187630439454],[130.871051054688,45.0280690742188],[130.874815703125,45.0448744941406],[130.84107546875,45.0681728339844],[130.843526640625,45.0791213203125],[130.831163359375,45.1085646796875],[130.833468046875,45.1188430000001],[130.82978640625,45.1352523017579],[130.81060671875,45.1484950996094],[130.829454375,45.1774404121094],[130.80142703125,45.1879274726563],[130.773746367188,45.2059535957031],[130.763072539063,45.1774184394531],[130.715382109375,45.1922005439453],[130.707345,45.203843],[130.728209257813,45.2182497382813],[130.742393828125,45.273520734375],[130.76326296875,45.2879274726563],[130.77142703125,45.2997585273438],[130.80326296875,45.3079274726563],[130.81142703125,45.3197585273437],[130.837345,45.323843],[130.84142703125,45.3179274726563],[130.87365359375,45.2995333076172],[130.85998171875,45.2438741279297]]]]}},{"type":"Feature","properties":{"name":"虎林市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.907345,46.323843],[133.910767851563,46.3360353828125],[133.919537382813,46.3272664619141],[133.907345,46.323843]]],[[[133.907345,46.323843],[133.901104765625,46.2984291816407],[133.91572390625,46.2759773994141],[133.89435671875,46.2450295234376],[133.86037234375,46.2526479316407],[133.866939726563,46.2233467841797],[133.83509890625,46.20261253125],[133.8176184375,46.2279274726563],[133.80142703125,46.2197585273438],[133.782838164063,46.1871883369141],[133.75326296875,46.1679274726563],[133.6857434375,46.1590077949219],[133.680186796875,46.1342116523438],[133.699595976563,46.1060964179688],[133.74142703125,46.0772139716797],[133.721715117188,46.0306697822266],[133.67572390625,45.9989150214844],[133.671221953125,45.978843],[133.676197539063,45.9566628242188],[133.663013945313,45.9375716376953],[133.616822539063,45.9479274726563],[133.601104765625,45.9293752265625],[133.607496367188,45.9008534980469],[133.59142703125,45.8897585273438],[133.580601835938,45.8608193183594],[133.532720976563,45.8979274726563],[133.499781523438,45.8852889228516],[133.503638945313,45.8680690742188],[133.478980742188,45.858843],[133.483638945313,45.8380690742188],[133.461051054688,45.8296169257813],[133.463468046875,45.818843],[133.458922148438,45.7985707832031],[133.50142703125,45.7876625800782],[133.49138796875,45.7756948066407],[133.466265898438,45.7813271308594],[133.461124296875,45.7583962226562],[133.47422,45.7382863593751],[133.443204375,45.7266817451173],[133.437345,45.703843],[133.425152617188,45.700419538086],[133.433922148438,45.6916506171875],[133.437345,45.703843],[133.481656523438,45.6853560615234],[133.483062773438,45.6617848945313],[133.440709257813,45.64870628125],[133.472061796875,45.6206917548828],[133.462511015625,45.6185353828125],[133.425094023438,45.6207656074219],[133.4108996875,45.6080843330078],[133.413219023438,45.5691933417969],[133.402345,45.5685451484375],[133.3744934375,45.5702053046875],[133.262061796875,45.5291243720703],[133.242569609375,45.5185317207032],[133.2241028125,45.5196321845703],[133.1820325,45.4891011787109],[133.1826575,45.4785903144531],[133.16197390625,45.460107038086],[133.162779570313,45.446567609375],[133.137345,45.4238430000001],[133.13197390625,45.4192147041016],[133.098761015625,45.4165462470704],[133.025738554688,45.3965615058594],[132.989742460938,45.3994539619141],[132.957706328125,45.4366371894532],[132.847916289063,45.4696926093751],[132.827345,45.4680397773438],[132.802345,45.4700484443359],[132.753961210938,45.4661605048828],[132.726456328125,45.4980892158204],[132.662720976563,45.5172786689454],[132.631925078125,45.5664418769532],[132.588233671875,45.5795967841797],[132.56271609375,45.6092147041016],[132.517535429688,45.6481398750001],[132.47197390625,45.6684712958985],[132.467345,45.673843],[132.479537382813,45.6772664619141],[132.470767851563,45.6860353828125],[132.467345,45.673843],[132.4020325,45.7048152900391],[132.362345,45.6979824042969],[132.345050078125,45.7009596992188],[132.31263796875,45.6879317451172],[132.258306914063,45.6972847724609],[132.263258085938,45.6685396552734],[132.255396757813,45.6495772529297],[132.230914335938,45.6824910712891],[132.191612578125,45.6981087470704],[132.183077421875,45.7195772529297],[132.145728789063,45.777177350586],[132.177345,45.843843],[132.204361601563,45.8487709785156],[132.222667265625,45.8700221992188],[132.257569609375,45.8672182441406],[132.277310820313,45.9209810615234],[132.261690703125,45.9489736152344],[132.273526640625,45.9591664863282],[132.27115359375,45.9887001777344],[132.30271609375,46.0084712958985],[132.319947539063,46.0284712958984],[132.388360625,46.0183821845704],[132.454561796875,45.9814461494141],[132.5062121875,46.0044930244141],[132.56197390625,46.0692147041016],[132.594586210938,46.0790340400391],[132.62123171875,46.1099587226563],[132.6627746875,46.1284969306641],[132.660513945313,46.1566451240234],[132.734263945313,46.1837282539063],[132.7680871875,46.1545870185547],[132.783961210938,46.1361605048828],[132.822550078125,46.1392610908203],[132.867139921875,46.1270577216797],[132.89271609375,46.1384712958984],[132.910103789063,46.1586519599609],[132.9427746875,46.1684889960938],[132.9419153125,46.1791664863282],[132.962877226563,46.1972243476563],[132.961495390625,46.2144148994141],[132.977164335938,46.2664559150391],[133.011734648438,46.296239850586],[133.015025664063,46.3372243476562],[132.995220976563,46.3542885566407],[133.02197390625,46.3692147041016],[133.073287382813,46.3921120429688],[133.070416289063,46.4278719306641],[133.08271609375,46.4384712958985],[133.100484648438,46.4782918525391],[133.112584257813,46.4792641425781],[133.167178984375,46.4592147041016],[133.21166140625,46.4753377509766],[133.212745390625,46.4888430000001],[133.21060671875,46.5154909492188],[133.222764921875,46.5486043525391],[133.221129179688,46.5689607978516],[133.25271609375,46.5784712958985],[133.306485625,46.6084712958985],[133.353136015625,46.5836775947266],[133.35119265625,46.5594911933594],[133.420250273438,46.5469704414063],[133.477345,46.553843],[133.48298953125,46.5494869208985],[133.493326445313,46.5123696113281],[133.527432890625,46.5329451728516],[133.572345,46.5395821357422],[133.607345,46.5344100166016],[133.658277617188,46.5419368720704],[133.70298953125,46.5294869208984],[133.722345,46.5178108955078],[133.75267703125,46.536108625],[133.86170046875,46.5181990791016],[133.867345,46.513843],[133.86271609375,46.4984712958985],[133.83841921875,46.464203107422],[133.85197390625,46.4484712958984],[133.919127226563,46.4362215400391],[133.941597929688,46.3750325751954],[133.863424101563,46.3572725654297],[133.8618371875,46.337544171875],[133.907345,46.323843]]]]}},{"type":"Feature","properties":{"name":"鸡东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.567345,45.313843],[131.555152617188,45.310419538086],[131.563922148438,45.3016506171875],[131.573531523438,45.3100307441407],[131.584469023438,45.2779384589844],[131.619718046875,45.2562178779297],[131.636666289063,45.2287129951172],[131.673531523438,45.2200307441406],[131.677345,45.213843],[131.646378203125,45.1632692695313],[131.688873320313,45.1238961005859],[131.612535429688,45.0686525703125],[131.562154570313,45.0390334296875],[131.532535429688,45.0186525703125],[131.477706328125,44.9927754951172],[131.502154570313,44.9701210761719],[131.441021757813,44.9655440498047],[131.400465117188,44.9797591376953],[131.372345,44.9786446357422],[131.334923125,44.9801284003907],[131.312154570313,44.9590334296876],[131.27634890625,44.9203890205079],[131.203228789063,44.917491071289],[131.184439726563,44.93776878125],[131.126944609375,44.9400478339844],[131.081871367188,44.9257784248048],[131.08330203125,44.8896419501953],[131.062535429688,44.8786525703125],[130.957345,44.853843],[130.945094023438,44.8715895820312],[130.92142703125,44.8879274726563],[130.911861601563,44.9369148994141],[130.869595976563,44.9660964179688],[130.857345,44.983843],[130.887345,44.983843],[130.894620390625,44.9757002998047],[130.961148710938,44.9796657539063],[131.030968046875,45.0337740302734],[131.011495390625,45.0696059394531],[131.012642851563,45.088843],[131.0120325,45.0990798164063],[131.03658328125,45.1342287421875],[131.071221953125,45.1651784492188],[131.027647734375,45.1851784492188],[131.050426054688,45.2055306220703],[131.09318484375,45.2187337470704],[131.057345,45.243843],[131.049312773438,45.2765529609376],[131.067345,45.3038430000001],[131.071793242188,45.3193959785156],[131.082896757813,45.3282900214844],[131.093824492188,45.3419362617188],[131.091724882813,45.358843],[131.092994414063,45.3690602851563],[131.07291140625,45.4393941474609],[130.98826296875,45.4541243720703],[130.950264921875,45.4263655830079],[130.917345,45.433843],[130.908682890625,45.4633632636719],[130.754010039063,45.4463075996094],[130.687882109375,45.4711556220703],[130.677345,45.483843],[130.6860559375,45.4951302314453],[130.707603789063,45.5117604804688],[130.732345,45.5081038642578],[130.748746367188,45.5105275703125],[130.741549101563,45.559233625],[130.75298953125,45.5781990791016],[130.767345,45.6138430000001],[130.816519804688,45.6219210029297],[130.842345,45.6181038642578],[130.85990359375,45.6206990791016],[130.89248171875,45.6078926826172],[130.91170046875,45.6194869208985],[130.93298953125,45.6281990791015],[130.943624296875,45.6663991523438],[131.01170046875,45.6794869208985],[131.017345,45.6838430000001],[131.02662234375,45.6505330634766],[131.111783476563,45.6365431953125],[131.140767851563,45.6408266425782],[131.163922148438,45.6268593574219],[131.190767851563,45.6308266425781],[131.211954375,45.618046491211],[131.269068632813,45.6264864326172],[131.287345,45.593843],[131.270347929688,45.5887252021485],[131.273551054688,45.548843],[131.233204375,45.530839459961],[131.264215117188,45.4871034980469],[131.261163359375,45.4491664863281],[131.277896757813,45.4347524238282],[131.31271609375,45.4192147041016],[131.326051054688,45.4037349677735],[131.496007109375,45.3842519355469],[131.5140246875,45.3438753486328],[131.56271609375,45.3292147041016],[131.567345,45.313843]]]]}},{"type":"Feature","properties":{"name":"鸡冠区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.983306914063,45.306474225586],[131.032843046875,45.2953688789063],[131.067345,45.3038430000001],[131.049312773438,45.2765529609376],[131.057345,45.243843],[130.94142703125,45.2397585273438],[130.91248171875,45.2276009345704],[130.85998171875,45.2438741279297],[130.87365359375,45.2995333076172],[130.84142703125,45.3179274726563],[130.837345,45.323843],[130.839888945313,45.3312990546875],[130.864801054688,45.3363869453125],[130.889888945313,45.3612990546876],[130.917345,45.363843],[130.923204375,45.3410042548829],[130.95326296875,45.3297585273438],[130.983306914063,45.306474225586]]]]}},{"type":"Feature","properties":{"name":"梨树区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.829454375,45.1774404121094],[130.81060671875,45.1484950996094],[130.82978640625,45.1352523017579],[130.833468046875,45.1188430000001],[130.831163359375,45.1085646796875],[130.843526640625,45.0791213203125],[130.84107546875,45.0681728339844],[130.874815703125,45.0448744941406],[130.871051054688,45.0280690742188],[130.895924101563,45.0187630439454],[130.887345,44.983843],[130.857345,44.983843],[130.83142703125,44.9879274726563],[130.799141875,45.0014876533203],[130.7641028125,44.9936330390626],[130.747095976563,44.9689968085938],[130.713975859375,44.9597585273438],[130.691676054688,44.9920552802735],[130.672345,44.9877223945313],[130.653682890625,44.9919057441407],[130.64326296875,45.0197585273438],[130.624000273438,45.0493367744141],[130.59142703125,45.0679274726563],[130.58326296875,45.0797585273438],[130.57142703125,45.0879274726563],[130.567345,45.093843],[130.57326296875,45.0979274726563],[130.587257109375,45.1181966376953],[130.615513945313,45.1287709785157],[130.645557890625,45.1495131660156],[130.641070585938,45.1695192695312],[130.677345,45.1938430000001],[130.690704375,45.2004836250001],[130.707345,45.203843],[130.715382109375,45.1922005439453],[130.763072539063,45.1774184394531],[130.773746367188,45.2059535957031],[130.80142703125,45.1879274726563],[130.829454375,45.1774404121094]]]]}},{"type":"Feature","properties":{"name":"麻山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.567345,45.093843],[130.52420046875,45.0884462714844],[130.472706328125,45.0581764960938],[130.445152617188,45.0616030097656],[130.422799101563,45.0895211005859],[130.411846953125,45.0881587958985],[130.397345,45.123843],[130.40170046875,45.1294869208985],[130.460382109375,45.1737801337891],[130.427554960938,45.1991170478516],[130.45170046875,45.2394869208985],[130.478741484375,45.2505538154297],[130.469600859375,45.3124263740235],[130.50298953125,45.3381990791016],[130.51170046875,45.3494869208984],[130.53298953125,45.3581990791016],[130.54170046875,45.3794869208985],[130.547345,45.3838430000001],[130.597921171875,45.2911971259766],[130.661949492188,45.2504744697266],[130.6626575,45.2386171699219],[130.647471953125,45.2106703925782],[130.672628203125,45.1991243720703],[130.677345,45.1938430000001],[130.641070585938,45.1695192695312],[130.645557890625,45.1495131660156],[130.615513945313,45.1287709785157],[130.587257109375,45.1181966376953],[130.57326296875,45.0979274726563],[130.567345,45.093843]]]]}},{"type":"Feature","properties":{"name":"密山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.127345,45.143843],[133.139537382813,45.140419538086],[133.130767851563,45.1316506171876],[133.127345,45.143843]]],[[[133.097345,45.233843],[133.100767851563,45.2460353828126],[133.109537382813,45.2372664619141],[133.097345,45.233843]]],[[[131.567345,45.313843],[131.563922148438,45.3016506171875],[131.555152617188,45.310419538086],[131.567345,45.313843]]],[[[132.467345,45.673843],[132.470767851563,45.6860353828125],[132.479537382813,45.6772664619141],[132.467345,45.673843]]],[[[132.467345,45.673843],[132.47197390625,45.6684712958985],[132.517535429688,45.6481398750001],[132.56271609375,45.6092147041016],[132.588233671875,45.5795967841797],[132.631925078125,45.5664418769532],[132.662720976563,45.5172786689454],[132.726456328125,45.4980892158204],[132.753961210938,45.4661605048828],[132.802345,45.4700484443359],[132.827345,45.4680397773438],[132.847916289063,45.4696926093751],[132.957706328125,45.4366371894532],[132.989742460938,45.3994539619141],[133.025738554688,45.3965615058594],[133.098761015625,45.4165462470704],[133.13197390625,45.4192147041016],[133.137345,45.4238430000001],[133.133443632813,45.3677461982422],[133.109869414063,45.3526546455078],[133.11375125,45.3388430000001],[133.1095325,45.323843],[133.113878203125,45.3083846259766],[133.093819609375,45.2790932441406],[133.083580351563,45.2426546455079],[133.097345,45.233843],[133.10142703125,45.2279274726563],[133.117135039063,45.2170833564453],[133.124586210938,45.183843],[133.121217070313,45.1688014960938],[133.127345,45.143843],[133.122061796875,45.1391243720704],[133.112628203125,45.1285616279298],[133.102061796875,45.1191243720703],[133.092628203125,45.1085616279297],[133.05713015625,45.0859865546876],[133.031383085938,45.0571706367188],[132.981783476563,45.0344057441407],[132.952345,45.0184090400391],[132.932628203125,45.0291243720703],[132.898365507813,45.0397042060547],[132.862628203125,45.0591243720704],[132.77724734375,45.0750600410157],[132.282628203125,45.1891243720703],[131.996881132813,45.2531722236328],[131.982628203125,45.2691243720703],[131.928004179688,45.2793190742187],[131.909405546875,45.3395619941407],[131.892345,45.3385451484375],[131.882120390625,45.3391542792969],[131.835455351563,45.3137966132813],[131.802628203125,45.2685616279297],[131.792061796875,45.2591243720703],[131.780982695313,45.2467208076172],[131.7826575,45.2185829902344],[131.768365507813,45.2091243720704],[131.71228640625,45.2292458320313],[131.692628203125,45.2185616279297],[131.677345,45.213843],[131.673531523438,45.2200307441406],[131.636666289063,45.2287129951172],[131.619718046875,45.2562178779297],[131.584469023438,45.2779384589844],[131.573531523438,45.3100307441407],[131.567345,45.313843],[131.56271609375,45.3292147041016],[131.5140246875,45.3438753486328],[131.496007109375,45.3842519355469],[131.326051054688,45.4037349677735],[131.31271609375,45.4192147041016],[131.277896757813,45.4347524238282],[131.261163359375,45.4491664863281],[131.264215117188,45.4871034980469],[131.233204375,45.530839459961],[131.273551054688,45.548843],[131.270347929688,45.5887252021485],[131.287345,45.593843],[131.307745390625,45.6134432197266],[131.33224734375,45.6389430976563],[131.34244265625,45.6487429023438],[131.35224734375,45.6589430976562],[131.362584257813,45.6688759589844],[131.33244265625,45.6834975410156],[131.377496367188,45.718642194336],[131.392345,45.718944928711],[131.41994265625,45.7183815742188],[131.471983671875,45.7310689521484],[131.445636015625,45.8080532050781],[131.49244265625,45.8387429023438],[131.5061340625,45.8669600654297],[131.543013945313,45.8789278388672],[131.581046171875,45.9185103583985],[131.602418242188,45.9189467597656],[131.683648710938,45.9085634589844],[131.702437773438,45.9089467597657],[131.722633085938,45.8985427070313],[131.742345,45.898944928711],[131.761871367188,45.8985463691407],[131.777345,45.903843],[131.784215117188,45.8488661933594],[131.781676054688,45.8284828925782],[131.79322390625,45.808843],[131.775914335938,45.7793959785156],[131.802896757813,45.7882900214844],[131.813702421875,45.8017836738282],[131.852706328125,45.7969319892579],[131.883013945313,45.8484828925781],[131.880738554688,45.8667769599609],[131.922799101563,45.8720088935547],[131.972935820313,45.8093959785156],[132.055870390625,45.824159772461],[132.084581328125,45.8410359931641],[132.170987578125,45.8517836738281],[132.177345,45.843843],[132.145728789063,45.777177350586],[132.183077421875,45.7195772529297],[132.191612578125,45.6981087470704],[132.230914335938,45.6824910712891],[132.255396757813,45.6495772529297],[132.263258085938,45.6685396552734],[132.258306914063,45.6972847724609],[132.31263796875,45.6879317451172],[132.345050078125,45.7009596992188],[132.362345,45.6979824042969],[132.4020325,45.7048152900391],[132.467345,45.673843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.887345,47.4438430000001],[129.890767851563,47.4316506171875],[129.899537382813,47.440419538086],[129.8814465625,47.4692916083985],[129.894078398438,47.4790407539063],[129.870128203125,47.488843],[129.873082304688,47.5088430000001],[129.868878203125,47.5373073554688],[129.89611453125,47.5583309150391],[129.890362578125,47.5972658515625],[129.90298953125,47.6181990791016],[129.918941679688,47.6571742988282],[129.891314726563,47.6784987617188],[129.906392851563,47.7168587470703],[129.872906523438,47.7427053046875],[129.807345,47.753843],[129.795636015625,47.7721334052735],[129.771246367188,47.7877461982422],[129.763443632813,47.8099398017579],[129.737486601563,47.8265560126954],[129.74375125,47.848843],[129.74093875,47.8588430000001],[129.746011992188,47.8768996406251],[129.711886015625,47.8673091865235],[129.684835234375,47.8858339667969],[129.703443632813,47.8977461982422],[129.711246367188,47.9171944404297],[129.681246367188,47.9277461982422],[129.66658328125,47.9694356513673],[129.707345,47.9738430000001],[129.753170195313,47.9780178046875],[129.761519804688,47.9896681953126],[129.774351835938,47.9988643623047],[129.73123171875,48.0282155585938],[129.74345828125,48.0894612861328],[129.723170195313,48.1040029121094],[129.731676054688,48.1199629951173],[129.747554960938,48.1168257880859],[129.774820585938,48.1363680244141],[129.791519804688,48.1596681953125],[129.805186796875,48.1694631171875],[129.800367460938,48.193843],[129.803428984375,48.2093288398438],[129.775133085938,48.2463826728516],[129.8423059375,48.2598494697266],[129.861519804688,48.3096681953125],[129.867345,48.3138430000001],[129.912843046875,48.2950270820313],[129.970865507813,48.2533638740234],[129.984517851563,48.2227700019532],[130.07084109375,48.1730007148438],[130.09197390625,48.1484712958985],[130.127345,48.143843],[130.165933867188,48.0730538154297],[130.132838164063,48.0121504951172],[130.13095828125,47.9805940986328],[130.144332304688,47.9559865546875],[130.1673059375,47.8815883613282],[130.2026575,47.8591036201172],[130.201822539063,47.8451161933594],[130.217667265625,47.7266481757813],[130.2326575,47.6990688300782],[130.230982695313,47.6709651923829],[130.246783476563,47.6532802558594],[130.294097929688,47.6386702705078],[130.319488554688,47.61024925],[130.352144804688,47.5985329414063],[130.36259890625,47.5991561103516],[130.372061796875,47.5885616279297],[130.442628203125,47.5391243720704],[130.462061796875,47.4885616279297],[130.479815703125,47.4727022529298],[130.492628203125,47.4491243720703],[130.526773710938,47.3556764960938],[130.542061796875,47.3385616279298],[130.552628203125,47.3291243720703],[130.557345,47.3238430000001],[130.551099882813,47.318843],[130.562896757813,47.3093959785157],[130.571793242188,47.2982900214844],[130.582896757813,47.2893959785157],[130.591793242188,47.2782900214844],[130.602896757813,47.2693959785157],[130.611793242188,47.2582900214844],[130.680748320313,47.2058113837891],[130.64166140625,47.1893410468751],[130.642965117188,47.1788430000001],[130.641344023438,47.1657845283203],[130.53095828125,47.1209304023438],[130.452345,47.1307088447266],[130.41736453125,47.1263582587891],[130.400987578125,47.1059023261719],[130.371890898438,47.1095211005859],[130.3588684375,47.0932601142578],[130.37334109375,47.0686440253906],[130.359249296875,47.0573622871094],[130.280875273438,47.0671108222656],[130.222628203125,47.0895003486329],[130.206558867188,47.0875014472657],[130.142686796875,47.1341609931641],[130.129141875,47.1967659736328],[130.084254179688,47.2156795478516],[129.997857695313,47.2307149482422],[129.982896757813,47.2493959785157],[129.931793242188,47.2582900214844],[129.922896757813,47.2893959785157],[129.887345,47.303843],[129.847345,47.313843],[129.85197390625,47.3292147041016],[129.8927746875,47.3384847236329],[129.8919153125,47.3491664863281],[129.904932890625,47.3603780341798],[129.831485625,47.3931508613282],[129.832745390625,47.408843],[129.8319153125,47.419189069336],[129.887345,47.4438430000001]],[[130.231749296875,47.1942653632813],[130.24423953125,47.1598494697266],[130.270650664063,47.1708864570313],[130.261085234375,47.2088430000001],[130.263604765625,47.218843],[130.260181914063,47.2324306464844],[130.277345,47.2438430000001],[130.310499296875,47.2525893378906],[130.301339140625,47.2989247871094],[130.307345,47.3238430000001],[130.299888945313,47.338843],[130.307345,47.353843],[130.31978640625,47.3699599433595],[130.342686796875,47.3665755439453],[130.35170046875,47.4153975654297],[130.2844153125,47.405454328125],[130.277345,47.3638430000001],[130.267345,47.3638430000001],[130.267345,47.353843],[130.2619153125,47.3491664863281],[130.262769804688,47.3385469794922],[130.232843046875,47.296337506836],[130.247345,47.2838430000001],[130.247345,47.263843],[130.21599734375,47.2590291572266],[130.225943632813,47.2195607734375],[130.20982546875,47.2088430000001],[130.231749296875,47.1942653632813]],[[129.927345,47.5538430000001],[129.914835234375,47.5766616035157],[129.903804960938,47.5589070869141],[129.927345,47.5538430000001]]]]}},{"type":"Feature","properties":{"name":"工农区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.2606653125,47.2905818916016],[130.247345,47.2838430000001],[130.232843046875,47.296337506836],[130.262769804688,47.3385469794922],[130.2619153125,47.3491664863281],[130.267345,47.353843],[130.277345,47.353843],[130.277345,47.3238430000001],[130.2606653125,47.2905818916016]]]]}},{"type":"Feature","properties":{"name":"萝北县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.82197390625,48.3184712958985],[130.836373320313,48.2926607490234],[130.79271609375,48.2584712958985],[130.767628203125,48.2472768378907],[130.751217070313,48.2178621650391],[130.75353640625,48.1889858222657],[130.703004179688,48.1573329902344],[130.653111601563,48.1143508125],[130.67271609375,48.0792147041016],[130.682345,48.0472286201172],[130.724967070313,48.0282112861329],[130.75123171875,47.9977272773438],[130.804058867188,47.9741536689454],[130.87416140625,47.9238155341797],[130.90271609375,47.8992147041016],[130.91197390625,47.8784712958985],[130.951646757813,47.822514875],[130.952745390625,47.808843],[130.9517590625,47.7965413642578],[130.963814726563,47.7043880439453],[131.055792265625,47.6792147041016],[131.163511992188,47.6921767402344],[131.24158328125,47.7357344794922],[131.363468046875,47.7259401679688],[131.435264921875,47.7455886054688],[131.551124296875,47.7279335761719],[131.56197390625,47.6684712958985],[131.57271609375,47.6592147041016],[131.577345,47.653843],[131.531031523438,47.5657973457032],[131.368272734375,47.4289559150391],[131.179732695313,47.2587978339844],[131.147345,47.223843],[131.122061796875,47.2091243720703],[131.092379179688,47.1883901191406],[131.054859648438,47.2087795234376],[130.957345,47.223843],[130.96170046875,47.2394869208985],[130.97298953125,47.2481990791016],[130.98170046875,47.2627620673828],[130.960865507813,47.278843],[130.973160429688,47.2883309150391],[130.969361601563,47.3140303779297],[130.87298953125,47.2981990791016],[130.78158328125,47.2894869208984],[130.699742460938,47.3133492255859],[130.67298953125,47.3294869208984],[130.619303007813,47.3381990791016],[130.557345,47.3238430000001],[130.552628203125,47.3291243720703],[130.542061796875,47.3385616279298],[130.526773710938,47.3556764960938],[130.492628203125,47.4491243720703],[130.479815703125,47.4727022529298],[130.462061796875,47.4885616279297],[130.442628203125,47.5391243720704],[130.372061796875,47.5885616279297],[130.36259890625,47.5991561103516],[130.352144804688,47.5985329414063],[130.319488554688,47.61024925],[130.294097929688,47.6386702705078],[130.246783476563,47.6532802558594],[130.230982695313,47.6709651923829],[130.2326575,47.6990688300782],[130.217667265625,47.7266481757813],[130.201822539063,47.8451161933594],[130.2026575,47.8591036201172],[130.1673059375,47.8815883613282],[130.144332304688,47.9559865546875],[130.13095828125,47.9805940986328],[130.132838164063,48.0121504951172],[130.165933867188,48.0730538154297],[130.127345,48.143843],[130.172066679688,48.169267194336],[130.192345,48.1676375556641],[130.212345,48.1692446113282],[130.235279570313,48.1674019599609],[130.26197390625,48.1712404609376],[130.2419153125,48.1885195136719],[130.243287382813,48.2055605292969],[130.263424101563,48.260400006836],[130.2619153125,48.2791664863282],[130.28033328125,48.2950313544923],[130.362667265625,48.2884151435547],[130.380728789063,48.309374616211],[130.392667265625,48.3084151435547],[130.402022734375,48.3192708564453],[130.417345,48.3180397773438],[130.462022734375,48.3216292548829],[130.48197390625,48.2984712958985],[130.510401640625,48.2857851386719],[130.57197390625,48.2992147041016],[130.642818632813,48.3100099921875],[130.672022734375,48.3076638007813],[130.68197390625,48.3192147041016],[130.754527617188,48.3389632392579],[130.767345,48.3538430000001],[130.812218046875,48.3403328681641],[130.82197390625,48.3184712958985]]]]}},{"type":"Feature","properties":{"name":"南山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.301339140625,47.2989247871094],[130.310499296875,47.2525893378906],[130.277345,47.2438430000001],[130.277345,47.2538430000001],[130.247345,47.2538430000001],[130.247345,47.263843],[130.247345,47.2838430000001],[130.2606653125,47.2905818916016],[130.277345,47.3238430000001],[130.307345,47.3238430000001],[130.301339140625,47.2989247871094]]]]}},{"type":"Feature","properties":{"name":"绥滨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.517345,47.713843],[132.500416289063,47.6893245673829],[132.4468371875,47.6788619208985],[132.468121367188,47.6281874824219],[132.429595976563,47.6015895820313],[132.406046171875,47.5386415839844],[132.367667265625,47.5287929511719],[132.348370390625,47.5008437324219],[132.31142703125,47.4797585273438],[132.307345,47.4738430000001],[132.29197390625,47.4692147041016],[132.28271609375,47.4584712958985],[132.202935820313,47.4084993720704],[132.13197390625,47.3992147041016],[132.11271609375,47.3884712958985],[132.038936796875,47.3662575507812],[132.042764921875,47.3186043525391],[132.02115359375,47.2597566962891],[131.91818484375,47.2440663886719],[131.877550078125,47.2728774238282],[131.802345,47.2668343330078],[131.772056914063,47.2692678046875],[131.721490507813,47.2377065253906],[131.677345,47.2412532783203],[131.580299101563,47.2334560371094],[131.522550078125,47.2492610908203],[131.502345,47.2476375556641],[131.473326445313,47.2499697089844],[131.4473840625,47.2354958320312],[131.437345,47.223843],[131.391519804688,47.2196681953126],[131.339132109375,47.1745381904297],[131.272081328125,47.1877870917969],[131.243170195313,47.1996681953125],[131.211519804688,47.2080178046875],[131.193170195313,47.2196681953126],[131.147345,47.223843],[131.179732695313,47.2587978339844],[131.368272734375,47.4289559150391],[131.531031523438,47.5657973457032],[131.577345,47.653843],[131.631236601563,47.6592214179688],[131.705982695313,47.7183803535156],[131.742808867188,47.6993056464844],[131.773238554688,47.6774050117188],[131.802345,47.6803719306641],[131.861939726563,47.6742971015625],[131.902491484375,47.6895339179688],[131.9444934375,47.6593056464844],[131.979386015625,47.6704885078126],[132.0001575,47.7183803535156],[132.032808867188,47.7093056464844],[132.068897734375,47.6957442451173],[132.211539335938,47.7114730048828],[132.258702421875,47.7066658759766],[132.272808867188,47.7183803535156],[132.29748171875,47.7583803535156],[132.382808867188,47.7493056464844],[132.411881132813,47.7383803535157],[132.452808867188,47.7293056464844],[132.481881132813,47.7183803535156],[132.517345,47.713843]]]]}},{"type":"Feature","properties":{"name":"向阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.307345,47.353843],[130.299888945313,47.338843],[130.307345,47.3238430000001],[130.277345,47.3238430000001],[130.277345,47.353843],[130.267345,47.353843],[130.267345,47.3638430000001],[130.277345,47.3638430000001],[130.290704375,47.357202375],[130.307345,47.353843]]]]}},{"type":"Feature","properties":{"name":"兴安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.247345,47.263843],[130.247345,47.2538430000001],[130.277345,47.2538430000001],[130.277345,47.2438430000001],[130.260181914063,47.2324306464844],[130.263604765625,47.218843],[130.261085234375,47.2088430000001],[130.270650664063,47.1708864570313],[130.24423953125,47.1598494697266],[130.231749296875,47.1942653632813],[130.20982546875,47.2088430000001],[130.225943632813,47.2195607734375],[130.21599734375,47.2590291572266],[130.247345,47.263843]]]]}},{"type":"Feature","properties":{"name":"兴山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.35170046875,47.4153975654297],[130.342686796875,47.3665755439453],[130.31978640625,47.3699599433595],[130.307345,47.353843],[130.290704375,47.357202375],[130.277345,47.3638430000001],[130.2844153125,47.405454328125],[130.35170046875,47.4153975654297]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宝清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.137345,46.893843],[133.128858671875,46.8717696357423],[133.161236601563,46.8527370429688],[133.192896757813,46.8393959785156],[133.221793242188,46.8182900214844],[133.254049101563,46.809067609375],[133.30677859375,46.7770400214845],[133.329478789063,46.7486928535157],[133.398917265625,46.7366085029297],[133.444381132813,46.7002016425782],[133.43937625,46.6599867988282],[133.494595976563,46.6211751533204],[133.473839140625,46.5858699775391],[133.471685820313,46.5685604072266],[133.477345,46.553843],[133.420250273438,46.5469704414063],[133.35119265625,46.5594911933594],[133.353136015625,46.5836775947266],[133.306485625,46.6084712958985],[133.25271609375,46.5784712958985],[133.221129179688,46.5689607978516],[133.222764921875,46.5486043525391],[133.21060671875,46.5154909492188],[133.212745390625,46.4888430000001],[133.21166140625,46.4753377509766],[133.167178984375,46.4592147041016],[133.112584257813,46.4792641425781],[133.100484648438,46.4782918525391],[133.08271609375,46.4384712958985],[133.070416289063,46.4278719306641],[133.073287382813,46.3921120429688],[133.02197390625,46.3692147041016],[132.995220976563,46.3542885566407],[133.015025664063,46.3372243476562],[133.011734648438,46.296239850586],[132.977164335938,46.2664559150391],[132.961495390625,46.2144148994141],[132.962877226563,46.1972243476563],[132.9419153125,46.1791664863282],[132.9427746875,46.1684889960938],[132.910103789063,46.1586519599609],[132.89271609375,46.1384712958984],[132.867139921875,46.1270577216797],[132.822550078125,46.1392610908203],[132.783961210938,46.1361605048828],[132.7680871875,46.1545870185547],[132.734263945313,46.1837282539063],[132.660513945313,46.1566451240234],[132.6627746875,46.1284969306641],[132.62123171875,46.1099587226563],[132.594586210938,46.0790340400391],[132.56197390625,46.0692147041016],[132.5062121875,46.0044930244141],[132.454561796875,45.9814461494141],[132.388360625,46.0183821845704],[132.319947539063,46.0284712958984],[132.30271609375,46.0084712958985],[132.27115359375,45.9887001777344],[132.273526640625,45.9591664863282],[132.261690703125,45.9489736152344],[132.277310820313,45.9209810615234],[132.257569609375,45.8672182441406],[132.222667265625,45.8700221992188],[132.204361601563,45.8487709785156],[132.177345,45.843843],[132.170987578125,45.8517836738281],[132.084581328125,45.8410359931641],[132.055870390625,45.824159772461],[131.972935820313,45.8093959785156],[131.922799101563,45.8720088935547],[131.880738554688,45.8667769599609],[131.883013945313,45.8484828925781],[131.852706328125,45.7969319892579],[131.813702421875,45.8017836738282],[131.802896757813,45.7882900214844],[131.775914335938,45.7793959785156],[131.79322390625,45.808843],[131.781676054688,45.8284828925782],[131.784215117188,45.8488661933594],[131.777345,45.903843],[131.7886340625,45.9125557685547],[131.80170046875,45.9294869208985],[131.82298953125,45.9381990791016],[131.850240507813,45.9546364570312],[131.877081328125,45.9894094062501],[131.924561796875,46.008843],[131.898761015625,46.0194026923828],[131.915894804688,46.0781630683594],[131.893863554688,46.0881990791016],[131.84298953125,46.0681990791016],[131.782232695313,46.0578786445313],[131.749346953125,46.0777169013672],[131.69802859375,46.0920070625],[131.68298953125,46.1542757392578],[131.7231653125,46.1783040595704],[131.719854765625,46.2006917548828],[131.702203398438,46.1980831123048],[131.648595,46.2105049873048],[131.622857695313,46.2067018867187],[131.617345,46.2138430000001],[131.611890898438,46.2206526923829],[131.592061796875,46.2181856513672],[131.562628203125,46.2295003486328],[131.547345,46.2275991035157],[131.525318632813,46.2303389716797],[131.492706328125,46.2495095039063],[131.41595828125,46.2399636054688],[131.356060820313,46.2751729560547],[131.322896757813,46.2993959785157],[131.280445585938,46.3085811591797],[131.28302859375,46.3293581367188],[131.267345,46.3338430000001],[131.247345,46.363843],[131.25197390625,46.3892147041016],[131.267706328125,46.40276878125],[131.328199492188,46.3598763251954],[131.461456328125,46.3462831855469],[131.477345,46.3738430000001],[131.50486453125,46.3798458076173],[131.523961210938,46.3783113837891],[131.583624296875,46.4475618720704],[131.64271609375,46.4984712958985],[131.659722929688,46.5182112861328],[131.68271609375,46.5284712958985],[131.72295046875,46.5804763007813],[131.78271609375,46.5984712958984],[131.787345,46.6038430000001],[131.8666809375,46.5960414863282],[131.89271609375,46.6184712958985],[131.90197390625,46.6292147041016],[131.97271609375,46.6784712958984],[131.984761992188,46.7184712958985],[132.01271609375,46.7092147041016],[132.032266875,46.6983065009766],[132.062105742188,46.7092641425781],[132.077916289063,46.707993390625],[132.12314578125,46.7216115546875],[132.14271609375,46.7384712958985],[132.15197390625,46.7592147041016],[132.16271609375,46.7684712958985],[132.17197390625,46.7792147041016],[132.207345,46.803843],[132.292808867188,46.7993056464844],[132.356285429688,46.7593056464844],[132.39312625,46.7684596992188],[132.375050078125,46.8165700507813],[132.478053007813,46.8270693183594],[132.509107695313,46.78968284375],[132.544547148438,46.7860707832032],[132.596534453125,46.8006063056641],[132.719610625,46.8131514716797],[132.738394804688,46.7905385566407],[132.78213015625,46.7783113837891],[132.794298125,46.7795516181641],[132.812100859375,46.7581154609375],[132.842081328125,46.7693794990235],[132.871920195313,46.7663381171876],[132.882476835938,46.7906764960938],[132.945045195313,46.8090377021485],[132.961881132813,46.8293056464844],[132.992808867188,46.8383803535156],[133.055025664063,46.8775875068359],[133.072345,46.8793526435547],[133.082667265625,46.878300397461],[133.101881132813,46.8893056464844],[133.137345,46.893843]]]]}},{"type":"Feature","properties":{"name":"宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.760850859375,46.6342543769532],[131.771793242188,46.6082900214844],[131.787345,46.6038430000001],[131.78271609375,46.5984712958984],[131.72295046875,46.5804763007813],[131.68271609375,46.5284712958985],[131.659722929688,46.5182112861328],[131.64271609375,46.4984712958985],[131.583624296875,46.4475618720704],[131.523961210938,46.3783113837891],[131.50486453125,46.3798458076173],[131.477345,46.3738430000001],[131.448004179688,46.3789492011719],[131.454039335938,46.4274562812501],[131.440650664063,46.45022971875],[131.44447390625,46.4809737373047],[131.36162234375,46.4706679511719],[131.298736601563,46.49483909375],[131.304039335938,46.5374562812501],[131.291793242188,46.5582900214844],[131.287345,46.573843],[131.294986601563,46.5979750800782],[131.32252078125,46.5682552314453],[131.343678007813,46.5690938544923],[131.366964140625,46.5942244697266],[131.382535429688,46.6086525703126],[131.387345,46.613843],[131.433985625,46.610483625],[131.451969023438,46.5961989570313],[131.467345,46.6038430000001],[131.506265898438,46.5927150703126],[131.522896757813,46.5793959785156],[131.539210234375,46.5223427558594],[131.579249296875,46.5173622871094],[131.593023710938,46.5283901191407],[131.589810820313,46.5542360664063],[131.602896757813,46.5882900214844],[131.612174101563,46.6207369208984],[131.687345,46.6300868964844],[131.707345,46.6275991035157],[131.760850859375,46.6342543769532]]]]}},{"type":"Feature","properties":{"name":"集贤县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.057345,46.6438430000001],[131.067345,46.6438430000001],[131.067345,46.6338430000001],[131.057345,46.6338430000001],[131.057345,46.6438430000001]]],[[[131.057345,46.6438430000001],[131.019820585938,46.6500069404297],[131.00298953125,46.6281990791016],[130.98170046875,46.6194869208985],[130.954449492188,46.6030495429688],[130.94298953125,46.5881990791016],[130.937345,46.583843],[130.878702421875,46.5934767890625],[130.820250273438,46.5848390937501],[130.774439726563,46.60284690625],[130.73478640625,46.5969869208985],[130.717345,46.6038430000001],[130.72197390625,46.6492147041016],[130.736763945313,46.6757271552735],[130.721163359375,46.6891664863282],[130.722769804688,46.7091213203126],[130.706451445313,46.7383663154297],[130.66197390625,46.7484712958984],[130.6514075,46.7721535468751],[130.656099882813,46.8305501533204],[130.727550078125,46.8248085761719],[130.776754179688,46.8596938300781],[130.811373320313,46.8569124580079],[130.829722929688,46.8782112861329],[130.85271609375,46.8884712958985],[130.86197390625,46.9100185371094],[130.842022734375,46.9084151435548],[130.824517851563,46.9287337470704],[130.93888796875,46.9495967841797],[130.997345,46.982212140625],[131.022345,46.9682637763672],[131.055982695313,46.9870314765626],[131.083961210938,46.9545534492188],[131.211099882813,46.9647689033203],[131.390772734375,47.0220192695313],[131.402740507813,47.0617562080079],[131.547345,47.073843],[131.54271609375,47.0584712958984],[131.530484648438,47.0251662421875],[131.51951296875,46.888579328125],[131.627345,46.883843],[131.622784453125,46.844712140625],[131.563170195313,46.8180178046876],[131.500860625,46.7958803535156],[131.463736601563,46.7374080634766],[131.475308867188,46.6788430000001],[131.470367460938,46.653843],[131.476060820313,46.625048444336],[131.467345,46.6038430000001],[131.451969023438,46.5961989570313],[131.433985625,46.610483625],[131.387345,46.613843],[131.382799101563,46.619521100586],[131.358922148438,46.6165511298829],[131.329346953125,46.6652400947266],[131.342896757813,46.6882900214844],[131.351793242188,46.720639875],[131.327345,46.7175991035157],[131.312183867188,46.7194850898438],[131.254722929688,46.7064327216797],[131.247769804688,46.7582900214844],[131.284722929688,46.7365663886719],[131.311793242188,46.7422743964844],[131.291793242188,46.7582900214844],[131.282896757813,46.7793959785157],[131.258912382813,46.7882900214844],[131.242896757813,46.7682900214844],[131.214620390625,46.7456447578125],[131.207345,46.703843],[131.19263796875,46.6980611396484],[131.17478640625,46.7006990791016],[131.115953398438,46.6775710273438],[131.101954375,46.6796395087891],[131.070181914063,46.6604744697266],[131.057345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"尖山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.207345,46.703843],[131.211158476563,46.6776552558594],[131.2566809375,46.6621413398438],[131.24064578125,46.6393007636719],[131.246202421875,46.6214583564454],[131.231158476563,46.6000307441406],[131.227345,46.583843],[131.213077421875,46.5895772529298],[131.139674101563,46.598339459961],[131.144605742188,46.6269795966797],[131.080640898438,46.6159676337891],[131.067345,46.6338430000001],[131.067345,46.6438430000001],[131.057345,46.6438430000001],[131.070181914063,46.6604744697266],[131.101954375,46.6796395087891],[131.115953398438,46.6775710273438],[131.17478640625,46.7006990791016],[131.19263796875,46.6980611396484],[131.207345,46.703843]]]]}},{"type":"Feature","properties":{"name":"岭东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.057345,46.6438430000001],[131.057345,46.6338430000001],[131.067345,46.6338430000001],[131.080640898438,46.6159676337891],[131.144605742188,46.6269795966797],[131.139674101563,46.598339459961],[131.213077421875,46.5895772529298],[131.227345,46.583843],[131.25142703125,46.5779274726563],[131.287345,46.573843],[131.291793242188,46.5582900214844],[131.304039335938,46.5374562812501],[131.298736601563,46.49483909375],[131.36162234375,46.4706679511719],[131.44447390625,46.4809737373047],[131.440650664063,46.45022971875],[131.454039335938,46.4274562812501],[131.448004179688,46.3789492011719],[131.477345,46.3738430000001],[131.461456328125,46.3462831855469],[131.328199492188,46.3598763251954],[131.267706328125,46.40276878125],[131.25197390625,46.3892147041016],[131.247345,46.363843],[131.222486601563,46.3696028876953],[131.185108671875,46.3640792060547],[131.140767851563,46.3908266425781],[131.117345,46.3873653388672],[131.097345,46.3903206611329],[131.082345,46.3881038642578],[131.064771757813,46.3907015205078],[131.05298953125,46.4194869208985],[131.017452421875,46.4407399726563],[131.024244414063,46.4866945625001],[130.960699492188,46.5127022529297],[130.963546171875,46.531982038086],[130.94170046875,46.5681990791016],[130.937345,46.583843],[130.94298953125,46.5881990791016],[130.954449492188,46.6030495429688],[130.98170046875,46.6194869208985],[131.00298953125,46.6281990791016],[131.019820585938,46.6500069404297],[131.057345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"饶河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.137345,46.913843],[133.125152617188,46.9172664619141],[133.133922148438,46.9260353828126],[133.137345,46.913843]]],[[[133.187345,47.003843],[133.183922148438,46.9916506171875],[133.175152617188,47.000419538086],[133.187345,47.003843]]],[[[133.217345,47.063843],[133.213922148438,47.0516506171875],[133.205152617188,47.060419538086],[133.217345,47.063843]]],[[[133.137345,46.913843],[133.145557890625,46.9195131660157],[133.14107546875,46.9395131660156],[133.15361453125,46.9481728339844],[133.150982695313,46.9599306464844],[133.18142703125,46.9797585273438],[133.197345,46.9838430000001],[133.197345,46.973843],[133.185152617188,46.9704195380859],[133.193922148438,46.9616506171876],[133.197345,46.973843],[133.210152617188,46.9788430000001],[133.197345,46.9838430000001],[133.20547,47.0001845527344],[133.187345,47.003843],[133.190343046875,47.0108461738281],[133.220260039063,47.0183162666016],[133.198258085938,47.0277309394532],[133.209288359375,47.0442287421875],[133.223717070313,47.0345833564453],[133.230343046875,47.0582814765625],[133.217345,47.063843],[133.222926054688,47.0790358710938],[133.211646757813,47.0887532783203],[133.23963015625,47.1282234931641],[133.25197390625,47.1692147041016],[133.26271609375,47.1784712958985],[133.2766028125,47.1945870185547],[133.2927746875,47.2085195136719],[133.285772734375,47.295639875],[133.34271609375,47.3284712958985],[133.39197390625,47.3992147041016],[133.447345,47.463843],[133.500440703125,47.44343284375],[133.587843046875,47.4325618720704],[133.616261015625,47.5000014472657],[133.6440246875,47.5346724677735],[133.717345,47.543843],[133.726641875,47.533437116211],[133.841641875,47.5402913642579],[133.970235625,47.5266310859375],[134.029698515625,47.530175397461],[134.1020715625,47.5042055488281],[134.183560820313,47.5611263251954],[134.25830203125,47.4274031806641],[134.302061796875,47.4391243720703],[134.327345,47.4438430000001],[134.322896757813,47.4382900214844],[134.265347929688,47.3978383613282],[134.249752226563,47.3608235908203],[134.174322539063,47.3329378486329],[134.1498840625,47.2531624580079],[134.168785429688,47.2295571113281],[134.210347929688,47.2120424628907],[134.224879179688,47.1742360664062],[134.221724882813,47.148843],[134.22490359375,47.123280866211],[134.205152617188,47.0986177802735],[134.128267851563,47.0874282050782],[134.111676054688,47.0592031074219],[134.113741484375,47.0426076484375],[134.08818484375,47.0005324531251],[134.060533476563,46.9783901191407],[134.066090117188,46.9337227607422],[134.049019804688,46.9046840644532],[134.032896757813,46.8482900214844],[134.013355742188,46.8150453925781],[134.041241484375,46.7927150703125],[134.043013945313,46.7784828925782],[134.01931765625,46.7381764960938],[134.02552859375,46.6882601142579],[133.999215117188,46.6258138251953],[133.917261992188,46.6023836494141],[133.886378203125,46.5290840888672],[133.867345,46.513843],[133.86170046875,46.5181990791016],[133.75267703125,46.536108625],[133.722345,46.5178108955078],[133.70298953125,46.5294869208984],[133.658277617188,46.5419368720704],[133.607345,46.5344100166016],[133.572345,46.5395821357422],[133.527432890625,46.5329451728516],[133.493326445313,46.5123696113281],[133.48298953125,46.5494869208985],[133.477345,46.553843],[133.471685820313,46.5685604072266],[133.473839140625,46.5858699775391],[133.494595976563,46.6211751533204],[133.43937625,46.6599867988282],[133.444381132813,46.7002016425782],[133.398917265625,46.7366085029297],[133.329478789063,46.7486928535157],[133.30677859375,46.7770400214845],[133.254049101563,46.809067609375],[133.221793242188,46.8182900214844],[133.192896757813,46.8393959785156],[133.161236601563,46.8527370429688],[133.128858671875,46.8717696357423],[133.137345,46.893843],[133.137345,46.913843]]]]}},{"type":"Feature","properties":{"name":"四方台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.291793242188,46.7582900214844],[131.311793242188,46.7422743964844],[131.284722929688,46.7365663886719],[131.247769804688,46.7582900214844],[131.254722929688,46.7064327216797],[131.312183867188,46.7194850898438],[131.327345,46.7175991035157],[131.351793242188,46.720639875],[131.342896757813,46.6882900214844],[131.329346953125,46.6652400947266],[131.358922148438,46.6165511298829],[131.382799101563,46.619521100586],[131.387345,46.613843],[131.382535429688,46.6086525703126],[131.366964140625,46.5942244697266],[131.343678007813,46.5690938544923],[131.32252078125,46.5682552314453],[131.294986601563,46.5979750800782],[131.287345,46.573843],[131.25142703125,46.5779274726563],[131.227345,46.583843],[131.231158476563,46.6000307441406],[131.246202421875,46.6214583564454],[131.24064578125,46.6393007636719],[131.2566809375,46.6621413398438],[131.211158476563,46.6776552558594],[131.207345,46.703843],[131.214620390625,46.7456447578125],[131.242896757813,46.7682900214844],[131.258912382813,46.7882900214844],[131.282896757813,46.7793959785157],[131.291793242188,46.7582900214844]]]]}},{"type":"Feature","properties":{"name":"友谊县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[132.244224882813,46.9054213691407],[132.193385039063,46.8740651679688],[132.191803007813,46.8585201240235],[132.213595,46.8204726386719],[132.207345,46.803843],[132.17197390625,46.7792147041016],[132.16271609375,46.7684712958985],[132.15197390625,46.7592147041016],[132.14271609375,46.7384712958985],[132.12314578125,46.7216115546875],[132.077916289063,46.707993390625],[132.062105742188,46.7092641425781],[132.032266875,46.6983065009766],[132.01271609375,46.7092147041016],[131.984761992188,46.7184712958985],[131.97271609375,46.6784712958984],[131.90197390625,46.6292147041016],[131.89271609375,46.6184712958985],[131.8666809375,46.5960414863282],[131.787345,46.6038430000001],[131.771793242188,46.6082900214844],[131.760850859375,46.6342543769532],[131.707345,46.6275991035157],[131.687345,46.6300868964844],[131.612174101563,46.6207369208984],[131.602896757813,46.5882900214844],[131.589810820313,46.5542360664063],[131.593023710938,46.5283901191407],[131.579249296875,46.5173622871094],[131.539210234375,46.5223427558594],[131.522896757813,46.5793959785156],[131.506265898438,46.5927150703126],[131.467345,46.6038430000001],[131.476060820313,46.625048444336],[131.470367460938,46.653843],[131.475308867188,46.6788430000001],[131.463736601563,46.7374080634766],[131.500860625,46.7958803535156],[131.563170195313,46.8180178046876],[131.622784453125,46.844712140625],[131.627345,46.883843],[131.712808867188,46.8793056464844],[131.7255090625,46.8640126777344],[131.748267851563,46.8829177070313],[131.767345,46.9058815742187],[131.789420195313,46.8793056464844],[131.861881132813,46.8896797919922],[131.852808867188,46.8993056464844],[131.822808867188,46.9123165107422],[131.833155546875,46.9544985175781],[131.954342070313,46.9883803535156],[132.05611453125,46.9779402900391],[132.161881132813,46.9583803535156],[132.261534453125,46.945630109375],[132.241793242188,46.9292330146485],[132.244224882813,46.9054213691407]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大同区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.087345,45.903843],[125.099537382813,45.900419538086],[125.090767851563,45.8916506171876],[125.087345,45.903843]]],[[[125.087345,45.903843],[125.05752078125,45.922997663086],[125.03298953125,45.9081990791016],[124.99170046875,45.8994869208985],[124.980806914063,45.8853755927734],[124.952345,45.8895821357422],[124.942027617188,45.8880568671875],[124.875499296875,45.9171303535157],[124.811768828125,45.8698799873047],[124.80298953125,45.8181990791016],[124.797345,45.8038430000001],[124.752281523438,45.7704140449219],[124.702896757813,45.7893959785157],[124.6586340625,45.8020516181641],[124.642896757813,45.8393959785157],[124.626920195313,45.8482900214844],[124.574893828125,45.8177053046876],[124.5061340625,45.8306716132813],[124.482896757813,45.8714345527344],[124.541881132813,45.896288678711],[124.551793242188,45.9157820869141],[124.382345,45.9369759345704],[124.371632109375,45.9624025703125],[124.336978789063,45.9901528144531],[124.327345,46.0238430000001],[124.331793242188,46.0293959785157],[124.412896757813,46.0382900214844],[124.43759890625,46.0528090644531],[124.451793242188,46.0942659736328],[124.416265898438,46.1227150703125],[124.355972929688,46.1399532294922],[124.322896757813,46.1593959785156],[124.25259890625,46.1794960761719],[124.23556765625,46.17737815625],[124.222896757813,46.2139943671876],[124.273658476563,46.2448262763672],[124.308970976563,46.2240700507813],[124.4228528125,46.2382350898438],[124.43963015625,46.2591854072266],[124.5370715625,46.2686971259766],[124.564776640625,46.3143074775391],[124.556285429688,46.3825478339844],[124.637345,46.4438430000001],[124.684947539063,46.4316268134766],[124.72326296875,46.4097585273438],[124.727345,46.403843],[124.739595976563,46.3901308417969],[124.7894934375,46.3583956123048],[124.742803984375,46.291552350586],[124.741749296875,46.273843],[124.7426575,46.2585903144532],[124.732061796875,46.2491243720703],[124.722613554688,46.2285292792969],[124.710069609375,46.2292763496094],[124.677906523438,46.1932802558594],[124.642628203125,46.1617568183594],[124.678077421875,46.1497536445313],[124.732061796875,46.1691243720704],[124.7626575,46.1785720039063],[124.7608996875,46.2080989814453],[124.835777617188,46.2281533027344],[124.89259890625,46.2315401435548],[124.917345,46.203843],[124.905416289063,46.1946364570313],[124.90095828125,46.1644509101563],[124.91170046875,46.1381990791016],[124.929195585938,46.1091963935547],[124.91298953125,46.0881990791016],[124.87298953125,46.0642757392578],[124.901773710938,46.0549288154298],[124.959581328125,46.0717848945312],[125.060445585938,46.0866902900391],[125.063082304688,46.0688430000001],[125.059967070313,46.0477529121094],[125.10170046875,46.0539199042969],[125.09298953125,46.0381990791016],[125.081314726563,46.0291872382813],[125.087345,46.013843],[125.094810820313,45.9944228339844],[125.104156523438,45.9192958808594],[125.091793242188,45.9093959785157],[125.087345,45.903843]]]]}},{"type":"Feature","properties":{"name":"杜尔伯特蒙古族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.612896757813,46.7282900214844],[124.592896757813,46.6762581611328],[124.621793242188,46.6482900214844],[124.690787382813,46.6063838935547],[124.69439578125,46.577348859375],[124.63892703125,46.5539754462891],[124.616969023438,46.4968508125],[124.637345,46.4438430000001],[124.556285429688,46.3825478339844],[124.564776640625,46.3143074775391],[124.5370715625,46.2686971259766],[124.43963015625,46.2591854072266],[124.4228528125,46.2382350898438],[124.308970976563,46.2240700507813],[124.273658476563,46.2448262763672],[124.222896757813,46.2139943671876],[124.23556765625,46.17737815625],[124.25259890625,46.1794960761719],[124.322896757813,46.1593959785156],[124.355972929688,46.1399532294922],[124.416265898438,46.1227150703125],[124.451793242188,46.0942659736328],[124.43759890625,46.0528090644531],[124.412896757813,46.0382900214844],[124.331793242188,46.0293959785157],[124.327345,46.0238430000001],[124.32170046875,46.0194869208985],[124.310787382813,45.9677614570312],[124.2134778125,45.9279366279297],[124.177345,45.9332759833984],[124.135264921875,45.9270577216797],[124.10427859375,45.8869118476563],[124.057345,45.8738430000001],[124.044097929688,45.8886702705078],[123.99923953125,45.9025215888672],[123.952628203125,45.9417568183594],[123.973233671875,45.9796840644532],[123.9989075,45.978153913086],[124.022061796875,45.9806917548829],[123.995753203125,46.0042024970704],[123.982628203125,46.0197200751953],[124.032769804688,46.0167317939453],[124.031070585938,46.04524925],[123.994254179688,46.0621462226563],[124.01353640625,46.0793758369141],[123.991749296875,46.098843],[124.002628203125,46.1085616279297],[124.012061796875,46.1206917548828],[123.99185671875,46.1387453437501],[124.002886992188,46.1590431953125],[123.9720325,46.1685720039063],[123.9726575,46.1790956855469],[123.943468046875,46.2051784492188],[123.973829375,46.2191139960938],[123.9508996875,46.2396016669922],[123.953228789063,46.2786562324219],[123.940494414063,46.2885616279297],[123.915679960938,46.2607881904297],[123.899678984375,46.2491243720703],[123.902769804688,46.3009542060547],[123.853570585938,46.2980220771485],[123.837345,46.303843],[123.856373320313,46.3463442207031],[123.834288359375,46.3646895576172],[123.863834257813,46.3892330146485],[123.860069609375,46.4261556220703],[123.818858671875,46.444028546875],[123.833233671875,46.4691213203125],[123.810816679688,46.478843],[123.813834257813,46.5084529853516],[123.797642851563,46.5219026923828],[123.814620390625,46.5515419746094],[123.810753203125,46.5894802070313],[123.745308867188,46.6438430000001],[123.7631653125,46.6586788154297],[123.746983671875,46.6869307685548],[123.777047148438,46.7119026923828],[123.758780546875,46.7437929511719],[123.817345,46.7378237128906],[123.842491484375,46.7403865791016],[123.851881132813,46.7083803535157],[123.867159453125,46.6817079902344],[123.932061796875,46.7093813300782],[123.951954375,46.7073537421875],[123.961881132813,46.7193056464844],[123.992896757813,46.7384352851563],[123.991636992188,46.7507942939453],[124.013541289063,46.7689882636719],[123.991881132813,46.7783803535157],[123.972808867188,46.8093056464844],[123.951881132813,46.8183803535157],[123.942808867188,46.8393056464844],[123.9132434375,46.8521279121095],[123.932808867188,46.8683803535156],[123.95095828125,46.9102303291016],[124.01025515625,46.9594863105469],[123.997345,46.993843],[124.00142703125,46.9997585273437],[124.06326296875,47.0079274726563],[124.076197539063,47.0266628242188],[124.071051054688,47.0496169257813],[124.09326296875,47.0579274726563],[124.14142703125,47.0997585273438],[124.18326296875,47.1279274726563],[124.187345,47.1338430000001],[124.299947539063,47.1394197822266],[124.337345,47.1338430000001],[124.347735625,47.0933571601562],[124.381724882813,47.0712233710938],[124.53326296875,47.0197585273438],[124.54142703125,46.9579274726563],[124.567345,46.9438430000001],[124.628350859375,46.9190535712891],[124.680728789063,46.8771089912109],[124.703453398438,46.8384493232422],[124.658814726563,46.8256850410156],[124.621793242188,46.7793959785157],[124.612896757813,46.7282900214844]]]]}},{"type":"Feature","properties":{"name":"红岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.964971953125,46.2469484687501],[124.952896757813,46.2182900214844],[124.917345,46.203843],[124.89259890625,46.2315401435548],[124.835777617188,46.2281533027344],[124.7608996875,46.2080989814453],[124.7626575,46.1785720039063],[124.732061796875,46.1691243720704],[124.678077421875,46.1497536445313],[124.642628203125,46.1617568183594],[124.677906523438,46.1932802558594],[124.710069609375,46.2292763496094],[124.722613554688,46.2285292792969],[124.732061796875,46.2491243720703],[124.7426575,46.2585903144532],[124.741749296875,46.273843],[124.742803984375,46.291552350586],[124.7894934375,46.3583956123048],[124.739595976563,46.3901308417969],[124.727345,46.403843],[124.796744414063,46.4236855292969],[124.811793242188,46.4593959785156],[124.825357695313,46.482470319336],[124.868912382813,46.5008235908204],[124.891793242188,46.5293959785157],[124.904742460938,46.5397670722657],[124.917345,46.583843],[124.97955203125,46.5760622382813],[124.997345,46.553843],[125.004268828125,46.537353131836],[124.99326296875,46.5079274726563],[124.97142703125,46.4997585273438],[124.937877226563,46.4380178046876],[124.903829375,46.4145125556641],[124.96091921875,46.3931514716797],[124.97142703125,46.3779274726562],[125.017345,46.3738430000001],[125.026163359375,46.3509041572266],[125.010772734375,46.3385811591797],[125.04552859375,46.3286440253907],[125.054078398438,46.25991721875],[124.964971953125,46.2469484687501]]]]}},{"type":"Feature","properties":{"name":"林甸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.383922148438,47.2660353828126],[124.387345,47.2538430000001],[124.375152617188,47.2572664619141],[124.383922148438,47.2660353828126]]],[[[125.162808867188,47.3893056464844],[125.178199492188,47.3707759833985],[125.306217070313,47.3838246894532],[125.322808867188,47.3093056464844],[125.327345,47.2838430000001],[125.32326296875,47.1479274726563],[125.3105871875,47.1391762519532],[125.274171171875,47.0832564521485],[125.31142703125,47.0279274726562],[125.327345,47.0238430000001],[125.333985625,47.010483625],[125.337345,46.993843],[125.2957825,47.0084108710937],[125.23408328125,46.9659560371094],[125.171041289063,46.8765340400391],[125.157345,46.8638430000001],[125.062574492188,46.8697505927734],[124.9831653125,46.8650179267578],[124.977345,46.8338430000001],[124.885284453125,46.8249575019532],[124.866026640625,46.8465126777344],[124.732081328125,46.8385292792969],[124.722628203125,46.8569283271484],[124.772628203125,46.8685616279297],[124.792061796875,46.8983034492188],[124.719049101563,46.9820174384766],[124.795406523438,47.0055959296876],[124.769429960938,47.0385616279298],[124.715421171875,47.0092116523438],[124.64619265625,46.9931056953125],[124.578487578125,46.9563118720704],[124.567345,46.9438430000001],[124.54142703125,46.9579274726563],[124.53326296875,47.0197585273438],[124.381724882813,47.0712233710938],[124.347735625,47.0933571601562],[124.337345,47.1338430000001],[124.378370390625,47.1574977851563],[124.4216809375,47.1948085761719],[124.401265898438,47.250400006836],[124.402745390625,47.268843],[124.401060820313,47.2898140693359],[124.4227746875,47.3085195136719],[124.420504179688,47.3367299628907],[124.477345,47.353843],[124.4822278125,47.3376284003907],[124.517345,47.3404500556641],[124.552803984375,47.3376009345703],[124.627486601563,47.3061495185548],[124.70197390625,47.3392147041016],[124.790660429688,47.3728700996094],[124.82197390625,47.4092147041016],[124.87271609375,47.4184712958985],[124.903277617188,47.4355208564453],[125.01271609375,47.4684712958985],[125.017345,47.4738430000001],[125.042808867188,47.4693056464844],[125.071881132813,47.3983803535157],[125.162808867188,47.3893056464844]]]]}},{"type":"Feature","properties":{"name":"龙凤区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.237345,46.463843],[125.233922148438,46.4760353828125],[125.225152617188,46.4672664619141],[125.26197390625,46.4243849921875],[125.237701445313,46.4169313789063],[125.153726835938,46.4297273994141],[125.130738554688,46.4495351386719],[125.170660429688,46.4839302802735],[125.097345,46.4780397773438],[125.043033476563,46.4824037910156],[125.041944609375,46.468843],[125.043258085938,46.4524715400391],[124.981070585938,46.4288729072266],[125.03197390625,46.4061598945313],[125.02271609375,46.3784712958985],[125.017345,46.3738430000001],[124.97142703125,46.3779274726562],[124.96091921875,46.3931514716797],[124.903829375,46.4145125556641],[124.937877226563,46.4380178046876],[124.97142703125,46.4997585273438],[124.99326296875,46.5079274726563],[125.004268828125,46.537353131836],[124.997345,46.553843],[125.04978640625,46.5589626289063],[125.106597929688,46.5712544990235],[125.134327421875,46.6462502265625],[125.16341921875,46.6585097480469],[125.146925078125,46.6865682197266],[125.207345,46.703843],[125.250235625,46.6912569404297],[125.268687773438,46.6590395332031],[125.173717070313,46.6483901191407],[125.233834257813,46.5984529853516],[125.231807890625,46.5785781074219],[125.243682890625,46.5469741035157],[125.241803007813,46.5285201240234],[125.25853640625,46.4993056464844],[125.221881132813,46.5083803535157],[125.182686796875,46.5365883613282],[125.156173125,46.5145613837891],[125.202022734375,46.488300397461],[125.249176054688,46.4931069160156],[125.263287382813,46.468466413086],[125.237345,46.463843]]]]}},{"type":"Feature","properties":{"name":"让胡路区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.722628203125,46.8569283271484],[124.732081328125,46.8385292792969],[124.866026640625,46.8465126777344],[124.885284453125,46.8249575019532],[124.977345,46.8338430000001],[125.031822539063,46.8454817939454],[125.012061796875,46.8091243720704],[125.002003203125,46.7232588935547],[124.942628203125,46.6985616279297],[124.89162234375,46.6789553046876],[124.9026575,46.6690956855469],[124.90095828125,46.6405940986328],[124.9126575,46.6190688300781],[124.9115246875,46.6000661445313],[124.917345,46.583843],[124.904742460938,46.5397670722657],[124.891793242188,46.5293959785157],[124.868912382813,46.5008235908204],[124.825357695313,46.482470319336],[124.811793242188,46.4593959785156],[124.796744414063,46.4236855292969],[124.727345,46.403843],[124.72326296875,46.4097585273438],[124.684947539063,46.4316268134766],[124.637345,46.4438430000001],[124.616969023438,46.4968508125],[124.63892703125,46.5539754462891],[124.69439578125,46.577348859375],[124.690787382813,46.6063838935547],[124.621793242188,46.6482900214844],[124.592896757813,46.6762581611328],[124.612896757813,46.7282900214844],[124.621793242188,46.7793959785157],[124.658814726563,46.8256850410156],[124.703453398438,46.8384493232422],[124.680728789063,46.8771089912109],[124.628350859375,46.9190535712891],[124.567345,46.9438430000001],[124.578487578125,46.9563118720704],[124.64619265625,46.9931056953125],[124.715421171875,47.0092116523438],[124.769429960938,47.0385616279298],[124.795406523438,47.0055959296876],[124.719049101563,46.9820174384766],[124.792061796875,46.8983034492188],[124.772628203125,46.8685616279297],[124.722628203125,46.8569283271484]]]]}},{"type":"Feature","properties":{"name":"萨尔图区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.157345,46.8638430000001],[125.152081328125,46.83868675],[125.191744414063,46.8199678779297],[125.141949492188,46.7587837958984],[125.172535429688,46.7390334296875],[125.182154570313,46.7286525703125],[125.202535429688,46.7190334296875],[125.207345,46.703843],[125.146925078125,46.6865682197266],[125.16341921875,46.6585097480469],[125.134327421875,46.6462502265625],[125.106597929688,46.5712544990235],[125.04978640625,46.5589626289063],[124.997345,46.553843],[124.97955203125,46.5760622382813],[124.917345,46.583843],[124.9115246875,46.6000661445313],[124.9126575,46.6190688300781],[124.90095828125,46.6405940986328],[124.9026575,46.6690956855469],[124.89162234375,46.6789553046876],[124.942628203125,46.6985616279297],[125.002003203125,46.7232588935547],[125.012061796875,46.8091243720704],[125.031822539063,46.8454817939454],[124.977345,46.8338430000001],[124.9831653125,46.8650179267578],[125.062574492188,46.8697505927734],[125.157345,46.8638430000001]]]]}},{"type":"Feature","properties":{"name":"肇源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.382345,45.9369759345704],[124.551793242188,45.9157820869141],[124.541881132813,45.896288678711],[124.482896757813,45.8714345527344],[124.5061340625,45.8306716132813],[124.574893828125,45.8177053046876],[124.626920195313,45.8482900214844],[124.642896757813,45.8393959785157],[124.6586340625,45.8020516181641],[124.702896757813,45.7893959785157],[124.752281523438,45.7704140449219],[124.797345,45.8038430000001],[124.858258085938,45.7953395820313],[124.912252226563,45.7587392402344],[124.922823515625,45.758954694336],[124.94224734375,45.7387429023438],[124.96244265625,45.7289430976563],[124.9745715625,45.6792018867188],[125.03916140625,45.7013112617188],[125.06244265625,45.6789430976563],[125.103629179688,45.6360762763672],[125.224718046875,45.6183815742188],[125.287345,45.6196590400391],[125.362345,45.6181288886719],[125.412056914063,45.6191432929688],[125.490094023438,45.5789430976563],[125.521197539063,45.6036183906251],[125.533956328125,45.6559658027344],[125.61244265625,45.6687429023438],[125.659581328125,45.6808229804688],[125.707345,45.673843],[125.707345,45.663843],[125.717345,45.663843],[125.724605742188,45.621103131836],[125.753609648438,45.6092317939454],[125.741549101563,45.589233625],[125.743824492188,45.5738430000001],[125.740670195313,45.5524935126954],[125.75170046875,45.5381990791016],[125.757345,45.5338430000001],[125.7451965625,45.5197444892578],[125.687345,45.513843],[125.66013796875,45.5033846259766],[125.63095828125,45.5205361152344],[125.608472929688,45.517739484375],[125.586832304688,45.4907149482422],[125.521793242188,45.4793959785156],[125.488546171875,45.4598537421875],[125.472896757813,45.4793959785156],[125.420548125,45.4882900214844],[125.423590117188,45.463843],[125.420142851563,45.4361208320313],[125.359249296875,45.3873622871094],[125.338472929688,45.3899465156251],[125.312857695313,45.4219313789063],[125.30267703125,45.3977687812501],[125.282896757813,45.4093959785157],[125.252935820313,45.4182900214844],[125.175421171875,45.3961556220703],[125.147345,45.4126601386719],[125.092711210938,45.3805458808594],[125.087345,45.3738430000001],[125.071881132813,45.3783803535157],[125.052808867188,45.3953694892579],[125.082808867188,45.4083803535157],[125.091881132813,45.4213442207032],[125.062345,45.4183333564453],[125.045494414063,45.4200508857422],[125.027471953125,45.4616060615235],[125.046529570313,45.4948751044923],[124.982345,45.4883333564453],[124.965406523438,45.4900600410157],[124.932808867188,45.5293056464844],[124.914234648438,45.5447322822266],[124.902808867188,45.5183803535157],[124.880015898438,45.4867098212891],[124.884610625,45.4416036201172],[124.877725859375,45.4293056464845],[124.834517851563,45.4540535712891],[124.769888945313,45.4297695136719],[124.772896757813,45.4592702460938],[124.749420195313,45.4683803535156],[124.730391875,45.4454744697266],[124.687345,45.4498622871094],[124.669107695313,45.4480031562501],[124.657345,45.433843],[124.61224734375,45.4387429023438],[124.57216921875,45.4524599433594],[124.572803984375,45.4214650703125],[124.525162382813,45.4089430976563],[124.459947539063,45.4584255195313],[124.395924101563,45.4365114570313],[124.367345,45.4538430000001],[124.36298953125,45.4694869208985],[124.351392851563,45.4887075019532],[124.36312625,45.5185512519531],[124.358785429688,45.5479225898438],[124.283922148438,45.5368593574219],[124.259093046875,45.5518367744141],[124.264947539063,45.5914437080078],[124.242345,45.5881038642578],[124.219049101563,45.5915462470704],[124.225924101563,45.6380666328126],[124.18486453125,45.6132985664063],[124.128604765625,45.6216121650391],[124.143424101563,45.6593080878906],[124.120611601563,45.6686452460938],[124.139078398438,45.6829012275391],[124.098365507813,45.6995638251953],[124.08298953125,45.7194869208985],[124.077345,45.7238430000001],[124.067725859375,45.7342244697266],[124.05093875,45.7497780585938],[124.01244265625,45.7482521796875],[123.992535429688,45.7759883857423],[124.055792265625,45.7960158515625],[124.023214140625,45.8262026191406],[124.06896609375,45.8406880927735],[124.057345,45.8738430000001],[124.10427859375,45.8869118476563],[124.135264921875,45.9270577216797],[124.177345,45.9332759833984],[124.2134778125,45.9279366279297],[124.310787382813,45.9677614570312],[124.32170046875,46.0194869208985],[124.327345,46.0238430000001],[124.336978789063,45.9901528144531],[124.371632109375,45.9624025703125],[124.382345,45.9369759345704]]]]}},{"type":"Feature","properties":{"name":"肇州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.087345,45.903843],[125.090767851563,45.8916506171876],[125.099537382813,45.900419538086],[125.091793242188,45.9093959785157],[125.104156523438,45.9192958808594],[125.094810820313,45.9944228339844],[125.087345,46.013843],[125.132896757813,46.0382900214844],[125.155572539063,46.0756172919922],[125.192896757813,46.0982900214844],[125.221793242188,46.1343715644532],[125.151890898438,46.1256771064453],[125.123702421875,46.1608779121094],[125.102345,46.1582210517579],[125.092345,46.1594649482422],[125.08181765625,46.1581557441407],[125.072896757813,46.2048390937501],[125.099151640625,46.2182900214844],[125.112345,46.1869771552735],[125.147735625,46.1913796210938],[125.202506132813,46.1703279853516],[125.211793242188,46.1482900214844],[125.283316679688,46.1358431220704],[125.347345,46.1438430000001],[125.361241484375,46.1051149726562],[125.412633085938,45.8828499580079],[125.689581328125,45.9054494453125],[125.709078398438,45.800985944336],[125.782061796875,45.787362897461],[125.762628203125,45.7685616279297],[125.712628203125,45.7569283271485],[125.722061796875,45.7485616279297],[125.768004179688,45.7343764472657],[125.797999296875,45.6914315009766],[125.732061796875,45.6791243720703],[125.722628203125,45.6685616279297],[125.717345,45.663843],[125.717345,45.673843],[125.707345,45.673843],[125.659581328125,45.6808229804688],[125.61244265625,45.6687429023438],[125.533956328125,45.6559658027344],[125.521197539063,45.6036183906251],[125.490094023438,45.5789430976563],[125.412056914063,45.6191432929688],[125.362345,45.6181288886719],[125.287345,45.6196590400391],[125.224718046875,45.6183815742188],[125.103629179688,45.6360762763672],[125.06244265625,45.6789430976563],[125.03916140625,45.7013112617188],[124.9745715625,45.6792018867188],[124.96244265625,45.7289430976563],[124.94224734375,45.7387429023438],[124.922823515625,45.758954694336],[124.912252226563,45.7587392402344],[124.858258085938,45.7953395820313],[124.797345,45.8038430000001],[124.80298953125,45.8181990791016],[124.811768828125,45.8698799873047],[124.875499296875,45.9171303535157],[124.942027617188,45.8880568671875],[124.952345,45.8895821357422],[124.980806914063,45.8853755927734],[124.99170046875,45.8994869208985],[125.03298953125,45.9081990791016],[125.05752078125,45.922997663086],[125.087345,45.903843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"嘉荫县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.807345,48.603843],[129.810767851563,48.5916506171875],[129.819537382813,48.6004198432618],[129.802896757813,48.6093959785157],[129.701793242188,48.6382900214844],[129.669693632813,48.6839534736328],[129.657345,48.6938430000001],[129.664508085938,48.737439496582],[129.633795195313,48.7788661933594],[129.612623320313,48.7952059150391],[129.60298953125,48.8264736152344],[129.66298953125,48.8681993842773],[129.68701296875,48.9083663154297],[129.65170046875,48.9181993842774],[129.63298953125,48.9294866157227],[129.61170046875,48.9381993842774],[129.587345,48.9528911567383],[129.562735625,48.938046491211],[129.547047148438,48.9403649116211],[129.507345,48.933843],[129.451793242188,48.9482900214844],[129.442896757813,48.9693959785156],[129.431676054688,48.988483197754],[129.43775515625,49.0373488593751],[129.407486601563,49.0501042915039],[129.352345,49.0432457709961],[129.291529570313,49.0508104682618],[129.242896757813,49.0793959785157],[129.22166140625,49.088344953125],[129.231246367188,49.1654048896485],[129.172613554688,49.2636721015625],[129.162896757813,49.3182503486329],[129.230279570313,49.372209394043],[129.280987578125,49.3659023261719],[129.287345,49.373843],[129.326803007813,49.3492150092774],[129.37435671875,49.3588018012696],[129.368873320313,49.4270592475586],[129.417838164063,49.4450408149415],[129.530699492188,49.4143206000977],[129.54271609375,49.3592150092774],[129.55468875,49.2806636787109],[129.605738554688,49.2765615058594],[129.685792265625,49.2984709907227],[129.729127226563,49.2835729194337],[129.74271609375,49.2592150092774],[129.754718046875,49.1804491401367],[129.854366484375,49.1690254951172],[129.849683867188,49.1107131171875],[129.93197390625,49.0957024360352],[129.92271609375,49.0684709907227],[129.90271609375,49.0512401557618],[129.935186796875,49.0297090888672],[130.009508085938,49.0161516547852],[130.0434778125,48.976723859375],[130.120709257813,48.9422627998047],[130.21271609375,48.8892150092774],[130.226104765625,48.8592150092774],[130.29271609375,48.8684709907227],[130.372081328125,48.897616803711],[130.459429960938,48.9046352363281],[130.507178984375,48.8492150092774],[130.55271609375,48.8584709907227],[130.634410429688,48.8884709907227],[130.69197390625,48.8696483588868],[130.67271609375,48.8384709907227],[130.618844023438,48.7920580268555],[130.55271609375,48.6684709907227],[130.514010039063,48.6138796210938],[130.601632109375,48.5874980903321],[130.614405546875,48.4898827338867],[130.651265898438,48.4869210029297],[130.737178984375,48.5184709907227],[130.7671496875,48.4841341376953],[130.731763945313,48.4389455390625],[130.76271609375,48.3692147041016],[130.767345,48.3538430000001],[130.754527617188,48.3389632392579],[130.68197390625,48.3192147041016],[130.672022734375,48.3076638007813],[130.642818632813,48.3100099921875],[130.57197390625,48.2992147041016],[130.510401640625,48.2857851386719],[130.48197390625,48.2984712958985],[130.462022734375,48.3216292548829],[130.417345,48.3180397773438],[130.402022734375,48.3192708564453],[130.392667265625,48.3084151435547],[130.380728789063,48.309374616211],[130.362667265625,48.2884151435547],[130.28033328125,48.2950313544923],[130.2619153125,48.2791664863282],[130.263424101563,48.260400006836],[130.243287382813,48.2055605292969],[130.2419153125,48.1885195136719],[130.26197390625,48.1712404609376],[130.235279570313,48.1674019599609],[130.212345,48.1692446113282],[130.192345,48.1676375556641],[130.172066679688,48.169267194336],[130.127345,48.143843],[130.09197390625,48.1484712958985],[130.07084109375,48.1730007148438],[129.984517851563,48.2227700019532],[129.970865507813,48.2533638740234],[129.912843046875,48.2950270820313],[129.867345,48.3138430000001],[129.883863554688,48.3388362861329],[129.869215117188,48.3613259101563],[129.89326296875,48.3779274726563],[129.90142703125,48.3976625800781],[129.861041289063,48.408026959961],[129.863526640625,48.4191213203126],[129.857345,48.4338430000001],[129.86170046875,48.4394869208985],[129.873585234375,48.5013069892579],[129.846378203125,48.5223079658203],[129.815831328125,48.5038823676759],[129.80298953125,48.5794866157227],[129.789390898438,48.5899837470704],[129.807345,48.603843]]]]}},{"type":"Feature","properties":{"name":"铁力市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.61978640625,47.4452523017578],[128.62349734375,47.4286959052735],[128.609859648438,47.3846877265626],[128.62142703125,47.3679274726562],[128.63361453125,47.3595131660156],[128.631070585938,47.3481661201172],[128.697345,47.303843],[128.69271609375,47.2984712958985],[128.671060820313,47.279814069336],[128.672769804688,47.2585646796876],[128.651773710938,47.2209365058594],[128.653424101563,47.200400006836],[128.63271609375,47.144009015625],[128.664986601563,47.0898360419922],[128.682623320313,47.0884188056641],[128.717345,47.1077913642578],[128.757803984375,47.0852181220704],[128.8287121875,47.1006850410157],[128.862105742188,47.0884218574219],[128.879615507813,47.089829328125],[128.98197390625,47.0308162666016],[128.97271609375,47.0084712958985],[128.95740359375,46.9810237861328],[128.98271609375,46.9592147041016],[128.995235625,46.9311580634766],[129.026788359375,46.8807851386719],[129.05271609375,46.8692147041016],[129.072901640625,46.8457851386719],[129.146851835938,46.8660237861328],[129.164610625,46.8454091621094],[129.21197390625,46.8492147041016],[129.217345,46.853843],[129.24298953125,46.8494869208985],[129.26170046875,46.8381990791016],[129.290787382813,46.8262960029297],[129.313140898438,46.7892336250001],[129.310445585938,46.7709914375],[129.36298953125,46.7494869208985],[129.37170046875,46.7381990791016],[129.4082825,46.728012921875],[129.39298953125,46.7081990791016],[129.3585559375,46.6941072822266],[129.347345,46.653843],[129.34197390625,46.6492147041016],[129.270479765625,46.6362526679688],[129.20201296875,46.5796181464844],[129.197345,46.533843],[129.157642851563,46.5403646064453],[129.10982546875,46.5332985664063],[129.070616484375,46.5569490791016],[129.03298953125,46.5081990791016],[129.02170046875,46.4994869208985],[129.010142851563,46.4845107246094],[128.95298953125,46.5094869208985],[128.891636992188,46.5224330878907],[128.855264921875,46.5170577216797],[128.831832304688,46.4867018867188],[128.787345,46.4932759833985],[128.702955351563,46.4808058906251],[128.69298953125,46.5394869208985],[128.6790246875,46.5750026679688],[128.63205203125,46.5680611396485],[128.59990359375,46.5806990791015],[128.565240507813,46.5755763984375],[128.53298953125,46.5994869208984],[128.49170046875,46.6081990791016],[128.447345,46.6256368232422],[128.389527617188,46.6029073310547],[128.393160429688,46.5783309150391],[128.377086210938,46.5659255195313],[128.352345,46.5695821357423],[128.342345,46.5681038642578],[128.322345,46.571059796875],[128.302345,46.5681038642578],[128.292345,46.5695821357423],[128.282135039063,46.5680727363282],[128.242418242188,46.5796529365235],[128.217345,46.573843],[128.19197390625,46.5784712958985],[128.10865359375,46.5966451240235],[128.053043242188,46.6360744453125],[128.0380871875,46.6695870185548],[127.96197390625,46.7284712958985],[127.929576445313,46.7660744453126],[127.89197390625,46.7984712958985],[127.88271609375,46.8092147041016],[127.814029570313,46.86839378125],[127.78197390625,46.8884712958985],[127.74271609375,46.9192147041016],[127.689918242188,46.9392519355469],[127.66572390625,46.9673311591797],[127.63197390625,46.9884712958985],[127.62271609375,47.0000185371094],[127.6424621875,46.9984316230469],[127.738443632813,47.0133211494141],[127.82259890625,47.0658473945313],[127.93271609375,47.0784712958985],[127.962291289063,47.08933128125],[128.0066809375,47.07718284375],[128.042345,47.080048444336],[128.10588015625,47.0749434638673],[128.173902617188,47.0999233222657],[128.192345,47.098441388672],[128.226436796875,47.1011806464844],[128.25595828125,47.1354476142579],[128.296041289063,47.1605544257813],[128.341998320313,47.1568617988282],[128.355181914063,47.1864064765625],[128.470826445313,47.2342305732422],[128.48197390625,47.2592147041016],[128.494273710938,47.269814069336],[128.490455351563,47.31737815625],[128.53271609375,47.3684712958985],[128.543961210938,47.4058229804688],[128.537345,47.423843],[128.55033328125,47.4426564765625],[128.580264921875,47.4359468818359],[128.607345,47.453843],[128.61978640625,47.4452523017578]]]]}},{"type":"Feature","properties":{"name":"乌伊岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.507345,48.873843],[129.510767851563,48.8616506171876],[129.519537382813,48.8704198432618],[129.51392703125,48.8895098090821],[129.488980742188,48.898843],[129.513673125,48.9080815864258],[129.507345,48.933843],[129.547047148438,48.9403649116211],[129.562735625,48.938046491211],[129.587345,48.9528911567383],[129.61170046875,48.9381993842774],[129.63298953125,48.9294866157227],[129.65170046875,48.9181993842774],[129.68701296875,48.9083663154297],[129.66298953125,48.8681993842773],[129.60298953125,48.8264736152344],[129.612623320313,48.7952059150391],[129.633795195313,48.7788661933594],[129.664508085938,48.737439496582],[129.657345,48.6938430000001],[129.65271609375,48.6884709907227],[129.579654570313,48.6773375678711],[129.58412234375,48.6217107368164],[129.5712121875,48.6067238593751],[129.53197390625,48.5892150092774],[129.4808996875,48.5492150092774],[129.42197390625,48.5584709907227],[129.367340117188,48.5785338569336],[129.23197390625,48.5984709907227],[129.187345,48.6238430000001],[129.192764921875,48.6386046577149],[129.191710234375,48.6517565131836],[129.223951445313,48.6795351386719],[129.158326445313,48.736073834961],[129.1727746875,48.7485192084961],[129.171671171875,48.7622380805665],[129.254293242188,48.7396263862305],[129.251236601563,48.7776448798829],[129.27584109375,48.7913741279298],[129.312667265625,48.7884151435547],[129.328253203125,48.8065056586915],[129.362345,48.8092446113282],[129.372345,48.8084413886719],[129.387345,48.8096465278321],[129.428624296875,48.8063295722657],[129.44271609375,48.8184709907227],[129.45197390625,48.8292150092774],[129.48572390625,48.8503548408203],[129.50197390625,48.8692150092774],[129.507345,48.873843]]]]}},{"type":"Feature","properties":{"name":"汤旺河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.807345,48.603843],[129.819537382813,48.6004198432618],[129.810767851563,48.5916506171875],[129.807345,48.603843]]],[[[129.807345,48.603843],[129.789390898438,48.5899837470704],[129.80298953125,48.5794866157227],[129.815831328125,48.5038823676759],[129.846378203125,48.5223079658203],[129.873585234375,48.5013069892579],[129.86170046875,48.4394869208985],[129.857345,48.4338430000001],[129.773219023438,48.4278969550782],[129.737345,48.4300350166016],[129.712345,48.4285451484375],[129.702159453125,48.4291524482422],[129.632628203125,48.4085616279298],[129.532061796875,48.3991243720703],[129.47595828125,48.3871376777345],[129.413482695313,48.3908614326172],[129.367345,48.3838430000001],[129.235025664063,48.3765987373048],[129.218199492188,48.4472408271485],[129.182154570313,48.4586522651367],[129.143121367188,48.4855123115234],[129.051710234375,48.4663872504883],[128.987345,48.4738430000001],[128.979874296875,48.4920174384766],[129.011519804688,48.5496678901368],[129.023170195313,48.5580181098633],[129.031519804688,48.5696678901367],[129.063170195313,48.5780181098633],[129.083267851563,48.6060616279297],[129.102345,48.6098311591797],[129.117374296875,48.6068608833008],[129.181519804688,48.6196678901368],[129.187345,48.6238430000001],[129.23197390625,48.5984709907227],[129.367340117188,48.5785338569336],[129.42197390625,48.5584709907227],[129.4808996875,48.5492150092774],[129.53197390625,48.5892150092774],[129.5712121875,48.6067238593751],[129.58412234375,48.6217107368164],[129.579654570313,48.6773375678711],[129.65271609375,48.6884709907227],[129.657345,48.6938430000001],[129.669693632813,48.6839534736328],[129.701793242188,48.6382900214844],[129.802896757813,48.6093959785157],[129.807345,48.603843]]]]}},{"type":"Feature","properties":{"name":"带岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.0327746875,47.109189069336],[129.030401640625,47.0796517158204],[129.136178007813,47.0688619208985],[129.16345828125,47.0199587226563],[129.19123171875,46.9577272773438],[129.236070585938,46.8944838691407],[129.22197390625,46.8692147041016],[129.217345,46.853843],[129.21197390625,46.8492147041016],[129.164610625,46.8454091621094],[129.146851835938,46.8660237861328],[129.072901640625,46.8457851386719],[129.05271609375,46.8692147041016],[129.026788359375,46.8807851386719],[128.995235625,46.9311580634766],[128.98271609375,46.9592147041016],[128.95740359375,46.9810237861328],[128.97271609375,47.0084712958985],[128.98197390625,47.0308162666016],[128.879615507813,47.089829328125],[128.862105742188,47.0884218574219],[128.8287121875,47.1006850410157],[128.757803984375,47.0852181220704],[128.717345,47.1077913642578],[128.682623320313,47.0884188056641],[128.664986601563,47.0898360419922],[128.63271609375,47.144009015625],[128.653424101563,47.200400006836],[128.651773710938,47.2209365058594],[128.672769804688,47.2585646796876],[128.671060820313,47.279814069336],[128.69271609375,47.2984712958985],[128.697345,47.303843],[128.712628203125,47.3085616279297],[128.852061796875,47.3591243720703],[128.867345,47.3638430000001],[128.874014921875,47.3272658515625],[128.96271609375,47.2292147041016],[128.97197390625,47.1984712958985],[128.993492460938,47.1681215644531],[128.990279570313,47.1281508613282],[129.0327746875,47.109189069336]]]]}},{"type":"Feature","properties":{"name":"新青区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.857345,48.4338430000001],[129.863526640625,48.4191213203126],[129.861041289063,48.408026959961],[129.90142703125,48.3976625800781],[129.89326296875,48.3779274726563],[129.869215117188,48.3613259101563],[129.883863554688,48.3388362861329],[129.867345,48.3138430000001],[129.861519804688,48.3096681953125],[129.8423059375,48.2598494697266],[129.775133085938,48.2463826728516],[129.803428984375,48.2093288398438],[129.800367460938,48.193843],[129.805186796875,48.1694631171875],[129.791519804688,48.1596681953125],[129.774820585938,48.1363680244141],[129.747554960938,48.1168257880859],[129.731676054688,48.1199629951173],[129.723170195313,48.1040029121094],[129.74345828125,48.0894612861328],[129.73123171875,48.0282155585938],[129.774351835938,47.9988643623047],[129.761519804688,47.9896681953126],[129.753170195313,47.9780178046875],[129.707345,47.9738430000001],[129.698892851563,47.9847914863282],[129.64170046875,48.0081990791016],[129.617921171875,48.0479616523438],[129.597345,48.063843],[129.588453398438,48.0749489570313],[129.571793242188,48.0882900214844],[129.562896757813,48.1393959785156],[129.533521757813,48.2422792792969],[129.461236601563,48.2727370429688],[129.424625273438,48.2942592597657],[129.390728789063,48.3424813056641],[129.367345,48.3838430000001],[129.413482695313,48.3908614326172],[129.47595828125,48.3871376777345],[129.532061796875,48.3991243720703],[129.632628203125,48.4085616279298],[129.702159453125,48.4291524482422],[129.712345,48.4285451484375],[129.737345,48.4300350166016],[129.773219023438,48.4278969550782],[129.857345,48.4338430000001]]]]}},{"type":"Feature","properties":{"name":"红星区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.143121367188,48.4855123115234],[129.182154570313,48.4586522651367],[129.218199492188,48.4472408271485],[129.235025664063,48.3765987373048],[129.367345,48.3838430000001],[129.390728789063,48.3424813056641],[129.424625273438,48.2942592597657],[129.461236601563,48.2727370429688],[129.533521757813,48.2422792792969],[129.562896757813,48.1393959785156],[129.571793242188,48.0882900214844],[129.588453398438,48.0749489570313],[129.597345,48.063843],[129.580889921875,48.0335646796875],[129.517379179688,48.047802350586],[129.45326296875,48.0279274726563],[129.307345,48.023843],[129.31197390625,48.0492147041016],[129.345362578125,48.0963045478516],[129.341236601563,48.1476137519532],[129.29197390625,48.1784712958985],[129.272457304688,48.2222078681641],[129.24197390625,48.2484712958985],[129.217213164063,48.2772078681641],[129.19197390625,48.2884712958985],[129.1673840625,48.3021901679688],[129.09849734375,48.3821492744141],[129.052345,48.3784413886719],[129.025875273438,48.3805684638673],[128.967345,48.413843],[128.945621367188,48.4170088935547],[128.984801054688,48.4563866401367],[128.987345,48.4738430000001],[129.051710234375,48.4663872504883],[129.143121367188,48.4855123115234]]]]}},{"type":"Feature","properties":{"name":"五营区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.025875273438,48.3805684638673],[129.052345,48.3784413886719],[129.09849734375,48.3821492744141],[129.1673840625,48.3021901679688],[129.19197390625,48.2884712958985],[129.217213164063,48.2772078681641],[129.24197390625,48.2484712958985],[129.272457304688,48.2222078681641],[129.29197390625,48.1784712958985],[129.341236601563,48.1476137519532],[129.345362578125,48.0963045478516],[129.31197390625,48.0492147041016],[129.307345,48.023843],[129.30142703125,48.0197585273438],[129.269366484375,47.9721419501953],[129.235513945313,47.9487709785157],[129.21142703125,47.9397585273438],[129.207345,47.9338430000001],[129.17142703125,47.9379274726562],[129.147345,47.953843],[129.18271609375,47.9984712958985],[129.209737578125,48.0590218330078],[129.16056765625,48.0884712958985],[129.14271609375,48.0484712958984],[129.130328398438,48.0377999091797],[129.104449492188,48.0398793769531],[129.020670195313,48.1091786933594],[128.94197390625,48.1584712958984],[128.894928007813,48.1918288398438],[128.86271609375,48.2292147041016],[128.857345,48.2338430000001],[128.857345,48.263843],[128.861519804688,48.2696681953125],[128.90728640625,48.2788430000001],[128.899381132813,48.3188430000001],[128.923472929688,48.3281349921876],[128.914136992188,48.3753865791016],[128.958018828125,48.4008278632813],[128.967345,48.413843],[129.025875273438,48.3805684638673]]]]}},{"type":"Feature","properties":{"name":"伊春区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.933980742188,47.7006832099609],[128.863746367188,47.6593959785157],[128.833863554688,47.6816292548828],[128.826988554688,47.7369014716797],[128.837345,47.763843],[128.845426054688,47.7798183417969],[128.877345,47.7838430000001],[128.928443632813,47.7452022529297],[128.933980742188,47.7006832099609]]]]}},{"type":"Feature","properties":{"name":"翠峦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.59271609375,47.8792147041016],[128.60716921875,47.7999813056641],[128.667345,47.793843],[128.671881132813,47.7883803535156],[128.740797148438,47.7490346503906],[128.744273710938,47.7149263740235],[128.670416289063,47.6727596259766],[128.673448515625,47.6429964423829],[128.623219023438,47.6212105537109],[128.612808867188,47.5283803535156],[128.599288359375,47.5047774482423],[128.607345,47.453843],[128.580264921875,47.4359468818359],[128.55033328125,47.4426564765625],[128.537345,47.423843],[128.526226835938,47.414941022461],[128.472896757813,47.3482900214844],[128.454332304688,47.3393959785156],[128.441016875,47.3859749580078],[128.384605742188,47.409745709961],[128.367345,47.4075991035157],[128.33951296875,47.4110610175782],[128.3454309375,47.458671491211],[128.311793242188,47.4682900214844],[128.302896757813,47.4793959785157],[128.291793242188,47.4882900214844],[128.27400515625,47.5105025458985],[128.21615359375,47.5348799873048],[128.246749296875,47.5593807197266],[128.237345,47.583843],[128.283287382813,47.5980300117188],[128.282047148438,47.618843],[128.2826575,47.629095685547],[128.272061796875,47.6385616279297],[128.262628203125,47.6506917548829],[128.282628203125,47.6685616279297],[128.292515898438,47.7005953193359],[128.312628203125,47.7185616279297],[128.322061796875,47.7302028632813],[128.252764921875,47.7620095039063],[128.273194609375,47.7996059394532],[128.272047148438,47.8188430000001],[128.272838164063,47.8320919013673],[128.332613554688,47.8285292792969],[128.344595976563,47.8546450019532],[128.327345,47.8938430000001],[128.34271609375,47.8984712958985],[128.355577421875,47.9272890449219],[128.39271609375,47.9384712958985],[128.410103789063,47.9586519599609],[128.44271609375,47.9684712958984],[128.478565703125,47.9884712958985],[128.509151640625,47.9767494941406],[128.579000273438,47.9165724921876],[128.59271609375,47.8792147041016]]]]}},{"type":"Feature","properties":{"name":"金山屯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.887345,47.4438430000001],[129.899537382813,47.440419538086],[129.890767851563,47.4316506171875],[129.887345,47.4438430000001]]],[[[129.914835234375,47.5766616035157],[129.927345,47.5538430000001],[129.903804960938,47.5589070869141],[129.914835234375,47.5766616035157]]],[[[129.887345,47.4438430000001],[129.8319153125,47.419189069336],[129.832745390625,47.408843],[129.831485625,47.3931508613282],[129.904932890625,47.3603780341798],[129.8919153125,47.3491664863281],[129.8927746875,47.3384847236329],[129.85197390625,47.3292147041016],[129.847345,47.313843],[129.82224734375,47.3089430976563],[129.732428007813,47.2887392402344],[129.721646757813,47.2889595771484],[129.697252226563,47.3143477607422],[129.62244265625,47.2887429023438],[129.57224734375,47.2789430976563],[129.560328398438,47.2422200751953],[129.492042265625,47.2289430976563],[129.49275515625,47.2639412666015],[129.46224734375,47.2787429023438],[129.434146757813,47.2932186103516],[129.461163359375,47.3456691718751],[129.3864075,47.3587429023438],[129.289112578125,47.3192787910156],[129.201275664063,47.3493428779297],[129.187345,47.3638430000001],[129.206470976563,47.3860427070313],[129.306002226563,47.4434285712891],[129.32197390625,47.4792147041016],[129.359957304688,47.4906508613281],[129.37197390625,47.5247017646485],[129.34197390625,47.5784712958985],[129.337345,47.603843],[129.346710234375,47.6770229316406],[129.43672,47.6970607734376],[129.529888945313,47.6875643134766],[129.583878203125,47.7026601386719],[129.64603640625,47.6793056464845],[129.692808867188,47.6883803535157],[129.701881132813,47.7493056464844],[129.807345,47.753843],[129.872906523438,47.7427053046875],[129.906392851563,47.7168587470703],[129.891314726563,47.6784987617188],[129.918941679688,47.6571742988282],[129.90298953125,47.6181990791016],[129.890362578125,47.5972658515625],[129.89611453125,47.5583309150391],[129.868878203125,47.5373073554688],[129.873082304688,47.5088430000001],[129.870128203125,47.488843],[129.894078398438,47.4790407539063],[129.8814465625,47.4692916083985],[129.887345,47.4438430000001]]]]}},{"type":"Feature","properties":{"name":"西林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.337345,47.603843],[129.34197390625,47.5784712958985],[129.37197390625,47.5247017646485],[129.359957304688,47.4906508613281],[129.32197390625,47.4792147041016],[129.306002226563,47.4434285712891],[129.206470976563,47.3860427070313],[129.187345,47.3638430000001],[129.16000125,47.3696852851563],[129.077345,47.3638430000001],[129.083311796875,47.3800881171875],[129.02271609375,47.4322920966797],[129.03627078125,47.4570705390625],[129.082154570313,47.4966017890626],[129.09197390625,47.5292147041016],[129.15271609375,47.5384712958985],[129.217486601563,47.5920455146485],[129.287198515625,47.5864443183594],[129.32197390625,47.5992147041016],[129.337345,47.603843]]]]}},{"type":"Feature","properties":{"name":"南岔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.567345,47.0238430000001],[129.563922148438,47.0360353828126],[129.555152617188,47.0272664619141],[129.5894153125,46.9894808173829],[129.570362578125,46.9647951484375],[129.52298953125,46.9834181953125],[129.5327746875,46.9550881171875],[129.554483671875,46.9383309150391],[129.551607695313,46.918843],[129.553082304688,46.9088430000001],[129.551519804688,46.8982729316406],[129.580084257813,46.8865828681641],[129.592686796875,46.855786359375],[129.625084257813,46.8138161445313],[129.697471953125,46.7985408759766],[129.691607695313,46.758843],[129.695709257813,46.7310634589844],[129.66298953125,46.7181990791016],[129.579215117188,46.7092201972657],[129.5572278125,46.6807338691407],[129.52170046875,46.6594869208985],[129.497345,46.613843],[129.477345,46.6222432685547],[129.426339140625,46.6008193183594],[129.400787382813,46.6378273750001],[129.36142703125,46.6479274726563],[129.347345,46.653843],[129.3585559375,46.6941072822266],[129.39298953125,46.7081990791016],[129.4082825,46.728012921875],[129.37170046875,46.7381990791016],[129.36298953125,46.7494869208985],[129.310445585938,46.7709914375],[129.313140898438,46.7892336250001],[129.290787382813,46.8262960029297],[129.26170046875,46.8381990791016],[129.24298953125,46.8494869208985],[129.217345,46.853843],[129.22197390625,46.8692147041016],[129.236070585938,46.8944838691407],[129.19123171875,46.9577272773438],[129.16345828125,47.0199587226563],[129.136178007813,47.0688619208985],[129.030401640625,47.0796517158204],[129.0327746875,47.109189069336],[128.990279570313,47.1281508613282],[128.993492460938,47.1681215644531],[128.97197390625,47.1984712958985],[128.96271609375,47.2292147041016],[128.874014921875,47.3272658515625],[128.867345,47.3638430000001],[128.867345,47.373843],[129.02271609375,47.3692147041016],[129.077345,47.3638430000001],[129.16000125,47.3696852851563],[129.187345,47.3638430000001],[129.201275664063,47.3493428779297],[129.289112578125,47.3192787910156],[129.3864075,47.3587429023438],[129.461163359375,47.3456691718751],[129.434146757813,47.2932186103516],[129.46224734375,47.2787429023438],[129.49275515625,47.2639412666015],[129.492042265625,47.2289430976563],[129.560328398438,47.2422200751953],[129.57224734375,47.2789430976563],[129.62244265625,47.2887429023438],[129.697252226563,47.3143477607422],[129.721646757813,47.2889595771484],[129.732428007813,47.2887392402344],[129.82224734375,47.3089430976563],[129.847345,47.313843],[129.887345,47.303843],[129.854112578125,47.2555135322266],[129.78365359375,47.2642775703126],[129.772896757813,47.1782900214845],[129.7409778125,47.1648390937501],[129.74474734375,47.134536359375],[129.686202421875,47.117798078125],[129.711793242188,47.0742659736329],[129.682681914063,47.0496498847657],[129.639527617188,47.0373274970704],[129.622183867188,47.0394850898438],[129.572896757813,47.0282900214844],[129.567345,47.0238430000001]]]]}},{"type":"Feature","properties":{"name":"乌马河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.132428007813,47.7907570625],[129.1178528125,47.6992592597657],[129.097003203125,47.6984334541016],[129.0385559375,47.7386525703125],[128.993609648438,47.7267763496095],[128.89935671875,47.5808113837891],[128.843468046875,47.5631179023438],[128.825079375,47.4752095771485],[128.85353640625,47.448843],[128.813214140625,47.4114833808594],[128.860133085938,47.3966286445313],[128.867345,47.373843],[128.867345,47.3638430000001],[128.852061796875,47.3591243720703],[128.712628203125,47.3085616279297],[128.697345,47.303843],[128.631070585938,47.3481661201172],[128.63361453125,47.3595131660156],[128.62142703125,47.3679274726562],[128.609859648438,47.3846877265626],[128.62349734375,47.4286959052735],[128.61978640625,47.4452523017578],[128.607345,47.453843],[128.599288359375,47.5047774482423],[128.612808867188,47.5283803535156],[128.623219023438,47.6212105537109],[128.673448515625,47.6429964423829],[128.670416289063,47.6727596259766],[128.744273710938,47.7149263740235],[128.740797148438,47.7490346503906],[128.671881132813,47.7883803535156],[128.667345,47.793843],[128.75271609375,47.7892147041016],[128.837345,47.763843],[128.826988554688,47.7369014716797],[128.833863554688,47.6816292548828],[128.863746367188,47.6593959785157],[128.933980742188,47.7006832099609],[128.928443632813,47.7452022529297],[128.877345,47.7838430000001],[128.91080203125,47.8271865058594],[128.980386992188,47.84187034375],[128.997345,47.8638430000001],[129.05271609375,47.8884712958984],[129.09197390625,47.9192147041016],[129.126456328125,47.9295967841797],[129.147345,47.953843],[129.17142703125,47.9379274726562],[129.207345,47.9338430000001],[129.200811796875,47.8724373603516],[129.171353789063,47.8268239570313],[129.132428007813,47.7907570625]]]]}},{"type":"Feature","properties":{"name":"美溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.617921171875,48.0479616523438],[129.64170046875,48.0081990791016],[129.698892851563,47.9847914863282],[129.707345,47.9738430000001],[129.66658328125,47.9694356513673],[129.681246367188,47.9277461982422],[129.711246367188,47.9171944404297],[129.703443632813,47.8977461982422],[129.684835234375,47.8858339667969],[129.711886015625,47.8673091865235],[129.746011992188,47.8768996406251],[129.74093875,47.8588430000001],[129.74375125,47.848843],[129.737486601563,47.8265560126954],[129.763443632813,47.8099398017579],[129.771246367188,47.7877461982422],[129.795636015625,47.7721334052735],[129.807345,47.753843],[129.701881132813,47.7493056464844],[129.692808867188,47.6883803535157],[129.64603640625,47.6793056464845],[129.583878203125,47.7026601386719],[129.529888945313,47.6875643134766],[129.43672,47.6970607734376],[129.346710234375,47.6770229316406],[129.337345,47.603843],[129.32197390625,47.5992147041016],[129.287198515625,47.5864443183594],[129.217486601563,47.5920455146485],[129.15271609375,47.5384712958985],[129.09197390625,47.5292147041016],[129.082154570313,47.4966017890626],[129.03627078125,47.4570705390625],[129.02271609375,47.4322920966797],[129.083311796875,47.3800881171875],[129.077345,47.3638430000001],[129.02271609375,47.3692147041016],[128.867345,47.373843],[128.860133085938,47.3966286445313],[128.813214140625,47.4114833808594],[128.85353640625,47.448843],[128.825079375,47.4752095771485],[128.843468046875,47.5631179023438],[128.89935671875,47.5808113837891],[128.993609648438,47.7267763496095],[129.0385559375,47.7386525703125],[129.097003203125,47.6984334541016],[129.1178528125,47.6992592597657],[129.132428007813,47.7907570625],[129.171353789063,47.8268239570313],[129.200811796875,47.8724373603516],[129.207345,47.9338430000001],[129.21142703125,47.9397585273438],[129.235513945313,47.9487709785157],[129.269366484375,47.9721419501953],[129.30142703125,48.0197585273438],[129.307345,48.023843],[129.45326296875,48.0279274726563],[129.517379179688,48.047802350586],[129.580889921875,48.0335646796875],[129.597345,48.063843],[129.617921171875,48.0479616523438]]]]}},{"type":"Feature","properties":{"name":"上甘岭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.104449492188,48.0398793769531],[129.130328398438,48.0377999091797],[129.14271609375,48.0484712958984],[129.16056765625,48.0884712958985],[129.209737578125,48.0590218330078],[129.18271609375,47.9984712958985],[129.147345,47.953843],[129.126456328125,47.9295967841797],[129.09197390625,47.9192147041016],[129.05271609375,47.8884712958984],[128.997345,47.8638430000001],[128.987906523438,47.8744057441406],[128.9087121875,47.8891878486328],[128.862628203125,47.942821881836],[128.891978789063,48.0246218085938],[128.810538359375,48.0435695625001],[128.815074492188,48.1196468330079],[128.832652617188,48.1686415839845],[128.830928984375,48.1975685859375],[128.857345,48.2338430000001],[128.86271609375,48.2292147041016],[128.894928007813,48.1918288398438],[128.94197390625,48.1584712958984],[129.020670195313,48.1091786933594],[129.104449492188,48.0398793769531]]]]}},{"type":"Feature","properties":{"name":"友好区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.744503203125,48.3988088203125],[128.76271609375,48.3492147041016],[128.779000273438,48.2951381660156],[128.817511015625,48.2504366279298],[128.842667265625,48.2484151435547],[128.85197390625,48.2592147041016],[128.857345,48.263843],[128.857345,48.2338430000001],[128.830928984375,48.1975685859375],[128.832652617188,48.1686415839845],[128.815074492188,48.1196468330079],[128.810538359375,48.0435695625001],[128.891978789063,48.0246218085938],[128.862628203125,47.942821881836],[128.9087121875,47.8891878486328],[128.987906523438,47.8744057441406],[128.997345,47.8638430000001],[128.980386992188,47.84187034375],[128.91080203125,47.8271865058594],[128.877345,47.7838430000001],[128.845426054688,47.7798183417969],[128.837345,47.763843],[128.75271609375,47.7892147041016],[128.667345,47.793843],[128.60716921875,47.7999813056641],[128.59271609375,47.8792147041016],[128.579000273438,47.9165724921876],[128.509151640625,47.9767494941406],[128.478565703125,47.9884712958985],[128.44271609375,47.9684712958984],[128.410103789063,47.9586519599609],[128.39271609375,47.9384712958985],[128.355577421875,47.9272890449219],[128.34271609375,47.8984712958985],[128.327345,47.8938430000001],[128.29298953125,47.9194869208985],[128.24170046875,47.9281990791016],[128.22298953125,47.9394869208984],[128.16170046875,47.9481990791016],[128.150494414063,48.0013124824219],[128.153082304688,48.018843],[128.150206328125,48.0383309150391],[128.163160429688,48.0483309150391],[128.16076296875,48.0645369697266],[128.127345,48.073843],[128.13197390625,48.0792147041016],[128.16271609375,48.0984712958985],[128.185357695313,48.1247524238281],[128.257491484375,48.1512416816407],[128.329859648438,48.1454268623047],[128.343472929688,48.1698238349609],[128.339215117188,48.2227992988281],[128.3666028125,48.2545870185547],[128.38271609375,48.2684712958985],[128.3937903125,48.293290631836],[128.455943632813,48.3654299140625],[128.5352746875,48.3798128486329],[128.552550078125,48.3784249091797],[128.592139921875,48.3892610908203],[128.602623320313,48.3884188056641],[128.634498320313,48.4062038398438],[128.691715117188,48.4108010078125],[128.744503203125,48.3988088203125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东风区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.407345,46.7938430000001],[130.44142703125,46.7850960517578],[130.432823515625,46.7670064521485],[130.407345,46.783843],[130.407345,46.7938430000001]]],[[[130.407345,46.7938430000001],[130.39181765625,46.8016994453125],[130.387345,46.8238430000001],[130.39406375,46.83712425],[130.413985625,46.8472023750001],[130.417345,46.853843],[130.450777617188,46.848843],[130.42072390625,46.8296053291016],[130.42396609375,46.8180806708985],[130.411246367188,46.8099398017579],[130.407345,46.7938430000001]]]]}},{"type":"Feature","properties":{"name":"抚远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.510426054688,48.4229579902344],[134.583365507813,48.4021291328126],[134.687843046875,48.4151241279297],[134.766397734375,48.3599068427735],[134.719117460938,48.2820687080079],[134.665426054688,48.2494564033204],[134.673428984375,48.1851241279297],[134.662896757813,48.1482900214844],[134.644146757813,48.1332747626954],[134.620543242188,48.0944112373047],[134.553170195313,48.0404586005859],[134.545787382813,47.9811074042969],[134.600689726563,47.9371401191406],[134.602965117188,47.918843],[134.601656523438,47.9083187080078],[134.660894804688,47.8955025458985],[134.663590117188,47.873843],[134.661261015625,47.8551241279297],[134.671793242188,47.8182900214844],[134.702896757813,47.7993959785156],[134.731793242188,47.7782900214844],[134.770064726563,47.7621614814453],[134.77490359375,47.723280866211],[134.736217070313,47.6749709296876],[134.682310820313,47.6318056464844],[134.672896757813,47.5882900214844],[134.63791140625,47.5670400214844],[134.615904570313,47.5395571113281],[134.575553007813,47.5225539375],[134.562896757813,47.4782900214844],[134.511793242188,47.4593959785157],[134.49279421875,47.448227765625],[134.384049101563,47.4347017646484],[134.327345,47.4438430000001],[134.302061796875,47.4391243720703],[134.25830203125,47.4274031806641],[134.183560820313,47.5611263251954],[134.1020715625,47.5042055488281],[134.029698515625,47.530175397461],[133.970235625,47.5266310859375],[133.841641875,47.5402913642579],[133.726641875,47.533437116211],[133.717345,47.543843],[133.71170046875,47.5681990791016],[133.702730742188,47.806347272461],[133.671041289063,47.849091413086],[133.70298953125,47.8681990791016],[133.71170046875,47.9694869208985],[133.727603789063,47.9817604804688],[133.767174101563,47.9759127021485],[133.80170046875,47.9894869208985],[133.85298953125,47.9981990791016],[133.86170046875,48.0094869208984],[133.91298953125,48.0381990791016],[133.92490359375,48.0536367011719],[133.964722929688,48.0477529121094],[133.961514921875,48.0694637275391],[134.03298953125,48.0781990791016],[134.04170046875,48.0894869208984],[134.073170195313,48.0982503486329],[134.071168242188,48.1117940498047],[134.11314578125,48.1684133125001],[134.111607695313,48.178843],[134.1131653125,48.1893819404297],[134.068990507813,48.2158022285156],[134.036324492188,48.2581221748048],[134.00670046875,48.2702455878906],[133.997345,48.303843],[134.013248320313,48.3165785957032],[134.010582304688,48.3380019355469],[134.042345,48.3419527412109],[134.129029570313,48.3311702705079],[134.168453398438,48.3627370429688],[134.18732546875,48.386308209961],[134.272345,48.3757332587891],[134.307345,48.3800868964844],[134.32974734375,48.37730003125],[134.392896757813,48.3882900214844],[134.458140898438,48.416454694336],[134.510426054688,48.4229579902344]]]]}},{"type":"Feature","properties":{"name":"富锦市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[133.197345,46.973843],[133.193922148438,46.9616506171876],[133.185152617188,46.9704195380859],[133.197345,46.973843]]],[[[133.197345,46.973843],[133.197345,46.9838430000001],[133.210152617188,46.9788430000001],[133.197345,46.973843]]],[[[133.217345,47.063843],[133.205152617188,47.060419538086],[133.213922148438,47.0516506171875],[133.230343046875,47.0582814765625],[133.223717070313,47.0345833564453],[133.209288359375,47.0442287421875],[133.198258085938,47.0277309394532],[133.220260039063,47.0183162666016],[133.190343046875,47.0108461738281],[133.187345,47.003843],[133.175152617188,47.000419538086],[133.183922148438,46.9916506171875],[133.187345,47.003843],[133.20547,47.0001845527344],[133.197345,46.9838430000001],[133.18142703125,46.9797585273438],[133.150982695313,46.9599306464844],[133.15361453125,46.9481728339844],[133.14107546875,46.9395131660156],[133.145557890625,46.9195131660157],[133.137345,46.913843],[133.133922148438,46.9260353828126],[133.125152617188,46.9172664619141],[133.137345,46.913843],[133.137345,46.893843],[133.101881132813,46.8893056464844],[133.082667265625,46.878300397461],[133.072345,46.8793526435547],[133.055025664063,46.8775875068359],[132.992808867188,46.8383803535156],[132.961881132813,46.8293056464844],[132.945045195313,46.8090377021485],[132.882476835938,46.7906764960938],[132.871920195313,46.7663381171876],[132.842081328125,46.7693794990235],[132.812100859375,46.7581154609375],[132.794298125,46.7795516181641],[132.78213015625,46.7783113837891],[132.738394804688,46.7905385566407],[132.719610625,46.8131514716797],[132.596534453125,46.8006063056641],[132.544547148438,46.7860707832032],[132.509107695313,46.78968284375],[132.478053007813,46.8270693183594],[132.375050078125,46.8165700507813],[132.39312625,46.7684596992188],[132.356285429688,46.7593056464844],[132.292808867188,46.7993056464844],[132.207345,46.803843],[132.213595,46.8204726386719],[132.191803007813,46.8585201240235],[132.193385039063,46.8740651679688],[132.244224882813,46.9054213691407],[132.241793242188,46.9292330146485],[132.261534453125,46.945630109375],[132.161881132813,46.9583803535156],[132.05611453125,46.9779402900391],[131.954342070313,46.9883803535156],[131.833155546875,46.9544985175781],[131.822808867188,46.9123165107422],[131.852808867188,46.8993056464844],[131.861881132813,46.8896797919922],[131.789420195313,46.8793056464844],[131.767345,46.9058815742187],[131.748267851563,46.8829177070313],[131.7255090625,46.8640126777344],[131.712808867188,46.8793056464844],[131.627345,46.883843],[131.51951296875,46.888579328125],[131.530484648438,47.0251662421875],[131.54271609375,47.0584712958984],[131.547345,47.073843],[131.55443484375,47.1032674384766],[131.55000125,47.1257076240234],[131.493389921875,47.1585286689453],[131.503453398438,47.2094631171875],[131.487554960938,47.2208602119141],[131.458551054688,47.2151290107422],[131.437345,47.223843],[131.4473840625,47.2354958320312],[131.473326445313,47.2499697089844],[131.502345,47.2476375556641],[131.522550078125,47.2492610908203],[131.580299101563,47.2334560371094],[131.677345,47.2412532783203],[131.721490507813,47.2377065253906],[131.772056914063,47.2692678046875],[131.802345,47.2668343330078],[131.877550078125,47.2728774238282],[131.91818484375,47.2440663886719],[132.02115359375,47.2597566962891],[132.042764921875,47.3186043525391],[132.038936796875,47.3662575507812],[132.11271609375,47.3884712958985],[132.13197390625,47.3992147041016],[132.202935820313,47.4084993720704],[132.28271609375,47.4584712958985],[132.29197390625,47.4692147041016],[132.307345,47.4738430000001],[132.342154570313,47.4586525703125],[132.37357546875,47.4487044501953],[132.401065703125,47.4190334296875],[132.422550078125,47.4286592841798],[132.421373320313,47.4583480048829],[132.462408476563,47.4691005683594],[132.4823059375,47.4585720039063],[132.512193632813,47.4690474677735],[132.52252078125,47.468637921875],[132.532154570313,47.4790334296875],[132.562535429688,47.4886525703126],[132.592154570313,47.5090334296876],[132.622535429688,47.5186525703126],[132.662154570313,47.5490334296876],[132.72275515625,47.5934835029297],[132.7220325,47.6117067695313],[132.824576445313,47.5983370185547],[132.881793242188,47.600605084961],[132.89474734375,47.573153913086],[133.0003528125,47.5172743964844],[133.33482546875,47.4590334296875],[133.362535429688,47.4686525703125],[133.40033328125,47.4886525703126],[133.422535429688,47.4790334296875],[133.447345,47.463843],[133.39197390625,47.3992147041016],[133.34271609375,47.3284712958985],[133.285772734375,47.295639875],[133.2927746875,47.2085195136719],[133.2766028125,47.1945870185547],[133.26271609375,47.1784712958985],[133.25197390625,47.1692147041016],[133.23963015625,47.1282234931641],[133.211646757813,47.0887532783203],[133.222926054688,47.0790358710938],[133.217345,47.063843]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.977345,47.013843],[129.965152617188,47.0172664619141],[129.973922148438,47.0260353828125],[129.977345,47.013843]]],[[[130.057345,46.583843],[130.067345,46.583843],[130.067345,46.5938430000001],[130.079537382813,46.5972664619141],[130.070767851563,46.6060353828125],[130.067345,46.5938430000001],[130.057345,46.5938430000001],[130.032183867188,46.58933128125],[129.987135039063,46.5641994453125],[129.923082304688,46.6171858955078],[129.917345,46.623843],[129.922003203125,46.6715572333985],[129.948453398438,46.6927370429688],[129.9659778125,46.7146254707031],[129.960440703125,46.7591609931641],[130.036104765625,46.7723287177735],[130.092374296875,46.7480373359375],[130.121793242188,46.7622743964844],[130.101793242188,46.7782900214844],[130.092896757813,46.8093959785156],[130.075152617188,46.8395815253907],[130.042066679688,46.8660762763672],[130.029010039063,46.9704775214844],[129.981793242188,47.0082900214844],[129.977345,47.013843],[130.002896757813,47.0093959785157],[130.058970976563,46.9933846259766],[130.072354765625,47.0100966621094],[130.122896757813,46.9793959785157],[130.170426054688,46.9446791816407],[130.229249296875,46.9373622871094],[130.243590117188,46.9488430000001],[130.21861453125,46.968843],[130.242896757813,46.9882900214844],[130.256261015625,47.0049764228516],[130.301793242188,47.010639875],[130.292896757813,46.9782900214844],[130.262896757813,46.9656484199219],[130.304625273438,46.9493959785157],[130.352896757813,46.9582900214844],[130.380719023438,46.9746425605469],[130.441890898438,46.9670333076172],[130.462584257813,46.9928755927734],[130.522896757813,47.0182900214844],[130.556920195313,47.0382900214844],[130.582896757813,47.0293959785156],[130.587345,47.0238430000001],[130.593004179688,47.0091255927735],[130.589859648438,46.9838430000001],[130.593013945313,46.9584828925782],[130.581676054688,46.9392031074219],[130.584156523438,46.9192958808594],[130.542896757813,46.8862581611329],[130.572896757813,46.8882900214844],[130.621793242188,46.9070839667969],[130.612896757813,46.8782900214844],[130.590479765625,46.8688430000001],[130.5942590625,46.8384603095704],[130.492135039063,46.8256868720703],[130.471666289063,46.8092958808594],[130.472965117188,46.798843],[130.47166140625,46.7883278632813],[130.517760039063,46.7751467109375],[130.533013945313,46.7492031074219],[130.529405546875,46.7202016425781],[130.551793242188,46.7022743964844],[130.542896757813,46.6882900214844],[130.515504179688,46.6767464423829],[130.476558867188,46.6104903388672],[130.497345,46.5938430000001],[130.469283476563,46.5600600410157],[130.452081328125,46.5583065009766],[130.410172148438,46.5740535712891],[130.381158476563,46.5574349189454],[130.362345,46.5593526435547],[130.343238554688,46.5574050117188],[130.301568632813,46.5873928046875],[130.272345,46.5903719306641],[130.242735625,46.5873537421876],[130.210011015625,46.6267501044923],[130.213912382813,46.5884615302734],[130.202808867188,46.5383803535156],[130.19093875,46.5176552558594],[130.19443484375,46.4833602119141],[130.147345,46.493843],[130.152388945313,46.5529152656251],[130.191676054688,46.6252156806641],[130.142628203125,46.5985616279297],[130.107940703125,46.5878517890625],[130.125054960938,46.5077608466797],[130.082525664063,46.5191518378906],[130.072174101563,46.5185347724609],[130.022628203125,46.5306917548828],[130.052388945313,46.5572835517579],[130.057345,46.583843]],[[130.450777617188,46.848843],[130.417345,46.853843],[130.35338015625,46.8490590644532],[130.338995390625,46.777011334961],[130.367345,46.783843],[130.382105742188,46.7776436591797],[130.407345,46.783843],[130.432823515625,46.7670064521485],[130.44142703125,46.7850960517578],[130.407345,46.7938430000001],[130.411246367188,46.8099398017579],[130.42396609375,46.8180806708985],[130.42072390625,46.8296053291016],[130.450777617188,46.848843]]]]}},{"type":"Feature","properties":{"name":"前进区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.407345,46.783843],[130.382105742188,46.7776436591797],[130.367345,46.783843],[130.3586340625,46.8193178535156],[130.387345,46.8238430000001],[130.39181765625,46.8016994453125],[130.407345,46.7938430000001],[130.407345,46.783843]]]]}},{"type":"Feature","properties":{"name":"汤原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.567345,47.0238430000001],[129.555152617188,47.0272664619141],[129.563922148438,47.0360353828126],[129.567345,47.0238430000001]]],[[[129.977345,47.013843],[129.973922148438,47.0260353828125],[129.965152617188,47.0172664619141],[129.981793242188,47.0082900214844],[130.029010039063,46.9704775214844],[130.042066679688,46.8660762763672],[130.075152617188,46.8395815253907],[130.092896757813,46.8093959785156],[130.101793242188,46.7782900214844],[130.121793242188,46.7622743964844],[130.092374296875,46.7480373359375],[130.036104765625,46.7723287177735],[129.960440703125,46.7591609931641],[129.9659778125,46.7146254707031],[129.948453398438,46.6927370429688],[129.922003203125,46.6715572333985],[129.917345,46.623843],[129.885201445313,46.6031978583985],[129.85170046875,46.5894869208985],[129.81298953125,46.5581990791016],[129.747564726563,46.5314217353516],[129.692345,46.5395821357422],[129.677345,46.5373653388672],[129.648482695313,46.5416304755859],[129.63298953125,46.5794869208985],[129.61170046875,46.5881990791016],[129.576773710938,46.6092690253907],[129.497345,46.613843],[129.52170046875,46.6594869208985],[129.5572278125,46.6807338691407],[129.579215117188,46.7092201972657],[129.66298953125,46.7181990791016],[129.695709257813,46.7310634589844],[129.691607695313,46.758843],[129.697471953125,46.7985408759766],[129.625084257813,46.8138161445313],[129.592686796875,46.855786359375],[129.580084257813,46.8865828681641],[129.551519804688,46.8982729316406],[129.553082304688,46.9088430000001],[129.551607695313,46.918843],[129.554483671875,46.9383309150391],[129.5327746875,46.9550881171875],[129.52298953125,46.9834181953125],[129.570362578125,46.9647951484375],[129.5894153125,46.9894808173829],[129.567345,47.0238430000001],[129.572896757813,47.0282900214844],[129.622183867188,47.0394850898438],[129.639527617188,47.0373274970704],[129.682681914063,47.0496498847657],[129.711793242188,47.0742659736329],[129.686202421875,47.117798078125],[129.74474734375,47.134536359375],[129.7409778125,47.1648390937501],[129.772896757813,47.1782900214845],[129.78365359375,47.2642775703126],[129.854112578125,47.2555135322266],[129.887345,47.303843],[129.922896757813,47.2893959785157],[129.931793242188,47.2582900214844],[129.982896757813,47.2493959785157],[129.997857695313,47.2307149482422],[130.084254179688,47.2156795478516],[130.129141875,47.1967659736328],[130.142686796875,47.1341609931641],[130.206558867188,47.0875014472657],[130.222628203125,47.0895003486329],[130.280875273438,47.0671108222656],[130.359249296875,47.0573622871094],[130.37334109375,47.0686440253906],[130.3588684375,47.0932601142578],[130.371890898438,47.1095211005859],[130.400987578125,47.1059023261719],[130.41736453125,47.1263582587891],[130.452345,47.1307088447266],[130.53095828125,47.1209304023438],[130.641344023438,47.1657845283203],[130.642965117188,47.1788430000001],[130.64166140625,47.1893410468751],[130.680748320313,47.2058113837891],[130.611793242188,47.2582900214844],[130.602896757813,47.2693959785157],[130.591793242188,47.2782900214844],[130.582896757813,47.2893959785157],[130.571793242188,47.2982900214844],[130.562896757813,47.3093959785157],[130.551099882813,47.318843],[130.557345,47.3238430000001],[130.619303007813,47.3381990791016],[130.67298953125,47.3294869208984],[130.699742460938,47.3133492255859],[130.78158328125,47.2894869208984],[130.87298953125,47.2981990791016],[130.969361601563,47.3140303779297],[130.973160429688,47.2883309150391],[130.960865507813,47.278843],[130.98170046875,47.2627620673828],[130.97298953125,47.2481990791016],[130.96170046875,47.2394869208985],[130.957345,47.223843],[130.939737578125,47.2010317207032],[130.87298953125,47.1881990791016],[130.8030090625,47.1782509589844],[130.79156375,47.1491347480469],[130.79459109375,47.1286452460938],[130.76170046875,47.1194869208985],[130.75298953125,47.0981990791016],[130.715797148438,47.0694911933594],[130.699918242188,47.0307015205078],[130.681954375,47.028046491211],[130.648844023438,47.0480196357422],[130.587345,47.0238430000001],[130.582896757813,47.0293959785156],[130.556920195313,47.0382900214844],[130.522896757813,47.0182900214844],[130.462584257813,46.9928755927734],[130.441890898438,46.9670333076172],[130.380719023438,46.9746425605469],[130.352896757813,46.9582900214844],[130.304625273438,46.9493959785157],[130.262896757813,46.9656484199219],[130.292896757813,46.9782900214844],[130.301793242188,47.010639875],[130.256261015625,47.0049764228516],[130.242896757813,46.9882900214844],[130.21861453125,46.968843],[130.243590117188,46.9488430000001],[130.229249296875,46.9373622871094],[130.170426054688,46.9446791816407],[130.122896757813,46.9793959785157],[130.072354765625,47.0100966621094],[130.058970976563,46.9933846259766],[130.002896757813,47.0093959785157],[129.977345,47.013843]]]]}},{"type":"Feature","properties":{"name":"同江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.1131653125,48.1893819404297],[134.111607695313,48.178843],[134.11314578125,48.1684133125001],[134.071168242188,48.1117940498047],[134.073170195313,48.0982503486329],[134.04170046875,48.0894869208984],[134.03298953125,48.0781990791016],[133.961514921875,48.0694637275391],[133.964722929688,48.0477529121094],[133.92490359375,48.0536367011719],[133.91298953125,48.0381990791016],[133.86170046875,48.0094869208984],[133.85298953125,47.9981990791016],[133.80170046875,47.9894869208985],[133.767174101563,47.9759127021485],[133.727603789063,47.9817604804688],[133.71170046875,47.9694869208985],[133.70298953125,47.8681990791016],[133.671041289063,47.849091413086],[133.702730742188,47.806347272461],[133.71170046875,47.5681990791016],[133.717345,47.543843],[133.6440246875,47.5346724677735],[133.616261015625,47.5000014472657],[133.587843046875,47.4325618720704],[133.500440703125,47.44343284375],[133.447345,47.463843],[133.422535429688,47.4790334296875],[133.40033328125,47.4886525703126],[133.362535429688,47.4686525703125],[133.33482546875,47.4590334296875],[133.0003528125,47.5172743964844],[132.89474734375,47.573153913086],[132.881793242188,47.600605084961],[132.824576445313,47.5983370185547],[132.7220325,47.6117067695313],[132.72275515625,47.5934835029297],[132.662154570313,47.5490334296876],[132.622535429688,47.5186525703126],[132.592154570313,47.5090334296876],[132.562535429688,47.4886525703126],[132.532154570313,47.4790334296875],[132.52252078125,47.468637921875],[132.512193632813,47.4690474677735],[132.4823059375,47.4585720039063],[132.462408476563,47.4691005683594],[132.421373320313,47.4583480048829],[132.422550078125,47.4286592841798],[132.401065703125,47.4190334296875],[132.37357546875,47.4487044501953],[132.342154570313,47.4586525703125],[132.307345,47.4738430000001],[132.31142703125,47.4797585273438],[132.348370390625,47.5008437324219],[132.367667265625,47.5287929511719],[132.406046171875,47.5386415839844],[132.429595976563,47.6015895820313],[132.468121367188,47.6281874824219],[132.4468371875,47.6788619208985],[132.500416289063,47.6893245673829],[132.517345,47.713843],[132.58783328125,47.7226595283203],[132.60322390625,47.7488430000001],[132.582896757813,47.7834200263672],[132.621793242188,47.8393959785156],[132.653502226563,47.8527584052735],[132.68705203125,47.8796260810547],[132.662896757813,47.9193959785157],[132.642896757813,47.9354116035157],[132.687320585938,47.9682900214844],[132.722896757813,47.9593959785157],[132.7776575,47.9193959785157],[132.819605742188,47.9341762519531],[132.869913359375,47.997001569336],[132.921793242188,48.0193959785156],[133.011568632813,48.0388204169923],[133.023004179688,48.0685604072266],[133.019547148438,48.0963210273438],[133.0550403125,48.1171834541016],[133.186104765625,48.135634381836],[133.242896757813,48.1193959785157],[133.3053528125,48.0953896308594],[133.378829375,48.1236336494141],[133.462345,48.1132454658204],[133.512345,48.1194649482422],[133.555963164063,48.1140395332031],[133.579757109375,48.197249982422],[133.7107434375,48.1809572578125],[133.713590117188,48.2038430000001],[133.710865507813,48.2257497382813],[133.733922148438,48.2545467353516],[133.812896757813,48.2682900214844],[133.851793242188,48.2793959785157],[133.892896757813,48.2882900214844],[133.931793242188,48.2993959785157],[133.997345,48.303843],[134.00670046875,48.2702455878906],[134.036324492188,48.2581221748048],[134.068990507813,48.2158022285156],[134.1131653125,48.1893819404297]]]]}},{"type":"Feature","properties":{"name":"向阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.367345,46.783843],[130.338995390625,46.777011334961],[130.35338015625,46.8490590644532],[130.417345,46.853843],[130.413985625,46.8472023750001],[130.39406375,46.83712425],[130.387345,46.8238430000001],[130.3586340625,46.8193178535156],[130.367345,46.783843]]]]}},{"type":"Feature","properties":{"name":"桦川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.437345,47.223843],[131.458551054688,47.2151290107422],[131.487554960938,47.2208602119141],[131.503453398438,47.2094631171875],[131.493389921875,47.1585286689453],[131.55000125,47.1257076240234],[131.55443484375,47.1032674384766],[131.547345,47.073843],[131.402740507813,47.0617562080079],[131.390772734375,47.0220192695313],[131.211099882813,46.9647689033203],[131.083961210938,46.9545534492188],[131.055982695313,46.9870314765626],[131.022345,46.9682637763672],[130.997345,46.982212140625],[130.93888796875,46.9495967841797],[130.824517851563,46.9287337470704],[130.842022734375,46.9084151435548],[130.86197390625,46.9100185371094],[130.85271609375,46.8884712958985],[130.829722929688,46.8782112861329],[130.811373320313,46.8569124580079],[130.776754179688,46.8596938300781],[130.727550078125,46.8248085761719],[130.656099882813,46.8305501533204],[130.6514075,46.7721535468751],[130.66197390625,46.7484712958984],[130.706451445313,46.7383663154297],[130.722769804688,46.7091213203126],[130.721163359375,46.6891664863282],[130.736763945313,46.6757271552735],[130.72197390625,46.6492147041016],[130.717345,46.6038430000001],[130.710719023438,46.5890566230469],[130.718219023438,46.5649880195312],[130.683585234375,46.5406703925782],[130.64033328125,46.5541414619141],[130.586510039063,46.5300307441407],[130.546729765625,46.5386104560547],[130.529718046875,46.5662178779298],[130.511158476563,46.5776552558594],[130.503531523438,46.5900307441406],[130.497345,46.5938430000001],[130.476558867188,46.6104903388672],[130.515504179688,46.6767464423829],[130.542896757813,46.6882900214844],[130.551793242188,46.7022743964844],[130.529405546875,46.7202016425781],[130.533013945313,46.7492031074219],[130.517760039063,46.7751467109375],[130.47166140625,46.7883278632813],[130.472965117188,46.798843],[130.471666289063,46.8092958808594],[130.492135039063,46.8256868720703],[130.5942590625,46.8384603095704],[130.590479765625,46.8688430000001],[130.612896757813,46.8782900214844],[130.621793242188,46.9070839667969],[130.572896757813,46.8882900214844],[130.542896757813,46.8862581611329],[130.584156523438,46.9192958808594],[130.581676054688,46.9392031074219],[130.593013945313,46.9584828925782],[130.589859648438,46.9838430000001],[130.593004179688,47.0091255927735],[130.587345,47.0238430000001],[130.648844023438,47.0480196357422],[130.681954375,47.028046491211],[130.699918242188,47.0307015205078],[130.715797148438,47.0694911933594],[130.75298953125,47.0981990791016],[130.76170046875,47.1194869208985],[130.79459109375,47.1286452460938],[130.79156375,47.1491347480469],[130.8030090625,47.1782509589844],[130.87298953125,47.1881990791016],[130.939737578125,47.2010317207032],[130.957345,47.223843],[131.054859648438,47.2087795234376],[131.092379179688,47.1883901191406],[131.122061796875,47.2091243720703],[131.147345,47.223843],[131.193170195313,47.2196681953126],[131.211519804688,47.2080178046875],[131.243170195313,47.1996681953125],[131.272081328125,47.1877870917969],[131.339132109375,47.1745381904297],[131.391519804688,47.2196681953126],[131.437345,47.223843]]]]}},{"type":"Feature","properties":{"name":"桦南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.210011015625,46.6267501044923],[130.242735625,46.5873537421876],[130.272345,46.5903719306641],[130.301568632813,46.5873928046875],[130.343238554688,46.5574050117188],[130.362345,46.5593526435547],[130.381158476563,46.5574349189454],[130.410172148438,46.5740535712891],[130.452081328125,46.5583065009766],[130.469283476563,46.5600600410157],[130.497345,46.5938430000001],[130.503531523438,46.5900307441406],[130.511158476563,46.5776552558594],[130.529718046875,46.5662178779298],[130.546729765625,46.5386104560547],[130.586510039063,46.5300307441407],[130.64033328125,46.5541414619141],[130.683585234375,46.5406703925782],[130.718219023438,46.5649880195312],[130.710719023438,46.5890566230469],[130.717345,46.6038430000001],[130.73478640625,46.5969869208985],[130.774439726563,46.60284690625],[130.820250273438,46.5848390937501],[130.878702421875,46.5934767890625],[130.937345,46.583843],[130.94170046875,46.5681990791016],[130.963546171875,46.531982038086],[130.960699492188,46.5127022529297],[131.024244414063,46.4866945625001],[131.017452421875,46.4407399726563],[131.05298953125,46.4194869208985],[131.064771757813,46.3907015205078],[131.082345,46.3881038642578],[131.097345,46.3903206611329],[131.117345,46.3873653388672],[131.140767851563,46.3908266425781],[131.185108671875,46.3640792060547],[131.222486601563,46.3696028876953],[131.247345,46.363843],[131.267345,46.3338430000001],[131.242633085938,46.3184181953125],[131.2124621875,46.3208425117188],[131.197428007813,46.2709004951173],[131.10197390625,46.2492147041016],[131.088878203125,46.2340163398438],[131.10728640625,46.2010237861329],[131.070386992188,46.1692342353516],[131.09271609375,46.1292147041015],[131.10197390625,46.1070638251953],[131.06197390625,46.0892147041016],[131.05271609375,46.0684712958984],[131.04197390625,46.0492147041016],[131.03271609375,46.0284712958984],[130.920269804688,46.0170009589844],[130.872345,46.0208516669922],[130.842345,46.0184413886719],[130.832203398438,46.0192562080078],[130.772486601563,46.0084297919922],[130.762066679688,46.0092671943359],[130.741363554688,45.9977162910156],[130.712345,46.000048444336],[130.690382109375,45.9982833076172],[130.692745390625,45.968843],[130.691573515625,45.9542647529297],[130.668565703125,45.9392147041016],[130.61345828125,45.9699587226562],[130.57197390625,45.9884712958984],[130.54271609375,46.0092147041016],[130.5034778125,46.026723859375],[130.49271609375,46.0392147041016],[130.437818632813,46.0516866279297],[130.42271609375,46.0692147041016],[130.355377226563,46.0894887519532],[130.342066679688,46.0884188056641],[130.322623320313,46.099267194336],[130.28650515625,46.0963649726563],[130.227345,46.123843],[130.222896757813,46.1293959785157],[130.161793242188,46.1782900214844],[130.151632109375,46.2024025703126],[130.131793242188,46.2182900214844],[130.115904570313,46.2381288886719],[130.07068484375,46.2571834541016],[130.048453398438,46.2849489570313],[130.031793242188,46.2982900214844],[130.013082304688,46.3216524482422],[129.982896757813,46.3393959785157],[129.943975859375,46.3505245185547],[129.912896757813,46.3754116035157],[129.935069609375,46.3853450751954],[129.992345,46.3782210517578],[130.019210234375,46.3815627265625],[130.056143828125,46.3598537421876],[130.080079375,46.3897463203125],[130.111417265625,46.385849225586],[130.134146757813,46.4232747626954],[130.161793242188,46.4454116035157],[130.152896757813,46.4693959785156],[130.14134890625,46.4890419746094],[130.147345,46.493843],[130.19443484375,46.4833602119141],[130.19093875,46.5176552558594],[130.202808867188,46.5383803535156],[130.213912382813,46.5884615302734],[130.210011015625,46.6267501044923]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"勃利县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.277345,45.823843],[131.289537382813,45.827266461914],[131.280767851563,45.8360353828125],[131.26170046875,45.8194869208985],[131.242110625,45.8076692939454],[131.23298953125,45.8194869208985],[131.176236601563,45.8623250556641],[131.162686796875,45.8798751044922],[131.126436796875,45.8656240058594],[131.11298953125,45.8481990791016],[131.09170046875,45.8394869208984],[131.07298953125,45.8281990791016],[131.02170046875,45.8094869208985],[131.017345,45.8038430000001],[130.983638945313,45.7899916816407],[130.977345,45.813843],[130.97326296875,45.8197585273438],[130.96142703125,45.8279274726563],[130.940714140625,45.8579274726563],[130.91142703125,45.8397585273438],[130.902828398438,45.8273030830079],[130.857667265625,45.8388930488282],[130.838721953125,45.8663307929688],[130.769947539063,45.8289522529297],[130.78326296875,45.8197585273438],[130.79142703125,45.7979274726563],[130.80326296875,45.7897585273438],[130.81142703125,45.7779274726563],[130.82326296875,45.7697585273438],[130.833116484375,45.7434120917969],[130.877345,45.7533266425782],[130.909141875,45.7461983466798],[130.927345,45.753843],[130.95326296875,45.7397585273437],[130.969595976563,45.7160964179688],[131.017345,45.703843],[131.017345,45.6838430000001],[131.01170046875,45.6794869208985],[130.943624296875,45.6663991523438],[130.93298953125,45.6281990791015],[130.91170046875,45.6194869208985],[130.89248171875,45.6078926826172],[130.85990359375,45.6206990791016],[130.842345,45.6181038642578],[130.816519804688,45.6219210029297],[130.767345,45.6138430000001],[130.762535429688,45.6190334296875],[130.720074492188,45.6583754707032],[130.692535429688,45.6286525703125],[130.660323515625,45.6078530097657],[130.641461210938,45.5874910712891],[130.580250273438,45.5899172187501],[130.547193632813,45.6255940986329],[130.474683867188,45.6065944648438],[130.387276640625,45.6777303291015],[130.3324621875,45.6185720039063],[130.289625273438,45.6297963691406],[130.26216921875,45.6594307685548],[130.21252078125,45.6574629951172],[130.192535429688,45.6790334296876],[130.16045046875,45.6941756416016],[130.182955351563,45.7583870673828],[130.182144804688,45.778843],[130.182740507813,45.793843],[130.181949492188,45.813843],[130.182550078125,45.8290071845704],[130.168468046875,45.8556185126954],[130.1829309375,45.8690200019532],[130.182003203125,45.8924239326172],[130.107345,45.923843],[130.099654570313,45.9706557441407],[130.114908476563,46.0364888740235],[130.109742460938,46.0714437080079],[130.132345,46.0681038642578],[130.161744414063,46.0724483466797],[130.222369414063,46.1173952460938],[130.227345,46.123843],[130.28650515625,46.0963649726563],[130.322623320313,46.099267194336],[130.342066679688,46.0884188056641],[130.355377226563,46.0894887519532],[130.42271609375,46.0692147041016],[130.437818632813,46.0516866279297],[130.49271609375,46.0392147041016],[130.5034778125,46.026723859375],[130.54271609375,46.0092147041016],[130.57197390625,45.9884712958984],[130.61345828125,45.9699587226562],[130.668565703125,45.9392147041016],[130.691573515625,45.9542647529297],[130.692745390625,45.968843],[130.690382109375,45.9982833076172],[130.712345,46.000048444336],[130.741363554688,45.9977162910156],[130.762066679688,46.0092671943359],[130.772486601563,46.0084297919922],[130.832203398438,46.0192562080078],[130.842345,46.0184413886719],[130.872345,46.0208516669922],[130.920269804688,46.0170009589844],[131.03271609375,46.0284712958984],[131.04197390625,46.0492147041016],[131.05271609375,46.0684712958984],[131.06197390625,46.0892147041016],[131.10197390625,46.1070638251953],[131.09271609375,46.1292147041015],[131.070386992188,46.1692342353516],[131.10728640625,46.2010237861329],[131.088878203125,46.2340163398438],[131.10197390625,46.2492147041016],[131.197428007813,46.2709004951173],[131.2124621875,46.3208425117188],[131.242633085938,46.3184181953125],[131.267345,46.3338430000001],[131.28302859375,46.3293581367188],[131.280445585938,46.3085811591797],[131.322896757813,46.2993959785157],[131.356060820313,46.2751729560547],[131.41595828125,46.2399636054688],[131.492706328125,46.2495095039063],[131.525318632813,46.2303389716797],[131.547345,46.2275991035157],[131.562628203125,46.2295003486328],[131.592061796875,46.2181856513672],[131.611890898438,46.2206526923829],[131.617345,46.2138430000001],[131.592789335938,46.1977675605469],[131.573892851563,46.2015010810548],[131.563170195313,46.1480178046875],[131.537706328125,46.1297682929687],[131.503326445313,46.1165071845703],[131.491095,46.0701595283204],[131.49341921875,46.0584096503906],[131.48127078125,46.0392763496094],[131.483453398438,46.0282228828125],[131.46244265625,46.0131612373047],[131.449093046875,45.9625691962891],[131.412345,45.9698311591798],[131.395987578125,45.9665987373047],[131.383170195313,45.9180178046875],[131.359381132813,45.9088430000001],[131.365308867188,45.8788430000001],[131.359761992188,45.8507833076172],[131.373521757813,45.8291103339844],[131.357506132813,45.7796681953126],[131.341324492188,45.8022396064453],[131.281519804688,45.8180178046875],[131.277345,45.823843]]]]}},{"type":"Feature","properties":{"name":"茄子河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.277345,45.823843],[131.280767851563,45.8360353828125],[131.289537382813,45.827266461914],[131.277345,45.823843]]],[[[131.277345,45.823843],[131.281519804688,45.8180178046875],[131.341324492188,45.8022396064453],[131.357506132813,45.7796681953126],[131.373521757813,45.8291103339844],[131.359761992188,45.8507833076172],[131.365308867188,45.8788430000001],[131.359381132813,45.9088430000001],[131.383170195313,45.9180178046875],[131.395987578125,45.9665987373047],[131.412345,45.9698311591798],[131.449093046875,45.9625691962891],[131.46244265625,46.0131612373047],[131.483453398438,46.0282228828125],[131.48127078125,46.0392763496094],[131.49341921875,46.0584096503906],[131.491095,46.0701595283204],[131.503326445313,46.1165071845703],[131.537706328125,46.1297682929687],[131.563170195313,46.1480178046875],[131.573892851563,46.2015010810548],[131.592789335938,46.1977675605469],[131.617345,46.2138430000001],[131.622857695313,46.2067018867187],[131.648595,46.2105049873048],[131.702203398438,46.1980831123048],[131.719854765625,46.2006917548828],[131.7231653125,46.1783040595704],[131.68298953125,46.1542757392578],[131.69802859375,46.0920070625],[131.749346953125,46.0777169013672],[131.782232695313,46.0578786445313],[131.84298953125,46.0681990791016],[131.893863554688,46.0881990791016],[131.915894804688,46.0781630683594],[131.898761015625,46.0194026923828],[131.924561796875,46.008843],[131.877081328125,45.9894094062501],[131.850240507813,45.9546364570312],[131.82298953125,45.9381990791016],[131.80170046875,45.9294869208985],[131.7886340625,45.9125557685547],[131.777345,45.903843],[131.761871367188,45.8985463691407],[131.742345,45.898944928711],[131.722633085938,45.8985427070313],[131.702437773438,45.9089467597657],[131.683648710938,45.9085634589844],[131.602418242188,45.9189467597656],[131.581046171875,45.9185103583985],[131.543013945313,45.8789278388672],[131.5061340625,45.8669600654297],[131.49244265625,45.8387429023438],[131.445636015625,45.8080532050781],[131.471983671875,45.7310689521484],[131.41994265625,45.7183815742188],[131.392345,45.718944928711],[131.377496367188,45.718642194336],[131.33244265625,45.6834975410156],[131.362584257813,45.6688759589844],[131.35224734375,45.6589430976562],[131.34244265625,45.6487429023438],[131.33224734375,45.6389430976563],[131.307745390625,45.6134432197266],[131.287345,45.593843],[131.269068632813,45.6264864326172],[131.211954375,45.618046491211],[131.190767851563,45.6308266425781],[131.163922148438,45.6268593574219],[131.140767851563,45.6408266425782],[131.111783476563,45.6365431953125],[131.02662234375,45.6505330634766],[131.017345,45.6838430000001],[131.017345,45.703843],[131.044815703125,45.7228115058594],[131.035245390625,45.7655037666016],[131.017345,45.8038430000001],[131.02170046875,45.8094869208985],[131.07298953125,45.8281990791016],[131.09170046875,45.8394869208984],[131.11298953125,45.8481990791016],[131.126436796875,45.8656240058594],[131.162686796875,45.8798751044922],[131.176236601563,45.8623250556641],[131.23298953125,45.8194869208985],[131.242110625,45.8076692939454],[131.26170046875,45.8194869208985],[131.277345,45.823843]]]]}},{"type":"Feature","properties":{"name":"桃山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.977345,45.813843],[130.983638945313,45.7899916816407],[131.017345,45.8038430000001],[131.035245390625,45.7655037666016],[131.044815703125,45.7228115058594],[131.017345,45.703843],[130.969595976563,45.7160964179688],[130.95326296875,45.7397585273437],[130.927345,45.753843],[130.913985625,45.7807192207032],[130.929195585938,45.8028231025391],[130.951353789063,45.7920009589844],[130.960704375,45.8104836250001],[130.977345,45.813843]]]]}},{"type":"Feature","properties":{"name":"新兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[130.857667265625,45.8388930488282],[130.902828398438,45.8273030830079],[130.91142703125,45.8397585273438],[130.940714140625,45.8579274726563],[130.96142703125,45.8279274726563],[130.97326296875,45.8197585273438],[130.977345,45.813843],[130.960704375,45.8104836250001],[130.951353789063,45.7920009589844],[130.929195585938,45.8028231025391],[130.913985625,45.7807192207032],[130.927345,45.753843],[130.909141875,45.7461983466798],[130.877345,45.7533266425782],[130.833116484375,45.7434120917969],[130.82326296875,45.7697585273438],[130.81142703125,45.7779274726563],[130.80326296875,45.7897585273438],[130.79142703125,45.7979274726563],[130.78326296875,45.8197585273438],[130.769947539063,45.8289522529297],[130.838721953125,45.8663307929688],[130.857667265625,45.8388930488282]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"西安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.5626965625,44.4974141669923],[129.592579375,44.4697286201172],[129.591773710938,44.4494600654297],[129.627345,44.4480501533203],[129.654229765625,44.4491158271484],[129.737345,44.3838430000001],[129.732022734375,44.3776638007813],[129.637345,44.3852712226563],[129.527535429688,44.3764479804688],[129.501539335938,44.398843],[129.521959257813,44.4164327216797],[129.48197390625,44.4284712958984],[129.443199492188,44.455962140625],[129.40271609375,44.4592147041016],[129.397345,44.4638430000001],[129.389132109375,44.4695131660156],[129.395089140625,44.4960744453125],[129.432345,44.4877223945313],[129.442345,44.4899636054688],[129.452789335938,44.4876216865234],[129.47142703125,44.4997585273438],[129.49326296875,44.5079274726562],[129.512838164063,44.5362831855469],[129.517345,44.553843],[129.561671171875,44.5613729072266],[129.59170046875,44.5794869208984],[129.607345,44.5838430000001],[129.615079375,44.5617775703126],[129.5626965625,44.4974141669923]]]]}},{"type":"Feature","properties":{"name":"绥芬河市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.157345,44.533843],[131.227345,44.293843],[131.198140898438,44.3000826240234],[131.137345,44.2964589667969],[131.077345,44.3000350166016],[131.052345,44.2985451484376],[131.042345,44.2991408515625],[131.027345,44.2982466865235],[131.003673125,44.299657819336],[130.952628203125,44.3206917548828],[130.98369265625,44.3484474921875],[130.932779570313,44.3808272529297],[130.952628203125,44.3985616279297],[130.962061796875,44.4091243720704],[130.972628203125,44.4185616279297],[130.982061796875,44.4291243720703],[130.9926575,44.4385903144532],[130.992047148438,44.448843],[130.993389921875,44.4713741279297],[131.017906523438,44.4932802558594],[131.032061796875,44.5091243720703],[131.069600859375,44.5263533759766],[131.157345,44.533843]]]]}},{"type":"Feature","properties":{"name":"爱民区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.455719023438,44.8336159492188],[129.481793242188,44.8182900214844],[129.532896757813,44.8093959785157],[129.548785429688,44.7895571113281],[129.581016875,44.7759749580079],[129.591793242188,44.7382900214844],[129.612896757813,44.7293959785157],[129.625758085938,44.6988790107422],[129.677345,44.6938430000001],[129.673170195313,44.6880178046876],[129.654522734375,44.6746541572266],[129.641842070313,44.6114022041016],[129.617345,44.593843],[129.607345,44.593843],[129.607345,44.5838430000001],[129.59170046875,44.5794869208984],[129.561671171875,44.5613729072266],[129.517345,44.553843],[129.4985559375,44.5833766914063],[129.503023710938,44.6192958808594],[129.491793242188,44.6282900214844],[129.468565703125,44.657294538086],[129.438912382813,44.6682900214844],[129.422345,44.6475991035157],[129.412896757813,44.6593959785157],[129.389859648438,44.67784690625],[129.402896757813,44.6882900214844],[129.411793242188,44.7279201484375],[129.3448840625,44.7685585761719],[129.321793242188,44.7782900214844],[129.312896757813,44.7978481269531],[129.372896757813,44.8082900214844],[129.390987578125,44.8308779121094],[129.412345,44.8282210517579],[129.455719023438,44.8336159492188]]]]}},{"type":"Feature","properties":{"name":"东安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.84326296875,44.4497585273438],[129.873116484375,44.4303163886719],[129.88142703125,44.3979274726562],[129.908599882813,44.3897585273438],[129.917345,44.4238430000001],[129.943565703125,44.4190596748048],[129.941632109375,44.3949495673828],[129.98271609375,44.3692147041016],[130.03197390625,44.3284712958985],[130.08197390625,44.3061598945312],[130.062594023438,44.2984212470704],[130.042838164063,44.3000081611328],[130.041944609375,44.288843],[130.043492460938,44.2695644355469],[130.02197390625,44.2392147041016],[130.0098840625,44.2121193671876],[129.972579375,44.1984206367187],[129.907345,44.2038430000001],[129.902345,44.2166506171876],[129.897345,44.2038430000001],[129.881041289063,44.2080269599609],[129.883580351563,44.2193477607422],[129.855894804688,44.2550691962891],[129.86361453125,44.2895131660157],[129.847193632813,44.3008534980469],[129.854263945313,44.3323964667969],[129.771060820313,44.3615608955078],[129.737345,44.3838430000001],[129.654229765625,44.4491158271484],[129.627345,44.4480501533203],[129.591773710938,44.4494600654297],[129.592579375,44.4697286201172],[129.5626965625,44.4974141669923],[129.615079375,44.5617775703126],[129.607345,44.5838430000001],[129.607345,44.593843],[129.617345,44.593843],[129.62142703125,44.5879274726562],[129.65326296875,44.5797585273438],[129.6712121875,44.5537599921875],[129.71326296875,44.5297585273438],[129.72142703125,44.5179274726563],[129.75713015625,44.4932772041016],[129.79326296875,44.4797585273437],[129.82142703125,44.4579274726563],[129.84326296875,44.4497585273438]]]]}},{"type":"Feature","properties":{"name":"东宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[131.217345,43.753843],[131.217345,43.763843],[131.230152617188,43.758843],[131.217345,43.753843]]],[[[131.217345,43.763843],[131.204537382813,43.758843],[131.217345,43.753843],[131.224366484375,43.738169171875],[131.210538359375,43.729648053711],[131.213902617188,43.718843],[131.208883085938,43.7027309394531],[131.2307825,43.653843],[131.210235625,43.6079701972657],[131.241158476563,43.5974318671876],[131.22267703125,43.5871816230469],[131.205089140625,43.5926595283204],[131.200787382813,43.578843],[131.206763945313,43.5596480537109],[131.197345,43.5538430000001],[131.193922148438,43.5660353828126],[131.185152617188,43.5572664619141],[131.197345,43.5538430000001],[131.200719023438,43.5270955634766],[131.2722278125,43.4914601875],[131.293336210938,43.5017684150391],[131.297345,43.493843],[131.289058867188,43.465610578125],[131.233516875,43.4712715888672],[131.222808867188,43.4583803535157],[131.201881132813,43.4493056464844],[131.182667265625,43.438300397461],[131.172081328125,43.4393794990235],[131.126861601563,43.422387921875],[131.112808867188,43.4393056464844],[131.081881132813,43.4583803535157],[131.012408476563,43.5083803535157],[130.931090117188,43.472426984375],[130.902808867188,43.4383803535156],[130.897345,43.4338430000001],[130.847471953125,43.4389302802735],[130.81271609375,43.4992147041016],[130.79197390625,43.5084712958984],[130.78271609375,43.5192147041016],[130.76197390625,43.5284712958985],[130.729210234375,43.5467507148437],[130.6218371875,43.5874977851563],[130.624464140625,43.6202187324219],[130.602345,43.6184413886719],[130.592345,43.6192446113282],[130.57486453125,43.6178401923829],[130.515894804688,43.6307021308594],[130.480103789063,43.6506716132813],[130.411729765625,43.6451778388672],[130.38271609375,43.6847017646485],[130.414039335938,43.7408437324219],[130.38197390625,43.7684712958985],[130.37271609375,43.8092147041016],[130.361807890625,43.8389199042969],[130.372882109375,43.8587660957032],[130.361807890625,43.8889199042969],[130.372999296875,43.9089736152344],[130.36197390625,43.9184712958985],[130.3480871875,43.9345870185547],[130.327242460938,43.9525453925781],[130.35271609375,43.9884712958985],[130.357345,44.0438430000001],[130.382896757813,44.0482900214844],[130.391793242188,44.0593959785156],[130.402896757813,44.0682900214844],[130.435963164063,44.1227260566407],[130.4837121875,44.14284690625],[130.479547148438,44.1763210273438],[130.501793242188,44.1893959785157],[130.52951296875,44.2010774970704],[130.53388796875,44.2362459541015],[130.522896757813,44.2993959785157],[130.502896757813,44.3154116035157],[130.511793242188,44.3493959785157],[130.525479765625,44.3726808906251],[130.502896757813,44.4314278388672],[130.521793242188,44.4593959785157],[130.542896757813,44.4682900214844],[130.551793242188,44.4793959785156],[130.563023710938,44.4883901191406],[130.561676054688,44.4992354560548],[130.582896757813,44.5282900214844],[130.591793242188,44.5693959785157],[130.623018828125,44.6084389472656],[130.621085234375,44.6239839912109],[130.631846953125,44.64952659375],[130.68634890625,44.6427474189453],[130.705133085938,44.687323834961],[130.729527617188,44.6903585029297],[130.776187773438,44.6770345283203],[130.802896757813,44.6882900214844],[130.817857695313,44.7069710517578],[130.857345,44.713843],[130.865094023438,44.6927358222657],[130.850885039063,44.6672682929688],[130.8658996875,44.6011806464844],[130.89271609375,44.5892147041016],[130.921964140625,44.572895734375],[131.012218046875,44.5892598701172],[131.13197390625,44.5784712958984],[131.147345,44.573843],[131.150704375,44.547202375],[131.157345,44.533843],[131.069600859375,44.5263533759766],[131.032061796875,44.5091243720703],[131.017906523438,44.4932802558594],[130.993389921875,44.4713741279297],[130.992047148438,44.448843],[130.9926575,44.4385903144532],[130.982061796875,44.4291243720703],[130.972628203125,44.4185616279297],[130.962061796875,44.4091243720704],[130.952628203125,44.3985616279297],[130.932779570313,44.3808272529297],[130.98369265625,44.3484474921875],[130.952628203125,44.3206917548828],[131.003673125,44.299657819336],[131.027345,44.2982466865235],[131.042345,44.2991408515625],[131.052345,44.2985451484376],[131.077345,44.3000350166016],[131.137345,44.2964589667969],[131.198140898438,44.3000826240234],[131.227345,44.293843],[131.2329309375,44.2786342597656],[131.300474882813,44.0533315253906],[131.245142851563,44.0186739326172],[131.240513945313,43.9610823798829],[131.26197390625,43.9226247382813],[131.24271609375,43.8884712958984],[131.23197390625,43.8792147041016],[131.22271609375,43.8484712958984],[131.211920195313,43.8291213203125],[131.213150664063,43.8138430000001],[131.211944609375,43.798843],[131.212745390625,43.788843],[131.211925078125,43.7786043525391],[131.217345,43.763843]]],[[[130.857345,44.713843],[130.860767851563,44.7260353828125],[130.869537382813,44.7172664619141],[130.857345,44.713843]]]]}},{"type":"Feature","properties":{"name":"海林市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.103883085938,45.6223104072266],[129.132345,45.6181038642578],[129.142735625,45.6196395087891],[129.170679960938,45.6027834296875],[129.218800078125,45.5956722236328],[129.259288359375,45.6200948310547],[129.297345,45.6138430000001],[129.316983671875,45.591048810547],[129.4227746875,45.5591970039063],[129.421031523438,45.5375002265625],[129.46197390625,45.5084712958985],[129.48271609375,45.4992147041016],[129.502066679688,45.4884188056641],[129.514439726563,45.4894130683594],[129.568565703125,45.4592147041016],[129.58271609375,45.4784712958985],[129.603736601563,45.52558128125],[129.646119414063,45.4955306220703],[129.692642851563,45.4992684150391],[129.72197390625,45.4784712958985],[129.74271609375,45.4692147041016],[129.768253203125,45.4395735908203],[129.801373320313,45.4369124580079],[129.81197390625,45.4492147041016],[129.863385039063,45.4608950019531],[129.861236601563,45.4876448798828],[129.894498320313,45.5062038398437],[129.950719023438,45.5107210517579],[129.971295195313,45.473843],[129.951690703125,45.4387123847657],[129.966763945313,45.4257271552735],[129.95197390625,45.3992147041016],[129.94271609375,45.3584712958985],[129.93197390625,45.3392147041016],[129.92271609375,45.2884712958985],[129.904312773438,45.2383614326172],[129.901944609375,45.208843],[129.905836210938,45.1604232001954],[129.86271609375,45.1334169746094],[129.88197390625,45.1184712958985],[129.909757109375,45.1060738349609],[129.87197390625,45.0892147041016],[129.848595,45.0620778632813],[129.765382109375,45.0431746650391],[129.7480871875,45.0230989814453],[129.730225859375,45.0077095771485],[129.71271609375,44.9684712958985],[129.656451445313,44.9332289863281],[129.685133085938,44.9085195136719],[129.679752226563,44.8416005683594],[129.702769804688,44.8091390205078],[129.701925078125,44.7986043525391],[129.716104765625,44.7599837470703],[129.691402617188,44.7489607978516],[129.697345,44.743843],[129.693804960938,44.7373836494141],[129.669097929688,44.7297493720704],[129.690709257813,44.7011696601563],[129.677345,44.6938430000001],[129.625758085938,44.6988790107422],[129.612896757813,44.7293959785157],[129.591793242188,44.7382900214844],[129.581016875,44.7759749580079],[129.548785429688,44.7895571113281],[129.532896757813,44.8093959785157],[129.481793242188,44.8182900214844],[129.455719023438,44.8336159492188],[129.412345,44.8282210517579],[129.390987578125,44.8308779121094],[129.372896757813,44.8082900214844],[129.312896757813,44.7978481269531],[129.321793242188,44.7782900214844],[129.3448840625,44.7685585761719],[129.411793242188,44.7279201484375],[129.402896757813,44.6882900214844],[129.389859648438,44.67784690625],[129.412896757813,44.6593959785157],[129.422345,44.6475991035157],[129.438912382813,44.6682900214844],[129.468565703125,44.657294538086],[129.491793242188,44.6282900214844],[129.503023710938,44.6192958808594],[129.4985559375,44.5833766914063],[129.517345,44.553843],[129.512838164063,44.5362831855469],[129.49326296875,44.5079274726562],[129.47142703125,44.4997585273438],[129.452789335938,44.4876216865234],[129.442345,44.4899636054688],[129.432345,44.4877223945313],[129.395089140625,44.4960744453125],[129.389132109375,44.4695131660156],[129.397345,44.4638430000001],[129.381890898438,44.444546125],[129.341954375,44.4495137763672],[129.312896757813,44.4282900214844],[129.281236601563,44.4149489570313],[129.252144804688,44.3978475166016],[129.238516875,44.4148702216797],[129.201793242188,44.3993959785156],[129.192896757813,44.3882900214844],[129.181793242188,44.3793959785157],[129.172896757813,44.3682900214844],[129.151793242188,44.3593959785156],[129.129210234375,44.3461232734375],[129.082345,44.351952741211],[129.052345,44.3482210517578],[129.025479765625,44.3515627265625],[128.98873171875,44.3299636054688],[128.908624296875,44.3399275947266],[128.871793242188,44.3293959785156],[128.828194609375,44.2945272041016],[128.802896757813,44.3093959785157],[128.751656523438,44.3183132148438],[128.753599882813,44.333935163086],[128.7081653125,44.3164699531251],[128.649171171875,44.3333150458985],[128.631666289063,44.3192958808594],[128.633214140625,44.3068691230469],[128.611890898438,44.309521100586],[128.59400515625,44.2871834541016],[128.561441679688,44.2611074042969],[128.564459257813,44.2368422675782],[128.532896757813,44.2182900214844],[128.491793242188,44.2093959785156],[128.457345,44.193843],[128.451710234375,44.208843],[128.465933867188,44.2467067695313],[128.451617460938,44.2586006904297],[128.47166140625,44.3119490791016],[128.445308867188,44.333843],[128.462808867188,44.3483803535157],[128.471881132813,44.3734603095704],[128.45093875,44.4100307441407],[128.453053007813,44.4307942939453],[128.431881132813,44.4483803535157],[128.422100859375,44.4709389472657],[128.381881132813,44.4883803535157],[128.361202421875,44.5132784248047],[128.297564726563,44.4861446357422],[128.278267851563,44.4629177070312],[128.247345,44.453843],[128.224635039063,44.4695241523437],[128.267345,44.533843],[128.28271609375,44.5384712958984],[128.352799101563,44.588163678711],[128.3519153125,44.5991664863281],[128.3627746875,44.6085195136719],[128.361138945313,44.628843],[128.38271609375,44.6384712958985],[128.404405546875,44.6730965400391],[128.487198515625,44.6664443183594],[128.523800078125,44.6798848701172],[128.62755984375,44.6572530341797],[128.652345,44.6592446113282],[128.662345,44.6584413886719],[128.680885039063,44.6599306464844],[128.75197390625,44.7112404609375],[128.731539335938,44.7288430000001],[128.758834257813,44.7523555732423],[128.78197390625,44.7792147041016],[128.84271609375,44.7884712958985],[128.853331328125,44.8237258125001],[128.876788359375,44.8657643867188],[128.9530871875,44.8830989814453],[128.98197390625,44.8992147041016],[129.005655546875,44.9097823310547],[129.04291140625,44.9067885566407],[129.04158328125,44.9233235908203],[129.018619414063,44.9644838691407],[129.04295046875,44.9987984443359],[129.031920195313,45.0185646796875],[129.032877226563,45.0304616523438],[129.003663359375,45.0556319404297],[128.99271609375,45.0740358710937],[129.062667265625,45.0684151435547],[129.07498171875,45.0827095771485],[129.133287382813,45.1087252021485],[129.12197390625,45.1184712958985],[129.11271609375,45.1292147041016],[129.10197390625,45.1384712958985],[129.09271609375,45.1512404609375],[129.1180871875,45.1730989814453],[129.13197390625,45.1892147041016],[129.16271609375,45.1984712958985],[129.203189726563,45.213333966797],[129.20158328125,45.2333235908204],[129.1683996875,45.2927999091797],[129.142623320313,45.2784188056641],[129.132345,45.2792446113281],[129.117345,45.2780397773437],[129.094561796875,45.2798702216798],[129.08271609375,45.3192147041016],[129.055260039063,45.3428719306641],[129.127828398438,45.3704109931641],[129.152345,45.3684413886719],[129.177535429688,45.3704653144532],[129.19197390625,45.4206221748047],[129.15197390625,45.4384712958985],[129.119732695313,45.4613307929688],[129.12724734375,45.5548403144532],[129.097345,45.563843],[129.084322539063,45.5969704414063],[129.103883085938,45.6223104072266]]]]}},{"type":"Feature","properties":{"name":"林口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.881007109375,45.9475057197266],[129.901676054688,45.9175716376954],[129.920230742188,45.9217317939454],[129.9421496875,45.9074599433594],[129.989464140625,45.9273342109375],[130.058526640625,45.9118526435547],[130.107345,45.923843],[130.182003203125,45.8924239326172],[130.1829309375,45.8690200019532],[130.168468046875,45.8556185126954],[130.182550078125,45.8290071845704],[130.181949492188,45.813843],[130.182740507813,45.793843],[130.182144804688,45.778843],[130.182955351563,45.7583870673828],[130.16045046875,45.6941756416016],[130.192535429688,45.6790334296876],[130.21252078125,45.6574629951172],[130.26216921875,45.6594307685548],[130.289625273438,45.6297963691406],[130.3324621875,45.6185720039063],[130.387276640625,45.6777303291015],[130.474683867188,45.6065944648438],[130.547193632813,45.6255940986329],[130.580250273438,45.5899172187501],[130.641461210938,45.5874910712891],[130.660323515625,45.6078530097657],[130.692535429688,45.6286525703125],[130.720074492188,45.6583754707032],[130.762535429688,45.6190334296875],[130.767345,45.6138430000001],[130.75298953125,45.5781990791016],[130.741549101563,45.559233625],[130.748746367188,45.5105275703125],[130.732345,45.5081038642578],[130.707603789063,45.5117604804688],[130.6860559375,45.4951302314453],[130.677345,45.483843],[130.661158476563,45.4800307441407],[130.651842070313,45.440487897461],[130.621158476563,45.4300307441407],[130.586744414063,45.4021584296875],[130.551158476563,45.3900307441407],[130.547345,45.3838430000001],[130.54170046875,45.3794869208985],[130.53298953125,45.3581990791016],[130.51170046875,45.3494869208984],[130.50298953125,45.3381990791016],[130.469600859375,45.3124263740235],[130.478741484375,45.2505538154297],[130.45170046875,45.2394869208985],[130.427554960938,45.1991170478516],[130.460382109375,45.1737801337891],[130.40170046875,45.1294869208985],[130.397345,45.123843],[130.380181914063,45.1172463203126],[130.361983671875,45.1195095039063],[130.332100859375,45.1019423652344],[130.229576445313,45.0891194892578],[130.205904570313,45.0595571113281],[130.18166140625,45.0493410468751],[130.184830351563,45.023843],[130.181676054688,44.9984505439454],[130.203258085938,44.9689028144532],[130.191676054688,44.9492031074219],[130.193023710938,44.9383901191406],[130.180533476563,44.9283901191407],[130.183023710938,44.9083901191406],[130.160553007813,44.8903963447266],[130.173433867188,44.868487165039],[130.12166140625,44.8493477607422],[130.123590117188,44.833843],[130.121724882813,44.818843],[130.122965117188,44.8088430000001],[130.121724882813,44.798843],[130.1262121875,44.7627584052735],[130.179586210938,44.7200185371094],[130.110621367188,44.6715444160156],[130.075206328125,44.6566213203126],[130.052345,44.6594649482422],[130.027345,44.6563552070313],[129.997345,44.6600868964845],[129.982345,44.6582210517578],[129.962345,44.6607088447266],[129.937345,44.6575991035157],[129.922061796875,44.6595003486328],[129.907345,44.6538430000001],[129.893062773438,44.6753224921875],[129.833062773438,44.6602053046875],[129.813350859375,44.6898494697266],[129.781339140625,44.6978365302735],[129.773350859375,44.7098494697266],[129.717608671875,44.7184096503907],[129.703350859375,44.7398494697266],[129.697345,44.743843],[129.691402617188,44.7489607978516],[129.716104765625,44.7599837470703],[129.701925078125,44.7986043525391],[129.702769804688,44.8091390205078],[129.679752226563,44.8416005683594],[129.685133085938,44.9085195136719],[129.656451445313,44.9332289863281],[129.71271609375,44.9684712958985],[129.730225859375,45.0077095771485],[129.7480871875,45.0230989814453],[129.765382109375,45.0431746650391],[129.848595,45.0620778632813],[129.87197390625,45.0892147041016],[129.909757109375,45.1060738349609],[129.88197390625,45.1184712958985],[129.86271609375,45.1334169746094],[129.905836210938,45.1604232001954],[129.901944609375,45.208843],[129.904312773438,45.2383614326172],[129.92271609375,45.2884712958985],[129.93197390625,45.3392147041016],[129.94271609375,45.3584712958985],[129.95197390625,45.3992147041016],[129.966763945313,45.4257271552735],[129.951690703125,45.4387123847657],[129.971295195313,45.473843],[129.950719023438,45.5107210517579],[129.894498320313,45.5062038398437],[129.861236601563,45.4876448798828],[129.863385039063,45.4608950019531],[129.81197390625,45.4492147041016],[129.801373320313,45.4369124580079],[129.768253203125,45.4395735908203],[129.74271609375,45.4692147041016],[129.72197390625,45.4784712958985],[129.692642851563,45.4992684150391],[129.646119414063,45.4955306220703],[129.603736601563,45.52558128125],[129.58271609375,45.4784712958985],[129.568565703125,45.4592147041016],[129.514439726563,45.4894130683594],[129.502066679688,45.4884188056641],[129.48271609375,45.4992147041016],[129.46197390625,45.5084712958985],[129.421031523438,45.5375002265625],[129.4227746875,45.5591970039063],[129.316983671875,45.591048810547],[129.297345,45.6138430000001],[129.302984648438,45.638681256836],[129.2992590625,45.668671491211],[129.336632109375,45.6793581367188],[129.330611601563,45.72776878125],[129.404254179688,45.7384871650391],[129.399898710938,45.7735005927735],[129.452345,45.7669771552735],[129.461793242188,45.7893959785157],[129.502896757813,45.7982900214844],[129.55603640625,45.8212288642578],[129.547345,45.843843],[129.55142703125,45.8497585273438],[129.56361453125,45.8581728339844],[129.559381132813,45.8770577216797],[129.577345,45.8810848212891],[129.600230742188,45.8759542060548],[129.6221496875,45.8902260566406],[129.655797148438,45.8760939765626],[129.726617460938,45.8934896064453],[129.779600859375,45.8816115546875],[129.783468046875,45.898843],[129.778980742188,45.9188430000001],[129.784586210938,45.943843],[129.777725859375,45.9744448066406],[129.837652617188,45.9878792548828],[129.85142703125,45.9679274726563],[129.881007109375,45.9475057197266]]]]}},{"type":"Feature","properties":{"name":"穆棱市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.907345,44.2038430000001],[129.897345,44.2038430000001],[129.902345,44.2166506171876],[129.907345,44.2038430000001]]],[[[130.857345,44.713843],[130.869537382813,44.7172664619141],[130.860767851563,44.7260353828125],[130.817857695313,44.7069710517578],[130.802896757813,44.6882900214844],[130.776187773438,44.6770345283203],[130.729527617188,44.6903585029297],[130.705133085938,44.687323834961],[130.68634890625,44.6427474189453],[130.631846953125,44.64952659375],[130.621085234375,44.6239839912109],[130.623018828125,44.6084389472656],[130.591793242188,44.5693959785157],[130.582896757813,44.5282900214844],[130.561676054688,44.4992354560548],[130.563023710938,44.4883901191406],[130.551793242188,44.4793959785156],[130.542896757813,44.4682900214844],[130.521793242188,44.4593959785157],[130.502896757813,44.4314278388672],[130.525479765625,44.3726808906251],[130.511793242188,44.3493959785157],[130.502896757813,44.3154116035157],[130.522896757813,44.2993959785157],[130.53388796875,44.2362459541015],[130.52951296875,44.2010774970704],[130.501793242188,44.1893959785157],[130.479547148438,44.1763210273438],[130.4837121875,44.14284690625],[130.435963164063,44.1227260566407],[130.402896757813,44.0682900214844],[130.391793242188,44.0593959785156],[130.382896757813,44.0482900214844],[130.357345,44.0438430000001],[130.309576445313,44.0378682685547],[130.292896757813,43.9982900214844],[130.274146757813,43.9832747626954],[130.252896757813,43.9482900214844],[130.239249296875,43.9373622871094],[130.19939578125,43.9423195625001],[130.159146757813,43.9268471503907],[130.139932890625,43.8812544990235],[130.111793242188,43.8693959785156],[130.102896757813,43.8482900214844],[130.06322390625,43.8315712714844],[130.006275664063,43.8650460029297],[130.01537234375,43.9381764960938],[129.97380984375,44.0088808417969],[129.947345,44.023843],[129.963682890625,44.0475057197266],[130.01451296875,44.0826003242188],[130.05013796875,44.1450118232422],[130.0220715625,44.1643868232422],[129.977017851563,44.154286725586],[129.95326296875,44.1697585273438],[129.92142703125,44.1779274726563],[129.907345,44.2038430000001],[129.972579375,44.1984206367187],[130.0098840625,44.2121193671876],[130.02197390625,44.2392147041016],[130.043492460938,44.2695644355469],[130.041944609375,44.288843],[130.042838164063,44.3000081611328],[130.062594023438,44.2984212470704],[130.08197390625,44.3061598945312],[130.03197390625,44.3284712958985],[129.98271609375,44.3692147041016],[129.941632109375,44.3949495673828],[129.943565703125,44.4190596748048],[129.917345,44.4238430000001],[129.90537234375,44.4657112861328],[129.851793242188,44.4882900214844],[129.842896757813,44.5093959785157],[129.811793242188,44.5182900214844],[129.761666289063,44.5583797431641],[129.7636340625,44.574204328125],[129.818717070313,44.5899532294922],[129.851793242188,44.6093959785157],[129.872896757813,44.6182900214844],[129.886236601563,44.6349489570313],[129.902896757813,44.6482900214844],[129.907345,44.6538430000001],[129.922061796875,44.6595003486328],[129.937345,44.6575991035157],[129.962345,44.6607088447266],[129.982345,44.6582210517578],[129.997345,44.6600868964845],[130.027345,44.6563552070313],[130.052345,44.6594649482422],[130.075206328125,44.6566213203126],[130.110621367188,44.6715444160156],[130.179586210938,44.7200185371094],[130.1262121875,44.7627584052735],[130.121724882813,44.798843],[130.122965117188,44.8088430000001],[130.121724882813,44.818843],[130.123590117188,44.833843],[130.12166140625,44.8493477607422],[130.173433867188,44.868487165039],[130.160553007813,44.8903963447266],[130.183023710938,44.9083901191406],[130.180533476563,44.9283901191407],[130.193023710938,44.9383901191406],[130.191676054688,44.9492031074219],[130.203258085938,44.9689028144532],[130.181676054688,44.9984505439454],[130.184830351563,45.023843],[130.18166140625,45.0493410468751],[130.205904570313,45.0595571113281],[130.229576445313,45.0891194892578],[130.332100859375,45.1019423652344],[130.361983671875,45.1195095039063],[130.380181914063,45.1172463203126],[130.397345,45.123843],[130.411846953125,45.0881587958985],[130.422799101563,45.0895211005859],[130.445152617188,45.0616030097656],[130.472706328125,45.0581764960938],[130.52420046875,45.0884462714844],[130.567345,45.093843],[130.57142703125,45.0879274726563],[130.58326296875,45.0797585273438],[130.59142703125,45.0679274726563],[130.624000273438,45.0493367744141],[130.64326296875,45.0197585273438],[130.653682890625,44.9919057441407],[130.672345,44.9877223945313],[130.691676054688,44.9920552802735],[130.713975859375,44.9597585273438],[130.747095976563,44.9689968085938],[130.7641028125,44.9936330390626],[130.799141875,45.0014876533203],[130.83142703125,44.9879274726563],[130.857345,44.983843],[130.869595976563,44.9660964179688],[130.911861601563,44.9369148994141],[130.92142703125,44.8879274726563],[130.945094023438,44.8715895820312],[130.957345,44.853843],[130.96170046875,44.8281990791016],[131.01076296875,44.8145369697266],[131.013082304688,44.798843],[131.011514921875,44.7882381416016],[131.064303007813,44.7770992255859],[131.061226835938,44.7562831855469],[131.083160429688,44.739355084961],[131.080670195313,44.7224935126953],[131.09170046875,44.7081990791016],[131.1086340625,44.6951302314453],[131.13041140625,44.6169118476562],[131.147345,44.573843],[131.13197390625,44.5784712958984],[131.012218046875,44.5892598701172],[130.921964140625,44.572895734375],[130.89271609375,44.5892147041016],[130.8658996875,44.6011806464844],[130.850885039063,44.6672682929688],[130.865094023438,44.6927358222657],[130.857345,44.713843]]]]}},{"type":"Feature","properties":{"name":"宁安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.307345,43.803843],[129.303922148438,43.8160353828125],[129.295152617188,43.8072664619141],[129.295777617188,43.7893959785156],[129.281793242188,43.7982900214844],[129.265777617188,43.8182900214844],[129.232432890625,43.8059261298828],[129.207139921875,43.7856728339844],[129.212965117188,43.7388430000001],[129.211676054688,43.7284828925782],[129.22322390625,43.7088430000001],[129.202896757813,43.6742659736329],[129.211793242188,43.6482900214844],[129.231793242188,43.6142659736328],[129.218985625,43.5912587714844],[129.162706328125,43.5581764960938],[129.13468875,43.5616609931641],[129.091793242188,43.5493959785157],[129.087345,43.543843],[129.04197390625,43.5392147041016],[129.008990507813,43.5271034980469],[128.977862578125,43.5296047187501],[128.935889921875,43.5530239082032],[128.8740246875,43.5360915351563],[128.86271609375,43.5492147041016],[128.85197390625,43.5584712958985],[128.836021757813,43.5769844794922],[128.80345828125,43.6499587226563],[128.78197390625,43.6884712958985],[128.76373171875,43.7293563056641],[128.743717070313,43.7277480292969],[128.71271609375,43.7406221748047],[128.75490359375,43.7594472480469],[128.71740359375,43.8266622138672],[128.751363554688,43.8559200263672],[128.6989075,43.901112897461],[128.652550078125,43.8884249091797],[128.62884890625,43.8903292060547],[128.6327746875,43.9391664863282],[128.585094023438,43.9802431464844],[128.557901640625,44.0519008613281],[128.53197390625,44.0884712958985],[128.52271609375,44.1092147041016],[128.463472929688,44.1602577949219],[128.457345,44.193843],[128.491793242188,44.2093959785156],[128.532896757813,44.2182900214844],[128.564459257813,44.2368422675782],[128.561441679688,44.2611074042969],[128.59400515625,44.2871834541016],[128.611890898438,44.309521100586],[128.633214140625,44.3068691230469],[128.631666289063,44.3192958808594],[128.649171171875,44.3333150458985],[128.7081653125,44.3164699531251],[128.753599882813,44.333935163086],[128.751656523438,44.3183132148438],[128.802896757813,44.3093959785157],[128.828194609375,44.2945272041016],[128.871793242188,44.3293959785156],[128.908624296875,44.3399275947266],[128.98873171875,44.3299636054688],[129.025479765625,44.3515627265625],[129.052345,44.3482210517578],[129.082345,44.351952741211],[129.129210234375,44.3461232734375],[129.151793242188,44.3593959785156],[129.172896757813,44.3682900214844],[129.181793242188,44.3793959785157],[129.192896757813,44.3882900214844],[129.201793242188,44.3993959785156],[129.238516875,44.4148702216797],[129.252144804688,44.3978475166016],[129.281236601563,44.4149489570313],[129.312896757813,44.4282900214844],[129.341954375,44.4495137763672],[129.381890898438,44.444546125],[129.397345,44.4638430000001],[129.40271609375,44.4592147041016],[129.443199492188,44.455962140625],[129.48197390625,44.4284712958984],[129.521959257813,44.4164327216797],[129.501539335938,44.398843],[129.527535429688,44.3764479804688],[129.637345,44.3852712226563],[129.732022734375,44.3776638007813],[129.737345,44.3838430000001],[129.771060820313,44.3615608955078],[129.854263945313,44.3323964667969],[129.847193632813,44.3008534980469],[129.86361453125,44.2895131660157],[129.855894804688,44.2550691962891],[129.883580351563,44.2193477607422],[129.881041289063,44.2080269599609],[129.897345,44.2038430000001],[129.907345,44.2038430000001],[129.92142703125,44.1779274726563],[129.95326296875,44.1697585273438],[129.977017851563,44.154286725586],[130.0220715625,44.1643868232422],[130.05013796875,44.1450118232422],[130.01451296875,44.0826003242188],[129.963682890625,44.0475057197266],[129.947345,44.023843],[129.912418242188,44.018212506836],[129.901954375,44.0195137763672],[129.872198515625,43.9977797675782],[129.8615246875,44.0111135078125],[129.802896757813,43.9682900214844],[129.780479765625,43.958843],[129.783023710938,43.9383901191407],[129.771666289063,43.9292958808594],[129.775455351563,43.8988430000001],[129.731656523438,43.8893672919922],[129.733370390625,43.8756056953125],[129.697345,43.8800868964844],[129.647345,43.8738674140625],[129.602310820313,43.8794692207031],[129.522379179688,43.8682167792969],[129.464610625,43.8754024482422],[129.442896757813,43.8482900214844],[129.409210234375,43.838657453125],[129.392896757813,43.8182900214844],[129.363546171875,43.7947835517578],[129.307345,43.803843]]]]}},{"type":"Feature","properties":{"name":"阳明区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.813350859375,44.6898494697266],[129.833062773438,44.6602053046875],[129.893062773438,44.6753224921875],[129.907345,44.6538430000001],[129.902896757813,44.6482900214844],[129.886236601563,44.6349489570313],[129.872896757813,44.6182900214844],[129.851793242188,44.6093959785157],[129.818717070313,44.5899532294922],[129.7636340625,44.574204328125],[129.761666289063,44.5583797431641],[129.811793242188,44.5182900214844],[129.842896757813,44.5093959785157],[129.851793242188,44.4882900214844],[129.90537234375,44.4657112861328],[129.917345,44.4238430000001],[129.908599882813,44.3897585273438],[129.88142703125,44.3979274726562],[129.873116484375,44.4303163886719],[129.84326296875,44.4497585273438],[129.82142703125,44.4579274726563],[129.79326296875,44.4797585273437],[129.75713015625,44.4932772041016],[129.72142703125,44.5179274726563],[129.71326296875,44.5297585273438],[129.6712121875,44.5537599921875],[129.65326296875,44.5797585273438],[129.62142703125,44.5879274726562],[129.617345,44.593843],[129.641842070313,44.6114022041016],[129.654522734375,44.6746541572266],[129.673170195313,44.6880178046876],[129.677345,44.6938430000001],[129.690709257813,44.7011696601563],[129.669097929688,44.7297493720704],[129.693804960938,44.7373836494141],[129.697345,44.743843],[129.703350859375,44.7398494697266],[129.717608671875,44.7184096503907],[129.773350859375,44.7098494697266],[129.781339140625,44.6978365302735],[129.813350859375,44.6898494697266]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"爱辉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.052154570313,50.9586522651367],[127.129600859375,50.922101972168],[127.233756132813,50.7719222236328],[127.301475859375,50.7455513740235],[127.272535429688,50.6908559394532],[127.295235625,50.6535930610352],[127.34986453125,50.602975385254],[127.369132109375,50.5665654731446],[127.343839140625,50.5392684150391],[127.3114075,50.5239611030273],[127.287100859375,50.4546196723633],[127.361431914063,50.4369148994141],[127.362926054688,50.3991625190431],[127.322535429688,50.3464903999024],[127.333678007813,50.325825421875],[127.382154570313,50.2886522651367],[127.452535429688,50.2690337348633],[127.482154570313,50.2586522651368],[127.602120390625,50.2395418525391],[127.602545195313,50.228843],[127.602144804688,50.2188430000001],[127.602843046875,50.2012163520508],[127.583678007813,50.1406795478516],[127.572535429688,50.1286522651367],[127.504263945313,50.0785762763673],[127.489210234375,49.9921346259766],[127.54547,49.9255596137696],[127.520963164063,49.8556349921876],[127.533707304688,49.8021276069336],[127.576358671875,49.7871788764649],[127.671925078125,49.7644148994141],[127.672843046875,49.7412990546876],[127.667345,49.6938430000001],[127.611197539063,49.6881157661133],[127.6133215625,49.6616646552735],[127.57197390625,49.6492150092774],[127.55935671875,49.6209395576172],[127.432823515625,49.6092150092774],[127.342603789063,49.6492653632813],[127.327345,49.648039472168],[127.312345,49.6492446113282],[127.302022734375,49.6484151435548],[127.29271609375,49.6592150092774],[127.276104765625,49.6684709907227],[127.26271609375,49.6384709907227],[127.248521757813,49.626239850586],[127.176392851563,49.6045244575196],[127.120279570313,49.6198821235352],[127.099742460938,49.618232038086],[127.08271609375,49.5984709907227],[127.020377226563,49.5889720893555],[127.002667265625,49.5684151435547],[126.967345,49.5712535834961],[126.932345,49.5684413886719],[126.922105742188,49.5692638374024],[126.89271609375,49.5584709907227],[126.85197390625,49.5492150092774],[126.84271609375,49.5184709907227],[126.8319153125,49.509166791504],[126.8327746875,49.4985192084961],[126.82197390625,49.4892150092774],[126.81271609375,49.4684709907227],[126.775167265625,49.4517150092774],[126.73271609375,49.4184709907227],[126.697345,49.413843],[126.697345,49.4238430000001],[126.677345,49.4238430000001],[126.66697390625,49.4367943549805],[126.585972929688,49.4599532294922],[126.542603789063,49.4854470039063],[126.532896757813,49.5193959785157],[126.52146609375,49.5388430000001],[126.532896757813,49.5582900214844],[126.54478640625,49.5998747993165],[126.518272734375,49.6211077094727],[126.5237121875,49.66483909375],[126.491793242188,49.6782900214844],[126.472896757813,49.6942662788087],[126.498687773438,49.7381429267578],[126.451793242188,49.7482900214844],[126.394683867188,49.764596479004],[126.322896757813,49.7482900214844],[126.2484778125,49.7374584174806],[126.231890898438,49.7395214057617],[126.208800078125,49.7106853461914],[126.224034453125,49.6984874702149],[126.171793242188,49.6893959785157],[126.160831328125,49.6757085395508],[126.10345828125,49.6920912910157],[126.063941679688,49.687175824707],[126.052896757813,49.7442662788086],[126.076090117188,49.7837224555665],[126.071724882813,49.818843],[126.073023710938,49.8292958808594],[126.02474734375,49.8679552436524],[126.011261015625,49.915123822754],[126.0141809375,49.9386159492188],[125.981793242188,49.9582900214845],[125.968355742188,50.0052892280274],[125.880455351563,50.0286452460938],[125.885636015625,50.070299604004],[125.911890898438,50.067033612793],[125.928057890625,50.0872216010742],[125.869610625,50.1118508125],[125.873033476563,50.1393669868164],[125.824390898438,50.1498912788086],[125.83443484375,50.2306453681641],[125.882896757813,50.2882900214844],[125.89248171875,50.3541323066406],[125.952896757813,50.3882900214844],[125.984410429688,50.4113079047852],[126.07740359375,50.431428144043],[126.091793242188,50.4493959785157],[126.131470976563,50.4811702705079],[126.157447539063,50.5428185249024],[126.14654421875,50.6304705024414],[126.163013945313,50.658483197754],[126.1609778125,50.67483909375],[126.192896757813,50.6882900214844],[126.212144804688,50.7339681220703],[126.226632109375,50.8172228217774],[126.252896757813,50.8282900214844],[126.281793242188,50.8493959785156],[126.335089140625,50.8817693305664],[126.331724882813,50.9088430000001],[126.332965117188,50.918843],[126.330094023438,50.9419280219727],[126.337345,50.973843],[126.382535429688,50.9490337348633],[126.412720976563,50.9282631660156],[126.432515898438,50.9290477729493],[126.47252078125,50.9015172553711],[126.662345,50.9090410590821],[126.697345,50.9076540351563],[126.834527617188,50.9130913520508],[126.972252226563,50.9290450263672],[126.992354765625,50.9282482124024],[127.017345,50.9838430000001],[127.052154570313,50.9586522651367]]]]}},{"type":"Feature","properties":{"name":"北安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.012398710938,48.5493315864259],[127.042105742188,48.5384221625977],[127.062022734375,48.5400221992188],[127.079742460938,48.5194539619141],[127.092345,48.5184413886719],[127.107916289063,48.5196923041993],[127.144586210938,48.508651959961],[127.164039335938,48.4860741401368],[127.247017851563,48.4556023383789],[127.333604765625,48.4625603461915],[127.372105742188,48.4484218574219],[127.382345,48.4492446113281],[127.392345,48.4484413886719],[127.402623320313,48.4492671943359],[127.42197390625,48.4384712958985],[127.537345,48.4338430000001],[127.549210234375,48.419028546875],[127.6010559375,48.4042043281251],[127.602965117188,48.3888430000001],[127.600650664063,48.3702297187501],[127.623316679688,48.3316689277344],[127.621085234375,48.3137020087891],[127.631793242188,48.2882900214844],[127.6429309375,48.2793709541016],[127.682896757813,48.2293959785157],[127.701793242188,48.1982900214844],[127.7749621875,48.1876406074219],[127.805142851563,48.1463252998048],[127.801724882813,48.1188430000001],[127.802965117188,48.108843],[127.800650664063,48.09022971875],[127.813013945313,48.0692031074219],[127.8107434375,48.0509700751953],[127.841793242188,48.0282900214844],[127.857345,48.023843],[127.885225859375,48.0166884589844],[127.880103789063,47.993843],[127.886197539063,47.9666628242187],[127.87326296875,47.9479274726563],[127.847257109375,47.9381966376953],[127.83326296875,47.9179274726563],[127.806046171875,47.907743756836],[127.791485625,47.8510042548829],[127.76142703125,47.8397585273438],[127.75326296875,47.8179274726563],[127.687345,47.7838430000001],[127.663721953125,47.804950788086],[127.651011992188,47.8326375556641],[127.562345,47.827353131836],[127.532345,47.8291408515626],[127.507803984375,47.8276784492188],[127.472628203125,47.8085616279297],[127.409459257813,47.7890554023438],[127.245201445313,47.77718284375],[127.207345,47.7794393134766],[127.187345,47.7782466865234],[127.14545046875,47.7807442451172],[126.994019804688,47.7401869941407],[126.949068632813,47.7157601142579],[126.887515898438,47.7194289375001],[126.82250125,47.7427565742188],[126.726939726563,47.7257741523437],[126.694429960938,47.6893904853516],[126.587120390625,47.6401369453125],[126.570968046875,47.604950788086],[126.547345,47.583843],[126.521671171875,47.5904311347656],[126.517345,47.723843],[126.552896757813,47.7282900214844],[126.561793242188,47.7893959785156],[126.589771757813,47.8277010322266],[126.561373320313,47.8760170722656],[126.564273710938,47.8993526435547],[126.623248320313,47.9465785957032],[126.620479765625,47.9688430000001],[126.622965117188,47.988843],[126.616822539063,48.0382460761719],[126.5901575,48.0596004462891],[126.613013945313,48.0984828925782],[126.611656523438,48.1093672919922],[126.652896757813,48.1182900214844],[126.661793242188,48.1231447578125],[126.607232695313,48.1614931464844],[126.562799101563,48.2169844794922],[126.481119414063,48.2068245673828],[126.432628203125,48.1881856513672],[126.3724621875,48.195669171875],[126.342896757813,48.1782900214844],[126.310548125,48.1693959785157],[126.318678007813,48.2347664619141],[126.301793242188,48.2482900214844],[126.288453398438,48.2649489570313],[126.277345,48.2738430000001],[126.29123171875,48.2899587226563],[126.343204375,48.3131508613282],[126.3405090625,48.3466866279297],[126.372623320313,48.349267194336],[126.408565703125,48.3292147041016],[126.413345976563,48.3513869453125],[126.4119153125,48.3691970039063],[126.454107695313,48.3819008613282],[126.4519153125,48.409204328125],[126.509288359375,48.4196694160156],[126.55505984375,48.4727999091798],[126.59572390625,48.4473311591798],[126.618873320313,48.4204622626953],[126.767843046875,48.4070412421876],[126.802154570313,48.4366017890626],[126.812525664063,48.471057050293],[126.862105742188,48.4892638374024],[126.919429960938,48.4846578193359],[126.933472929688,48.5098235297852],[126.930904570313,48.5417711616212],[126.972550078125,48.5384249091797],[127.012398710938,48.5493315864259]]]]}},{"type":"Feature","properties":{"name":"嫩江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.977345,48.763843],[125.997345,48.763843],[125.997345,48.743843],[125.98406375,48.75056175],[125.977345,48.763843]]],[[[125.977345,48.763843],[125.967345,48.763843],[125.967345,48.7738430000001],[125.977345,48.7738430000001],[125.977345,48.763843]]],[[[125.257345,49.353843],[125.245152617188,49.3572661567383],[125.253922148438,49.3660353828126],[125.257345,49.353843]]],[[[125.437345,50.2238430000001],[125.424537382813,50.228843],[125.437345,50.233843],[125.437345,50.2238430000001]]],[[[125.257345,49.353843],[125.270928984375,49.3651262641602],[125.24302859375,49.413843],[125.264478789063,49.4513021064453],[125.220308867188,49.4879964423828],[125.233365507813,49.4988430000001],[125.221881132813,49.5083803535156],[125.207515898438,49.5256774116211],[125.224771757813,49.5400139594727],[125.2218371875,49.5688430000001],[125.223873320313,49.588843],[125.191422148438,49.6029180122071],[125.162667265625,49.6193856025391],[125.133961210938,49.6164595771484],[125.112808867188,49.6723632026368],[125.157432890625,49.667814862793],[125.182345,49.6378237128907],[125.191881132813,49.6493056464844],[125.213053007813,49.666891400879],[125.210308867188,49.6938430000001],[125.212886992188,49.7191658759766],[125.201617460938,49.738843],[125.212808867188,49.7583803535157],[125.221881132813,49.7944075751954],[125.167345,49.823843],[125.171519804688,49.8296678901367],[125.225401640625,49.838378522461],[125.221236601563,49.8594634223633],[125.238917265625,49.8721388984375],[125.211261015625,49.9083571601563],[125.2139465625,49.9219445014649],[125.18326296875,49.9439360786133],[125.173170195313,49.9675722480469],[125.228761015625,49.956587140625],[125.241519804688,49.9896678901367],[125.279605742188,49.9997158027344],[125.291519804688,50.0274651313477],[125.2512121875,50.0380998969727],[125.254610625,50.0553115058594],[125.307398710938,50.0448802924805],[125.331519804688,50.0579940009766],[125.26968875,50.070390241211],[125.273472929688,50.0895510078126],[125.249381132813,50.098843],[125.273472929688,50.1081349921875],[125.270391875,50.1237355781251],[125.297183867188,50.1380181098633],[125.312345,50.1168669868165],[125.321519804688,50.1296678901367],[125.365284453125,50.1384419990235],[125.329810820313,50.1590087104492],[125.370904570313,50.1748580146485],[125.381519804688,50.1896678901368],[125.431832304688,50.2029412055665],[125.437345,50.2238430000001],[125.4605871875,50.228843],[125.437345,50.233843],[125.442652617188,50.2486418891602],[125.4420325,50.259095685547],[125.452628203125,50.2685616279297],[125.462061796875,50.2891243720703],[125.488853789063,50.31306175],[125.523043242188,50.3287526679688],[125.51115359375,50.3393755317383],[125.532940703125,50.358843],[125.5220325,50.3685903144532],[125.523194609375,50.3880803657227],[125.5120325,50.4086174750977],[125.512867460938,50.4226253486328],[125.577984648438,50.3992604804688],[125.55611453125,50.4395125556641],[125.57259890625,50.4385298896485],[125.583101835938,50.4502880073243],[125.631588164063,50.4473979926758],[125.650260039063,50.4682955146485],[125.672628203125,50.4785616279297],[125.682061796875,50.4891243720703],[125.728995390625,50.5231856513672],[125.747877226563,50.5020549750977],[125.772061796875,50.5291243720703],[125.814444609375,50.548576581543],[125.811178007813,50.6033824897461],[125.791495390625,50.6396056342774],[125.792642851563,50.658843],[125.791451445313,50.6788430000001],[125.812628203125,50.6885616279297],[125.822061796875,50.7002031684571],[125.781451445313,50.7188430000001],[125.7826575,50.7391139960938],[125.751597929688,50.7487062812501],[125.779654570313,50.7737779975586],[125.833502226563,50.7544582343751],[125.8314465625,50.7889333320313],[125.864097929688,50.799016034668],[125.882061796875,50.8191243720704],[125.912974882813,50.8333104682618],[125.9120325,50.8491139960938],[125.9426575,50.8585720039063],[125.9420325,50.8690532661133],[125.954195585938,50.8985616279297],[125.972061796875,50.8785616279297],[125.99322390625,50.8691243720703],[125.99197390625,50.890107038086],[126.012628203125,50.9085616279297],[126.017345,50.923843],[126.027345,50.923843],[126.037345,50.923843],[126.043990507813,50.9155446601563],[126.115631132813,50.9310448432618],[126.13334109375,50.9730724311524],[126.17271609375,50.9681746650391],[126.225269804688,51.0016075874024],[126.322896757813,50.9893959785157],[126.331793242188,50.9782900214844],[126.337345,50.973843],[126.330094023438,50.9419280219727],[126.332965117188,50.918843],[126.331724882813,50.9088430000001],[126.335089140625,50.8817693305664],[126.281793242188,50.8493959785156],[126.252896757813,50.8282900214844],[126.226632109375,50.8172228217774],[126.212144804688,50.7339681220703],[126.192896757813,50.6882900214844],[126.1609778125,50.67483909375],[126.163013945313,50.658483197754],[126.14654421875,50.6304705024414],[126.157447539063,50.5428185249024],[126.131470976563,50.4811702705079],[126.091793242188,50.4493959785157],[126.07740359375,50.431428144043],[125.984410429688,50.4113079047852],[125.952896757813,50.3882900214844],[125.89248171875,50.3541323066406],[125.882896757813,50.2882900214844],[125.83443484375,50.2306453681641],[125.824390898438,50.1498912788086],[125.873033476563,50.1393669868164],[125.869610625,50.1118508125],[125.928057890625,50.0872216010742],[125.911890898438,50.067033612793],[125.885636015625,50.070299604004],[125.880455351563,50.0286452460938],[125.968355742188,50.0052892280274],[125.981793242188,49.9582900214845],[126.0141809375,49.9386159492188],[126.011261015625,49.915123822754],[126.02474734375,49.8679552436524],[126.073023710938,49.8292958808594],[126.071724882813,49.818843],[126.076090117188,49.7837224555665],[126.052896757813,49.7442662788086],[126.063941679688,49.687175824707],[126.10345828125,49.6920912910157],[126.160831328125,49.6757085395508],[126.171793242188,49.6893959785157],[126.224034453125,49.6984874702149],[126.208800078125,49.7106853461914],[126.231890898438,49.7395214057617],[126.2484778125,49.7374584174806],[126.322896757813,49.7482900214844],[126.394683867188,49.764596479004],[126.451793242188,49.7482900214844],[126.498687773438,49.7381429267578],[126.472896757813,49.6942662788087],[126.491793242188,49.6782900214844],[126.5237121875,49.66483909375],[126.518272734375,49.6211077094727],[126.54478640625,49.5998747993165],[126.532896757813,49.5582900214844],[126.52146609375,49.5388430000001],[126.532896757813,49.5193959785157],[126.542603789063,49.4854470039063],[126.585972929688,49.4599532294922],[126.66697390625,49.4367943549805],[126.677345,49.4238430000001],[126.677345,49.413843],[126.697345,49.413843],[126.70170046875,49.3981993842774],[126.7164465625,49.3737532783203],[126.724561796875,49.318843],[126.721143828125,49.2957039619141],[126.743140898438,49.2592333198243],[126.740445585938,49.2409914375],[126.802994414063,49.2153920722657],[126.827345,49.183843],[126.766558867188,49.1398543525391],[126.73033328125,49.1290337348633],[126.687257109375,49.1755236030273],[126.669595976563,49.1886522651368],[126.612496367188,49.1686388374024],[126.602203398438,49.1690468574219],[126.562281523438,49.1585854316407],[126.539654570313,49.1705586982423],[126.513228789063,49.1990761542969],[126.492345,49.1982485175782],[126.472174101563,49.199048078125],[126.432535429688,49.1686522651367],[126.40908328125,49.1575850654298],[126.362720976563,49.1594228339844],[126.3189075,49.1292751289063],[126.262496367188,49.1490471625977],[126.252345,49.1486449409181],[126.23252078125,49.1494304633789],[126.211441679688,49.1266771674805],[126.213726835938,49.0689363837891],[126.172154570313,49.0590337348633],[126.161451445313,49.0363576484376],[126.162545195313,49.008843],[126.161749296875,48.988843],[126.162550078125,48.968665998047],[126.149298125,48.9563875556641],[126.082159453125,48.9590486884766],[126.071734648438,48.9261293769532],[126.002154570313,48.8990337348633],[125.992535429688,48.8886522651368],[125.971363554688,48.8786592841797],[125.972916289063,48.8393758369141],[125.962154570313,48.8190337348633],[125.957345,48.7738430000001],[125.864703398438,48.8244155097657],[125.842628203125,48.8491243720703],[125.818365507813,48.8685616279298],[125.782628203125,48.8285616279298],[125.752061796875,48.8191243720703],[125.722628203125,48.8085616279297],[125.684107695313,48.7991243720704],[125.609332304688,48.8828133369141],[125.52427859375,48.8646416450196],[125.463453398438,48.8221553779298],[125.447345,48.7870549750977],[125.40513796875,48.7895705390625],[125.30810671875,48.7295842719727],[125.228961210938,48.7148125434571],[125.202569609375,48.7291545844727],[125.192345,48.7285448432618],[125.182345,48.7291411567383],[125.129263945313,48.7259773994141],[125.089698515625,48.740175397461],[125.062345,48.7385448432617],[125.044835234375,48.7395885444336],[125.02873171875,48.7917317939453],[124.975557890625,48.8161379218751],[125.002628203125,48.8285616279298],[125.01361453125,48.8525075507813],[125.01177859375,48.8833663154298],[124.865240507813,48.9005324531251],[124.808956328125,48.9311190009766],[124.747345,48.9238430000001],[124.741925078125,48.9386046577149],[124.74338015625,48.9567385078125],[124.813350859375,49.0413265205079],[124.811944609375,49.058843],[124.813424101563,49.0772859931641],[124.80173953125,49.1091100288087],[124.83654421875,49.1246419501954],[124.85505984375,49.1661293769531],[124.900128203125,49.1862395454102],[124.939620390625,49.1642046333009],[125.032974882813,49.1717061591797],[125.0311340625,49.1487874580078],[125.109439726563,49.1192150092774],[125.18197390625,49.1792150092773],[125.2127746875,49.188488690918],[125.211944609375,49.198843],[125.213951445313,49.2238430000001],[125.211944609375,49.248843],[125.213150664063,49.2638430000001],[125.2119153125,49.279166791504],[125.22271609375,49.2884709907227],[125.23197390625,49.2992150092774],[125.252877226563,49.3172243476563],[125.251929960938,49.3290145087891],[125.257345,49.353843]]]]}},{"type":"Feature","properties":{"name":"孙吴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.697345,49.413843],[126.677345,49.413843],[126.677345,49.4238430000001],[126.697345,49.4238430000001],[126.697345,49.413843]]],[[[127.987345,49.553843],[127.983922148438,49.5660353828125],[127.975152617188,49.5572661567384],[127.955479765625,49.5075029731446],[127.86732546875,49.4884291816407],[127.805455351563,49.4449419379884],[127.789810820313,49.4042360664063],[127.793023710938,49.3783901191407],[127.778331328125,49.3666237617188],[127.733472929688,49.2927751899414],[127.691793242188,49.2593959785157],[127.682896757813,49.2482900214844],[127.649581328125,49.2216085029297],[127.622896757813,49.1882900214844],[127.594757109375,49.1764315009766],[127.582896757813,49.1482900214844],[127.528736601563,49.0858736396485],[127.512896757813,49.0482900214844],[127.481793242188,49.0293959785157],[127.477345,49.023843],[127.432154570313,49.0286522651367],[127.37584109375,49.0584511542969],[127.327345,49.0250798774415],[127.255152617188,48.9910106635742],[127.191065703125,48.9790337348633],[127.172535429688,48.9990337348634],[127.147760039063,49.0107268500977],[127.168155546875,49.0492714667969],[127.142345,49.0482485175782],[127.122345,49.0490410590821],[127.102877226563,49.0482695747071],[127.072725859375,49.0642241645509],[127.021773710938,49.088271100586],[127.00216921875,49.1094304633789],[126.96216921875,49.1078450751953],[126.93357546875,49.1387044501953],[126.891871367188,49.1519078803712],[126.893033476563,49.1812285590821],[126.869595976563,49.1986522651368],[126.827345,49.183843],[126.802994414063,49.2153920722657],[126.740445585938,49.2409914375],[126.743140898438,49.2592333198243],[126.721143828125,49.2957039619141],[126.724561796875,49.318843],[126.7164465625,49.3737532783203],[126.70170046875,49.3981993842774],[126.697345,49.413843],[126.73271609375,49.4184709907227],[126.775167265625,49.4517150092774],[126.81271609375,49.4684709907227],[126.82197390625,49.4892150092774],[126.8327746875,49.4985192084961],[126.8319153125,49.509166791504],[126.84271609375,49.5184709907227],[126.85197390625,49.5492150092774],[126.89271609375,49.5584709907227],[126.922105742188,49.5692638374024],[126.932345,49.5684413886719],[126.967345,49.5712535834961],[127.002667265625,49.5684151435547],[127.020377226563,49.5889720893555],[127.08271609375,49.5984709907227],[127.099742460938,49.618232038086],[127.120279570313,49.6198821235352],[127.176392851563,49.6045244575196],[127.248521757813,49.626239850586],[127.26271609375,49.6384709907227],[127.276104765625,49.6684709907227],[127.29271609375,49.6592150092774],[127.302022734375,49.6484151435548],[127.312345,49.6492446113282],[127.327345,49.648039472168],[127.342603789063,49.6492653632813],[127.432823515625,49.6092150092774],[127.55935671875,49.6209395576172],[127.57197390625,49.6492150092774],[127.6133215625,49.6616646552735],[127.611197539063,49.6881157661133],[127.667345,49.6938430000001],[127.672896757813,49.6893959785157],[127.69767703125,49.6584505439454],[127.782105742188,49.6228755927734],[127.810728789063,49.5871291328126],[127.915719023438,49.5740697456055],[127.956920195313,49.5982900214844],[128.005865507813,49.5781758857423],[128.017345,49.563843],[128.013150664063,49.5475041938477],[127.987345,49.553843]]]]}},{"type":"Feature","properties":{"name":"五大连池市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.513228789063,49.1990761542969],[126.539654570313,49.1705586982423],[126.562281523438,49.1585854316407],[126.602203398438,49.1690468574219],[126.612496367188,49.1686388374024],[126.669595976563,49.1886522651368],[126.687257109375,49.1755236030273],[126.73033328125,49.1290337348633],[126.766558867188,49.1398543525391],[126.827345,49.183843],[126.869595976563,49.1986522651368],[126.893033476563,49.1812285590821],[126.891871367188,49.1519078803712],[126.93357546875,49.1387044501953],[126.96216921875,49.1078450751953],[127.00216921875,49.1094304633789],[127.021773710938,49.088271100586],[127.072725859375,49.0642241645509],[127.102877226563,49.0482695747071],[127.122345,49.0490410590821],[127.142345,49.0482485175782],[127.168155546875,49.0492714667969],[127.147760039063,49.0107268500977],[127.172535429688,48.9990337348634],[127.191065703125,48.9790337348633],[127.255152617188,48.9910106635742],[127.327345,49.0250798774415],[127.37584109375,49.0584511542969],[127.432154570313,49.0286522651367],[127.477345,49.023843],[127.464429960938,49.0093904853516],[127.411646757813,48.9851647163086],[127.388897734375,48.943297650879],[127.402061796875,48.9285616279297],[127.441964140625,48.91024925],[127.442940703125,48.893843],[127.441168242188,48.8640901923829],[127.471500273438,48.7979991889649],[127.49283328125,48.7789403510743],[127.476002226563,48.7479677558594],[127.453179960938,48.6843682075195],[127.4926575,48.6490956855469],[127.490499296875,48.6129152656251],[127.502628203125,48.5791243720703],[127.512061796875,48.5485616279297],[127.52435671875,48.5375789619141],[127.5208996875,48.4796013618164],[127.541929960938,48.4608116889649],[127.54322390625,48.4390956855469],[127.537345,48.4338430000001],[127.42197390625,48.4384712958985],[127.402623320313,48.4492671943359],[127.392345,48.4484413886719],[127.382345,48.4492446113281],[127.372105742188,48.4484218574219],[127.333604765625,48.4625603461915],[127.247017851563,48.4556023383789],[127.164039335938,48.4860741401368],[127.144586210938,48.508651959961],[127.107916289063,48.5196923041993],[127.092345,48.5184413886719],[127.079742460938,48.5194539619141],[127.062022734375,48.5400221992188],[127.042105742188,48.5384221625977],[127.012398710938,48.5493315864259],[126.972550078125,48.5384249091797],[126.930904570313,48.5417711616212],[126.933472929688,48.5098235297852],[126.919429960938,48.4846578193359],[126.862105742188,48.4892638374024],[126.812525664063,48.471057050293],[126.802154570313,48.4366017890626],[126.767843046875,48.4070412421876],[126.618873320313,48.4204622626953],[126.59572390625,48.4473311591798],[126.55505984375,48.4727999091798],[126.509288359375,48.4196694160156],[126.4519153125,48.409204328125],[126.454107695313,48.3819008613282],[126.4119153125,48.3691970039063],[126.413345976563,48.3513869453125],[126.408565703125,48.3292147041016],[126.372623320313,48.349267194336],[126.3405090625,48.3466866279297],[126.343204375,48.3131508613282],[126.29123171875,48.2899587226563],[126.277345,48.2738430000001],[126.238746367188,48.2794838691407],[126.189976835938,48.2784883857422],[126.027345,48.283843],[126.018453398438,48.2949489570313],[125.942471953125,48.3166725898437],[125.932345,48.3407088447266],[125.912125273438,48.3381941962891],[125.83922,48.3590126777344],[125.8137903125,48.3907698798828],[125.792896757813,48.4693959785157],[125.78134890625,48.4890419746094],[125.792896757813,48.4982900214844],[125.801793242188,48.5481017280274],[125.7151965625,48.5607051826172],[125.697345,48.553843],[125.710845976563,48.5998537421876],[125.752506132813,48.5882067084961],[125.771881132813,48.5993056464844],[125.812808867188,48.6083803535157],[125.88330203125,48.6384392524414],[125.867257109375,48.6664534736329],[125.915904570313,48.6964577460938],[125.987164335938,48.7091573310547],[125.997345,48.743843],[125.997345,48.763843],[125.977345,48.763843],[125.977345,48.7738430000001],[125.967345,48.7738430000001],[125.957345,48.7738430000001],[125.962154570313,48.8190337348633],[125.972916289063,48.8393758369141],[125.971363554688,48.8786592841797],[125.992535429688,48.8886522651368],[126.002154570313,48.8990337348633],[126.071734648438,48.9261293769532],[126.082159453125,48.9590486884766],[126.149298125,48.9563875556641],[126.162550078125,48.968665998047],[126.161749296875,48.988843],[126.162545195313,49.008843],[126.161451445313,49.0363576484376],[126.172154570313,49.0590337348633],[126.213726835938,49.0689363837891],[126.211441679688,49.1266771674805],[126.23252078125,49.1494304633789],[126.252345,49.1486449409181],[126.262496367188,49.1490471625977],[126.3189075,49.1292751289063],[126.362720976563,49.1594228339844],[126.40908328125,49.1575850654298],[126.432535429688,49.1686522651367],[126.472174101563,49.199048078125],[126.492345,49.1982485175782],[126.513228789063,49.1990761542969]]]]}},{"type":"Feature","properties":{"name":"逊克县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.507345,48.873843],[129.519537382813,48.8704198432618],[129.510767851563,48.8616506171876],[129.507345,48.873843]]],[[[127.987345,49.553843],[127.975152617188,49.5572661567384],[127.983922148438,49.5660353828125],[127.987345,49.553843]]],[[[129.507345,48.873843],[129.50197390625,48.8692150092774],[129.48572390625,48.8503548408203],[129.45197390625,48.8292150092774],[129.44271609375,48.8184709907227],[129.428624296875,48.8063295722657],[129.387345,48.8096465278321],[129.372345,48.8084413886719],[129.362345,48.8092446113282],[129.328253203125,48.8065056586915],[129.312667265625,48.7884151435547],[129.27584109375,48.7913741279298],[129.251236601563,48.7776448798829],[129.254293242188,48.7396263862305],[129.171671171875,48.7622380805665],[129.1727746875,48.7485192084961],[129.158326445313,48.736073834961],[129.223951445313,48.6795351386719],[129.191710234375,48.6517565131836],[129.192764921875,48.6386046577149],[129.187345,48.6238430000001],[129.181519804688,48.6196678901368],[129.117374296875,48.6068608833008],[129.102345,48.6098311591797],[129.083267851563,48.6060616279297],[129.063170195313,48.5780181098633],[129.031519804688,48.5696678901367],[129.023170195313,48.5580181098633],[129.011519804688,48.5496678901368],[128.979874296875,48.4920174384766],[128.987345,48.4738430000001],[128.984801054688,48.4563866401367],[128.945621367188,48.4170088935547],[128.967345,48.413843],[128.958018828125,48.4008278632813],[128.914136992188,48.3753865791016],[128.923472929688,48.3281349921876],[128.899381132813,48.3188430000001],[128.90728640625,48.2788430000001],[128.861519804688,48.2696681953125],[128.857345,48.263843],[128.85197390625,48.2592147041016],[128.842667265625,48.2484151435547],[128.817511015625,48.2504366279298],[128.779000273438,48.2951381660156],[128.76271609375,48.3492147041016],[128.744503203125,48.3988088203125],[128.691715117188,48.4108010078125],[128.634498320313,48.4062038398438],[128.602623320313,48.3884188056641],[128.592139921875,48.3892610908203],[128.552550078125,48.3784249091797],[128.5352746875,48.3798128486329],[128.455943632813,48.3654299140625],[128.3937903125,48.293290631836],[128.38271609375,48.2684712958985],[128.3666028125,48.2545870185547],[128.339215117188,48.2227992988281],[128.343472929688,48.1698238349609],[128.329859648438,48.1454268623047],[128.257491484375,48.1512416816407],[128.185357695313,48.1247524238281],[128.16271609375,48.0984712958985],[128.13197390625,48.0792147041016],[128.127345,48.073843],[128.101690703125,48.084618756836],[128.082691679688,48.0571047187501],[128.06326296875,48.0697585273438],[128.00142703125,48.0779274726563],[127.972584257813,48.0900423408203],[127.91752078125,48.0765181708985],[127.865225859375,48.0545528388672],[127.857345,48.023843],[127.841793242188,48.0282900214844],[127.8107434375,48.0509700751953],[127.813013945313,48.0692031074219],[127.800650664063,48.09022971875],[127.802965117188,48.108843],[127.801724882813,48.1188430000001],[127.805142851563,48.1463252998048],[127.7749621875,48.1876406074219],[127.701793242188,48.1982900214844],[127.682896757813,48.2293959785157],[127.6429309375,48.2793709541016],[127.631793242188,48.2882900214844],[127.621085234375,48.3137020087891],[127.623316679688,48.3316689277344],[127.600650664063,48.3702297187501],[127.602965117188,48.3888430000001],[127.6010559375,48.4042043281251],[127.549210234375,48.419028546875],[127.537345,48.4338430000001],[127.54322390625,48.4390956855469],[127.541929960938,48.4608116889649],[127.5208996875,48.4796013618164],[127.52435671875,48.5375789619141],[127.512061796875,48.5485616279297],[127.502628203125,48.5791243720703],[127.490499296875,48.6129152656251],[127.4926575,48.6490956855469],[127.453179960938,48.6843682075195],[127.476002226563,48.7479677558594],[127.49283328125,48.7789403510743],[127.471500273438,48.7979991889649],[127.441168242188,48.8640901923829],[127.442940703125,48.893843],[127.441964140625,48.91024925],[127.402061796875,48.9285616279297],[127.388897734375,48.943297650879],[127.411646757813,48.9851647163086],[127.464429960938,49.0093904853516],[127.477345,49.023843],[127.481793242188,49.0293959785157],[127.512896757813,49.0482900214844],[127.528736601563,49.0858736396485],[127.582896757813,49.1482900214844],[127.594757109375,49.1764315009766],[127.622896757813,49.1882900214844],[127.649581328125,49.2216085029297],[127.682896757813,49.2482900214844],[127.691793242188,49.2593959785157],[127.733472929688,49.2927751899414],[127.778331328125,49.3666237617188],[127.793023710938,49.3783901191407],[127.789810820313,49.4042360664063],[127.805455351563,49.4449419379884],[127.86732546875,49.4884291816407],[127.955479765625,49.5075029731446],[127.987345,49.553843],[128.013150664063,49.5475041938477],[128.017345,49.563843],[128.04408328125,49.5542491889649],[128.187901640625,49.5351262641602],[128.249429960938,49.5685616279297],[128.292628203125,49.5591243720704],[128.329429960938,49.5391243720703],[128.352628203125,49.5485616279298],[128.37937625,49.5906197333985],[128.55994265625,49.6013820625001],[128.612628203125,49.5891243720704],[128.665523710938,49.5701436591797],[128.721812773438,49.5667885566406],[128.735562773438,49.5967455268555],[128.812061796875,49.5731221748047],[128.799346953125,49.5535002875977],[128.732628203125,49.4938872504883],[128.763331328125,49.4696782661133],[128.782530546875,49.4685338569336],[128.86955203125,49.4943035102539],[128.902628203125,49.4791243720704],[128.944635039063,49.4562972236328],[129.009459257813,49.4601610541993],[129.042628203125,49.3991243720704],[129.06093875,49.3592247749024],[129.137589140625,49.3546562934571],[129.20502078125,49.4069130683594],[129.262628203125,49.3891243720703],[129.287345,49.373843],[129.280987578125,49.3659023261719],[129.230279570313,49.372209394043],[129.162896757813,49.3182503486329],[129.172613554688,49.2636721015625],[129.231246367188,49.1654048896485],[129.22166140625,49.088344953125],[129.242896757813,49.0793959785157],[129.291529570313,49.0508104682618],[129.352345,49.0432457709961],[129.407486601563,49.0501042915039],[129.43775515625,49.0373488593751],[129.431676054688,48.988483197754],[129.442896757813,48.9693959785156],[129.451793242188,48.9482900214844],[129.507345,48.933843],[129.513673125,48.9080815864258],[129.488980742188,48.898843],[129.51392703125,48.8895098090821],[129.507345,48.873843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安达市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.237345,46.463843],[125.225152617188,46.4672664619141],[125.233922148438,46.4760353828125],[125.237345,46.463843]]],[[[125.237345,46.463843],[125.263287382813,46.468466413086],[125.249176054688,46.4931069160156],[125.202022734375,46.488300397461],[125.156173125,46.5145613837891],[125.182686796875,46.5365883613282],[125.221881132813,46.5083803535157],[125.25853640625,46.4993056464844],[125.241803007813,46.5285201240234],[125.243682890625,46.5469741035157],[125.231807890625,46.5785781074219],[125.233834257813,46.5984529853516],[125.173717070313,46.6483901191407],[125.268687773438,46.6590395332031],[125.250235625,46.6912569404297],[125.207345,46.703843],[125.202535429688,46.7190334296875],[125.182154570313,46.7286525703125],[125.172535429688,46.7390334296875],[125.141949492188,46.7587837958984],[125.191744414063,46.8199678779297],[125.152081328125,46.83868675],[125.157345,46.8638430000001],[125.171041289063,46.8765340400391],[125.23408328125,46.9659560371094],[125.2957825,47.0084108710937],[125.337345,46.993843],[125.37271609375,46.9892147041016],[125.39197390625,46.9584712958985],[125.4080871875,46.9445870185547],[125.4273840625,46.9221901679688],[125.4616028125,46.9030989814454],[125.52062625,46.8767604804688],[125.58197390625,46.8384712958985],[125.69271609375,46.7892147041016],[125.776793242188,46.714169538086],[125.865206328125,46.6747170234375],[125.907345,46.6438430000001],[125.88974734375,46.6210463691407],[125.78843875,46.6038362861328],[125.707926054688,46.5744600654297],[125.72298953125,46.5494869208985],[125.73170046875,46.4881990791016],[125.744483671875,46.4783309150391],[125.7394153125,46.4440151191407],[125.747345,46.423843],[125.73736453125,46.4113777900391],[125.64939578125,46.4223195625001],[125.612896757813,46.4082900214844],[125.5636340625,46.394204328125],[125.561676054688,46.3784828925781],[125.574132109375,46.3572951484375],[125.51005984375,46.2772817207031],[125.442896757813,46.2482900214844],[125.330445585938,46.2342244697266],[125.342896757813,46.1793959785157],[125.347345,46.1438430000001],[125.283316679688,46.1358431220704],[125.211793242188,46.1482900214844],[125.202506132813,46.1703279853516],[125.147735625,46.1913796210938],[125.112345,46.1869771552735],[125.099151640625,46.2182900214844],[125.072896757813,46.2048390937501],[125.08181765625,46.1581557441407],[125.092345,46.1594649482422],[125.102345,46.1582210517579],[125.123702421875,46.1608779121094],[125.151890898438,46.1256771064453],[125.221793242188,46.1343715644532],[125.192896757813,46.0982900214844],[125.155572539063,46.0756172919922],[125.132896757813,46.0382900214844],[125.087345,46.013843],[125.081314726563,46.0291872382813],[125.09298953125,46.0381990791016],[125.10170046875,46.0539199042969],[125.059967070313,46.0477529121094],[125.063082304688,46.0688430000001],[125.060445585938,46.0866902900391],[124.959581328125,46.0717848945312],[124.901773710938,46.0549288154298],[124.87298953125,46.0642757392578],[124.91298953125,46.0881990791016],[124.929195585938,46.1091963935547],[124.91170046875,46.1381990791016],[124.90095828125,46.1644509101563],[124.905416289063,46.1946364570313],[124.917345,46.203843],[124.952896757813,46.2182900214844],[124.964971953125,46.2469484687501],[125.054078398438,46.25991721875],[125.04552859375,46.3286440253907],[125.010772734375,46.3385811591797],[125.026163359375,46.3509041572266],[125.017345,46.3738430000001],[125.02271609375,46.3784712958985],[125.03197390625,46.4061598945313],[124.981070585938,46.4288729072266],[125.043258085938,46.4524715400391],[125.041944609375,46.468843],[125.043033476563,46.4824037910156],[125.097345,46.4780397773438],[125.170660429688,46.4839302802735],[125.130738554688,46.4495351386719],[125.153726835938,46.4297273994141],[125.237701445313,46.4169313789063],[125.26197390625,46.4243849921875],[125.237345,46.463843]]]]}},{"type":"Feature","properties":{"name":"北林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.827345,46.4438430000001],[126.839537382813,46.4404195380859],[126.830767851563,46.4316506171876],[126.827345,46.4438430000001]]],[[[126.827345,46.4438430000001],[126.77197390625,46.4192147041016],[126.76271609375,46.4084712958984],[126.757345,46.403843],[126.735611601563,46.4123867011719],[126.686988554688,46.3763368964844],[126.67298953125,46.3581990791016],[126.66170046875,46.3494869208985],[126.652857695313,46.3380281806641],[126.641832304688,46.339657819336],[126.63298953125,46.3281990791016],[126.627345,46.323843],[126.61197390625,46.3284712958984],[126.60271609375,46.3592147041016],[126.5866028125,46.3730989814454],[126.568253203125,46.3943947578125],[126.55271609375,46.4292147041016],[126.52718875,46.4512099433594],[126.460704375,46.5437996650391],[126.427345,46.553843],[126.431793242188,46.5793959785156],[126.442896757813,46.5882900214844],[126.452530546875,46.6219795966797],[126.475440703125,46.6403237128907],[126.510987578125,46.6359023261719],[126.521793242188,46.6493959785156],[126.567628203125,46.6593129707032],[126.601983671875,46.6795095039063],[126.612345,46.6782210517578],[126.622345,46.6794649482422],[126.632345,46.6782210517578],[126.678531523438,46.6839656806641],[126.72650515625,46.7121657539063],[126.811422148438,46.736444928711],[126.821890898438,46.749521100586],[126.837345,46.7475991035157],[126.862345,46.7507088447266],[126.882799101563,46.7481648994141],[126.896236601563,46.7649489570312],[126.913023710938,46.7783901191407],[126.911099882813,46.7938430000001],[126.91297,46.8088771796875],[126.90052859375,46.8972499824219],[126.913013945313,46.9184828925782],[126.911666289063,46.9293184638672],[126.949078398438,46.9520436835938],[126.963057890625,47.0481026435547],[126.961695585938,47.0590602851563],[126.9747278125,47.1046938300782],[126.971685820313,47.1291255927734],[126.977345,47.143843],[126.987345,47.163843],[127.135074492188,47.1570888496094],[127.152154570313,47.1386525703126],[127.212550078125,47.1290309882813],[127.212139921875,47.118691022461],[127.222828398438,47.0881911445313],[127.1989465625,47.0660610175782],[127.311095,47.0425978828125],[127.342154570313,47.0590334296875],[127.367345,47.063843],[127.362159453125,47.0457064033204],[127.341793242188,47.0293959785156],[127.331236601563,46.9924715400391],[127.309019804688,46.9546840644531],[127.292686796875,46.897558209961],[127.242706328125,46.8681764960938],[127.222896757813,46.8706398750001],[127.238570585938,46.8488777900391],[127.262896757813,46.8293959785157],[127.274010039063,46.7905385566407],[127.313590117188,46.758843],[127.293448515625,46.7427150703126],[127.291475859375,46.7268691230469],[127.312843046875,46.72952659375],[127.321793242188,46.7082900214844],[127.33334109375,46.6886440253906],[127.321793242188,46.6793959785157],[127.317345,46.663843],[127.301519804688,46.6596681953125],[127.269386015625,46.6464632392579],[127.242345,46.6518068671875],[127.181710234375,46.6398256660156],[127.143170195313,46.6080178046875],[127.121519804688,46.5996681953125],[127.102779570313,46.5877693916016],[127.087345,46.5908193183594],[127.054918242188,46.5844118476563],[127.043170195313,46.5680178046875],[127.031519804688,46.5596681953125],[127.023170195313,46.5480178046876],[127.001519804688,46.5396681953126],[126.983170195313,46.5280178046875],[126.897276640625,46.5060201240235],[126.850728789063,46.4764681220703],[126.827345,46.4438430000001]]]]}},{"type":"Feature","properties":{"name":"海伦市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[127.651011992188,47.8326375556641],[127.663721953125,47.804950788086],[127.687345,47.7838430000001],[127.69736453125,47.771327741211],[127.727345,47.7675991035157],[127.751793242188,47.770639875],[127.729586210938,47.7148329902344],[127.6339465625,47.7267287421875],[127.631676054688,47.7084828925781],[127.647491484375,47.6815859199219],[127.612896757813,47.6682900214844],[127.491793242188,47.6593959785157],[127.472896757813,47.6482900214844],[127.431793242188,47.6393959785156],[127.415479765625,47.619028546875],[127.381793242188,47.6093959785156],[127.337686796875,47.5466518378906],[127.27162234375,47.5093013740234],[127.221793242188,47.4693959785157],[127.212896757813,47.4582900214844],[127.189537382813,47.4395815253907],[127.171793242188,47.4093959785156],[127.161768828125,47.3743440986328],[127.128453398438,47.3327370429688],[127.091749296875,47.3033455634766],[127.071676054688,47.2692031074219],[127.073023710938,47.2583901191406],[127.05068484375,47.2405025458985],[127.032896757813,47.2182900214844],[127.001793242188,47.1993959785157],[126.987345,47.163843],[126.977345,47.143843],[126.962061796875,47.1391243720703],[126.897564726563,47.1352797675781],[126.882628203125,47.1185616279297],[126.802061796875,47.1091243720704],[126.751178007813,47.0908663154297],[126.572291289063,47.1015285468751],[126.562569609375,46.9979354072266],[126.537345,46.9994393134766],[126.499893828125,46.997206647461],[126.392061796875,46.9741677070313],[126.227345,46.963843],[126.2335559375,46.9861537910157],[126.265377226563,46.9991768623048],[126.251475859375,47.0591799140626],[126.284991484375,47.104389875],[126.277345,47.123843],[126.29806765625,47.1297670722656],[126.323824492188,47.1619362617188],[126.32166140625,47.179341046875],[126.342896757813,47.1882900214844],[126.363863554688,47.2616225410156],[126.361676054688,47.2792031074219],[126.373013945313,47.2984828925782],[126.370758085938,47.3166188789063],[126.423023710938,47.3483675361329],[126.421666289063,47.3592958808594],[126.432896757813,47.3682900214844],[126.437345,47.373843],[126.442393828125,47.3935207343751],[126.469366484375,47.4121419501954],[126.505323515625,47.4655440498048],[126.52361453125,47.4781728339844],[126.519698515625,47.4956410957032],[126.53326296875,47.5279274726563],[126.54142703125,47.5697585273437],[126.547345,47.583843],[126.570968046875,47.604950788086],[126.587120390625,47.6401369453125],[126.694429960938,47.6893904853516],[126.726939726563,47.7257741523437],[126.82250125,47.7427565742188],[126.887515898438,47.7194289375001],[126.949068632813,47.7157601142579],[126.994019804688,47.7401869941407],[127.14545046875,47.7807442451172],[127.187345,47.7782466865234],[127.207345,47.7794393134766],[127.245201445313,47.77718284375],[127.409459257813,47.7890554023438],[127.472628203125,47.8085616279297],[127.507803984375,47.8276784492188],[127.532345,47.8291408515626],[127.562345,47.827353131836],[127.651011992188,47.8326375556641]]]]}},{"type":"Feature","properties":{"name":"兰西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.907345,46.6438430000001],[125.93232546875,46.6279518867188],[125.95447390625,46.6409737373047],[125.951676054688,46.6184505439453],[125.979908476563,46.5797963691406],[125.998424101563,46.5649709296876],[126.052896757813,46.5493959785157],[126.12900515625,46.4885256171875],[126.236734648438,46.4793959785157],[126.358892851563,46.5142794013672],[126.367345,46.543843],[126.39142703125,46.5497585273438],[126.427345,46.553843],[126.460704375,46.5437996650391],[126.52718875,46.4512099433594],[126.55271609375,46.4292147041016],[126.568253203125,46.3943947578125],[126.5866028125,46.3730989814454],[126.60271609375,46.3592147041016],[126.61197390625,46.3284712958984],[126.627345,46.323843],[126.634400664063,46.2914907050782],[126.6166028125,46.2595870185547],[126.596051054688,46.2135311103516],[126.509986601563,46.1808711982422],[126.45197390625,46.1392147041016],[126.427345,46.083843],[126.417345,46.083843],[126.377345,46.083843],[126.343414335938,46.0917055488281],[126.318761015625,46.0597670722656],[126.235889921875,46.0720137763672],[126.210572539063,46.0567421699219],[126.167345,46.0638430000001],[126.151773710938,46.078271100586],[126.087823515625,46.1472927070313],[126.026798125,46.2304903388672],[125.955406523438,46.3410457587891],[125.79326296875,46.4175673652344],[125.747345,46.423843],[125.7394153125,46.4440151191407],[125.744483671875,46.4783309150391],[125.73170046875,46.4881990791016],[125.72298953125,46.5494869208985],[125.707926054688,46.5744600654297],[125.78843875,46.6038362861328],[125.88974734375,46.6210463691407],[125.907345,46.6438430000001]]]]}},{"type":"Feature","properties":{"name":"明水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.567027617188,47.0287441230469],[125.327345,47.0238430000001],[125.31142703125,47.0279274726562],[125.274171171875,47.0832564521485],[125.3105871875,47.1391762519532],[125.32326296875,47.1479274726563],[125.327345,47.2838430000001],[125.452535429688,47.2886525703126],[125.557345,47.293843],[125.584664335938,47.3036458564454],[125.822628203125,47.3185616279297],[125.992237578125,47.3365785957032],[126.132628203125,47.3485616279297],[126.315308867188,47.3661934638672],[126.437345,47.373843],[126.432896757813,47.3682900214844],[126.421666289063,47.3592958808594],[126.423023710938,47.3483675361329],[126.370758085938,47.3166188789063],[126.373013945313,47.2984828925782],[126.361676054688,47.2792031074219],[126.363863554688,47.2616225410156],[126.342896757813,47.1882900214844],[126.32166140625,47.179341046875],[126.323824492188,47.1619362617188],[126.29806765625,47.1297670722656],[126.277345,47.123843],[126.262154570313,47.1190334296875],[126.214303007813,47.1171370673829],[126.001783476563,47.0894271064453],[125.97482546875,47.0603322578125],[125.868033476563,47.04573753125],[125.567027617188,47.0287441230469]]]]}},{"type":"Feature","properties":{"name":"青冈县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.271070585938,46.6617391181641],[126.282535429688,46.6290334296876],[126.294556914063,46.5910573554688],[126.332535429688,46.5790334296875],[126.351773710938,46.5582711005859],[126.367345,46.543843],[126.358892851563,46.5142794013672],[126.236734648438,46.4793959785157],[126.12900515625,46.4885256171875],[126.052896757813,46.5493959785157],[125.998424101563,46.5649709296876],[125.979908476563,46.5797963691406],[125.951676054688,46.6184505439453],[125.95447390625,46.6409737373047],[125.93232546875,46.6279518867188],[125.907345,46.6438430000001],[125.865206328125,46.6747170234375],[125.776793242188,46.714169538086],[125.69271609375,46.7892147041016],[125.58197390625,46.8384712958985],[125.52062625,46.8767604804688],[125.4616028125,46.9030989814454],[125.4273840625,46.9221901679688],[125.4080871875,46.9445870185547],[125.39197390625,46.9584712958985],[125.37271609375,46.9892147041016],[125.337345,46.993843],[125.333985625,47.010483625],[125.327345,47.0238430000001],[125.567027617188,47.0287441230469],[125.868033476563,47.04573753125],[125.97482546875,47.0603322578125],[126.001783476563,47.0894271064453],[126.214303007813,47.1171370673829],[126.262154570313,47.1190334296875],[126.277345,47.123843],[126.284991484375,47.104389875],[126.251475859375,47.0591799140626],[126.265377226563,46.9991768623048],[126.2335559375,46.9861537910157],[126.227345,46.963843],[126.222535429688,46.9586525703125],[126.202110625,46.9397286201172],[126.202550078125,46.9286733222657],[126.172779570313,46.8854061103516],[126.192535429688,46.8290334296875],[126.20248171875,46.7976131416016],[126.241651640625,46.7613210273438],[126.242545195313,46.738843],[126.241788359375,46.7198384833984],[126.252154570313,46.7086525703125],[126.272550078125,46.6990267158203],[126.271070585938,46.6617391181641]]]]}},{"type":"Feature","properties":{"name":"庆安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.246749296875,47.5593807197266],[128.21615359375,47.5348799873048],[128.27400515625,47.5105025458985],[128.291793242188,47.4882900214844],[128.302896757813,47.4793959785157],[128.311793242188,47.4682900214844],[128.3454309375,47.458671491211],[128.33951296875,47.4110610175782],[128.367345,47.4075991035157],[128.384605742188,47.409745709961],[128.441016875,47.3859749580078],[128.454332304688,47.3393959785156],[128.472896757813,47.3482900214844],[128.526226835938,47.414941022461],[128.537345,47.423843],[128.543961210938,47.4058229804688],[128.53271609375,47.3684712958985],[128.490455351563,47.31737815625],[128.494273710938,47.269814069336],[128.48197390625,47.2592147041016],[128.470826445313,47.2342305732422],[128.355181914063,47.1864064765625],[128.341998320313,47.1568617988282],[128.296041289063,47.1605544257813],[128.25595828125,47.1354476142579],[128.226436796875,47.1011806464844],[128.192345,47.098441388672],[128.173902617188,47.0999233222657],[128.10588015625,47.0749434638673],[128.042345,47.080048444336],[128.0066809375,47.07718284375],[127.962291289063,47.08933128125],[127.93271609375,47.0784712958985],[127.82259890625,47.0658473945313],[127.738443632813,47.0133211494141],[127.6424621875,46.9984316230469],[127.62271609375,47.0000185371094],[127.63197390625,46.9884712958985],[127.66572390625,46.9673311591797],[127.689918242188,46.9392519355469],[127.74271609375,46.9192147041016],[127.78197390625,46.8884712958985],[127.814029570313,46.86839378125],[127.88271609375,46.8092147041016],[127.89197390625,46.7984712958985],[127.929576445313,46.7660744453126],[127.96197390625,46.7284712958985],[128.0380871875,46.6695870185548],[128.053043242188,46.6360744453125],[128.10865359375,46.5966451240235],[128.19197390625,46.5784712958985],[128.217345,46.573843],[128.217345,46.5638430000001],[128.187345,46.5638430000001],[128.187345,46.5238430000001],[128.177345,46.5238430000001],[128.14896609375,46.5302889228516],[128.110889921875,46.5255519843751],[128.113023710938,46.5083834052735],[128.100943632813,46.4993959785156],[128.022896757813,46.5293959785157],[127.977061796875,46.5393129707032],[127.926871367188,46.568817975586],[127.8484778125,46.5802278876953],[127.830079375,46.5779396796875],[127.808385039063,46.6050295234375],[127.762896757813,46.5782900214844],[127.737486601563,46.5675814033204],[127.721983671875,46.5695095039062],[127.699210234375,46.5561232734375],[127.662799101563,46.5606526923829],[127.652896757813,46.5482900214844],[127.647345,46.543843],[127.625343046875,46.5377169013672],[127.585426054688,46.513637921875],[127.500299101563,46.5300038886719],[127.503082304688,46.548843],[127.500128203125,46.5688430000001],[127.503140898438,46.589233625],[127.482608671875,46.6232704902344],[127.42170046875,46.6481990791016],[127.385484648438,46.6700460029297],[127.367345,46.6673653388672],[127.337515898438,46.6717732978516],[127.317345,46.663843],[127.321793242188,46.6793959785157],[127.33334109375,46.6886440253906],[127.321793242188,46.7082900214844],[127.312843046875,46.72952659375],[127.291475859375,46.7268691230469],[127.293448515625,46.7427150703126],[127.313590117188,46.758843],[127.274010039063,46.7905385566407],[127.262896757813,46.8293959785157],[127.238570585938,46.8488777900391],[127.222896757813,46.8706398750001],[127.242706328125,46.8681764960938],[127.292686796875,46.897558209961],[127.309019804688,46.9546840644531],[127.331236601563,46.9924715400391],[127.341793242188,47.0293959785156],[127.362159453125,47.0457064033204],[127.367345,47.063843],[127.375484648438,47.0923146796875],[127.438453398438,47.1427370429688],[127.451793242188,47.1593959785157],[127.468453398438,47.1727370429688],[127.481793242188,47.1893959785156],[127.519097929688,47.2192696357422],[127.531793242188,47.2493959785157],[127.572896757813,47.2982900214844],[127.605377226563,47.3517641425781],[127.678551054688,47.4152614570313],[127.722345,47.4207088447266],[127.749249296875,47.4173622871094],[127.768453398438,47.4327370429688],[127.784610625,47.4529146552735],[127.827345,47.4475991035156],[127.842628203125,47.4495003486328],[127.87263796875,47.4379647041016],[127.881890898438,47.4495211005859],[127.892818632813,47.4481618476563],[127.911793242188,47.4793959785157],[127.922896757813,47.4882900214844],[127.931793242188,47.4993959785157],[127.948453398438,47.5127370429688],[127.986905546875,47.5607570625],[128.042486601563,47.5481319404297],[128.071793242188,47.5593959785157],[128.142896757813,47.5682900214844],[128.15537234375,47.5838649726563],[128.186182890625,47.6019771552735],[128.221793242188,47.5882900214844],[128.237345,47.583843],[128.246749296875,47.5593807197266]]]]}},{"type":"Feature","properties":{"name":"绥棱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[128.06326296875,48.0697585273438],[128.082691679688,48.0571047187501],[128.101690703125,48.084618756836],[128.127345,48.073843],[128.16076296875,48.0645369697266],[128.163160429688,48.0483309150391],[128.150206328125,48.0383309150391],[128.153082304688,48.018843],[128.150494414063,48.0013124824219],[128.16170046875,47.9481990791016],[128.22298953125,47.9394869208984],[128.24170046875,47.9281990791016],[128.29298953125,47.9194869208985],[128.327345,47.8938430000001],[128.344595976563,47.8546450019532],[128.332613554688,47.8285292792969],[128.272838164063,47.8320919013673],[128.272047148438,47.8188430000001],[128.273194609375,47.7996059394532],[128.252764921875,47.7620095039063],[128.322061796875,47.7302028632813],[128.312628203125,47.7185616279297],[128.292515898438,47.7005953193359],[128.282628203125,47.6685616279297],[128.262628203125,47.6506917548829],[128.272061796875,47.6385616279297],[128.2826575,47.629095685547],[128.282047148438,47.618843],[128.283287382813,47.5980300117188],[128.237345,47.583843],[128.221793242188,47.5882900214844],[128.186182890625,47.6019771552735],[128.15537234375,47.5838649726563],[128.142896757813,47.5682900214844],[128.071793242188,47.5593959785157],[128.042486601563,47.5481319404297],[127.986905546875,47.5607570625],[127.948453398438,47.5127370429688],[127.931793242188,47.4993959785157],[127.922896757813,47.4882900214844],[127.911793242188,47.4793959785157],[127.892818632813,47.4481618476563],[127.881890898438,47.4495211005859],[127.87263796875,47.4379647041016],[127.842628203125,47.4495003486328],[127.827345,47.4475991035156],[127.784610625,47.4529146552735],[127.768453398438,47.4327370429688],[127.749249296875,47.4173622871094],[127.722345,47.4207088447266],[127.678551054688,47.4152614570313],[127.605377226563,47.3517641425781],[127.572896757813,47.2982900214844],[127.531793242188,47.2493959785157],[127.519097929688,47.2192696357422],[127.481793242188,47.1893959785156],[127.468453398438,47.1727370429688],[127.451793242188,47.1593959785157],[127.438453398438,47.1427370429688],[127.375484648438,47.0923146796875],[127.367345,47.063843],[127.342154570313,47.0590334296875],[127.311095,47.0425978828125],[127.1989465625,47.0660610175782],[127.222828398438,47.0881911445313],[127.212139921875,47.118691022461],[127.212550078125,47.1290309882813],[127.152154570313,47.1386525703126],[127.135074492188,47.1570888496094],[126.987345,47.163843],[127.001793242188,47.1993959785157],[127.032896757813,47.2182900214844],[127.05068484375,47.2405025458985],[127.073023710938,47.2583901191406],[127.071676054688,47.2692031074219],[127.091749296875,47.3033455634766],[127.128453398438,47.3327370429688],[127.161768828125,47.3743440986328],[127.171793242188,47.4093959785156],[127.189537382813,47.4395815253907],[127.212896757813,47.4582900214844],[127.221793242188,47.4693959785157],[127.27162234375,47.5093013740234],[127.337686796875,47.5466518378906],[127.381793242188,47.6093959785156],[127.415479765625,47.619028546875],[127.431793242188,47.6393959785156],[127.472896757813,47.6482900214844],[127.491793242188,47.6593959785157],[127.612896757813,47.6682900214844],[127.647491484375,47.6815859199219],[127.631676054688,47.7084828925781],[127.6339465625,47.7267287421875],[127.729586210938,47.7148329902344],[127.751793242188,47.770639875],[127.727345,47.7675991035157],[127.69736453125,47.771327741211],[127.687345,47.7838430000001],[127.75326296875,47.8179274726563],[127.76142703125,47.8397585273438],[127.791485625,47.8510042548829],[127.806046171875,47.907743756836],[127.83326296875,47.9179274726563],[127.847257109375,47.9381966376953],[127.87326296875,47.9479274726563],[127.886197539063,47.9666628242187],[127.880103789063,47.993843],[127.885225859375,48.0166884589844],[127.857345,48.023843],[127.865225859375,48.0545528388672],[127.91752078125,48.0765181708985],[127.972584257813,48.0900423408203],[128.00142703125,48.0779274726563],[128.06326296875,48.0697585273438]]]]}},{"type":"Feature","properties":{"name":"望奎县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.9747278125,47.1046938300782],[126.961695585938,47.0590602851563],[126.963057890625,47.0481026435547],[126.949078398438,46.9520436835938],[126.911666289063,46.9293184638672],[126.913013945313,46.9184828925782],[126.90052859375,46.8972499824219],[126.91297,46.8088771796875],[126.911099882813,46.7938430000001],[126.913023710938,46.7783901191407],[126.896236601563,46.7649489570312],[126.882799101563,46.7481648994141],[126.862345,46.7507088447266],[126.837345,46.7475991035157],[126.821890898438,46.749521100586],[126.811422148438,46.736444928711],[126.72650515625,46.7121657539063],[126.678531523438,46.6839656806641],[126.632345,46.6782210517578],[126.622345,46.6794649482422],[126.612345,46.6782210517578],[126.601983671875,46.6795095039063],[126.567628203125,46.6593129707032],[126.521793242188,46.6493959785156],[126.510987578125,46.6359023261719],[126.475440703125,46.6403237128907],[126.452530546875,46.6219795966797],[126.442896757813,46.5882900214844],[126.431793242188,46.5793959785156],[126.427345,46.553843],[126.39142703125,46.5497585273438],[126.367345,46.543843],[126.351773710938,46.5582711005859],[126.332535429688,46.5790334296875],[126.294556914063,46.5910573554688],[126.282535429688,46.6290334296876],[126.271070585938,46.6617391181641],[126.272550078125,46.6990267158203],[126.252154570313,46.7086525703125],[126.241788359375,46.7198384833984],[126.242545195313,46.738843],[126.241651640625,46.7613210273438],[126.20248171875,46.7976131416016],[126.192535429688,46.8290334296875],[126.172779570313,46.8854061103516],[126.202550078125,46.9286733222657],[126.202110625,46.9397286201172],[126.222535429688,46.9586525703125],[126.227345,46.963843],[126.392061796875,46.9741677070313],[126.499893828125,46.997206647461],[126.537345,46.9994393134766],[126.562569609375,46.9979354072266],[126.572291289063,47.1015285468751],[126.751178007813,47.0908663154297],[126.802061796875,47.1091243720704],[126.882628203125,47.1185616279297],[126.897564726563,47.1352797675781],[126.962061796875,47.1391243720703],[126.977345,47.143843],[126.971685820313,47.1291255927734],[126.9747278125,47.1046938300782]]]]}},{"type":"Feature","properties":{"name":"肇东市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[125.717345,45.663843],[125.707345,45.663843],[125.707345,45.673843],[125.717345,45.673843],[125.717345,45.663843]]],[[[125.717345,45.663843],[125.722628203125,45.6685616279297],[125.732061796875,45.6791243720703],[125.797999296875,45.6914315009766],[125.768004179688,45.7343764472657],[125.722061796875,45.7485616279297],[125.712628203125,45.7569283271485],[125.762628203125,45.7685616279297],[125.782061796875,45.787362897461],[125.709078398438,45.800985944336],[125.689581328125,45.9054494453125],[125.412633085938,45.8828499580079],[125.361241484375,46.1051149726562],[125.347345,46.1438430000001],[125.342896757813,46.1793959785157],[125.330445585938,46.2342244697266],[125.442896757813,46.2482900214844],[125.51005984375,46.2772817207031],[125.574132109375,46.3572951484375],[125.561676054688,46.3784828925781],[125.5636340625,46.394204328125],[125.612896757813,46.4082900214844],[125.64939578125,46.4223195625001],[125.73736453125,46.4113777900391],[125.747345,46.423843],[125.79326296875,46.4175673652344],[125.955406523438,46.3410457587891],[126.026798125,46.2304903388672],[126.087823515625,46.1472927070313],[126.151773710938,46.078271100586],[126.167345,46.0638430000001],[126.173360625,46.0404030585938],[126.221329375,46.0072829414062],[126.2326184375,45.9632997871094],[126.270875273438,45.9718764472657],[126.309283476563,45.9575057197266],[126.313468046875,45.938843],[126.310186796875,45.9242116523438],[126.325513945313,45.9020119453126],[126.358121367188,45.8794985175781],[126.337579375,45.8305867744141],[126.357496367188,45.8168325019531],[126.350103789063,45.783843],[126.353468046875,45.768843],[126.351163359375,45.7585646796875],[126.357345,45.743843],[126.348121367188,45.73097190625],[126.322965117188,45.726001203125],[126.307183867188,45.7480178046876],[126.291226835938,45.7395107246094],[126.300557890625,45.6922798896485],[126.235045195313,45.7052254462891],[126.186099882813,45.6851119208985],[126.152603789063,45.7063759589844],[126.147345,45.673843],[126.076236601563,45.6827370429688],[126.062896757813,45.6993959785156],[126.026920195313,45.7182900214844],[125.998453398438,45.6827370429688],[125.979405546875,45.6674843574219],[125.984791289063,45.6241854072266],[125.937345,45.6300868964844],[125.920582304688,45.6280019355469],[125.922965117188,45.6088430000001],[125.921724882813,45.598843],[125.923013945313,45.5884828925782],[125.902940703125,45.5543404365235],[125.871793242188,45.5293959785157],[125.860987578125,45.5159023261719],[125.832183867188,45.5194850898438],[125.781964140625,45.5080770087891],[125.768453398438,45.5249489570313],[125.757345,45.5338430000001],[125.75170046875,45.5381990791016],[125.740670195313,45.5524935126954],[125.743824492188,45.5738430000001],[125.741549101563,45.589233625],[125.753609648438,45.6092317939454],[125.724605742188,45.621103131836],[125.717345,45.663843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"呼玛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.027345,50.923843],[126.017345,50.923843],[126.022345,50.9366506171875],[126.027345,50.923843]]],[[[126.917345,51.2538430000001],[126.912261992188,51.2695128608399],[126.86302859375,51.3168141914062],[126.970094023438,51.3387430549316],[126.980538359375,51.2952356696778],[126.93244265625,51.2587430549316],[126.917345,51.2538430000001]]],[[[126.917345,51.2538430000001],[126.912896757813,51.2382898688965],[126.895054960938,51.1918749213868],[126.912896757813,51.1293961311036],[126.921998320313,51.0566300178223],[126.9779309375,51.0330612922364],[127.017345,50.9838430000001],[126.992354765625,50.9282482124024],[126.972252226563,50.9290450263672],[126.834527617188,50.9130913520508],[126.697345,50.9076540351563],[126.662345,50.9090410590821],[126.47252078125,50.9015172553711],[126.432515898438,50.9290477729493],[126.412720976563,50.9282631660156],[126.382535429688,50.9490337348633],[126.337345,50.973843],[126.331793242188,50.9782900214844],[126.322896757813,50.9893959785157],[126.225269804688,51.0016075874024],[126.17271609375,50.9681746650391],[126.13334109375,50.9730724311524],[126.115631132813,50.9310448432618],[126.043990507813,50.9155446601563],[126.037345,50.923843],[126.045513945313,50.9556743598634],[126.06498171875,50.9691149116211],[126.04142703125,50.9779274726563],[126.025616484375,51.0008309150391],[126.048878203125,51.0365526557618],[126.01142703125,51.0579273200684],[126.007345,51.0638430000001],[126.019537382813,51.0672663093262],[126.010767851563,51.0760352302247],[126.007345,51.0638430000001],[125.981754179688,51.0788887763673],[125.982740507813,51.103843],[125.981866484375,51.1259423041993],[125.93224734375,51.108551557129],[125.9134778125,51.1288091254884],[125.855284453125,51.1426702094727],[125.8726965625,51.1588008857422],[125.852154570313,51.1886524177246],[125.8388684375,51.2168013740235],[125.752139921875,51.2286544013672],[125.753316679688,51.2583116889649],[125.725518828125,51.2840674567872],[125.692535429688,51.3290335822754],[125.672154570313,51.3386524177247],[125.649654570313,51.3505586982422],[125.632535429688,51.3690335822754],[125.616964140625,51.3834616828614],[125.592916289063,51.4094148994141],[125.572154570313,51.4286524177246],[125.561431914063,51.4513684821777],[125.418389921875,51.5615502143555],[125.375362578125,51.5818585944825],[125.357345,51.6200321174316],[125.293228789063,51.6174907661134],[125.281812773438,51.6298128486329],[125.252345,51.6286447883301],[125.232345,51.6294374824219],[125.207345,51.6284465766602],[125.135631132813,51.6312891364747],[125.122345,51.659437482422],[125.099483671875,51.6585314155274],[125.050357695313,51.6055091071778],[125.062550078125,51.5589835334473],[125.061392851563,51.5298630500489],[124.982154570313,51.5190335822754],[124.972535429688,51.5086524177246],[124.922154570313,51.4990335822754],[124.912535429688,51.4868300605469],[124.934932890625,51.4445030952149],[124.902154570313,51.4290335822754],[124.892535429688,51.4186524177246],[124.872110625,51.3997286201172],[124.872545195313,51.388843],[124.872081328125,51.3771721625977],[124.788258085938,51.3896718574219],[124.75658328125,51.3884163642578],[124.742535429688,51.3586524177246],[124.726851835938,51.3441185737305],[124.619146757813,51.3269611335449],[124.5608996875,51.3670416999512],[124.497867460938,51.382055890625],[124.472535429688,51.3686524177247],[124.425675078125,51.3538164497071],[124.408482695313,51.2816324592286],[124.341065703125,51.2690335822754],[124.32216921875,51.289430463379],[124.3012903125,51.2886029792481],[124.242535429688,51.3290335822754],[124.208253203125,51.3511713386231],[124.172496367188,51.3386388374024],[124.095987578125,51.3416713691406],[124.061969023438,51.3182633186036],[124.037345,51.3192394233398],[124.022345,51.3186447883302],[123.978585234375,51.3203792548829],[123.900186796875,51.3039766669923],[123.831124296875,51.3601819587403],[123.79218875,51.3586386848145],[123.703780546875,51.3923743415528],[123.667725859375,51.3534616828613],[123.652154570313,51.3390335822754],[123.63630984375,51.3219335151368],[123.582154570313,51.3090335822754],[123.572535429688,51.2986524177247],[123.536632109375,51.2872856879884],[123.464273710938,51.2901538825684],[123.442535429688,51.2786524177246],[123.3742590625,51.2677761054688],[123.337345,51.2692394233399],[123.309342070313,51.2681294990235],[123.272408476563,51.2485855842285],[123.230596953125,51.259542005127],[123.212535429688,51.2790335822755],[123.162154570313,51.2886524177247],[123.141812773438,51.299416425293],[123.122213164063,51.2986396003419],[123.06451296875,51.3107125068359],[123.002877226563,51.3082695747071],[122.978214140625,51.3213211799317],[122.951788359375,51.3498384833985],[122.953350859375,51.3892102790528],[122.891729765625,51.4182921577149],[122.892550078125,51.4390265632324],[122.872154570313,51.4486524177247],[122.857345,51.4738430000001],[122.861793242188,51.4793961311036],[122.872896757813,51.4882898688965],[122.881793242188,51.5022740913086],[122.854859648438,51.523843],[122.880284453125,51.5442044807129],[122.824405546875,51.5834815192872],[122.85107546875,51.60483909375],[122.821793242188,51.6282898688965],[122.812896757813,51.6493961311035],[122.801793242188,51.6582898688965],[122.788453398438,51.6749492622071],[122.771793242188,51.6882898688965],[122.762896757813,51.7293961311035],[122.747354765625,51.7418445563965],[122.7641028125,51.770337140625],[122.734766875,51.8202371955567],[122.712896757813,51.8793961311035],[122.701666289063,51.8883901191407],[122.703448515625,51.9027149177246],[122.723023710938,51.9183901191406],[122.716783476563,51.9685555244141],[122.665709257813,51.9796054816895],[122.642896757813,52.0593961311035],[122.62127078125,52.0685094428712],[122.635064726563,52.0919759345703],[122.630440703125,52.1291608405762],[122.717437773438,52.1443004584962],[122.766534453125,52.1801650214844],[122.760533476563,52.2283901191407],[122.778453398438,52.242736737793],[122.787345,52.253843],[122.822808867188,52.2583805061036],[122.851881132813,52.2693054938965],[122.882808867188,52.2783805061036],[122.899107695313,52.2980033851319],[122.942345,52.3024105048828],[122.989888945313,52.2975644660645],[123.047799101563,52.3137554908448],[123.14287234375,52.3313375831299],[123.204913359375,52.3250138831787],[123.291329375,52.3618609595947],[123.327345,52.3538430000001],[123.332061796875,52.3385617805176],[123.39463015625,52.2874890876465],[123.422345,52.2891410041505],[123.441119414063,52.2880219245606],[123.53093875,52.3202492500001],[123.624097929688,52.3490159583741],[123.642061796875,52.3691242194825],[123.732628203125,52.3785617805176],[123.7776575,52.4100164771729],[123.809971953125,52.4080902839356],[123.882345,52.4209513068848],[123.955733671875,52.407909772461],[124.0130090625,52.3679015327149],[124.052120390625,52.3891544318848],[124.091158476563,52.3868276954346],[124.151300078125,52.3652473426514],[124.1220325,52.3390958381348],[124.1226575,52.3285767341309],[124.100260039063,52.3182955909424],[124.082628203125,52.2985617805177],[124.062061796875,52.2891242194825],[124.042628203125,52.250323255127],[124.102628203125,52.2391242194824],[124.152135039063,52.2185324836426],[124.162345,52.2191410041505],[124.172345,52.2185449958496],[124.231495390625,52.2220703864746],[124.252061796875,52.1685617805176],[124.2669934375,52.1552217841797],[124.364815703125,52.1761222053223],[124.412891875,52.2097043586426],[124.432345,52.2085449958496],[124.444312773438,52.2092583442383],[124.462061796875,52.2291242194825],[124.48197390625,52.2469116950684],[124.622574492188,52.2385311103516],[124.672061796875,52.2691242194825],[124.713648710938,52.2819655585938],[124.7120325,52.3090686774903],[124.725142851563,52.3331912971192],[124.784664335938,52.3008470893555],[124.825772734375,52.2881531501465],[124.842345,52.2891410041505],[124.86875125,52.2875670600586],[124.882061796875,52.2585617805177],[124.942628203125,52.2491242194825],[124.962061796875,52.2445639777832],[124.916607695313,52.2156549812012],[124.973287382813,52.1896417976074],[124.971954375,52.1673015571289],[125.07560671875,52.1795426154786],[125.112345,52.1773529792481],[125.147345,52.1794390083008],[125.197345,52.1764589667969],[125.301812773438,52.1826854682617],[125.335494414063,52.2009889960938],[125.331451445313,52.268843],[125.3326965625,52.2897161079102],[125.352589140625,52.2885305],[125.411285429688,52.3366901374512],[125.559644804688,52.3540700507813],[125.652345,52.3485449958497],[125.672345,52.3497370124512],[125.726846953125,52.3464884925537],[125.763570585938,52.3596641517334],[125.784010039063,52.3584457374268],[125.82318484375,52.3797340369873],[125.82197390625,52.4000617194825],[125.75912234375,52.4194701362305],[125.71531375,52.4684985328369],[125.624845,52.4895474219971],[125.612628203125,52.5291242194825],[125.580885039063,52.5493127418213],[125.583678007813,52.596195142334],[125.57187625,52.6290808845215],[125.617720976563,52.6397473121338],[125.599815703125,52.6727022529297],[125.572779570313,52.6968585944825],[125.632867460938,52.7350751472169],[125.6314465625,52.7589333320313],[125.662628203125,52.7685617805176],[125.672891875,52.7909297156983],[125.710968046875,52.824950788086],[125.722662382813,52.8504238105469],[125.782628203125,52.8885617805176],[125.787345,52.8938430000001],[125.842535429688,52.8890336585694],[125.854000273438,52.8647366309815],[125.910172148438,52.8126907325439],[125.932164335938,52.7786376166993],[125.94252078125,52.7790482307129],[125.97033328125,52.7490336585694],[125.985260039063,52.760798947876],[126.02033328125,52.7986523414307],[126.112154570313,52.7712262702637],[126.102535429688,52.7586523414307],[126.032535429688,52.7452880073242],[126.042154570313,52.7286523414307],[126.072154570313,52.685055310791],[126.052535429688,52.6786523414307],[125.962843046875,52.6663943458252],[125.961011992188,52.62027168042],[126.023975859375,52.5690336585694],[126.042535429688,52.5786523414307],[126.068175078125,52.6063260627441],[126.203687773438,52.5319325996094],[126.182535429688,52.4715903449707],[126.1944934375,52.4679373145753],[126.261812773438,52.4706055427246],[126.282154570313,52.4486523414307],[126.325953398438,52.420367963379],[126.352154570313,52.3708558631592],[126.335909453125,52.3502440620117],[126.302535429688,52.3344941688232],[126.317955351563,52.3090993476563],[126.442154570313,52.2958814979248],[126.432310820313,52.2782497382813],[126.403209257813,52.2794033027344],[126.372535429688,52.2686524177246],[126.329371367188,52.2549867988281],[126.292535429688,52.2208559394532],[126.30900515625,52.1999582648926],[126.352154570313,52.1886524177246],[126.402535429688,52.1790335822754],[126.432154570313,52.1686524177247],[126.510513945313,52.1561698127442],[126.55748171875,52.1258397651368],[126.532139921875,52.0890128303223],[126.5329309375,52.069020154541],[126.522154570313,52.0590335822754],[126.512159453125,52.037859418457],[126.46375125,52.0397782111817],[126.432535429688,52.0108559394532],[126.442154570313,51.9986524177246],[126.452535429688,51.9890335822754],[126.462154570313,51.9386524177247],[126.501612578125,51.9200308967286],[126.521773710938,51.898271100586],[126.550631132813,51.8715343452149],[126.562535429688,51.8490335822755],[126.572769804688,51.8273471809083],[126.592535429688,51.8090335822754],[126.61267703125,51.7778452277832],[126.652535429688,51.7590335822754],[126.66634890625,51.7297603583985],[126.723336210938,51.7188805366211],[126.721798125,51.6800164008789],[126.733853789063,51.6339948249512],[126.662535429688,51.6003359199219],[126.70275515625,51.570891034668],[126.788116484375,51.5505586982422],[126.841412382813,51.5254064155274],[126.802154570313,51.4890335822754],[126.792535429688,51.4686524177246],[126.773287382813,51.4322753120118],[126.812154570313,51.4186524177246],[126.909215117188,51.407037732666],[126.928736601563,51.3513407111817],[126.892496367188,51.3386388374024],[126.82396609375,51.3413550544434],[126.802535429688,51.3008559394532],[126.825865507813,51.2625643134766],[126.8556653125,51.2467946601563],[126.912154570313,51.2490335822755],[126.917345,51.2538430000001]]]]}},{"type":"Feature","properties":{"name":"漠河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.452628203125,53.5291242480927],[123.470982695313,53.4891242480927],[123.497266875,53.5005852628403],[123.472628203125,53.5459289837532],[123.54947390625,53.5585617495232],[123.552701445313,53.5386677361183],[123.522628203125,53.4956134200745],[123.563956328125,53.4996754146271],[123.590245390625,53.556949456995],[123.662628203125,53.5291242480927],[123.689718046875,53.498800818985],[123.88459109375,53.4789236331635],[123.941500273438,53.4479992461854],[123.984429960938,53.4282955909424],[124.01209109375,53.3973378730469],[124.060220976563,53.4002065826111],[124.072628203125,53.3891242576294],[124.114635039063,53.3421066642456],[124.216236601563,53.3785617423706],[124.255323515625,53.3645832610779],[124.272628203125,53.3491242576294],[124.277345,53.3438430000001],[124.266422148438,53.3347680068665],[124.25107546875,53.3162956786805],[124.252896757813,53.298419663971],[124.177594023438,53.2657599998169],[124.128707304688,53.2707428146058],[124.032081328125,53.2295421577149],[124.022808867188,53.2183805061036],[124.001456328125,53.2091214347534],[124.013233671875,53.1885645652466],[123.991793242188,53.1792663551025],[123.992896757813,53.1684196448975],[123.971881132813,53.1593054938965],[123.9506653125,53.1249078727418],[123.910933867188,53.0919055152589],[123.881881132813,53.0793054938965],[123.86373171875,53.0574555183106],[123.819288359375,53.0205363822632],[123.853214140625,52.9923556495361],[123.851324492188,52.973813817566],[123.801881132813,52.9593054938965],[123.792808867188,52.9383805061035],[123.747398710938,52.9103716254883],[123.71634890625,52.8969058967286],[123.692345,52.8993526435547],[123.661373320313,52.8961956763916],[123.612808867188,52.8683805061036],[123.572589140625,52.8509388709717],[123.55373171875,52.8074555183106],[123.520885039063,52.7801721931153],[123.471881132813,52.7693054938965],[123.4592590625,52.7541097999268],[123.462886992188,52.7185202766114],[123.45093875,52.6976549506836],[123.454678984375,52.6609606147461],[123.472808867188,52.6293054938966],[123.481881132813,52.6083805061036],[123.492808867188,52.5993054938965],[123.513428984375,52.5744799018555],[123.511812773438,52.5586133552247],[123.53298953125,52.4887004829102],[123.5189465625,52.464176404541],[123.42681765625,52.4437479377442],[123.395338164063,52.3711592841797],[123.341881132813,52.3593054938965],[123.327345,52.3538430000001],[123.291329375,52.3618609595947],[123.204913359375,52.3250138831787],[123.14287234375,52.3313375831299],[123.047799101563,52.3137554908448],[122.989888945313,52.2975644660645],[122.942345,52.3024105048828],[122.899107695313,52.2980033851319],[122.882808867188,52.2783805061036],[122.851881132813,52.2693054938965],[122.822808867188,52.2583805061036],[122.787345,52.253843],[122.75896609375,52.2602887702637],[122.696422148438,52.2525087714845],[122.682896757813,52.2693961311036],[122.656187773438,52.2806513190919],[122.591964140625,52.2623114753418],[122.562896757813,52.2793961311036],[122.466080351563,52.293487317627],[122.473023710938,52.3492958808594],[122.456236601563,52.362736737793],[122.433897734375,52.3906345344239],[122.405347929688,52.3738508582764],[122.392896757813,52.3893961311036],[122.371793242188,52.3982898688966],[122.362896757813,52.4093961311035],[122.327720976563,52.4242190528565],[122.306846953125,52.473756482666],[122.247345,52.4663552833253],[122.217345,52.4700868201905],[122.202345,52.4682210517578],[122.186261015625,52.4702217078858],[122.15724734375,52.5064543891602],[122.139752226563,52.5182898688965],[122.122896757813,52.4782898688965],[122.106041289063,52.4496146369629],[122.081793242188,52.4393961311035],[122.072896757813,52.4182898688965],[122.031656523438,52.4093671394044],[122.034605742188,52.3856726051026],[121.968472929688,52.3327148414307],[121.932896757813,52.2882898688965],[121.847955351563,52.2793961311036],[121.742564726563,52.3094919562988],[121.732183867188,52.3082009864502],[121.707345,52.3138430000001],[121.702374296875,52.3545245338135],[121.66062625,52.3867488074952],[121.673375273438,52.4191870093995],[121.647999296875,52.4387742591553],[121.58170046875,52.4481992316895],[121.54990359375,52.4606990791016],[121.513883085938,52.4553755164795],[121.495714140625,52.4789116645508],[121.412398710938,52.4964926887207],[121.40298953125,52.5194867683106],[121.35170046875,52.5381992316895],[121.324449492188,52.554636762207],[121.31298953125,52.5694867683106],[121.276124296875,52.5845738959961],[121.222345,52.5766263557129],[121.196676054688,52.5804198432617],[121.18298953125,52.6018281531983],[121.22298953125,52.6181992316895],[121.24170046875,52.6294867683106],[121.280943632813,52.6455468726807],[121.298839140625,52.6687358070069],[121.38306765625,52.6908455634766],[121.448370390625,52.7392578101807],[121.47170046875,52.7694867683106],[121.50298953125,52.7781992316895],[121.53170046875,52.7994867683106],[121.567525664063,52.8141488624268],[121.605523710938,52.8423219276123],[121.601607695313,52.868843],[121.603975859375,52.8848651099853],[121.65341921875,52.9144367194825],[121.704952421875,52.9885380912476],[121.770943632813,53.0155469108277],[121.8102746875,53.066504857605],[121.770699492188,53.0827023673706],[121.774327421875,53.1072656226807],[121.755172148438,53.1390264106446],[121.71170046875,53.1481992316895],[121.662594023438,53.1675042319947],[121.64298953125,53.182761800354],[121.66298953125,53.1981992316895],[121.675924101563,53.2446471763306],[121.61170046875,53.258199250763],[121.57298953125,53.2894867492371],[121.50170046875,53.318199250763],[121.497345,53.333843],[121.573189726563,53.3479992461853],[121.632061796875,53.3691242576295],[121.662628203125,53.3785617423706],[121.684097929688,53.3902286887818],[121.737506132813,53.3870453620606],[121.858824492188,53.4229707694702],[121.972345,53.4297370410614],[122.101319609375,53.4220498252563],[122.163531523438,53.4702623058015],[122.25709109375,53.4646859241181],[122.33681765625,53.5080096650773],[122.379488554688,53.4602492500001],[122.422779570313,53.4447160888367],[122.595186796875,53.4613558364563],[122.672345,53.4567569041901],[122.747345,53.4612271094971],[122.853824492188,53.4548806358032],[122.912628203125,53.4685617519074],[122.938160429688,53.48243675],[123.052296171875,53.5027199865036],[123.144307890625,53.4972360540085],[123.242530546875,53.5579601312332],[123.296846953125,53.5611974931412],[123.354053984375,53.5406715512925],[123.452628203125,53.5291242480927]]]]}},{"type":"Feature","properties":{"name":"塔河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[124.35244265625,53.2789430022889],[124.372047148438,53.2585429931335],[124.413179960938,53.2385866523438],[124.440845976563,53.2097919822388],[124.537345,53.2078226066285],[124.599410429688,53.2090892387086],[124.712779570313,53.1952360511475],[124.7118371875,53.1490315986329],[124.782271757813,53.1387394309692],[124.8319153125,53.1397525764161],[124.858619414063,53.0990210700684],[124.892232695313,53.0983350730592],[124.892843046875,53.1281732536011],[124.8732825,53.1661432243042],[124.999449492188,53.1984777808839],[125.150675078125,53.2015639854126],[125.242642851563,53.179142987793],[125.311026640625,53.1439152122193],[125.37244265625,53.1289429832153],[125.44224734375,53.1087430167847],[125.489781523438,53.0971548057252],[125.507711210938,53.0418928123169],[125.54244265625,53.0587430167847],[125.600679960938,53.0887430167847],[125.6297278125,53.0645482230835],[125.642603789063,53.0380084586792],[125.66244265625,53.0189429832153],[125.672613554688,53.0083580756836],[125.738136015625,52.987096326416],[125.722349882813,52.938446919983],[125.65244265625,52.9157628608399],[125.664254179688,52.8590943885498],[125.737144804688,52.8840429664307],[125.787345,52.8938430000001],[125.782628203125,52.8885617805176],[125.722662382813,52.8504238105469],[125.710968046875,52.824950788086],[125.672891875,52.7909297156983],[125.662628203125,52.7685617805176],[125.6314465625,52.7589333320313],[125.632867460938,52.7350751472169],[125.572779570313,52.6968585944825],[125.599815703125,52.6727022529297],[125.617720976563,52.6397473121338],[125.57187625,52.6290808845215],[125.583678007813,52.596195142334],[125.580885039063,52.5493127418213],[125.612628203125,52.5291242194825],[125.624845,52.4895474219971],[125.71531375,52.4684985328369],[125.75912234375,52.4194701362305],[125.82197390625,52.4000617194825],[125.82318484375,52.3797340369873],[125.784010039063,52.3584457374268],[125.763570585938,52.3596641517334],[125.726846953125,52.3464884925537],[125.672345,52.3497370124512],[125.652345,52.3485449958497],[125.559644804688,52.3540700507813],[125.411285429688,52.3366901374512],[125.352589140625,52.2885305],[125.3326965625,52.2897161079102],[125.331451445313,52.268843],[125.335494414063,52.2009889960938],[125.301812773438,52.1826854682617],[125.197345,52.1764589667969],[125.147345,52.1794390083008],[125.112345,52.1773529792481],[125.07560671875,52.1795426154786],[124.971954375,52.1673015571289],[124.973287382813,52.1896417976074],[124.916607695313,52.2156549812012],[124.962061796875,52.2445639777832],[124.942628203125,52.2491242194825],[124.882061796875,52.2585617805177],[124.86875125,52.2875670600586],[124.842345,52.2891410041505],[124.825772734375,52.2881531501465],[124.784664335938,52.3008470893555],[124.725142851563,52.3331912971192],[124.7120325,52.3090686774903],[124.713648710938,52.2819655585938],[124.672061796875,52.2691242194825],[124.622574492188,52.2385311103516],[124.48197390625,52.2469116950684],[124.462061796875,52.2291242194825],[124.444312773438,52.2092583442383],[124.432345,52.2085449958496],[124.412891875,52.2097043586426],[124.364815703125,52.1761222053223],[124.2669934375,52.1552217841797],[124.252061796875,52.1685617805176],[124.231495390625,52.2220703864746],[124.172345,52.2185449958496],[124.162345,52.2191410041505],[124.152135039063,52.2185324836426],[124.102628203125,52.2391242194824],[124.042628203125,52.250323255127],[124.062061796875,52.2891242194825],[124.082628203125,52.2985617805177],[124.100260039063,52.3182955909424],[124.1226575,52.3285767341309],[124.1220325,52.3390958381348],[124.151300078125,52.3652473426514],[124.091158476563,52.3868276954346],[124.052120390625,52.3891544318848],[124.0130090625,52.3679015327149],[123.955733671875,52.407909772461],[123.882345,52.4209513068848],[123.809971953125,52.4080902839356],[123.7776575,52.4100164771729],[123.732628203125,52.3785617805176],[123.642061796875,52.3691242194825],[123.624097929688,52.3490159583741],[123.53093875,52.3202492500001],[123.441119414063,52.2880219245606],[123.422345,52.2891410041505],[123.39463015625,52.2874890876465],[123.332061796875,52.3385617805176],[123.327345,52.3538430000001],[123.341881132813,52.3593054938965],[123.395338164063,52.3711592841797],[123.42681765625,52.4437479377442],[123.5189465625,52.464176404541],[123.53298953125,52.4887004829102],[123.511812773438,52.5586133552247],[123.513428984375,52.5744799018555],[123.492808867188,52.5993054938965],[123.481881132813,52.6083805061036],[123.472808867188,52.6293054938966],[123.454678984375,52.6609606147461],[123.45093875,52.6976549506836],[123.462886992188,52.7185202766114],[123.4592590625,52.7541097999268],[123.471881132813,52.7693054938965],[123.520885039063,52.7801721931153],[123.55373171875,52.8074555183106],[123.572589140625,52.8509388709717],[123.612808867188,52.8683805061036],[123.661373320313,52.8961956763916],[123.692345,52.8993526435547],[123.71634890625,52.8969058967286],[123.747398710938,52.9103716254883],[123.792808867188,52.9383805061035],[123.801881132813,52.9593054938965],[123.851324492188,52.973813817566],[123.853214140625,52.9923556495361],[123.819288359375,53.0205363822632],[123.86373171875,53.0574555183106],[123.881881132813,53.0793054938965],[123.910933867188,53.0919055152589],[123.9506653125,53.1249078727418],[123.971881132813,53.1593054938965],[123.992896757813,53.1684196448975],[123.991793242188,53.1792663551025],[124.013233671875,53.1885645652466],[124.001456328125,53.2091214347534],[124.022808867188,53.2183805061036],[124.032081328125,53.2295421577149],[124.128707304688,53.2707428146058],[124.177594023438,53.2657599998169],[124.252896757813,53.298419663971],[124.25107546875,53.3162956786805],[124.266422148438,53.3347680068665],[124.277345,53.3438430000001],[124.322291289063,53.329257390564],[124.341690703125,53.289277551239],[124.35244265625,53.2789430022889]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"虹口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.487345,31.2438430000001],[121.477345,31.2438430000001],[121.474801054688,31.2612990546876],[121.454801054688,31.2815334296875],[121.459888945313,31.3112990546875],[121.467345,31.3138430000001],[121.477345,31.3138430000001],[121.493565703125,31.2892946601563],[121.491124296875,31.2783913398438],[121.507345,31.253843],[121.487345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"嘉定区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.297345,31.493843],[121.314820585938,31.4826540351563],[121.310870390625,31.4686037421876],[121.331041289063,31.4226100898438],[121.310465117188,31.4094362617188],[121.333443632813,31.3599391914063],[121.337345,31.303843],[121.327345,31.303843],[121.327345,31.293843],[121.33224734375,31.2787429023438],[121.381402617188,31.2548952460938],[121.347345,31.2438430000001],[121.337345,31.2438430000001],[121.304039335938,31.2316115546876],[121.247345,31.263843],[121.212379179688,31.2580983710938],[121.202345,31.2595827460938],[121.17568484375,31.2556423164063],[121.147345,31.273843],[121.143985625,31.3004836250001],[121.117486601563,31.3138893867188],[121.129185820313,31.3378517890625],[121.110704375,31.3472023750001],[121.107345,31.363843],[121.11326296875,31.3679274726563],[121.12142703125,31.3797585273438],[121.149283476563,31.390180890625],[121.153468046875,31.408843],[121.151221953125,31.418843],[121.15361453125,31.4295143867187],[121.133829375,31.4431740546876],[121.17326296875,31.4579274726563],[121.19142703125,31.4697585273438],[121.22326296875,31.4779274726562],[121.231676054688,31.4901149726563],[121.258072539063,31.4841970039063],[121.297345,31.493843]]]]}},{"type":"Feature","properties":{"name":"闵行区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.247345,31.263843],[121.304039335938,31.2316115546876],[121.337345,31.2438430000001],[121.331529570313,31.1847170234376],[121.407345,31.193843],[121.40326296875,31.1879274726563],[121.385416289063,31.1756056953125],[121.41142703125,31.1379274726563],[121.43326296875,31.1297585273438],[121.449439726563,31.1063234687501],[121.467345,31.113843],[121.4890246875,31.1229494453125],[121.512345,31.1177223945313],[121.524620390625,31.120473859375],[121.555709257813,31.108843],[121.55107546875,31.0881716132813],[121.564586210938,31.078843],[121.537862578125,31.0603908515625],[121.5560559375,31.0478273750001],[121.567345,31.003843],[121.54009890625,30.9931325507813],[121.512735625,31.0096388984375],[121.497345,31.0073659492187],[121.44982546875,31.0143874335938],[121.415592070313,30.9937380195313],[121.357345,30.983843],[121.342584257813,30.978423078125],[121.321241484375,30.9801369453126],[121.327432890625,31.0571901679688],[121.35271609375,31.0684719062501],[121.365811796875,31.0836696601563],[121.324537382813,31.1576491523438],[121.317345,31.1638430000001],[121.297257109375,31.2019289375],[121.266383085938,31.1923146796876],[121.253531523438,31.2300295234376],[121.2405090625,31.2485817695313],[121.247345,31.263843]]]]}},{"type":"Feature","properties":{"name":"宝山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.337345,31.303843],[121.337345,31.293843],[121.327345,31.293843],[121.327345,31.303843],[121.337345,31.303843]]],[[[121.337345,31.303843],[121.333443632813,31.3599391914063],[121.310465117188,31.4094362617188],[121.331041289063,31.4226100898438],[121.310870390625,31.4686037421876],[121.314820585938,31.4826540351563],[121.297345,31.493843],[121.30142703125,31.4997585273438],[121.334176054688,31.5120119453125],[121.37267703125,31.5370827460938],[121.377345,31.5438430000001],[121.39345828125,31.5299587226563],[121.45619265625,31.4571462226563],[121.53271609375,31.4092140937501],[121.537345,31.403843],[121.492818632813,31.3774098945313],[121.517345,31.3538430000001],[121.513985625,31.3472023750001],[121.500704375,31.340483625],[121.49062625,31.3205617500001],[121.477345,31.3138430000001],[121.467345,31.3138430000001],[121.463985625,31.320483625],[121.4341028125,31.327202375],[121.417315703125,31.29401878125],[121.427345,31.273843],[121.411842070313,31.2673317695313],[121.397008085938,31.2888137031251],[121.337345,31.303843]]]]}},{"type":"Feature","properties":{"name":"长宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.347345,31.2438430000001],[121.366031523438,31.2196364570313],[121.427345,31.233843],[121.437345,31.213843],[121.407345,31.193843],[121.331529570313,31.1847170234376],[121.337345,31.2438430000001],[121.347345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"奉贤区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.44982546875,31.0143874335938],[121.497345,31.0073659492187],[121.512735625,31.0096388984375],[121.54009890625,30.9931325507813],[121.567345,31.003843],[121.6995325,30.9903591132813],[121.7766028125,30.93073753125],[121.767345,30.853843],[121.649400664063,30.8439846015625],[121.5730871875,30.8230983710938],[121.51197390625,30.8092140937501],[121.4772278125,30.789829328125],[121.457345,30.7838430000001],[121.431715117188,30.8220632148437],[121.411900664063,30.817622296875],[121.381534453125,30.8373952460938],[121.37326296875,30.8797585273438],[121.3541028125,30.90917503125],[121.347345,30.913843],[121.35326296875,30.9379274726563],[121.357345,30.983843],[121.415592070313,30.9937380195313],[121.44982546875,31.0143874335938]]]]}},{"type":"Feature","properties":{"name":"金山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.027345,30.9438430000001],[121.032491484375,30.8996681953125],[121.093487578125,30.9080617500001],[121.089542265625,30.9280178046876],[121.113472929688,30.9195607734375],[121.1104309375,30.9041481757813],[121.162647734375,30.9200099921875],[121.230484648438,30.9334157539063],[121.2427746875,30.9162673164063],[121.279527617188,30.892934796875],[121.291519804688,30.9096681953126],[121.347345,30.913843],[121.3541028125,30.90917503125],[121.37326296875,30.8797585273438],[121.381534453125,30.8373952460938],[121.411900664063,30.817622296875],[121.431715117188,30.8220632148437],[121.457345,30.7838430000001],[121.406553984375,30.7632033515625],[121.35181765625,30.7194264960938],[121.341690703125,30.7067800117188],[121.267345,30.693843],[121.262496367188,30.7364772773438],[121.23142703125,30.7579274726563],[121.21435671875,30.7826564765625],[121.192345,30.7777223945313],[121.182345,30.7799636054688],[121.167345,30.7766017890625],[121.116549101563,30.7879885078126],[121.124586210938,30.8238430000001],[121.11978640625,30.8452516914063],[121.09697390625,30.861001203125],[121.0641028125,30.8536330390626],[121.05326296875,30.8379274726563],[121.04142703125,30.8297585273438],[121.03326296875,30.8179274726563],[121.027345,30.813843],[121.0222278125,30.8308425117188],[120.985660429688,30.8279055],[121.014303007813,30.879233625],[120.991905546875,30.8985280585938],[120.997345,30.953843],[121.010704375,30.947202375],[121.027345,30.9438430000001]]]]}},{"type":"Feature","properties":{"name":"静安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457345,31.223843],[121.437345,31.213843],[121.427345,31.233843],[121.447345,31.2438430000001],[121.457345,31.2438430000001],[121.465289335938,31.2278615546875],[121.457345,31.223843]]]]}},{"type":"Feature","properties":{"name":"普陀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.397008085938,31.2888137031251],[121.411842070313,31.2673317695313],[121.427345,31.273843],[121.44287234375,31.2659865546875],[121.447345,31.2438430000001],[121.427345,31.233843],[121.366031523438,31.2196364570313],[121.347345,31.2438430000001],[121.381402617188,31.2548952460938],[121.33224734375,31.2787429023438],[121.327345,31.293843],[121.337345,31.293843],[121.337345,31.303843],[121.397008085938,31.2888137031251]]]]}},{"type":"Feature","properties":{"name":"青浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.087345,31.0538430000001],[121.083922148438,31.0660353828126],[121.075152617188,31.0572658515625],[121.097613554688,30.97163596875],[121.0622278125,30.9580324531251],[121.042066679688,30.9698830390625],[121.027345,30.9438430000001],[121.010704375,30.947202375],[120.997345,30.953843],[120.985504179688,30.9598342109375],[120.9972278125,30.983843],[120.984254179688,31.0104055],[120.960704375,31.017202375],[120.953326445313,31.0317873359376],[120.917345,31.01390159375],[120.897345,31.023843],[120.8916028125,31.0588088203125],[120.895064726563,31.0822634101563],[120.85170046875,31.10819846875],[120.847345,31.113843],[120.8819153125,31.1396462226562],[120.902345,31.136626203125],[120.942345,31.1425368476563],[120.9976575,31.1343630195313],[121.07500125,31.162583234375],[121.05298953125,31.23808128125],[121.06170046875,31.2694875312501],[121.07298953125,31.27819846875],[121.081866484375,31.289702375],[121.14170046875,31.27819846875],[121.147345,31.273843],[121.17568484375,31.2556423164063],[121.202345,31.2595827460938],[121.212379179688,31.2580983710938],[121.247345,31.263843],[121.2405090625,31.2485817695313],[121.253531523438,31.2300295234376],[121.266383085938,31.1923146796876],[121.297257109375,31.2019289375],[121.317345,31.1638430000001],[121.2860559375,31.1551296210938],[121.27298953125,31.1381984687501],[121.23170046875,31.12948753125],[121.2221496875,31.1171096015625],[121.212916289063,31.1396657539063],[121.202345,31.1381032539063],[121.182857695313,31.1409841132813],[121.147940703125,31.095747296875],[121.112369414063,31.109731671875],[121.09298953125,31.102641828125],[121.120592070313,31.0568849921875],[121.10205203125,31.05962425],[121.087345,31.0538430000001]]]]}},{"type":"Feature","properties":{"name":"松江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.087345,31.0538430000001],[121.075152617188,31.0572658515625],[121.083922148438,31.0660353828126],[121.087345,31.0538430000001]]],[[[121.087345,31.0538430000001],[121.10205203125,31.05962425],[121.120592070313,31.0568849921875],[121.09298953125,31.102641828125],[121.112369414063,31.109731671875],[121.147940703125,31.095747296875],[121.182857695313,31.1409841132813],[121.202345,31.1381032539063],[121.212916289063,31.1396657539063],[121.2221496875,31.1171096015625],[121.23170046875,31.12948753125],[121.27298953125,31.1381984687501],[121.2860559375,31.1551296210938],[121.317345,31.1638430000001],[121.324537382813,31.1576491523438],[121.365811796875,31.0836696601563],[121.35271609375,31.0684719062501],[121.327432890625,31.0571901679688],[121.321241484375,30.9801369453126],[121.342584257813,30.978423078125],[121.357345,30.983843],[121.35326296875,30.9379274726563],[121.347345,30.913843],[121.291519804688,30.9096681953126],[121.279527617188,30.892934796875],[121.2427746875,30.9162673164063],[121.230484648438,30.9334157539063],[121.162647734375,30.9200099921875],[121.1104309375,30.9041481757813],[121.113472929688,30.9195607734375],[121.089542265625,30.9280178046876],[121.093487578125,30.9080617500001],[121.032491484375,30.8996681953125],[121.027345,30.9438430000001],[121.042066679688,30.9698830390625],[121.0622278125,30.9580324531251],[121.097613554688,30.97163596875],[121.087345,31.0538430000001]]]]}},{"type":"Feature","properties":{"name":"徐汇区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.467345,31.113843],[121.449439726563,31.1063234687501],[121.43326296875,31.1297585273438],[121.41142703125,31.1379274726563],[121.385416289063,31.1756056953125],[121.40326296875,31.1879274726563],[121.407345,31.193843],[121.437345,31.213843],[121.457345,31.223843],[121.460704375,31.207202375],[121.467345,31.193843],[121.461163359375,31.1791213203125],[121.464586210938,31.1638430000001],[121.4600403125,31.1435720039063],[121.467345,31.113843]]]]}},{"type":"Feature","properties":{"name":"杨浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.54326296875,31.2579274726563],[121.507345,31.253843],[121.491124296875,31.2783913398438],[121.493565703125,31.2892946601563],[121.477345,31.3138430000001],[121.49062625,31.3205617500001],[121.500704375,31.340483625],[121.513985625,31.3472023750001],[121.517345,31.3538430000001],[121.553272734375,31.3343190742187],[121.566939726563,31.2733473945313],[121.54326296875,31.2579274726563]]]]}},{"type":"Feature","properties":{"name":"闸北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.457345,31.2438430000001],[121.447345,31.2438430000001],[121.44287234375,31.2659865546875],[121.427345,31.273843],[121.417315703125,31.29401878125],[121.4341028125,31.327202375],[121.463985625,31.320483625],[121.467345,31.3138430000001],[121.459888945313,31.3112990546875],[121.454801054688,31.2815334296875],[121.474801054688,31.2612990546876],[121.477345,31.2438430000001],[121.457345,31.2438430000001]]]]}},{"type":"Feature","properties":{"name":"黄浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.49326296875,31.1979274726563],[121.467345,31.193843],[121.460704375,31.207202375],[121.457345,31.223843],[121.465289335938,31.2278615546875],[121.457345,31.2438430000001],[121.477345,31.2438430000001],[121.487345,31.2438430000001],[121.5057434375,31.2160036445312],[121.49326296875,31.1979274726563]]]]}},{"type":"Feature","properties":{"name":"浦东新区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.787447539063,31.1987868476563],[121.886827421875,31.0827370429688],[121.949600859375,30.9821681953126],[121.98197390625,30.8940090156251],[121.958990507813,30.87546409375],[121.883057890625,30.8475807929688],[121.857345,30.8496462226563],[121.815875273438,30.846313703125],[121.767345,30.853843],[121.7766028125,30.93073753125],[121.6995325,30.9903591132813],[121.567345,31.003843],[121.5560559375,31.0478273750001],[121.537862578125,31.0603908515625],[121.564586210938,31.078843],[121.55107546875,31.0881716132813],[121.555709257813,31.108843],[121.524620390625,31.120473859375],[121.512345,31.1177223945313],[121.4890246875,31.1229494453125],[121.467345,31.113843],[121.4600403125,31.1435720039063],[121.464586210938,31.1638430000001],[121.461163359375,31.1791213203125],[121.467345,31.193843],[121.49326296875,31.1979274726563],[121.5057434375,31.2160036445312],[121.487345,31.2438430000001],[121.507345,31.253843],[121.54326296875,31.2579274726563],[121.566939726563,31.2733473945313],[121.553272734375,31.3343190742187],[121.517345,31.3538430000001],[121.492818632813,31.3774098945313],[121.537345,31.403843],[121.553531523438,31.4000295234375],[121.702447539063,31.3270217109375],[121.821158476563,31.2876564765625],[121.847345,31.2838430000001],[121.841676054688,31.2405055976562],[121.77271609375,31.2248390937501],[121.787447539063,31.1987868476563]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇明县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.50271609375,31.74921409375],[121.592086210938,31.7084206367188],[121.602584257813,31.709262921875],[121.632105742188,31.698423078125],[121.642564726563,31.699262921875],[121.783448515625,31.6548537421875],[121.877345,31.633843],[121.88232546875,31.5940407539063],[121.951314726563,31.5521364570312],[121.957056914063,31.5059694648438],[121.921920195313,31.4620900703125],[121.883863554688,31.4460549140625],[121.876749296875,31.3888430000001],[121.8837121875,31.3328664375],[121.847345,31.2838430000001],[121.821158476563,31.2876564765625],[121.702447539063,31.3270217109375],[121.553531523438,31.4000295234375],[121.537345,31.403843],[121.53271609375,31.4092140937501],[121.45619265625,31.4571462226563],[121.39345828125,31.5299587226563],[121.377345,31.5438430000001],[121.37326296875,31.5497585273438],[121.33142703125,31.5779274726563],[121.23326296875,31.6697585273438],[121.119918242188,31.7456349921876],[121.107345,31.763843],[121.11181765625,31.7694264960937],[121.192081328125,31.8336208320313],[121.27218875,31.8682009101562],[121.321783476563,31.87437034375],[121.387784453125,31.8342800117187],[121.421793242188,31.7782888007813],[121.437345,31.7738430000001],[121.443096953125,31.7671633125001],[121.50271609375,31.74921409375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"秦淮区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.83298953125,31.98819846875],[118.797345,31.973843],[118.792867460938,31.9960305000001],[118.757345,32.013843],[118.757345,32.023843],[118.767345,32.023843],[118.83205203125,32.0128517890625],[118.837345,31.993843],[118.83298953125,31.98819846875]]]]}},{"type":"Feature","properties":{"name":"下关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.733985625,32.0672023750001],[118.727345,32.063843],[118.727345,32.093843],[118.740704375,32.120483625],[118.767345,32.133843],[118.793985625,32.120483625],[118.797345,32.103843],[118.797345,32.093843],[118.777345,32.093843],[118.745426054688,32.0898171210938],[118.733985625,32.0672023750001]]]]}},{"type":"Feature","properties":{"name":"玄武区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.857867460938,32.1079274726563],[118.911016875,32.0908303046875],[118.878980742188,32.0788430000001],[118.883468046875,32.058843],[118.879698515625,32.0420436835938],[118.887345,32.023843],[118.867345,32.013843],[118.86298953125,32.01948753125],[118.814605742188,32.0392897773438],[118.777345,32.0438430000001],[118.777345,32.093843],[118.797345,32.093843],[118.797345,32.103843],[118.812066679688,32.0976589179688],[118.857867460938,32.1079274726563]]]]}},{"type":"Feature","properties":{"name":"雨花台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.677345,31.903843],[118.689537382813,31.9004201484375],[118.680767851563,31.8916506171875],[118.677345,31.903843]]],[[[118.677345,31.903843],[118.656666289063,31.8989723945313],[118.639928007813,31.8718093085938],[118.591226835938,31.886977765625],[118.587345,31.9238430000001],[118.591793242188,31.9293971992188],[118.647345,31.973843],[118.681119414063,31.9608620429688],[118.710045195313,31.9572634101563],[118.751793242188,32.0093971992187],[118.757345,32.013843],[118.792867460938,31.9960305000001],[118.797345,31.973843],[118.77142703125,31.9597585273438],[118.758819609375,31.9106227851562],[118.712623320313,31.9300270820312],[118.682320585938,31.9232326484375],[118.677345,31.903843]]]]}},{"type":"Feature","properties":{"name":"溧水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.133922148438,31.4360353828125],[119.137345,31.423843],[119.125152617188,31.4272658515625],[119.133922148438,31.4360353828125]]],[[[118.847345,31.5138430000001],[118.843922148438,31.5016506171875],[118.835152617188,31.5104201484375],[118.847345,31.5138430000001]]],[[[118.847345,31.5138430000001],[118.847345,31.523843],[118.857345,31.523843],[118.857345,31.5138430000001],[118.847345,31.5138430000001]]],[[[118.857345,31.523843],[118.857345,31.533843],[118.867345,31.533843],[118.867345,31.523843],[118.857345,31.523843]]],[[[118.867345,31.533843],[118.873136015625,31.569106671875],[118.86156375,31.5985500312501],[118.863765898438,31.6134548164063],[118.827345,31.633843],[118.831519804688,31.6396681953126],[118.883092070313,31.6500075507813],[118.912037382813,31.6903884101563],[118.941519804688,31.6716701484375],[118.932432890625,31.7130300117188],[118.895128203125,31.7397682929688],[118.888780546875,31.771889875],[118.902037382813,31.7903884101563],[118.921793242188,31.7778444648438],[118.971519804688,31.7680178046876],[118.977345,31.763843],[118.99062625,31.77056175],[118.997345,31.783843],[119.057354765625,31.7910671210938],[119.08271609375,31.76921409375],[119.093082304688,31.7571852851563],[119.15197390625,31.70847190625],[119.1827746875,31.6891799140625],[119.18068484375,31.6631813789063],[119.20197390625,31.6384719062501],[119.22271609375,31.62921409375],[119.227345,31.6238430000001],[119.21115359375,31.589165265625],[119.214815703125,31.5728102851563],[119.177193632813,31.5468312812501],[119.184815703125,31.5128102851563],[119.150206328125,31.4889138007813],[119.14142703125,31.4497585273437],[119.137345,31.443843],[119.12142703125,31.4397585273438],[119.108995390625,31.4217482734376],[119.072345,31.4299636054688],[119.062345,31.4277223945313],[119.052345,31.4299636054688],[119.042345,31.4277223945313],[119.02783328125,31.4309767890625],[119.001920195313,31.3855763984375],[118.982345,31.3899636054688],[118.964459257813,31.3859548164063],[118.940933867188,31.4012721992188],[118.90451296875,31.4650856757813],[118.877345,31.483843],[118.877345,31.533843],[118.867345,31.533843]]]]}},{"type":"Feature","properties":{"name":"白下区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.863985625,32.007202375],[118.837345,31.993843],[118.83205203125,32.0128517890625],[118.767345,32.023843],[118.757345,32.0438430000001],[118.777345,32.0438430000001],[118.814605742188,32.0392897773438],[118.86298953125,32.01948753125],[118.867345,32.013843],[118.863985625,32.007202375]]]]}},{"type":"Feature","properties":{"name":"高淳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.940933867188,31.4012721992188],[118.964459257813,31.3859548164063],[118.982345,31.3899636054688],[119.001920195313,31.3855763984375],[119.02783328125,31.4309767890625],[119.042345,31.4277223945313],[119.052345,31.4299636054688],[119.062345,31.4277223945313],[119.072345,31.4299636054688],[119.108995390625,31.4217482734376],[119.12142703125,31.4397585273438],[119.137345,31.443843],[119.161734648438,31.4375856757813],[119.17142703125,31.3879274726563],[119.209127226563,31.3618971992187],[119.19142703125,31.3197585273438],[119.187345,31.303843],[119.15170046875,31.28948753125],[119.14298953125,31.27819846875],[119.1074621875,31.2569533515626],[119.092857695313,31.2380275703126],[119.082345,31.2395827460938],[119.072345,31.2381032539063],[119.062345,31.2395827460938],[119.04478640625,31.2369875312501],[119.027345,31.2438430000001],[118.989815703125,31.2349733710938],[118.957345,31.2405641914063],[118.942345,31.2379811835937],[118.887345,31.2474513984375],[118.784908476563,31.2298146796876],[118.766588164063,31.2759157539063],[118.721612578125,31.2881081367188],[118.717345,31.3238430000001],[118.753121367188,31.3886452460938],[118.77447390625,31.366421125],[118.8419153125,31.3883058906251],[118.8624621875,31.4281838203125],[118.861861601563,31.4575392890626],[118.87224734375,31.4789430976563],[118.877345,31.483843],[118.90451296875,31.4650856757813],[118.940933867188,31.4012721992188]],[[119.137345,31.423843],[119.133922148438,31.4360353828125],[119.125152617188,31.4272658515625],[119.137345,31.423843]]]]}},{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.777345,32.0438430000001],[118.757345,32.0438430000001],[118.712974882813,32.0500368476563],[118.727345,32.063843],[118.733985625,32.0672023750001],[118.745426054688,32.0898171210938],[118.777345,32.093843],[118.777345,32.0438430000001]]]]}},{"type":"Feature","properties":{"name":"建邺区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.751793242188,32.0093971992187],[118.710045195313,31.9572634101563],[118.681119414063,31.9608620429688],[118.647345,31.973843],[118.699053984375,32.0685646796875],[118.727345,32.093843],[118.727345,32.063843],[118.712974882813,32.0500368476563],[118.757345,32.0438430000001],[118.767345,32.023843],[118.757345,32.023843],[118.757345,32.013843],[118.751793242188,32.0093971992187]]]]}},{"type":"Feature","properties":{"name":"江宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.677345,31.903843],[118.680767851563,31.8916506171875],[118.689537382813,31.9004201484375],[118.682320585938,31.9232326484375],[118.712623320313,31.9300270820312],[118.758819609375,31.9106227851562],[118.77142703125,31.9597585273438],[118.797345,31.973843],[118.83298953125,31.98819846875],[118.837345,31.993843],[118.863985625,32.007202375],[118.867345,32.013843],[118.887345,32.023843],[118.90162234375,32.0348635078126],[118.912686796875,32.061899640625],[118.946549101563,32.1057692695313],[118.974722929688,32.1099343085938],[118.968795195313,32.0698073554688],[118.9960559375,32.1051296210938],[119.007345,32.1138430000001],[119.047047148438,32.1073220039063],[119.071832304688,32.1109841132812],[119.08170046875,32.09819846875],[119.096392851563,32.0868581367188],[119.080826445313,32.0472585273438],[119.09170046875,32.00819846875],[119.11170046875,31.9927614570313],[119.102926054688,31.9680178046875],[119.034459257813,31.9781374335938],[119.028834257813,31.9401003242188],[119.042345,31.9381032539062],[119.06408328125,31.9413161445312],[119.109556914063,31.9227053046875],[119.114483671875,31.8893556953125],[119.10170046875,31.8794875312501],[119.090806914063,31.865376203125],[119.062027617188,31.8696291328126],[119.01298953125,31.84819846875],[118.963604765625,31.83444846875],[118.9886340625,31.8151296210938],[118.997345,31.783843],[118.977345,31.783843],[118.977345,31.763843],[118.971519804688,31.7680178046876],[118.921793242188,31.7778444648438],[118.902037382813,31.7903884101563],[118.888780546875,31.771889875],[118.895128203125,31.7397682929688],[118.932432890625,31.7130300117188],[118.941519804688,31.6716701484375],[118.912037382813,31.6903884101563],[118.883092070313,31.6500075507813],[118.831519804688,31.6396681953126],[118.827345,31.633843],[118.7946496875,31.6209914375001],[118.7795715625,31.6578420234375],[118.797154570313,31.6714138007813],[118.746910429688,31.68819846875],[118.7321496875,31.6351784492188],[118.697345,31.6403200507813],[118.682310820313,31.6380983710938],[118.647345,31.643843],[118.640704375,31.657202375],[118.637345,31.683843],[118.663531523438,31.6876564765625],[118.685660429688,31.7031935859375],[118.677750273438,31.7285939765626],[118.646300078125,31.73931175],[118.631539335938,31.7632643867188],[118.612345,31.7572853828125],[118.601886015625,31.7605422187501],[118.583531523438,31.7476564765625],[118.552740507813,31.7371633125],[118.517891875,31.7480178046875],[118.536011992188,31.759184796875],[118.511158476563,31.7676564765625],[118.492608671875,31.7806789375],[118.477345,31.7738430000001],[118.480704375,31.800483625],[118.493985625,31.827202375],[118.497345,31.843843],[118.55888796875,31.9152761054688],[118.587345,31.9238430000001],[118.591226835938,31.886977765625],[118.639928007813,31.8718093085938],[118.656666289063,31.8989723945313],[118.677345,31.903843]]]]}},{"type":"Feature","properties":{"name":"六合区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.737345,32.183843],[118.733922148438,32.1716506171876],[118.725152617188,32.1804201484375],[118.737345,32.183843]]],[[[118.737345,32.183843],[118.734801054688,32.2012990546875],[118.719888945313,32.2163869453126],[118.714801054688,32.2512990546876],[118.667345,32.253843],[118.661783476563,32.2697072578125],[118.662545195313,32.288843],[118.6617590625,32.3086647773438],[118.672535429688,32.3186525703126],[118.682154570313,32.3290334296875],[118.702808867188,32.3387819648438],[118.691373320313,32.3493752265625],[118.692550078125,32.3790212226563],[118.681373320313,32.3893752265625],[118.682545195313,32.4188430000001],[118.682144804688,32.4288430000001],[118.683736601563,32.4689064765625],[118.592154570313,32.4786525703125],[118.582535429688,32.490122296875],[118.6029309375,32.5090212226563],[118.602144804688,32.528843],[118.602550078125,32.5390236640625],[118.55283328125,32.5711305976563],[118.58505984375,32.6009914375],[118.632408476563,32.5885866523438],[118.652178984375,32.5990480781251],[118.691461210938,32.5974904609376],[118.697345,32.603843],[118.707345,32.6163307929688],[118.722799101563,32.5970339179688],[118.759210234375,32.6015627265625],[118.787345,32.585024640625],[118.81267703125,32.5999172187501],[118.825538359375,32.5693971992188],[118.862896757813,32.5782888007813],[118.896920195313,32.5982888007813],[118.903170195313,32.5889943671875],[118.890284453125,32.5554763007813],[118.930045195313,32.5604225898437],[118.973702421875,32.505903546875],[119.030079375,32.512915265625],[119.041793242188,32.4982888007813],[119.052896757813,32.4893971992188],[119.057345,32.4638430000001],[119.01994265625,32.453149640625],[119.023023710938,32.4283888984376],[119.00361453125,32.41284690625],[119.033590117188,32.3888430000001],[119.021099882813,32.378843],[119.033023710938,32.3692971015625],[119.031099882813,32.353843],[119.032965117188,32.338843],[119.029859648438,32.3138430000001],[119.036500273438,32.2604396796876],[119.077345,32.243843],[119.035513945313,32.1916091132813],[118.9233996875,32.1735353828126],[118.869210234375,32.189028546875],[118.829761992188,32.2382888007813],[118.780357695313,32.2225807929687],[118.757345,32.1938430000001],[118.737345,32.183843]]]]}},{"type":"Feature","properties":{"name":"浦口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.737345,32.183843],[118.725152617188,32.1804201484375],[118.733922148438,32.1716506171876],[118.757345,32.1938430000001],[118.767345,32.1938430000001],[118.767345,32.133843],[118.740704375,32.120483625],[118.727345,32.093843],[118.699053984375,32.0685646796875],[118.647345,31.973843],[118.591793242188,31.9293971992188],[118.587345,31.9238430000001],[118.55888796875,31.9152761054688],[118.497345,31.843843],[118.481881132813,31.8483815742188],[118.460968046875,31.860356671875],[118.463287382813,31.8830763984375],[118.381881132813,31.9183815742188],[118.358956328125,31.9315114570313],[118.372882109375,31.9685768867188],[118.371793242188,31.979233625],[118.382808867188,31.9883815742188],[118.39474734375,32.0159157539062],[118.381803007813,32.038520734375],[118.382896757813,32.049233625],[118.377345,32.053843],[118.390704375,32.080483625],[118.417345,32.0838430000001],[118.463531523438,32.1076564765625],[118.471158476563,32.1200295234375],[118.500382109375,32.1380373359375],[118.487926054688,32.1780373359375],[118.503531523438,32.1876564765625],[118.507345,32.1938430000001],[118.622896757813,32.2082888007812],[118.658199492188,32.2218605781251],[118.667345,32.253843],[118.714801054688,32.2512990546876],[118.719888945313,32.2163869453126],[118.734801054688,32.2012990546875],[118.737345,32.183843]]]]}},{"type":"Feature","properties":{"name":"栖霞区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.237345,32.213843],[119.196417265625,32.1870510078125],[119.177345,32.1908180976563],[119.157345,32.1868679023438],[119.132345,32.1918068671875],[119.07162234375,32.1798073554688],[119.063170195313,32.1680178046875],[119.041519804688,32.1596681953125],[119.014991484375,32.1428249335938],[119.007345,32.1138430000001],[118.9960559375,32.1051296210938],[118.968795195313,32.0698073554688],[118.974722929688,32.1099343085938],[118.946549101563,32.1057692695313],[118.912686796875,32.061899640625],[118.90162234375,32.0348635078126],[118.887345,32.023843],[118.879698515625,32.0420436835938],[118.883468046875,32.058843],[118.878980742188,32.0788430000001],[118.911016875,32.0908303046875],[118.857867460938,32.1079274726563],[118.812066679688,32.0976589179688],[118.797345,32.103843],[118.793985625,32.120483625],[118.767345,32.133843],[118.767345,32.1938430000001],[118.757345,32.1938430000001],[118.780357695313,32.2225807929687],[118.829761992188,32.2382888007813],[118.869210234375,32.189028546875],[118.9233996875,32.1735353828126],[119.035513945313,32.1916091132813],[119.077345,32.243843],[119.173531523438,32.2400295234375],[119.211158476563,32.2276564765625],[119.237345,32.223843],[119.237345,32.213843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.30326296875,31.5979274726563],[120.287345,31.573843],[120.277345,31.573843],[120.277345,31.5838430000001],[120.237345,31.5838430000001],[120.237345,31.593843],[120.242672148438,31.6251979804688],[120.272379179688,31.6295876289063],[120.307345,31.6238430000001],[120.307345,31.613843],[120.30326296875,31.5979274726563]]]]}},{"type":"Feature","properties":{"name":"滨湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.237345,31.593843],[120.237345,31.5838430000001],[120.277345,31.5838430000001],[120.277345,31.573843],[120.282882109375,31.5591091132813],[120.2818371875,31.5488430000001],[120.283209257813,31.535356671875],[120.315592070313,31.5093044257813],[120.341881132813,31.5537087226563],[120.307345,31.563843],[120.3119153125,31.5864821601563],[120.337345,31.573843],[120.372310820313,31.5795876289063],[120.382345,31.5781032539063],[120.423873320313,31.5842409492188],[120.459127226563,31.5570314765626],[120.473175078125,31.5088430000001],[120.459014921875,31.4602736640625],[120.467345,31.453843],[120.461954375,31.4473537421875],[120.420245390625,31.4516042304687],[120.337047148438,31.4155251289063],[120.327345,31.403843],[120.214088164063,31.347173078125],[120.207345,31.333843],[120.186846953125,31.3276711250001],[120.127345,31.293843],[120.097345,31.333843],[120.093443632813,31.3499391914063],[120.044019804688,31.3590822578126],[120.033443632813,31.3921388984375],[120.056514921875,31.4447585273438],[120.10084109375,31.4603493476563],[120.117393828125,31.5074098945313],[120.101246367188,31.5177468085938],[120.097345,31.5538430000001],[120.102628203125,31.5585622382813],[120.129307890625,31.5884255195313],[120.172310820313,31.5583888984375],[120.192061796875,31.5691237617188],[120.2126575,31.5785768867188],[120.2120325,31.5891188789063],[120.237345,31.593843]]]]}},{"type":"Feature","properties":{"name":"崇安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.343194609375,31.6094606757813],[120.337345,31.573843],[120.3119153125,31.5864821601563],[120.307345,31.563843],[120.287345,31.573843],[120.30326296875,31.5979274726563],[120.307345,31.613843],[120.343194609375,31.6094606757813]]]]}},{"type":"Feature","properties":{"name":"惠山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.197345,31.753843],[120.202271757813,31.7268288398438],[120.247511015625,31.73046409375],[120.27271609375,31.7192140937501],[120.2866028125,31.7030983710938],[120.377345,31.693843],[120.386534453125,31.674575421875],[120.363804960938,31.6573830390625],[120.339820585938,31.6499733710938],[120.347896757813,31.6303713203126],[120.317735625,31.6428029609375],[120.307345,31.6238430000001],[120.272379179688,31.6295876289063],[120.242672148438,31.6251979804688],[120.237345,31.593843],[120.2120325,31.5891188789063],[120.2126575,31.5785768867188],[120.192061796875,31.5691237617188],[120.172310820313,31.5583888984375],[120.129307890625,31.5884255195313],[120.102628203125,31.5585622382813],[120.097345,31.5538430000001],[120.053492460938,31.5595803046876],[120.051397734375,31.5856423164063],[120.11271609375,31.6384719062501],[120.12197390625,31.6792140937501],[120.14025515625,31.6949636054688],[120.152764921875,31.7635671210938],[120.197345,31.753843]]]]}},{"type":"Feature","properties":{"name":"江阴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.383565703125,31.9292897773438],[120.380426054688,31.9152883125],[120.455357695313,31.8890236640625],[120.489176054688,31.8656740546876],[120.50142703125,31.8479274726563],[120.526158476563,31.83085471875],[120.518204375,31.795376203125],[120.552345,31.7877223945313],[120.57900515625,31.7936989570313],[120.5957434375,31.753843],[120.587345,31.7338430000001],[120.577345,31.7338430000001],[120.577345,31.723843],[120.513585234375,31.73011253125],[120.490377226563,31.7171633125],[120.39197390625,31.69921409375],[120.377345,31.693843],[120.2866028125,31.7030983710938],[120.27271609375,31.7192140937501],[120.247511015625,31.73046409375],[120.202271757813,31.7268288398438],[120.197345,31.753843],[120.161500273438,31.8288991523438],[120.172896757813,31.8482888007813],[120.181793242188,31.8779616523438],[120.074053984375,31.8471974921876],[120.037345,31.823843],[120.022345,31.8312990546876],[120.007345,31.823843],[119.995909453125,31.8311647773437],[119.990811796875,31.849301984375],[120.007862578125,31.874204328125],[119.998345976563,31.9080812812501],[120.01396609375,31.9180812812501],[120.003580351563,31.9550319648438],[120.017345,31.9638430000001],[120.052535429688,31.9590334296876],[120.195924101563,31.9290334296875],[120.255865507813,31.9414040351563],[120.367345,31.993843],[120.37142703125,31.9479274726563],[120.383565703125,31.9292897773438]]]]}},{"type":"Feature","properties":{"name":"南长区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.341881132813,31.5537087226563],[120.315592070313,31.5093044257813],[120.283209257813,31.535356671875],[120.2818371875,31.5488430000001],[120.282882109375,31.5591091132813],[120.277345,31.573843],[120.287345,31.573843],[120.307345,31.563843],[120.341881132813,31.5537087226563]]]]}},{"type":"Feature","properties":{"name":"锡山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.588912382813,31.6470607734375],[120.593170195313,31.6182643867188],[120.53298953125,31.5963088203125],[120.551871367188,31.5780348945313],[120.59056765625,31.5837526679688],[120.597345,31.5438430000001],[120.592935820313,31.5280153632813],[120.581773710938,31.5296657539063],[120.572916289063,31.5080202460938],[120.543604765625,31.5123513007813],[120.541607695313,31.498843],[120.544615507813,31.4784938789063],[120.49298953125,31.45819846875],[120.467345,31.453843],[120.459014921875,31.4602736640625],[120.473175078125,31.5088430000001],[120.459127226563,31.5570314765626],[120.423873320313,31.5842409492188],[120.382345,31.5781032539063],[120.372310820313,31.5795876289063],[120.337345,31.573843],[120.343194609375,31.6094606757813],[120.307345,31.613843],[120.307345,31.6238430000001],[120.317735625,31.6428029609375],[120.347896757813,31.6303713203126],[120.339820585938,31.6499733710938],[120.363804960938,31.6573830390625],[120.386534453125,31.674575421875],[120.377345,31.693843],[120.39197390625,31.69921409375],[120.490377226563,31.7171633125],[120.513585234375,31.73011253125],[120.577345,31.723843],[120.58170046875,31.71819846875],[120.595299101563,31.7077028632813],[120.565416289063,31.6846364570313],[120.561519804688,31.6582717109375],[120.588912382813,31.6470607734375]]]]}},{"type":"Feature","properties":{"name":"宜兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.70298953125,31.5794875312501],[119.711773710938,31.5580202460938],[119.73369265625,31.5612575507813],[119.80298953125,31.54948753125],[119.83009890625,31.5331325507813],[119.87205203125,31.54962425],[119.882345,31.5481032539063],[119.926124296875,31.5545729804687],[119.96298953125,31.5394875312501],[119.976202421875,31.5071974921876],[119.99673953125,31.51022971875],[120.04170046875,31.4918288398437],[120.03298953125,31.42819846875],[120.01298953125,31.3773244453125],[120.0462121875,31.3425295234376],[120.097345,31.333843],[120.127345,31.293843],[120.09271609375,31.27847190625],[120.010181914063,31.2560060859375],[119.933443632813,31.1925295234375],[119.917345,31.173843],[119.877642851563,31.1673220039063],[119.825928984375,31.1749636054688],[119.808878203125,31.152876203125],[119.7727746875,31.1796462226562],[119.712686796875,31.170766828125],[119.699400664063,31.1535524726563],[119.665289335938,31.1741335273438],[119.65298953125,31.15819846875],[119.64170046875,31.1494875312501],[119.63298953125,31.1381984687501],[119.617345,31.133843],[119.579073515625,31.1097243476563],[119.55373171875,31.14022971875],[119.531881132813,31.1583815742188],[119.527345,31.1638430000001],[119.551773710938,31.2029811835937],[119.53197390625,31.23847190625],[119.519893828125,31.3177443671875],[119.533316679688,31.3917702460938],[119.5319153125,31.4091677070313],[119.54271609375,31.4184719062501],[119.55197390625,31.42921409375],[119.57271609375,31.43847190625],[119.59197390625,31.4550856757813],[119.5619153125,31.4684963203125],[119.563150664063,31.483843],[119.5619153125,31.4991677070313],[119.581304960938,31.5158693671875],[119.607345,31.563843],[119.630699492188,31.5693434882813],[119.643990507813,31.6083425117188],[119.667345,31.613843],[119.67170046875,31.60819846875],[119.68298953125,31.59948753125],[119.69170046875,31.58819846875],[119.70298953125,31.5794875312501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.6919153125,34.7291664863281],[116.693551054688,34.7088430000001],[116.691241484375,34.6801369453125],[116.720787382813,34.6777626777344],[116.761627226563,34.6927602363281],[116.762745390625,34.6788430000001],[116.761138945313,34.658843],[116.762745390625,34.6388430000001],[116.761573515625,34.6242458320313],[116.775416289063,34.56331565625],[116.864215117188,34.5471169257812],[116.861944609375,34.5188430000001],[116.862745390625,34.508843],[116.861163359375,34.4891664863282],[116.867345,34.4838430000001],[116.85142703125,34.4597585273437],[116.84326296875,34.4379274726563],[116.82142703125,34.4297585273438],[116.81326296875,34.4179274726563],[116.807345,34.413843],[116.79197390625,34.4184706855469],[116.761383085938,34.4673110175782],[116.65197390625,34.4784706855469],[116.617345,34.4838430000001],[116.562706328125,34.4897792792969],[116.58275515625,34.5090395332031],[116.56224734375,34.5287429023437],[116.55244265625,34.5389430976563],[116.50912234375,34.5530019355469],[116.472159453125,34.6093788886719],[116.43224734375,34.6287429023438],[116.420992460938,34.6519374824219],[116.382345,34.6387087226563],[116.367345,34.643843],[116.37420046875,34.6612831855469],[116.371549101563,34.679233625],[116.383140898438,34.698452375],[116.379854765625,34.7206911445313],[116.361754179688,34.7180165839844],[116.35298953125,34.7470607734376],[116.39298953125,34.7581996894532],[116.407345,34.843843],[116.41170046875,34.8594863105469],[116.437345,34.893843],[116.483370390625,34.8980361152344],[116.583170195313,34.9180178046875],[116.6318371875,34.9380178046875],[116.703170195313,34.9296681953125],[116.727345,34.923843],[116.73283328125,34.8986806464844],[116.721920195313,34.8791213203125],[116.724742460938,34.8440334296875],[116.6980871875,34.8130995917969],[116.675738554688,34.793843],[116.721363554688,34.7545351386719],[116.6919153125,34.7291664863281]]]]}},{"type":"Feature","properties":{"name":"贾汪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.687345,34.343843],[117.699537382813,34.3404201484375],[117.690767851563,34.3316506171875],[117.687345,34.343843]]],[[[117.687345,34.343843],[117.660704375,34.3404836250001],[117.647345,34.3338430000001],[117.642896757813,34.3393959785156],[117.608912382813,34.3582900214844],[117.573702421875,34.3143202949219],[117.507345,34.3225746894532],[117.412940703125,34.3108327460938],[117.407345,34.303843],[117.371978789063,34.298032453125],[117.352838164063,34.3095766425782],[117.32298953125,34.3594863105469],[117.297345,34.3638430000001],[117.277818632813,34.3688539863282],[117.310816679688,34.4195290351563],[117.354840117188,34.436001203125],[117.339698515625,34.4720449042969],[117.343468046875,34.488843],[117.340435820313,34.5023561835938],[117.39326296875,34.5379274726563],[117.397345,34.543843],[117.41298953125,34.5394863105469],[117.42170046875,34.5281996894532],[117.44427859375,34.5107741523438],[117.46170046875,34.4881996894532],[117.47298953125,34.4794863105469],[117.481832304688,34.4680287910157],[117.507345,34.4717983222657],[117.532345,34.4681044746094],[117.547642851563,34.4703652167969],[117.587345,34.463843],[117.6423059375,34.4584377265626],[117.665465117188,34.4602992988281],[117.72197390625,34.4350844550781],[117.71271609375,34.4284706855469],[117.687174101563,34.4170729804688],[117.708829375,34.3782619453126],[117.687345,34.343843]]]]}},{"type":"Feature","properties":{"name":"沛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.967345,34.813843],[116.979537382813,34.8104201484376],[116.970767851563,34.8016506171876],[116.967345,34.813843]]],[[[116.967345,34.813843],[116.94654421875,34.7994826484375],[116.965933867188,34.7714003730469],[116.987345,34.7666017890626],[117.008360625,34.7713124824219],[117.074283476563,34.6986330390626],[117.05326296875,34.6841188789062],[117.064146757813,34.635884015625],[117.101573515625,34.6442739082032],[117.115513945313,34.6070119453125],[117.146168242188,34.5599355292969],[117.137345,34.5538430000001],[117.10142703125,34.5497585273438],[117.09326296875,34.5379274726563],[117.07142703125,34.5297585273438],[117.050230742188,34.5159548164063],[117.031676054688,34.5201137519532],[117.02326296875,34.5079274726563],[117.01142703125,34.4997585273438],[116.998892851563,34.4662538886719],[116.972345,34.4722060371094],[116.941788359375,34.4653554511719],[116.867345,34.4838430000001],[116.861163359375,34.4891664863282],[116.862745390625,34.508843],[116.861944609375,34.5188430000001],[116.864215117188,34.5471169257812],[116.775416289063,34.56331565625],[116.761573515625,34.6242458320313],[116.762745390625,34.6388430000001],[116.761138945313,34.658843],[116.762745390625,34.6788430000001],[116.761627226563,34.6927602363281],[116.720787382813,34.6777626777344],[116.691241484375,34.6801369453125],[116.693551054688,34.7088430000001],[116.6919153125,34.7291664863281],[116.721363554688,34.7545351386719],[116.675738554688,34.793843],[116.6980871875,34.8130995917969],[116.724742460938,34.8440334296875],[116.721920195313,34.8791213203125],[116.73283328125,34.8986806464844],[116.727345,34.923843],[116.771143828125,34.9136940742188],[116.781783476563,34.9396852851563],[116.817345,34.9338430000001],[116.824298125,34.925473859375],[116.862691679688,34.9293886542969],[116.891881132813,34.9083803535156],[116.912808867188,34.8993056464844],[116.921881132813,34.8783803535156],[116.943541289063,34.8689882636719],[116.9232434375,34.8521279121094],[116.960904570313,34.8357949042969],[116.967345,34.813843]]]]}},{"type":"Feature","properties":{"name":"泉山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.21970828125,34.2336049628906],[117.227345,34.203843],[117.150704375,34.207202375],[117.132735625,34.2214760566407],[117.12134890625,34.2159157539063],[117.107345,34.243843],[117.12062625,34.25056175],[117.1341028125,34.2772023750001],[117.173985625,34.2704836250001],[117.177345,34.263843],[117.18142703125,34.2479274726563],[117.21970828125,34.2336049628906]]]]}},{"type":"Feature","properties":{"name":"铜山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.247345,34.473843],[117.235152617188,34.4772658515625],[117.243922148438,34.4860353828125],[117.247345,34.473843]]],[[[117.247345,34.473843],[117.257823515625,34.4813539863282],[117.2758215625,34.5711208320313],[117.298580351563,34.5666237617188],[117.359718046875,34.5851955390625],[117.387345,34.573843],[117.397345,34.573843],[117.397345,34.543843],[117.39326296875,34.5379274726563],[117.340435820313,34.5023561835938],[117.343468046875,34.488843],[117.339698515625,34.4720449042969],[117.354840117188,34.436001203125],[117.310816679688,34.4195290351563],[117.277818632813,34.3688539863282],[117.297345,34.3638430000001],[117.289644804688,34.3338430000001],[117.256392851563,34.3263881660156],[117.21142703125,34.3379274726563],[117.197652617188,34.3578798652345],[117.142345,34.3454799628907],[117.122345,34.3499636054688],[117.112345,34.3477223945312],[117.075089140625,34.3560744453125],[117.065250273438,34.3121938300781],[117.094215117188,34.2921938300782],[117.091221953125,34.278843],[117.093468046875,34.268843],[117.09107546875,34.2581728339844],[117.10326296875,34.2497585273438],[117.107345,34.243843],[117.12134890625,34.2159157539063],[117.132735625,34.2214760566407],[117.150704375,34.207202375],[117.227345,34.203843],[117.23142703125,34.1679274726563],[117.250167265625,34.1549916816407],[117.272623320313,34.1600258613282],[117.32029421875,34.1400038886719],[117.334268828125,34.1773525214844],[117.327345,34.193843],[117.331793242188,34.2093959785157],[117.342896757813,34.2182900214844],[117.351793242188,34.2293959785156],[117.403931914063,34.2610671210937],[117.401705351563,34.2790041328125],[117.407345,34.303843],[117.412940703125,34.3108327460938],[117.507345,34.3225746894532],[117.573702421875,34.3143202949219],[117.608912382813,34.3582900214844],[117.642896757813,34.3393959785156],[117.647345,34.3338430000001],[117.637047148438,34.3108534980469],[117.645460234375,34.283843],[117.634171171875,34.2476039863281],[117.653531523438,34.2200307441407],[117.661158476563,34.1776552558594],[117.685909453125,34.1624050117188],[117.697345,34.1438430000001],[117.665885039063,34.0969289375],[117.616822539063,34.1079274726563],[117.5636340625,34.0956508613282],[117.55170046875,34.0637538886719],[117.537345,34.053843],[117.537345,34.0638430000001],[117.517345,34.0638430000001],[117.486099882813,34.055825421875],[117.44326296875,34.0279274726563],[117.397345,34.0238430000001],[117.39224734375,34.0431606269532],[117.371519804688,34.0580178046875],[117.363170195313,34.0796681953125],[117.317506132813,34.0880178046876],[117.301724882813,34.0660012031251],[117.267345,34.0727956367188],[117.232291289063,34.0658681464844],[117.156558867188,34.0809877753906],[117.147345,34.0938430000001],[117.14298953125,34.0994863105469],[117.121519804688,34.1082729316407],[117.123673125,34.1228346992188],[117.036534453125,34.1584987617188],[117.017345,34.163843],[117.044796171875,34.2188246894532],[117.03990359375,34.228843],[117.045445585938,34.2401894355469],[117.027345,34.243843],[117.021519804688,34.2480178046875],[117.012965117188,34.2599538398438],[116.998931914063,34.2571804023438],[116.963170195313,34.2974123359375],[116.975186796875,34.3582228828125],[116.959503203125,34.3694631171875],[116.9634778125,34.3895864082032],[116.90224734375,34.4057399726563],[116.824205351563,34.3903188300782],[116.807345,34.413843],[116.81326296875,34.4179274726563],[116.82142703125,34.4297585273438],[116.84326296875,34.4379274726563],[116.85142703125,34.4597585273437],[116.867345,34.4838430000001],[116.941788359375,34.4653554511719],[116.972345,34.4722060371094],[116.998892851563,34.4662538886719],[117.01142703125,34.4997585273438],[117.02326296875,34.5079274726563],[117.031676054688,34.5201137519532],[117.050230742188,34.5159548164063],[117.07142703125,34.5297585273438],[117.09326296875,34.5379274726563],[117.10142703125,34.5497585273438],[117.137345,34.5538430000001],[117.131651640625,34.5287795234375],[117.157027617188,34.4399221015625],[117.187769804688,34.4293959785157],[117.221793242188,34.4493959785157],[117.242896757813,34.4582900214844],[117.247345,34.473843]]]]}},{"type":"Feature","properties":{"name":"新沂市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.17853640625,34.4514577460937],[118.163819609375,34.3858107734376],[118.182789335938,34.390063703125],[118.202691679688,34.3771047187501],[118.2178528125,34.3990602851563],[118.26326296875,34.4079274726563],[118.312174101563,34.4300954414062],[118.36455203125,34.4138600898438],[118.407345,34.433843],[118.417100859375,34.4212038398438],[118.467301054688,34.4065676093751],[118.5176965625,34.4439308906251],[118.55298953125,34.4294863105469],[118.574136992188,34.4167299628907],[118.598424101563,34.4481996894532],[118.639058867188,34.4379555488281],[118.67170046875,34.4127614570313],[118.66045046875,34.3939601875001],[118.64170046875,34.3794863105469],[118.637345,34.353843],[118.631519804688,34.3496681953125],[118.620084257813,34.3063259101563],[118.597345,34.3108193183594],[118.57404421875,34.3062148261719],[118.556851835938,34.2616384101563],[118.564322539063,34.223843],[118.552471953125,34.1638784003906],[118.522345,34.1698305488281],[118.500054960938,34.1654262519532],[118.503331328125,34.148843],[118.499503203125,34.1294631171876],[118.507345,34.123843],[118.486436796875,34.0995729804688],[118.472174101563,34.0984279609376],[118.385123320313,34.1174147773438],[118.355640898438,34.1197841621094],[118.227354765625,34.0998830390625],[118.189796171875,34.1598439765625],[118.172345,34.1584413886719],[118.152345,34.1600478339844],[118.139703398438,34.1317214179688],[118.067345,34.163843],[118.04271609375,34.2192153144532],[118.031763945313,34.238843],[118.043472929688,34.2598232246094],[118.0419153125,34.2792018867187],[118.0827746875,34.2884841132813],[118.081944609375,34.298843],[118.083150664063,34.313843],[118.081217070313,34.3378627753906],[118.09271609375,34.3584706855469],[118.1048840625,34.3857411933594],[118.071671171875,34.4389553046875],[118.084361601563,34.4498867011719],[118.12291140625,34.4467885566406],[118.1219153125,34.4591664863282],[118.13271609375,34.4684706855469],[118.137345,34.473843],[118.17853640625,34.4514577460937]]]]}},{"type":"Feature","properties":{"name":"云龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.334268828125,34.1773525214844],[117.32029421875,34.1400038886719],[117.272623320313,34.1600258613282],[117.250167265625,34.1549916816407],[117.23142703125,34.1679274726563],[117.227345,34.203843],[117.21970828125,34.2336049628906],[117.18142703125,34.2479274726563],[117.177345,34.263843],[117.23468875,34.2779274726563],[117.28326296875,34.2597585273438],[117.29142703125,34.2479274726563],[117.30326296875,34.2397585273438],[117.31142703125,34.1979274726563],[117.327345,34.193843],[117.334268828125,34.1773525214844]]]]}},{"type":"Feature","properties":{"name":"邳州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.687345,34.343843],[117.690767851563,34.3316506171875],[117.699537382813,34.3404201484375],[117.708829375,34.3782619453126],[117.687174101563,34.4170729804688],[117.71271609375,34.4284706855469],[117.72197390625,34.4350844550781],[117.665465117188,34.4602992988281],[117.6423059375,34.4584377265626],[117.587345,34.463843],[117.605889921875,34.4878688789063],[117.651705351563,34.5006264472656],[117.68170046875,34.5394863105469],[117.70310671875,34.5481996894531],[117.794146757813,34.5216555000001],[117.787174101563,34.568843],[117.7938684375,34.6141408515625],[117.787345,34.653843],[117.797345,34.653843],[117.802799101563,34.6470339179688],[117.822345,34.6494643378907],[117.832345,34.6482216621094],[117.842345,34.6494643378907],[117.852345,34.6482216621094],[117.862345,34.6494643378907],[117.890987578125,34.6459023261719],[117.910079375,34.6697463203125],[117.93095828125,34.6671498847657],[117.954869414063,34.68120628125],[117.982896757813,34.6693959785157],[118.00634890625,34.6401113105469],[118.022042265625,34.6597084785156],[118.093033476563,34.6493764472657],[118.091441679688,34.6365785957032],[118.107345,34.623843],[118.10326296875,34.6079274726563],[118.07326296875,34.5692189765625],[118.12232546875,34.5577175117188],[118.134620390625,34.5604738593751],[118.178267851563,34.5441445136719],[118.15326296875,34.5079274726563],[118.12982546875,34.4917470527344],[118.137345,34.473843],[118.13271609375,34.4684706855469],[118.1219153125,34.4591664863282],[118.12291140625,34.4467885566406],[118.084361601563,34.4498867011719],[118.071671171875,34.4389553046875],[118.1048840625,34.3857411933594],[118.09271609375,34.3584706855469],[118.081217070313,34.3378627753906],[118.083150664063,34.313843],[118.081944609375,34.298843],[118.0827746875,34.2884841132813],[118.0419153125,34.2792018867187],[118.043472929688,34.2598232246094],[118.031763945313,34.238843],[118.04271609375,34.2192153144532],[118.067345,34.163843],[118.033985625,34.147202375],[117.997345,34.1438430000001],[117.932022734375,34.1384133125],[117.92271609375,34.1492153144532],[117.8952746875,34.1728554511719],[117.839093046875,34.1574794746094],[117.821593046875,34.1371645332031],[117.744049101563,34.1138185859375],[117.73271609375,34.1392153144532],[117.697345,34.1438430000001],[117.685909453125,34.1624050117188],[117.661158476563,34.1776552558594],[117.653531523438,34.2200307441407],[117.634171171875,34.2476039863281],[117.645460234375,34.283843],[117.637047148438,34.3108534980469],[117.647345,34.3338430000001],[117.660704375,34.3404836250001],[117.687345,34.343843]]]]}},{"type":"Feature","properties":{"name":"睢宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.537345,34.053843],[117.517345,34.053843],[117.517345,34.0638430000001],[117.537345,34.0638430000001],[117.537345,34.053843]]],[[[117.617345,34.0238430000001],[117.613922148438,34.0360353828125],[117.605152617188,34.0272658515625],[117.608453398438,34.0127370429688],[117.591793242188,33.9993959785156],[117.575777617188,33.9793959785157],[117.542550078125,34.0005275703125],[117.537345,34.053843],[117.55170046875,34.0637538886719],[117.5636340625,34.0956508613282],[117.616822539063,34.1079274726563],[117.665885039063,34.0969289375],[117.697345,34.1438430000001],[117.73271609375,34.1392153144532],[117.744049101563,34.1138185859375],[117.821593046875,34.1371645332031],[117.839093046875,34.1574794746094],[117.8952746875,34.1728554511719],[117.92271609375,34.1492153144532],[117.932022734375,34.1384133125],[117.997345,34.1438430000001],[117.984967070313,34.1130507636719],[118.003077421875,34.0995778632813],[118.01291140625,34.0863588691407],[118.049117460938,34.0925917792969],[118.061373320313,34.0214040351563],[118.023077421875,34.0061867500001],[118.031612578125,33.9881081367188],[118.06763796875,33.9668935371094],[118.087203398438,33.9405886054688],[118.10291140625,33.9378847480469],[118.117955351563,33.9581081367188],[118.133077421875,33.9395778632812],[118.137345,33.923843],[118.141793242188,33.9082900214844],[118.162896757813,33.8793959785156],[118.171793242188,33.8482900214844],[118.183258085938,33.828783185547],[118.161676054688,33.7992348457031],[118.167345,33.7538430000001],[118.070850859375,33.7633315253906],[117.9959778125,33.7470009589845],[117.961099882813,33.7598085761719],[117.94271609375,33.7384706855469],[117.891715117188,33.7268849921875],[117.79646609375,33.7345375800782],[117.742452421875,33.7147011542969],[117.717345,33.743843],[117.738175078125,33.7605226875],[117.75297,33.8788173652344],[117.751197539063,33.8930544257813],[117.702569609375,33.8870058417969],[117.659185820313,33.9584365058594],[117.663248320313,33.9911074042969],[117.641793242188,34.0082900214844],[117.632896757813,34.0193959785157],[117.617345,34.0238430000001]]]]}},{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.32298953125,34.3594863105469],[117.352838164063,34.3095766425782],[117.371978789063,34.298032453125],[117.407345,34.303843],[117.401705351563,34.2790041328125],[117.403931914063,34.2610671210937],[117.351793242188,34.2293959785156],[117.342896757813,34.2182900214844],[117.331793242188,34.2093959785157],[117.327345,34.193843],[117.31142703125,34.1979274726563],[117.30326296875,34.2397585273438],[117.29142703125,34.2479274726563],[117.28326296875,34.2597585273438],[117.23468875,34.2779274726563],[117.177345,34.263843],[117.173985625,34.2704836250001],[117.1341028125,34.2772023750001],[117.12062625,34.25056175],[117.107345,34.243843],[117.10326296875,34.2497585273438],[117.09107546875,34.2581728339844],[117.093468046875,34.268843],[117.091221953125,34.278843],[117.094215117188,34.2921938300782],[117.065250273438,34.3121938300781],[117.075089140625,34.3560744453125],[117.112345,34.3477223945312],[117.122345,34.3499636054688],[117.142345,34.3454799628907],[117.197652617188,34.3578798652345],[117.21142703125,34.3379274726563],[117.256392851563,34.3263881660156],[117.289644804688,34.3338430000001],[117.297345,34.3638430000001],[117.32298953125,34.3594863105469]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"钟楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.917345,31.753843],[119.891998320313,31.7478542304688],[119.853077421875,31.7734767890625],[119.867345,31.833843],[119.873985625,31.8372023750001],[119.881422148438,31.851899640625],[119.91062625,31.83712425],[119.925201445313,31.8083132148438],[119.947345,31.803843],[119.959268828125,31.7798561835938],[119.920704375,31.760483625],[119.917345,31.753843]]]]}},{"type":"Feature","properties":{"name":"溧阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.337345,31.6638430000001],[119.337345,31.673843],[119.350152617188,31.668843],[119.337345,31.6638430000001]]],[[[119.337345,31.673843],[119.324537382813,31.668843],[119.337345,31.6638430000001],[119.344014921875,31.640512921875],[119.398453398438,31.6249489570313],[119.425592070313,31.5910549140625],[119.49437625,31.5754323554687],[119.567345,31.5663552070313],[119.601890898438,31.5706520820313],[119.607345,31.563843],[119.581304960938,31.5158693671875],[119.5619153125,31.4991677070313],[119.563150664063,31.483843],[119.5619153125,31.4684963203125],[119.59197390625,31.4550856757813],[119.57271609375,31.43847190625],[119.55197390625,31.42921409375],[119.54271609375,31.4184719062501],[119.5319153125,31.4091677070313],[119.533316679688,31.3917702460938],[119.519893828125,31.3177443671875],[119.53197390625,31.23847190625],[119.551773710938,31.2029811835937],[119.527345,31.1638430000001],[119.450250273438,31.1667482734375],[119.428121367188,31.186606671875],[119.412345,31.1752419257813],[119.402345,31.1824440742188],[119.390709257813,31.1740627265625],[119.387345,31.193843],[119.399537382813,31.1972658515625],[119.390767851563,31.2060353828125],[119.387345,31.193843],[119.370704375,31.197202375],[119.357345,31.2038430000001],[119.36170046875,31.23948753125],[119.373248320313,31.2688600898438],[119.356910429688,31.30819846875],[119.33298953125,31.26819846875],[119.268345976563,31.2572170234376],[119.252345,31.2595827460938],[119.23478640625,31.25698753125],[119.190924101563,31.2742287421875],[119.19312625,31.28913596875],[119.187345,31.303843],[119.19142703125,31.3197585273438],[119.209127226563,31.3618971992187],[119.17142703125,31.3879274726563],[119.161734648438,31.4375856757813],[119.137345,31.443843],[119.14142703125,31.4497585273437],[119.150206328125,31.4889138007813],[119.184815703125,31.5128102851563],[119.177193632813,31.5468312812501],[119.214815703125,31.5728102851563],[119.21115359375,31.589165265625],[119.227345,31.6238430000001],[119.26298953125,31.6381984687501],[119.298775664063,31.6597878242188],[119.317345,31.683843],[119.337345,31.683843],[119.337345,31.673843]]]]}},{"type":"Feature","properties":{"name":"金坛市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.337345,31.6638430000001],[119.324537382813,31.668843],[119.337345,31.673843],[119.337345,31.6638430000001]]],[[[119.337345,31.6638430000001],[119.350152617188,31.668843],[119.337345,31.673843],[119.337345,31.683843],[119.317345,31.683843],[119.32302859375,31.729341046875],[119.301793242188,31.7382888007813],[119.292896757813,31.7542653632813],[119.313013945313,31.7884841132813],[119.309625273438,31.8157106757813],[119.322896757813,31.8382888007813],[119.327345,31.863843],[119.35326296875,31.8597585273438],[119.38580203125,31.8385671210938],[119.427345,31.833843],[119.430767851563,31.8216506171875],[119.439537382813,31.8304201484376],[119.427345,31.833843],[119.417345,31.873843],[119.453043242188,31.8824440742188],[119.503780546875,31.8502346015625],[119.555303984375,31.860415265625],[119.585855742188,31.8486330390625],[119.605928984375,31.7965871406251],[119.631724882813,31.8016847968751],[119.64802859375,31.77894065625],[119.683170195313,31.7696681953125],[119.705113554688,31.7390529609375],[119.737345,31.7338430000001],[119.7507825,31.7018556953126],[119.727345,31.6966017890625],[119.694610625,31.7039406562501],[119.690103789063,31.683843],[119.6960559375,31.657290265625],[119.667345,31.613843],[119.643990507813,31.6083425117188],[119.630699492188,31.5693434882813],[119.607345,31.563843],[119.601890898438,31.5706520820313],[119.567345,31.5663552070313],[119.49437625,31.5754323554687],[119.425592070313,31.5910549140625],[119.398453398438,31.6249489570313],[119.344014921875,31.640512921875],[119.337345,31.6638430000001]]]]}},{"type":"Feature","properties":{"name":"戚墅堰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.070557890625,31.7818044257813],[120.074586210938,31.763843],[120.068980742188,31.7388430000001],[120.074386015625,31.7147463203125],[120.037345,31.723843],[120.037345,31.7338430000001],[120.027345,31.7338430000001],[120.023804960938,31.7403029609375],[119.9938684375,31.7567116523438],[120.027345,31.7738430000001],[120.042066679688,31.7800270820313],[120.052345,31.7777223945313],[120.070557890625,31.7818044257813]]]]}},{"type":"Feature","properties":{"name":"天宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.027345,31.7338430000001],[120.037345,31.7338430000001],[120.037345,31.723843],[120.027345,31.723843],[120.027345,31.7338430000001]]],[[[120.027345,31.7338430000001],[119.971793242188,31.7382888007813],[119.917345,31.753843],[119.920704375,31.760483625],[119.959268828125,31.7798561835938],[119.947345,31.803843],[119.953336210938,31.8156838203125],[119.977345,31.8039601875001],[120.003829375,31.8168923164063],[120.007345,31.823843],[120.022345,31.8312990546876],[120.037345,31.823843],[120.030704375,31.810483625],[120.027345,31.7738430000001],[119.9938684375,31.7567116523438],[120.023804960938,31.7403029609375],[120.027345,31.7338430000001]]]]}},{"type":"Feature","properties":{"name":"武进区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.853077421875,31.7734767890625],[119.891998320313,31.7478542304688],[119.917345,31.753843],[119.971793242188,31.7382888007813],[120.027345,31.7338430000001],[120.027345,31.723843],[120.037345,31.723843],[120.074386015625,31.7147463203125],[120.068980742188,31.7388430000001],[120.074586210938,31.763843],[120.070557890625,31.7818044257813],[120.052345,31.7777223945313],[120.042066679688,31.7800270820313],[120.027345,31.7738430000001],[120.030704375,31.810483625],[120.037345,31.823843],[120.074053984375,31.8471974921876],[120.181793242188,31.8779616523438],[120.172896757813,31.8482888007813],[120.161500273438,31.8288991523438],[120.197345,31.753843],[120.152764921875,31.7635671210938],[120.14025515625,31.6949636054688],[120.12197390625,31.6792140937501],[120.11271609375,31.6384719062501],[120.051397734375,31.5856423164063],[120.053492460938,31.5595803046876],[120.097345,31.5538430000001],[120.101246367188,31.5177468085938],[120.117393828125,31.5074098945313],[120.10084109375,31.4603493476563],[120.056514921875,31.4447585273438],[120.033443632813,31.3921388984375],[120.044019804688,31.3590822578126],[120.093443632813,31.3499391914063],[120.097345,31.333843],[120.0462121875,31.3425295234376],[120.01298953125,31.3773244453125],[120.03298953125,31.42819846875],[120.04170046875,31.4918288398437],[119.99673953125,31.51022971875],[119.976202421875,31.5071974921876],[119.96298953125,31.5394875312501],[119.926124296875,31.5545729804687],[119.882345,31.5481032539063],[119.87205203125,31.54962425],[119.83009890625,31.5331325507813],[119.80298953125,31.54948753125],[119.73369265625,31.5612575507813],[119.711773710938,31.5580202460938],[119.70298953125,31.5794875312501],[119.69170046875,31.58819846875],[119.68298953125,31.59948753125],[119.67170046875,31.60819846875],[119.667345,31.613843],[119.6960559375,31.657290265625],[119.690103789063,31.683843],[119.694610625,31.7039406562501],[119.727345,31.6966017890625],[119.7507825,31.7018556953126],[119.737345,31.7338430000001],[119.728800078125,31.7555763984375],[119.75298953125,31.7881984687501],[119.76170046875,31.80948753125],[119.811261015625,31.8477419257812],[119.75298953125,31.8600368476562],[119.762574492188,31.8924440742188],[119.777345,31.903843],[119.78326296875,31.8997585273438],[119.79142703125,31.8879274726563],[119.841925078125,31.8749684882813],[119.85142703125,31.8379274726563],[119.867345,31.833843],[119.853077421875,31.7734767890625]]]]}},{"type":"Feature","properties":{"name":"新北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.007862578125,31.874204328125],[119.990811796875,31.849301984375],[119.995909453125,31.8311647773437],[120.007345,31.823843],[120.003829375,31.8168923164063],[119.977345,31.8039601875001],[119.953336210938,31.8156838203125],[119.947345,31.803843],[119.925201445313,31.8083132148438],[119.91062625,31.83712425],[119.881422148438,31.851899640625],[119.873985625,31.8372023750001],[119.867345,31.833843],[119.85142703125,31.8379274726563],[119.841925078125,31.8749684882813],[119.79142703125,31.8879274726563],[119.78326296875,31.8997585273438],[119.777345,31.903843],[119.78345828125,31.92921409375],[119.763365507813,31.9608596015625],[119.786568632813,32.0488088203125],[119.842633085938,32.059887921875],[119.871519804688,32.0480178046875],[119.897345,32.0438430000001],[119.903287382813,32.0088576484375],[119.967345,32.0038430000001],[119.99142703125,31.9879274726563],[120.017345,31.973843],[120.017345,31.9638430000001],[120.003580351563,31.9550319648438],[120.01396609375,31.9180812812501],[119.998345976563,31.9080812812501],[120.007862578125,31.874204328125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"常熟市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.746070585938,31.832778546875],[120.782066679688,31.8176589179688],[120.798297148438,31.8212966132813],[120.848541289063,31.8057228828125],[120.887345,31.823843],[120.892535429688,31.8190334296875],[120.920123320313,31.7892604804688],[121.027345,31.783843],[121.063985625,31.780483625],[121.097345,31.763843],[121.05197390625,31.70921409375],[121.041715117188,31.6862209296876],[121.015738554688,31.6638430000001],[121.051363554688,31.6331496406251],[121.002974882813,31.5914650703126],[120.99271609375,31.5684719062501],[120.975738554688,31.5538430000001],[120.998502226563,31.5342287421875],[120.987345,31.5038430000001],[120.971886015625,31.496313703125],[120.932862578125,31.5313210273438],[120.917345,31.5243508125],[120.88873171875,31.5372072578125],[120.8517590625,31.5054592109375],[120.843892851563,31.5203932929688],[120.827345,31.523843],[120.821812773438,31.5298122382813],[120.782877226563,31.5282692695313],[120.762511015625,31.5390480781251],[120.739937773438,31.5381520820313],[120.668746367188,31.4891628242188],[120.612994414063,31.5493288398438],[120.597345,31.5438430000001],[120.59056765625,31.5837526679688],[120.551871367188,31.5780348945313],[120.53298953125,31.5963088203125],[120.593170195313,31.6182643867188],[120.588912382813,31.6470607734375],[120.561519804688,31.6582717109375],[120.565416289063,31.6846364570313],[120.595299101563,31.7077028632813],[120.58170046875,31.71819846875],[120.577345,31.723843],[120.577345,31.7338430000001],[120.587345,31.7338430000001],[120.643194609375,31.7201247382813],[120.68142703125,31.7497585273438],[120.716734648438,31.7588185859375],[120.724586210938,31.793843],[120.71970828125,31.8156130195313],[120.746070585938,31.832778546875]]]]}},{"type":"Feature","properties":{"name":"虎丘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.552545195313,31.4087331367188],[120.547345,31.373843],[120.525733671875,31.3629103828126],[120.553985625,31.3304836250001],[120.5840246875,31.2705812812501],[120.597345,31.263843],[120.579478789063,31.21948753125],[120.56170046875,31.2481984687501],[120.55298953125,31.2694875312501],[120.53170046875,31.27819846875],[120.52298953125,31.28948753125],[120.48170046875,31.2981984687501],[120.466851835938,31.3174391914063],[120.451954375,31.3196388984375],[120.425289335938,31.3035524726563],[120.406265898438,31.3281984687501],[120.36170046875,31.31948753125],[120.293053007813,31.28948753125],[120.26170046875,31.2981984687501],[120.207345,31.333843],[120.214088164063,31.347173078125],[120.327345,31.403843],[120.432476835938,31.3986354804688],[120.474830351563,31.4097341132812],[120.511480742188,31.4082839179688],[120.552003203125,31.422485578125],[120.552545195313,31.4087331367188]]]]}},{"type":"Feature","properties":{"name":"昆山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.88873171875,31.5372072578125],[120.917345,31.5243508125],[120.932862578125,31.5313210273438],[120.971886015625,31.496313703125],[120.987345,31.5038430000001],[121.013463164063,31.4895070625],[121.0072278125,31.4579567695313],[121.023267851563,31.4355763984376],[121.067345,31.4268679023438],[121.08310671875,31.4299806953125],[121.094522734375,31.3730324531251],[121.107345,31.363843],[121.110704375,31.3472023750001],[121.129185820313,31.3378517890625],[121.117486601563,31.3138893867188],[121.143985625,31.3004836250001],[121.147345,31.273843],[121.14170046875,31.27819846875],[121.081866484375,31.289702375],[121.07298953125,31.27819846875],[121.06170046875,31.2694875312501],[121.05298953125,31.23808128125],[121.07500125,31.162583234375],[120.9976575,31.1343630195313],[120.942345,31.1425368476563],[120.902345,31.136626203125],[120.8819153125,31.1396462226562],[120.847345,31.113843],[120.804195585938,31.1357033515625],[120.816954375,31.1641066718751],[120.807345,31.183843],[120.811158476563,31.1900295234376],[120.846285429688,31.2091530585938],[120.898663359375,31.218579328125],[120.881158476563,31.2576564765626],[120.873531523438,31.2900295234375],[120.861158476563,31.3076564765625],[120.841900664063,31.3648732734375],[120.821158476563,31.3776564765626],[120.813531523438,31.4030080390625],[120.827345,31.4338430000001],[120.824078398438,31.4705739570313],[120.809503203125,31.4884767890625],[120.814991484375,31.498843],[120.804151640625,31.51931175],[120.827345,31.523843],[120.843892851563,31.5203932929688],[120.8517590625,31.5054592109375],[120.88873171875,31.5372072578125]]]]}},{"type":"Feature","properties":{"name":"太仓市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.297345,31.493843],[121.258072539063,31.4841970039063],[121.231676054688,31.4901149726563],[121.22326296875,31.4779274726562],[121.19142703125,31.4697585273438],[121.17326296875,31.4579274726563],[121.133829375,31.4431740546876],[121.15361453125,31.4295143867187],[121.151221953125,31.418843],[121.153468046875,31.408843],[121.149283476563,31.390180890625],[121.12142703125,31.3797585273438],[121.11326296875,31.3679274726563],[121.107345,31.363843],[121.094522734375,31.3730324531251],[121.08310671875,31.4299806953125],[121.067345,31.4268679023438],[121.023267851563,31.4355763984376],[121.0072278125,31.4579567695313],[121.013463164063,31.4895070625],[120.987345,31.5038430000001],[120.998502226563,31.5342287421875],[120.975738554688,31.5538430000001],[120.99271609375,31.5684719062501],[121.002974882813,31.5914650703126],[121.051363554688,31.6331496406251],[121.015738554688,31.6638430000001],[121.041715117188,31.6862209296876],[121.05197390625,31.70921409375],[121.097345,31.763843],[121.107345,31.763843],[121.119918242188,31.7456349921876],[121.23326296875,31.6697585273438],[121.33142703125,31.5779274726563],[121.37326296875,31.5497585273438],[121.377345,31.5438430000001],[121.37267703125,31.5370827460938],[121.334176054688,31.5120119453125],[121.30142703125,31.4997585273438],[121.297345,31.493843]]]]}},{"type":"Feature","properties":{"name":"吴江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.65271609375,31.2192140937501],[120.662345,31.1976369453125],[120.700103789063,31.2006716132813],[120.723409453125,31.1876686835938],[120.758565703125,31.2284719062501],[120.772769804688,31.2091408515625],[120.7716028125,31.19460471875],[120.807345,31.183843],[120.816954375,31.1641066718751],[120.804195585938,31.1357033515625],[120.847345,31.113843],[120.85170046875,31.10819846875],[120.895064726563,31.0822634101563],[120.8916028125,31.0588088203125],[120.897345,31.023843],[120.891612578125,31.0195778632813],[120.883077421875,31.0081081367188],[120.864371367188,30.9941896796876],[120.785181914063,31.0078224921875],[120.763077421875,30.9781081367188],[120.751612578125,30.9695778632812],[120.747345,30.963843],[120.706944609375,30.9732033515626],[120.67298953125,30.9649245429688],[120.710094023438,30.93628440625],[120.701300078125,30.8767800117188],[120.672857695313,30.8809841132813],[120.652857695313,30.85507346875],[120.622203398438,30.8596022773438],[120.567261992188,30.8468727851563],[120.527345,30.793843],[120.510787382813,30.769858625],[120.487345,30.763843],[120.463531523438,30.8100295234376],[120.450538359375,30.8180373359375],[120.456202421875,30.8362282539062],[120.44064578125,30.8583864570313],[120.44404421875,30.8692995429688],[120.428487578125,30.8914577460938],[120.436475859375,30.9171071601562],[120.425855742188,30.9276564765625],[120.408389921875,30.89931175],[120.36341921875,30.8839846015626],[120.357345,30.8938430000001],[120.357345,30.9438430000001],[120.367345,30.9438430000001],[120.367345,30.953843],[120.426344023438,30.9878566718751],[120.5084778125,31.0831935859376],[120.558272734375,31.1054128242188],[120.59197390625,31.15921409375],[120.612154570313,31.1766017890626],[120.630694609375,31.2381862617188],[120.65271609375,31.2192140937501]]]]}},{"type":"Feature","properties":{"name":"相城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.612994414063,31.5493288398438],[120.668746367188,31.4891628242188],[120.739937773438,31.5381520820313],[120.762511015625,31.5390480781251],[120.782877226563,31.5282692695313],[120.821812773438,31.5298122382813],[120.827345,31.523843],[120.804151640625,31.51931175],[120.814991484375,31.498843],[120.809503203125,31.4884767890625],[120.824078398438,31.4705739570313],[120.827345,31.4338430000001],[120.77170046875,31.42948753125],[120.740181914063,31.410473859375],[120.72298953125,31.38819846875],[120.681168242188,31.3765529609375],[120.637345,31.343843],[120.59427859375,31.3607741523438],[120.547345,31.373843],[120.552545195313,31.4087331367188],[120.552003203125,31.422485578125],[120.511480742188,31.4082839179688],[120.474830351563,31.4097341132812],[120.432476835938,31.3986354804688],[120.327345,31.403843],[120.337047148438,31.4155251289063],[120.420245390625,31.4516042304687],[120.461954375,31.4473537421875],[120.467345,31.453843],[120.49298953125,31.45819846875],[120.544615507813,31.4784938789063],[120.541607695313,31.498843],[120.543604765625,31.5123513007813],[120.572916289063,31.5080202460938],[120.581773710938,31.5296657539063],[120.592935820313,31.5280153632813],[120.597345,31.5438430000001],[120.612994414063,31.5493288398438]]]]}},{"type":"Feature","properties":{"name":"张家港市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.595675078125,32.008774640625],[120.647345,32.0038430000001],[120.67142703125,32.0097585273438],[120.72326296875,32.0179274726563],[120.737345,32.023843],[120.773985625,32.0204836250001],[120.78406375,32.00056175],[120.797345,31.993843],[120.850704375,31.887202375],[120.857345,31.883843],[120.863472929688,31.8599684882813],[120.887345,31.823843],[120.848541289063,31.8057228828125],[120.798297148438,31.8212966132813],[120.782066679688,31.8176589179688],[120.746070585938,31.832778546875],[120.71970828125,31.8156130195313],[120.724586210938,31.793843],[120.716734648438,31.7588185859375],[120.68142703125,31.7497585273438],[120.643194609375,31.7201247382813],[120.587345,31.7338430000001],[120.5957434375,31.753843],[120.57900515625,31.7936989570313],[120.552345,31.7877223945313],[120.518204375,31.795376203125],[120.526158476563,31.83085471875],[120.50142703125,31.8479274726563],[120.489176054688,31.8656740546876],[120.455357695313,31.8890236640625],[120.380426054688,31.9152883125],[120.383565703125,31.9292897773438],[120.37142703125,31.9479274726563],[120.367345,31.993843],[120.422769804688,32.0352101875],[120.488975859375,32.04499534375],[120.53170046875,32.02819846875],[120.557345,32.023843],[120.595675078125,32.008774640625]]]]}},{"type":"Feature","properties":{"name":"吴中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.873531523438,31.2900295234375],[120.881158476563,31.2576564765626],[120.898663359375,31.218579328125],[120.846285429688,31.2091530585938],[120.811158476563,31.1900295234376],[120.807345,31.183843],[120.7716028125,31.19460471875],[120.772769804688,31.2091408515625],[120.758565703125,31.2284719062501],[120.723409453125,31.1876686835938],[120.700103789063,31.2006716132813],[120.662345,31.1976369453125],[120.65271609375,31.2192140937501],[120.630694609375,31.2381862617188],[120.612154570313,31.1766017890626],[120.59197390625,31.15921409375],[120.558272734375,31.1054128242188],[120.5084778125,31.0831935859376],[120.426344023438,30.9878566718751],[120.367345,30.953843],[120.357345,30.953843],[120.357345,30.9438430000001],[120.244307890625,30.9299782539063],[120.151959257813,30.9393923164063],[120.097345,30.963843],[120.08427859375,30.9807741523438],[120.051690703125,31.005923078125],[120.000133085938,31.02702659375],[119.943360625,31.1022438789063],[119.93298953125,31.13948753125],[119.92170046875,31.15819846875],[119.917345,31.173843],[119.933443632813,31.1925295234375],[120.010181914063,31.2560060859375],[120.09271609375,31.27847190625],[120.127345,31.293843],[120.186846953125,31.3276711250001],[120.207345,31.333843],[120.26170046875,31.2981984687501],[120.293053007813,31.28948753125],[120.36170046875,31.31948753125],[120.406265898438,31.3281984687501],[120.425289335938,31.3035524726563],[120.451954375,31.3196388984375],[120.466851835938,31.3174391914063],[120.48170046875,31.2981984687501],[120.52298953125,31.28948753125],[120.53170046875,31.27819846875],[120.55298953125,31.2694875312501],[120.56170046875,31.2481984687501],[120.579478789063,31.21948753125],[120.597345,31.263843],[120.622056914063,31.2792678046875],[120.651954375,31.2768654609375],[120.637345,31.343843],[120.681168242188,31.3765529609375],[120.72298953125,31.38819846875],[120.740181914063,31.410473859375],[120.77170046875,31.42948753125],[120.827345,31.4338430000001],[120.813531523438,31.4030080390625],[120.821158476563,31.3776564765626],[120.841900664063,31.3648732734375],[120.861158476563,31.3076564765625],[120.873531523438,31.2900295234375]]]]}},{"type":"Feature","properties":{"name":"姑苏区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.637345,31.343843],[120.651954375,31.2768654609375],[120.622056914063,31.2792678046875],[120.597345,31.263843],[120.5840246875,31.2705812812501],[120.553985625,31.3304836250001],[120.525733671875,31.3629103828126],[120.547345,31.373843],[120.59427859375,31.3607741523438],[120.637345,31.343843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"崇川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.86224734375,31.8889430976563],[120.857345,31.883843],[120.850704375,31.887202375],[120.797345,31.993843],[120.826920195313,32.0321584296875],[120.90170046875,32.04948753125],[120.907345,32.053843],[120.91224734375,32.0487429023438],[120.971607695313,32.037153546875],[120.942042265625,32.0087477851563],[120.942652617188,31.978843],[120.916539335938,31.9661745429688],[120.881905546875,31.9078298164063],[120.86224734375,31.8889430976563]]]]}},{"type":"Feature","properties":{"name":"港闸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.873013945313,32.1092360664063],[120.87021609375,32.0867116523438],[120.911353789063,32.0918288398438],[120.912984648438,32.0786818671876],[120.907345,32.053843],[120.90170046875,32.04948753125],[120.826920195313,32.0321584296875],[120.797345,31.993843],[120.78406375,32.00056175],[120.773985625,32.0204836250001],[120.737345,32.023843],[120.744381132813,32.0642653632813],[120.789049101563,32.1378102851562],[120.846886015625,32.145005109375],[120.873013945313,32.1092360664063]]]]}},{"type":"Feature","properties":{"name":"海安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.697345,32.473843],[120.707345,32.473843],[120.707345,32.4638430000001],[120.697345,32.4638430000001],[120.697345,32.473843]]],[[[120.617345,32.6138430000001],[120.605152617188,32.6104201484375],[120.613922148438,32.6016506171876],[120.642628203125,32.6091237617187],[120.652164335938,32.5782375312501],[120.695435820313,32.6084645820313],[120.73244265625,32.5883571601563],[120.750494414063,32.6085622382813],[120.782628203125,32.5991237617188],[120.797003203125,32.583032453125],[120.8526575,32.6085768867188],[120.851519804688,32.6277126289063],[120.897345,32.633843],[120.897345,32.6138430000001],[120.89298953125,32.60819846875],[120.864605742188,32.5965822578125],[120.85298953125,32.56819846875],[120.81170046875,32.55948753125],[120.802857695313,32.5480275703125],[120.789967070313,32.5499343085938],[120.79463015625,32.5183742500001],[120.703248320313,32.508579328125],[120.697345,32.473843],[120.681793242188,32.4782888007813],[120.662345,32.48972190625],[120.630601835938,32.471059796875],[120.582628203125,32.4894997382813],[120.567345,32.4876003242188],[120.521163359375,32.4933425117188],[120.52431765625,32.4679763007813],[120.497345,32.4713307929687],[120.460738554688,32.4667775703125],[120.462965117188,32.448843],[120.461378203125,32.4360768867188],[120.421793242188,32.4193971992188],[120.408453398438,32.4027370429688],[120.391666289063,32.3892971015625],[120.3941028125,32.369692609375],[120.347345,32.363843],[120.343687773438,32.3819655585938],[120.313985625,32.3672023750001],[120.297345,32.363843],[120.29326296875,32.3697585273438],[120.28107546875,32.3781716132813],[120.284654570313,32.39413596875],[120.256510039063,32.5078054023438],[120.264586210938,32.5438430000001],[120.253199492188,32.5946388984375],[120.222345,32.5877223945313],[120.205933867188,32.5914015937501],[120.197345,32.603843],[120.2040246875,32.6091921210938],[120.223004179688,32.658559796875],[120.220650664063,32.67745628125],[120.282896757813,32.6882888007813],[120.304581328125,32.7010353828125],[120.381890898438,32.7106520820313],[120.391793242188,32.6982888007813],[120.420362578125,32.6754103828125],[120.43834109375,32.6327468085938],[120.497345,32.6400856757813],[120.5622278125,32.6320168281251],[120.598741484375,32.653481671875],[120.612896757813,32.6293971992188],[120.617345,32.6138430000001]]]]}},{"type":"Feature","properties":{"name":"海门市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.342061796875,32.0985622382813],[121.419713164063,32.0891237617188],[121.427345,32.1138430000001],[121.527345,32.1138430000001],[121.527345,32.103843],[121.514454375,31.9774489570313],[121.494400664063,31.9108425117188],[121.4639465625,31.8678908515625],[121.45271609375,31.81847190625],[121.44197390625,31.7892140937501],[121.437345,31.7738430000001],[121.421793242188,31.7782888007813],[121.387784453125,31.8342800117187],[121.321783476563,31.87437034375],[121.27218875,31.8682009101562],[121.192081328125,31.8336208320313],[121.11181765625,31.7694264960937],[121.107345,31.763843],[121.097345,31.763843],[121.063985625,31.780483625],[121.027345,31.783843],[121.039556914063,31.823384015625],[121.079620390625,31.8417726875001],[121.070845976563,31.9889626289063],[121.177906523438,32.0032814765625],[121.192061796875,32.0191237617188],[121.207906523438,32.0332814765626],[121.239595976563,32.0687453437501],[121.252061796875,32.1091237617188],[121.305260039063,32.1185622382813],[121.342061796875,32.0985622382813]]]]}},{"type":"Feature","properties":{"name":"启东市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.922154570313,31.7469924140626],[121.912535429688,31.7086525703126],[121.902154570313,31.6990334296876],[121.892535429688,31.6786525703125],[121.882154570313,31.6590334296876],[121.877345,31.633843],[121.783448515625,31.6548537421875],[121.642564726563,31.699262921875],[121.632105742188,31.698423078125],[121.602584257813,31.709262921875],[121.592086210938,31.7084206367188],[121.50271609375,31.74921409375],[121.443096953125,31.7671633125001],[121.437345,31.7738430000001],[121.44197390625,31.7892140937501],[121.45271609375,31.81847190625],[121.4639465625,31.8678908515625],[121.494400664063,31.9108425117188],[121.514454375,31.9774489570313],[121.527345,32.103843],[121.55834109375,32.09792503125],[121.715357695313,32.036782453125],[121.740323515625,32.0098342109376],[121.779849882813,31.9843093085938],[121.826964140625,31.933462140625],[121.846202421875,31.9156374335938],[121.862535429688,31.8690334296875],[121.872154570313,31.8286525703125],[121.922154570313,31.7469924140626]]]]}},{"type":"Feature","properties":{"name":"如东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.937345,32.593843],[120.940767851563,32.6060353828125],[120.949537382813,32.5972658515626],[120.937345,32.593843]]],[[[120.937345,32.593843],[120.94197390625,32.57847190625],[120.97271609375,32.5592140937501],[120.990728789063,32.5383107734375],[121.010787382813,32.5399221015626],[121.04197390625,32.52847190625],[121.113638945313,32.5121901679688],[121.1530871875,32.4945876289063],[121.18197390625,32.4784719062501],[121.32029421875,32.429438703125],[121.397261992188,32.3850612617188],[121.388912382813,32.281108625],[121.411734648438,32.2614455390626],[121.41353640625,32.2389870429688],[121.37896609375,32.2173317695312],[121.367345,32.203843],[121.26591921875,32.1938698554688],[121.096383085938,32.2168508125001],[121.044039335938,32.2360744453125],[121.032667265625,32.2492702460938],[121.022066679688,32.2484181953125],[121.002471953125,32.2593508125001],[120.9580090625,32.24718284375],[120.922345,32.2500490546875],[120.892345,32.2476369453125],[120.872345,32.2492458320313],[120.862174101563,32.2484279609375],[120.837345,32.253843],[120.831158476563,32.2576564765625],[120.8198840625,32.2759474921875],[120.828873320313,32.3048024726562],[120.786300078125,32.31931175],[120.769718046875,32.3462184882813],[120.741666289063,32.3635036445313],[120.733531523438,32.4300295234375],[120.711158476563,32.4376564765626],[120.707345,32.4638430000001],[120.707345,32.473843],[120.697345,32.473843],[120.703248320313,32.508579328125],[120.79463015625,32.5183742500001],[120.789967070313,32.5499343085938],[120.802857695313,32.5480275703125],[120.81170046875,32.55948753125],[120.85298953125,32.56819846875],[120.864605742188,32.5965822578125],[120.89298953125,32.60819846875],[120.897345,32.6138430000001],[120.91326296875,32.6097585273438],[120.937345,32.593843]]]]}},{"type":"Feature","properties":{"name":"如皋市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.521163359375,32.4933425117188],[120.567345,32.4876003242188],[120.582628203125,32.4894997382813],[120.630601835938,32.471059796875],[120.662345,32.48972190625],[120.681793242188,32.4782888007813],[120.697345,32.473843],[120.697345,32.4638430000001],[120.707345,32.4638430000001],[120.711158476563,32.4376564765626],[120.733531523438,32.4300295234375],[120.741666289063,32.3635036445313],[120.769718046875,32.3462184882813],[120.786300078125,32.31931175],[120.828873320313,32.3048024726562],[120.8198840625,32.2759474921875],[120.831158476563,32.2576564765625],[120.837345,32.253843],[120.82435671875,32.2350295234375],[120.790025664063,32.2427272773438],[120.773116484375,32.1975490546876],[120.75771609375,32.2010012031251],[120.735513945313,32.1856740546875],[120.72326296875,32.1679274726563],[120.698980742188,32.1588430000001],[120.705709257813,32.128843],[120.68142703125,32.1197585273438],[120.67326296875,32.0979274726563],[120.65142703125,32.0897585273438],[120.64326296875,32.0679274726563],[120.62326296875,32.0541188789062],[120.63142703125,32.0279274726563],[120.647345,32.0038430000001],[120.595675078125,32.008774640625],[120.557345,32.023843],[120.54271609375,32.04921409375],[120.52123171875,32.0677272773438],[120.50271609375,32.08921409375],[120.4420715625,32.1241799140626],[120.347345,32.133843],[120.338336210938,32.1735134101563],[120.367042265625,32.222348859375],[120.34654421875,32.2572145820313],[120.353590117188,32.3138552070313],[120.347345,32.363843],[120.3941028125,32.369692609375],[120.391666289063,32.3892971015625],[120.408453398438,32.4027370429688],[120.421793242188,32.4193971992188],[120.461378203125,32.4360768867188],[120.462965117188,32.448843],[120.460738554688,32.4667775703125],[120.497345,32.4713307929687],[120.52431765625,32.4679763007813],[120.521163359375,32.4933425117188]]]]}},{"type":"Feature","properties":{"name":"通州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.002471953125,32.2593508125001],[121.022066679688,32.2484181953125],[121.032667265625,32.2492702460938],[121.044039335938,32.2360744453125],[121.096383085938,32.2168508125001],[121.26591921875,32.1938698554688],[121.367345,32.203843],[121.380704375,32.1772023750001],[121.423985625,32.1704836250001],[121.427345,32.1138430000001],[121.419713164063,32.0891237617188],[121.342061796875,32.0985622382813],[121.305260039063,32.1185622382813],[121.252061796875,32.1091237617188],[121.239595976563,32.0687453437501],[121.207906523438,32.0332814765626],[121.192061796875,32.0191237617188],[121.177906523438,32.0032814765625],[121.070845976563,31.9889626289063],[121.079620390625,31.8417726875001],[121.039556914063,31.823384015625],[121.027345,31.783843],[120.920123320313,31.7892604804688],[120.892535429688,31.8190334296875],[120.887345,31.823843],[120.863472929688,31.8599684882813],[120.857345,31.883843],[120.86224734375,31.8889430976563],[120.881905546875,31.9078298164063],[120.916539335938,31.9661745429688],[120.942652617188,31.978843],[120.942042265625,32.0087477851563],[120.971607695313,32.037153546875],[120.91224734375,32.0487429023438],[120.907345,32.053843],[120.912984648438,32.0786818671876],[120.911353789063,32.0918288398438],[120.87021609375,32.0867116523438],[120.873013945313,32.1092360664063],[120.846886015625,32.145005109375],[120.789049101563,32.1378102851562],[120.744381132813,32.0642653632813],[120.737345,32.023843],[120.72326296875,32.0179274726563],[120.67142703125,32.0097585273438],[120.647345,32.0038430000001],[120.63142703125,32.0279274726563],[120.62326296875,32.0541188789062],[120.64326296875,32.0679274726563],[120.65142703125,32.0897585273438],[120.67326296875,32.0979274726563],[120.68142703125,32.1197585273438],[120.705709257813,32.128843],[120.698980742188,32.1588430000001],[120.72326296875,32.1679274726563],[120.735513945313,32.1856740546875],[120.75771609375,32.2010012031251],[120.773116484375,32.1975490546876],[120.790025664063,32.2427272773438],[120.82435671875,32.2350295234375],[120.837345,32.253843],[120.862174101563,32.2484279609375],[120.872345,32.2492458320313],[120.892345,32.2476369453125],[120.922345,32.2500490546875],[120.9580090625,32.24718284375],[121.002471953125,32.2593508125001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"灌南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.767345,34.413843],[119.770767851563,34.4016506171875],[119.779537382813,34.4104201484375],[119.77181765625,34.4359865546875],[119.787345,34.4438430000001],[119.79322390625,34.4385903144532],[119.791451445313,34.4088430000001],[119.793228789063,34.37899925],[119.752061796875,34.3491237617188],[119.731910429688,34.3052101875],[119.6580090625,34.2595253730469],[119.572906523438,34.2132802558594],[119.526402617188,34.1919362617188],[119.500860625,34.1691139960938],[119.523238554688,34.158843],[119.521090117188,34.1227773261719],[119.582061796875,34.0947927070313],[119.572628203125,34.0785622382813],[119.55162234375,34.0597939277344],[119.562628203125,34.0291237617188],[119.567345,34.013843],[119.55197390625,34.0184706855469],[119.527345,34.032212140625],[119.440460234375,33.983735578125],[119.4073840625,34.0021901679688],[119.380728789063,34.0331325507813],[119.322105742188,34.0284218574219],[119.288990507813,34.0405825019532],[119.233961210938,34.0361611152344],[119.22271609375,34.0492153144531],[119.167345,34.0938430000001],[119.161163359375,34.1085646796876],[119.165611601563,34.1284169746094],[119.131065703125,34.1481349921876],[119.1346496875,34.1641127753907],[119.127345,34.193843],[119.161793242188,34.1993959785156],[119.232896757813,34.2082900214844],[119.279547148438,34.2216103339844],[119.458599882813,34.2440053535157],[119.501793242188,34.2693959785156],[119.522896757813,34.2782900214844],[119.631793242188,34.3493959785156],[119.652896757813,34.3582900214844],[119.661793242188,34.3693959785157],[119.715875273438,34.3810976386719],[119.767345,34.413843]]]]}},{"type":"Feature","properties":{"name":"灌云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.767345,34.413843],[119.779537382813,34.4104201484375],[119.770767851563,34.4016506171875],[119.767345,34.413843]]],[[[119.767345,34.413843],[119.715875273438,34.3810976386719],[119.661793242188,34.3693959785157],[119.652896757813,34.3582900214844],[119.631793242188,34.3493959785156],[119.522896757813,34.2782900214844],[119.501793242188,34.2693959785156],[119.458599882813,34.2440053535157],[119.279547148438,34.2216103339844],[119.232896757813,34.2082900214844],[119.161793242188,34.1993959785156],[119.127345,34.193843],[119.122896757813,34.1993959785156],[119.096925078125,34.2103408027344],[119.082896757813,34.2593959785156],[119.069405546875,34.2702016425782],[119.07537234375,34.3181764960938],[119.049615507813,34.3619899726563],[119.057345,34.423843],[119.057345,34.4438430000001],[119.077345,34.4438430000001],[119.1674621875,34.4295900703126],[119.204683867188,34.4509096503907],[119.2018371875,34.4788430000001],[119.203682890625,34.4969741035157],[119.197345,34.5138430000001],[119.28220828125,34.5067885566407],[119.2975403125,34.5577114082032],[119.34197390625,34.5892153144531],[119.364967070313,34.5994753242188],[119.3866028125,34.6245864082032],[119.417345,34.6338430000001],[119.431632109375,34.6224025703126],[119.448463164063,34.5824599433594],[119.514635039063,34.5422658515626],[119.510655546875,34.5102577949219],[119.559176054688,34.4916078925781],[119.621793242188,34.4993959785156],[119.627345,34.503843],[119.637345,34.503843],[119.637345,34.5138430000001],[119.647345,34.5138430000001],[119.647345,34.5238430000001],[119.70255984375,34.5292726875],[119.73197390625,34.5184706855469],[119.7780871875,34.5045864082032],[119.787345,34.473843],[119.787345,34.4438430000001],[119.77181765625,34.4359865546875],[119.767345,34.413843]]]]}},{"type":"Feature","properties":{"name":"连云区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.477345,34.7038430000001],[119.489537382813,34.7004201484375],[119.480767851563,34.6916506171876],[119.477345,34.7038430000001]]],[[[119.489556914063,34.7669814277344],[119.497345,34.7538430000001],[119.453624296875,34.7583290839844],[119.489556914063,34.7669814277344]]],[[[119.477345,34.7038430000001],[119.448057890625,34.6795156074219],[119.540640898438,34.6049404121094],[119.640621367188,34.5615798164063],[119.647345,34.5238430000001],[119.637345,34.5238430000001],[119.637345,34.5138430000001],[119.627345,34.5138430000001],[119.627345,34.503843],[119.621793242188,34.4993959785156],[119.559176054688,34.4916078925781],[119.510655546875,34.5102577949219],[119.514635039063,34.5422658515626],[119.448463164063,34.5824599433594],[119.431632109375,34.6224025703126],[119.417345,34.6338430000001],[119.40435671875,34.6526564765626],[119.377076445313,34.6465407539063],[119.322388945313,34.6599733710938],[119.286129179688,34.6518447089844],[119.237345,34.6836110664063],[119.199386015625,34.6588930488282],[119.167345,34.653843],[119.173985625,34.667202375],[119.177345,34.683843],[119.192711210938,34.6944533515626],[119.20142703125,34.7497585273438],[119.217345,34.773843],[119.242896757813,34.7693959785157],[119.293931914063,34.7393959785157],[119.322896757813,34.7482900214844],[119.356143828125,34.7678322578126],[119.371793242188,34.7482900214844],[119.471788359375,34.7357826972657],[119.477345,34.7038430000001]]],[[[119.443922148438,34.7760353828125],[119.447345,34.763843],[119.435152617188,34.7672658515626],[119.443922148438,34.7760353828125]]]]}},{"type":"Feature","properties":{"name":"新浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.237345,34.6836110664063],[119.286129179688,34.6518447089844],[119.322388945313,34.6599733710938],[119.377076445313,34.6465407539063],[119.40435671875,34.6526564765626],[119.417345,34.6338430000001],[119.3866028125,34.6245864082032],[119.364967070313,34.5994753242188],[119.34197390625,34.5892153144531],[119.2975403125,34.5577114082032],[119.28220828125,34.5067885566407],[119.197345,34.5138430000001],[119.183775664063,34.5215798164063],[119.2137121875,34.5574745917969],[119.220245390625,34.5874745917969],[119.181129179688,34.5727309394532],[119.1437121875,34.5902114082032],[119.127345,34.5938430000001],[119.131158476563,34.6100307441407],[119.168873320313,34.6228835273437],[119.160538359375,34.6496486640625],[119.167345,34.653843],[119.199386015625,34.6588930488282],[119.237345,34.6836110664063]]]]}},{"type":"Feature","properties":{"name":"赣榆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.893922148438,35.0160353828125],[119.897345,35.003843],[119.885152617188,35.0072658515625],[119.893922148438,35.0160353828125]]],[[[119.291842070313,35.1071974921875],[119.297345,35.083843],[119.2476965625,35.0634902167969],[119.208131132813,35.0350136542969],[119.192808867188,34.8983803535157],[119.181812773438,34.8590578437501],[119.18375125,34.8400356269531],[119.212808867188,34.7893056464844],[119.217345,34.773843],[119.20142703125,34.7497585273438],[119.192711210938,34.6944533515626],[119.177345,34.683843],[119.066734648438,34.6760243964844],[119.023023710938,34.6997768378907],[118.956041289063,34.6957851386719],[118.922628203125,34.7191237617188],[118.892061796875,34.7385622382813],[118.874429960938,34.758296125],[118.845230742188,34.7716970039063],[118.772291289063,34.7673500800782],[118.767345,34.793843],[118.77312625,34.8085512519531],[118.771607695313,34.818843],[118.773082304688,34.8288430000001],[118.771519804688,34.8394130683594],[118.79298953125,34.8481996894531],[118.80170046875,34.8794863105469],[118.85298953125,34.9481996894532],[118.857345,35.023843],[118.8626965625,35.0305239082032],[118.914508085938,35.0504396796876],[118.947345,35.0463552070313],[119.032345,35.0569277167969],[119.106470976563,35.0477077460938],[119.14064578125,35.1039760566407],[119.197345,35.113843],[119.212608671875,35.1070058417969],[119.238682890625,35.1253139472657],[119.291842070313,35.1071974921875]]]]}},{"type":"Feature","properties":{"name":"东海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.107345,34.573843],[119.107345,34.583843],[119.120152617188,34.578843],[119.107345,34.573843]]],[[[119.107345,34.583843],[119.094537382813,34.578843],[119.107345,34.573843],[119.101724882813,34.5288442207031],[119.104298125,34.5081557441407],[119.092896757813,34.4682900214844],[119.081793242188,34.4593959785156],[119.077345,34.4438430000001],[119.057345,34.4438430000001],[119.057345,34.423843],[119.042154570313,34.4190334296875],[119.032535429688,34.4086525703126],[118.992154570313,34.3990334296876],[118.963585234375,34.3681996894532],[118.917345,34.3700319648438],[118.867345,34.3680507636719],[118.837345,34.3692397285156],[118.818258085938,34.3684828925781],[118.779986601563,34.3092177558594],[118.742511015625,34.329048078125],[118.732203398438,34.3286391425782],[118.637345,34.353843],[118.64170046875,34.3794863105469],[118.66045046875,34.3939601875001],[118.67170046875,34.4127614570313],[118.639058867188,34.4379555488281],[118.598424101563,34.4481996894532],[118.574136992188,34.4167299628907],[118.55298953125,34.4294863105469],[118.5176965625,34.4439308906251],[118.467301054688,34.4065676093751],[118.417100859375,34.4212038398438],[118.407345,34.433843],[118.41142703125,34.4697585273438],[118.42326296875,34.4879274726562],[118.434019804688,34.5166762519531],[118.4176965625,34.5831166816407],[118.425577421875,34.6182570625001],[118.465767851563,34.6285707832032],[118.456803007813,34.6685707832031],[118.509176054688,34.6820119453125],[118.517345,34.7138430000001],[118.546768828125,34.70675315625],[118.589244414063,34.7151467109376],[118.601519804688,34.6980178046876],[118.629386015625,34.687270734375],[118.652345,34.6918068671875],[118.682345,34.6858791328125],[118.742896757813,34.6978444648438],[118.775382109375,34.7184694648438],[118.770455351563,34.7434096503906],[118.737345,34.7368666816406],[118.708155546875,34.7426357246094],[118.713858671875,34.7715077949219],[118.735631132813,34.7672048164063],[118.731202421875,34.7896303535157],[118.767345,34.793843],[118.772291289063,34.7673500800782],[118.845230742188,34.7716970039063],[118.874429960938,34.758296125],[118.892061796875,34.7385622382813],[118.922628203125,34.7191237617188],[118.956041289063,34.6957851386719],[119.023023710938,34.6997768378907],[119.066734648438,34.6760243964844],[119.177345,34.683843],[119.173985625,34.667202375],[119.167345,34.653843],[119.160538359375,34.6496486640625],[119.168873320313,34.6228835273437],[119.131158476563,34.6100307441407],[119.127345,34.5938430000001],[119.111002226563,34.6019655585938],[119.107345,34.583843]]]]}},{"type":"Feature","properties":{"name":"海州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.107345,34.573843],[119.094537382813,34.578843],[119.107345,34.583843],[119.107345,34.573843]]],[[[119.107345,34.573843],[119.120152617188,34.578843],[119.107345,34.583843],[119.111002226563,34.6019655585938],[119.127345,34.5938430000001],[119.1437121875,34.5902114082032],[119.181129179688,34.5727309394532],[119.220245390625,34.5874745917969],[119.2137121875,34.5574745917969],[119.183775664063,34.5215798164063],[119.197345,34.5138430000001],[119.203682890625,34.4969741035157],[119.2018371875,34.4788430000001],[119.204683867188,34.4509096503907],[119.1674621875,34.4295900703126],[119.077345,34.4438430000001],[119.081793242188,34.4593959785156],[119.092896757813,34.4682900214844],[119.104298125,34.5081557441407],[119.101724882813,34.5288442207031],[119.107345,34.573843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"淮安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3240246875,33.7046108222657],[119.366920195313,33.6793959785157],[119.442896757813,33.6882900214844],[119.477345,33.693843],[119.482764921875,33.6790810371094],[119.481944609375,33.668843],[119.483204375,33.6531508613282],[119.451710234375,33.6390969062501],[119.476109648438,33.5811550117188],[119.494830351563,33.518989484375],[119.55197390625,33.4784706855469],[119.607345,33.4538430000001],[119.617554960938,33.4295339179688],[119.59142703125,33.4197585273438],[119.567345,33.403843],[119.498472929688,33.4182521796876],[119.426090117188,33.3799513984375],[119.312154570313,33.3690334296876],[119.229893828125,33.3518227363281],[119.252935820313,33.3082753730469],[119.172154570313,33.2890334296876],[119.157345,33.283843],[119.15170046875,33.2881996894531],[119.06509890625,33.308266828125],[118.9998059375,33.3566738105469],[119.00312625,33.3791347480469],[118.997345,33.393843],[119.002061796875,33.3991237617188],[119.1240246875,33.4657009101563],[119.121812773438,33.5027761054688],[119.077345,33.5638430000001],[119.102174101563,33.55831565625],[119.112735625,33.5593923164063],[119.129127226563,33.5396596503906],[119.171881132813,33.5734609199219],[119.150831328125,33.6102175117188],[119.131910429688,33.6082888007813],[119.127345,33.623843],[119.147345,33.623843],[119.147345,33.633843],[119.169556914063,33.6516310859376],[119.191793242188,33.6793959785157],[119.211241484375,33.6949709296875],[119.213590117188,33.7138430000001],[119.209678984375,33.7452870917969],[119.288453398438,33.7631801582031],[119.3240246875,33.7046108222657]]]]}},{"type":"Feature","properties":{"name":"盱眙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.487345,33.243843],[118.492764921875,33.134419171875],[118.491344023438,33.0986049628907],[118.502530546875,33.0990480781251],[118.516695585938,33.0690334296876],[118.522535429688,33.0786525703126],[118.536202421875,33.1218154121094],[118.552154570313,33.1390334296876],[118.562535429688,33.1486525703126],[118.580596953125,33.1681435371094],[118.697027617188,33.1986525703125],[118.702535429688,33.1890334296875],[118.713096953125,33.0898049140626],[118.782345,33.0870583320313],[118.871529570313,33.0905934882813],[118.892154570313,33.0586525703125],[118.907345,33.053843],[118.891851835938,33.0247658515625],[118.854976835938,33.0351296210938],[118.813507109375,33.0085842109375],[118.901246367188,32.99909690625],[118.893443632813,32.9677468085938],[118.887345,32.963843],[118.862515898438,32.9583156562501],[118.851954375,32.9593923164063],[118.84107546875,32.9462966132813],[118.8428528125,32.928843],[118.84158328125,32.916372296875],[118.81189578125,32.9193971992188],[118.802808867188,32.8583815742188],[118.733756132813,32.8480959296875],[118.745548125,32.7324318671875],[118.697345,32.7238430000001],[118.697345,32.733843],[118.687345,32.733843],[118.61634890625,32.7455055976563],[118.598761015625,32.7227223945313],[118.542345,32.731059796875],[118.473761015625,32.7209255195313],[118.44232546875,32.739887921875],[118.417345,32.7238430000001],[118.40263796875,32.71806175],[118.359478789063,32.724438703125],[118.363824492188,32.753843],[118.361085234375,32.7723513007813],[118.322857695313,32.7667018867188],[118.31298953125,32.77948753125],[118.291226835938,32.7962844062501],[118.298057890625,32.842505109375],[118.24170046875,32.8581984687501],[118.22298953125,32.9314919257813],[118.283219023438,32.9482643867188],[118.30170046875,32.9670607734375],[118.244273710938,32.983051984375],[118.2325403125,33.0521120429688],[118.211529570313,33.0683303046876],[118.213160429688,33.0793556953126],[118.200865507813,33.088843],[118.21298953125,33.0981996894531],[118.217345,33.1838430000001],[118.258219023438,33.20198753125],[118.413219023438,33.1895326972657],[118.487345,33.243843]]]]}},{"type":"Feature","properties":{"name":"洪泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.897345,33.353843],[118.885152617188,33.3504201484376],[118.893922148438,33.3416506171875],[118.91298953125,33.3581996894531],[118.962174101563,33.3878688789063],[118.997345,33.393843],[119.00312625,33.3791347480469],[118.9998059375,33.3566738105469],[119.06509890625,33.308266828125],[119.15170046875,33.2881996894531],[119.157345,33.283843],[119.154801054688,33.2663869453125],[119.139888945313,33.2512990546875],[119.137345,33.213843],[119.07170046875,33.2094863105469],[119.04298953125,33.1981996894532],[118.977564726563,33.1870851875001],[118.94052859375,33.1391030097656],[118.95298953125,33.1294863105469],[118.96170046875,33.1167214179687],[118.941744414063,33.1196706367188],[118.93298953125,33.0817653632813],[118.96298953125,33.06948753125],[118.97170046875,33.0588820625],[118.907345,33.053843],[118.892154570313,33.0586525703125],[118.871529570313,33.0905934882813],[118.782345,33.0870583320313],[118.713096953125,33.0898049140626],[118.702535429688,33.1890334296875],[118.697027617188,33.1986525703125],[118.580596953125,33.1681435371094],[118.562535429688,33.1486525703126],[118.552154570313,33.1390334296876],[118.536202421875,33.1218154121094],[118.522535429688,33.0786525703126],[118.516695585938,33.0690334296876],[118.502530546875,33.0990480781251],[118.491344023438,33.0986049628907],[118.492764921875,33.134419171875],[118.487345,33.243843],[118.506788359375,33.2648268867188],[118.771744414063,33.3477992988281],[118.777345,33.353843],[118.832579375,33.3607509589844],[118.871793242188,33.3893959785156],[118.897345,33.393843],[118.897345,33.353843]]]]}},{"type":"Feature","properties":{"name":"淮阴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.997345,33.893843],[119.00142703125,33.8779274726562],[119.02326296875,33.8697585273438],[119.03564578125,33.8518227363282],[119.089459257813,33.8155837226563],[119.081124296875,33.7783962226563],[119.09326296875,33.7597585273438],[119.102345,33.7354799628907],[119.131676054688,33.742055890625],[119.14142703125,33.7279274726563],[119.179859648438,33.7180641914063],[119.16142703125,33.6897585273438],[119.147345,33.633843],[119.147345,33.623843],[119.127345,33.623843],[119.09142703125,33.6197585273437],[119.046451445313,33.6058168769532],[119.006070585938,33.6227797675782],[118.96076296875,33.5932778144532],[118.947345,33.573843],[118.939761992188,33.5679909492188],[118.97672,33.5067214179688],[118.9310559375,33.4451308417969],[118.90298953125,33.3981996894531],[118.897345,33.393843],[118.871793242188,33.3893959785156],[118.832579375,33.3607509589844],[118.777345,33.353843],[118.753682890625,33.370180890625],[118.737345,33.393843],[118.758687773438,33.4129140449219],[118.772940703125,33.4391371894532],[118.794039335938,33.5778603339844],[118.774874296875,33.5949831367188],[118.7551184375,33.6313466621094],[118.793238554688,33.648843],[118.791495390625,33.6780800605469],[118.804268828125,33.7015822578125],[118.7970715625,33.8223427558594],[118.835655546875,33.8655300117188],[118.867345,33.893843],[118.885855742188,33.8868874335938],[118.962467070313,33.9195558906251],[118.997345,33.893843]]]]}},{"type":"Feature","properties":{"name":"金湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.295650664063,33.1425942207031],[119.33170046875,33.0781984687501],[119.357345,33.043843],[119.342535429688,33.0186525703125],[119.313096953125,32.9913771796875],[119.347452421875,32.8602638984375],[119.323297148438,32.8090798164063],[119.260089140625,32.8065724921875],[119.212535429688,32.8190334296875],[119.177345,32.823843],[119.09500125,32.8282741523437],[119.07326296875,32.8597585273438],[119.054346953125,32.872817609375],[119.033053007813,32.910122296875],[119.0080090625,32.9045095039063],[119.023726835938,32.9286452460938],[119.008443632813,32.9650319648438],[118.95326296875,32.9479274726563],[118.893526640625,32.9397585273438],[118.887345,32.963843],[118.893443632813,32.9677468085938],[118.901246367188,32.99909690625],[118.813507109375,33.0085842109375],[118.854976835938,33.0351296210938],[118.891851835938,33.0247658515625],[118.907345,33.053843],[118.97170046875,33.0588820625],[118.96298953125,33.06948753125],[118.93298953125,33.0817653632813],[118.941744414063,33.1196706367188],[118.96170046875,33.1167214179687],[118.95298953125,33.1294863105469],[118.94052859375,33.1391030097656],[118.977564726563,33.1870851875001],[119.04298953125,33.1981996894532],[119.07170046875,33.2094863105469],[119.137345,33.213843],[119.218472929688,33.2000612617188],[119.223082304688,33.168843],[119.221514921875,33.1582387519531],[119.295650664063,33.1425942207031]]]]}},{"type":"Feature","properties":{"name":"涟水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.22271609375,34.0492153144531],[119.233961210938,34.0361611152344],[119.288990507813,34.0405825019532],[119.322105742188,34.0284218574219],[119.380728789063,34.0331325507813],[119.4073840625,34.0021901679688],[119.440460234375,33.983735578125],[119.527345,34.032212140625],[119.55197390625,34.0184706855469],[119.567345,34.013843],[119.57406375,34.00056175],[119.595269804688,33.9898329902344],[119.588101835938,33.9751564765625],[119.610704375,33.957202375],[119.637345,33.953843],[119.637345,33.923843],[119.6322278125,33.8937258125],[119.573140898438,33.8583852363281],[119.537823515625,33.8146901679688],[119.50298953125,33.7281996894532],[119.477345,33.693843],[119.442896757813,33.6882900214844],[119.366920195313,33.6793959785157],[119.3240246875,33.7046108222657],[119.288453398438,33.7631801582031],[119.209678984375,33.7452870917969],[119.213590117188,33.7138430000001],[119.211241484375,33.6949709296875],[119.191793242188,33.6793959785157],[119.169556914063,33.6516310859376],[119.147345,33.633843],[119.16142703125,33.6897585273438],[119.179859648438,33.7180641914063],[119.14142703125,33.7279274726563],[119.131676054688,33.742055890625],[119.102345,33.7354799628907],[119.09326296875,33.7597585273438],[119.081124296875,33.7783962226563],[119.089459257813,33.8155837226563],[119.03564578125,33.8518227363282],[119.02326296875,33.8697585273438],[119.00142703125,33.8779274726562],[118.997345,33.893843],[119.009718046875,33.9014675117188],[119.024971953125,33.9262184882813],[119.049381132813,33.9412587714844],[119.040523710938,33.9696865058594],[119.073531523438,33.9876552558594],[119.089605742188,34.0137416816407],[119.141627226563,34.0420619941407],[119.157125273438,34.0875466132813],[119.167345,34.0938430000001],[119.22271609375,34.0492153144531]]]]}},{"type":"Feature","properties":{"name":"清河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.127345,33.623843],[119.131910429688,33.6082888007813],[119.150831328125,33.6102175117188],[119.171881132813,33.5734609199219],[119.129127226563,33.5396596503906],[119.112735625,33.5593923164063],[119.102174101563,33.55831565625],[119.077345,33.5638430000001],[119.073985625,33.570483625],[119.02250125,33.5963466621095],[118.983985625,33.577202375],[118.947345,33.573843],[118.96076296875,33.5932778144532],[119.006070585938,33.6227797675782],[119.046451445313,33.6058168769532],[119.09142703125,33.6197585273437],[119.127345,33.623843]]]]}},{"type":"Feature","properties":{"name":"清浦区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.897345,33.353843],[118.893922148438,33.3416506171875],[118.885152617188,33.3504201484376],[118.897345,33.353843]]],[[[118.897345,33.353843],[118.897345,33.393843],[118.90298953125,33.3981996894531],[118.9310559375,33.4451308417969],[118.97672,33.5067214179688],[118.939761992188,33.5679909492188],[118.947345,33.573843],[118.983985625,33.577202375],[119.02250125,33.5963466621095],[119.073985625,33.570483625],[119.077345,33.5638430000001],[119.121812773438,33.5027761054688],[119.1240246875,33.4657009101563],[119.002061796875,33.3991237617188],[118.997345,33.393843],[118.962174101563,33.3878688789063],[118.91298953125,33.3581996894531],[118.897345,33.353843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"滨海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.307345,34.1038430000001],[120.242530546875,34.0883144355469],[120.223531523438,34.0902504707032],[120.202808867188,34.0783803535156],[120.150811796875,34.0589040351563],[120.15318484375,34.0356056953125],[120.173365507813,34.0188430000001],[120.161881132813,34.0093056464844],[120.1442590625,33.9686696601563],[120.166422148438,33.9096877265625],[120.137725859375,33.8993056464844],[120.09634890625,33.9230055976563],[120.073189726563,33.9508815742188],[120.048189726563,33.9207851386719],[120.025806914063,33.9477321601563],[119.992808867188,33.9223159003907],[120.022808867188,33.9093056464844],[120.031881132813,33.8953224921875],[119.990748320313,33.8995156074219],[119.993897734375,33.8686220527344],[119.951881132813,33.8593056464844],[119.937345,33.8338430000001],[119.90170046875,33.8194863105469],[119.88298953125,33.8081996894532],[119.850225859375,33.7994863105469],[119.853990507813,33.8249831367188],[119.808219023438,33.8437160468751],[119.823140898438,33.868452375],[119.821549101563,33.879233625],[119.837379179688,33.9054787421876],[119.777686796875,33.9221022773438],[119.71064578125,33.8928041816407],[119.667750273438,33.9186769843751],[119.637345,33.923843],[119.637345,33.953843],[119.646964140625,33.964223859375],[119.669381132813,33.98499534375],[119.7525403125,34.0459889960938],[119.8066809375,34.0631313300781],[119.862154570313,34.1490334296875],[120.028375273438,34.2898366523438],[120.042154570313,34.3190334296876],[120.05482546875,34.3429750800781],[120.082535429688,34.3686525703126],[120.087345,34.3738430000001],[120.123121367188,34.3677651191406],[120.280806914063,34.3042543769532],[120.283082304688,34.2888430000001],[120.281607695313,34.278843],[120.283082304688,34.268843],[120.280435820313,34.2509194160156],[120.324254179688,34.1567665839844],[120.321607695313,34.1388430000001],[120.324483671875,34.1193544746094],[120.31170046875,34.1094863105469],[120.307345,34.1038430000001]]]]}},{"type":"Feature","properties":{"name":"大丰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.497345,32.9238430000001],[120.493922148438,32.9116506171875],[120.485152617188,32.9204201484375],[120.497345,32.9238430000001]]],[[[120.497345,32.9238430000001],[120.48978640625,32.9336379218751],[120.452203398438,32.9280837226563],[120.365933867188,32.948071515625],[120.33298953125,32.9281984687501],[120.277345,32.9238430000001],[120.301129179688,32.9760817695313],[120.31170046875,33.0450441718751],[120.29170046875,33.0781984687501],[120.28298953125,33.1294863105469],[120.22170046875,33.1381996894531],[120.217345,33.1438430000001],[120.217345,33.173843],[120.232628203125,33.1785622382813],[120.281734648438,33.2166188789063],[120.299307890625,33.2549123359376],[120.393355742188,33.2980763984376],[120.370933867188,33.3301784492188],[120.37322390625,33.3685903144532],[120.362061796875,33.3785622382813],[120.342628203125,33.4047927070312],[120.372628203125,33.4185622382813],[120.461890898438,33.4877370429688],[120.467345,33.4938430000001],[120.50298953125,33.5181996894531],[120.56170046875,33.5694863105469],[120.607345,33.6038430000001],[120.614049101563,33.5984755683594],[120.665679960938,33.5106423164063],[120.661666289063,33.4783901191407],[120.685152617188,33.4595815253907],[120.705025664063,33.4257741523438],[120.721793242188,33.3482900214844],[120.732896757813,33.3293959785157],[120.741793242188,33.2882900214844],[120.75322390625,33.25855003125],[120.741099882813,33.248843],[120.752896757813,33.2393959785156],[120.761793242188,33.2282900214845],[120.772896757813,33.2193959785157],[120.781793242188,33.1882900214844],[120.805391875,33.178344953125],[120.800533476563,33.1392958808594],[120.815284453125,33.1274843574219],[120.811099882813,33.093843],[120.813590117188,33.0738430000001],[120.810479765625,33.048843],[120.869097929688,33.0241432929688],[120.877345,33.013843],[120.838878203125,33.0073073554688],[120.843175078125,32.978218],[120.744224882813,32.9687721992188],[120.70298953125,32.93819846875],[120.664029570313,32.9149001289063],[120.597193632813,32.9247756171875],[120.582784453125,32.9599806953125],[120.51298953125,32.9281984687501],[120.497345,32.9238430000001]]]]}},{"type":"Feature","properties":{"name":"东台市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.617345,32.6138430000001],[120.613922148438,32.6016506171876],[120.605152617188,32.6104201484375],[120.617345,32.6138430000001]]],[[[120.617345,32.6138430000001],[120.612896757813,32.6293971992188],[120.598741484375,32.653481671875],[120.5622278125,32.6320168281251],[120.497345,32.6400856757813],[120.43834109375,32.6327468085938],[120.420362578125,32.6754103828125],[120.391793242188,32.6982888007813],[120.381890898438,32.7106520820313],[120.304581328125,32.7010353828125],[120.282896757813,32.6882888007813],[120.220650664063,32.67745628125],[120.223004179688,32.658559796875],[120.2040246875,32.6091921210938],[120.197345,32.603843],[120.1919153125,32.6085182929688],[120.1927746875,32.6191677070313],[120.17752078125,32.632309796875],[120.15271609375,32.61847190625],[120.110006132813,32.60921409375],[120.117345,32.683843],[120.12170046875,32.68948753125],[120.15298953125,32.70819846875],[120.16170046875,32.7194875312501],[120.17298953125,32.72819846875],[120.18170046875,32.7494875312501],[120.20298953125,32.75819846875],[120.21170046875,32.76948753125],[120.223355742188,32.778481671875],[120.216143828125,32.79819846875],[120.180767851563,32.776860578125],[120.160284453125,32.7798854804687],[120.163082304688,32.7988430000001],[120.161519804688,32.8094142890625],[120.183170195313,32.8182717109376],[120.181607695313,32.828843],[120.18375125,32.8433498359375],[120.203595,32.85866721875],[120.18170046875,32.8881984687501],[120.169224882813,32.9329982734376],[120.217345,32.9258864570313],[120.242379179688,32.9295876289063],[120.277345,32.9238430000001],[120.33298953125,32.9281984687501],[120.365933867188,32.948071515625],[120.452203398438,32.9280837226563],[120.48978640625,32.9336379218751],[120.497345,32.9238430000001],[120.485152617188,32.9204201484375],[120.493922148438,32.9116506171875],[120.497345,32.9238430000001],[120.51298953125,32.9281984687501],[120.582784453125,32.9599806953125],[120.597193632813,32.9247756171875],[120.664029570313,32.9149001289063],[120.70298953125,32.93819846875],[120.744224882813,32.9687721992188],[120.843175078125,32.978218],[120.838878203125,33.0073073554688],[120.877345,33.013843],[120.88271609375,32.99921409375],[120.89197390625,32.94847190625],[120.906358671875,32.8825270820312],[120.88271609375,32.77847190625],[120.862955351563,32.7614455390626],[120.861060820313,32.7378713203126],[120.899888945313,32.7044216132813],[120.90275515625,32.6687258125001],[120.897345,32.633843],[120.851519804688,32.6277126289063],[120.8526575,32.6085768867188],[120.797003203125,32.583032453125],[120.782628203125,32.5991237617188],[120.750494414063,32.6085622382813],[120.73244265625,32.5883571601563],[120.695435820313,32.6084645820313],[120.652164335938,32.5782375312501],[120.642628203125,32.6091237617187],[120.617345,32.6138430000001]]]]}},{"type":"Feature","properties":{"name":"阜宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.957345,33.7938430000001],[119.953922148438,33.8060353828125],[119.945152617188,33.7972658515625],[119.962496367188,33.7787929511719],[119.952174101563,33.7688771796876],[119.962525664063,33.7487831855469],[119.935191679688,33.7355202460938],[119.95775515625,33.7138430000001],[119.923082304688,33.6805312324219],[119.98244265625,33.6689430976563],[119.987345,33.663843],[119.97931765625,33.6538210273438],[119.920758085938,33.6193959785156],[119.871793242188,33.6282900214844],[119.862799101563,33.6395217109376],[119.847345,33.6375991035157],[119.807345,33.6425746894532],[119.767345,33.6375991035157],[119.721163359375,33.6433437324219],[119.725162382813,33.61118675],[119.697261992188,33.5136000800781],[119.631793242188,33.4893959785157],[119.621632109375,33.4652834296876],[119.607345,33.4538430000001],[119.55197390625,33.4784706855469],[119.494830351563,33.518989484375],[119.476109648438,33.5811550117188],[119.451710234375,33.6390969062501],[119.483204375,33.6531508613282],[119.481944609375,33.668843],[119.482764921875,33.6790810371094],[119.477345,33.693843],[119.50298953125,33.7281996894532],[119.537823515625,33.8146901679688],[119.573140898438,33.8583852363281],[119.6322278125,33.8937258125],[119.637345,33.923843],[119.667750273438,33.9186769843751],[119.71064578125,33.8928041816407],[119.777686796875,33.9221022773438],[119.837379179688,33.9054787421876],[119.821549101563,33.879233625],[119.823140898438,33.868452375],[119.808219023438,33.8437160468751],[119.853990507813,33.8249831367188],[119.850225859375,33.7994863105469],[119.88298953125,33.8081996894532],[119.90170046875,33.8194863105469],[119.937345,33.8338430000001],[119.98170046875,33.8159780097656],[119.97298953125,33.7981996894532],[119.957345,33.7938430000001]]]]}},{"type":"Feature","properties":{"name":"建湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.038258085938,33.6838576484375],[120.02845828125,33.6175295234375],[120.080660429688,33.6252443671876],[120.08314578125,33.6084133125001],[120.055382109375,33.5709633613282],[120.06298953125,33.5194863105469],[120.067345,33.513843],[120.06142703125,33.5097585273437],[120.05326296875,33.4979274726563],[120.00142703125,33.4797585273438],[119.97326296875,33.4602883125],[119.997345,33.423843],[119.917906523438,33.4139064765626],[119.901119414063,33.3740688300782],[119.851568632813,33.3392409492188],[119.75572390625,33.3287306953125],[119.742896757813,33.2982900214844],[119.711793242188,33.2893959785157],[119.707345,33.283843],[119.68435671875,33.2941408515625],[119.643306914063,33.2813552070313],[119.627564726563,33.3275466132813],[119.611158476563,33.3376552558594],[119.601842070313,33.3771974921876],[119.571158476563,33.3876552558594],[119.567345,33.403843],[119.59142703125,33.4197585273438],[119.617554960938,33.4295339179688],[119.607345,33.4538430000001],[119.621632109375,33.4652834296876],[119.631793242188,33.4893959785157],[119.697261992188,33.5136000800781],[119.725162382813,33.61118675],[119.721163359375,33.6433437324219],[119.767345,33.6375991035157],[119.807345,33.6425746894532],[119.847345,33.6375991035157],[119.862799101563,33.6395217109376],[119.871793242188,33.6282900214844],[119.920758085938,33.6193959785156],[119.97931765625,33.6538210273438],[119.987345,33.663843],[120.038258085938,33.6838576484375]]]]}},{"type":"Feature","properties":{"name":"射阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.957345,33.7938430000001],[119.945152617188,33.7972658515625],[119.953922148438,33.8060353828125],[119.957345,33.7938430000001]]],[[[120.467345,33.513843],[120.479537382813,33.5172658515625],[120.470767851563,33.5260353828125],[120.448057890625,33.5193581367188],[120.454410429688,33.5704518867188],[120.472867460938,33.5681557441406],[120.481793242188,33.6060976386719],[120.448912382813,33.6182900214844],[120.423702421875,33.5868080878906],[120.386954375,33.5913796210938],[120.3365246875,33.5719960761719],[120.354879179688,33.5242360664063],[120.350982695313,33.4928871894532],[120.322345,33.5097206855469],[120.302706328125,33.4981764960938],[120.276846953125,33.5013930488281],[120.25923953125,33.4596108222656],[120.210206328125,33.4493959785157],[120.192867460938,33.5295302558594],[120.171119414063,33.5268239570312],[120.120172148438,33.5072426582032],[120.067345,33.513843],[120.06298953125,33.5194863105469],[120.055382109375,33.5709633613282],[120.08314578125,33.6084133125001],[120.080660429688,33.6252443671876],[120.02845828125,33.6175295234375],[120.038258085938,33.6838576484375],[119.987345,33.663843],[119.98244265625,33.6689430976563],[119.923082304688,33.6805312324219],[119.95775515625,33.7138430000001],[119.935191679688,33.7355202460938],[119.962525664063,33.7487831855469],[119.952174101563,33.7688771796876],[119.962496367188,33.7787929511719],[119.957345,33.7938430000001],[119.97298953125,33.7981996894532],[119.98170046875,33.8159780097656],[119.937345,33.8338430000001],[119.951881132813,33.8593056464844],[119.993897734375,33.8686220527344],[119.990748320313,33.8995156074219],[120.031881132813,33.8953224921875],[120.022808867188,33.9093056464844],[119.992808867188,33.9223159003907],[120.025806914063,33.9477321601563],[120.048189726563,33.9207851386719],[120.073189726563,33.9508815742188],[120.09634890625,33.9230055976563],[120.137725859375,33.8993056464844],[120.166422148438,33.9096877265625],[120.1442590625,33.9686696601563],[120.161881132813,34.0093056464844],[120.173365507813,34.0188430000001],[120.15318484375,34.0356056953125],[120.150811796875,34.0589040351563],[120.202808867188,34.0783803535156],[120.223531523438,34.0902504707032],[120.242530546875,34.0883144355469],[120.307345,34.1038430000001],[120.338687773438,34.0981252265625],[120.3880871875,34.0095864082032],[120.40197390625,33.9784706855469],[120.41271609375,33.9592153144532],[120.428199492188,33.9245156074219],[120.470401640625,33.8569008613282],[120.482535429688,33.8166017890626],[120.528311796875,33.7771633125001],[120.570064726563,33.6780190253906],[120.58197390625,33.6384706855469],[120.602154570313,33.6210842109375],[120.607345,33.6038430000001],[120.56170046875,33.5694863105469],[120.50298953125,33.5181996894531],[120.467345,33.4938430000001],[120.467345,33.513843]]]]}},{"type":"Feature","properties":{"name":"亭湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.467345,33.513843],[120.470767851563,33.5260353828125],[120.479537382813,33.5172658515625],[120.467345,33.513843]]],[[[120.467345,33.513843],[120.467345,33.4938430000001],[120.461890898438,33.4877370429688],[120.372628203125,33.4185622382813],[120.342628203125,33.4047927070312],[120.362061796875,33.3785622382813],[120.37322390625,33.3685903144532],[120.370933867188,33.3301784492188],[120.393355742188,33.2980763984376],[120.299307890625,33.2549123359376],[120.281734648438,33.2166188789063],[120.232628203125,33.1785622382813],[120.217345,33.173843],[120.19662234375,33.1797670722656],[120.166632109375,33.21722190625],[120.19341921875,33.2285097480469],[120.17736453125,33.2558180976563],[120.161099882813,33.268843],[120.175440703125,33.2803237128906],[120.198775664063,33.2774208808594],[120.221793242188,33.2822743964844],[120.194859648438,33.3038430000001],[120.22048953125,33.3243666816406],[120.171793242188,33.3382900214844],[120.102896757813,33.3693959785157],[120.022437773438,33.3794594550782],[119.997345,33.423843],[119.97326296875,33.4602883125],[120.00142703125,33.4797585273438],[120.05326296875,33.4979274726563],[120.06142703125,33.5097585273437],[120.067345,33.513843],[120.120172148438,33.5072426582032],[120.171119414063,33.5268239570312],[120.192867460938,33.5295302558594],[120.210206328125,33.4493959785157],[120.25923953125,33.4596108222656],[120.276846953125,33.5013930488281],[120.302706328125,33.4981764960938],[120.322345,33.5097206855469],[120.350982695313,33.4928871894532],[120.354879179688,33.5242360664063],[120.3365246875,33.5719960761719],[120.386954375,33.5913796210938],[120.423702421875,33.5868080878906],[120.448912382813,33.6182900214844],[120.481793242188,33.6060976386719],[120.472867460938,33.5681557441406],[120.454410429688,33.5704518867188],[120.448057890625,33.5193581367188],[120.467345,33.513843]]]]}},{"type":"Feature","properties":{"name":"响水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.82271609375,34.4692153144531],[119.832022734375,34.4584157539063],[119.843487578125,34.4593361640625],[119.94271609375,34.4492153144532],[119.97197390625,34.4384706855469],[120.024947539063,34.4225221992187],[120.08271609375,34.3892153144531],[120.087345,34.3738430000001],[120.082535429688,34.3686525703126],[120.05482546875,34.3429750800781],[120.042154570313,34.3190334296876],[120.028375273438,34.2898366523438],[119.862154570313,34.1490334296875],[119.8066809375,34.0631313300781],[119.7525403125,34.0459889960938],[119.669381132813,33.98499534375],[119.646964140625,33.964223859375],[119.637345,33.953843],[119.610704375,33.957202375],[119.588101835938,33.9751564765625],[119.595269804688,33.9898329902344],[119.57406375,34.00056175],[119.567345,34.013843],[119.562628203125,34.0291237617188],[119.55162234375,34.0597939277344],[119.572628203125,34.0785622382813],[119.582061796875,34.0947927070313],[119.521090117188,34.1227773261719],[119.523238554688,34.158843],[119.500860625,34.1691139960938],[119.526402617188,34.1919362617188],[119.572906523438,34.2132802558594],[119.6580090625,34.2595253730469],[119.731910429688,34.3052101875],[119.752061796875,34.3491237617188],[119.793228789063,34.37899925],[119.791451445313,34.4088430000001],[119.79322390625,34.4385903144532],[119.787345,34.4438430000001],[119.787345,34.473843],[119.82271609375,34.4692153144531]]]]}},{"type":"Feature","properties":{"name":"盐都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.221793242188,33.2822743964844],[120.198775664063,33.2774208808594],[120.175440703125,33.2803237128906],[120.161099882813,33.268843],[120.17736453125,33.2558180976563],[120.19341921875,33.2285097480469],[120.166632109375,33.21722190625],[120.19662234375,33.1797670722656],[120.217345,33.173843],[120.217345,33.1438430000001],[120.173370390625,33.1495973945313],[120.082345,33.1830239082032],[120.019249296875,33.1598525214844],[119.877633085938,33.1480165839844],[119.832940703125,33.1516078925781],[119.7397278125,33.1312758613281],[119.7427746875,33.1691664863281],[119.73197390625,33.1784706855469],[119.722154570313,33.2110842109376],[119.707345,33.2238430000001],[119.678219023438,33.23261253125],[119.707345,33.283843],[119.711793242188,33.2893959785157],[119.742896757813,33.2982900214844],[119.75572390625,33.3287306953125],[119.851568632813,33.3392409492188],[119.901119414063,33.3740688300782],[119.917906523438,33.4139064765626],[119.997345,33.423843],[120.022437773438,33.3794594550782],[120.102896757813,33.3693959785157],[120.171793242188,33.3382900214844],[120.22048953125,33.3243666816406],[120.194859648438,33.3038430000001],[120.221793242188,33.2822743964844]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宝应县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627564726563,33.3275466132813],[119.643306914063,33.2813552070313],[119.68435671875,33.2941408515625],[119.707345,33.283843],[119.678219023438,33.23261253125],[119.707345,33.2238430000001],[119.703531523438,33.2076552558594],[119.691158476563,33.2000307441407],[119.679718046875,33.1814675117188],[119.65670046875,33.1672829414063],[119.640709257813,33.1186611152344],[119.647345,33.1038430000001],[119.641519804688,33.0996681953125],[119.632965117188,33.0877321601563],[119.622345,33.0898317695313],[119.603267851563,33.0860622382813],[119.56978640625,33.0393434882813],[119.50248171875,33.0258522773438],[119.462345,33.0337819648438],[119.403975859375,33.0222487617188],[119.357345,33.043843],[119.33170046875,33.0781984687501],[119.295650664063,33.1425942207031],[119.221514921875,33.1582387519531],[119.223082304688,33.168843],[119.218472929688,33.2000612617188],[119.137345,33.213843],[119.139888945313,33.2512990546875],[119.154801054688,33.2663869453125],[119.157345,33.283843],[119.172154570313,33.2890334296876],[119.252935820313,33.3082753730469],[119.229893828125,33.3518227363281],[119.312154570313,33.3690334296876],[119.426090117188,33.3799513984375],[119.498472929688,33.4182521796876],[119.567345,33.403843],[119.571158476563,33.3876552558594],[119.601842070313,33.3771974921876],[119.611158476563,33.3376552558594],[119.627564726563,33.3275466132813]]]]}},{"type":"Feature","properties":{"name":"高邮市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.651612578125,33.0981081367187],[119.686436796875,33.0776003242187],[119.680855742188,33.0451784492188],[119.691612578125,33.0181081367188],[119.70343875,33.00931175],[119.686378203125,32.9519997382813],[119.710596953125,32.9339846015625],[119.713204375,32.9188430000001],[119.710084257813,32.9007057929688],[119.780787382813,32.9128786445313],[119.783204375,32.898843],[119.781412382813,32.8884279609375],[119.793277617188,32.8692580390625],[119.791485625,32.858843],[119.794928007813,32.8388430000001],[119.789722929688,32.8086208320313],[119.823077421875,32.7995778632813],[119.827345,32.793843],[119.811793242188,32.7893971992188],[119.781607695313,32.7716530585938],[119.758453398438,32.7427370429688],[119.741793242188,32.7293971992188],[119.722799101563,32.7056764960938],[119.623297148438,32.7180544257813],[119.612896757813,32.6582888007813],[119.553917265625,32.6480251289063],[119.542345,32.6494655585938],[119.531846953125,32.64815940625],[119.522345,32.6707082343751],[119.498472929688,32.667739484375],[119.482799101563,32.6481642890626],[119.462799101563,32.6506520820313],[119.457345,32.643843],[119.45142703125,32.6479274726563],[119.376046171875,32.6664430976563],[119.351607695313,32.6310500312501],[119.32142703125,32.6197585273438],[119.297345,32.603843],[119.280704375,32.600483625],[119.252359648438,32.5863942695313],[119.230860625,32.5968923164062],[119.227345,32.603843],[119.22298953125,32.60948753125],[119.211529570313,32.6183303046875],[119.213082304688,32.628843],[119.210557890625,32.645923078125],[119.180865507813,32.668843],[119.210094023438,32.69140159375],[119.19845828125,32.7701320625],[119.177345,32.823843],[119.212535429688,32.8190334296875],[119.260089140625,32.8065724921875],[119.323297148438,32.8090798164063],[119.347452421875,32.8602638984375],[119.313096953125,32.9913771796875],[119.342535429688,33.0186525703125],[119.357345,33.043843],[119.403975859375,33.0222487617188],[119.462345,33.0337819648438],[119.50248171875,33.0258522773438],[119.56978640625,33.0393434882813],[119.603267851563,33.0860622382813],[119.622345,33.0898317695313],[119.632965117188,33.0877321601563],[119.641519804688,33.0996681953125],[119.647345,33.1038430000001],[119.651612578125,33.0981081367187]]]]}},{"type":"Feature","properties":{"name":"广陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.482345,32.4410842109376],[119.49314578125,32.4254421210937],[119.527345,32.433843],[119.527345,32.413843],[119.537345,32.413843],[119.52142703125,32.3897585273438],[119.513160429688,32.3575392890625],[119.482506132813,32.3644118476563],[119.42740359375,32.3412673164063],[119.421221953125,32.368843],[119.424586210938,32.3838430000001],[119.421051054688,32.3996169257813],[119.445513945313,32.4087721992188],[119.47326296875,32.4279274726563],[119.482345,32.4410842109376]]]]}},{"type":"Feature","properties":{"name":"江都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.827345,32.793843],[119.831529570313,32.7775392890625],[119.850557890625,32.7818044257813],[119.855557890625,32.7595143867187],[119.835416289063,32.7456056953125],[119.86142703125,32.7079274726563],[119.87361453125,32.6995143867188],[119.868922148438,32.6785720039063],[119.887345,32.673843],[119.907232695313,32.6232595039063],[119.871832304688,32.6180275703125],[119.856851835938,32.6374391914063],[119.827603789063,32.6417604804688],[119.810206328125,32.6283303046875],[119.813082304688,32.6088430000001],[119.811607695313,32.598843],[119.813082304688,32.588843],[119.811226835938,32.57628440625],[119.837633085938,32.5559011054687],[119.82170046875,32.5294875312501],[119.817345,32.513843],[119.82142703125,32.4679274726562],[119.859112578125,32.4582570625],[119.865240507813,32.4309255195313],[119.847345,32.403843],[119.853585234375,32.3784279609375],[119.837789335938,32.3541677070313],[119.845225859375,32.3209987617188],[119.817345,32.3138430000001],[119.764757109375,32.3224806953126],[119.717345,32.303843],[119.70170046875,32.30819846875],[119.673111601563,32.3452419257812],[119.61170046875,32.3581984687501],[119.561470976563,32.3779445625],[119.563765898438,32.3934499335938],[119.537345,32.413843],[119.527345,32.413843],[119.527345,32.433843],[119.541724882813,32.4462331367188],[119.469141875,32.5339821601563],[119.472764921875,32.5790456367188],[119.46197390625,32.61847190625],[119.457345,32.643843],[119.462799101563,32.6506520820313],[119.482799101563,32.6481642890626],[119.498472929688,32.667739484375],[119.522345,32.6707082343751],[119.531846953125,32.64815940625],[119.542345,32.6494655585938],[119.553917265625,32.6480251289063],[119.612896757813,32.6582888007813],[119.623297148438,32.7180544257813],[119.722799101563,32.7056764960938],[119.741793242188,32.7293971992188],[119.758453398438,32.7427370429688],[119.781607695313,32.7716530585938],[119.811793242188,32.7893971992188],[119.827345,32.793843]]]]}},{"type":"Feature","properties":{"name":"仪征市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.297345,32.603843],[119.319273710938,32.5564846015625],[119.280299101563,32.5641872382813],[119.284322539063,32.5438430000001],[119.279503203125,32.5194631171875],[119.309136992188,32.4982228828125],[119.300367460938,32.453843],[119.303331328125,32.438843],[119.301344023438,32.4287770820313],[119.311519804688,32.3780178046876],[119.32404421875,32.3690407539062],[119.343350859375,32.2889235664063],[119.33968875,32.2704128242188],[119.363985625,32.2386013007813],[119.357345,32.2338430000001],[119.237345,32.2338430000001],[119.237345,32.223843],[119.211158476563,32.2276564765625],[119.173531523438,32.2400295234375],[119.077345,32.243843],[119.036500273438,32.2604396796876],[119.029859648438,32.3138430000001],[119.032965117188,32.338843],[119.031099882813,32.353843],[119.033023710938,32.3692971015625],[119.021099882813,32.378843],[119.033590117188,32.3888430000001],[119.00361453125,32.41284690625],[119.023023710938,32.4283888984376],[119.01994265625,32.453149640625],[119.057345,32.4638430000001],[119.080440703125,32.4545607734376],[119.091612578125,32.4695778632813],[119.147955351563,32.5083425117188],[119.154068632813,32.5438430000001],[119.15099734375,32.5616823554688],[119.173077421875,32.5781081367188],[119.1820715625,32.590200421875],[119.2147278125,32.5699880195313],[119.21099734375,32.5916823554688],[119.227345,32.603843],[119.230860625,32.5968923164062],[119.252359648438,32.5863942695313],[119.280704375,32.600483625],[119.297345,32.603843]]]]}},{"type":"Feature","properties":{"name":"邗江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.472764921875,32.5790456367188],[119.469141875,32.5339821601563],[119.541724882813,32.4462331367188],[119.527345,32.433843],[119.49314578125,32.4254421210937],[119.482345,32.4410842109376],[119.47326296875,32.4279274726563],[119.445513945313,32.4087721992188],[119.421051054688,32.3996169257813],[119.424586210938,32.3838430000001],[119.421221953125,32.368843],[119.42740359375,32.3412673164063],[119.482506132813,32.3644118476563],[119.513160429688,32.3575392890625],[119.52142703125,32.3897585273438],[119.537345,32.413843],[119.563765898438,32.3934499335938],[119.561470976563,32.3779445625],[119.61170046875,32.3581984687501],[119.673111601563,32.3452419257812],[119.70170046875,32.30819846875],[119.717345,32.303843],[119.703985625,32.277202375],[119.697345,32.2738430000001],[119.689283476563,32.2835451484375],[119.662808867188,32.2683815742188],[119.631881132813,32.2593044257813],[119.622432890625,32.2271096015626],[119.609058867188,32.2579470039062],[119.592808867188,32.2383815742188],[119.567345,32.2338430000001],[119.57302859375,32.2793337226562],[119.55396609375,32.2882888007812],[119.50908328125,32.25550315625],[119.457345,32.2638430000001],[119.423155546875,32.2580348945312],[119.377345,32.223843],[119.357345,32.223843],[119.357345,32.2338430000001],[119.363985625,32.2386013007813],[119.33968875,32.2704128242188],[119.343350859375,32.2889235664063],[119.32404421875,32.3690407539062],[119.311519804688,32.3780178046876],[119.301344023438,32.4287770820313],[119.303331328125,32.438843],[119.300367460938,32.453843],[119.309136992188,32.4982228828125],[119.279503203125,32.5194631171875],[119.284322539063,32.5438430000001],[119.280299101563,32.5641872382813],[119.319273710938,32.5564846015625],[119.297345,32.603843],[119.32142703125,32.6197585273438],[119.351607695313,32.6310500312501],[119.376046171875,32.6664430976563],[119.45142703125,32.6479274726563],[119.457345,32.643843],[119.46197390625,32.61847190625],[119.472764921875,32.5790456367188]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丹徒区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.427345,31.833843],[119.439537382813,31.8304201484376],[119.430767851563,31.8216506171875],[119.427345,31.833843]]],[[[119.421910429688,32.1665407539063],[119.427345,32.1538430000001],[119.404346953125,32.157895734375],[119.421910429688,32.1665407539063]]],[[[119.427345,31.833843],[119.38580203125,31.8385671210938],[119.35326296875,31.8597585273438],[119.327345,31.863843],[119.333531523438,31.8776564765625],[119.34187625,31.9568679023438],[119.380543242188,31.970044171875],[119.36064578125,31.9983864570313],[119.36857546875,32.023843],[119.358199492188,32.0571559882813],[119.332213164063,32.0731667304688],[119.327345,32.093843],[119.348619414063,32.0981374335937],[119.317579375,32.1138405585938],[119.302345,32.10640159375],[119.291353789063,32.1117678046875],[119.287345,32.103843],[119.240201445313,32.1393288398437],[119.244327421875,32.1672634101563],[119.267379179688,32.2054787421875],[119.237345,32.213843],[119.237345,32.223843],[119.237345,32.2338430000001],[119.357345,32.2338430000001],[119.357345,32.223843],[119.377345,32.223843],[119.356456328125,32.1995973945313],[119.320738554688,32.1888430000001],[119.3527746875,32.1791970039063],[119.3519153125,32.1685182929688],[119.3627746875,32.1591677070313],[119.3619153125,32.1484767890625],[119.492125273438,32.1365114570313],[119.497345,32.1538430000001],[119.532711210938,32.159653546875],[119.55170046875,32.14819846875],[119.58947390625,32.1376808906251],[119.602345,32.1395827460938],[119.6127746875,32.1380397773438],[119.641964140625,32.1596828437501],[119.702261992188,32.1480910468751],[119.717301054688,32.1503151679688],[119.707603789063,32.2159230781251],[119.685953398438,32.2326369453126],[119.64064578125,32.199048078125],[119.554332304688,32.1894875312501],[119.54298953125,32.2270607734376],[119.567345,32.2338430000001],[119.592808867188,32.2383815742188],[119.609058867188,32.2579470039062],[119.622432890625,32.2271096015626],[119.631881132813,32.2593044257813],[119.662808867188,32.2683815742188],[119.689283476563,32.2835451484375],[119.697345,32.2738430000001],[119.69142703125,32.2584450507813],[119.712896757813,32.2493971992188],[119.76658328125,32.2101808906251],[119.787345,32.2076003242188],[119.821353789063,32.2118288398438],[119.823248320313,32.196577375],[119.794849882813,32.1738356757813],[119.787345,32.1138430000001],[119.7323840625,32.1192482734375],[119.722022734375,32.1184157539063],[119.71271609375,32.1292140937501],[119.696104765625,32.1384719062501],[119.68271609375,32.10847190625],[119.670328398438,32.0978005195313],[119.642667265625,32.1000221992188],[119.611099882813,32.0633791328125],[119.582423125,32.079380109375],[119.552398710938,32.06835471875],[119.505738554688,32.0811257148438],[119.471178007813,32.0783473945313],[119.4727746875,32.0585182929688],[119.46197390625,32.04921409375],[119.452667265625,32.0384157539063],[119.4401965625,32.0394167304688],[119.41271609375,31.93847190625],[119.401925078125,31.9090822578125],[119.403819609375,31.8854958320313],[119.417345,31.873843],[119.427345,31.833843]]]]}},{"type":"Feature","properties":{"name":"丹阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.71271609375,32.1292140937501],[119.722022734375,32.1184157539063],[119.7323840625,32.1192482734375],[119.787345,32.1138430000001],[119.840704375,32.1071681953125],[119.890679960938,32.0671462226563],[119.897345,32.0438430000001],[119.871519804688,32.0480178046875],[119.842633085938,32.059887921875],[119.786568632813,32.0488088203125],[119.763365507813,31.9608596015625],[119.78345828125,31.92921409375],[119.777345,31.903843],[119.762574492188,31.8924440742188],[119.75298953125,31.8600368476562],[119.811261015625,31.8477419257812],[119.76170046875,31.80948753125],[119.75298953125,31.7881984687501],[119.728800078125,31.7555763984375],[119.737345,31.7338430000001],[119.705113554688,31.7390529609375],[119.683170195313,31.7696681953125],[119.64802859375,31.77894065625],[119.631724882813,31.8016847968751],[119.605928984375,31.7965871406251],[119.585855742188,31.8486330390625],[119.555303984375,31.860415265625],[119.503780546875,31.8502346015625],[119.453043242188,31.8824440742188],[119.417345,31.873843],[119.403819609375,31.8854958320313],[119.401925078125,31.9090822578125],[119.41271609375,31.93847190625],[119.4401965625,32.0394167304688],[119.452667265625,32.0384157539063],[119.46197390625,32.04921409375],[119.4727746875,32.0585182929688],[119.471178007813,32.0783473945313],[119.505738554688,32.0811257148438],[119.552398710938,32.06835471875],[119.582423125,32.079380109375],[119.611099882813,32.0633791328125],[119.642667265625,32.1000221992188],[119.670328398438,32.0978005195313],[119.68271609375,32.10847190625],[119.696104765625,32.1384719062501],[119.71271609375,32.1292140937501]]]]}},{"type":"Feature","properties":{"name":"京口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.57302859375,32.2793337226562],[119.567345,32.2338430000001],[119.54298953125,32.2270607734376],[119.554332304688,32.1894875312501],[119.64064578125,32.199048078125],[119.685953398438,32.2326369453126],[119.707603789063,32.2159230781251],[119.717301054688,32.1503151679688],[119.702261992188,32.1480910468751],[119.641964140625,32.1596828437501],[119.6127746875,32.1380397773438],[119.602345,32.1395827460938],[119.58947390625,32.1376808906251],[119.55170046875,32.14819846875],[119.532711210938,32.159653546875],[119.497345,32.1538430000001],[119.48068484375,32.1671828437501],[119.462896757813,32.1893971992188],[119.43361453125,32.21284690625],[119.452896757813,32.2282888007813],[119.457345,32.2638430000001],[119.50908328125,32.25550315625],[119.55396609375,32.2882888007812],[119.57302859375,32.2793337226562]]]]}},{"type":"Feature","properties":{"name":"句容市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.997345,31.783843],[118.99062625,31.77056175],[118.977345,31.763843],[118.977345,31.783843],[118.997345,31.783843]]],[[[118.997345,31.783843],[118.9886340625,31.8151296210938],[118.963604765625,31.83444846875],[119.01298953125,31.84819846875],[119.062027617188,31.8696291328126],[119.090806914063,31.865376203125],[119.10170046875,31.8794875312501],[119.114483671875,31.8893556953125],[119.109556914063,31.9227053046875],[119.06408328125,31.9413161445312],[119.042345,31.9381032539062],[119.028834257813,31.9401003242188],[119.034459257813,31.9781374335938],[119.102926054688,31.9680178046875],[119.11170046875,31.9927614570313],[119.09170046875,32.00819846875],[119.080826445313,32.0472585273438],[119.096392851563,32.0868581367188],[119.08170046875,32.09819846875],[119.071832304688,32.1109841132812],[119.047047148438,32.1073220039063],[119.007345,32.1138430000001],[119.014991484375,32.1428249335938],[119.041519804688,32.1596681953125],[119.063170195313,32.1680178046875],[119.07162234375,32.1798073554688],[119.132345,32.1918068671875],[119.157345,32.1868679023438],[119.177345,32.1908180976563],[119.196417265625,32.1870510078125],[119.237345,32.213843],[119.267379179688,32.2054787421875],[119.244327421875,32.1672634101563],[119.240201445313,32.1393288398437],[119.287345,32.103843],[119.287345,32.093843],[119.327345,32.093843],[119.332213164063,32.0731667304688],[119.358199492188,32.0571559882813],[119.36857546875,32.023843],[119.36064578125,31.9983864570313],[119.380543242188,31.970044171875],[119.34187625,31.9568679023438],[119.333531523438,31.8776564765625],[119.327345,31.863843],[119.322896757813,31.8382888007813],[119.309625273438,31.8157106757813],[119.313013945313,31.7884841132813],[119.292896757813,31.7542653632813],[119.301793242188,31.7382888007813],[119.32302859375,31.729341046875],[119.317345,31.683843],[119.298775664063,31.6597878242188],[119.26298953125,31.6381984687501],[119.227345,31.6238430000001],[119.22271609375,31.62921409375],[119.20197390625,31.6384719062501],[119.18068484375,31.6631813789063],[119.1827746875,31.6891799140625],[119.15197390625,31.70847190625],[119.093082304688,31.7571852851563],[119.08271609375,31.76921409375],[119.057354765625,31.7910671210938],[118.997345,31.783843]]]]}},{"type":"Feature","properties":{"name":"润州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.317579375,32.1138405585938],[119.348619414063,32.0981374335937],[119.327345,32.093843],[119.287345,32.093843],[119.287345,32.103843],[119.291353789063,32.1117678046875],[119.302345,32.10640159375],[119.317579375,32.1138405585938]]],[[[119.48068484375,32.1671828437501],[119.497345,32.1538430000001],[119.492125273438,32.1365114570313],[119.3619153125,32.1484767890625],[119.3627746875,32.1591677070313],[119.3519153125,32.1685182929688],[119.3527746875,32.1791970039063],[119.320738554688,32.1888430000001],[119.356456328125,32.1995973945313],[119.377345,32.223843],[119.423155546875,32.2580348945312],[119.457345,32.2638430000001],[119.452896757813,32.2282888007813],[119.43361453125,32.21284690625],[119.462896757813,32.1893971992188],[119.48068484375,32.1671828437501]],[[119.404346953125,32.157895734375],[119.427345,32.1538430000001],[119.421910429688,32.1665407539063],[119.404346953125,32.157895734375]]]]}},{"type":"Feature","properties":{"name":"扬中市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.866568632813,32.2700637031251],[119.890953398438,32.2107302070313],[119.901519804688,32.1580178046875],[119.907345,32.1538430000001],[119.91693484375,32.1012721992188],[119.96271609375,32.0192140937501],[119.967345,32.0038430000001],[119.903287382813,32.0088576484375],[119.897345,32.0438430000001],[119.890679960938,32.0671462226563],[119.840704375,32.1071681953125],[119.787345,32.1138430000001],[119.794849882813,32.1738356757813],[119.823248320313,32.196577375],[119.821353789063,32.2118288398438],[119.787345,32.2076003242188],[119.76658328125,32.2101808906251],[119.712896757813,32.2493971992188],[119.69142703125,32.2584450507813],[119.697345,32.2738430000001],[119.703985625,32.277202375],[119.717345,32.303843],[119.764757109375,32.3224806953126],[119.817345,32.3138430000001],[119.829869414063,32.2963674140625],[119.866568632813,32.2700637031251]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"兴化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7427746875,33.1691664863281],[119.7397278125,33.1312758613281],[119.832940703125,33.1516078925781],[119.877633085938,33.1480165839844],[120.019249296875,33.1598525214844],[120.082345,33.1830239082032],[120.173370390625,33.1495973945313],[120.217345,33.1438430000001],[120.22170046875,33.1381996894531],[120.28298953125,33.1294863105469],[120.29170046875,33.0781984687501],[120.31170046875,33.0450441718751],[120.301129179688,32.9760817695313],[120.277345,32.9238430000001],[120.242379179688,32.9295876289063],[120.217345,32.9258864570313],[120.169224882813,32.9329982734376],[120.18170046875,32.8881984687501],[120.203595,32.85866721875],[120.18375125,32.8433498359375],[120.181607695313,32.828843],[120.183170195313,32.8182717109376],[120.161519804688,32.8094142890625],[120.163082304688,32.7988430000001],[120.160284453125,32.7798854804687],[120.180767851563,32.776860578125],[120.216143828125,32.79819846875],[120.223355742188,32.778481671875],[120.21170046875,32.76948753125],[120.20298953125,32.75819846875],[120.18170046875,32.7494875312501],[120.17298953125,32.72819846875],[120.16170046875,32.7194875312501],[120.15298953125,32.70819846875],[120.12170046875,32.68948753125],[120.117345,32.683843],[120.091656523438,32.6883132148438],[120.093590117188,32.703843],[120.039752226563,32.7182888007813],[120.022896757813,32.6782888007813],[119.996886015625,32.6673293281251],[119.932457304688,32.6794802070313],[119.887345,32.673843],[119.868922148438,32.6785720039063],[119.87361453125,32.6995143867188],[119.86142703125,32.7079274726563],[119.835416289063,32.7456056953125],[119.855557890625,32.7595143867187],[119.850557890625,32.7818044257813],[119.831529570313,32.7775392890625],[119.827345,32.793843],[119.823077421875,32.7995778632813],[119.789722929688,32.8086208320313],[119.794928007813,32.8388430000001],[119.791485625,32.858843],[119.793277617188,32.8692580390625],[119.781412382813,32.8884279609375],[119.783204375,32.898843],[119.780787382813,32.9128786445313],[119.710084257813,32.9007057929688],[119.713204375,32.9188430000001],[119.710596953125,32.9339846015625],[119.686378203125,32.9519997382813],[119.70343875,33.00931175],[119.691612578125,33.0181081367188],[119.680855742188,33.0451784492188],[119.686436796875,33.0776003242187],[119.651612578125,33.0981081367187],[119.647345,33.1038430000001],[119.640709257813,33.1186611152344],[119.65670046875,33.1672829414063],[119.679718046875,33.1814675117188],[119.691158476563,33.2000307441407],[119.703531523438,33.2076552558594],[119.707345,33.2238430000001],[119.722154570313,33.2110842109376],[119.73197390625,33.1784706855469],[119.7427746875,33.1691664863281]]]]}},{"type":"Feature","properties":{"name":"高港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.950704375,32.380483625],[119.947345,32.353843],[119.94271609375,32.34847190625],[119.930172148438,32.3376638007813],[119.94197390625,32.2984719062501],[119.955416289063,32.2743752265625],[119.941803007813,32.2144557929687],[119.907345,32.1538430000001],[119.901519804688,32.1580178046875],[119.890953398438,32.2107302070313],[119.866568632813,32.2700637031251],[119.829869414063,32.2963674140625],[119.817345,32.3138430000001],[119.845225859375,32.3209987617188],[119.837789335938,32.3541677070313],[119.853585234375,32.3784279609375],[119.847345,32.403843],[119.862144804688,32.3985329414063],[119.872613554688,32.3991579414063],[119.886392851563,32.3691237617188],[119.902628203125,32.3885622382813],[119.920870390625,32.42831565625],[119.997345,32.433843],[120.005401640625,32.4297682929688],[119.993985625,32.4072023750001],[119.980704375,32.4004836250001],[119.973985625,32.387202375],[119.950704375,32.380483625]]]]}},{"type":"Feature","properties":{"name":"海陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.033370390625,32.5720803046875],[120.031724882813,32.558843],[120.033033476563,32.5483083320313],[119.967281523438,32.5387404609376],[119.993175078125,32.4787575507813],[119.981451445313,32.4588210273438],[119.997345,32.433843],[119.920870390625,32.42831565625],[119.902628203125,32.3885622382813],[119.886392851563,32.3691237617188],[119.872613554688,32.3991579414063],[119.862144804688,32.3985329414063],[119.847345,32.403843],[119.865240507813,32.4309255195313],[119.859112578125,32.4582570625],[119.82142703125,32.4679274726562],[119.817345,32.513843],[119.872896757813,32.5282888007813],[119.881822539063,32.569546125],[119.962603789063,32.5581764960938],[119.992061796875,32.5694997382813],[120.002345,32.5682204414062],[120.033370390625,32.5720803046875]]]]}},{"type":"Feature","properties":{"name":"姜堰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.117345,32.683843],[120.110006132813,32.60921409375],[120.15271609375,32.61847190625],[120.17752078125,32.632309796875],[120.1927746875,32.6191677070313],[120.1919153125,32.6085182929688],[120.197345,32.603843],[120.205933867188,32.5914015937501],[120.222345,32.5877223945313],[120.253199492188,32.5946388984375],[120.264586210938,32.5438430000001],[120.256510039063,32.5078054023438],[120.284654570313,32.39413596875],[120.28107546875,32.3781716132813],[120.29326296875,32.3697585273438],[120.297345,32.363843],[120.28142703125,32.3597585273438],[120.250777617188,32.3398000312501],[120.1956653125,32.3629494453125],[120.147345,32.3521169257813],[120.092345,32.36444846875],[120.052345,32.3554811835938],[120.027345,32.3610842109375],[120.007345,32.3566017890625],[119.987345,32.3610842109375],[119.972345,32.3577223945313],[119.962066679688,32.3600270820313],[119.947345,32.353843],[119.950704375,32.380483625],[119.973985625,32.387202375],[119.980704375,32.4004836250001],[119.993985625,32.4072023750001],[120.005401640625,32.4297682929688],[119.997345,32.433843],[119.981451445313,32.4588210273438],[119.993175078125,32.4787575507813],[119.967281523438,32.5387404609376],[120.033033476563,32.5483083320313],[120.031724882813,32.558843],[120.033370390625,32.5720803046875],[120.002345,32.5682204414062],[119.992061796875,32.5694997382813],[119.962603789063,32.5581764960938],[119.881822539063,32.569546125],[119.872896757813,32.5282888007813],[119.817345,32.513843],[119.82170046875,32.5294875312501],[119.837633085938,32.5559011054687],[119.811226835938,32.57628440625],[119.813082304688,32.588843],[119.811607695313,32.598843],[119.813082304688,32.6088430000001],[119.810206328125,32.6283303046875],[119.827603789063,32.6417604804688],[119.856851835938,32.6374391914063],[119.871832304688,32.6180275703125],[119.907232695313,32.6232595039063],[119.887345,32.673843],[119.932457304688,32.6794802070313],[119.996886015625,32.6673293281251],[120.022896757813,32.6782888007813],[120.039752226563,32.7182888007813],[120.093590117188,32.703843],[120.091656523438,32.6883132148438],[120.117345,32.683843]]]]}},{"type":"Feature","properties":{"name":"靖江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.50271609375,32.08921409375],[120.52123171875,32.0677272773438],[120.54271609375,32.04921409375],[120.557345,32.023843],[120.53170046875,32.02819846875],[120.488975859375,32.04499534375],[120.422769804688,32.0352101875],[120.367345,31.993843],[120.255865507813,31.9414040351563],[120.195924101563,31.9290334296875],[120.052535429688,31.9590334296876],[120.017345,31.9638430000001],[120.017345,31.973843],[120.052886992188,32.0285060859376],[120.05107546875,32.0462966132813],[120.067882109375,32.0665309882813],[120.131549101563,32.0904518867187],[120.169576445313,32.086577375],[120.224498320313,32.098755109375],[120.292808867188,32.1283815742188],[120.303150664063,32.1408327460938],[120.347345,32.133843],[120.4420715625,32.1241799140626],[120.50271609375,32.08921409375]]]]}},{"type":"Feature","properties":{"name":"泰兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.347345,32.363843],[120.353590117188,32.3138552070313],[120.34654421875,32.2572145820313],[120.367042265625,32.222348859375],[120.338336210938,32.1735134101563],[120.347345,32.133843],[120.303150664063,32.1408327460938],[120.292808867188,32.1283815742188],[120.224498320313,32.098755109375],[120.169576445313,32.086577375],[120.131549101563,32.0904518867187],[120.067882109375,32.0665309882813],[120.05107546875,32.0462966132813],[120.052886992188,32.0285060859376],[120.017345,31.973843],[119.99142703125,31.9879274726563],[119.967345,32.0038430000001],[119.96271609375,32.0192140937501],[119.91693484375,32.1012721992188],[119.907345,32.1538430000001],[119.941803007813,32.2144557929687],[119.955416289063,32.2743752265625],[119.94197390625,32.2984719062501],[119.930172148438,32.3376638007813],[119.94271609375,32.34847190625],[119.947345,32.353843],[119.962066679688,32.3600270820313],[119.972345,32.3577223945313],[119.987345,32.3610842109375],[120.007345,32.3566017890625],[120.027345,32.3610842109375],[120.052345,32.3554811835938],[120.092345,32.36444846875],[120.147345,32.3521169257813],[120.1956653125,32.3629494453125],[120.250777617188,32.3398000312501],[120.28142703125,32.3597585273438],[120.297345,32.363843],[120.313985625,32.3672023750001],[120.343687773438,32.3819655585938],[120.347345,32.363843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宿城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.178160429688,34.0173366523438],[118.214586210938,33.9970143867188],[118.242584257813,33.9992641425782],[118.27197390625,33.9884706855469],[118.30271609375,33.9792153144531],[118.316632109375,33.8878823066407],[118.345382109375,33.8545119453125],[118.419722929688,33.8376235175782],[118.480206328125,33.8038771796876],[118.5259778125,33.8206850410156],[118.557345,33.813843],[118.577330351563,33.7836013007813],[118.550230742188,33.7659548164062],[118.51326296875,33.7742421699219],[118.522672148438,33.7208779121094],[118.55326296875,33.6997585273438],[118.56142703125,33.6779274726563],[118.57361453125,33.6695131660157],[118.57037234375,33.6550380683594],[118.600557890625,33.6618056464844],[118.60361453125,33.6481728339844],[118.58412234375,33.6347133613282],[118.55056765625,33.5729726386719],[118.537345,33.5638430000001],[118.48330203125,33.604712140625],[118.458883085938,33.662661359375],[118.414488554688,33.6813674140626],[118.37982546875,33.6560463691407],[118.280426054688,33.6684108710937],[118.282965117188,33.688843],[118.278663359375,33.7234352851563],[118.2524621875,33.708032453125],[118.222896757813,33.7193959785157],[118.191793242188,33.7282900214844],[118.182896757813,33.7393959785156],[118.177345,33.743843],[118.167345,33.743843],[118.167345,33.7538430000001],[118.161676054688,33.7992348457031],[118.183258085938,33.828783185547],[118.171793242188,33.8482900214844],[118.162896757813,33.8793959785156],[118.141793242188,33.9082900214844],[118.137345,33.923843],[118.18197390625,33.9492153144532],[118.21197390625,33.9626015449219],[118.20271609375,33.9792153144531],[118.16271609375,33.9970632148438],[118.178160429688,34.0173366523438]]]]}},{"type":"Feature","properties":{"name":"宿豫区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.067345,34.163843],[118.139703398438,34.1317214179688],[118.152345,34.1600478339844],[118.172345,34.1584413886719],[118.189796171875,34.1598439765625],[118.227354765625,34.0998830390625],[118.355640898438,34.1197841621094],[118.385123320313,34.1174147773438],[118.472174101563,34.0984279609376],[118.486436796875,34.0995729804688],[118.507345,34.123843],[118.53326296875,34.1197585273437],[118.54142703125,34.0879274726563],[118.566314726563,34.0707460761719],[118.573565703125,34.0383962226563],[118.560831328125,34.0188430000001],[118.577056914063,33.9939260078125],[118.587345,33.953843],[118.574742460938,33.9025429511719],[118.601373320313,33.8841579414063],[118.58326296875,33.8579274726563],[118.569132109375,33.8481728339844],[118.574215117188,33.8254921699219],[118.557345,33.813843],[118.5259778125,33.8206850410156],[118.480206328125,33.8038771796876],[118.419722929688,33.8376235175782],[118.345382109375,33.8545119453125],[118.316632109375,33.8878823066407],[118.30271609375,33.9792153144531],[118.27197390625,33.9884706855469],[118.242584257813,33.9992641425782],[118.214586210938,33.9970143867188],[118.178160429688,34.0173366523438],[118.16271609375,33.9970632148438],[118.20271609375,33.9792153144531],[118.21197390625,33.9626015449219],[118.18197390625,33.9492153144532],[118.137345,33.923843],[118.133077421875,33.9395778632812],[118.117955351563,33.9581081367188],[118.10291140625,33.9378847480469],[118.087203398438,33.9405886054688],[118.06763796875,33.9668935371094],[118.031612578125,33.9881081367188],[118.023077421875,34.0061867500001],[118.061373320313,34.0214040351563],[118.049117460938,34.0925917792969],[118.01291140625,34.0863588691407],[118.003077421875,34.0995778632813],[117.984967070313,34.1130507636719],[117.997345,34.1438430000001],[118.033985625,34.147202375],[118.067345,34.163843]]]]}},{"type":"Feature","properties":{"name":"沭阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.057345,34.423843],[119.049615507813,34.3619899726563],[119.07537234375,34.3181764960938],[119.069405546875,34.2702016425782],[119.082896757813,34.2593959785156],[119.096925078125,34.2103408027344],[119.122896757813,34.1993959785156],[119.127345,34.193843],[119.1346496875,34.1641127753907],[119.131065703125,34.1481349921876],[119.165611601563,34.1284169746094],[119.161163359375,34.1085646796876],[119.167345,34.0938430000001],[119.157125273438,34.0875466132813],[119.141627226563,34.0420619941407],[119.089605742188,34.0137416816407],[119.073531523438,33.9876552558594],[119.040523710938,33.9696865058594],[119.049381132813,33.9412587714844],[119.024971953125,33.9262184882813],[119.009718046875,33.9014675117188],[118.997345,33.893843],[118.962467070313,33.9195558906251],[118.885855742188,33.8868874335938],[118.867345,33.893843],[118.87455203125,33.9268740058594],[118.841920195313,33.968540265625],[118.843043242188,33.982514875],[118.7037903125,33.9713259101562],[118.692476835938,33.9581911445313],[118.667345,33.972212140625],[118.64271609375,33.9584706855469],[118.587345,33.953843],[118.577056914063,33.9939260078125],[118.560831328125,34.0188430000001],[118.573565703125,34.0383962226563],[118.566314726563,34.0707460761719],[118.54142703125,34.0879274726563],[118.53326296875,34.1197585273437],[118.507345,34.123843],[118.499503203125,34.1294631171876],[118.503331328125,34.148843],[118.500054960938,34.1654262519532],[118.522345,34.1698305488281],[118.552471953125,34.1638784003906],[118.564322539063,34.223843],[118.556851835938,34.2616384101563],[118.57404421875,34.3062148261719],[118.597345,34.3108193183594],[118.620084257813,34.3063259101563],[118.631519804688,34.3496681953125],[118.637345,34.353843],[118.732203398438,34.3286391425782],[118.742511015625,34.329048078125],[118.779986601563,34.3092177558594],[118.818258085938,34.3684828925781],[118.837345,34.3692397285156],[118.867345,34.3680507636719],[118.917345,34.3700319648438],[118.963585234375,34.3681996894532],[118.992154570313,34.3990334296876],[119.032535429688,34.4086525703126],[119.042154570313,34.4190334296875],[119.057345,34.423843]]]]}},{"type":"Feature","properties":{"name":"泗洪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.222896757813,33.7193959785157],[118.2524621875,33.708032453125],[118.278663359375,33.7234352851563],[118.282965117188,33.688843],[118.280426054688,33.6684108710937],[118.37982546875,33.6560463691407],[118.414488554688,33.6813674140626],[118.458883085938,33.662661359375],[118.48330203125,33.604712140625],[118.537345,33.5638430000001],[118.560235625,33.4837770820313],[118.598077421875,33.4214772773438],[118.651793242188,33.3982900214844],[118.737345,33.393843],[118.753682890625,33.370180890625],[118.777345,33.353843],[118.771744414063,33.3477992988281],[118.506788359375,33.2648268867188],[118.487345,33.243843],[118.413219023438,33.1895326972657],[118.258219023438,33.20198753125],[118.217345,33.1838430000001],[118.205094023438,33.2015895820313],[118.175211210938,33.2222206855469],[118.147750273438,33.2043386054688],[118.154678984375,33.1734242988281],[118.10142703125,33.1597585273438],[118.067345,33.1438430000001],[118.037345,33.1438430000001],[118.037345,33.133843],[118.03142703125,33.1379274726563],[118.011007109375,33.1675051093751],[117.979132109375,33.1895131660156],[117.98580203125,33.219262921875],[117.94142703125,33.2279274726562],[117.93326296875,33.2572145820312],[117.966651640625,33.2802700019532],[117.985006132813,33.3293117500001],[117.967345,33.3338430000001],[117.97197390625,33.3492153144532],[118.015675078125,33.3623732734375],[118.011944609375,33.4088430000001],[118.01423953125,33.4374318671875],[118.043970976563,33.4907204414063],[118.09841921875,33.4863466621094],[118.112281523438,33.622251203125],[118.156632109375,33.6604616523437],[118.151812773438,33.7204616523438],[118.17271609375,33.7384706855469],[118.177345,33.743843],[118.182896757813,33.7393959785156],[118.191793242188,33.7282900214844],[118.222896757813,33.7193959785157]]]]}},{"type":"Feature","properties":{"name":"泗阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.841920195313,33.968540265625],[118.87455203125,33.9268740058594],[118.867345,33.893843],[118.835655546875,33.8655300117188],[118.7970715625,33.8223427558594],[118.804268828125,33.7015822578125],[118.791495390625,33.6780800605469],[118.793238554688,33.648843],[118.7551184375,33.6313466621094],[118.774874296875,33.5949831367188],[118.794039335938,33.5778603339844],[118.772940703125,33.4391371894532],[118.758687773438,33.4129140449219],[118.737345,33.393843],[118.651793242188,33.3982900214844],[118.598077421875,33.4214772773438],[118.560235625,33.4837770820313],[118.537345,33.5638430000001],[118.55056765625,33.5729726386719],[118.58412234375,33.6347133613282],[118.60361453125,33.6481728339844],[118.600557890625,33.6618056464844],[118.57037234375,33.6550380683594],[118.57361453125,33.6695131660157],[118.56142703125,33.6779274726563],[118.55326296875,33.6997585273438],[118.522672148438,33.7208779121094],[118.51326296875,33.7742421699219],[118.550230742188,33.7659548164062],[118.577330351563,33.7836013007813],[118.557345,33.813843],[118.574215117188,33.8254921699219],[118.569132109375,33.8481728339844],[118.58326296875,33.8579274726563],[118.601373320313,33.8841579414063],[118.574742460938,33.9025429511719],[118.587345,33.953843],[118.64271609375,33.9584706855469],[118.667345,33.972212140625],[118.692476835938,33.9581911445313],[118.7037903125,33.9713259101562],[118.843043242188,33.982514875],[118.841920195313,33.968540265625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"富阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.601920195313,30.1503395820313],[119.612530546875,30.1278591132813],[119.651969023438,30.1294216132813],[119.684752226563,30.1068654609375],[119.724053984375,30.08831565625],[119.742345,30.0890407539063],[119.771812773438,30.0878737617188],[119.804737578125,30.1234084296876],[119.847345,30.183843],[119.920386992188,30.1958425117188],[119.93267703125,30.1658107734375],[119.99170046875,30.17948753125],[119.997345,30.183843],[120.013839140625,30.1711135078125],[119.998912382813,30.1199221015625],[120.0419153125,30.0880397773438],[120.057345,30.0903200507813],[120.096910429688,30.0844728828125],[120.137345,30.0938430000001],[120.121070585938,30.0524513984376],[120.126842070313,30.0133986640625],[120.09474734375,29.9701100898438],[120.091607695313,29.9488430000001],[120.094483671875,29.9293556953125],[120.07298953125,29.9127614570313],[120.08170046875,29.8781984687501],[120.09298953125,29.8594875312501],[120.097345,29.843843],[120.0926184375,29.8254201484375],[120.071729765625,29.8301003242188],[120.03142703125,29.8197585273438],[120.021685820313,29.7698659492188],[119.9921496875,29.7574587226563],[119.972345,29.7703542304688],[119.945592070313,29.7529323554688],[119.922301054688,29.7477126289063],[119.897345,29.7538430000001],[119.897345,29.763843],[119.887345,29.763843],[119.867345,29.7695607734375],[119.852896757813,29.7922731757813],[119.872896757813,29.8082888007812],[119.885670195313,29.8386037421876],[119.851793242188,29.8482888007812],[119.811236601563,29.8807253242188],[119.703931914063,29.86562034375],[119.692896757813,29.8793971992188],[119.672530546875,29.8957057929688],[119.662174101563,29.9319313789063],[119.631890898438,29.9281642890625],[119.601920195313,29.9655959296876],[119.565206328125,29.9810646796875],[119.541832304688,29.9781569648437],[119.532896757813,30.0093971992188],[119.4992590625,30.0190138984375],[119.502965117188,30.048843],[119.501724882813,30.0588430000001],[119.50302859375,30.0693410468751],[119.477486601563,30.0801052070313],[119.461890898438,30.0781642890625],[119.452896757813,30.0893971992188],[119.437345,30.0938430000001],[119.431949492188,30.0988430000001],[119.453136015625,30.1184767890625],[119.432862578125,30.1372609687501],[119.492535429688,30.1486525703125],[119.502154570313,30.1590334296875],[119.522535429688,30.1686525703125],[119.541031523438,30.1886159492187],[119.567994414063,30.1986525703125],[119.582154570313,30.1686525703125],[119.601920195313,30.1503395820313]]]]}},{"type":"Feature","properties":{"name":"拱墅区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.147345,30.2838430000001],[120.160152617188,30.278843],[120.147345,30.273843],[120.147345,30.2838430000001]]],[[[120.147345,30.2838430000001],[120.14170046875,30.28819846875],[120.103453398438,30.2938503242188],[120.087345,30.3338430000001],[120.12298953125,30.34819846875],[120.1321496875,30.38108909375],[120.152345,30.3781032539063],[120.162345,30.3795827460937],[120.172857695313,30.3780275703125],[120.18170046875,30.3894875312501],[120.217345,30.393843],[120.20298953125,30.35819846875],[120.197345,30.353843],[120.165699492188,30.3294191718751],[120.147345,30.2838430000001]]]]}},{"type":"Feature","properties":{"name":"滨江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.23048953125,30.224419171875],[120.21185671875,30.1314577460938],[120.181007109375,30.151040265625],[120.151519804688,30.1396681953125],[120.147345,30.1338430000001],[120.132252226563,30.14179221875],[120.11431765625,30.18171409375],[120.137345,30.193843],[120.17298953125,30.20819846875],[120.200240507813,30.2246364570313],[120.207345,30.233843],[120.217345,30.233843],[120.23048953125,30.224419171875]]]]}},{"type":"Feature","properties":{"name":"淳安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.273922148438,29.5760353828125],[119.277345,29.5638430000001],[119.265152617188,29.5672658515625],[119.273922148438,29.5760353828125]]],[[[119.217345,29.953843],[119.222345,29.9666506171876],[119.227345,29.953843],[119.217345,29.953843]]],[[[119.207345,29.953843],[119.1780871875,29.9501540351563],[119.19552859375,29.9304836250001],[119.217345,29.953843],[119.22302859375,29.908344953125],[119.184625273438,29.8921608710938],[119.179547148438,29.8513649726562],[119.201983671875,29.8381764960938],[119.212628203125,29.8394997382813],[119.244508085938,29.8272463203125],[119.270279570313,29.8304518867188],[119.272965117188,29.808843],[119.271676054688,29.7984841132813],[119.282896757813,29.7793971992188],[119.29205203125,29.7267922187501],[119.337345,29.7138430000001],[119.33271609375,29.70847190625],[119.32197390625,29.6992140937501],[119.309014921875,29.6701735664063],[119.243917265625,29.6234304023438],[119.240513945313,29.5810817695313],[119.261851835938,29.5428420234375],[119.220787382813,29.5277638984376],[119.201988554688,29.5292726875],[119.1811340625,29.4600075507813],[119.108468046875,29.4467507148437],[119.084967070313,29.4194753242188],[119.06197390625,29.40921409375],[119.02271609375,29.37847190625],[118.918853789063,29.3471999335938],[118.907345,29.3338430000001],[118.882388945313,29.3277126289063],[118.871803007813,29.3300856757813],[118.82326296875,29.2879274726563],[118.78377078125,29.2731520820312],[118.77326296875,29.2579274726563],[118.76142703125,29.2497585273438],[118.75326296875,29.2179274726563],[118.747345,29.213843],[118.73170046875,29.2094875312501],[118.708800078125,29.1956716132813],[118.666519804688,29.2019216132813],[118.617345,29.193843],[118.6292590625,29.2178151679688],[118.603985625,29.2306008125001],[118.610704375,29.2804836250001],[118.617345,29.283843],[118.620767851563,29.2716506171875],[118.629537382813,29.2804201484376],[118.617345,29.283843],[118.590816679688,29.3341237617187],[118.521519804688,29.3480178046875],[118.513170195313,29.3596681953125],[118.485303984375,29.3704152656251],[118.45666140625,29.3647560859375],[118.4227746875,29.3862673164062],[118.413170195313,29.3996681953125],[118.401236601563,29.4082228828125],[118.403463164063,29.419497296875],[118.371519804688,29.4380178046876],[118.363170195313,29.4496681953125],[118.345694609375,29.4621926093751],[118.337345,29.473843],[118.3859778125,29.5127443671876],[118.422628203125,29.5081862617187],[118.437345,29.513843],[118.483170195313,29.5180178046876],[118.494742460938,29.5757375312501],[118.533170195313,29.5980178046876],[118.561470976563,29.6375002265626],[118.610054960938,29.65226096875],[118.646685820313,29.6450197578125],[118.68404421875,29.69714378125],[118.738912382813,29.7364675117188],[118.743389921875,29.7591310859376],[118.730382109375,29.7907888007813],[118.741519804688,29.8196681953125],[118.753453398438,29.8282228828125],[118.749678984375,29.8473293281251],[118.762345,29.8498317695313],[118.781724882813,29.846001203125],[118.795694609375,29.865493390625],[118.831842070313,29.89140159375],[118.841519804688,29.9396681953125],[118.8853528125,29.9484548164063],[118.893331328125,29.9888430000001],[118.8877746875,30.0169826484375],[118.897345,30.0238430000001],[118.90494265625,30.0143556953125],[119.021773710938,30.0308010078126],[119.031793242188,30.0182888007813],[119.102896757813,30.0093971992188],[119.112183867188,29.9873586250001],[119.161793242188,29.9682888007813],[119.202896757813,29.9593971992188],[119.207345,29.953843]]]]}},{"type":"Feature","properties":{"name":"建德市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.382623320313,29.7697292304688],[119.395631132813,29.7397389960938],[119.412178984375,29.7596633125],[119.431881132813,29.7483815742188],[119.462808867188,29.7393044257812],[119.500011015625,29.7253249335938],[119.557725859375,29.7583815742187],[119.5989465625,29.7124684882813],[119.614327421875,29.6600563789063],[119.66603640625,29.6485890937501],[119.682808867188,29.6193044257813],[119.695631132813,29.5897389960938],[119.715147734375,29.6132375312501],[119.757345,29.6038430000001],[119.764425078125,29.572680890625],[119.752896757813,29.5582888007813],[119.7214075,29.5492873359376],[119.73322390625,29.51855003125],[119.71345828125,29.5027223945313],[119.707345,29.4538430000001],[119.701485625,29.4316384101563],[119.667345,29.4248903632813],[119.625299101563,29.43319846875],[119.609967070313,29.3958840156251],[119.614390898438,29.3734987617188],[119.577242460938,29.3808400703126],[119.521519804688,29.3696681953125],[119.506095,29.3296681953125],[119.470391875,29.3382912421876],[119.451519804688,29.3680178046876],[119.436978789063,29.4231349921876],[119.403219023438,29.4016994453126],[119.377345,29.4377956367187],[119.363170195313,29.4180178046875],[119.327452421875,29.4085964179687],[119.333331328125,29.3788430000001],[119.329761992188,29.3607839179688],[119.34576296875,29.3355861640625],[119.333170195313,29.3180178046875],[119.321236601563,29.3094631171875],[119.32486453125,29.2911037421875],[119.281519804688,29.2796681953125],[119.268995390625,29.262192609375],[119.257345,29.253843],[119.24142703125,29.2579274726563],[119.21060671875,29.2818166328125],[119.185982695313,29.276294171875],[119.20326296875,29.2497585273438],[119.21142703125,29.2256862617188],[119.191573515625,29.2301369453125],[119.182901640625,29.206968],[119.16326296875,29.2197585273438],[119.13142703125,29.2279274726562],[119.122994414063,29.2401442695313],[119.072388945313,29.2277126289063],[119.062301054688,29.2299733710938],[119.037345,29.2238430000001],[119.012447539063,29.2114675117188],[118.980758085938,29.2269435859376],[118.97287234375,29.2659865546875],[118.945504179688,29.2798342109375],[118.9552746875,29.2998366523438],[118.914078398438,29.3205300117188],[118.907345,29.3338430000001],[118.918853789063,29.3471999335938],[119.02271609375,29.37847190625],[119.06197390625,29.40921409375],[119.084967070313,29.4194753242188],[119.108468046875,29.4467507148437],[119.1811340625,29.4600075507813],[119.201988554688,29.5292726875],[119.220787382813,29.5277638984376],[119.261851835938,29.5428420234375],[119.240513945313,29.5810817695313],[119.243917265625,29.6234304023438],[119.309014921875,29.6701735664063],[119.32197390625,29.6992140937501],[119.33271609375,29.70847190625],[119.337345,29.7138430000001],[119.342808867188,29.7183815742187],[119.35927859375,29.7563600898438],[119.382623320313,29.7697292304688]],[[119.265152617188,29.5672658515625],[119.277345,29.5638430000001],[119.273922148438,29.5760353828125],[119.265152617188,29.5672658515625]]]]}},{"type":"Feature","properties":{"name":"江干区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.287345,30.3238430000001],[120.290767851563,30.3116506171876],[120.299537382813,30.3204201484375],[120.300704375,30.350483625],[120.333985625,30.367202375],[120.337345,30.373843],[120.400860625,30.3842775703126],[120.37298953125,30.3627614570313],[120.386773710938,30.33972190625],[120.407345,30.3238430000001],[120.397174101563,30.2842116523437],[120.352720976563,30.2497585273438],[120.33142703125,30.2579274726562],[120.288580351563,30.2936598945313],[120.239967070313,30.2754689765626],[120.217345,30.233843],[120.207345,30.233843],[120.19181765625,30.2416994453126],[120.187345,30.263843],[120.17931765625,30.2965187812501],[120.204913359375,30.3358229804688],[120.197345,30.353843],[120.20298953125,30.35819846875],[120.217345,30.393843],[120.23422,30.389868390625],[120.2306653125,30.3784474921876],[120.242594023438,30.3434377265625],[120.262345,30.3372853828125],[120.273150664063,30.3406520820313],[120.281158476563,30.3276564765625],[120.287345,30.3238430000001]]]]}},{"type":"Feature","properties":{"name":"临安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,30.433843],[119.633658476563,30.3966677070313],[119.677345,30.4038430000001],[119.746695585938,30.3920607734376],[119.791651640625,30.3573635078126],[119.801822539063,30.2974953437501],[119.822803984375,30.31015159375],[119.83170046875,30.27819846875],[119.86170046875,30.2659206367188],[119.85298953125,30.23819846875],[119.836636992188,30.2110866523438],[119.847345,30.183843],[119.804737578125,30.1234084296876],[119.771812773438,30.0878737617188],[119.742345,30.0890407539063],[119.724053984375,30.08831565625],[119.684752226563,30.1068654609375],[119.651969023438,30.1294216132813],[119.612530546875,30.1278591132813],[119.601920195313,30.1503395820313],[119.582154570313,30.1686525703125],[119.567994414063,30.1986525703125],[119.541031523438,30.1886159492187],[119.522535429688,30.1686525703125],[119.502154570313,30.1590334296875],[119.492535429688,30.1486525703125],[119.432862578125,30.1372609687501],[119.453136015625,30.1184767890625],[119.431949492188,30.0988430000001],[119.437345,30.0938430000001],[119.431793242188,30.0793971992188],[119.421495390625,29.9970827460938],[119.402345,29.9994655585938],[119.378194609375,29.9964601875],[119.332154570313,30.0096096015625],[119.305347929688,29.9938503242188],[119.288516875,30.0148708320313],[119.248116484375,29.9978469062501],[119.25533328125,29.9398366523438],[119.241890898438,29.9381642890625],[119.232896757813,29.9493971992188],[119.227345,29.953843],[119.222345,29.9666506171876],[119.217345,29.953843],[119.207345,29.953843],[119.202896757813,29.9593971992188],[119.161793242188,29.9682888007813],[119.112183867188,29.9873586250001],[119.102896757813,30.0093971992188],[119.031793242188,30.0182888007813],[119.021773710938,30.0308010078126],[118.90494265625,30.0143556953125],[118.897345,30.0238430000001],[118.88298953125,30.05948753125],[118.87170046875,30.0781984687501],[118.867345,30.1038430000001],[118.872061796875,30.1191237617188],[118.882628203125,30.1285622382813],[118.892061796875,30.1469289375001],[118.833428984375,30.160571515625],[118.93091921875,30.2053176093751],[118.902061796875,30.2185622382813],[118.881607695313,30.2414577460938],[118.882647734375,30.2589089179688],[118.877345,30.313843],[118.88197390625,30.31921409375],[118.91271609375,30.33847190625],[118.944215117188,30.3608058906251],[118.98271609375,30.3492140937501],[118.9973840625,30.3321901679688],[119.037862578125,30.3096047187501],[119.052623320313,30.3084181953125],[119.080206328125,30.3238088203125],[119.142828398438,30.3008132148438],[119.182345,30.2976369453125],[119.207345,30.2996462226562],[119.229522734375,30.2978639960937],[119.24197390625,30.33921409375],[119.27271609375,30.3484719062501],[119.316304960938,30.3727907539063],[119.358204375,30.3494142890626],[119.397345,30.373843],[119.41298953125,30.3781984687501],[119.458082304688,30.4146437812501],[119.511241484375,30.4067897773438],[119.5565246875,30.4433864570313],[119.584117460938,30.4267409492187],[119.627345,30.433843]]],[[[119.627345,30.433843],[119.630767851563,30.4460353828125],[119.639537382813,30.4372658515625],[119.627345,30.433843]]]]}},{"type":"Feature","properties":{"name":"上城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.17298953125,30.20819846875],[120.137345,30.193843],[120.139888945313,30.2112990546875],[120.154801054688,30.2263869453125],[120.157345,30.263843],[120.187345,30.263843],[120.19181765625,30.2416994453126],[120.207345,30.233843],[120.200240507813,30.2246364570313],[120.17298953125,30.20819846875]]]]}},{"type":"Feature","properties":{"name":"桐庐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.207345,29.953843],[119.19552859375,29.9304836250001],[119.1780871875,29.9501540351563],[119.207345,29.953843]]],[[[119.452896757813,30.0893971992188],[119.461890898438,30.0781642890625],[119.477486601563,30.0801052070313],[119.50302859375,30.0693410468751],[119.501724882813,30.0588430000001],[119.502965117188,30.048843],[119.4992590625,30.0190138984375],[119.532896757813,30.0093971992188],[119.541832304688,29.9781569648437],[119.565206328125,29.9810646796875],[119.601920195313,29.9655959296876],[119.631890898438,29.9281642890625],[119.662174101563,29.9319313789063],[119.672530546875,29.8957057929688],[119.692896757813,29.8793971992188],[119.703931914063,29.86562034375],[119.811236601563,29.8807253242188],[119.851793242188,29.8482888007812],[119.885670195313,29.8386037421876],[119.872896757813,29.8082888007812],[119.852896757813,29.7922731757813],[119.867345,29.7695607734375],[119.887345,29.763843],[119.887345,29.7538430000001],[119.897345,29.7538430000001],[119.909898710938,29.7049318671875],[119.93697390625,29.711001203125],[119.962296171875,29.693520734375],[119.967345,29.6738430000001],[119.8915246875,29.6663869453126],[119.826480742188,29.6805763984376],[119.771261015625,29.6373317695313],[119.773560820313,29.6087258125],[119.757345,29.6038430000001],[119.715147734375,29.6132375312501],[119.695631132813,29.5897389960938],[119.682808867188,29.6193044257813],[119.66603640625,29.6485890937501],[119.614327421875,29.6600563789063],[119.5989465625,29.7124684882813],[119.557725859375,29.7583815742187],[119.500011015625,29.7253249335938],[119.462808867188,29.7393044257812],[119.431881132813,29.7483815742188],[119.412178984375,29.7596633125],[119.395631132813,29.7397389960938],[119.382623320313,29.7697292304688],[119.35927859375,29.7563600898438],[119.342808867188,29.7183815742187],[119.337345,29.7138430000001],[119.29205203125,29.7267922187501],[119.282896757813,29.7793971992188],[119.271676054688,29.7984841132813],[119.272965117188,29.808843],[119.270279570313,29.8304518867188],[119.244508085938,29.8272463203125],[119.212628203125,29.8394997382813],[119.201983671875,29.8381764960938],[119.179547148438,29.8513649726562],[119.184625273438,29.8921608710938],[119.22302859375,29.908344953125],[119.217345,29.953843],[119.227345,29.953843],[119.232896757813,29.9493971992188],[119.241890898438,29.9381642890625],[119.25533328125,29.9398366523438],[119.248116484375,29.9978469062501],[119.288516875,30.0148708320313],[119.305347929688,29.9938503242188],[119.332154570313,30.0096096015625],[119.378194609375,29.9964601875],[119.402345,29.9994655585938],[119.421495390625,29.9970827460938],[119.431793242188,30.0793971992188],[119.437345,30.0938430000001],[119.452896757813,30.0893971992188]]]]}},{"type":"Feature","properties":{"name":"西湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.147345,30.273843],[120.147345,30.263843],[120.157345,30.263843],[120.154801054688,30.2263869453125],[120.139888945313,30.2112990546875],[120.137345,30.193843],[120.11431765625,30.18171409375],[120.132252226563,30.14179221875],[120.147345,30.1338430000001],[120.18142703125,30.1153200507813],[120.165753203125,30.1011330390625],[120.137345,30.0938430000001],[120.096910429688,30.0844728828125],[120.057345,30.0903200507813],[120.0419153125,30.0880397773438],[119.998912382813,30.1199221015625],[120.013839140625,30.1711135078125],[119.997345,30.183843],[120.003526640625,30.1985646796875],[119.999874296875,30.2148757148437],[120.05959109375,30.256108625],[120.04326296875,30.2997585273438],[120.0169153125,30.3096169257813],[120.023468046875,30.338843],[120.019185820313,30.3579274726563],[120.06326296875,30.3497585273438],[120.087345,30.3338430000001],[120.103453398438,30.2938503242188],[120.14170046875,30.28819846875],[120.147345,30.2838430000001],[120.147345,30.273843]]]]}},{"type":"Feature","properties":{"name":"下城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.157345,30.263843],[120.147345,30.263843],[120.147345,30.273843],[120.160152617188,30.278843],[120.147345,30.2838430000001],[120.165699492188,30.3294191718751],[120.197345,30.353843],[120.204913359375,30.3358229804688],[120.17931765625,30.2965187812501],[120.187345,30.263843],[120.157345,30.263843]]]]}},{"type":"Feature","properties":{"name":"萧山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.717345,30.2838430000001],[120.639361601563,30.2169753242188],[120.5998059375,30.1538234687501],[120.527345,30.1596462226563],[120.512066679688,30.1584181953125],[120.49271609375,30.16921409375],[120.467769804688,30.17847190625],[120.441724882813,30.1368849921876],[120.412345,30.1392458320313],[120.400728789063,30.1383107734375],[120.382574492188,30.159380109375],[120.339093046875,30.1474782539063],[120.322667265625,30.1284157539063],[120.302667265625,30.1300221992188],[120.28572390625,30.1103517890625],[120.32271609375,30.09921409375],[120.334781523438,30.072173078125],[120.321690703125,30.0487136054687],[120.33271609375,30.0392140937501],[120.351148710938,30.0178224921875],[120.357345,29.9838430000001],[120.352896757813,29.9782888007813],[120.341793242188,29.9693971992188],[120.332896757813,29.9582888007813],[120.321793242188,29.9493971992188],[120.30732546875,29.9313283515625],[120.263702421875,29.925903546875],[120.252799101563,29.9395217109375],[120.242345,29.9382204414063],[120.211890898438,29.9420095039063],[120.183897734375,29.9070510078125],[120.162081328125,29.9198757148438],[120.12560671875,29.8598220039063],[120.097345,29.843843],[120.09298953125,29.8594875312501],[120.08170046875,29.8781984687501],[120.07298953125,29.9127614570313],[120.094483671875,29.9293556953125],[120.091607695313,29.9488430000001],[120.09474734375,29.9701100898438],[120.126842070313,30.0133986640625],[120.121070585938,30.0524513984376],[120.137345,30.0938430000001],[120.165753203125,30.1011330390625],[120.18142703125,30.1153200507813],[120.147345,30.1338430000001],[120.151519804688,30.1396681953125],[120.181007109375,30.151040265625],[120.21185671875,30.1314577460938],[120.23048953125,30.224419171875],[120.217345,30.233843],[120.239967070313,30.2754689765626],[120.288580351563,30.2936598945313],[120.33142703125,30.2579274726562],[120.352720976563,30.2497585273438],[120.397174101563,30.2842116523437],[120.407345,30.3238430000001],[120.412808867188,30.3283815742187],[120.437257109375,30.3847560859375],[120.570914335938,30.3983815742188],[120.69031375,30.3833083320313],[120.701881132813,30.3183815742188],[120.717345,30.2838430000001]]]]}},{"type":"Feature","properties":{"name":"余杭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.287345,30.3238430000001],[120.299537382813,30.3204201484375],[120.290767851563,30.3116506171876],[120.287345,30.3238430000001]]],[[[120.287345,30.3238430000001],[120.281158476563,30.3276564765625],[120.273150664063,30.3406520820313],[120.262345,30.3372853828125],[120.242594023438,30.3434377265625],[120.2306653125,30.3784474921876],[120.23422,30.389868390625],[120.217345,30.393843],[120.18170046875,30.3894875312501],[120.172857695313,30.3780275703125],[120.162345,30.3795827460937],[120.152345,30.3781032539063],[120.1321496875,30.38108909375],[120.12298953125,30.34819846875],[120.087345,30.3338430000001],[120.06326296875,30.3497585273438],[120.019185820313,30.3579274726563],[120.023468046875,30.338843],[120.0169153125,30.3096169257813],[120.04326296875,30.2997585273438],[120.05959109375,30.256108625],[119.999874296875,30.2148757148437],[120.003526640625,30.1985646796875],[119.997345,30.183843],[119.99170046875,30.17948753125],[119.93267703125,30.1658107734375],[119.920386992188,30.1958425117188],[119.847345,30.183843],[119.836636992188,30.2110866523438],[119.85298953125,30.23819846875],[119.86170046875,30.2659206367188],[119.83170046875,30.27819846875],[119.822803984375,30.31015159375],[119.801822539063,30.2974953437501],[119.791651640625,30.3573635078126],[119.746695585938,30.3920607734376],[119.677345,30.4038430000001],[119.682535429688,30.4210842109376],[119.702999296875,30.4387136054688],[119.691807890625,30.4587673164063],[119.702764921875,30.4886037421875],[119.701944609375,30.498843],[119.702764921875,30.5090456367188],[119.68838015625,30.5616091132812],[119.767345,30.5538430000001],[119.76150515625,30.5182814765625],[119.78795046875,30.50745628125],[119.807345,30.5103200507813],[119.830767851563,30.5068605781251],[119.873424101563,30.4811281562501],[119.871529570313,30.4683303046875],[119.88599734375,30.4571657539063],[119.912345,30.4610597968751],[119.936851835938,30.4574391914063],[119.952857695313,30.4367018867188],[119.992467070313,30.4425539375],[120.042135039063,30.4280739570313],[120.065640898438,30.4315456367188],[120.056431914063,30.4938478828125],[120.163741484375,30.4762209296875],[120.192857695313,30.51394065625],[120.252345,30.5051491523438],[120.286851835938,30.5102468085938],[120.297345,30.523843],[120.313531523438,30.5200295234375],[120.327125273438,30.4801393867188],[120.337345,30.473843],[120.330953398438,30.42274925],[120.301051054688,30.3988014960938],[120.337345,30.373843],[120.333985625,30.367202375],[120.300704375,30.350483625],[120.287345,30.3238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海曙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.547345,29.853843],[121.512423125,29.8452663398438],[121.50326296875,29.8697585273438],[121.489215117188,29.8913259101563],[121.507345,29.9038430000001],[121.523326445313,29.9117873359375],[121.530704375,29.8972023750001],[121.543985625,29.8904836250001],[121.550704375,29.877202375],[121.557345,29.8738430000001],[121.547345,29.853843]]]]}},{"type":"Feature","properties":{"name":"北仑区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.907345,29.7538430000001],[121.919537382813,29.7504201484375],[121.910767851563,29.7416506171876],[121.907345,29.7538430000001]]],[[[122.153922148438,29.9060353828125],[122.157345,29.893843],[122.145152617188,29.8972658515626],[122.153922148438,29.9060353828125]]],[[[121.997345,29.9038430000001],[121.975030546875,29.8990431953125],[121.984439726563,29.8803029609375],[122.025123320313,29.9155104804688],[122.017345,29.883843],[122.005152617188,29.8804201484376],[122.013922148438,29.8716506171875],[122.017345,29.883843],[122.032105742188,29.8892629218751],[122.0580090625,29.88718284375],[122.135792265625,29.90847190625],[122.13271609375,29.87847190625],[122.021646757813,29.8325368476563],[122.023472929688,29.8098024726563],[121.997345,29.763843],[121.983985625,29.7704836250001],[121.950704375,29.7772023750001],[121.947345,29.783843],[121.957345,29.783843],[121.957345,29.7938430000001],[121.967345,29.7938430000001],[121.967345,29.803843],[121.987345,29.803843],[121.987345,29.813843],[122.010069609375,29.8178493476563],[121.992906523438,29.826841046875],[121.987345,29.813843],[121.967345,29.813843],[121.967345,29.803843],[121.957345,29.803843],[121.957345,29.7938430000001],[121.947345,29.7938430000001],[121.947345,29.783843],[121.91408328125,29.7671633125],[121.907345,29.7538430000001],[121.879049101563,29.7607936835938],[121.867345,29.743843],[121.782061796875,29.8185622382812],[121.772628203125,29.8291237617187],[121.751500273438,29.8479982734375],[121.7305871875,29.8714064765626],[121.682144804688,29.8584328437501],[121.6610559375,29.8915920234375],[121.647345,29.9038430000001],[121.650704375,29.910483625],[121.683985625,29.9272023750001],[121.690704375,29.940483625],[121.713985625,29.947202375],[121.740704375,29.970483625],[121.757345,29.973843],[121.801422148438,29.9612404609375],[121.811803007813,29.9482741523438],[121.921763945313,29.9168752265625],[121.954928007813,29.9582888007813],[121.982896757813,29.9293971992188],[121.997345,29.9038430000001]],[[121.925152617188,29.8972658515626],[121.937345,29.893843],[121.933922148438,29.9060353828125],[121.925152617188,29.8972658515626]]]]}},{"type":"Feature","properties":{"name":"慈溪市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.077345,30.2538430000001],[121.073922148438,30.2416506171875],[121.065152617188,30.2504201484375],[121.077345,30.2538430000001]]],[[[121.077345,30.2538430000001],[121.093292265625,30.2789064765625],[121.04849734375,30.3349123359375],[121.037345,30.343843],[121.0460559375,30.373520734375],[121.08240359375,30.3996804023438],[121.164888945313,30.4348513007813],[121.237345,30.453843],[121.22271609375,30.3867775703126],[121.23197390625,30.3484719062501],[121.32220828125,30.3366652656251],[121.36197390625,30.3084719062501],[121.46623171875,30.2431667304688],[121.529722929688,30.1694753242188],[121.557511015625,30.1570754218751],[121.61271609375,30.0792140937501],[121.617345,30.0638430000001],[121.611612578125,30.0595778632813],[121.596881132813,30.0397731757813],[121.512110625,30.0598073554688],[121.477345,30.043843],[121.477345,30.053843],[121.417345,30.053843],[121.417345,30.043843],[121.405875273438,30.0523732734375],[121.39291140625,30.0698024726563],[121.367345,30.0654006171876],[121.302345,30.0765895820313],[121.2522278125,30.0679616523438],[121.196866484375,30.0810451484375],[121.16923953125,30.1181813789063],[121.203077421875,30.1381081367188],[121.211612578125,30.1495778632813],[121.229766875,30.1630812812501],[121.191163359375,30.1781081367188],[121.13205203125,30.1679323554687],[121.103018828125,30.1795998359375],[121.092594023438,30.2424977851563],[121.077345,30.2538430000001]]]]}},{"type":"Feature","properties":{"name":"奉化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.577345,29.533843],[121.57334109375,29.556567609375],[121.564346953125,29.5394045234376],[121.573194609375,29.5162233710938],[121.552261992188,29.530923078125],[121.5214075,29.5059352851563],[121.513077421875,29.5631471992188],[121.503531523438,29.5476564765626],[121.4686340625,29.5357619453126],[121.47423953125,29.517759015625],[121.447345,29.513843],[121.443013945313,29.5201149726563],[121.422345,29.5154811835938],[121.39033328125,29.5226564765625],[121.36435671875,29.4850295234375],[121.327017851563,29.4933986640625],[121.300230742188,29.4759548164063],[121.275797148438,29.481430890625],[121.26326296875,29.4479274726563],[121.243819609375,29.418071515625],[121.227345,29.4138430000001],[121.20990359375,29.4273073554688],[121.213082304688,29.4488430000001],[121.211593046875,29.4589260078126],[121.223096953125,29.5187599921875],[121.220719023438,29.53483909375],[121.107345,29.553843],[121.113643828125,29.5794924140626],[121.10107546875,29.5881716132813],[121.109068632813,29.623843],[121.07142703125,29.6379274726563],[121.062296171875,29.673520734375],[121.047345,29.6838430000001],[121.0522278125,29.7000588203125],[121.076827421875,29.6980812812501],[121.112388945313,29.6782399726563],[121.181905546875,29.7275270820313],[121.187345,29.733843],[121.192345,29.7392385078126],[121.202218046875,29.7285866523438],[121.252213164063,29.7390456367188],[121.381339140625,29.7339284492188],[121.413839140625,29.7492678046875],[121.441011992188,29.7785915351563],[121.457720976563,29.77925315625],[121.474703398438,29.7079445625],[121.526500273438,29.7099977851563],[121.577413359375,29.6978713203126],[121.552535429688,29.65085471875],[121.569644804688,29.6291481757813],[121.587345,29.6284474921875],[121.612345,29.6294387031251],[121.649776640625,29.6279543281251],[121.757345,29.633843],[121.751329375,29.6104030585938],[121.715513945313,29.5856740546875],[121.70326296875,29.5679274726563],[121.681051054688,29.5596169257813],[121.68431765625,29.5450368476563],[121.656392851563,29.5512966132813],[121.612491484375,29.5376882148438],[121.595548125,29.5414870429688],[121.577345,29.533843]]]]}},{"type":"Feature","properties":{"name":"江北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.485855742188,29.9897658515625],[121.507345,29.9880397773438],[121.522974882813,29.9892946601563],[121.59271609375,29.93921409375],[121.601998320313,29.9184133125001],[121.620328398438,29.9198854804687],[121.63271609375,29.90921409375],[121.637345,29.9038430000001],[121.607345,29.9038430000001],[121.571749296875,29.8947096992188],[121.557345,29.8738430000001],[121.550704375,29.877202375],[121.543985625,29.8904836250001],[121.530704375,29.8972023750001],[121.523326445313,29.9117873359375],[121.507345,29.9038430000001],[121.49521609375,29.9268727851563],[121.45947390625,29.9108132148438],[121.44330203125,29.9415187812501],[121.425601835938,29.9335671210938],[121.4026965625,29.9513210273438],[121.387345,29.9438430000001],[121.384346953125,29.950844953125],[121.354429960938,29.95831565625],[121.374346953125,29.966841046875],[121.380914335938,29.993139875],[121.394014921875,29.9843849921876],[121.400343046875,30.030844953125],[121.414346953125,30.0368410468751],[121.417345,30.043843],[121.417345,30.053843],[121.477345,30.053843],[121.477345,30.043843],[121.47029421875,30.02464378125],[121.485855742188,29.9897658515625]]]]}},{"type":"Feature","properties":{"name":"江东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.611710234375,29.8565480781251],[121.572345,29.8477223945313],[121.562345,29.8499636054688],[121.551676054688,29.8475710273438],[121.547345,29.853843],[121.557345,29.8738430000001],[121.571749296875,29.8947096992188],[121.607345,29.9038430000001],[121.61142703125,29.8879274726563],[121.63142703125,29.8741188789063],[121.611710234375,29.8565480781251]]]]}},{"type":"Feature","properties":{"name":"宁海县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.807345,29.253843],[121.797345,29.253843],[121.797345,29.283843],[121.807345,29.283843],[121.817345,29.2638430000001],[121.807345,29.2638430000001],[121.807345,29.253843]]],[[[121.587345,29.4938430000001],[121.587345,29.4838430000001],[121.577345,29.4838430000001],[121.577345,29.4938430000001],[121.587345,29.4938430000001]]],[[[121.533922148438,29.4960353828125],[121.537345,29.4838430000001],[121.525152617188,29.4872658515625],[121.533922148438,29.4960353828125]]],[[[121.587345,29.4938430000001],[121.590767851563,29.5060353828126],[121.599537382813,29.4972658515625],[121.587345,29.4938430000001]]],[[[121.517345,29.4138430000001],[121.483878203125,29.4081569648437],[121.498546171875,29.38948753125],[121.537266875,29.423921125],[121.55406375,29.45712425],[121.567345,29.463843],[121.572896757813,29.4593971992188],[121.581890898438,29.4481642890626],[121.592345,29.4494655585938],[121.602345,29.4482204414062],[121.619234648438,29.4503224921875],[121.673287382813,29.407094953125],[121.712345,29.4119533515625],[121.721793242188,29.3682888007813],[121.732896757813,29.3493971992188],[121.751827421875,29.2781569648438],[121.762628203125,29.2794997382813],[121.777345,29.273843],[121.78468875,29.2685817695313],[121.755767851563,29.1871779609375],[121.734283476563,29.1914235664063],[121.700015898438,29.1696681953125],[121.6336340625,29.1840651679688],[121.593170195313,29.2596681953125],[121.557345,29.2638430000001],[121.553922148438,29.2760353828126],[121.545152617188,29.2672658515625],[121.557345,29.2638430000001],[121.557345,29.253843],[121.577345,29.253843],[121.577345,29.2238430000001],[121.537345,29.2238430000001],[121.537345,29.203843],[121.527345,29.203843],[121.523922148438,29.2160353828125],[121.515152617188,29.2072658515626],[121.527345,29.203843],[121.521207304688,29.181801984375],[121.502345,29.1573659492188],[121.492579375,29.1700173164063],[121.472711210938,29.158032453125],[121.437345,29.163843],[121.40142703125,29.1679274726563],[121.378375273438,29.2013161445312],[121.349859648438,29.1949245429688],[121.355235625,29.1709572578126],[121.341124296875,29.1492897773438],[121.344215117188,29.1354909492188],[121.32142703125,29.1197585273438],[121.313013945313,29.1075710273438],[121.301900664063,29.110063703125],[121.282345,29.0973317695313],[121.26326296875,29.1097585273438],[121.247345,29.1138430000001],[121.261026640625,29.1486452460937],[121.22338015625,29.199419171875],[121.17170046875,29.20819846875],[121.153350859375,29.2530397773438],[121.173160429688,29.2683303046875],[121.17154421875,29.2792726875],[121.1933215625,29.3086452460938],[121.187345,29.323843],[121.195269804688,29.3278517890626],[121.187486601563,29.3437966132813],[121.22361453125,29.3620754218751],[121.227345,29.4138430000001],[121.243819609375,29.418071515625],[121.26326296875,29.4479274726563],[121.275797148438,29.481430890625],[121.300230742188,29.4759548164063],[121.327017851563,29.4933986640625],[121.36435671875,29.4850295234375],[121.39033328125,29.5226564765625],[121.422345,29.5154811835938],[121.443013945313,29.5201149726563],[121.447345,29.513843],[121.455172148438,29.4943679023438],[121.443077421875,29.4781081367188],[121.426749296875,29.4659621406251],[121.443277617188,29.4392580390625],[121.4381653125,29.4095778632813],[121.46353640625,29.4240895820313],[121.481612578125,29.4695778632813],[121.493077421875,29.4781081367188],[121.507955351563,29.4981081367188],[121.530640898438,29.460327375],[121.51125125,29.4289992500001],[121.517345,29.4138430000001]],[[121.515152617188,29.2672658515625],[121.527345,29.2638430000001],[121.523922148438,29.2760353828126],[121.515152617188,29.2672658515625]]]]}},{"type":"Feature","properties":{"name":"象山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.233922148438,28.8660353828126],[122.237345,28.853843],[122.225152617188,28.8572658515626],[122.233922148438,28.8660353828126]]],[[[122.023922148438,29.0360353828125],[122.027345,29.023843],[122.015152617188,29.0272658515625],[122.023922148438,29.0360353828125]]],[[[122.041158476563,29.1600295234375],[122.037345,29.153843],[122.017047148438,29.1586232734375],[122.033756132813,29.2076564765626],[122.046632109375,29.19761253125],[122.04048953125,29.1778835273438],[122.067017851563,29.168843],[122.041158476563,29.1600295234375]]],[[[121.957345,29.213843],[121.957345,29.233843],[121.971295195313,29.2238430000001],[121.957345,29.213843]]],[[[122.007345,29.233843],[122.000260039063,29.2203932929688],[121.97439578125,29.2295607734375],[122.007345,29.233843]]],[[[122.007345,29.233843],[122.010767851563,29.2460353828126],[122.019537382813,29.2372658515626],[122.007345,29.233843]]],[[[121.79334109375,29.3065676093751],[121.797345,29.283843],[121.784346953125,29.2894045234375],[121.79334109375,29.3065676093751]]],[[[121.787345,29.323843],[121.787345,29.3338430000001],[121.797345,29.3338430000001],[121.797345,29.323843],[121.787345,29.323843]]],[[[121.97334109375,29.356567609375],[121.977345,29.3338430000001],[121.964346953125,29.3394045234375],[121.97334109375,29.356567609375]]],[[[122.223922148438,29.3860353828125],[122.227345,29.3738430000001],[122.215152617188,29.3772658515625],[122.223922148438,29.3860353828125]]],[[[122.011910429688,29.4165407539063],[122.017345,29.403843],[121.994346953125,29.407895734375],[122.011910429688,29.4165407539063]]],[[[122.191910429688,29.4265407539063],[122.197345,29.4138430000001],[122.174346953125,29.417895734375],[122.191910429688,29.4265407539063]]],[[[122.204835234375,29.4566603828125],[122.217345,29.433843],[122.193804960938,29.4389064765625],[122.204835234375,29.4566603828125]]],[[[122.183922148438,29.4660353828126],[122.187345,29.4538430000001],[122.175152617188,29.4572658515625],[122.183922148438,29.4660353828126]]],[[[121.993922148438,29.4860353828125],[121.997345,29.473843],[121.985152617188,29.4772658515625],[121.993922148438,29.4860353828125]]],[[[121.983922148438,29.5160353828125],[121.987345,29.503843],[121.975152617188,29.5072658515626],[121.983922148438,29.5160353828125]]],[[[121.977345,29.553843],[121.989537382813,29.5504201484376],[121.980767851563,29.5416506171875],[121.977345,29.553843]]],[[[122.063922148438,29.5860353828126],[122.067345,29.573843],[122.055152617188,29.5772658515625],[122.063922148438,29.5860353828126]]],[[[122.02334109375,29.626567609375],[122.027345,29.6038430000001],[122.014346953125,29.6094045234376],[122.02334109375,29.626567609375]]],[[[122.003922148438,29.6360353828125],[122.007345,29.623843],[121.995152617188,29.6272658515626],[122.003922148438,29.6360353828125]]],[[[121.977345,29.553843],[121.97170046875,29.55819846875],[121.956265898438,29.5781984687501],[121.938961210938,29.5203151679688],[121.95298953125,29.50948753125],[121.96170046875,29.47819846875],[121.98093875,29.4633498359376],[121.983160429688,29.4483303046876],[121.97170046875,29.4394875312501],[121.961832304688,29.4267018867188],[121.93599734375,29.4305202460938],[121.921173125,29.419077375],[121.9332434375,29.399067609375],[121.9151575,29.3370412421875],[121.960094023438,29.3436818671875],[121.92298953125,29.3150441718751],[121.933599882813,29.2823513007813],[121.971832304688,29.2767018867188],[121.988424101563,29.29819846875],[121.993721953125,29.2764821601563],[121.962511015625,29.2523928046875],[121.957345,29.233843],[121.943394804688,29.2238430000001],[121.957345,29.213843],[121.957345,29.203843],[121.937345,29.203843],[121.937345,29.193843],[121.897564726563,29.1870851875001],[121.887345,29.173843],[121.856749296875,29.1693874335938],[121.823531523438,29.1494509101563],[121.863531523438,29.1400295234375],[121.872686796875,29.1251735664063],[121.881158476563,29.1500295234375],[121.894366484375,29.158169171875],[121.887345,29.173843],[121.918287382813,29.1662429023438],[121.937345,29.193843],[121.957345,29.193843],[121.957345,29.203843],[121.964293242188,29.200327375],[121.979185820313,29.1698342109375],[121.967345,29.163843],[121.967345,29.173843],[121.957345,29.173843],[121.953922148438,29.1860353828125],[121.945152617188,29.1772658515625],[121.957345,29.173843],[121.957345,29.163843],[121.967345,29.163843],[121.97312625,29.14913596875],[121.971607695313,29.138843],[121.975811796875,29.1103786445312],[121.960611601563,29.0986452460938],[121.984561796875,29.088843],[121.96170046875,29.07948753125],[121.949425078125,29.04948753125],[121.9315246875,29.058286359375],[121.933160429688,29.0693556953125],[121.92170046875,29.0781984687501],[121.91298953125,29.08948753125],[121.90170046875,29.09819846875],[121.889400664063,29.1141335273437],[121.86298953125,29.09819846875],[121.829303007813,29.0844142890626],[121.834303007813,29.0505983710938],[121.80298953125,29.06948753125],[121.780533476563,29.0786769843751],[121.83170046875,29.1142580390625],[121.802413359375,29.1195925117188],[121.78298953125,29.1167214179688],[121.791749296875,29.1496706367188],[121.821378203125,29.1452907539063],[121.778858671875,29.178110578125],[121.79170046875,29.2094875312501],[121.797345,29.213843],[121.802345,29.2010353828126],[121.807345,29.213843],[121.817345,29.213843],[121.817345,29.2238430000001],[121.829537382813,29.2272658515625],[121.820767851563,29.2360353828126],[121.817345,29.2238430000001],[121.807345,29.2238430000001],[121.807345,29.213843],[121.797345,29.213843],[121.797345,29.253843],[121.807345,29.253843],[121.817345,29.253843],[121.817345,29.2638430000001],[121.807345,29.283843],[121.809888945313,29.3012990546875],[121.839371367188,29.3309889960938],[121.797345,29.3338430000001],[121.80787234375,29.3550270820313],[121.7920715625,29.377202375],[121.763985625,29.3606008125],[121.783985625,29.3504836250001],[121.787345,29.3338430000001],[121.774537382813,29.328843],[121.787345,29.323843],[121.780704375,29.3104836250001],[121.777345,29.273843],[121.762628203125,29.2794997382813],[121.751827421875,29.2781569648438],[121.732896757813,29.3493971992188],[121.721793242188,29.3682888007813],[121.712345,29.4119533515625],[121.673287382813,29.407094953125],[121.619234648438,29.4503224921875],[121.602345,29.4482204414062],[121.592345,29.4494655585938],[121.581890898438,29.4481642890626],[121.572896757813,29.4593971992188],[121.567345,29.463843],[121.577345,29.4838430000001],[121.587345,29.4838430000001],[121.642056914063,29.49382346875],[121.69197390625,29.52921409375],[121.7245715625,29.5437599921875],[121.752066679688,29.5284181953125],[121.77365359375,29.5301540351563],[121.76197390625,29.5092140937501],[121.75271609375,29.4840138984375],[121.80412234375,29.4692140937501],[121.830225859375,29.5277101875001],[121.843355742188,29.5390212226563],[121.807916289063,29.549692609375],[121.787345,29.5480397773438],[121.772345,29.5492458320313],[121.754249296875,29.5477907539063],[121.74271609375,29.5512404609375],[121.77345828125,29.5777272773438],[121.796363554688,29.6043093085938],[121.90271609375,29.6284719062501],[121.912667265625,29.6400221992188],[121.947178984375,29.6372487617188],[121.97197390625,29.60847190625],[121.984185820313,29.5979494453125],[121.977345,29.553843]],[[121.817345,29.1838430000001],[121.820767851563,29.1716506171876],[121.829537382813,29.1804201484375],[121.813922148438,29.1960353828125],[121.805152617188,29.1872658515625],[121.817345,29.1838430000001]]]]}},{"type":"Feature","properties":{"name":"余姚市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.077345,30.2538430000001],[121.065152617188,30.2504201484375],[121.073922148438,30.2416506171875],[121.092594023438,30.2424977851563],[121.103018828125,30.1795998359375],[121.13205203125,30.1679323554687],[121.191163359375,30.1781081367188],[121.229766875,30.1630812812501],[121.211612578125,30.1495778632813],[121.203077421875,30.1381081367188],[121.16923953125,30.1181813789063],[121.196866484375,30.0810451484375],[121.2522278125,30.0679616523438],[121.302345,30.0765895820313],[121.367345,30.0654006171876],[121.39291140625,30.0698024726563],[121.405875273438,30.0523732734375],[121.417345,30.043843],[121.414346953125,30.0368410468751],[121.400343046875,30.030844953125],[121.394014921875,29.9843849921876],[121.380914335938,29.993139875],[121.374346953125,29.966841046875],[121.354429960938,29.95831565625],[121.384346953125,29.950844953125],[121.387345,29.9438430000001],[121.37298953125,29.9339333320313],[121.357935820313,29.8936916328125],[121.332789335938,29.910063703125],[121.322345,29.9077223945313],[121.304459257813,29.9117311835938],[121.28326296875,29.8979274726563],[121.243258085938,29.8829592109376],[121.22326296875,29.8479274726563],[121.17564578125,29.8158620429687],[121.145865507813,29.7727370429688],[121.153385039063,29.7391945625],[121.187345,29.733843],[121.181905546875,29.7275270820313],[121.112388945313,29.6782399726563],[121.076827421875,29.6980812812501],[121.0522278125,29.7000588203125],[121.047345,29.6838430000001],[120.982760039063,29.6703298164063],[121.002535429688,29.6886525703126],[121.012154570313,29.7090334296876],[121.022740507813,29.7188430000001],[121.012154570313,29.7286525703126],[121.007345,29.733843],[121.023013945313,29.75847190625],[121.021319609375,29.7720803046876],[121.052345,29.7682204414063],[121.068428984375,29.7702223945313],[121.093824492188,29.8019362617188],[121.091724882813,29.818843],[121.094381132813,29.8402028632813],[121.069249296875,29.8603249335938],[121.051954375,29.8581716132813],[121.016031523438,29.8844118476563],[121.032896757813,29.9282888007813],[121.041793242188,29.9593971992188],[121.081842070313,29.976274640625],[121.091793242188,29.99530784375],[121.031793242188,30.0082888007813],[120.994117460938,30.0227712226563],[120.982896757813,30.0493971992188],[120.971793242188,30.0682888007813],[120.962896757813,30.0893971992188],[120.941793242188,30.0982888007813],[120.930865507813,30.1119362617188],[120.932965117188,30.128843],[120.928736601563,30.1628493476563],[120.871793242188,30.2582888007813],[120.867345,30.273843],[120.88142703125,30.2797585273438],[120.91326296875,30.2879274726563],[120.949595976563,30.3115895820313],[121.01326296875,30.3279274726563],[121.037345,30.343843],[121.04849734375,30.3349123359375],[121.093292265625,30.2789064765625],[121.077345,30.2538430000001]]]]}},{"type":"Feature","properties":{"name":"镇海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.63427859375,30.0507741523438],[121.67968875,29.991938703125],[121.75298953125,29.9794875312501],[121.757345,29.973843],[121.740704375,29.970483625],[121.713985625,29.947202375],[121.690704375,29.940483625],[121.683985625,29.9272023750001],[121.650704375,29.910483625],[121.647345,29.9038430000001],[121.637345,29.9038430000001],[121.63271609375,29.90921409375],[121.620328398438,29.9198854804687],[121.601998320313,29.9184133125001],[121.59271609375,29.93921409375],[121.522974882813,29.9892946601563],[121.507345,29.9880397773438],[121.485855742188,29.9897658515625],[121.47029421875,30.02464378125],[121.477345,30.043843],[121.512110625,30.0598073554688],[121.596881132813,30.0397731757813],[121.611612578125,30.0595778632813],[121.617345,30.0638430000001],[121.63427859375,30.0507741523438]]]]}},{"type":"Feature","properties":{"name":"鄞州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4026965625,29.9513210273438],[121.425601835938,29.9335671210938],[121.44330203125,29.9415187812501],[121.45947390625,29.9108132148438],[121.49521609375,29.9268727851563],[121.507345,29.9038430000001],[121.489215117188,29.8913259101563],[121.50326296875,29.8697585273438],[121.512423125,29.8452663398438],[121.547345,29.853843],[121.551676054688,29.8475710273438],[121.562345,29.8499636054688],[121.572345,29.8477223945313],[121.611710234375,29.8565480781251],[121.63142703125,29.8741188789063],[121.61142703125,29.8879274726563],[121.607345,29.9038430000001],[121.637345,29.9038430000001],[121.647345,29.9038430000001],[121.6610559375,29.8915920234375],[121.682144804688,29.8584328437501],[121.7305871875,29.8714064765626],[121.751500273438,29.8479982734375],[121.772628203125,29.8291237617187],[121.782061796875,29.8185622382812],[121.867345,29.743843],[121.85884890625,29.6950099921875],[121.805943632813,29.672719953125],[121.757345,29.633843],[121.649776640625,29.6279543281251],[121.612345,29.6294387031251],[121.587345,29.6284474921875],[121.569644804688,29.6291481757813],[121.552535429688,29.65085471875],[121.577413359375,29.6978713203126],[121.526500273438,29.7099977851563],[121.474703398438,29.7079445625],[121.457720976563,29.77925315625],[121.441011992188,29.7785915351563],[121.413839140625,29.7492678046875],[121.381339140625,29.7339284492188],[121.252213164063,29.7390456367188],[121.202218046875,29.7285866523438],[121.192345,29.7392385078126],[121.187345,29.733843],[121.153385039063,29.7391945625],[121.145865507813,29.7727370429688],[121.17564578125,29.8158620429687],[121.22326296875,29.8479274726563],[121.243258085938,29.8829592109376],[121.28326296875,29.8979274726563],[121.304459257813,29.9117311835938],[121.322345,29.9077223945313],[121.332789335938,29.910063703125],[121.357935820313,29.8936916328125],[121.37298953125,29.9339333320313],[121.387345,29.9438430000001],[121.4026965625,29.9513210273438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"苍南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.84334109375,27.076567609375],[120.847345,27.0538430000001],[120.834346953125,27.0594045234376],[120.84334109375,27.076567609375]]],[[[120.473922148438,27.1660353828125],[120.477345,27.153843],[120.465152617188,27.1572658515625],[120.473922148438,27.1660353828125]]],[[[120.52334109375,27.176567609375],[120.527345,27.153843],[120.514346953125,27.1594045234375],[120.52334109375,27.176567609375]]],[[[120.417345,27.193843],[120.43062625,27.18712425],[120.437345,27.173843],[120.427345,27.173843],[120.417345,27.173843],[120.417345,27.183843],[120.417345,27.193843]]],[[[120.537345,27.323843],[120.537345,27.333843],[120.550152617188,27.328843],[120.537345,27.323843]]],[[[120.587345,27.343843],[120.583922148438,27.3316506171876],[120.575152617188,27.3404201484376],[120.587345,27.343843]]],[[[120.587345,27.343843],[120.590767851563,27.3560353828125],[120.599537382813,27.3472658515625],[120.587345,27.343843]]],[[[120.703922148438,27.5360353828125],[120.707345,27.523843],[120.695152617188,27.5272658515626],[120.703922148438,27.5360353828125]]],[[[120.537345,27.333843],[120.517345,27.333843],[120.513922148438,27.3460353828125],[120.505152617188,27.3372658515626],[120.517345,27.333843],[120.517345,27.323843],[120.537345,27.323843],[120.541881132813,27.3183815742187],[120.561422148438,27.3021486640625],[120.512808867188,27.2617678046875],[120.521881132813,27.2483815742188],[120.53322390625,27.2389601875],[120.511798125,27.2091896796875],[120.513170195313,27.1957692695313],[120.466964140625,27.1693044257813],[120.461812773438,27.1886354804688],[120.464815703125,27.21808128125],[120.451954375,27.2193923164063],[120.442735625,27.2082936835938],[120.430391875,27.2095510078125],[120.417345,27.193843],[120.407345,27.193843],[120.407345,27.2038430000001],[120.397345,27.2038430000001],[120.397345,27.213843],[120.397345,27.223843],[120.403526640625,27.2291677070313],[120.4019153125,27.2491896796875],[120.423116484375,27.2586501289063],[120.373663359375,27.3284011054688],[120.3566028125,27.3430983710938],[120.341300078125,27.3608571601563],[120.343629179688,27.3898146796875],[120.315865507813,27.4137331367188],[120.30271609375,27.39847190625],[120.267769804688,27.38921409375],[120.25271609375,27.43921409375],[120.247345,27.443843],[120.22326296875,27.4597585273438],[120.20142703125,27.4679274726563],[120.12326296875,27.5197585273438],[120.10142703125,27.5279274726563],[120.08326296875,27.5397585273438],[120.06076296875,27.5481764960938],[120.067345,27.563843],[120.077345,27.563843],[120.077345,27.573843],[120.09302859375,27.5693581367188],[120.091314726563,27.5555593085938],[120.189234648438,27.5275978828125],[120.252232695313,27.5394802070313],[120.295719023438,27.5340700507813],[120.321793242188,27.5493971992188],[120.352896757813,27.5582888007813],[120.37373171875,27.5705373359375],[120.397345,27.5676003242188],[120.412799101563,27.5695217109375],[120.428472929688,27.5499465156251],[120.442345,27.5482204414063],[120.462345,27.550708234375],[120.485582304688,27.547817609375],[120.480548125,27.5882888007813],[120.492896757813,27.5793971992188],[120.502515898438,27.5673854804688],[120.512345,27.590708234375],[120.532345,27.5882204414063],[120.547345,27.5900856757813],[120.577735625,27.5863063789063],[120.597345,27.593843],[120.604991484375,27.5756423164063],[120.598521757813,27.5467946601563],[120.631832304688,27.4973268867188],[120.666095,27.5117189765626],[120.679576445313,27.4515846992188],[120.662345,27.4477223945313],[120.6483996875,27.4508473945313],[120.640103789063,27.413843],[120.65142703125,27.3633205390625],[120.617965117188,27.3684596992188],[120.603013945313,27.3901149726563],[120.584459257813,27.3859548164063],[120.550714140625,27.4079274726563],[120.534361601563,27.3759328437501],[120.56142703125,27.3819997382813],[120.55326296875,27.3679274726563],[120.527135039063,27.3581520820313],[120.537345,27.333843]]]]}},{"type":"Feature","properties":{"name":"洞头县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.183922148438,27.7460353828125],[121.187345,27.7338430000001],[121.175152617188,27.7372658515625],[121.183922148438,27.7460353828125]]],[[[121.141910429688,27.7665407539063],[121.147345,27.753843],[121.124346953125,27.7578957343751],[121.141910429688,27.7665407539063]]],[[[121.08334109375,27.796567609375],[121.087345,27.7738430000001],[121.074346953125,27.7794045234375],[121.08334109375,27.796567609375]]],[[[121.137345,27.803843],[121.133922148438,27.7916506171876],[121.125152617188,27.8004201484375],[121.137345,27.803843]]],[[[121.097345,27.8138430000001],[121.093922148438,27.8016506171875],[121.085152617188,27.8104201484375],[121.097345,27.8138430000001]]],[[[121.137345,27.803843],[121.140767851563,27.8160353828125],[121.149537382813,27.8072658515625],[121.137345,27.803843]]],[[[121.167345,27.823843],[121.179537382813,27.8204201484375],[121.170767851563,27.8116506171875],[121.167345,27.823843]]],[[[121.027345,27.843843],[121.023922148438,27.8316506171876],[121.015152617188,27.8404201484375],[121.027345,27.843843]]],[[[121.167345,27.823843],[121.141929960938,27.8300856757813],[121.122789335938,27.8176222968751],[121.112066679688,27.8200270820313],[121.097345,27.8138430000001],[121.090831328125,27.8293459296875],[121.121099882813,27.8502443671875],[121.153013945313,27.8430886054688],[121.167345,27.863843],[121.185494414063,27.8513112617188],[121.167345,27.823843]]],[[[121.027345,27.843843],[121.035094023438,27.8740407539063],[121.08142703125,27.8567018867188],[121.062681914063,27.8476467109375],[121.045548125,27.8514870429688],[121.027345,27.843843]]],[[[121.167345,27.863843],[121.155152617188,27.8672658515626],[121.163922148438,27.8760353828125],[121.167345,27.863843]]],[[[121.113922148438,27.8860353828125],[121.117345,27.873843],[121.105152617188,27.8772658515626],[121.113922148438,27.8860353828125]]],[[[121.14166140625,27.907309796875],[121.147345,27.873843],[121.12298953125,27.892641828125],[121.14166140625,27.907309796875]]],[[[121.121910429688,27.9265407539063],[121.127345,27.913843],[121.104346953125,27.917895734375],[121.121910429688,27.9265407539063]]],[[[121.057345,27.983843],[121.072056914063,27.9777980781251],[121.111070585938,27.9855080390626],[121.151519804688,27.9565163398438],[121.102828398438,27.945727765625],[121.040562773438,27.958208234375],[121.057345,27.983843]]],[[[121.057345,27.983843],[121.0341028125,27.988843],[121.057345,27.993843],[121.057345,27.983843]]],[[[121.191065703125,27.980122296875],[121.187345,27.9638430000001],[121.177135039063,27.9698952460938],[121.167633085938,27.9975637031251],[121.230694609375,27.9891823554688],[121.191065703125,27.980122296875]]],[[[121.057345,27.993843],[121.074073515625,28.0272023750001],[121.073985625,27.997202375],[121.057345,27.993843]]]]}},{"type":"Feature","properties":{"name":"龙湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.912999296875,27.9623049140625],[120.8926184375,27.9461159492188],[120.86181765625,27.9616994453125],[120.857345,27.983843],[120.917345,27.983843],[120.912999296875,27.9623049140625]]],[[[120.737769804688,27.9982888007813],[120.786143828125,27.9698537421875],[120.797345,27.983843],[120.837345,27.983843],[120.8460559375,27.9525563789062],[120.87369265625,27.9312233710938],[120.86002078125,27.8507155585938],[120.842345,27.8481032539063],[120.816773710938,27.8518825507813],[120.800260039063,27.811528546875],[120.777345,27.793843],[120.769537382813,27.8060378242188],[120.739869414063,27.8250319648438],[120.751109648438,27.8650319648438],[120.737345,27.873843],[120.7446496875,27.9035720039063],[120.741221953125,27.918843],[120.744215117188,27.9321950507813],[120.719132109375,27.9495143867188],[120.725767851563,27.9791139960938],[120.707345,27.983843],[120.711793242188,27.9893971992188],[120.737769804688,27.9982888007813]]]]}},{"type":"Feature","properties":{"name":"鹿城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.427345,28.053843],[120.423922148438,28.0416506171875],[120.415152617188,28.0504201484375],[120.427345,28.053843]]],[[[120.427345,28.053843],[120.423985625,28.080483625],[120.40406375,28.0905617500001],[120.397345,28.103843],[120.40486453125,28.1189748359375],[120.393985625,28.140483625],[120.375211210938,28.1499806953125],[120.417345,28.1538430000001],[120.4324621875,28.1593947578126],[120.46306765625,28.1376955390625],[120.487345,28.1396462226563],[120.507345,28.1380397773438],[120.551651640625,28.1415993476563],[120.56197390625,28.11847190625],[120.58963015625,28.1061305976563],[120.60197390625,28.03847190625],[120.759757109375,28.0239748359376],[120.787345,28.013843],[120.790704375,27.997202375],[120.797345,27.983843],[120.786143828125,27.9698537421875],[120.737769804688,27.9982888007813],[120.711793242188,27.9893971992188],[120.707345,27.983843],[120.69255984375,27.9772194648438],[120.672345,27.9835158515625],[120.642003203125,27.9740651679688],[120.633194609375,28.0114626289063],[120.612803984375,27.99714378125],[120.582471953125,28.0065895820313],[120.550094023438,28.0328151679688],[120.532310820313,28.0272756171876],[120.490679960938,28.0409670234376],[120.462345,28.060864484375],[120.442608671875,28.0470070625001],[120.427345,28.053843]]]]}},{"type":"Feature","properties":{"name":"平阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.013922148438,27.4260353828125],[121.017345,27.413843],[121.005152617188,27.4172658515626],[121.013922148438,27.4260353828125]]],[[[121.033922148438,27.4360353828125],[121.037345,27.423843],[121.025152617188,27.4272658515625],[121.033922148438,27.4360353828125]]],[[[121.083922148438,27.4360353828125],[121.087345,27.423843],[121.075152617188,27.4272658515625],[121.083922148438,27.4360353828125]]],[[[121.057345,27.453843],[121.069537382813,27.4504201484376],[121.060767851563,27.4416506171875],[121.057345,27.453843]]],[[[121.097345,27.453843],[121.109537382813,27.4504201484376],[121.100767851563,27.4416506171875],[121.097345,27.453843]]],[[[121.057345,27.453843],[121.044537382813,27.458843],[121.057345,27.4638430000001],[121.057345,27.453843]]],[[[121.113922148438,27.4760353828125],[121.117345,27.4638430000001],[121.105152617188,27.4672658515625],[121.113922148438,27.4760353828125]]],[[[121.097345,27.453843],[121.057345,27.4638430000001],[121.061031523438,27.4820973945313],[121.09062625,27.4671242500001],[121.097345,27.453843]]],[[[120.327345,27.743843],[120.315152617188,27.7472658515625],[120.323922148438,27.7560353828126],[120.327345,27.743843]]],[[[120.327345,27.743843],[120.351793242188,27.7282888007813],[120.372896757813,27.7193971992188],[120.398267851563,27.6877150703126],[120.429210234375,27.6915627265625],[120.462530546875,27.671977765625],[120.482896757813,27.6882888007813],[120.491798125,27.7194118476563],[120.546041289063,27.7627931953126],[120.6110559375,27.7442043281251],[120.612965117188,27.728843],[120.608951445313,27.6965554023438],[120.6326575,27.6995046210938],[120.667345,27.683843],[120.661104765625,27.6584279609376],[120.6768371875,27.6342678046876],[120.630753203125,27.5958376289063],[120.612066679688,27.6000270820313],[120.597345,27.593843],[120.577735625,27.5863063789063],[120.547345,27.5900856757813],[120.532345,27.5882204414063],[120.512345,27.590708234375],[120.502515898438,27.5673854804688],[120.492896757813,27.5793971992188],[120.480548125,27.5882888007813],[120.485582304688,27.547817609375],[120.462345,27.550708234375],[120.442345,27.5482204414063],[120.428472929688,27.5499465156251],[120.412799101563,27.5695217109375],[120.397345,27.5676003242188],[120.37373171875,27.5705373359375],[120.352896757813,27.5582888007813],[120.321793242188,27.5493971992188],[120.295719023438,27.5340700507813],[120.252232695313,27.5394802070313],[120.189234648438,27.5275978828125],[120.091314726563,27.5555593085938],[120.09302859375,27.5693581367188],[120.077345,27.573843],[120.070611601563,27.5790407539063],[120.111129179688,27.5956252265626],[120.113140898438,27.609233625],[120.101109648438,27.6291774726563],[120.12170046875,27.67948753125],[120.190084257813,27.6911037421875],[120.247345,27.7338430000001],[120.253336210938,27.7220021796876],[120.282345,27.7361696601563],[120.302345,27.72640159375],[120.323829375,27.7368923164063],[120.327345,27.743843]]]]}},{"type":"Feature","properties":{"name":"瑞安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.223922148438,27.6260353828125],[121.227345,27.613843],[121.215152617188,27.6172658515625],[121.223922148438,27.6260353828125]]],[[[121.163922148438,27.6360353828126],[121.167345,27.6238430000001],[121.155152617188,27.6272658515625],[121.163922148438,27.6360353828126]]],[[[121.203922148438,27.6360353828126],[121.207345,27.6238430000001],[121.195152617188,27.6272658515625],[121.203922148438,27.6360353828126]]],[[[120.823922148438,27.6560353828125],[120.827345,27.643843],[120.815152617188,27.6472658515626],[120.823922148438,27.6560353828125]]],[[[120.933922148438,27.6560353828125],[120.937345,27.643843],[120.925152617188,27.6472658515626],[120.933922148438,27.6560353828125]]],[[[120.973922148438,27.6660353828125],[120.977345,27.653843],[120.965152617188,27.6572658515625],[120.973922148438,27.6660353828125]]],[[[120.897345,27.7038430000001],[120.909537382813,27.7004201484375],[120.900767851563,27.6916506171875],[120.897345,27.7038430000001]]],[[[120.897345,27.7038430000001],[120.885152617188,27.7072658515625],[120.893922148438,27.7160353828126],[120.897345,27.7038430000001]]],[[[120.327345,27.743843],[120.323922148438,27.7560353828126],[120.315152617188,27.7472658515625],[120.323829375,27.7368923164063],[120.302345,27.72640159375],[120.282345,27.7361696601563],[120.253336210938,27.7220021796876],[120.247345,27.7338430000001],[120.221207304688,27.7677053046875],[120.170230742188,27.8070510078125],[120.193546171875,27.8457033515626],[120.190206328125,27.8683303046875],[120.20298953125,27.87819846875],[120.21170046875,27.88948753125],[120.223160429688,27.8983303046875],[120.22048953125,27.9164040351563],[120.227345,27.933843],[120.233531523438,27.9376564765625],[120.251500273438,27.9706618476563],[120.2697278125,27.9649855781251],[120.301104765625,27.987016828125],[120.33255984375,27.9772194648438],[120.347345,27.983843],[120.383443632813,27.9799391914063],[120.404796171875,27.965317609375],[120.445572539063,27.9767751289063],[120.496558867188,27.958843],[120.49072390625,27.93808128125],[120.503443632813,27.9299391914062],[120.511246367188,27.9177468085938],[120.533443632813,27.9099391914063],[120.551886015625,27.897309796875],[120.5890246875,27.9077468085937],[120.61603640625,27.8769826484375],[120.6095325,27.8538381171875],[120.632345,27.86024925],[120.668531523438,27.8500783515625],[120.681246367188,27.8699391914063],[120.737345,27.873843],[120.751109648438,27.8650319648438],[120.739869414063,27.8250319648438],[120.769537382813,27.8060378242188],[120.777345,27.793843],[120.76170046875,27.76948753125],[120.7462903125,27.7318288398438],[120.688365507813,27.7081227851563],[120.67298953125,27.68819846875],[120.667345,27.683843],[120.6326575,27.6995046210938],[120.608951445313,27.6965554023438],[120.612965117188,27.728843],[120.6110559375,27.7442043281251],[120.546041289063,27.7627931953126],[120.491798125,27.7194118476563],[120.482896757813,27.6882888007813],[120.462530546875,27.671977765625],[120.429210234375,27.6915627265625],[120.398267851563,27.6877150703126],[120.372896757813,27.7193971992188],[120.351793242188,27.7282888007813],[120.327345,27.743843]]]]}},{"type":"Feature","properties":{"name":"泰顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.817862578125,27.8186525703126],[119.832154570313,27.7586525703125],[119.871549101563,27.7221511054688],[119.888365507813,27.6690334296875],[119.902535429688,27.6786525703125],[119.912877226563,27.6898122382813],[119.951812773438,27.6882692695313],[119.980474882813,27.7034377265626],[119.992550078125,27.6689943671875],[119.991392851563,27.6397634101563],[120.012550078125,27.6090138984375],[120.011773710938,27.5894606757812],[120.032345,27.5886452460938],[120.04252078125,27.589048078125],[120.056964140625,27.573462140625],[120.067345,27.563843],[120.06076296875,27.5481764960938],[120.08326296875,27.5397585273438],[120.10142703125,27.5279274726563],[120.12326296875,27.5197585273438],[120.20142703125,27.4679274726563],[120.22326296875,27.4597585273438],[120.247345,27.443843],[120.233043242188,27.4289601875],[120.217345,27.428637921875],[120.185264921875,27.4292946601563],[120.13224734375,27.4189430976563],[120.12244265625,27.3987380195313],[120.102857695313,27.3991384101563],[120.09224734375,27.3889430976563],[120.0744934375,27.3704665351563],[120.02845828125,27.3392629218751],[119.99771609375,27.3861525703125],[119.96224734375,27.3689430976562],[119.93244265625,27.3287429023437],[119.927345,27.323843],[119.912584257813,27.3173708320313],[119.902105742188,27.3203151679687],[119.872345,27.3072658515625],[119.841729765625,27.3206911445313],[119.828531523438,27.3000783515626],[119.792105742188,27.3103151679688],[119.777345,27.303843],[119.765504179688,27.3098342109375],[119.77478640625,27.328843],[119.764293242188,27.3503273750001],[119.737486601563,27.3638893867188],[119.747203398438,27.3837966132813],[119.727345,27.3938430000001],[119.727345,27.403843],[119.717345,27.403843],[119.707345,27.403843],[119.69060671875,27.4388039375001],[119.705806914063,27.4727321601563],[119.700787382813,27.488843],[119.703912382813,27.4988747382812],[119.688590117188,27.5454592109375],[119.656632109375,27.5355055976563],[119.668873320313,27.5748024726563],[119.631158476563,27.5876564765625],[119.620460234375,27.6190407539063],[119.633531523438,27.6376564765626],[119.637345,27.673843],[119.6486340625,27.717827375],[119.669176054688,27.7320119453126],[119.68142703125,27.7497585273438],[119.705513945313,27.7587721992188],[119.739176054688,27.7820119453125],[119.754088164063,27.8036110664062],[119.777345,27.793843],[119.817862578125,27.8186525703126]]]]}},{"type":"Feature","properties":{"name":"文成县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.156456328125,27.9874391914063],[120.191070585938,27.9442140937501],[120.227345,27.933843],[120.22048953125,27.9164040351563],[120.223160429688,27.8983303046875],[120.21170046875,27.88948753125],[120.20298953125,27.87819846875],[120.190206328125,27.8683303046875],[120.193546171875,27.8457033515626],[120.170230742188,27.8070510078125],[120.221207304688,27.7677053046875],[120.247345,27.7338430000001],[120.190084257813,27.6911037421875],[120.12170046875,27.67948753125],[120.101109648438,27.6291774726563],[120.113140898438,27.609233625],[120.111129179688,27.5956252265626],[120.070611601563,27.5790407539063],[120.077345,27.573843],[120.077345,27.563843],[120.067345,27.563843],[120.056964140625,27.573462140625],[120.04252078125,27.589048078125],[120.032345,27.5886452460938],[120.011773710938,27.5894606757812],[120.012550078125,27.6090138984375],[119.991392851563,27.6397634101563],[119.992550078125,27.6689943671875],[119.980474882813,27.7034377265626],[119.951812773438,27.6882692695313],[119.912877226563,27.6898122382813],[119.902535429688,27.6786525703125],[119.888365507813,27.6690334296875],[119.871549101563,27.7221511054688],[119.832154570313,27.7586525703125],[119.817862578125,27.8186525703126],[119.777345,27.793843],[119.7830871875,27.8288088203125],[119.780592070313,27.8456911445313],[119.793116484375,27.8886330390625],[119.7880090625,27.9231789375001],[119.830172148438,27.9169484687501],[119.843375273438,27.938843],[119.83107546875,27.9592360664063],[119.867345,27.973843],[119.897125273438,27.9548976875],[119.936920195313,27.9782888007813],[119.96302859375,27.9693508125],[119.959898710938,27.944184796875],[120.002345,27.9494655585938],[120.023033476563,27.9468923164062],[120.06302859375,27.9583278632813],[120.060889921875,27.975551984375],[120.156456328125,27.9874391914063]]]]}},{"type":"Feature","properties":{"name":"永嘉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.702667265625,28.6100221992188],[120.722345,28.6084401679688],[120.741363554688,28.6099684882813],[120.76197390625,28.5984719062501],[120.797345,28.593843],[120.801612578125,28.5781081367188],[120.8301184375,28.5667800117188],[120.834068632813,28.543843],[120.83099734375,28.5260036445313],[120.853077421875,28.5095778632813],[120.867808867188,28.4897731757813],[120.952955351563,28.5098952460938],[120.961612578125,28.4881081367188],[120.967345,28.483843],[120.975206328125,28.4499123359376],[120.960206328125,28.4383303046875],[120.963082304688,28.4188430000001],[120.961519804688,28.4082717109376],[120.983721953125,28.3991872382813],[120.96154421875,28.3692726875],[120.964312773438,28.3505153632813],[120.92990359375,28.3369875312501],[120.8880090625,28.3431789375001],[120.899078398438,28.2682912421876],[120.881173125,28.238608625],[120.898336210938,28.2253615546875],[120.813858671875,28.11218284375],[120.80298953125,28.0481984687501],[120.787345,28.013843],[120.759757109375,28.0239748359376],[120.60197390625,28.03847190625],[120.58963015625,28.1061305976563],[120.56197390625,28.11847190625],[120.551651640625,28.1415993476563],[120.507345,28.1380397773438],[120.487345,28.1396462226563],[120.46306765625,28.1376955390625],[120.4324621875,28.1593947578126],[120.417345,28.1538430000001],[120.411578398438,28.1792263007813],[120.42334109375,28.1886428046876],[120.411431914063,28.2089040351562],[120.433258085938,28.2387819648437],[120.421793242188,28.2582888007813],[120.408824492188,28.3036501289063],[120.351666289063,28.3383669257813],[120.354381132813,28.3602028632813],[120.331666289063,28.3783888984375],[120.333941679688,28.3966799140626],[120.327345,28.413843],[120.33326296875,28.4179274726563],[120.34509890625,28.43507346875],[120.379303007813,28.4128005195313],[120.3700403125,28.4541139960938],[120.377345,28.483843],[120.38271609375,28.4792140937501],[120.395504179688,28.4643703437501],[120.42271609375,28.53847190625],[120.437398710938,28.5872414375001],[120.464439726563,28.5894118476563],[120.55662234375,28.5379811835938],[120.572345,28.5392458320313],[120.621656523438,28.5352834296875],[120.622745390625,28.548843],[120.6219153125,28.5591896796875],[120.6427746875,28.5684963203125],[120.6419153125,28.5792018867188],[120.684439726563,28.5888625312501],[120.702667265625,28.6100221992188]]]]}},{"type":"Feature","properties":{"name":"瓯海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.427345,28.053843],[120.415152617188,28.0504201484375],[120.423922148438,28.0416506171875],[120.442608671875,28.0470070625001],[120.462345,28.060864484375],[120.490679960938,28.0409670234376],[120.532310820313,28.0272756171876],[120.550094023438,28.0328151679688],[120.582471953125,28.0065895820313],[120.612803984375,27.99714378125],[120.633194609375,28.0114626289063],[120.642003203125,27.9740651679688],[120.672345,27.9835158515625],[120.69255984375,27.9772194648438],[120.707345,27.983843],[120.725767851563,27.9791139960938],[120.719132109375,27.9495143867188],[120.744215117188,27.9321950507813],[120.741221953125,27.918843],[120.7446496875,27.9035720039063],[120.737345,27.873843],[120.681246367188,27.8699391914063],[120.668531523438,27.8500783515625],[120.632345,27.86024925],[120.6095325,27.8538381171875],[120.61603640625,27.8769826484375],[120.5890246875,27.9077468085937],[120.551886015625,27.897309796875],[120.533443632813,27.9099391914063],[120.511246367188,27.9177468085938],[120.503443632813,27.9299391914062],[120.49072390625,27.93808128125],[120.496558867188,27.958843],[120.445572539063,27.9767751289063],[120.404796171875,27.965317609375],[120.383443632813,27.9799391914063],[120.347345,27.983843],[120.34298953125,27.9894875312501],[120.330948515625,27.9987795234375],[120.35170046875,28.04948753125],[120.364483671875,28.0593556953125],[120.360128203125,28.0888527656251],[120.397345,28.103843],[120.40406375,28.0905617500001],[120.423985625,28.080483625],[120.427345,28.053843]]]]}},{"type":"Feature","properties":{"name":"乐清市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.167345,28.3438430000001],[121.179537382813,28.3472658515625],[121.170767851563,28.3560353828125],[121.15142703125,28.3397585273438],[121.14326296875,28.3179274726563],[121.13107546875,28.3095143867188],[121.133565703125,28.2983962226563],[121.11611453125,28.27159690625],[121.13361453125,28.2595143867188],[121.124713164063,28.2198024726563],[121.10142703125,28.1897585273438],[121.09326296875,28.1679274726563],[121.07142703125,28.1597585273438],[121.05326296875,28.1479274726563],[121.03142703125,28.1397585273438],[121.00970828125,28.1256130195313],[121.013565703125,28.1083962226563],[121.001124296875,28.0892897773438],[121.003468046875,28.0788430000001],[120.998980742188,28.058843],[121.003565703125,28.0383962226563],[120.9841028125,28.00851096875],[120.951138945313,27.9857497382812],[120.923013945313,27.992055890625],[120.917345,27.983843],[120.857345,27.983843],[120.837345,27.983843],[120.797345,27.983843],[120.790704375,27.997202375],[120.787345,28.013843],[120.80298953125,28.0481984687501],[120.813858671875,28.11218284375],[120.898336210938,28.2253615546875],[120.881173125,28.238608625],[120.899078398438,28.2682912421876],[120.8880090625,28.3431789375001],[120.92990359375,28.3369875312501],[120.964312773438,28.3505153632813],[120.96154421875,28.3692726875],[120.983721953125,28.3991872382813],[120.961519804688,28.4082717109376],[120.963082304688,28.4188430000001],[120.960206328125,28.4383303046875],[120.975206328125,28.4499123359376],[120.967345,28.483843],[120.992261992188,28.4778395820313],[121.007345,28.4808180976563],[121.022413359375,28.4778420234375],[121.07564578125,28.4885158515625],[121.096910429688,28.5436428046875],[121.126314726563,28.5249758125001],[121.161519804688,28.5180178046875],[121.167345,28.513843],[121.177701445313,28.4819338203125],[121.222447539063,28.4389382148438],[121.222242460938,28.4287477851563],[121.251871367188,28.4002761054688],[121.207345,28.373843],[121.201236601563,28.3782228828125],[121.205147734375,28.3980178046875],[121.163936796875,28.3834523750001],[121.183170195313,28.3696681953125],[121.19189578125,28.3574953437501],[121.207345,28.363843],[121.201217070313,28.3388845039063],[121.205504179688,28.3197585273438],[121.177388945313,28.3292995429688],[121.167345,28.3438430000001]],[[121.077345,28.283843],[121.082779570313,28.2711452460937],[121.100343046875,28.279790265625],[121.073922148438,28.2960353828125],[121.065152617188,28.2872658515626],[121.077345,28.283843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海宁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.657345,30.583843],[120.727345,30.583843],[120.7309778125,30.5674733710937],[120.7437121875,30.5602126289063],[120.752066679688,30.5225539375],[120.775499296875,30.5091921210938],[120.7937121875,30.4702126289063],[120.8009778125,30.4374733710938],[120.820767851563,30.4261891914062],[120.805689726563,30.3861891914062],[120.8337121875,30.3702126289063],[120.8409778125,30.3174733710938],[120.8537121875,30.2902126289063],[120.857345,30.273843],[120.83326296875,30.2679274726563],[120.777345,30.263843],[120.77326296875,30.2697585273438],[120.717345,30.2838430000001],[120.701881132813,30.3183815742188],[120.69031375,30.3833083320313],[120.570914335938,30.3983815742188],[120.437257109375,30.3847560859375],[120.412808867188,30.3283815742187],[120.407345,30.3238430000001],[120.386773710938,30.33972190625],[120.37298953125,30.3627614570313],[120.400860625,30.3842775703126],[120.337345,30.373843],[120.301051054688,30.3988014960938],[120.330953398438,30.42274925],[120.337345,30.473843],[120.342154570313,30.4790334296876],[120.366378203125,30.4904665351563],[120.412511015625,30.4886379218751],[120.432178984375,30.499048078125],[120.452345,30.4982472968751],[120.472486601563,30.4990456367188],[120.548092070313,30.4792360664062],[120.569556914063,30.5247194648438],[120.642535429688,30.5386525703125],[120.664381132813,30.5502126289063],[120.657345,30.583843]]],[[[120.657345,30.583843],[120.647345,30.583843],[120.652345,30.5966506171875],[120.657345,30.583843]]]]}},{"type":"Feature","properties":{"name":"海盐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.972393828125,30.6390846992188],[121.003209257813,30.6282839179688],[121.0259778125,30.6291847968751],[121.065440703125,30.56808128125],[121.134874296875,30.5313405585938],[121.237345,30.503843],[121.237345,30.453843],[121.164888945313,30.4348513007813],[121.08240359375,30.3996804023438],[121.0460559375,30.373520734375],[121.037345,30.343843],[121.01326296875,30.3279274726563],[120.949595976563,30.3115895820313],[120.91326296875,30.2879274726563],[120.88142703125,30.2797585273438],[120.867345,30.273843],[120.857345,30.273843],[120.8537121875,30.2902126289063],[120.8409778125,30.3174733710938],[120.8337121875,30.3702126289063],[120.805689726563,30.3861891914062],[120.820767851563,30.4261891914062],[120.8009778125,30.4374733710938],[120.7937121875,30.4702126289063],[120.775499296875,30.5091921210938],[120.752066679688,30.5225539375],[120.7437121875,30.5602126289063],[120.7309778125,30.5674733710937],[120.727345,30.583843],[120.730704375,30.600483625],[120.75062625,30.61056175],[120.757345,30.623843],[120.767345,30.623843],[120.790855742188,30.6133107734376],[120.801558867188,30.6306789375001],[120.841158476563,30.6176564765626],[120.932672148438,30.6100295234376],[120.947345,30.6338430000001],[120.972393828125,30.6390846992188]]]]}},{"type":"Feature","properties":{"name":"嘉善县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.960704375,31.017202375],[120.984254179688,31.0104055],[120.9972278125,30.983843],[120.985504179688,30.9598342109375],[120.997345,30.953843],[120.991905546875,30.8985280585938],[121.014303007813,30.879233625],[120.985660429688,30.8279055],[121.0222278125,30.8308425117188],[121.027345,30.813843],[121.0217590625,30.7809743476563],[120.997047148438,30.7773220039063],[120.957345,30.7838430000001],[120.92187625,30.7672805],[120.913013945313,30.7801149726563],[120.901676054688,30.7775710273438],[120.89326296875,30.7897585273438],[120.850719023438,30.7980666328125],[120.863526640625,30.8285646796876],[120.859996367188,30.8443190742188],[120.817345,30.833843],[120.81291140625,30.8398024726563],[120.783902617188,30.8348073554688],[120.79369265625,30.8916823554688],[120.771612578125,30.9081081367188],[120.757764921875,30.9267189765625],[120.77330203125,30.9382741523438],[120.769957304688,30.9577126289063],[120.747345,30.963843],[120.751612578125,30.9695778632812],[120.763077421875,30.9781081367188],[120.785181914063,31.0078224921875],[120.864371367188,30.9941896796876],[120.883077421875,31.0081081367188],[120.891612578125,31.0195778632813],[120.897345,31.023843],[120.917345,31.01390159375],[120.953326445313,31.0317873359376],[120.960704375,31.017202375]]]]}},{"type":"Feature","properties":{"name":"南湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.677345,30.7038430000001],[120.673922148438,30.6916506171876],[120.665152617188,30.7004201484375],[120.677345,30.7038430000001]]],[[[120.677345,30.7038430000001],[120.67298953125,30.70948753125],[120.65170046875,30.7181984687501],[120.64298953125,30.7295510078126],[120.716324492188,30.7595632148438],[120.73170046875,30.77948753125],[120.79298953125,30.78819846875],[120.80170046875,30.8094875312501],[120.817345,30.833843],[120.859996367188,30.8443190742188],[120.863526640625,30.8285646796876],[120.850719023438,30.7980666328125],[120.89326296875,30.7897585273438],[120.901676054688,30.7775710273438],[120.913013945313,30.7801149726563],[120.92187625,30.7672805],[120.957345,30.7838430000001],[120.96142703125,30.7579274726563],[120.97361453125,30.7495143867188],[120.970103789063,30.733843],[120.975709257813,30.7088430000001],[120.944845,30.6972951484375],[120.953472929688,30.6588014960938],[120.947345,30.6338430000001],[120.932672148438,30.6100295234376],[120.841158476563,30.6176564765626],[120.801558867188,30.6306789375001],[120.790855742188,30.6133107734376],[120.767345,30.623843],[120.762345,30.6366506171875],[120.757345,30.623843],[120.750206328125,30.6293556953125],[120.753082304688,30.648843],[120.751529570313,30.6593556953125],[120.763160429688,30.6683303046876],[120.761607695313,30.678843],[120.764483671875,30.6983303046876],[120.747222929688,30.7116579414063],[120.712608671875,30.6980495429688],[120.677345,30.7038430000001]]]]}},{"type":"Feature","properties":{"name":"平湖市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.116549101563,30.7879885078126],[121.167345,30.7766017890625],[121.182345,30.7799636054688],[121.192345,30.7777223945313],[121.21435671875,30.7826564765625],[121.23142703125,30.7579274726563],[121.262496367188,30.7364772773438],[121.267345,30.693843],[121.251793242188,30.6893971992188],[121.242896757813,30.5482888007813],[121.237345,30.503843],[121.134874296875,30.5313405585938],[121.065440703125,30.56808128125],[121.0259778125,30.6291847968751],[121.003209257813,30.6282839179688],[120.972393828125,30.6390846992188],[120.947345,30.6338430000001],[120.953472929688,30.6588014960938],[120.944845,30.6972951484375],[120.975709257813,30.7088430000001],[120.970103789063,30.733843],[120.97361453125,30.7495143867188],[120.96142703125,30.7579274726563],[120.957345,30.7838430000001],[120.997047148438,30.7773220039063],[121.0217590625,30.7809743476563],[121.027345,30.813843],[121.03326296875,30.8179274726563],[121.04142703125,30.8297585273438],[121.05326296875,30.8379274726563],[121.0641028125,30.8536330390626],[121.09697390625,30.861001203125],[121.11978640625,30.8452516914063],[121.124586210938,30.8238430000001],[121.116549101563,30.7879885078126]]]]}},{"type":"Feature","properties":{"name":"桐乡市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.527345,30.793843],[120.54205203125,30.7880617500001],[120.55295046875,30.7896706367188],[120.56170046875,30.74819846875],[120.5786340625,30.7351296210938],[120.59978640625,30.7077248359376],[120.612857695313,30.7096584296876],[120.62170046875,30.69819846875],[120.636514921875,30.6867653632813],[120.62298953125,30.6381984687501],[120.596568632813,30.6178054023438],[120.61170046875,30.59819846875],[120.647345,30.583843],[120.657345,30.583843],[120.664381132813,30.5502126289063],[120.642535429688,30.5386525703125],[120.569556914063,30.5247194648438],[120.548092070313,30.4792360664062],[120.472486601563,30.4990456367188],[120.452345,30.4982472968751],[120.432178984375,30.499048078125],[120.412511015625,30.4886379218751],[120.366378203125,30.4904665351563],[120.342154570313,30.4790334296876],[120.337345,30.473843],[120.327125273438,30.4801393867188],[120.313531523438,30.5200295234375],[120.297345,30.523843],[120.301158476563,30.5700295234375],[120.314698515625,30.5783718085938],[120.294146757813,30.607641828125],[120.33252078125,30.6207180000001],[120.337345,30.653843],[120.343013945313,30.662055890625],[120.362789335938,30.657622296875],[120.387261992188,30.6735573554687],[120.443648710938,30.6880275703125],[120.441051054688,30.6996169257813],[120.481138945313,30.7146169257813],[120.471041289063,30.7596584296875],[120.487345,30.763843],[120.510787382813,30.769858625],[120.527345,30.793843]]]]}},{"type":"Feature","properties":{"name":"秀洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.757345,30.623843],[120.762345,30.6366506171875],[120.767345,30.623843],[120.757345,30.623843]]],[[[120.677345,30.7038430000001],[120.665152617188,30.7004201484375],[120.673922148438,30.6916506171876],[120.712608671875,30.6980495429688],[120.747222929688,30.7116579414063],[120.764483671875,30.6983303046876],[120.761607695313,30.678843],[120.763160429688,30.6683303046876],[120.751529570313,30.6593556953125],[120.753082304688,30.648843],[120.750206328125,30.6293556953125],[120.757345,30.623843],[120.75062625,30.61056175],[120.730704375,30.600483625],[120.727345,30.583843],[120.657345,30.583843],[120.652345,30.5966506171875],[120.647345,30.583843],[120.61170046875,30.59819846875],[120.596568632813,30.6178054023438],[120.62298953125,30.6381984687501],[120.636514921875,30.6867653632813],[120.62170046875,30.69819846875],[120.612857695313,30.7096584296876],[120.59978640625,30.7077248359376],[120.5786340625,30.7351296210938],[120.56170046875,30.74819846875],[120.55295046875,30.7896706367188],[120.54205203125,30.7880617500001],[120.527345,30.793843],[120.567261992188,30.8468727851563],[120.622203398438,30.8596022773438],[120.652857695313,30.85507346875],[120.672857695313,30.8809841132813],[120.701300078125,30.8767800117188],[120.710094023438,30.93628440625],[120.67298953125,30.9649245429688],[120.706944609375,30.9732033515626],[120.747345,30.963843],[120.769957304688,30.9577126289063],[120.77330203125,30.9382741523438],[120.757764921875,30.9267189765625],[120.771612578125,30.9081081367188],[120.79369265625,30.8916823554688],[120.783902617188,30.8348073554688],[120.81291140625,30.8398024726563],[120.817345,30.833843],[120.80170046875,30.8094875312501],[120.79298953125,30.78819846875],[120.73170046875,30.77948753125],[120.716324492188,30.7595632148438],[120.64298953125,30.7295510078126],[120.65170046875,30.7181984687501],[120.67298953125,30.70948753125],[120.677345,30.7038430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安吉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627345,30.433843],[119.639537382813,30.4372658515625],[119.630767851563,30.4460353828125],[119.584117460938,30.4267409492187],[119.5565246875,30.4433864570313],[119.511241484375,30.4067897773438],[119.458082304688,30.4146437812501],[119.41298953125,30.3781984687501],[119.397345,30.373843],[119.39326296875,30.3797585273437],[119.361041289063,30.3880275703125],[119.363565703125,30.3992897773438],[119.35142703125,30.4179274726563],[119.34326296875,30.4397585273438],[119.33142703125,30.4479274726562],[119.322784453125,30.5345290351563],[119.266339140625,30.5108180976563],[119.25326296875,30.5297585273438],[119.228941679688,30.5465480781251],[119.25748171875,30.5833718085938],[119.237345,30.613843],[119.241676054688,30.6201149726563],[119.257345,30.6166017890625],[119.272345,30.6199636054688],[119.282345,30.6177223945313],[119.311119414063,30.6241725898438],[119.33142703125,30.6597585273438],[119.359469023438,30.6791188789063],[119.386461210938,30.6879274726563],[119.40142703125,30.6479274726563],[119.420714140625,30.6397585273438],[119.44142703125,30.6697585273438],[119.45326296875,30.6779274726562],[119.473092070313,30.7066506171875],[119.48142703125,30.7697585273438],[119.51720828125,30.77894065625],[119.55142703125,30.8297585273438],[119.56326296875,30.8379274726563],[119.567345,30.853843],[119.5857825,30.8617555976563],[119.602457304688,30.8575539375],[119.6494934375,30.872426984375],[119.682847929688,30.85015159375],[119.737320585938,30.8638771796875],[119.761983671875,30.8474050117188],[119.806065703125,30.8613430000001],[119.824991484375,30.8487575507813],[119.790894804688,30.8295998359375],[119.793604765625,30.8188430000001],[119.789928007813,30.8042482734375],[119.833350859375,30.7798488593751],[119.849327421875,30.7558254218751],[119.873350859375,30.7398488593751],[119.881339140625,30.727837140625],[119.887345,30.723843],[119.887345,30.7138430000001],[119.867345,30.7138430000001],[119.867345,30.693843],[119.830318632813,30.6875539375],[119.833082304688,30.6688430000001],[119.830484648438,30.6512673164063],[119.80170046875,30.63948753125],[119.79068484375,30.6125759101563],[119.803277617188,30.5582350898438],[119.767345,30.5538430000001],[119.68838015625,30.5616091132812],[119.702764921875,30.5090456367188],[119.701944609375,30.498843],[119.702764921875,30.4886037421875],[119.691807890625,30.4587673164063],[119.702999296875,30.4387136054688],[119.682535429688,30.4210842109376],[119.677345,30.4038430000001],[119.633658476563,30.3966677070313],[119.627345,30.433843]]]]}},{"type":"Feature","properties":{"name":"长兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7727746875,31.1796462226562],[119.808878203125,31.152876203125],[119.825928984375,31.1749636054688],[119.877642851563,31.1673220039063],[119.917345,31.173843],[119.92170046875,31.15819846875],[119.93298953125,31.13948753125],[119.943360625,31.1022438789063],[120.000133085938,31.02702659375],[120.051690703125,31.005923078125],[120.08427859375,30.9807741523438],[120.097345,30.963843],[120.088253203125,30.9520607734375],[120.05298953125,30.93819846875],[119.970596953125,30.9208132148438],[119.944327421875,30.8772634101563],[119.94156375,30.85855003125],[119.955206328125,30.8238430000001],[119.9394153125,30.7836721015625],[119.944019804688,30.7524929023438],[119.927125273438,30.7306008125],[119.887345,30.723843],[119.881339140625,30.727837140625],[119.873350859375,30.7398488593751],[119.849327421875,30.7558254218751],[119.833350859375,30.7798488593751],[119.789928007813,30.8042482734375],[119.793604765625,30.8188430000001],[119.790894804688,30.8295998359375],[119.824991484375,30.8487575507813],[119.806065703125,30.8613430000001],[119.761983671875,30.8474050117188],[119.737320585938,30.8638771796875],[119.682847929688,30.85015159375],[119.6494934375,30.872426984375],[119.602457304688,30.8575539375],[119.5857825,30.8617555976563],[119.567345,30.853843],[119.550328398438,30.8991310859376],[119.572808867188,30.9383815742187],[119.581881132813,30.9793044257813],[119.622178984375,31.012778546875],[119.63298953125,31.1091555],[119.621881132813,31.1183815742188],[119.617345,31.133843],[119.63298953125,31.1381984687501],[119.64170046875,31.1494875312501],[119.65298953125,31.15819846875],[119.665289335938,31.1741335273438],[119.699400664063,31.1535524726563],[119.712686796875,31.170766828125],[119.7727746875,31.1796462226562]]]]}},{"type":"Feature","properties":{"name":"德清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.267345,30.643843],[120.255152617188,30.6472658515626],[120.263922148438,30.6560353828126],[120.267345,30.643843]]],[[[120.267345,30.643843],[120.27326296875,30.6479274726563],[120.293975859375,30.6779274726562],[120.303604765625,30.6694557929688],[120.2979309375,30.6441628242188],[120.337345,30.653843],[120.33252078125,30.6207180000001],[120.294146757813,30.607641828125],[120.314698515625,30.5783718085938],[120.301158476563,30.5700295234375],[120.297345,30.523843],[120.286851835938,30.5102468085938],[120.252345,30.5051491523438],[120.192857695313,30.51394065625],[120.163741484375,30.4762209296875],[120.056431914063,30.4938478828125],[120.065640898438,30.4315456367188],[120.042135039063,30.4280739570313],[119.992467070313,30.4425539375],[119.952857695313,30.4367018867188],[119.936851835938,30.4574391914063],[119.912345,30.4610597968751],[119.88599734375,30.4571657539063],[119.871529570313,30.4683303046875],[119.873424101563,30.4811281562501],[119.830767851563,30.5068605781251],[119.807345,30.5103200507813],[119.78795046875,30.50745628125],[119.76150515625,30.5182814765625],[119.767345,30.5538430000001],[119.803277617188,30.5582350898438],[119.79068484375,30.6125759101563],[119.80170046875,30.63948753125],[119.830484648438,30.6512673164063],[119.833082304688,30.6688430000001],[119.830318632813,30.6875539375],[119.867345,30.693843],[119.87170046875,30.6781984687501],[119.905089140625,30.652426984375],[119.898765898438,30.6096193671875],[119.935889921875,30.6320143867188],[119.991710234375,30.623764875],[120.03170046875,30.63948753125],[120.072945585938,30.6509719062501],[120.102345,30.6466262031251],[120.160714140625,30.6552516914063],[120.167345,30.663843],[120.178531523438,30.6813185859375],[120.214420195313,30.6712331367187],[120.206969023438,30.6447145820313],[120.258443632813,30.6299391914063],[120.267345,30.643843]]]]}},{"type":"Feature","properties":{"name":"南浔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.267345,30.643843],[120.263922148438,30.6560353828126],[120.255152617188,30.6472658515626],[120.258443632813,30.6299391914063],[120.206969023438,30.6447145820313],[120.214420195313,30.6712331367187],[120.178531523438,30.6813185859375],[120.167345,30.663843],[120.145577421875,30.6703981757813],[120.132218046875,30.7003322578125],[120.067330351563,30.7198683906251],[120.09197390625,30.7592140937501],[120.122769804688,30.798540265625],[120.121842070313,30.8100881171875],[120.147345,30.8080397773438],[120.162345,30.8092458320313],[120.211304960938,30.8053102851562],[120.22197390625,30.82921409375],[120.31806765625,30.8510451484376],[120.34197390625,30.88921409375],[120.357345,30.8938430000001],[120.36341921875,30.8839846015626],[120.408389921875,30.89931175],[120.425855742188,30.9276564765625],[120.436475859375,30.9171071601562],[120.428487578125,30.8914577460938],[120.44404421875,30.8692995429688],[120.44064578125,30.8583864570313],[120.456202421875,30.8362282539062],[120.450538359375,30.8180373359375],[120.463531523438,30.8100295234376],[120.487345,30.763843],[120.471041289063,30.7596584296875],[120.481138945313,30.7146169257813],[120.441051054688,30.6996169257813],[120.443648710938,30.6880275703125],[120.387261992188,30.6735573554687],[120.362789335938,30.657622296875],[120.343013945313,30.662055890625],[120.337345,30.653843],[120.2979309375,30.6441628242188],[120.303604765625,30.6694557929688],[120.293975859375,30.6779274726562],[120.27326296875,30.6479274726563],[120.267345,30.643843]]]]}},{"type":"Feature","properties":{"name":"吴兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.357345,30.9438430000001],[120.357345,30.953843],[120.367345,30.953843],[120.367345,30.9438430000001],[120.357345,30.9438430000001]]],[[[120.357345,30.9438430000001],[120.357345,30.8938430000001],[120.34197390625,30.88921409375],[120.31806765625,30.8510451484376],[120.22197390625,30.82921409375],[120.211304960938,30.8053102851562],[120.162345,30.8092458320313],[120.147345,30.8080397773438],[120.121842070313,30.8100881171875],[120.122769804688,30.798540265625],[120.09197390625,30.7592140937501],[120.067330351563,30.7198683906251],[120.132218046875,30.7003322578125],[120.145577421875,30.6703981757813],[120.167345,30.663843],[120.160714140625,30.6552516914063],[120.102345,30.6466262031251],[120.072945585938,30.6509719062501],[120.03170046875,30.63948753125],[119.991710234375,30.623764875],[119.935889921875,30.6320143867188],[119.898765898438,30.6096193671875],[119.905089140625,30.652426984375],[119.87170046875,30.6781984687501],[119.867345,30.693843],[119.867345,30.7138430000001],[119.887345,30.7138430000001],[119.887345,30.723843],[119.927125273438,30.7306008125],[119.944019804688,30.7524929023438],[119.9394153125,30.7836721015625],[119.955206328125,30.8238430000001],[119.94156375,30.85855003125],[119.944327421875,30.8772634101563],[119.970596953125,30.9208132148438],[120.05298953125,30.93819846875],[120.088253203125,30.9520607734375],[120.097345,30.963843],[120.151959257813,30.9393923164063],[120.244307890625,30.9299782539063],[120.357345,30.9438430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"上虞市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.016031523438,29.8844118476563],[121.051954375,29.8581716132813],[121.069249296875,29.8603249335938],[121.094381132813,29.8402028632813],[121.091724882813,29.818843],[121.093824492188,29.8019362617188],[121.068428984375,29.7702223945313],[121.052345,29.7682204414063],[121.021319609375,29.7720803046876],[121.023013945313,29.75847190625],[121.007345,29.733843],[120.983560820313,29.74495628125],[120.957345,29.73507346875],[120.937345,29.74261253125],[120.904996367188,29.7304201484376],[120.891461210938,29.7541628242188],[120.867345,29.74507346875],[120.848013945313,29.752358625],[120.854283476563,29.7689894843751],[120.8409778125,29.7974733710938],[120.8337121875,29.8302126289063],[120.810816679688,29.8374733710938],[120.7837121875,29.8174733710938],[120.755719023438,29.8085329414063],[120.747345,29.7938430000001],[120.731441679688,29.8065773750001],[120.738228789063,29.8611403632813],[120.763004179688,29.9185378242188],[120.761695585938,29.9290602851563],[120.776182890625,29.9797878242188],[120.741793242188,30.0382888007812],[120.730230742188,30.0787209296875],[120.677345,30.0938430000001],[120.67062625,30.10712425],[120.650704375,30.1172023750001],[120.647345,30.1338430000001],[120.651793242188,30.1393971992188],[120.662896757813,30.1482888007813],[120.702921171875,30.198266828125],[120.76400515625,30.24718284375],[120.777345,30.263843],[120.83326296875,30.2679274726563],[120.857345,30.273843],[120.867345,30.273843],[120.871793242188,30.2582888007813],[120.928736601563,30.1628493476563],[120.932965117188,30.128843],[120.930865507813,30.1119362617188],[120.941793242188,30.0982888007813],[120.962896757813,30.0893971992188],[120.971793242188,30.0682888007813],[120.982896757813,30.0493971992188],[120.994117460938,30.0227712226563],[121.031793242188,30.0082888007813],[121.091793242188,29.99530784375],[121.081842070313,29.976274640625],[121.041793242188,29.9593971992188],[121.032896757813,29.9282888007813],[121.016031523438,29.8844118476563]]]]}},{"type":"Feature","properties":{"name":"绍兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.702921171875,30.198266828125],[120.662896757813,30.1482888007813],[120.651793242188,30.1393971992188],[120.647345,30.1338430000001],[120.607642851563,30.1273220039063],[120.576773710938,30.1318825507813],[120.562916289063,30.0980202460938],[120.533883085938,30.1023097968751],[120.52298953125,30.08819846875],[120.511529570313,30.0793556953125],[120.513082304688,30.068843],[120.511607695313,30.0588430000001],[120.51312625,30.04855003125],[120.5012903125,30.0184450507813],[120.53298953125,29.99948753125],[120.545860625,29.96804221875],[120.529014921875,29.9102736640626],[120.54298953125,29.8994875312501],[120.55170046875,29.88819846875],[120.568546171875,29.87948753125],[120.60423953125,29.9010182929688],[120.601607695313,29.918843],[120.605777617188,29.9470607734375],[120.648941679688,29.9647292304688],[120.66170046875,29.94819846875],[120.67298953125,29.9394875312501],[120.68170046875,29.92819846875],[120.694464140625,29.91948753125],[120.691549101563,29.9392336250001],[120.70298953125,29.9581984687501],[120.717095976563,29.9926735664063],[120.70170046875,30.01819846875],[120.69298953125,30.03948753125],[120.66459109375,30.0614040351563],[120.677345,30.0938430000001],[120.730230742188,30.0787209296875],[120.741793242188,30.0382888007812],[120.776182890625,29.9797878242188],[120.761695585938,29.9290602851563],[120.763004179688,29.9185378242188],[120.738228789063,29.8611403632813],[120.731441679688,29.8065773750001],[120.747345,29.7938430000001],[120.74298953125,29.7681984687501],[120.72154421875,29.7392726875],[120.72423953125,29.7210182929688],[120.688546171875,29.69948753125],[120.67170046875,29.71819846875],[120.6627746875,29.7502638984376],[120.585084257813,29.7338698554688],[120.567125273438,29.7106008125],[120.527345,29.703843],[120.533609648438,29.7190895820313],[120.511519804688,29.7480178046876],[120.501246367188,29.79925315625],[120.534034453125,29.8493361640625],[120.493785429688,29.864858625],[120.483170195313,29.8796681953126],[120.459869414063,29.8963674140625],[120.443170195313,29.9196681953126],[120.427554960938,29.9308596015626],[120.411724882813,29.9277321601563],[120.393267851563,29.953481671875],[120.383170195313,29.9796681953125],[120.357345,29.9838430000001],[120.351148710938,30.0178224921875],[120.33271609375,30.0392140937501],[120.321690703125,30.0487136054687],[120.334781523438,30.072173078125],[120.32271609375,30.09921409375],[120.28572390625,30.1103517890625],[120.302667265625,30.1300221992188],[120.322667265625,30.1284157539063],[120.339093046875,30.1474782539063],[120.382574492188,30.159380109375],[120.400728789063,30.1383107734375],[120.412345,30.1392458320313],[120.441724882813,30.1368849921876],[120.467769804688,30.17847190625],[120.49271609375,30.16921409375],[120.512066679688,30.1584181953125],[120.527345,30.1596462226563],[120.5998059375,30.1538234687501],[120.639361601563,30.2169753242188],[120.717345,30.2838430000001],[120.77326296875,30.2697585273438],[120.777345,30.263843],[120.76400515625,30.24718284375],[120.702921171875,30.198266828125]]]]}},{"type":"Feature","properties":{"name":"新昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.923780546875,29.5574513984376],[120.977345,29.5468679023437],[120.992345,29.5498317695312],[121.019771757813,29.5444118476563],[121.031519804688,29.5280178046875],[121.047135039063,29.5168263984375],[121.062345,29.5198317695313],[121.096588164063,29.5130641914063],[121.107345,29.553843],[121.220719023438,29.53483909375],[121.223096953125,29.5187599921875],[121.211593046875,29.4589260078126],[121.213082304688,29.4488430000001],[121.20990359375,29.4273073554688],[121.227345,29.4138430000001],[121.22361453125,29.3620754218751],[121.187486601563,29.3437966132813],[121.195269804688,29.3278517890626],[121.187345,29.323843],[121.161612578125,29.3281081367187],[121.122735625,29.343735578125],[121.113077421875,29.3081081367188],[121.089888945313,29.2995778632813],[121.094605742188,29.3269802070313],[121.032345,29.3162599921876],[121.007345,29.3205641914063],[120.962940703125,29.3129201484376],[120.951500273438,29.2841335273438],[120.903189726563,29.3035524726563],[120.889654570313,29.2694850898437],[120.894303007813,29.2424806953126],[120.844107695313,29.2511232734375],[120.823077421875,29.2381081367188],[120.781612578125,29.2295778632813],[120.777345,29.2238430000001],[120.77170046875,29.22819846875],[120.760719023438,29.2928444648438],[120.763175078125,29.3094631171875],[120.727345,29.313843],[120.712623320313,29.3076589179688],[120.696866484375,29.3111916328125],[120.707345,29.353843],[120.728736601563,29.3865212226563],[120.744537382813,29.4274977851562],[120.775186796875,29.4494631171875],[120.771358671875,29.468843],[120.778761015625,29.5063014960938],[120.823170195313,29.5180178046876],[120.861046171875,29.5420632148438],[120.890406523438,29.5362624335938],[120.923780546875,29.5574513984376]]]]}},{"type":"Feature","properties":{"name":"越城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.647345,30.1338430000001],[120.650704375,30.1172023750001],[120.67062625,30.10712425],[120.677345,30.0938430000001],[120.66459109375,30.0614040351563],[120.69298953125,30.03948753125],[120.70170046875,30.01819846875],[120.717095976563,29.9926735664063],[120.70298953125,29.9581984687501],[120.691549101563,29.9392336250001],[120.694464140625,29.91948753125],[120.68170046875,29.92819846875],[120.67298953125,29.9394875312501],[120.66170046875,29.94819846875],[120.648941679688,29.9647292304688],[120.605777617188,29.9470607734375],[120.601607695313,29.918843],[120.60423953125,29.9010182929688],[120.568546171875,29.87948753125],[120.55170046875,29.88819846875],[120.54298953125,29.8994875312501],[120.529014921875,29.9102736640626],[120.545860625,29.96804221875],[120.53298953125,29.99948753125],[120.5012903125,30.0184450507813],[120.51312625,30.04855003125],[120.511607695313,30.0588430000001],[120.513082304688,30.068843],[120.511529570313,30.0793556953125],[120.52298953125,30.08819846875],[120.533883085938,30.1023097968751],[120.562916289063,30.0980202460938],[120.576773710938,30.1318825507813],[120.607642851563,30.1273220039063],[120.647345,30.1338430000001]]]]}},{"type":"Feature","properties":{"name":"诸暨市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.897345,29.7538430000001],[119.887345,29.7538430000001],[119.887345,29.763843],[119.897345,29.763843],[119.897345,29.7538430000001]]],[[[119.897345,29.7538430000001],[119.922301054688,29.7477126289063],[119.945592070313,29.7529323554688],[119.972345,29.7703542304688],[119.9921496875,29.7574587226563],[120.021685820313,29.7698659492188],[120.03142703125,29.8197585273438],[120.071729765625,29.8301003242188],[120.0926184375,29.8254201484375],[120.097345,29.843843],[120.12560671875,29.8598220039063],[120.162081328125,29.9198757148438],[120.183897734375,29.9070510078125],[120.211890898438,29.9420095039063],[120.242345,29.9382204414063],[120.252799101563,29.9395217109375],[120.263702421875,29.925903546875],[120.30732546875,29.9313283515625],[120.321793242188,29.9493971992188],[120.332896757813,29.9582888007813],[120.341793242188,29.9693971992188],[120.352896757813,29.9782888007813],[120.357345,29.9838430000001],[120.383170195313,29.9796681953125],[120.393267851563,29.953481671875],[120.411724882813,29.9277321601563],[120.427554960938,29.9308596015626],[120.443170195313,29.9196681953126],[120.459869414063,29.8963674140625],[120.483170195313,29.8796681953126],[120.493785429688,29.864858625],[120.534034453125,29.8493361640625],[120.501246367188,29.79925315625],[120.511519804688,29.7480178046876],[120.533609648438,29.7190895820313],[120.527345,29.703843],[120.523350859375,29.687837140625],[120.507310820313,29.6638185859375],[120.520260039063,29.6124294257813],[120.494429960938,29.5952565742187],[120.510416289063,29.5318068671876],[120.471339140625,29.509848859375],[120.467345,29.4938430000001],[120.43170046875,29.4794875312501],[120.40111453125,29.4568093085937],[120.381954375,29.4596388984375],[120.36045046875,29.4466677070313],[120.364561796875,29.4188430000001],[120.338365507813,29.4081227851563],[120.32298953125,29.3881984687501],[120.31170046875,29.37948753125],[120.29490359375,29.3577248359375],[120.269127226563,29.3615358710938],[120.257345,29.403843],[120.28158328125,29.42397971875],[120.253761015625,29.4725588203125],[120.272808867188,29.4883815742187],[120.281881132813,29.501343],[120.251954375,29.4982936835938],[120.242808867188,29.5093044257812],[120.219234648438,29.5195290351563],[120.188189726563,29.5568996406251],[120.158101835938,29.5206764960938],[120.131881132813,29.5093044257812],[120.122808867188,29.4983815742188],[120.107345,29.4938430000001],[120.10326296875,29.4997585273438],[120.078980742188,29.508843],[120.085767851563,29.5391139960938],[120.05142703125,29.5479274726563],[120.037022734375,29.568794171875],[120.001041289063,29.5780275703125],[120.008375273438,29.610747296875],[120.03361453125,29.6281716132813],[120.0301965625,29.6434206367188],[119.99142703125,29.6579274726563],[119.967345,29.6738430000001],[119.962296171875,29.693520734375],[119.93697390625,29.711001203125],[119.909898710938,29.7049318671875],[119.897345,29.7538430000001]],[[120.025152617188,29.6572658515625],[120.037345,29.653843],[120.033922148438,29.6660353828126],[120.025152617188,29.6572658515625]]]]}},{"type":"Feature","properties":{"name":"嵊州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.577345,29.353843],[120.573922148438,29.3416506171875],[120.565152617188,29.3504201484376],[120.577345,29.353843]]],[[[120.577345,29.353843],[120.561007109375,29.377505109375],[120.504049101563,29.4168312812501],[120.515709257813,29.468843],[120.49142703125,29.4779274726563],[120.467345,29.4938430000001],[120.471339140625,29.509848859375],[120.510416289063,29.5318068671876],[120.494429960938,29.5952565742187],[120.520260039063,29.6124294257813],[120.507310820313,29.6638185859375],[120.523350859375,29.687837140625],[120.527345,29.703843],[120.567125273438,29.7106008125],[120.585084257813,29.7338698554688],[120.6627746875,29.7502638984376],[120.67170046875,29.71819846875],[120.688546171875,29.69948753125],[120.72423953125,29.7210182929688],[120.72154421875,29.7392726875],[120.74298953125,29.7681984687501],[120.747345,29.7938430000001],[120.755719023438,29.8085329414063],[120.7837121875,29.8174733710938],[120.810816679688,29.8374733710938],[120.8337121875,29.8302126289063],[120.8409778125,29.7974733710938],[120.854283476563,29.7689894843751],[120.848013945313,29.752358625],[120.867345,29.74507346875],[120.891461210938,29.7541628242188],[120.904996367188,29.7304201484376],[120.937345,29.74261253125],[120.957345,29.73507346875],[120.983560820313,29.74495628125],[121.007345,29.733843],[121.012154570313,29.7286525703126],[121.022740507813,29.7188430000001],[121.012154570313,29.7090334296876],[121.002535429688,29.6886525703126],[120.982760039063,29.6703298164063],[121.047345,29.6838430000001],[121.062296171875,29.673520734375],[121.07142703125,29.6379274726563],[121.109068632813,29.623843],[121.10107546875,29.5881716132813],[121.113643828125,29.5794924140626],[121.107345,29.553843],[121.096588164063,29.5130641914063],[121.062345,29.5198317695313],[121.047135039063,29.5168263984375],[121.031519804688,29.5280178046875],[121.019771757813,29.5444118476563],[120.992345,29.5498317695312],[120.977345,29.5468679023437],[120.923780546875,29.5574513984376],[120.890406523438,29.5362624335938],[120.861046171875,29.5420632148438],[120.823170195313,29.5180178046876],[120.778761015625,29.5063014960938],[120.771358671875,29.468843],[120.775186796875,29.4494631171875],[120.744537382813,29.4274977851562],[120.728736601563,29.3865212226563],[120.707345,29.353843],[120.67326296875,29.3379274726563],[120.6137903125,29.3297585273438],[120.577345,29.353843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.577345,29.353843],[120.565152617188,29.3504201484376],[120.573922148438,29.3416506171875],[120.6137903125,29.3297585273438],[120.67326296875,29.3379274726563],[120.707345,29.353843],[120.696866484375,29.3111916328125],[120.712623320313,29.3076589179688],[120.727345,29.313843],[120.71720828125,29.2595388007813],[120.659781523438,29.2801442695313],[120.622628203125,29.2385622382813],[120.602061796875,29.2291237617188],[120.587906523438,29.2132814765626],[120.561500273438,29.1896877265625],[120.534312773438,29.1592580390625],[120.522345,29.1585451484375],[120.496011992188,29.1601149726563],[120.464254179688,29.1455397773438],[120.49486453125,29.1181911445313],[120.482545195313,29.0783010078126],[120.452320585938,29.0947267890626],[120.412061796875,29.0691237617187],[120.400982695313,29.0214870429688],[120.362628203125,28.9785622382812],[120.347345,28.973843],[120.342345,28.9866506171875],[120.337345,28.973843],[120.32170046875,28.97819846875],[120.310670195313,28.9924929023438],[120.313170195313,29.0094362617188],[120.28170046875,29.01819846875],[120.26298953125,29.02948753125],[120.24170046875,29.0381984687501],[120.23298953125,29.0594875312501],[120.160562773438,29.0717897773438],[120.163175078125,29.0894557929687],[120.102994414063,29.0996779609375],[120.082857695313,29.0967018867187],[120.077345,29.1038430000001],[120.084991484375,29.1220436835938],[120.076846953125,29.158364484375],[120.13142703125,29.2397585273437],[120.155709257813,29.248843],[120.14326296875,29.3043654609375],[120.166519804688,29.3112697578125],[120.188468046875,29.3063503242188],[120.23326296875,29.3579274726563],[120.248038359375,29.3974147773438],[120.257345,29.403843],[120.269127226563,29.3615358710938],[120.29490359375,29.3577248359375],[120.31170046875,29.37948753125],[120.32298953125,29.3881984687501],[120.338365507813,29.4081227851563],[120.364561796875,29.4188430000001],[120.36045046875,29.4466677070313],[120.381954375,29.4596388984375],[120.40111453125,29.4568093085937],[120.43170046875,29.4794875312501],[120.467345,29.4938430000001],[120.49142703125,29.4779274726563],[120.515709257813,29.468843],[120.504049101563,29.4168312812501],[120.561007109375,29.377505109375],[120.577345,29.353843]]]]}},{"type":"Feature","properties":{"name":"金东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.737345,29.003843],[119.733922148438,28.9916506171875],[119.725152617188,29.0004201484375],[119.737345,29.003843]]],[[[119.737345,29.003843],[119.729698515625,29.0220436835938],[119.73720828125,29.0555373359375],[119.671944609375,29.0409059882813],[119.66326296875,29.1597585273438],[119.649288359375,29.2166432929688],[119.697022734375,29.2288918281251],[119.707345,29.243843],[119.71170046875,29.2494875312501],[119.73298953125,29.25819846875],[119.787779570313,29.2988210273437],[119.817345,29.3038430000001],[119.834049101563,29.2990676093751],[119.915543242188,29.24956565625],[119.911676054688,29.2184841132812],[119.923013945313,29.1992018867188],[119.921676054688,29.1884841132813],[119.950220976563,29.1399245429688],[119.932896757813,29.1182888007813],[119.921793242188,29.1093971992188],[119.912896757813,29.0882888007813],[119.901666289063,29.0792971015625],[119.903004179688,29.068559796875],[119.897345,29.053843],[119.88142703125,29.0497585273437],[119.86326296875,29.0379274726562],[119.84142703125,29.0297585273438],[119.82326296875,29.0179274726563],[119.767345,29.003843],[119.757345,29.003843],[119.757345,28.9938430000001],[119.747345,28.9938430000001],[119.747345,29.003843],[119.737345,29.003843]]]]}},{"type":"Feature","properties":{"name":"兰溪市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.730787382813,29.4478273750001],[119.755382109375,29.4121999335938],[119.802672148438,29.3975417304688],[119.833975859375,29.4179274726562],[119.880045195313,29.4083473945313],[119.89142703125,29.3779274726563],[119.897345,29.3738430000001],[119.89326296875,29.3679274726563],[119.88142703125,29.3597585273438],[119.87326296875,29.3479274726563],[119.823922148438,29.3294655585938],[119.817345,29.3038430000001],[119.787779570313,29.2988210273437],[119.73298953125,29.25819846875],[119.71170046875,29.2494875312501],[119.707345,29.243843],[119.642896757813,29.2282888007813],[119.591793242188,29.2193971992188],[119.564049101563,29.184751203125],[119.54463015625,29.1386647773438],[119.501793242188,29.1293971992188],[119.492896757813,29.1182888007813],[119.481793242188,29.1093971992188],[119.472545195313,29.09784690625],[119.44138796875,29.1161623359375],[119.442965117188,29.128843],[119.440894804688,29.1455031562501],[119.371070585938,29.1368190742188],[119.317345,29.093843],[119.3021496875,29.0882643867188],[119.251558867188,29.1469850898438],[119.224117460938,29.2084914375],[119.257345,29.253843],[119.268995390625,29.262192609375],[119.281519804688,29.2796681953125],[119.32486453125,29.2911037421875],[119.321236601563,29.3094631171875],[119.333170195313,29.3180178046875],[119.34576296875,29.3355861640625],[119.329761992188,29.3607839179688],[119.333331328125,29.3788430000001],[119.327452421875,29.4085964179687],[119.363170195313,29.4180178046875],[119.377345,29.4377956367187],[119.403219023438,29.4016994453126],[119.436978789063,29.4231349921876],[119.451519804688,29.3680178046876],[119.470391875,29.3382912421876],[119.506095,29.3296681953125],[119.521519804688,29.3696681953125],[119.577242460938,29.3808400703126],[119.614390898438,29.3734987617188],[119.609967070313,29.3958840156251],[119.625299101563,29.43319846875],[119.667345,29.4248903632813],[119.701485625,29.4316384101563],[119.707345,29.4538430000001],[119.730787382813,29.4478273750001]]]]}},{"type":"Feature","properties":{"name":"浦江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.033922148438,29.6660353828126],[120.037345,29.653843],[120.025152617188,29.6572658515625],[120.033922148438,29.6660353828126]]],[[[119.826480742188,29.6805763984376],[119.8915246875,29.6663869453126],[119.967345,29.6738430000001],[119.99142703125,29.6579274726563],[120.0301965625,29.6434206367188],[120.03361453125,29.6281716132813],[120.008375273438,29.610747296875],[120.001041289063,29.5780275703125],[120.037022734375,29.568794171875],[120.05142703125,29.5479274726563],[120.085767851563,29.5391139960938],[120.078980742188,29.508843],[120.10326296875,29.4997585273438],[120.107345,29.4938430000001],[120.077276640625,29.477983625],[120.063531523438,29.4376564765625],[120.041158476563,29.4300295234376],[120.033531523438,29.4176564765625],[120.021158476563,29.4100295234375],[120.005909453125,29.3852809882813],[119.981158476563,29.3700295234375],[119.972740507813,29.356372296875],[119.940094023438,29.3828151679688],[119.917345,29.3757277656251],[119.901539335938,29.3806520820313],[119.897345,29.3738430000001],[119.89142703125,29.3779274726563],[119.880045195313,29.4083473945313],[119.833975859375,29.4179274726562],[119.802672148438,29.3975417304688],[119.755382109375,29.4121999335938],[119.730787382813,29.4478273750001],[119.707345,29.4538430000001],[119.71345828125,29.5027223945313],[119.73322390625,29.51855003125],[119.7214075,29.5492873359376],[119.752896757813,29.5582888007813],[119.764425078125,29.572680890625],[119.757345,29.6038430000001],[119.773560820313,29.6087258125],[119.771261015625,29.6373317695313],[119.826480742188,29.6805763984376]]]]}},{"type":"Feature","properties":{"name":"义乌市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.242808867188,29.5093044257812],[120.251954375,29.4982936835938],[120.281881132813,29.501343],[120.272808867188,29.4883815742187],[120.253761015625,29.4725588203125],[120.28158328125,29.42397971875],[120.257345,29.403843],[120.248038359375,29.3974147773438],[120.23326296875,29.3579274726563],[120.188468046875,29.3063503242188],[120.166519804688,29.3112697578125],[120.14326296875,29.3043654609375],[120.155709257813,29.248843],[120.13142703125,29.2397585273437],[120.076846953125,29.158364484375],[120.084991484375,29.1220436835938],[120.077345,29.1038430000001],[120.07170046875,29.0994875312501],[120.05427859375,29.0769118476563],[119.978038359375,29.045708234375],[119.938804960938,29.0611330390626],[119.907345,29.053843],[119.897345,29.053843],[119.903004179688,29.068559796875],[119.901666289063,29.0792971015625],[119.912896757813,29.0882888007813],[119.921793242188,29.1093971992188],[119.932896757813,29.1182888007813],[119.950220976563,29.1399245429688],[119.921676054688,29.1884841132813],[119.923013945313,29.1992018867188],[119.911676054688,29.2184841132812],[119.915543242188,29.24956565625],[119.834049101563,29.2990676093751],[119.817345,29.3038430000001],[119.823922148438,29.3294655585938],[119.87326296875,29.3479274726563],[119.88142703125,29.3597585273438],[119.89326296875,29.3679274726563],[119.897345,29.3738430000001],[119.901539335938,29.3806520820313],[119.917345,29.3757277656251],[119.940094023438,29.3828151679688],[119.972740507813,29.356372296875],[119.981158476563,29.3700295234375],[120.005909453125,29.3852809882813],[120.021158476563,29.4100295234375],[120.033531523438,29.4176564765625],[120.041158476563,29.4300295234376],[120.063531523438,29.4376564765625],[120.077276640625,29.477983625],[120.107345,29.4938430000001],[120.122808867188,29.4983815742188],[120.131881132813,29.5093044257812],[120.158101835938,29.5206764960938],[120.188189726563,29.5568996406251],[120.219234648438,29.5195290351563],[120.242808867188,29.5093044257812]]]]}},{"type":"Feature","properties":{"name":"婺城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.767345,28.9938430000001],[119.757345,28.9938430000001],[119.757345,29.003843],[119.767345,29.003843],[119.767345,28.9938430000001]]],[[[119.737345,29.003843],[119.725152617188,29.0004201484375],[119.733922148438,28.9916506171875],[119.747345,29.003843],[119.747345,28.9938430000001],[119.74298953125,28.98819846875],[119.73170046875,28.9794875312501],[119.71427859375,28.9369118476563],[119.65170046875,28.91948753125],[119.639425078125,28.8894948554688],[119.622857695313,28.8680275703125],[119.60978640625,28.8699611640625],[119.591832304688,28.8467018867188],[119.564820585938,28.8506935859375],[119.5511340625,28.8015309882813],[119.52170046875,28.7894875312501],[119.4826965625,28.7378078437501],[119.467345,28.743843],[119.463092070313,28.7701467109376],[119.408951445313,28.7536989570313],[119.377345,28.7977956367188],[119.35775515625,28.7704616523438],[119.337506132813,28.7596681953125],[119.320328398438,28.7836330390625],[119.323389921875,28.7991310859375],[119.317345,28.813843],[119.337252226563,28.8239138007813],[119.327345,28.8438430000001],[119.339537382813,28.8472658515625],[119.330767851563,28.8560353828126],[119.327345,28.8438430000001],[119.315181914063,28.8535842109375],[119.302896757813,28.870639875],[119.322803984375,28.8681642890625],[119.341793242188,28.8942653632813],[119.298961210938,28.9671291328126],[119.323248320313,28.986577375],[119.319234648438,29.018843],[119.3258215625,29.07179221875],[119.317345,29.093843],[119.371070585938,29.1368190742188],[119.440894804688,29.1455031562501],[119.442965117188,29.128843],[119.44138796875,29.1161623359375],[119.472545195313,29.09784690625],[119.481793242188,29.1093971992188],[119.492896757813,29.1182888007813],[119.501793242188,29.1293971992188],[119.54463015625,29.1386647773438],[119.564049101563,29.184751203125],[119.591793242188,29.2193971992188],[119.642896757813,29.2282888007813],[119.707345,29.243843],[119.697022734375,29.2288918281251],[119.649288359375,29.2166432929688],[119.66326296875,29.1597585273438],[119.671944609375,29.0409059882813],[119.73720828125,29.0555373359375],[119.729698515625,29.0220436835938],[119.737345,29.003843]]]]}},{"type":"Feature","properties":{"name":"磐安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.760719023438,29.2928444648438],[120.77170046875,29.22819846875],[120.777345,29.2238430000001],[120.758492460938,29.1901638007812],[120.706431914063,29.1499831367188],[120.74170046875,29.1227614570312],[120.732706328125,29.118051984375],[120.714835234375,29.1206911445313],[120.69154421875,29.0892726875],[120.695299101563,29.063843],[120.690284453125,29.0298854804688],[120.702345,29.0281032539063],[120.71939578125,29.0306252265625],[120.727345,28.983843],[120.709141875,28.9761989570313],[120.670440703125,28.9848732734375],[120.651485625,28.9110036445313],[120.610513945313,28.8956740546876],[120.563682890625,28.8651808906251],[120.542345,28.8699636054688],[120.531676054688,28.8675710273438],[120.513892851563,28.8933254218751],[120.50326296875,28.8779274726563],[120.49107546875,28.8695143867188],[120.493565703125,28.8583962226563],[120.479112578125,28.8362038398438],[120.442506132813,28.8444118476563],[120.417345,28.833843],[120.412857695313,28.8495290351563],[120.402345,28.8482204414063],[120.391890898438,28.8495217109375],[120.381890898438,28.8370339179688],[120.358472929688,28.839946515625],[120.342896757813,28.8593971992188],[120.313736601563,28.8827492500001],[120.307345,28.933843],[120.310704375,28.950483625],[120.33062625,28.9605617500001],[120.337345,28.973843],[120.347345,28.973843],[120.362628203125,28.9785622382812],[120.400982695313,29.0214870429688],[120.412061796875,29.0691237617187],[120.452320585938,29.0947267890626],[120.482545195313,29.0783010078126],[120.49486453125,29.1181911445313],[120.464254179688,29.1455397773438],[120.496011992188,29.1601149726563],[120.522345,29.1585451484375],[120.534312773438,29.1592580390625],[120.561500273438,29.1896877265625],[120.587906523438,29.2132814765626],[120.602061796875,29.2291237617188],[120.622628203125,29.2385622382813],[120.659781523438,29.2801442695313],[120.71720828125,29.2595388007813],[120.727345,29.313843],[120.763175078125,29.3094631171875],[120.760719023438,29.2928444648438]]]]}},{"type":"Feature","properties":{"name":"武义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.907345,29.053843],[119.894146757813,28.9968923164063],[119.929639921875,29.0021388984375],[119.933765898438,28.9742360664063],[119.901173125,28.949077375],[119.91298953125,28.92948753125],[119.92170046875,28.90819846875],[119.93298953125,28.89948753125],[119.9460559375,28.8825563789063],[119.97170046875,28.8627614570313],[119.96298953125,28.8181984687501],[119.927345,28.8038430000001],[119.92142703125,28.7997585273438],[119.885855742188,28.7469338203125],[119.871529570313,28.7501467109375],[119.867345,28.733843],[119.86298953125,28.72819846875],[119.825894804688,28.7130178046876],[119.81170046875,28.68948753125],[119.796402617188,28.6345485664063],[119.743121367188,28.6424221015625],[119.768448515625,28.600434796875],[119.735030546875,28.5867580390625],[119.693883085938,28.5334450507812],[119.647047148438,28.5403639960938],[119.607345,28.5338430000001],[119.577613554688,28.5265407539063],[119.540440703125,28.5348732734376],[119.518350859375,28.5668679023438],[119.487345,28.553843],[119.491881132813,28.5793044257813],[119.505933867188,28.6167067695313],[119.477979765625,28.6399269843751],[119.462345,28.6383327460938],[119.450885039063,28.6395021796876],[119.4609778125,28.7385549140625],[119.467345,28.743843],[119.4826965625,28.7378078437501],[119.52170046875,28.7894875312501],[119.5511340625,28.8015309882813],[119.564820585938,28.8506935859375],[119.591832304688,28.8467018867188],[119.60978640625,28.8699611640625],[119.622857695313,28.8680275703125],[119.639425078125,28.8894948554688],[119.65170046875,28.91948753125],[119.71427859375,28.9369118476563],[119.73170046875,28.9794875312501],[119.74298953125,28.98819846875],[119.747345,28.9938430000001],[119.757345,28.9938430000001],[119.767345,28.9938430000001],[119.767345,29.003843],[119.82326296875,29.0179274726563],[119.84142703125,29.0297585273438],[119.86326296875,29.0379274726562],[119.88142703125,29.0497585273437],[119.897345,29.053843],[119.907345,29.053843]]]]}},{"type":"Feature","properties":{"name":"永康市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.337345,28.973843],[120.342345,28.9866506171875],[120.347345,28.973843],[120.337345,28.973843]]],[[[120.337345,28.973843],[120.33062625,28.9605617500001],[120.310704375,28.950483625],[120.307345,28.933843],[120.26297,28.9411330390626],[120.250670195313,28.9251930976563],[120.258463164063,28.8724269843751],[120.24170046875,28.85948753125],[120.23298953125,28.8481984687501],[120.199600859375,28.822426984375],[120.203463164063,28.7962844062501],[120.177086210938,28.7759255195313],[120.142857695313,28.7809841132813],[120.130806914063,28.7653762031251],[120.097838164063,28.7702468085938],[120.081490507813,28.7914260078125],[120.032345,28.7617800117188],[119.987750273438,28.788676984375],[119.93170046875,28.79819846875],[119.927345,28.8038430000001],[119.96298953125,28.8181984687501],[119.97170046875,28.8627614570313],[119.9460559375,28.8825563789063],[119.93298953125,28.89948753125],[119.92170046875,28.90819846875],[119.91298953125,28.92948753125],[119.901173125,28.949077375],[119.933765898438,28.9742360664063],[119.929639921875,29.0021388984375],[119.894146757813,28.9968923164063],[119.907345,29.053843],[119.938804960938,29.0611330390626],[119.978038359375,29.045708234375],[120.05427859375,29.0769118476563],[120.07170046875,29.0994875312501],[120.077345,29.1038430000001],[120.082857695313,29.0967018867187],[120.102994414063,29.0996779609375],[120.163175078125,29.0894557929687],[120.160562773438,29.0717897773438],[120.23298953125,29.0594875312501],[120.24170046875,29.0381984687501],[120.26298953125,29.02948753125],[120.28170046875,29.01819846875],[120.313170195313,29.0094362617188],[120.310670195313,28.9924929023438],[120.32170046875,28.97819846875],[120.337345,28.973843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"江山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.617345,28.863843],[118.605152617188,28.8672658515626],[118.613922148438,28.8760353828125],[118.617345,28.863843]]],[[[118.617345,28.863843],[118.6686340625,28.8725563789063],[118.68170046875,28.88948753125],[118.697345,28.893843],[118.72298953125,28.85948753125],[118.737345,28.833843],[118.74312625,28.81913596875],[118.74154421875,28.8084133125001],[118.773507109375,28.765298078125],[118.79170046875,28.6581984687501],[118.805811796875,28.6473073554688],[118.801607695313,28.6188430000001],[118.80312625,28.60855003125],[118.785553007813,28.563843],[118.797345,28.5338430000001],[118.724986601563,28.5156154609375],[118.721221953125,28.4988430000001],[118.724586210938,28.483843],[118.721221953125,28.468843],[118.724586210938,28.453843],[118.716178007813,28.4163405585938],[118.75142703125,28.4242433906251],[118.728961210938,28.3518630195313],[118.702393828125,28.3335207343751],[118.697345,28.3138430000001],[118.691519804688,28.3096681953125],[118.673170195313,28.2780178046875],[118.595513945313,28.2624489570313],[118.583170195313,28.2796681953126],[118.542115507813,28.2904982734375],[118.530484648438,28.2742702460938],[118.488648710938,28.2825368476563],[118.496851835938,28.2410353828125],[118.438219023438,28.252622296875],[118.427345,28.293843],[118.443077421875,28.2981081367187],[118.47443484375,28.3217018867188],[118.468863554688,28.3540773750001],[118.43865359375,28.4028884101563],[118.47127078125,28.4766286445313],[118.40966921875,28.4988063789063],[118.433077421875,28.5081081367188],[118.441612578125,28.5172634101563],[118.417345,28.523843],[118.4108215625,28.5635451484376],[118.413824492188,28.583843],[118.410362578125,28.6072658515625],[118.423140898438,28.628452375],[118.420865507813,28.643843],[118.425811796875,28.6773073554688],[118.41170046875,28.68819846875],[118.40298953125,28.69948753125],[118.391529570313,28.7083303046875],[118.395362578125,28.7342702460938],[118.377345,28.773843],[118.38298953125,28.7781984687501],[118.39170046875,28.7894875312501],[118.428546171875,28.79819846875],[118.465601835938,28.7758473945313],[118.49892703125,28.8315651679688],[118.522857695313,28.8280275703125],[118.531832304688,28.8396584296876],[118.542345,28.8381032539063],[118.604576445313,28.84730003125],[118.617345,28.863843]]]]}},{"type":"Feature","properties":{"name":"常山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.617345,28.863843],[118.613922148438,28.8760353828125],[118.605152617188,28.8672658515626],[118.604576445313,28.84730003125],[118.542345,28.8381032539063],[118.531832304688,28.8396584296876],[118.522857695313,28.8280275703125],[118.49892703125,28.8315651679688],[118.465601835938,28.7758473945313],[118.428546171875,28.79819846875],[118.39170046875,28.7894875312501],[118.38298953125,28.7781984687501],[118.377345,28.773843],[118.36732546875,28.8079787421875],[118.290972929688,28.83038596875],[118.292882109375,28.849126203125],[118.263043242188,28.9191091132813],[118.257345,28.9238430000001],[118.262857695313,28.9309841132813],[118.297345,28.9258864570313],[118.353765898438,28.9342263007813],[118.34990359375,28.9603786445313],[118.379210234375,28.9830007148438],[118.421832304688,28.9767018867188],[118.43170046875,28.98948753125],[118.443160429688,28.9983303046875],[118.441607695313,29.008843],[118.444205351563,29.0264186835938],[118.47298953125,29.0381984687501],[118.517701445313,29.0713503242188],[118.53170046875,29.08948753125],[118.571646757813,29.1133766914063],[118.58170046875,29.14948753125],[118.6113684375,29.1723879218751],[118.617345,29.193843],[118.666519804688,29.2019216132813],[118.708800078125,29.1956716132813],[118.73170046875,29.2094875312501],[118.747345,29.213843],[118.757345,29.193843],[118.75298953125,29.17819846875],[118.74170046875,29.15948753125],[118.73298953125,29.12819846875],[118.701485625,29.0857106757813],[118.686226835938,28.9824269843751],[118.71093875,28.9633498359376],[118.716749296875,28.9240505195313],[118.697345,28.893843],[118.68170046875,28.88948753125],[118.6686340625,28.8725563789063],[118.617345,28.863843]]]]}},{"type":"Feature","properties":{"name":"开化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.097345,29.003843],[118.107345,29.003843],[118.107345,28.9938430000001],[118.097345,28.9938430000001],[118.097345,29.003843]]],[[[118.617345,29.283843],[118.629537382813,29.2804201484376],[118.620767851563,29.2716506171875],[118.617345,29.283843]]],[[[118.617345,29.283843],[118.610704375,29.2804836250001],[118.603985625,29.2306008125001],[118.6292590625,29.2178151679688],[118.617345,29.193843],[118.6113684375,29.1723879218751],[118.58170046875,29.14948753125],[118.571646757813,29.1133766914063],[118.53170046875,29.08948753125],[118.517701445313,29.0713503242188],[118.47298953125,29.0381984687501],[118.444205351563,29.0264186835938],[118.441607695313,29.008843],[118.443160429688,28.9983303046875],[118.43170046875,28.98948753125],[118.421832304688,28.9767018867188],[118.379210234375,28.9830007148438],[118.34990359375,28.9603786445313],[118.353765898438,28.9342263007813],[118.297345,28.9258864570313],[118.262857695313,28.9309841132813],[118.257345,28.9238430000001],[118.231793242188,28.9193971992188],[118.196920195313,28.9059914375],[118.182896757813,28.9122731757813],[118.22107546875,28.94284690625],[118.176373320313,28.9786452460938],[118.120709257813,28.990688703125],[118.12302859375,29.0093581367188],[118.107345,29.013843],[118.097345,29.013843],[118.097345,29.003843],[118.091519804688,29.0080178046875],[118.083170195313,29.0296681953125],[118.071519804688,29.0480178046875],[118.063170195313,29.0796681953126],[118.039014921875,29.0969826484375],[118.043350859375,29.1189235664063],[118.023189726563,29.2025978828125],[118.063170195313,29.2180178046875],[118.074361601563,29.2336330390625],[118.070367460938,29.253843],[118.075186796875,29.2782228828126],[118.067345,29.283843],[118.072799101563,29.2906520820313],[118.092345,29.2882204414063],[118.112345,29.290708234375],[118.132345,29.2882204414063],[118.148428984375,29.2902223945313],[118.203023710938,29.3583962226563],[118.201724882813,29.368843],[118.203023710938,29.3792971015625],[118.191793242188,29.3882888007812],[118.187345,29.393843],[118.1986340625,29.4025563789062],[118.216549101563,29.4257692695313],[118.242345,29.4295827460938],[118.252345,29.4281032539063],[118.262345,29.4295827460938],[118.272345,29.4281032539063],[118.282345,29.4295827460938],[118.310987578125,29.4253493476563],[118.300494414063,29.4963527656251],[118.322891875,29.4996633125],[118.337345,29.473843],[118.345694609375,29.4621926093751],[118.363170195313,29.4496681953125],[118.371519804688,29.4380178046876],[118.403463164063,29.419497296875],[118.401236601563,29.4082228828125],[118.413170195313,29.3996681953125],[118.4227746875,29.3862673164062],[118.45666140625,29.3647560859375],[118.485303984375,29.3704152656251],[118.513170195313,29.3596681953125],[118.521519804688,29.3480178046875],[118.590816679688,29.3341237617187],[118.617345,29.283843]]]]}},{"type":"Feature","properties":{"name":"柯城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.757345,29.193843],[118.773902617188,29.1877638984375],[118.799034453125,29.1897829414063],[118.8227746875,29.1791896796875],[118.821734648438,29.1662380195313],[118.853980742188,29.0939723945313],[118.884273710938,29.0678713203125],[118.8819153125,29.0385182929687],[118.893150664063,29.0288430000001],[118.87271609375,29.0112404609375],[118.882042265625,28.9782228828125],[118.920445585938,28.9923268867187],[118.896666289063,28.9496999335938],[118.912345,28.9484401679688],[118.922691679688,28.9492726875001],[118.93197390625,28.92847190625],[118.946763945313,28.9157277656251],[118.9318371875,28.888969953125],[118.945377226563,28.83948753125],[118.922345,28.8376369453126],[118.902022734375,28.8392702460938],[118.892345,28.8280397773438],[118.868834257813,28.8553298164063],[118.833819609375,28.8854958320313],[118.831944609375,28.908843],[118.833521757813,28.92847190625],[118.77197390625,28.87921409375],[118.76271609375,28.8584719062501],[118.75197390625,28.84921409375],[118.74271609375,28.83847190625],[118.737345,28.833843],[118.72298953125,28.85948753125],[118.697345,28.893843],[118.716749296875,28.9240505195313],[118.71093875,28.9633498359376],[118.686226835938,28.9824269843751],[118.701485625,29.0857106757813],[118.73298953125,29.12819846875],[118.74170046875,29.15948753125],[118.75298953125,29.17819846875],[118.757345,29.193843]]]]}},{"type":"Feature","properties":{"name":"龙游县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.327345,28.8438430000001],[119.330767851563,28.8560353828126],[119.339537382813,28.8472658515625],[119.327345,28.8438430000001]]],[[[119.327345,28.8438430000001],[119.337252226563,28.8239138007813],[119.317345,28.813843],[119.292506132813,28.8082009101563],[119.280079375,28.8097463203126],[119.262896757813,28.7882888007813],[119.251793242188,28.7793971992188],[119.240987578125,28.7659035468751],[119.186319609375,28.7727028632813],[119.152896757813,28.7482888007813],[119.0830871875,28.738130109375],[119.072061796875,28.7394997382813],[119.057345,28.733843],[119.061793242188,28.7493971992188],[119.073155546875,28.7687282539063],[119.06088015625,28.80065940625],[119.094888945313,28.8278932929688],[119.111793242188,28.9342653632813],[119.057369414063,28.97784690625],[119.087579375,29.0020388007813],[119.043316679688,29.0716115546875],[119.085391875,29.0893410468751],[119.078204375,29.1471388984375],[119.051793242188,29.1682888007813],[119.037345,29.2238430000001],[119.062301054688,29.2299733710938],[119.072388945313,29.2277126289063],[119.122994414063,29.2401442695313],[119.13142703125,29.2279274726562],[119.16326296875,29.2197585273438],[119.182901640625,29.206968],[119.191573515625,29.2301369453125],[119.21142703125,29.2256862617188],[119.20326296875,29.2497585273438],[119.185982695313,29.276294171875],[119.21060671875,29.2818166328125],[119.24142703125,29.2579274726563],[119.257345,29.253843],[119.224117460938,29.2084914375],[119.251558867188,29.1469850898438],[119.3021496875,29.0882643867188],[119.317345,29.093843],[119.3258215625,29.07179221875],[119.319234648438,29.018843],[119.323248320313,28.986577375],[119.298961210938,28.9671291328126],[119.341793242188,28.8942653632813],[119.322803984375,28.8681642890625],[119.302896757813,28.870639875],[119.315181914063,28.8535842109375],[119.327345,28.8438430000001]]]]}},{"type":"Feature","properties":{"name":"衢江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.907345,29.3338430000001],[118.914078398438,29.3205300117188],[118.9552746875,29.2998366523438],[118.945504179688,29.2798342109375],[118.97287234375,29.2659865546875],[118.980758085938,29.2269435859376],[119.012447539063,29.2114675117188],[119.037345,29.2238430000001],[119.051793242188,29.1682888007813],[119.078204375,29.1471388984375],[119.085391875,29.0893410468751],[119.043316679688,29.0716115546875],[119.087579375,29.0020388007813],[119.057369414063,28.97784690625],[119.111793242188,28.9342653632813],[119.094888945313,28.8278932929688],[119.06088015625,28.80065940625],[119.073155546875,28.7687282539063],[119.061793242188,28.7493971992188],[119.057345,28.733843],[119.021519804688,28.7096681953125],[118.958595,28.6539650703125],[118.917198515625,28.63800315625],[118.90181765625,28.5612721992188],[118.874674101563,28.5196681953125],[118.824425078125,28.5515700507813],[118.797345,28.5338430000001],[118.785553007813,28.563843],[118.80312625,28.60855003125],[118.801607695313,28.6188430000001],[118.805811796875,28.6473073554688],[118.79170046875,28.6581984687501],[118.773507109375,28.765298078125],[118.74154421875,28.8084133125001],[118.74312625,28.81913596875],[118.737345,28.833843],[118.74271609375,28.83847190625],[118.75197390625,28.84921409375],[118.76271609375,28.8584719062501],[118.77197390625,28.87921409375],[118.833521757813,28.92847190625],[118.831944609375,28.908843],[118.833819609375,28.8854958320313],[118.868834257813,28.8553298164063],[118.892345,28.8280397773438],[118.902022734375,28.8392702460938],[118.922345,28.8376369453126],[118.945377226563,28.83948753125],[118.9318371875,28.888969953125],[118.946763945313,28.9157277656251],[118.93197390625,28.92847190625],[118.922691679688,28.9492726875001],[118.912345,28.9484401679688],[118.896666289063,28.9496999335938],[118.920445585938,28.9923268867187],[118.882042265625,28.9782228828125],[118.87271609375,29.0112404609375],[118.893150664063,29.0288430000001],[118.8819153125,29.0385182929687],[118.884273710938,29.0678713203125],[118.853980742188,29.0939723945313],[118.821734648438,29.1662380195313],[118.8227746875,29.1791896796875],[118.799034453125,29.1897829414063],[118.773902617188,29.1877638984375],[118.757345,29.193843],[118.747345,29.213843],[118.75326296875,29.2179274726563],[118.76142703125,29.2497585273438],[118.77326296875,29.2579274726563],[118.78377078125,29.2731520820312],[118.82326296875,29.2879274726563],[118.871803007813,29.3300856757813],[118.882388945313,29.3277126289063],[118.907345,29.3338430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"定海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.083922148438,29.9560353828125],[122.087345,29.9438430000001],[122.075152617188,29.9472658515625],[122.083922148438,29.9560353828125]]],[[[122.167345,29.963843],[122.157203398438,29.9437966132813],[122.125211210938,29.9599806953126],[122.167345,29.963843]]],[[[122.053604765625,29.95933128125],[122.047345,29.933843],[122.02326296875,29.9400246406251],[122.046676054688,29.9679274726563],[122.053604765625,29.95933128125]]],[[[122.087345,29.9838430000001],[122.099537382813,29.9804201484375],[122.090767851563,29.9716506171875],[122.087345,29.9838430000001]]],[[[122.11334109375,29.9865676093751],[122.117345,29.963843],[122.104346953125,29.9694045234375],[122.11334109375,29.9865676093751]]],[[[122.087345,29.9838430000001],[122.071178007813,29.9758058906251],[122.063985625,29.9970851875],[122.077345,30.003843],[122.087345,29.9838430000001]]],[[[122.107345,30.003843],[122.103922148438,29.9916506171875],[122.095152617188,30.0004201484376],[122.107345,30.003843]]],[[[121.967345,30.0638430000001],[121.963922148438,30.0516506171875],[121.955152617188,30.0604201484375],[121.967345,30.0638430000001]]],[[[121.878531523438,30.0876076484375],[121.895152617188,30.0616481757813],[121.915357695313,30.048716046875],[121.929874296875,29.9970436835938],[121.8766028125,29.9783058906251],[121.867345,29.963843],[121.847139921875,29.9767775703125],[121.84093875,29.998843],[121.846558867188,30.0188430000001],[121.8395325,30.043843],[121.84396609375,30.05960471875],[121.823443632813,30.0727443671876],[121.8317590625,30.0804128242188],[121.842345,30.07743675],[121.878531523438,30.0876076484375]]],[[[121.957345,30.0938430000001],[121.957345,30.1038430000001],[121.977345,30.1038430000001],[121.977345,30.0938430000001],[121.957345,30.0938430000001]]],[[[121.957345,30.1038430000001],[121.944537382813,30.0988430000001],[121.957345,30.0938430000001],[121.944991484375,30.0703932929688],[121.903892851563,30.0903664375001],[121.922423125,30.1172927070313],[121.953892851563,30.1103932929688],[121.957345,30.1038430000001]]],[[[121.86334109375,30.126567609375],[121.867345,30.1038430000001],[121.854346953125,30.1094045234376],[121.86334109375,30.126567609375]]],[[[122.167345,29.963843],[122.163804960938,29.9703029609375],[122.14748171875,29.9792507148438],[122.180396757813,29.9894191718751],[122.120885039063,29.9973830390626],[122.107345,30.003843],[122.101314726563,30.0157595039063],[122.077345,30.003843],[122.069176054688,30.0129885078125],[122.026168242188,29.9896193671876],[122.009312773438,30.0263454414062],[121.967345,30.0638430000001],[121.988629179688,30.0960524726563],[121.977345,30.1038430000001],[121.96298953125,30.13948753125],[121.93298953125,30.1626418281251],[121.955548125,30.1829494453126],[121.973160429688,30.1693556953125],[121.97134890625,30.1571169257813],[122.042345,30.146626203125],[122.107735625,30.1562892890625],[122.13625125,30.1193483710938],[122.18298953125,30.10948753125],[122.19170046875,30.09819846875],[122.240655546875,30.0878688789063],[122.247345,30.0638430000001],[122.238297148438,30.0408278632813],[122.253516875,30.029077375],[122.24170046875,30.0094875312501],[122.227345,29.973843],[122.217345,29.973843],[122.217345,29.963843],[122.192003203125,29.9805886054688],[122.18326296875,29.9679274726563],[122.167345,29.963843]]],[[[122.056197539063,30.1923732734375],[122.037345,30.163843],[122.01326296875,30.1700246406251],[122.028951445313,30.2079274726563],[122.056197539063,30.1923732734375]]],[[[122.053922148438,30.2560353828125],[122.057345,30.243843],[122.045152617188,30.2472658515625],[122.053922148438,30.2560353828125]]]]}},{"type":"Feature","properties":{"name":"普陀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.157345,29.613843],[122.169537382813,29.6104201484375],[122.160767851563,29.6016506171875],[122.157345,29.613843]]],[[[122.157345,29.613843],[122.147345,29.613843],[122.147345,29.623843],[122.157345,29.623843],[122.157345,29.613843]]],[[[122.147345,29.623843],[122.124346953125,29.627895734375],[122.141910429688,29.6365407539063],[122.147345,29.623843]]],[[[122.213922148438,29.6460353828125],[122.217345,29.633843],[122.205152617188,29.6372658515625],[122.213922148438,29.6460353828125]]],[[[122.233922148438,29.6560353828126],[122.237345,29.6438430000001],[122.225152617188,29.6472658515625],[122.233922148438,29.6560353828126]]],[[[122.272545195313,29.696157453125],[122.277345,29.6738430000001],[122.253804960938,29.6867458320312],[122.272545195313,29.696157453125]]],[[[122.047345,29.7138430000001],[122.043922148438,29.7016506171876],[122.035152617188,29.7104201484375],[122.047345,29.7138430000001]]],[[[122.073922148438,29.7160353828125],[122.077345,29.703843],[122.065152617188,29.7072658515625],[122.073922148438,29.7160353828125]]],[[[122.24580203125,29.6948805976563],[122.237345,29.6738430000001],[122.211378203125,29.6882375312501],[122.213204375,29.698843],[122.209888945313,29.7181081367188],[122.24580203125,29.6948805976563]]],[[[122.017345,29.7238430000001],[122.029537382813,29.7204201484375],[122.020767851563,29.7116506171875],[122.017345,29.7238430000001]]],[[[122.203922148438,29.7360353828126],[122.207345,29.7238430000001],[122.195152617188,29.7272658515625],[122.203922148438,29.7360353828126]]],[[[122.009537382813,29.7604201484375],[122.000767851563,29.7516506171875],[121.997345,29.763843],[122.009537382813,29.7604201484375]]],[[[122.193922148438,29.7660353828125],[122.197345,29.7538430000001],[122.185152617188,29.7572658515625],[122.193922148438,29.7660353828125]]],[[[122.017345,29.7238430000001],[122.00326296875,29.7335671210938],[122.04021609375,29.7679274726563],[122.03326296875,29.7479274726563],[122.017345,29.7238430000001]]],[[[122.207345,29.783843],[122.2541028125,29.7779933906251],[122.250582304688,29.74968284375],[122.272345,29.746977765625],[122.301793242188,29.7506398750001],[122.283326445313,29.7250002265625],[122.239766875,29.7433571601563],[122.207345,29.783843]]],[[[122.047345,29.7138430000001],[122.058472929688,29.7527638984376],[122.084049101563,29.7847023750001],[122.122857695313,29.7895290351563],[122.134508085938,29.7487868476562],[122.201793242188,29.7079201484375],[122.1887121875,29.6496462226563],[122.172799101563,29.6695217109375],[122.162345,29.6682204414063],[122.152345,29.6694655585937],[122.141871367188,29.6681618476563],[122.122896757813,29.6993971992188],[122.111793242188,29.7082888007813],[122.096217070313,29.727739484375],[122.0820325,29.7295046210938],[122.047345,29.7138430000001]]],[[[122.207345,29.783843],[122.173892851563,29.788188703125],[122.20056765625,29.7967067695313],[122.207345,29.783843]]],[[[122.193922148438,29.8160353828126],[122.197345,29.803843],[122.185152617188,29.8072658515625],[122.193922148438,29.8160353828126]]],[[[122.367345,29.8338430000001],[122.377345,29.8338430000001],[122.372345,29.8210353828125],[122.367345,29.8338430000001]]],[[[122.367345,29.8338430000001],[122.354537382813,29.838843],[122.367345,29.843843],[122.367345,29.8338430000001]]],[[[122.32298953125,29.7794875312501],[122.327345,29.773843],[122.283638945313,29.7812673164063],[122.22298953125,29.82808128125],[122.238355742188,29.8481984687501],[122.328746367188,29.8305544257813],[122.299298125,29.8185036445313],[122.31170046875,29.78819846875],[122.32298953125,29.7794875312501]]],[[[122.261910429688,29.8765407539063],[122.267345,29.863843],[122.244346953125,29.867895734375],[122.261910429688,29.8765407539063]]],[[[122.327345,29.8738430000001],[122.332906523438,29.8868410468751],[122.350069609375,29.8778493476563],[122.327345,29.8738430000001]]],[[[122.327345,29.8738430000001],[122.321163359375,29.8497585273437],[122.28326296875,29.860171125],[122.294683867188,29.8875612617188],[122.327345,29.8738430000001]]],[[[122.417345,29.9438430000001],[122.412086210938,29.9187136054688],[122.422550078125,29.9090212226562],[122.422144804688,29.898843],[122.422579375,29.8879567695313],[122.391553984375,29.8592092109376],[122.411827421875,29.84042503125],[122.377345,29.8338430000001],[122.377345,29.843843],[122.367345,29.843843],[122.374117460938,29.8850685859376],[122.3586340625,29.9051296210937],[122.32298953125,29.9326418281251],[122.34170046875,29.94948753125],[122.367345,29.953843],[122.367345,29.9438430000001],[122.417345,29.9438430000001]]],[[[122.417345,29.9438430000001],[122.420767851563,29.9560353828125],[122.429537382813,29.9472658515625],[122.417345,29.9438430000001]]],[[[122.453062773438,29.9567922187501],[122.457345,29.923843],[122.443892851563,29.9309279609375],[122.453062773438,29.9567922187501]]],[[[122.367345,29.953843],[122.370767851563,29.9660353828126],[122.379537382813,29.9572658515625],[122.367345,29.953843]]],[[[122.443922148438,29.9760353828125],[122.447345,29.963843],[122.435152617188,29.9672658515626],[122.443922148438,29.9760353828125]]],[[[122.397345,30.0238430000001],[122.404366484375,30.0081691718751],[122.391158476563,30.0000295234376],[122.380933867188,29.9700295234376],[122.367647734375,29.9803908515626],[122.381158476563,30.0200295234375],[122.397345,30.0238430000001]]],[[[122.397345,30.0238430000001],[122.400767851563,30.0360353828125],[122.409537382813,30.0272658515625],[122.397345,30.0238430000001]]],[[[122.423922148438,30.0460353828126],[122.427345,30.033843],[122.415152617188,30.0372658515625],[122.423922148438,30.0460353828126]]],[[[122.403922148438,30.0560353828125],[122.407345,30.043843],[122.395152617188,30.0472658515626],[122.403922148438,30.0560353828125]]],[[[122.247345,29.953843],[122.243922148438,29.9660353828126],[122.235152617188,29.9572658515625],[122.23634890625,29.9401125312501],[122.217345,29.963843],[122.227345,29.963843],[122.227345,29.973843],[122.24170046875,30.0094875312501],[122.253516875,30.029077375],[122.238297148438,30.0408278632813],[122.247345,30.0638430000001],[122.282955351563,30.059389875],[122.33322390625,30.01913596875],[122.321793242188,29.9893971992188],[122.306646757813,29.9193971992188],[122.291793242188,29.9282888007813],[122.278453398438,29.9449489570313],[122.247345,29.953843]]],[[[122.287345,30.083843],[122.283922148438,30.0716506171875],[122.275152617188,30.0804201484376],[122.287345,30.083843]]],[[[122.287345,30.083843],[122.290767851563,30.0960353828125],[122.299537382813,30.0872658515625],[122.287345,30.083843]]],[[[122.770499296875,30.1477809882813],[122.777345,30.123843],[122.752896757813,30.1308327460938],[122.770499296875,30.1477809882813]]],[[[122.687345,30.193843],[122.697345,30.193843],[122.692345,30.1810353828125],[122.687345,30.193843]]],[[[122.687345,30.193843],[122.677345,30.193843],[122.677345,30.203843],[122.687345,30.203843],[122.687345,30.193843]]],[[[122.677345,30.203843],[122.665152617188,30.2072658515625],[122.673922148438,30.2160353828125],[122.677345,30.203843]]],[[[122.642545195313,30.216157453125],[122.647345,30.193843],[122.623804960938,30.2067458320313],[122.642545195313,30.216157453125]]],[[[122.697345,30.193843],[122.701397734375,30.216841046875],[122.7100403125,30.1992775703125],[122.697345,30.193843]]]]}},{"type":"Feature","properties":{"name":"岱山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.18142703125,30.1697585273438],[122.167345,30.143843],[122.15142703125,30.1479274726563],[122.14326296875,30.1597585273438],[122.118980742188,30.168843],[122.14326296875,30.1779274726563],[122.159229765625,30.2010573554688],[122.208463164063,30.1884230781251],[122.18142703125,30.1697585273438]]],[[[122.583922148438,30.2060353828125],[122.587345,30.193843],[122.575152617188,30.1972658515626],[122.583922148438,30.2060353828125]]],[[[122.563922148438,30.2160353828125],[122.567345,30.203843],[122.555152617188,30.2072658515625],[122.563922148438,30.2160353828125]]],[[[122.113922148438,30.2260353828126],[122.117345,30.2138430000001],[122.105152617188,30.2172658515625],[122.113922148438,30.2260353828126]]],[[[122.141910429688,30.2265407539063],[122.147345,30.2138430000001],[122.124346953125,30.217895734375],[122.141910429688,30.2265407539063]]],[[[122.197345,30.233843],[122.194112578125,30.2116579414063],[122.175728789063,30.2306935859375],[122.197345,30.233843]]],[[[122.277345,30.233843],[122.273922148438,30.2216506171875],[122.265152617188,30.2304201484376],[122.277345,30.233843]]],[[[122.523922148438,30.2360353828126],[122.527345,30.223843],[122.515152617188,30.2272658515626],[122.523922148438,30.2360353828126]]],[[[122.491910429688,30.2365407539063],[122.497345,30.223843],[122.474346953125,30.2278957343751],[122.491910429688,30.2365407539063]]],[[[122.217345,30.243843],[122.230343046875,30.2382814765626],[122.22134890625,30.221118390625],[122.217345,30.243843]]],[[[122.277345,30.233843],[122.277345,30.243843],[122.300069609375,30.2478493476563],[122.282906523438,30.256841046875],[122.277345,30.243843],[122.25298953125,30.2506252265626],[122.261783476563,30.2696657539063],[122.277345,30.2673659492188],[122.292345,30.2695827460938],[122.315826445313,30.2661110664063],[122.365704375,30.2806545234376],[122.411129179688,30.2620607734375],[122.414464140625,30.2394875312501],[122.38170046875,30.24819846875],[122.37252078125,30.260093],[122.3427746875,30.2380397773438],[122.331832304688,30.2396584296875],[122.322345,30.2273659492188],[122.312843046875,30.2396755195313],[122.277345,30.233843]]],[[[121.583922148438,30.2960353828125],[121.587345,30.2838430000001],[121.575152617188,30.2872658515625],[121.583922148438,30.2960353828125]]],[[[122.033922148438,30.2960353828125],[122.037345,30.2838430000001],[122.025152617188,30.2872658515625],[122.033922148438,30.2960353828125]]],[[[122.063922148438,30.3060353828126],[122.067345,30.2938430000001],[122.055152617188,30.2972658515625],[122.063922148438,30.3060353828126]]],[[[121.973004179688,30.3291555000001],[121.967345,30.2838430000001],[121.953448515625,30.2949709296876],[121.950865507813,30.3157497382813],[121.968912382813,30.3382888007813],[121.973004179688,30.3291555000001]]],[[[122.217345,30.243843],[122.197345,30.233843],[122.191422148438,30.2412404609375],[122.131793242188,30.2582888007813],[122.081593046875,30.287798078125],[122.08326296875,30.3012404609375],[122.172457304688,30.3267409492188],[122.177345,30.343843],[122.220479765625,30.3264699531251],[122.223824492188,30.303843],[122.221607695313,30.2888430000001],[122.2252746875,30.2640138984376],[122.217345,30.243843]]],[[[122.177345,30.343843],[122.165152617188,30.3472658515626],[122.173922148438,30.3560353828125],[122.177345,30.343843]]],[[[122.467345,30.433843],[122.480797148438,30.4267580390625],[122.471627226563,30.40089378125],[122.467345,30.433843]]],[[[122.467345,30.433843],[122.444346953125,30.437895734375],[122.461910429688,30.4465407539063],[122.467345,30.433843]]],[[[122.511910429688,30.4465407539063],[122.517345,30.433843],[122.494346953125,30.437895734375],[122.511910429688,30.4465407539063]]],[[[122.427345,30.4438430000001],[122.430767851563,30.4560353828126],[122.439537382813,30.4472658515625],[122.427345,30.4438430000001]]],[[[122.427345,30.4438430000001],[122.42156375,30.4291359687501],[122.423516875,30.4159279609375],[122.351866484375,30.4297023750001],[122.342857695313,30.4180275703125],[122.327345,30.4203200507813],[122.30599734375,30.4171657539063],[122.27990359375,30.4373073554688],[122.283082304688,30.458843],[122.281256132813,30.4712209296876],[122.302345,30.4681032539063],[122.318595,30.4705055976563],[122.372203398438,30.4580837226563],[122.385953398438,30.4601149726563],[122.427345,30.4438430000001]]],[[[122.303922148438,30.5060353828125],[122.307345,30.493843],[122.295152617188,30.4972658515626],[122.303922148438,30.5060353828125]]],[[[122.263922148438,30.5260353828125],[122.267345,30.5138430000001],[122.255152617188,30.5172658515625],[122.263922148438,30.5260353828125]]],[[[122.323922148438,30.5260353828125],[122.327345,30.5138430000001],[122.315152617188,30.5172658515625],[122.323922148438,30.5260353828125]]],[[[122.333922148438,30.6060353828126],[122.337345,30.5938430000001],[122.325152617188,30.5972658515625],[122.333922148438,30.6060353828126]]],[[[122.353922148438,30.6060353828126],[122.357345,30.5938430000001],[122.345152617188,30.5972658515625],[122.353922148438,30.6060353828126]]]]}},{"type":"Feature","properties":{"name":"嵊泗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.933922148438,30.4460353828125],[122.937345,30.433843],[122.925152617188,30.4372658515625],[122.933922148438,30.4460353828125]]],[[[121.703922148438,30.5660353828125],[121.707345,30.5538430000001],[121.695152617188,30.5572658515625],[121.703922148438,30.5660353828125]]],[[[122.073985625,30.590483625],[122.077345,30.573843],[122.043985625,30.590571515625],[122.073985625,30.590483625]]],[[[122.103922148438,30.6260353828125],[122.107345,30.613843],[122.095152617188,30.6172658515626],[122.103922148438,30.6260353828125]]],[[[122.143922148438,30.6260353828125],[122.147345,30.613843],[122.135152617188,30.6172658515626],[122.143922148438,30.6260353828125]]],[[[122.423922148438,30.6260353828125],[122.427345,30.613843],[122.415152617188,30.6172658515626],[122.423922148438,30.6260353828125]]],[[[122.053922148438,30.6460353828125],[122.057345,30.6338430000001],[122.045152617188,30.6372658515625],[122.053922148438,30.6460353828125]]],[[[122.557345,30.653843],[122.567345,30.653843],[122.562345,30.6410353828125],[122.557345,30.653843]]],[[[122.283922148438,30.6560353828126],[122.287345,30.643843],[122.275152617188,30.6472658515626],[122.283922148438,30.6560353828126]]],[[[122.513922148438,30.6560353828126],[122.517345,30.643843],[122.505152617188,30.6472658515626],[122.513922148438,30.6560353828126]]],[[[122.557345,30.653843],[122.544537382813,30.658843],[122.557345,30.663843],[122.557345,30.653843]]],[[[122.567345,30.653843],[122.567345,30.663843],[122.580152617188,30.658843],[122.567345,30.653843]]],[[[122.023922148438,30.6660353828125],[122.027345,30.653843],[122.015152617188,30.6572658515626],[122.023922148438,30.6660353828125]]],[[[122.533922148438,30.6760353828125],[122.537345,30.663843],[122.525152617188,30.6672658515625],[122.533922148438,30.6760353828125]]],[[[122.567345,30.663843],[122.557345,30.663843],[122.562345,30.6766506171875],[122.567345,30.663843]]],[[[122.423922148438,30.6860353828126],[122.427345,30.6738430000001],[122.415152617188,30.6772658515625],[122.423922148438,30.6860353828126]]],[[[122.827345,30.7138430000001],[122.839537382813,30.7104201484375],[122.830767851563,30.7016506171875],[122.827345,30.7138430000001]]],[[[122.777345,30.723843],[122.760714140625,30.6997585273438],[122.743277617188,30.7151003242187],[122.777345,30.723843]]],[[[122.787345,30.723843],[122.799537382813,30.7204201484376],[122.790767851563,30.7116506171875],[122.787345,30.723843]]],[[[122.787345,30.723843],[122.777345,30.723843],[122.782345,30.7366506171875],[122.787345,30.723843]]],[[[122.827345,30.7138430000001],[122.803804960938,30.7189064765625],[122.814835234375,30.7366603828126],[122.827345,30.7138430000001]]],[[[122.447345,30.7438430000001],[122.453746367188,30.7208522773437],[122.492345,30.7151491523438],[122.53170046875,30.7209645820313],[122.52213015625,30.706938703125],[122.429298125,30.6932204414063],[122.433824492188,30.723843],[122.431519804688,30.7394362617188],[122.447345,30.7438430000001]]],[[[122.447345,30.7438430000001],[122.452906523438,30.7568410468751],[122.470069609375,30.7478493476563],[122.447345,30.7438430000001]]],[[[122.393922148438,30.7760353828125],[122.397345,30.763843],[122.385152617188,30.7672658515626],[122.393922148438,30.7760353828125]]],[[[122.723922148438,30.7960353828125],[122.727345,30.7838430000001],[122.715152617188,30.7872658515625],[122.723922148438,30.7960353828125]]],[[[122.781910429688,30.7965407539063],[122.787345,30.7838430000001],[122.764346953125,30.787895734375],[122.781910429688,30.7965407539063]]],[[[122.657345,30.813843],[122.669537382813,30.8104201484375],[122.660767851563,30.8016506171876],[122.657345,30.813843]]],[[[122.173922148438,30.8160353828125],[122.177345,30.803843],[122.165152617188,30.8072658515626],[122.173922148438,30.8160353828125]]],[[[122.753922148438,30.8160353828125],[122.757345,30.803843],[122.745152617188,30.8072658515626],[122.753922148438,30.8160353828125]]],[[[122.657345,30.813843],[122.613624296875,30.8183278632813],[122.649556914063,30.8269826484376],[122.657345,30.813843]]],[[[122.693985625,30.850483625],[122.697345,30.843843],[122.663985625,30.8480495429688],[122.671456328125,30.861880109375],[122.693985625,30.850483625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"黄岩区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.22298953125,28.7194875312501],[121.235928984375,28.7027223945313],[121.282857695313,28.7096584296875],[121.297838164063,28.6902468085938],[121.312379179688,28.6880983710938],[121.347345,28.6938430000001],[121.36166140625,28.6819484687501],[121.347345,28.643843],[121.290806914063,28.6342385078126],[121.293082304688,28.6188430000001],[121.291607695313,28.6088430000001],[121.296285429688,28.5771779609375],[121.31298953125,28.54948753125],[121.317345,28.5338430000001],[121.279888945313,28.5312990546875],[121.264801054688,28.5163869453126],[121.167345,28.513843],[121.161519804688,28.5180178046875],[121.126314726563,28.5249758125001],[121.096910429688,28.5436428046875],[121.07564578125,28.4885158515625],[121.022413359375,28.4778420234375],[121.007345,28.4808180976563],[120.992261992188,28.4778395820313],[120.967345,28.483843],[120.961612578125,28.4881081367188],[120.952955351563,28.5098952460938],[120.867808867188,28.4897731757813],[120.853077421875,28.5095778632813],[120.83099734375,28.5260036445313],[120.834068632813,28.543843],[120.8301184375,28.5667800117188],[120.801612578125,28.5781081367188],[120.797345,28.593843],[120.81170046875,28.61948753125],[120.88099734375,28.6312575507813],[120.902706328125,28.628051984375],[120.91170046875,28.6327614570313],[120.89170046875,28.64819846875],[120.876812773438,28.667485578125],[120.90298953125,28.67819846875],[120.91170046875,28.70948753125],[120.917345,28.7238430000001],[120.94298953125,28.7194875312501],[120.96170046875,28.70819846875],[120.98298953125,28.69948753125],[121.003336210938,28.6872121406251],[121.052935820313,28.6677126289063],[121.10298953125,28.68819846875],[121.121954375,28.6996388984375],[121.132735625,28.6980471015626],[121.182720976563,28.72819846875],[121.22298953125,28.7194875312501]]]]}},{"type":"Feature","properties":{"name":"路桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.633922148438,28.4660353828125],[121.637345,28.453843],[121.625152617188,28.4572658515625],[121.633922148438,28.4660353828125]]],[[[121.65334109375,28.476567609375],[121.657345,28.453843],[121.644346953125,28.4594045234375],[121.65334109375,28.476567609375]]],[[[121.607345,28.4938430000001],[121.6305871875,28.488843],[121.607345,28.483843],[121.607345,28.4938430000001]]],[[[121.593922148438,28.5660353828125],[121.597345,28.553843],[121.585152617188,28.5572658515626],[121.593922148438,28.5660353828125]]],[[[121.607345,28.4938430000001],[121.587345,28.4938430000001],[121.572623320313,28.5000270820312],[121.547345,28.4943605781251],[121.495694609375,28.5059377265626],[121.483013945313,28.4875710273438],[121.472345,28.4899636054688],[121.461842070313,28.4876100898438],[121.432847929688,28.5100759101563],[121.392139921875,28.5009523750001],[121.360230742188,28.5217311835938],[121.341890898438,28.5176198554688],[121.317345,28.5338430000001],[121.31298953125,28.54948753125],[121.296285429688,28.5771779609375],[121.291607695313,28.6088430000001],[121.293082304688,28.6188430000001],[121.290806914063,28.6342385078126],[121.347345,28.643843],[121.355728789063,28.6111745429688],[121.397017851563,28.5842873359375],[121.431676054688,28.592055890625],[121.44435671875,28.5736891914063],[121.487345,28.5833254218751],[121.512623320313,28.5776589179688],[121.527345,28.583843],[121.533170195313,28.5796681953125],[121.562027617188,28.5298928046875],[121.590484648438,28.5242702460938],[121.607506132813,28.5480178046875],[121.625474882813,28.5215358710938],[121.607345,28.4938430000001]]]]}},{"type":"Feature","properties":{"name":"温岭市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.633922148438,28.2360353828125],[121.637345,28.223843],[121.625152617188,28.2272658515625],[121.633922148438,28.2360353828125]]],[[[121.687345,28.2738430000001],[121.699537382813,28.2704201484375],[121.690767851563,28.2616506171875],[121.687345,28.2738430000001]]],[[[121.733922148438,28.2760353828125],[121.737345,28.263843],[121.725152617188,28.2672658515625],[121.733922148438,28.2760353828125]]],[[[121.687345,28.2738430000001],[121.674346953125,28.2794045234376],[121.68334109375,28.296567609375],[121.687345,28.2738430000001]]],[[[121.647345,28.353843],[121.650767851563,28.3660353828126],[121.659537382813,28.3572658515625],[121.647345,28.353843]]],[[[121.637345,28.3838430000001],[121.633292265625,28.360844953125],[121.6246496875,28.3784084296875],[121.637345,28.3838430000001]]],[[[121.647345,28.3838430000001],[121.659537382813,28.3804201484375],[121.650767851563,28.3716506171876],[121.647345,28.3838430000001]]],[[[121.683922148438,28.3860353828125],[121.687345,28.373843],[121.675152617188,28.3772658515625],[121.683922148438,28.3860353828125]]],[[[121.723922148438,28.3860353828125],[121.727345,28.373843],[121.715152617188,28.3772658515625],[121.723922148438,28.3860353828125]]],[[[121.647345,28.3838430000001],[121.637345,28.3838430000001],[121.642345,28.3966506171875],[121.647345,28.3838430000001]]],[[[121.683922148438,28.4160353828125],[121.687345,28.403843],[121.675152617188,28.4072658515626],[121.683922148438,28.4160353828125]]],[[[121.66334109375,28.416567609375],[121.667345,28.393843],[121.654346953125,28.3994045234376],[121.66334109375,28.416567609375]]],[[[121.647345,28.353843],[121.654268828125,28.3373537421875],[121.63791140625,28.29362815625],[121.6076184375,28.2497585273438],[121.581046171875,28.2580471015625],[121.583975859375,28.2711208320313],[121.568433867188,28.3126564765625],[121.486905546875,28.3379274726563],[121.46142703125,28.3297585273438],[121.45326296875,28.3079274726563],[121.406261015625,28.2958669257813],[121.42326296875,28.2697585273438],[121.427345,28.253843],[121.351319609375,28.27558128125],[121.3570715625,28.3218361640625],[121.257857695313,28.2759596992188],[121.237345,28.283843],[121.220704375,28.317202375],[121.213985625,28.3604836250001],[121.207345,28.363843],[121.207345,28.373843],[121.251871367188,28.4002761054688],[121.222242460938,28.4287477851563],[121.222447539063,28.4389382148438],[121.177701445313,28.4819338203125],[121.167345,28.513843],[121.264801054688,28.5163869453126],[121.279888945313,28.5312990546875],[121.317345,28.5338430000001],[121.341890898438,28.5176198554688],[121.360230742188,28.5217311835938],[121.392139921875,28.5009523750001],[121.432847929688,28.5100759101563],[121.461842070313,28.4876100898438],[121.472345,28.4899636054688],[121.483013945313,28.4875710273438],[121.495694609375,28.5059377265626],[121.547345,28.4943605781251],[121.572623320313,28.5000270820312],[121.587345,28.4938430000001],[121.587345,28.483843],[121.607345,28.483843],[121.603985625,28.467202375],[121.573985625,28.4585451484375],[121.580704375,28.427202375],[121.608140898438,28.3957131171876],[121.595504179688,28.3698342109375],[121.613985625,28.3604836250001],[121.623375273438,28.3419264960937],[121.647345,28.353843]],[[121.257345,28.3438430000001],[121.251910429688,28.3565407539063],[121.234346953125,28.347895734375],[121.257345,28.3438430000001]],[[121.265152617188,28.3572658515625],[121.277345,28.353843],[121.273922148438,28.3660353828126],[121.265152617188,28.3572658515625]]]]}},{"type":"Feature","properties":{"name":"玉环县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.143922148438,28.0260353828126],[121.147345,28.013843],[121.135152617188,28.0172658515625],[121.143922148438,28.0260353828126]]],[[[121.157345,28.0438430000001],[121.153922148438,28.0316506171875],[121.145152617188,28.0404201484375],[121.157345,28.0438430000001]]],[[[121.413922148438,28.0460353828125],[121.417345,28.033843],[121.405152617188,28.0372658515625],[121.413922148438,28.0460353828125]]],[[[121.253922148438,28.0560353828126],[121.257345,28.0438430000001],[121.245152617188,28.0472658515625],[121.253922148438,28.0560353828126]]],[[[121.413922148438,28.0660353828126],[121.417345,28.053843],[121.405152617188,28.0572658515626],[121.413922148438,28.0660353828126]]],[[[121.227345,28.0738430000001],[121.250343046875,28.0697902656251],[121.232779570313,28.0611452460938],[121.227345,28.0738430000001]]],[[[121.50334109375,28.096567609375],[121.507345,28.0738430000001],[121.494346953125,28.0794045234375],[121.50334109375,28.096567609375]]],[[[121.523922148438,28.1060353828125],[121.527345,28.093843],[121.515152617188,28.0972658515626],[121.523922148438,28.1060353828125]]],[[[121.40334109375,28.106567609375],[121.407345,28.0838430000001],[121.394346953125,28.0894045234376],[121.40334109375,28.106567609375]]],[[[121.393922148438,28.1360353828126],[121.397345,28.1238430000001],[121.385152617188,28.1272658515625],[121.393922148438,28.1360353828126]]],[[[121.153922148438,28.1760353828126],[121.157345,28.163843],[121.145152617188,28.1672658515625],[121.153922148438,28.1760353828126]]],[[[121.163922148438,28.1960353828125],[121.167345,28.183843],[121.155152617188,28.1872658515625],[121.163922148438,28.1960353828125]]],[[[121.387345,28.183843],[121.390767851563,28.1960353828125],[121.399537382813,28.1872658515625],[121.387345,28.183843]]],[[[121.167345,28.243843],[121.180523710938,28.2377028632813],[121.16443484375,28.2106642890625],[121.14830203125,28.2296315742188],[121.164166289063,28.2370217109376],[121.167345,28.243843]]],[[[121.167345,28.243843],[121.157345,28.243843],[121.157345,28.253843],[121.167345,28.253843],[121.167345,28.243843]]],[[[121.157345,28.253843],[121.144346953125,28.2594045234375],[121.15334109375,28.2765676093751],[121.157345,28.253843]]],[[[121.387345,28.183843],[121.383443632813,28.1677468085938],[121.371246367188,28.1599391914063],[121.358443632813,28.1399391914063],[121.336178007813,28.1500490546876],[121.323443632813,28.1699391914063],[121.301246367188,28.1777468085937],[121.292345,28.1916530585938],[121.283443632813,28.1777468085937],[121.265909453125,28.1665212226563],[121.256636992188,28.1335256171876],[121.291246367188,28.0901589179688],[121.281612578125,28.0748342109375],[121.236158476563,28.0876076484376],[121.227345,28.0738430000001],[121.221793242188,28.0693971992188],[121.206226835938,28.0499562812501],[121.157345,28.0438430000001],[121.15156375,28.0585500312501],[121.15312625,28.0691359687501],[121.129718046875,28.1286769843751],[121.167525664063,28.1441481757813],[121.20685671875,28.1733083320313],[121.200128203125,28.218843],[121.203824492188,28.243843],[121.201519804688,28.2594362617188],[121.23298953125,28.26819846875],[121.237345,28.283843],[121.257857695313,28.2759596992188],[121.3570715625,28.3218361640625],[121.351319609375,28.27558128125],[121.427345,28.253843],[121.394029570313,28.2041603828125],[121.3776184375,28.2279274726563],[121.365162382813,28.2114894843751],[121.38142703125,28.1879274726563],[121.387345,28.183843]]]]}},{"type":"Feature","properties":{"name":"三门县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.763922148438,28.8860353828125],[121.767345,28.8738430000001],[121.755152617188,28.8772658515625],[121.763922148438,28.8860353828125]]],[[[121.723922148438,28.9260353828125],[121.727345,28.9138430000001],[121.715152617188,28.9172658515625],[121.723922148438,28.9260353828125]]],[[[121.707345,28.9538430000001],[121.710767851563,28.9660353828125],[121.719537382813,28.9572658515625],[121.707345,28.9538430000001]]],[[[121.697345,29.013843],[121.709537382813,29.0104201484376],[121.700767851563,29.0016506171875],[121.697345,29.013843]]],[[[121.667345,29.053843],[121.670767851563,29.0660353828125],[121.679537382813,29.0572658515626],[121.667345,29.053843]]],[[[121.687345,29.1038430000001],[121.700343046875,29.0982814765626],[121.69134890625,29.081118390625],[121.687345,29.1038430000001]]],[[[121.687345,29.1038430000001],[121.674346953125,29.1094045234375],[121.68334109375,29.126567609375],[121.687345,29.1038430000001]]],[[[121.592652617188,29.1489797187501],[121.587345,29.133843],[121.532535429688,29.1443068671876],[121.572906523438,29.1780104804688],[121.572139921875,29.1586598945313],[121.592652617188,29.1489797187501]]],[[[121.637345,29.043843],[121.614620390625,29.0398366523437],[121.631783476563,29.030844953125],[121.650704375,29.0504836250001],[121.667345,29.053843],[121.6541028125,29.0229860664063],[121.685933867188,29.0310060859376],[121.697345,29.013843],[121.683599882813,29.0068898750001],[121.667393828125,28.9737038398438],[121.682345,28.9664015937501],[121.693336210938,28.9717678046875],[121.700704375,28.957202375],[121.707345,28.9538430000001],[121.71170046875,28.94819846875],[121.7238684375,28.9388088203125],[121.6808215625,28.9088771796875],[121.70170046875,28.8927614570312],[121.692706328125,28.888051984375],[121.682345,28.8895827460938],[121.671832304688,28.8880275703125],[121.66298953125,28.89948753125],[121.628155546875,28.9091872382813],[121.563746367188,28.9355471015626],[121.546265898438,28.95819846875],[121.523463164063,28.9445583320313],[121.54298953125,28.92948753125],[121.552916289063,28.9052321601562],[121.582735625,28.9096388984376],[121.601954375,28.8980471015626],[121.61869265625,28.9005202460938],[121.63298953125,28.88948753125],[121.637345,28.863843],[121.620538359375,28.8443361640625],[121.48197390625,28.8584719062501],[121.47271609375,28.87921409375],[121.46197390625,28.88847190625],[121.434522734375,28.93230003125],[121.394947539063,28.9782326484376],[121.382022734375,28.9792702460938],[121.37271609375,28.96847190625],[121.3619153125,28.9591677070313],[121.363521757813,28.9392140937501],[121.34197390625,28.94847190625],[121.324967070313,28.9682106757813],[121.30197390625,28.9784719062501],[121.29271609375,28.98921409375],[121.28197390625,28.99847190625],[121.272667265625,29.0092702460938],[121.253902617188,29.0077638984375],[121.22271609375,29.01921409375],[121.197345,29.023843],[121.220704375,29.070483625],[121.243985625,29.0972023750001],[121.247345,29.1138430000001],[121.26326296875,29.1097585273438],[121.282345,29.0973317695313],[121.301900664063,29.110063703125],[121.313013945313,29.1075710273438],[121.32142703125,29.1197585273438],[121.344215117188,29.1354909492188],[121.341124296875,29.1492897773438],[121.355235625,29.1709572578126],[121.349859648438,29.1949245429688],[121.378375273438,29.2013161445312],[121.40142703125,29.1679274726563],[121.437345,29.163843],[121.44170046875,29.1581984687501],[121.46406375,29.1409377265625],[121.447769804688,29.0994875312501],[121.48298953125,29.10819846875],[121.511021757813,29.1251100898437],[121.645445585938,29.1022731757813],[121.631534453125,29.0792116523438],[121.637345,29.043843]],[[121.577345,29.043843],[121.573922148438,29.0560353828126],[121.565152617188,29.0472658515626],[121.577345,29.043843]],[[121.547345,29.0338430000001],[121.556553984375,29.0572634101563],[121.53298953125,29.0449245429688],[121.547345,29.0338430000001]],[[121.584346953125,29.037895734375],[121.607345,29.0338430000001],[121.601910429688,29.0465407539063],[121.584346953125,29.037895734375]],[[121.537345,29.1038430000001],[121.53056765625,29.1167067695313],[121.503892851563,29.1081887031251],[121.537345,29.1038430000001]],[[121.427345,29.1438430000001],[121.423922148438,29.1560353828125],[121.415152617188,29.1472658515625],[121.427345,29.1438430000001]],[[121.523531523438,29.0185158515625],[121.547345,29.003843],[121.556886015625,29.0251442695313],[121.523531523438,29.0185158515625]]]]}},{"type":"Feature","properties":{"name":"天台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1933215625,29.3086452460938],[121.17154421875,29.2792726875],[121.173160429688,29.2683303046875],[121.153350859375,29.2530397773438],[121.17170046875,29.20819846875],[121.22338015625,29.199419171875],[121.261026640625,29.1486452460937],[121.247345,29.1138430000001],[121.243985625,29.0972023750001],[121.220704375,29.070483625],[121.197345,29.023843],[121.172896757813,29.0393971992187],[121.121793242188,29.0482888007812],[121.080391875,29.0726247382813],[121.052896757813,29.0382888007813],[121.037628203125,29.026059796875],[120.940113554688,29.0397878242188],[120.922896757813,29.0182888007813],[120.891793242188,29.0093971992188],[120.84181765625,28.9694264960938],[120.832896757813,28.9582888007813],[120.827345,28.9538430000001],[120.788389921875,28.9695314765626],[120.77172,28.9911330390625],[120.727345,28.983843],[120.71939578125,29.0306252265625],[120.702345,29.0281032539063],[120.690284453125,29.0298854804688],[120.695299101563,29.063843],[120.69154421875,29.0892726875],[120.714835234375,29.1206911445313],[120.732706328125,29.118051984375],[120.74170046875,29.1227614570312],[120.706431914063,29.1499831367188],[120.758492460938,29.1901638007812],[120.777345,29.2238430000001],[120.781612578125,29.2295778632813],[120.823077421875,29.2381081367188],[120.844107695313,29.2511232734375],[120.894303007813,29.2424806953126],[120.889654570313,29.2694850898437],[120.903189726563,29.3035524726563],[120.951500273438,29.2841335273438],[120.962940703125,29.3129201484376],[121.007345,29.3205641914063],[121.032345,29.3162599921876],[121.094605742188,29.3269802070313],[121.089888945313,29.2995778632813],[121.113077421875,29.3081081367188],[121.122735625,29.343735578125],[121.161612578125,29.3281081367187],[121.187345,29.323843],[121.1933215625,29.3086452460938]]]]}},{"type":"Feature","properties":{"name":"椒江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.906886015625,28.4551442695313],[121.897345,28.433843],[121.873531523438,28.4485158515625],[121.906886015625,28.4551442695313]]],[[[121.887345,28.483843],[121.883922148438,28.4716506171875],[121.875152617188,28.4804201484376],[121.887345,28.483843]]],[[[121.887345,28.483843],[121.887345,28.5038430000001],[121.919215117188,28.4998244453126],[121.887345,28.483843]]],[[[121.887345,28.5038430000001],[121.875152617188,28.5072658515625],[121.883922148438,28.5160353828126],[121.887345,28.5038430000001]]],[[[121.813922148438,28.6160353828125],[121.817345,28.603843],[121.805152617188,28.6072658515625],[121.813922148438,28.6160353828125]]],[[[121.863922148438,28.6260353828126],[121.867345,28.6138430000001],[121.855152617188,28.6172658515625],[121.863922148438,28.6260353828126]]],[[[121.367345,28.753843],[121.370767851563,28.7416506171876],[121.379537382813,28.7504201484376],[121.375323515625,28.784926984375],[121.40142703125,28.7679274726563],[121.434176054688,28.7556740546875],[121.46142703125,28.7379274726563],[121.5068371875,28.7290602851563],[121.52142703125,28.7079274726563],[121.53326296875,28.6997585273438],[121.537345,28.6938430000001],[121.53142703125,28.6897585273438],[121.513414335938,28.6636696601563],[121.523468046875,28.6188430000001],[121.521217070313,28.6088014960938],[121.527345,28.583843],[121.512623320313,28.5776589179688],[121.487345,28.5833254218751],[121.44435671875,28.5736891914063],[121.431676054688,28.592055890625],[121.397017851563,28.5842873359375],[121.355728789063,28.6111745429688],[121.347345,28.643843],[121.36166140625,28.6819484687501],[121.347345,28.6938430000001],[121.347345,28.753843],[121.367345,28.753843]]]]}},{"type":"Feature","properties":{"name":"临海市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.794195585938,28.7054567695313],[121.797345,28.6838430000001],[121.7751575,28.687075421875],[121.794195585938,28.7054567695313]]],[[[121.761910429688,28.7065407539063],[121.767345,28.6938430000001],[121.744346953125,28.697895734375],[121.761910429688,28.7065407539063]]],[[[121.863922148438,28.7160353828125],[121.867345,28.703843],[121.855152617188,28.7072658515626],[121.863922148438,28.7160353828125]]],[[[121.637345,28.7238430000001],[121.660343046875,28.719790265625],[121.642779570313,28.7111452460938],[121.637345,28.7238430000001]]],[[[121.923922148438,28.7260353828125],[121.927345,28.713843],[121.915152617188,28.7172658515625],[121.923922148438,28.7260353828125]]],[[[121.367345,28.753843],[121.379537382813,28.7504201484376],[121.370767851563,28.7416506171876],[121.367345,28.753843]]],[[[121.860499296875,28.7577809882812],[121.867345,28.733843],[121.842896757813,28.7408327460938],[121.860499296875,28.7577809882812]]],[[[121.891910429688,28.7665407539063],[121.897345,28.753843],[121.874346953125,28.757895734375],[121.891910429688,28.7665407539063]]],[[[121.823922148438,28.7760353828125],[121.827345,28.7638430000001],[121.815152617188,28.7672658515625],[121.823922148438,28.7760353828125]]],[[[121.847345,28.783843],[121.843922148438,28.7716506171875],[121.835152617188,28.7804201484376],[121.847345,28.783843]]],[[[121.773922148438,28.7960353828125],[121.777345,28.783843],[121.765152617188,28.7872658515626],[121.773922148438,28.7960353828125]]],[[[121.847345,28.783843],[121.851553984375,28.817202375],[121.865382109375,28.8097292304688],[121.853985625,28.7872023750001],[121.847345,28.783843]]],[[[121.637345,28.7238430000001],[121.619781523438,28.7200637031251],[121.627896757813,28.7003713203126],[121.591510039063,28.7153713203125],[121.553804960938,28.6973830390626],[121.537345,28.6938430000001],[121.53326296875,28.6997585273438],[121.52142703125,28.7079274726563],[121.5068371875,28.7290602851563],[121.46142703125,28.7379274726563],[121.434176054688,28.7556740546875],[121.40142703125,28.7679274726563],[121.375323515625,28.784926984375],[121.367345,28.753843],[121.347345,28.753843],[121.347345,28.6938430000001],[121.312379179688,28.6880983710938],[121.297838164063,28.6902468085938],[121.282857695313,28.7096584296875],[121.235928984375,28.7027223945313],[121.22298953125,28.7194875312501],[121.182720976563,28.72819846875],[121.132735625,28.6980471015626],[121.121954375,28.6996388984375],[121.10298953125,28.68819846875],[121.052935820313,28.6677126289063],[121.003336210938,28.6872121406251],[120.98298953125,28.69948753125],[120.96170046875,28.70819846875],[120.94298953125,28.7194875312501],[120.917345,28.7238430000001],[120.9237903125,28.7522194648438],[120.914810820313,28.8244216132813],[120.899581328125,28.8640456367188],[120.871441679688,28.886577375],[120.873472929688,28.9029201484376],[120.841793242188,28.9282888007813],[120.827345,28.9538430000001],[120.832896757813,28.9582888007813],[120.84181765625,28.9694264960938],[120.891793242188,29.0093971992188],[120.922896757813,29.0182888007813],[120.940113554688,29.0397878242188],[121.037628203125,29.026059796875],[121.052896757813,29.0382888007813],[121.080391875,29.0726247382813],[121.121793242188,29.0482888007812],[121.172896757813,29.0393971992187],[121.197345,29.023843],[121.22271609375,29.01921409375],[121.253902617188,29.0077638984375],[121.272667265625,29.0092702460938],[121.28197390625,28.99847190625],[121.29271609375,28.98921409375],[121.30197390625,28.9784719062501],[121.324967070313,28.9682106757813],[121.34197390625,28.94847190625],[121.363521757813,28.9392140937501],[121.3619153125,28.9591677070313],[121.37271609375,28.96847190625],[121.382022734375,28.9792702460938],[121.394947539063,28.9782326484376],[121.434522734375,28.93230003125],[121.46197390625,28.88847190625],[121.47271609375,28.87921409375],[121.48197390625,28.8584719062501],[121.620538359375,28.8443361640625],[121.637345,28.863843],[121.672550078125,28.8590309882813],[121.671949492188,28.8438430000001],[121.672545195313,28.828843],[121.671749296875,28.8088430000001],[121.701685820313,28.7947145820313],[121.644556914063,28.7766286445313],[121.637345,28.7238430000001]]]]}},{"type":"Feature","properties":{"name":"仙居县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.77172,28.9911330390625],[120.788389921875,28.9695314765626],[120.827345,28.9538430000001],[120.841793242188,28.9282888007813],[120.873472929688,28.9029201484376],[120.871441679688,28.886577375],[120.899581328125,28.8640456367188],[120.914810820313,28.8244216132813],[120.9237903125,28.7522194648438],[120.917345,28.7238430000001],[120.91170046875,28.70948753125],[120.90298953125,28.67819846875],[120.876812773438,28.667485578125],[120.89170046875,28.64819846875],[120.91170046875,28.6327614570313],[120.902706328125,28.628051984375],[120.88099734375,28.6312575507813],[120.81170046875,28.61948753125],[120.797345,28.593843],[120.76197390625,28.5984719062501],[120.741363554688,28.6099684882813],[120.722345,28.6084401679688],[120.702667265625,28.6100221992188],[120.684439726563,28.5888625312501],[120.6419153125,28.5792018867188],[120.6427746875,28.5684963203125],[120.6219153125,28.5591896796875],[120.622745390625,28.548843],[120.621656523438,28.5352834296875],[120.572345,28.5392458320313],[120.55662234375,28.5379811835938],[120.464439726563,28.5894118476563],[120.437398710938,28.5872414375001],[120.42271609375,28.53847190625],[120.395504179688,28.4643703437501],[120.38271609375,28.4792140937501],[120.377345,28.483843],[120.37298953125,28.49948753125],[120.33170046875,28.5081984687501],[120.312735625,28.5196388984376],[120.29250125,28.5166506171876],[120.28298953125,28.535044171875],[120.31298953125,28.55819846875],[120.322345,28.581059796875],[120.342345,28.5781032539063],[120.375426054688,28.582993390625],[120.37093875,28.6133498359375],[120.350206328125,28.6293556953125],[120.353170195313,28.6494142890625],[120.325577421875,28.6607057929688],[120.31298953125,28.685044171875],[120.344483671875,28.7093556953125],[120.341529570313,28.7293556953126],[120.36162234375,28.7448635078125],[120.380064726563,28.7899196601563],[120.398551054688,28.7871877265625],[120.417345,28.833843],[120.442506132813,28.8444118476563],[120.479112578125,28.8362038398438],[120.493565703125,28.8583962226563],[120.49107546875,28.8695143867188],[120.50326296875,28.8779274726563],[120.513892851563,28.8933254218751],[120.531676054688,28.8675710273438],[120.542345,28.8699636054688],[120.563682890625,28.8651808906251],[120.610513945313,28.8956740546876],[120.651485625,28.9110036445313],[120.670440703125,28.9848732734375],[120.709141875,28.9761989570313],[120.727345,28.983843],[120.77172,28.9911330390625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"景宁畲族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.317345,27.713843],[119.329537382813,27.7172658515626],[119.320767851563,27.7260353828125],[119.2731653125,27.7264748359375],[119.324327421875,27.7674416328125],[119.299386015625,27.8015846992188],[119.272345,27.7982204414063],[119.257345,27.8000856757813],[119.242345,27.7982204414063],[119.230235625,27.7997267890626],[119.237345,27.843843],[119.247345,27.843843],[119.247345,27.8538430000001],[119.268619414063,27.8581374335938],[119.2474621875,27.868843],[119.263985625,27.8772023750001],[119.28134890625,27.9117702460938],[119.292345,27.9064015937501],[119.312345,27.9161696601563],[119.33892703125,27.9031862617188],[119.365816679688,27.9245436835938],[119.387345,27.913843],[119.39298953125,27.9094875312501],[119.402345,27.8973659492188],[119.421202421875,27.9217995429688],[119.433062773438,27.9064357734376],[119.49478640625,27.93069846875],[119.52170046875,27.9267214179688],[119.51298953125,27.9594875312501],[119.495660429688,27.9882131171875],[119.54298953125,27.99819846875],[119.551832304688,28.0096584296876],[119.566954375,28.0074221015626],[119.59170046875,28.03948753125],[119.630943632813,28.0555471015626],[119.64170046875,28.0694875312501],[119.669659453125,28.0809279609376],[119.70041140625,28.1207741523438],[119.717345,28.133843],[119.731339140625,28.107837140625],[119.758038359375,28.099848859375],[119.771627226563,28.1202834296875],[119.791627226563,28.1152443671875],[119.812711210938,28.1469533515625],[119.841890898438,28.1274684882813],[119.858775664063,28.131723859375],[119.835269804688,28.1669240546875],[119.882642851563,28.1549880195313],[119.887345,28.173843],[119.914815703125,28.1661940742188],[119.943975859375,28.1178493476563],[119.965479765625,28.0631520820313],[119.939425078125,27.99948753125],[119.91170046875,28.00819846875],[119.891954375,28.0201100898437],[119.88298953125,27.99819846875],[119.867345,27.973843],[119.83107546875,27.9592360664063],[119.843375273438,27.938843],[119.830172148438,27.9169484687501],[119.7880090625,27.9231789375001],[119.793116484375,27.8886330390625],[119.780592070313,27.8456911445313],[119.7830871875,27.8288088203125],[119.777345,27.793843],[119.754088164063,27.8036110664062],[119.739176054688,27.7820119453125],[119.705513945313,27.7587721992188],[119.68142703125,27.7497585273438],[119.669176054688,27.7320119453126],[119.6486340625,27.717827375],[119.637345,27.673843],[119.5823840625,27.6684377265626],[119.572345,27.6692458320312],[119.557345,27.6680397773437],[119.542105742188,27.669262921875],[119.51271609375,27.65847190625],[119.497345,27.653843],[119.48142703125,27.6579274726563],[119.47326296875,27.6997585273438],[119.4570715625,27.7179274726563],[119.443013945313,27.6975710273438],[119.431900664063,27.700063703125],[119.410230742188,27.6859548164063],[119.391900664063,27.6900637031251],[119.367345,27.6740749335938],[119.32638796875,27.700747296875],[119.317345,27.713843]]]]}},{"type":"Feature","properties":{"name":"莲都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.968746367188,28.6367311835938],[119.982808867188,28.5993044257813],[119.995050078125,28.5575905585938],[120.021954375,28.5603322578126],[120.044508085938,28.5331813789062],[120.068267851563,28.5529177070313],[120.089058867188,28.5779470039063],[120.10302859375,28.5457326484375],[120.136925078125,28.5175783515625],[120.117345,28.473843],[120.094556914063,28.4654738593751],[120.08172,28.4803737617188],[120.03197390625,28.44921409375],[120.01271609375,28.41847190625],[119.9774621875,28.4078566718751],[119.942623320313,28.3884181953125],[119.925548125,28.389790265625],[119.87271609375,28.3284719062501],[119.837784453125,28.3065920234375],[119.795045195313,28.2381179023438],[119.821373320313,28.2075588203126],[119.842345,28.2092458320313],[119.852623320313,28.2084181953125],[119.879283476563,28.2232936835938],[119.895094023438,28.1949513984375],[119.887345,28.173843],[119.882642851563,28.1549880195313],[119.835269804688,28.1669240546875],[119.858775664063,28.131723859375],[119.841890898438,28.1274684882813],[119.812711210938,28.1469533515625],[119.791627226563,28.1152443671875],[119.771627226563,28.1202834296875],[119.758038359375,28.099848859375],[119.731339140625,28.107837140625],[119.717345,28.133843],[119.7278528125,28.15886253125],[119.679361601563,28.1683303046875],[119.694586210938,28.178843],[119.677862578125,28.1903908515626],[119.70326296875,28.2079274726563],[119.71142703125,28.2197585273438],[119.73422,28.228286359375],[119.7141028125,28.2591750312501],[119.70142703125,28.2679274726563],[119.691676054688,28.2820558906251],[119.667345,28.2766017890625],[119.645655546875,28.2814626289063],[119.637345,28.3138430000001],[119.711490507813,28.3186550117187],[119.691612578125,28.3681081367188],[119.680074492188,28.41065940625],[119.685787382813,28.443843],[119.679928007813,28.4778957343751],[119.621651640625,28.4678639960937],[119.613077421875,28.5195778632813],[119.607345,28.5338430000001],[119.647047148438,28.5403639960938],[119.693883085938,28.5334450507812],[119.735030546875,28.5867580390625],[119.768448515625,28.600434796875],[119.743121367188,28.6424221015625],[119.796402617188,28.6345485664063],[119.81170046875,28.68948753125],[119.825894804688,28.7130178046876],[119.86298953125,28.72819846875],[119.867345,28.733843],[119.894244414063,28.7290505195313],[119.911881132813,28.6883815742187],[119.93166140625,28.6719533515626],[119.941881132813,28.6483815742188],[119.968746367188,28.6367311835938]]]]}},{"type":"Feature","properties":{"name":"龙泉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.137345,27.723843],[119.133922148438,27.7116506171875],[119.125152617188,27.7204201484376],[119.137345,27.723843]]],[[[119.357345,27.993843],[119.353922148438,28.0060353828125],[119.345152617188,27.9972658515625],[119.359888945313,27.9663869453125],[119.378370390625,27.9600807929688],[119.367491484375,27.948813703125],[119.384801054688,27.9312990546875],[119.387345,27.913843],[119.365816679688,27.9245436835938],[119.33892703125,27.9031862617188],[119.312345,27.9161696601563],[119.292345,27.9064015937501],[119.28134890625,27.9117702460938],[119.263985625,27.8772023750001],[119.2474621875,27.868843],[119.268619414063,27.8581374335938],[119.247345,27.8538430000001],[119.237345,27.8538430000001],[119.237345,27.843843],[119.197642851563,27.8373220039063],[119.167603789063,27.8417604804688],[119.14298953125,27.8227614570313],[119.161905546875,27.8080397773438],[119.18170046875,27.8109645820313],[119.17298953125,27.76819846875],[119.16170046875,27.7594875312501],[119.14298953125,27.72819846875],[119.137345,27.723843],[119.127345,27.7377956367188],[119.113170195313,27.7180178046875],[119.084742460938,27.7096681953126],[119.072843046875,27.7405104804688],[119.052779570313,27.72776878125],[119.035987578125,27.7310866523438],[119.023170195313,27.7796681953125],[119.011519804688,27.7880178046875],[118.997086210938,27.8081569648437],[118.958526640625,27.8230300117188],[118.918004179688,27.8150197578125],[118.8877746875,27.8571950507813],[118.837345,27.833843],[118.827345,27.833843],[118.827345,27.8538430000001],[118.82158328125,27.8787013984375],[118.823082304688,27.8888430000001],[118.81834109375,27.920923078125],[118.735416289063,27.9548659492188],[118.721182890625,28.0059743476563],[118.724561796875,28.028843],[118.718272734375,28.07140159375],[118.762999296875,28.105923078125],[118.79298953125,28.11819846875],[118.80170046875,28.1670607734375],[118.760816679688,28.1784450507813],[118.804815703125,28.230356671875],[118.78170046875,28.2481984687501],[118.777345,28.253843],[118.781793242188,28.2593971992188],[118.802896757813,28.2682888007813],[118.812135039063,28.2902053046876],[118.86267703125,28.31991721875],[118.871793242188,28.2982888007813],[118.883023710938,28.2892971015625],[118.88021609375,28.2667116523437],[118.902345,28.2694655585938],[118.912345,28.2682204414063],[118.9243371875,28.269712140625],[118.949752226563,28.2093971992188],[118.995113554688,28.221567609375],[118.988389921875,28.275639875],[119.032940703125,28.3018288398438],[119.058912382813,28.2693971992188],[119.091558867188,28.29511253125],[119.109752226563,28.3382888007813],[119.12724734375,28.3264553046875],[119.141793242188,28.3082888007813],[119.167345,28.3038430000001],[119.18517703125,28.2700295234375],[119.203531523438,28.2776564765625],[119.211470976563,28.3009548164063],[119.261051054688,28.2840602851563],[119.271158476563,28.2676564765625],[119.283531523438,28.2600295234375],[119.293150664063,28.2444216132813],[119.322345,28.2535158515625],[119.352345,28.2441701484375],[119.381539335938,28.2532643867188],[119.387345,28.243843],[119.391519804688,28.2280178046875],[119.411392851563,28.1967189765626],[119.3756653125,28.1404421210938],[119.423780546875,28.0383718085938],[119.391519804688,28.0196681953126],[119.3820325,27.9836989570313],[119.357345,27.993843]]]]}},{"type":"Feature","properties":{"name":"青田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.08172,28.4803737617188],[120.094556914063,28.4654738593751],[120.117345,28.473843],[120.135094023438,28.4430593085938],[120.1978528125,28.4780739570312],[120.239307890625,28.4299587226563],[120.29197390625,28.41847190625],[120.327345,28.413843],[120.333941679688,28.3966799140626],[120.331666289063,28.3783888984375],[120.354381132813,28.3602028632813],[120.351666289063,28.3383669257813],[120.408824492188,28.3036501289063],[120.421793242188,28.2582888007813],[120.433258085938,28.2387819648437],[120.411431914063,28.2089040351562],[120.42334109375,28.1886428046876],[120.411578398438,28.1792263007813],[120.417345,28.1538430000001],[120.375211210938,28.1499806953125],[120.393985625,28.140483625],[120.40486453125,28.1189748359375],[120.397345,28.103843],[120.360128203125,28.0888527656251],[120.364483671875,28.0593556953125],[120.35170046875,28.04948753125],[120.330948515625,27.9987795234375],[120.34298953125,27.9894875312501],[120.347345,27.983843],[120.33255984375,27.9772194648438],[120.301104765625,27.987016828125],[120.2697278125,27.9649855781251],[120.251500273438,27.9706618476563],[120.233531523438,27.9376564765625],[120.227345,27.933843],[120.191070585938,27.9442140937501],[120.156456328125,27.9874391914063],[120.060889921875,27.975551984375],[120.06302859375,27.9583278632813],[120.023033476563,27.9468923164062],[120.002345,27.9494655585938],[119.959898710938,27.944184796875],[119.96302859375,27.9693508125],[119.936920195313,27.9782888007813],[119.897125273438,27.9548976875],[119.867345,27.973843],[119.88298953125,27.99819846875],[119.891954375,28.0201100898437],[119.91170046875,28.00819846875],[119.939425078125,27.99948753125],[119.965479765625,28.0631520820313],[119.943975859375,28.1178493476563],[119.914815703125,28.1661940742188],[119.887345,28.173843],[119.895094023438,28.1949513984375],[119.879283476563,28.2232936835938],[119.852623320313,28.2084181953125],[119.842345,28.2092458320313],[119.821373320313,28.2075588203126],[119.795045195313,28.2381179023438],[119.837784453125,28.3065920234375],[119.87271609375,28.3284719062501],[119.925548125,28.389790265625],[119.942623320313,28.3884181953125],[119.9774621875,28.4078566718751],[120.01271609375,28.41847190625],[120.03197390625,28.44921409375],[120.08172,28.4803737617188]]]]}},{"type":"Feature","properties":{"name":"庆元县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.317345,27.713843],[119.320767851563,27.7260353828125],[119.329537382813,27.7172658515626],[119.317345,27.713843]]],[[[119.237345,27.843843],[119.237345,27.8538430000001],[119.247345,27.8538430000001],[119.247345,27.843843],[119.237345,27.843843]]],[[[119.137345,27.723843],[119.125152617188,27.7204201484376],[119.133922148438,27.7116506171875],[119.14298953125,27.72819846875],[119.16170046875,27.7594875312501],[119.17298953125,27.76819846875],[119.18170046875,27.8109645820313],[119.161905546875,27.8080397773438],[119.14298953125,27.8227614570313],[119.167603789063,27.8417604804688],[119.197642851563,27.8373220039063],[119.237345,27.843843],[119.230235625,27.7997267890626],[119.242345,27.7982204414063],[119.257345,27.8000856757813],[119.272345,27.7982204414063],[119.299386015625,27.8015846992188],[119.324327421875,27.7674416328125],[119.2731653125,27.7264748359375],[119.317345,27.713843],[119.32638796875,27.700747296875],[119.367345,27.6740749335938],[119.391900664063,27.6900637031251],[119.410230742188,27.6859548164063],[119.431900664063,27.700063703125],[119.443013945313,27.6975710273438],[119.4570715625,27.7179274726563],[119.47326296875,27.6997585273438],[119.48142703125,27.6579274726563],[119.497345,27.653843],[119.488804960938,27.570122296875],[119.457178984375,27.519634015625],[119.432667265625,27.5176638007813],[119.414742460938,27.53847190625],[119.344034453125,27.5260695625],[119.33271609375,27.4884719062501],[119.284713164063,27.4540016914063],[119.26271609375,27.42847190625],[119.257345,27.423843],[119.242633085938,27.4298879218751],[119.207345,27.4229152656251],[119.172345,27.4298317695313],[119.162345,27.4278542304688],[119.152345,27.4298317695313],[119.142345,27.4278542304688],[119.11625125,27.4330104804688],[119.12509890625,27.4777736640626],[119.114674101563,27.4880178046875],[119.082779570313,27.46776878125],[119.054664335938,27.4733254218751],[119.013170195313,27.4996681953125],[118.979542265625,27.5080178046875],[118.983453398438,27.4882228828126],[118.965694609375,27.475493390625],[118.952965117188,27.4577321601562],[118.90162234375,27.4678786445313],[118.893170195313,27.4796681953126],[118.887345,27.483843],[118.882296171875,27.503520734375],[118.86142703125,27.5179274726563],[118.85326296875,27.5341188789063],[118.891329375,27.5604030585938],[118.904801054688,27.6128932929688],[118.898253203125,27.6420900703126],[118.88142703125,27.6679274726562],[118.87326296875,27.7119997382813],[118.892843046875,27.7076100898438],[118.90142703125,27.7141188789063],[118.875323515625,27.7321413398438],[118.840206328125,27.7842971015625],[118.8446496875,27.8041139960938],[118.837345,27.833843],[118.8877746875,27.8571950507813],[118.918004179688,27.8150197578125],[118.958526640625,27.8230300117188],[118.997086210938,27.8081569648437],[119.011519804688,27.7880178046875],[119.023170195313,27.7796681953125],[119.035987578125,27.7310866523438],[119.052779570313,27.72776878125],[119.072843046875,27.7405104804688],[119.084742460938,27.7096681953126],[119.113170195313,27.7180178046875],[119.127345,27.7377956367188],[119.137345,27.723843]]]]}},{"type":"Feature","properties":{"name":"松阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.450382109375,28.5594020820313],[119.462345,28.5584401679688],[119.472584257813,28.5592629218751],[119.487345,28.553843],[119.518350859375,28.5668679023438],[119.540440703125,28.5348732734376],[119.577613554688,28.5265407539063],[119.607345,28.5338430000001],[119.613077421875,28.5195778632813],[119.621651640625,28.4678639960937],[119.679928007813,28.4778957343751],[119.685787382813,28.443843],[119.680074492188,28.41065940625],[119.691612578125,28.3681081367188],[119.711490507813,28.3186550117187],[119.637345,28.3138430000001],[119.607921171875,28.30675315625],[119.55310671875,28.3175856757813],[119.542345,28.2639040351563],[119.497345,28.2727956367188],[119.443267851563,28.2621096015625],[119.431724882813,28.2460012031251],[119.405303984375,28.2512233710938],[119.387345,28.243843],[119.381539335938,28.2532643867188],[119.352345,28.2441701484375],[119.322345,28.2535158515625],[119.293150664063,28.2444216132813],[119.283531523438,28.2600295234375],[119.271158476563,28.2676564765625],[119.261051054688,28.2840602851563],[119.211470976563,28.3009548164063],[119.203531523438,28.2776564765625],[119.18517703125,28.2700295234375],[119.167345,28.3038430000001],[119.17271609375,28.31847190625],[119.182574492188,28.3725002265625],[119.215924101563,28.4012355781251],[119.233072539063,28.4952443671875],[119.26271609375,28.50847190625],[119.33130984375,28.5880861640626],[119.377379179688,28.6006935859376],[119.4527746875,28.5892067695312],[119.450382109375,28.5594020820313]]]]}},{"type":"Feature","properties":{"name":"遂昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.317345,28.813843],[119.323389921875,28.7991310859375],[119.320328398438,28.7836330390625],[119.337506132813,28.7596681953125],[119.35775515625,28.7704616523438],[119.377345,28.7977956367188],[119.408951445313,28.7536989570313],[119.463092070313,28.7701467109376],[119.467345,28.743843],[119.4609778125,28.7385549140625],[119.450885039063,28.6395021796876],[119.462345,28.6383327460938],[119.477979765625,28.6399269843751],[119.505933867188,28.6167067695313],[119.491881132813,28.5793044257813],[119.487345,28.553843],[119.472584257813,28.5592629218751],[119.462345,28.5584401679688],[119.450382109375,28.5594020820313],[119.4527746875,28.5892067695312],[119.377379179688,28.6006935859376],[119.33130984375,28.5880861640626],[119.26271609375,28.50847190625],[119.233072539063,28.4952443671875],[119.215924101563,28.4012355781251],[119.182574492188,28.3725002265625],[119.17271609375,28.31847190625],[119.167345,28.3038430000001],[119.141793242188,28.3082888007813],[119.12724734375,28.3264553046875],[119.109752226563,28.3382888007813],[119.091558867188,28.29511253125],[119.058912382813,28.2693971992188],[119.032940703125,28.3018288398438],[118.988389921875,28.275639875],[118.995113554688,28.221567609375],[118.949752226563,28.2093971992188],[118.9243371875,28.269712140625],[118.912345,28.2682204414063],[118.902345,28.2694655585938],[118.88021609375,28.2667116523437],[118.883023710938,28.2892971015625],[118.871793242188,28.2982888007813],[118.86267703125,28.31991721875],[118.812135039063,28.2902053046876],[118.802896757813,28.2682888007813],[118.781793242188,28.2593971992188],[118.777345,28.253843],[118.747955351563,28.2584743476563],[118.73326296875,28.2797585273438],[118.72107546875,28.2881716132813],[118.725225859375,28.3066872382813],[118.697345,28.3138430000001],[118.702393828125,28.3335207343751],[118.728961210938,28.3518630195313],[118.75142703125,28.4242433906251],[118.716178007813,28.4163405585938],[118.724586210938,28.453843],[118.721221953125,28.468843],[118.724586210938,28.483843],[118.721221953125,28.4988430000001],[118.724986601563,28.5156154609375],[118.797345,28.5338430000001],[118.824425078125,28.5515700507813],[118.874674101563,28.5196681953125],[118.90181765625,28.5612721992188],[118.917198515625,28.63800315625],[118.958595,28.6539650703125],[119.021519804688,28.7096681953125],[119.057345,28.733843],[119.072061796875,28.7394997382813],[119.0830871875,28.738130109375],[119.152896757813,28.7482888007813],[119.186319609375,28.7727028632813],[119.240987578125,28.7659035468751],[119.251793242188,28.7793971992188],[119.262896757813,28.7882888007813],[119.280079375,28.8097463203126],[119.292506132813,28.8082009101563],[119.317345,28.813843]]]]}},{"type":"Feature","properties":{"name":"云和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.357345,27.993843],[119.345152617188,27.9972658515625],[119.353922148438,28.0060353828125],[119.357345,27.993843]]],[[[119.357345,27.993843],[119.3820325,27.9836989570313],[119.391519804688,28.0196681953126],[119.423780546875,28.0383718085938],[119.3756653125,28.1404421210938],[119.411392851563,28.1967189765626],[119.391519804688,28.2280178046875],[119.387345,28.243843],[119.405303984375,28.2512233710938],[119.431724882813,28.2460012031251],[119.443267851563,28.2621096015625],[119.497345,28.2727956367188],[119.542345,28.2639040351563],[119.55310671875,28.3175856757813],[119.607921171875,28.30675315625],[119.637345,28.3138430000001],[119.645655546875,28.2814626289063],[119.667345,28.2766017890625],[119.691676054688,28.2820558906251],[119.70142703125,28.2679274726563],[119.7141028125,28.2591750312501],[119.73422,28.228286359375],[119.71142703125,28.2197585273438],[119.70326296875,28.2079274726563],[119.677862578125,28.1903908515626],[119.694586210938,28.178843],[119.679361601563,28.1683303046875],[119.7278528125,28.15886253125],[119.717345,28.133843],[119.70041140625,28.1207741523438],[119.669659453125,28.0809279609376],[119.64170046875,28.0694875312501],[119.630943632813,28.0555471015626],[119.59170046875,28.03948753125],[119.566954375,28.0074221015626],[119.551832304688,28.0096584296876],[119.54298953125,27.99819846875],[119.495660429688,27.9882131171875],[119.51298953125,27.9594875312501],[119.52170046875,27.9267214179688],[119.49478640625,27.93069846875],[119.433062773438,27.9064357734376],[119.421202421875,27.9217995429688],[119.402345,27.8973659492188],[119.39298953125,27.9094875312501],[119.387345,27.913843],[119.384801054688,27.9312990546875],[119.367491484375,27.948813703125],[119.378370390625,27.9600807929688],[119.359888945313,27.9663869453125],[119.357345,27.993843]]]]}},{"type":"Feature","properties":{"name":"缙云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.358472929688,28.839946515625],[120.381890898438,28.8370339179688],[120.391890898438,28.8495217109375],[120.402345,28.8482204414063],[120.412857695313,28.8495290351563],[120.417345,28.833843],[120.398551054688,28.7871877265625],[120.380064726563,28.7899196601563],[120.36162234375,28.7448635078125],[120.341529570313,28.7293556953126],[120.344483671875,28.7093556953125],[120.31298953125,28.685044171875],[120.325577421875,28.6607057929688],[120.353170195313,28.6494142890625],[120.350206328125,28.6293556953125],[120.37093875,28.6133498359375],[120.375426054688,28.582993390625],[120.342345,28.5781032539063],[120.322345,28.581059796875],[120.31298953125,28.55819846875],[120.28298953125,28.535044171875],[120.29250125,28.5166506171876],[120.312735625,28.5196388984376],[120.33170046875,28.5081984687501],[120.37298953125,28.49948753125],[120.377345,28.483843],[120.3700403125,28.4541139960938],[120.379303007813,28.4128005195313],[120.34509890625,28.43507346875],[120.33326296875,28.4179274726563],[120.327345,28.413843],[120.29197390625,28.41847190625],[120.239307890625,28.4299587226563],[120.1978528125,28.4780739570312],[120.135094023438,28.4430593085938],[120.117345,28.473843],[120.136925078125,28.5175783515625],[120.10302859375,28.5457326484375],[120.089058867188,28.5779470039063],[120.068267851563,28.5529177070313],[120.044508085938,28.5331813789062],[120.021954375,28.5603322578126],[119.995050078125,28.5575905585938],[119.982808867188,28.5993044257813],[119.968746367188,28.6367311835938],[119.941881132813,28.6483815742188],[119.93166140625,28.6719533515626],[119.911881132813,28.6883815742187],[119.894244414063,28.7290505195313],[119.867345,28.733843],[119.871529570313,28.7501467109375],[119.885855742188,28.7469338203125],[119.92142703125,28.7997585273438],[119.927345,28.8038430000001],[119.93170046875,28.79819846875],[119.987750273438,28.788676984375],[120.032345,28.7617800117188],[120.081490507813,28.7914260078125],[120.097838164063,28.7702468085938],[120.130806914063,28.7653762031251],[120.142857695313,28.7809841132813],[120.177086210938,28.7759255195313],[120.203463164063,28.7962844062501],[120.199600859375,28.822426984375],[120.23298953125,28.8481984687501],[120.24170046875,28.85948753125],[120.258463164063,28.8724269843751],[120.250670195313,28.9251930976563],[120.26297,28.9411330390626],[120.307345,28.933843],[120.313736601563,28.8827492500001],[120.342896757813,28.8593971992188],[120.358472929688,28.839946515625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"包河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.4007434375,31.7372341132813],[117.407345,31.643843],[117.39197390625,31.6484719062501],[117.322784453125,31.6975270820313],[117.298248320313,31.7260060859375],[117.31912234375,31.7439894843751],[117.267345,31.7738430000001],[117.26271609375,31.7892140937501],[117.237100859375,31.8006447578126],[117.267345,31.8538430000001],[117.283985625,31.857202375],[117.297345,31.863843],[117.302711210938,31.8571388984375],[117.351793242188,31.8282888007812],[117.367345,31.823843],[117.372061796875,31.8085622382813],[117.410875273438,31.7907472968751],[117.422799101563,31.7688088203126],[117.4007434375,31.7372341132813]]]]}},{"type":"Feature","properties":{"name":"长丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.377345,32.393843],[117.354620390625,32.3898366523438],[117.371783476563,32.380844953125],[117.394298125,32.3904201484375],[117.440704375,32.3671096015625],[117.433985625,32.347202375],[117.420548125,32.3404055],[117.394918242188,32.288843],[117.407345,32.2638430000001],[117.38326296875,32.2479274726563],[117.35142703125,32.2397585273438],[117.33326296875,32.2035671210937],[117.360865507813,32.1845095039063],[117.37142703125,32.1635671210937],[117.35107546875,32.1495143867187],[117.355225859375,32.1309987617188],[117.327345,32.1238430000001],[117.323922148438,32.1360353828126],[117.315152617188,32.1272658515625],[117.327345,32.1238430000001],[117.32009890625,32.10620628125],[117.344322539063,32.088843],[117.323170195313,32.0736843085938],[117.331519804688,32.0580178046875],[117.388599882813,32.0465749335938],[117.363170195313,32.0065163398438],[117.371519804688,31.9880178046876],[117.377345,31.983843],[117.374801054688,31.9663869453125],[117.356319609375,31.9600807929688],[117.368370390625,31.9476052070313],[117.349888945313,31.9412990546876],[117.343560820313,31.9227565742188],[117.324801054688,31.9412990546876],[117.287345,31.943843],[117.24923953125,31.9581618476563],[117.232735625,31.9382936835938],[117.205045195313,31.9411159492187],[117.182066679688,31.9279567695313],[117.172330351563,31.9504103828125],[117.067345,31.9638430000001],[117.061529570313,31.9683303046875],[117.064561796875,31.988852765625],[117.027345,32.0038430000001],[117.042901640625,32.0388845039063],[117.03197390625,32.0584719062501],[117.01345828125,32.0999587226562],[116.989737578125,32.1203981757813],[116.97271609375,32.1600173164063],[116.992496367188,32.1584279609376],[117.02197390625,32.164009015625],[117.00172,32.2191579414063],[117.045191679688,32.2290334296876],[117.07197390625,32.2626247382813],[117.039664335938,32.2904616523437],[117.042745390625,32.328843],[117.038922148438,32.3764455390626],[116.995299101563,32.3959108710938],[116.902022734375,32.3884157539063],[116.887628203125,32.405122296875],[116.8927746875,32.4691677070313],[116.881690703125,32.4787136054688],[116.892926054688,32.4988454414063],[116.867345,32.5438430000001],[116.90298953125,32.55819846875],[116.932628203125,32.5760768867188],[116.937345,32.603843],[116.94259890625,32.60972190625],[116.962369414063,32.6085427070313],[117.037345,32.6138430000001],[117.109136992188,32.5981838203126],[117.122345,32.5992458320313],[117.132515898438,32.5984279609375],[117.18197390625,32.60921409375],[117.187345,32.6138430000001],[117.191793242188,32.5882888007812],[117.203941679688,32.5566799140625],[117.201099882813,32.5338430000001],[117.203590117188,32.513843],[117.19978640625,32.4832814765626],[117.220079375,32.4579396796876],[117.247735625,32.4613796210938],[117.282061796875,32.4481862617188],[117.302345,32.450708234375],[117.335889921875,32.4465358710938],[117.398736601563,32.4834792304688],[117.380748320313,32.4366799140626],[117.382984648438,32.4186818671876],[117.377345,32.393843]]]]}},{"type":"Feature","properties":{"name":"巢湖市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.94548953125,31.5387721992188],[117.957345,31.493843],[117.921793242188,31.4982888007813],[117.9024621875,31.509653546875],[117.872896757813,31.4982888007813],[117.7751575,31.4860646796875],[117.699146757813,31.4568483710938],[117.682896757813,31.4182888007813],[117.654361601563,31.3792214179688],[117.628453398438,31.3177370429688],[117.606671171875,31.2806862617188],[117.567345,31.273843],[117.562896757813,31.2793971992188],[117.5075403125,31.2952223945313],[117.514312773438,31.3496608710938],[117.542896757813,31.3982888007813],[117.551793242188,31.4502419257813],[117.488331328125,31.5010622382813],[117.452896757813,31.5593971992188],[117.427345,31.563843],[117.431793242188,31.5693971992188],[117.465108671875,31.5960768867188],[117.491793242188,31.6293971992187],[117.5029309375,31.63831565625],[117.542896757813,31.6882888007813],[117.581793242188,31.7593971992188],[117.619332304688,31.7752150703125],[117.632896757813,31.7982888007813],[117.647496367188,31.8329299140625],[117.681793242188,31.8893971992188],[117.712896757813,31.9282888007813],[117.736514921875,31.9671730781251],[117.773453398438,31.9827370429688],[117.801793242188,31.9993971992188],[117.817345,32.0038430000001],[117.84142703125,31.9679274726563],[117.85326296875,31.9597585273438],[117.86142703125,31.9379274726563],[117.93701296875,31.9188088203126],[117.947345,31.903843],[117.934820585938,31.8563674140626],[117.90447390625,31.8346169257813],[117.900367460938,31.8138430000001],[117.904322539063,31.793843],[117.90127078125,31.7784108710938],[117.91341921875,31.7592751289063],[117.911358671875,31.748843],[117.914322539063,31.7338430000001],[117.908780546875,31.705796125],[117.921519804688,31.6880178046876],[117.933453398438,31.6794631171875],[117.928394804688,31.653843],[117.933345976563,31.6287770820313],[117.923170195313,31.5780178046876],[117.903170195313,31.5636843085938],[117.921519804688,31.5480178046875],[117.94548953125,31.5387721992188]]]]}},{"type":"Feature","properties":{"name":"肥东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.327345,32.1238430000001],[117.315152617188,32.1272658515625],[117.323922148438,32.1360353828126],[117.327345,32.1238430000001]]],[[[117.327345,32.1238430000001],[117.355225859375,32.1309987617188],[117.35107546875,32.1495143867187],[117.37142703125,32.1635671210937],[117.360865507813,32.1845095039063],[117.33326296875,32.2035671210937],[117.35142703125,32.2397585273438],[117.38326296875,32.2479274726563],[117.407345,32.2638430000001],[117.423170195313,32.2594362617188],[117.420494414063,32.2413210273438],[117.46298953125,32.22948753125],[117.477838164063,32.2102468085938],[117.518780546875,32.2041970039063],[117.55298953125,32.21819846875],[117.583511992188,32.2366115546875],[117.647515898438,32.2617726875001],[117.677345,32.2573659492188],[117.69490359375,32.2599611640625],[117.711832304688,32.2380275703125],[117.762896757813,32.2455739570313],[117.793922148438,32.2268605781251],[117.81990359375,32.23069846875],[117.837345,32.223843],[117.85062625,32.21712425],[117.857345,32.203843],[117.857345,32.1938430000001],[117.867345,32.1938430000001],[117.863985625,32.1372023750001],[117.846636992188,32.1153639960938],[117.876627226563,32.0551857734375],[117.852735625,32.0362111640625],[117.837203398438,32.043794171875],[117.82990359375,32.028843],[117.835269804688,32.0178517890625],[117.820704375,32.010483625],[117.817345,32.0038430000001],[117.801793242188,31.9993971992188],[117.773453398438,31.9827370429688],[117.736514921875,31.9671730781251],[117.712896757813,31.9282888007813],[117.681793242188,31.8893971992188],[117.647496367188,31.8329299140625],[117.632896757813,31.7982888007813],[117.619332304688,31.7752150703125],[117.581793242188,31.7593971992188],[117.542896757813,31.6882888007813],[117.5029309375,31.63831565625],[117.491793242188,31.6293971992187],[117.465108671875,31.5960768867188],[117.431793242188,31.5693971992188],[117.427345,31.563843],[117.417345,31.563843],[117.410704375,31.577202375],[117.407345,31.643843],[117.4007434375,31.7372341132813],[117.422799101563,31.7688088203126],[117.410875273438,31.7907472968751],[117.372061796875,31.8085622382813],[117.367345,31.823843],[117.39302859375,31.8383620429688],[117.390533476563,31.8583888984376],[117.403023710938,31.8683888984375],[117.401695585938,31.8790602851563],[117.421514921875,31.9484719062501],[117.377345,31.983843],[117.371519804688,31.9880178046876],[117.363170195313,32.0065163398438],[117.388599882813,32.0465749335938],[117.331519804688,32.0580178046875],[117.323170195313,32.0736843085938],[117.344322539063,32.088843],[117.32009890625,32.10620628125],[117.327345,32.1238430000001]]]]}},{"type":"Feature","properties":{"name":"肥西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.13326296875,31.8397585273438],[117.151783476563,31.8073073554688],[117.182940703125,31.8203932929688],[117.20142703125,31.783442609375],[117.163819609375,31.7918752265625],[117.174117460938,31.7459474921875],[117.21380984375,31.7197585273438],[117.26201296875,31.7400026679688],[117.267345,31.7738430000001],[117.31912234375,31.7439894843751],[117.298248320313,31.7260060859375],[117.322784453125,31.6975270820313],[117.39197390625,31.6484719062501],[117.407345,31.643843],[117.410704375,31.577202375],[117.417345,31.563843],[117.412896757813,31.5582888007813],[117.361666289063,31.5493752265625],[117.284014921875,31.527173078125],[117.247345,31.5038430000001],[117.241793242188,31.5082888007813],[117.222896757813,31.5393971992188],[117.18380984375,31.5558669257812],[117.107345,31.5463552070313],[117.067345,31.5513307929688],[117.026954375,31.5463063789063],[116.99205203125,31.55972190625],[116.982896757813,31.5482888007813],[116.967906523438,31.5362844062501],[116.932345,31.540708234375],[116.8418371875,31.5294509101563],[116.837345,31.523843],[116.822061796875,31.5285622382813],[116.764288359375,31.5642775703126],[116.751534453125,31.646137921875],[116.762711210938,31.709048078125],[116.75146609375,31.71909690625],[116.752642851563,31.7388430000001],[116.752047148438,31.748843],[116.753258085938,31.7691945625],[116.7319934375,31.7679274726563],[116.7326575,31.7791091132812],[116.712061796875,31.7885622382813],[116.686939726563,31.8166774726563],[116.73353640625,31.8583107734375],[116.712779570313,31.8768581367188],[116.762628203125,31.9085622382813],[116.767345,31.913843],[116.77326296875,31.9179274726563],[116.828883085938,31.9315895820313],[116.851749296875,31.9647096992188],[116.90326296875,31.9779274726563],[116.93142703125,31.9897585273438],[117.02326296875,31.9979274726563],[117.027345,32.0038430000001],[117.064561796875,31.988852765625],[117.061529570313,31.9683303046875],[117.067345,31.9638430000001],[117.069923125,31.9461428046875],[117.099888945313,31.9163869453125],[117.124801054688,31.9112990546876],[117.127345,31.903843],[117.12142703125,31.8997585273438],[117.11326296875,31.8535671210938],[117.13326296875,31.8397585273438]]]]}},{"type":"Feature","properties":{"name":"庐江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.517340117188,31.1377028632813],[117.52650515625,31.0757082343751],[117.51298953125,31.0581984687501],[117.478219023438,31.0439699531251],[117.49298953125,31.01948753125],[117.497345,31.003843],[117.49197390625,30.99921409375],[117.466182890625,30.9971413398438],[117.431363554688,30.9777175117188],[117.410250273438,30.9794118476563],[117.363516875,30.9533400703125],[117.35271609375,30.9892140937501],[117.303072539063,31.0004933906251],[117.284849882813,30.979341046875],[117.233819609375,31.0155226875],[117.210831328125,31.0522219062501],[117.174263945313,31.0837282539063],[117.147345,31.073843],[117.111143828125,31.0841921210938],[117.11607546875,31.1238430000001],[117.110850859375,31.1658693671875],[117.073707304688,31.2290554023438],[117.045777617188,31.2408229804688],[117.027345,31.263843],[117.032896757813,31.2682888007813],[117.046236601563,31.2849489570313],[117.062896757813,31.2982888007812],[117.074073515625,31.3499440742188],[117.071685820313,31.3691262031251],[117.093985625,31.4271291328125],[117.14310671875,31.4885475898438],[117.242896757813,31.4982888007813],[117.247345,31.5038430000001],[117.284014921875,31.527173078125],[117.361666289063,31.5493752265625],[117.412896757813,31.5582888007813],[117.417345,31.563843],[117.427345,31.563843],[117.452896757813,31.5593971992188],[117.488331328125,31.5010622382813],[117.551793242188,31.4502419257813],[117.542896757813,31.3982888007813],[117.514312773438,31.3496608710938],[117.5075403125,31.2952223945313],[117.562896757813,31.2793971992188],[117.567345,31.273843],[117.561553984375,31.239751203125],[117.526378203125,31.1923073554688],[117.56170046875,31.165044171875],[117.54298953125,31.14819846875],[117.517340117188,31.1377028632813]]]]}},{"type":"Feature","properties":{"name":"庐阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.172330351563,31.9504103828125],[117.182066679688,31.9279567695313],[117.205045195313,31.9411159492187],[117.232735625,31.9382936835938],[117.24923953125,31.9581618476563],[117.287345,31.943843],[117.290704375,31.8772023750001],[117.297345,31.863843],[117.283985625,31.857202375],[117.267345,31.8538430000001],[117.263082304688,31.8714333320313],[117.206246367188,31.8877468085938],[117.192345,31.8660329414063],[117.183443632813,31.8799391914063],[117.161246367188,31.8877468085938],[117.143443632813,31.8999391914063],[117.127345,31.903843],[117.124801054688,31.9112990546876],[117.099888945313,31.9163869453125],[117.069923125,31.9461428046875],[117.067345,31.9638430000001],[117.172330351563,31.9504103828125]]]]}},{"type":"Feature","properties":{"name":"蜀山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.183443632813,31.8799391914063],[117.192345,31.8660329414063],[117.206246367188,31.8877468085938],[117.263082304688,31.8714333320313],[117.267345,31.8538430000001],[117.237100859375,31.8006447578126],[117.26271609375,31.7892140937501],[117.267345,31.7738430000001],[117.26201296875,31.7400026679688],[117.21380984375,31.7197585273438],[117.174117460938,31.7459474921875],[117.163819609375,31.7918752265625],[117.20142703125,31.783442609375],[117.182940703125,31.8203932929688],[117.151783476563,31.8073073554688],[117.13326296875,31.8397585273438],[117.11326296875,31.8535671210938],[117.12142703125,31.8997585273438],[117.127345,31.903843],[117.143443632813,31.8999391914063],[117.161246367188,31.8877468085938],[117.183443632813,31.8799391914063]]]]}},{"type":"Feature","properties":{"name":"瑶海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.421514921875,31.9484719062501],[117.401695585938,31.8790602851563],[117.403023710938,31.8683888984375],[117.390533476563,31.8583888984376],[117.39302859375,31.8383620429688],[117.367345,31.823843],[117.351793242188,31.8282888007812],[117.302711210938,31.8571388984375],[117.297345,31.863843],[117.290704375,31.8772023750001],[117.287345,31.943843],[117.324801054688,31.9412990546876],[117.343560820313,31.9227565742188],[117.349888945313,31.9412990546876],[117.368370390625,31.9476052070313],[117.356319609375,31.9600807929688],[117.374801054688,31.9663869453125],[117.377345,31.983843],[117.421514921875,31.9484719062501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"繁昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.3533996875,31.0891066718751],[118.365225859375,31.0292726875],[118.35064578125,30.991469953125],[118.3227746875,30.9859645820313],[118.291519804688,30.9980178046876],[118.270406523438,31.0114235664062],[118.239298125,31.0052761054688],[118.221519804688,31.0180178046875],[118.207183867188,31.0380178046876],[118.1896496875,31.0174782539063],[118.193453398438,30.9982228828125],[118.181519804688,30.9896681953126],[118.168995390625,30.972192609375],[118.157345,30.963843],[118.153531523438,30.9700295234375],[118.096939726563,30.9782692695313],[118.075909453125,31.0124050117188],[118.003961210938,31.0369240546876],[118.013902617188,31.068843],[118.009600859375,31.0826589179688],[117.99213015625,31.0772194648438],[117.977345,31.083843],[117.99326296875,31.1079274726563],[118.002447539063,31.1774538398438],[118.04326296875,31.1879274726563],[118.086099882813,31.2158254218751],[118.117345,31.223843],[118.16326296875,31.2175685859376],[118.214703398438,31.1932912421875],[118.211461210938,31.1115138984376],[118.347345,31.103843],[118.3533996875,31.0891066718751]]]]}},{"type":"Feature","properties":{"name":"镜湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.469488554688,31.2983132148437],[118.447345,31.293843],[118.43181765625,31.3016994453126],[118.427345,31.3238430000001],[118.45142703125,31.3179274726563],[118.477345,31.3138430000001],[118.469488554688,31.2983132148437]]],[[[118.406851835938,31.3202468085938],[118.387047148438,31.3173220039063],[118.347345,31.3238430000001],[118.34170046875,31.35819846875],[118.337345,31.3938430000001],[118.370206328125,31.3886647773438],[118.39142703125,31.3579274726563],[118.40361453125,31.3495143867187],[118.401041289063,31.3380275703125],[118.417345,31.333843],[118.406851835938,31.3202468085938]]]]}},{"type":"Feature","properties":{"name":"南陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.417345,30.813843],[118.404537382813,30.8188430000001],[118.417345,30.8238430000001],[118.417345,30.813843]]],[[[118.417345,30.813843],[118.430152617188,30.8188430000001],[118.417345,30.8238430000001],[118.41298953125,30.83948753125],[118.38408328125,30.8513161445313],[118.357838164063,30.8474391914063],[118.34298953125,30.82819846875],[118.303878203125,30.8173097968751],[118.291217070313,30.7718434882813],[118.271173125,30.7386086250001],[118.28298953125,30.72948753125],[118.29170046875,30.7181984687501],[118.310094023438,30.7040041328125],[118.262345,30.711059796875],[118.237345,30.7073659492188],[118.217345,30.7103200507813],[118.189371367188,30.70618675],[118.122803984375,30.6480373359375],[118.11205203125,30.64962425],[118.097345,30.643843],[118.10142703125,30.6597585273438],[118.124913359375,30.6958229804687],[118.106744414063,30.739077375],[118.06142703125,30.7479274726563],[118.049176054688,30.7656740546875],[118.02697390625,30.781001203125],[118.012345,30.7777223945313],[118.002345,30.7799636054688],[117.991676054688,30.7775710273438],[117.98326296875,30.7897585273438],[117.960328398438,30.7983400703125],[117.983761015625,30.8285720039063],[117.977345,30.843843],[117.980704375,30.850483625],[118.007345,30.8638430000001],[118.017345,30.8638430000001],[118.024757109375,30.8392311835937],[118.051373320313,30.8701271796875],[118.072633085938,30.8684181953125],[118.12197390625,30.89921409375],[118.1527746875,30.9084889960938],[118.151944609375,30.918843],[118.152745390625,30.928843],[118.150416289063,30.9578713203125],[118.157345,30.963843],[118.168995390625,30.972192609375],[118.181519804688,30.9896681953126],[118.193453398438,30.9982228828125],[118.1896496875,31.0174782539063],[118.207183867188,31.0380178046876],[118.221519804688,31.0180178046875],[118.239298125,31.0052761054688],[118.270406523438,31.0114235664062],[118.291519804688,30.9980178046876],[118.3227746875,30.9859645820313],[118.35064578125,30.991469953125],[118.365225859375,31.0292726875],[118.3533996875,31.0891066718751],[118.347345,31.103843],[118.357345,31.103843],[118.357345,31.153843],[118.367345,31.153843],[118.387345,31.153843],[118.387345,31.173843],[118.407345,31.173843],[118.424908476563,31.170063703125],[118.41990359375,31.1579225898438],[118.4505871875,31.1411013007813],[118.423980742188,31.1265163398438],[118.443804960938,31.1003029609375],[118.451939726563,31.0739772773437],[118.462345,31.0929640937501],[118.472345,31.07472190625],[118.484766875,31.0973830390626],[118.50841921875,31.0885842109375],[118.49822390625,31.063843],[118.508189726563,31.0396608710938],[118.469893828125,31.0197878242188],[118.474581328125,31.0084133125],[118.459097929688,30.9879372382812],[118.483804960938,30.9803029609375],[118.490885039063,30.9473830390626],[118.497345,30.9438430000001],[118.50662234375,30.9217604804688],[118.48326296875,30.8879274726563],[118.467862578125,30.8772951484375],[118.49408328125,30.8591896796875],[118.474830351563,30.8296218085938],[118.497345,30.8238430000001],[118.497345,30.803843],[118.482374296875,30.7962697578125],[118.473580351563,30.7657985664063],[118.4507825,30.7769313789063],[118.443985625,30.8004836250001],[118.420704375,30.8072023750001],[118.417345,30.813843]]]]}},{"type":"Feature","properties":{"name":"三山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.29326296875,31.2392189765626],[118.301685820313,31.22757346875],[118.320557890625,31.2318044257813],[118.3267590625,31.2041506171875],[118.28326296875,31.1741188789063],[118.309195585938,31.1652809882813],[118.343975859375,31.1879274726563],[118.36326296875,31.1797585273438],[118.367345,31.153843],[118.357345,31.153843],[118.357345,31.103843],[118.347345,31.103843],[118.211461210938,31.1115138984376],[118.214703398438,31.1932912421875],[118.16326296875,31.2175685859376],[118.117345,31.223843],[118.131607695313,31.2416530585938],[118.21002078125,31.2877468085938],[118.31619265625,31.30776878125],[118.327345,31.293843],[118.343990507813,31.2582009101562],[118.29326296875,31.2392189765626]]]]}},{"type":"Feature","properties":{"name":"无为县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.972769804688,31.4691310859376],[117.970289335938,31.4382765937501],[117.989849882813,31.439848859375],[118.13197390625,31.40847190625],[118.157345,31.403843],[118.21271609375,31.38921409375],[118.26486453125,31.3778395820313],[118.283956328125,31.3793752265626],[118.297345,31.423843],[118.323985625,31.420483625],[118.337345,31.3938430000001],[118.34170046875,31.35819846875],[118.347345,31.3238430000001],[118.34287234375,31.3016994453126],[118.327345,31.293843],[118.31619265625,31.30776878125],[118.21002078125,31.2877468085938],[118.131607695313,31.2416530585938],[118.117345,31.223843],[118.086099882813,31.2158254218751],[118.04326296875,31.1879274726563],[118.002447539063,31.1774538398438],[117.99326296875,31.1079274726563],[117.977345,31.083843],[117.936812773438,31.0748195625],[117.890030546875,31.0795876289063],[117.867388945313,31.1317946601563],[117.835186796875,31.1483815742188],[117.768214140625,31.1100221992188],[117.732784453125,31.0283229804688],[117.727345,30.9738430000001],[117.681793242188,30.9693971992188],[117.65834109375,30.9401125312501],[117.642896757813,30.9593971992188],[117.605181914063,30.9823049140625],[117.535513945313,30.9736403632813],[117.515479765625,30.9986574531251],[117.497345,31.003843],[117.49298953125,31.01948753125],[117.478219023438,31.0439699531251],[117.51298953125,31.0581984687501],[117.52650515625,31.0757082343751],[117.517340117188,31.1377028632813],[117.54298953125,31.14819846875],[117.56170046875,31.165044171875],[117.526378203125,31.1923073554688],[117.561553984375,31.239751203125],[117.567345,31.273843],[117.606671171875,31.2806862617188],[117.628453398438,31.3177370429688],[117.654361601563,31.3792214179688],[117.682896757813,31.4182888007813],[117.699146757813,31.4568483710938],[117.7751575,31.4860646796875],[117.872896757813,31.4982888007813],[117.9024621875,31.509653546875],[117.921793242188,31.4982888007813],[117.957345,31.493843],[117.972769804688,31.4691310859376]]]]}},{"type":"Feature","properties":{"name":"芜湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.498448515625,31.3055471015625],[118.567345,31.293843],[118.612896757813,31.2982888007812],[118.657345,31.303843],[118.650616484375,31.2468874335938],[118.723394804688,31.1581862617188],[118.673521757813,31.1136232734376],[118.672047148438,31.0888430000001],[118.673082304688,31.0714577460938],[118.646202421875,31.0413747382812],[118.606168242188,31.0196193671876],[118.590675078125,31.05337425],[118.571495390625,31.01808128125],[118.573551054688,30.9835768867188],[118.542061796875,30.9691237617188],[118.497345,30.9438430000001],[118.490885039063,30.9473830390626],[118.483804960938,30.9803029609375],[118.459097929688,30.9879372382812],[118.474581328125,31.0084133125],[118.469893828125,31.0197878242188],[118.508189726563,31.0396608710938],[118.49822390625,31.063843],[118.50841921875,31.0885842109375],[118.484766875,31.0973830390626],[118.472345,31.07472190625],[118.462345,31.0929640937501],[118.451939726563,31.0739772773437],[118.443804960938,31.1003029609375],[118.423980742188,31.1265163398438],[118.4505871875,31.1411013007813],[118.41990359375,31.1579225898438],[118.424908476563,31.170063703125],[118.407345,31.173843],[118.412511015625,31.1923928046875],[118.43298953125,31.20819846875],[118.447345,31.293843],[118.469488554688,31.2983132148437],[118.477345,31.3138430000001],[118.498448515625,31.3055471015625]]]]}},{"type":"Feature","properties":{"name":"弋江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.427345,31.3238430000001],[118.43181765625,31.3016994453126],[118.447345,31.293843],[118.43298953125,31.20819846875],[118.412511015625,31.1923928046875],[118.407345,31.173843],[118.387345,31.173843],[118.387345,31.153843],[118.367345,31.153843],[118.36326296875,31.1797585273438],[118.343975859375,31.1879274726563],[118.309195585938,31.1652809882813],[118.28326296875,31.1741188789063],[118.3267590625,31.2041506171875],[118.320557890625,31.2318044257813],[118.301685820313,31.22757346875],[118.29326296875,31.2392189765626],[118.343990507813,31.2582009101562],[118.327345,31.293843],[118.34287234375,31.3016994453126],[118.347345,31.3238430000001],[118.387047148438,31.3173220039063],[118.406851835938,31.3202468085938],[118.417345,31.333843],[118.427345,31.333843],[118.427345,31.3238430000001]]]]}},{"type":"Feature","properties":{"name":"鸠江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.422965117188,31.4688430000001],[118.419913359375,31.4443068671875],[118.450328398438,31.3942385078125],[118.51099734375,31.4017848945313],[118.553018828125,31.3492482734376],[118.550709257813,31.330688703125],[118.567345,31.293843],[118.498448515625,31.3055471015625],[118.477345,31.3138430000001],[118.45142703125,31.3179274726563],[118.427345,31.3238430000001],[118.427345,31.333843],[118.417345,31.333843],[118.401041289063,31.3380275703125],[118.40361453125,31.3495143867187],[118.39142703125,31.3579274726563],[118.370206328125,31.3886647773438],[118.337345,31.3938430000001],[118.323985625,31.420483625],[118.297345,31.423843],[118.30181765625,31.4495314765625],[118.325767851563,31.4465505195313],[118.368331328125,31.5166237617188],[118.377345,31.523843],[118.39068484375,31.50718284375],[118.421241484375,31.4827150703125],[118.422965117188,31.4688430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"蚌山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.417345,32.8438430000001],[117.408531523438,32.8300783515626],[117.359918242188,32.8437404609376],[117.322584257813,32.8273708320313],[117.312105742188,32.8303151679688],[117.297345,32.823843],[117.3045715625,32.8663820625],[117.34298953125,32.91819846875],[117.347345,32.9538430000001],[117.357345,32.9538430000001],[117.36197390625,32.94847190625],[117.395914335938,32.9382521796875],[117.391920195313,32.8885622382813],[117.417345,32.8438430000001]]]]}},{"type":"Feature","properties":{"name":"固镇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.392965117188,33.438843],[117.391666289063,33.4283962226563],[117.441607695313,33.3660341621095],[117.471793242188,33.3482900214844],[117.512896757813,33.3393959785157],[117.542061796875,33.3281862617188],[117.55896609375,33.3302883125],[117.587345,33.323843],[117.592779570313,33.2685829902344],[117.58197390625,33.2492153144531],[117.57271609375,33.2284706855469],[117.53271609375,33.2164284492188],[117.54197390625,33.1784706855469],[117.553150664063,33.168843],[117.54197390625,33.1592153144532],[117.53271609375,33.1384706855469],[117.52197390625,33.1292153144532],[117.51271609375,33.07847190625],[117.48197390625,33.05921409375],[117.464361601563,33.0387697578125],[117.437345,33.0338430000001],[117.432511015625,33.0707741523438],[117.410328398438,33.0898854804688],[117.387252226563,33.0880324531251],[117.317345,33.093843],[117.304771757813,33.138989484375],[117.27170046875,33.1481996894532],[117.260260039063,33.1761562324219],[117.22869265625,33.2005202460938],[117.200806914063,33.1963991523438],[117.177672148438,33.2263759589844],[117.211011992188,33.2521108222657],[117.1662121875,33.2704445625],[117.087345,33.283843],[117.093253203125,33.3093300605469],[117.059097929688,33.3297573066406],[117.09170046875,33.3549245429688],[117.07298953125,33.3694863105469],[117.04298953125,33.3817653632813],[117.082222929688,33.4059804511719],[117.126143828125,33.3794863105469],[117.135557890625,33.4052260566407],[117.1170715625,33.4358730292969],[117.157345,33.4517055488282],[117.192686796875,33.4378115058594],[117.20170046875,33.4494863105469],[117.21298953125,33.4581996894532],[117.242857695313,33.5011513496094],[117.287345,33.4938430000001],[117.302896757813,33.4893959785157],[117.321793242188,33.4782900214844],[117.390504179688,33.4586440253906],[117.392965117188,33.438843]]]]}},{"type":"Feature","properties":{"name":"怀远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.933077421875,33.2995778632813],[116.964986601563,33.2798293281251],[117.057647734375,33.2957814765625],[117.087345,33.283843],[117.1662121875,33.2704445625],[117.211011992188,33.2521108222657],[117.177672148438,33.2263759589844],[117.200806914063,33.1963991523438],[117.22869265625,33.2005202460938],[117.260260039063,33.1761562324219],[117.27170046875,33.1481996894532],[117.304771757813,33.138989484375],[117.317345,33.093843],[117.291715117188,33.0556227851562],[117.25568484375,33.0636989570312],[117.237579375,33.0205861640625],[117.25361453125,33.0095143867188],[117.25107546875,32.9981716132813],[117.2657434375,32.9880422187501],[117.257345,32.9538430000001],[117.252139921875,32.9389943671875],[117.253345976563,32.9086061835938],[117.2045715625,32.9105373359375],[117.173214140625,32.8814821601563],[117.226568632813,32.8645900703126],[117.242535429688,32.8190334296875],[117.247345,32.8038430000001],[117.24170046875,32.7994875312501],[117.22298953125,32.76819846875],[117.197345,32.733843],[117.18170046875,32.7381984687501],[117.12505984375,32.7604665351563],[117.078306914063,32.7468337226563],[117.087345,32.7238430000001],[117.048853789063,32.7288796210938],[117.02271609375,32.75921409375],[117.004205351563,32.7751638007813],[116.95197390625,32.79847190625],[116.806402617188,32.8933278632813],[116.79271609375,32.90921409375],[116.737345,32.933843],[116.744166289063,33.0007057929688],[116.803922148438,32.9959035468751],[116.82197390625,33.0216970039063],[116.76197390625,33.04847190625],[116.74271609375,33.0626247382813],[116.763472929688,33.0998232246094],[116.759249296875,33.1523732734376],[116.81271609375,33.1684706855469],[116.827550078125,33.2177382636719],[116.80197390625,33.2784706855469],[116.797345,33.3038430000001],[116.813443632813,33.2999404121094],[116.85857546875,33.2801467109375],[116.871246367188,33.2999404121094],[116.917345,33.3038430000001],[116.933077421875,33.2995778632813]]]]}},{"type":"Feature","properties":{"name":"淮上区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.317345,33.093843],[117.387252226563,33.0880324531251],[117.410328398438,33.0898854804688],[117.432511015625,33.0707741523438],[117.437345,33.0338430000001],[117.423443632813,33.0245998359376],[117.447345,32.973843],[117.433985625,32.967202375],[117.370704375,32.960483625],[117.357345,32.9538430000001],[117.347345,32.9538430000001],[117.257345,32.9538430000001],[117.2657434375,32.9880422187501],[117.25107546875,32.9981716132813],[117.25361453125,33.0095143867188],[117.237579375,33.0205861640625],[117.25568484375,33.0636989570312],[117.291715117188,33.0556227851562],[117.317345,33.093843]]]]}},{"type":"Feature","properties":{"name":"龙子湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.527345,32.983843],[117.523531523438,32.9476564765625],[117.510347929688,32.9395314765625],[117.499229765625,32.903843],[117.506763945313,32.8796486640626],[117.484971953125,32.8662184882813],[117.473531523438,32.8476564765625],[117.417345,32.8438430000001],[117.391920195313,32.8885622382813],[117.395914335938,32.9382521796875],[117.36197390625,32.94847190625],[117.357345,32.9538430000001],[117.370704375,32.960483625],[117.433985625,32.967202375],[117.447345,32.973843],[117.46478640625,32.98069846875],[117.487642851563,32.9773220039063],[117.527345,32.983843]]]]}},{"type":"Feature","properties":{"name":"五河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.037345,33.133843],[118.040767851563,33.1216506171875],[118.049537382813,33.1304201484376],[118.037345,33.1438430000001],[118.067345,33.1438430000001],[118.061724882813,33.0988442207032],[118.064244414063,33.0785817695313],[118.003795195313,33.0655031562501],[118.000479765625,33.038843],[118.031793242188,33.025649640625],[118.010382109375,33.0059767890626],[117.982345,33.0094655585938],[117.967345,33.0076003242188],[117.94373171875,33.0105373359375],[117.903756132813,32.9870388007813],[117.877345,33.003843],[117.891197539063,33.0415627265625],[117.799620390625,33.034204328125],[117.772281523438,33.049458234375],[117.73271609375,33.0184719062501],[117.70197390625,32.99921409375],[117.665113554688,32.9166115546875],[117.599678984375,32.9218703437501],[117.527345,32.983843],[117.487642851563,32.9773220039063],[117.46478640625,32.98069846875],[117.447345,32.973843],[117.423443632813,33.0245998359376],[117.437345,33.0338430000001],[117.464361601563,33.0387697578125],[117.48197390625,33.05921409375],[117.51271609375,33.07847190625],[117.52197390625,33.1292153144532],[117.53271609375,33.1384706855469],[117.54197390625,33.1592153144532],[117.553150664063,33.168843],[117.54197390625,33.1784706855469],[117.53271609375,33.2164284492188],[117.57271609375,33.2284706855469],[117.58197390625,33.2492153144531],[117.592779570313,33.2685829902344],[117.587345,33.323843],[117.597564726563,33.3370851875001],[117.637345,33.343843],[117.64197390625,33.3384706855469],[117.6580871875,33.3245864082032],[117.6773840625,33.3021901679688],[117.717862578125,33.2796047187501],[117.742345,33.2776381660156],[117.772345,33.2800478339844],[117.793961210938,33.2783107734376],[117.812022734375,33.2992702460938],[117.841373320313,33.2969118476563],[117.859722929688,33.3182106757813],[117.88271609375,33.3284706855469],[117.9020715625,33.3392690253907],[117.967345,33.3338430000001],[117.985006132813,33.3293117500001],[117.966651640625,33.2802700019532],[117.93326296875,33.2572145820312],[117.94142703125,33.2279274726562],[117.98580203125,33.219262921875],[117.979132109375,33.1895131660156],[118.011007109375,33.1675051093751],[118.03142703125,33.1379274726563],[118.037345,33.133843]]]]}},{"type":"Feature","properties":{"name":"禹会区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.34298953125,32.91819846875],[117.3045715625,32.8663820625],[117.297345,32.823843],[117.277345,32.823843],[117.277345,32.8038430000001],[117.247345,32.8038430000001],[117.242535429688,32.8190334296875],[117.226568632813,32.8645900703126],[117.173214140625,32.8814821601563],[117.2045715625,32.9105373359375],[117.253345976563,32.9086061835938],[117.252139921875,32.9389943671875],[117.257345,32.9538430000001],[117.347345,32.9538430000001],[117.34298953125,32.91819846875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"八公山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.867345,32.623843],[116.867345,32.633843],[116.880152617188,32.628843],[116.867345,32.623843]]],[[[116.867345,32.633843],[116.854537382813,32.628843],[116.867345,32.623843],[116.858121367188,32.61097190625],[116.830484648438,32.6055104804688],[116.807345,32.6377956367187],[116.797345,32.623843],[116.787345,32.623843],[116.787345,32.643843],[116.767345,32.643843],[116.767345,32.6538430000001],[116.773985625,32.667202375],[116.780704375,32.7004836250001],[116.787345,32.713843],[116.813985625,32.7004836250001],[116.831358671875,32.6658962226563],[116.847345,32.673843],[116.86326296875,32.6497585273438],[116.867345,32.633843]]]]}},{"type":"Feature","properties":{"name":"大通区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.18197390625,32.60921409375],[117.132515898438,32.5984279609375],[117.122345,32.5992458320313],[117.109136992188,32.5981838203126],[117.037345,32.6138430000001],[117.043472929688,32.6388014960937],[117.041221953125,32.6488430000001],[117.044991484375,32.6656423164063],[117.037345,32.683843],[117.07298953125,32.6981984687501],[117.099698515625,32.7143093085938],[117.087345,32.7238430000001],[117.078306914063,32.7468337226563],[117.12505984375,32.7604665351563],[117.18170046875,32.7381984687501],[117.197345,32.733843],[117.17298953125,32.6981984687501],[117.15826296875,32.68683128125],[117.187345,32.6138430000001],[117.18197390625,32.60921409375]]]]}},{"type":"Feature","properties":{"name":"凤台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.68326296875,32.8779274726563],[116.66326296875,32.8472145820313],[116.67310671875,32.799858625],[116.694459257813,32.7859548164063],[116.719112578125,32.7914821601563],[116.73326296875,32.7697585273438],[116.74142703125,32.7479274726563],[116.75326296875,32.7397585273438],[116.767667265625,32.718891828125],[116.787345,32.713843],[116.780704375,32.7004836250001],[116.773985625,32.667202375],[116.767345,32.6538430000001],[116.752232695313,32.6613552070312],[116.733985625,32.6509596992188],[116.747222929688,32.6238527656251],[116.687457304688,32.5938283515625],[116.673985625,32.5672023750001],[116.640704375,32.560483625],[116.627345,32.553843],[116.62298953125,32.57948753125],[116.602266875,32.5954811835938],[116.548350859375,32.587514875],[116.52162234375,32.6528224921875],[116.50170046875,32.6681984687501],[116.49298953125,32.6794875312501],[116.438951445313,32.6908888984376],[116.443824492188,32.7238430000001],[116.438648710938,32.758843],[116.443082304688,32.788843],[116.434268828125,32.8484987617188],[116.41869265625,32.8605202460938],[116.397345,32.8573659492188],[116.380128203125,32.8599098945313],[116.387345,32.903843],[116.383531523438,32.9200295234375],[116.360601835938,32.9483425117188],[116.373912382813,32.9888112617187],[116.370538359375,32.9996486640625],[116.377345,33.003843],[116.60142703125,32.9479274726563],[116.69326296875,32.9397585273438],[116.707345,32.933843],[116.69142703125,32.9097585273438],[116.68326296875,32.8779274726563]]]]}},{"type":"Feature","properties":{"name":"潘集区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.95197390625,32.79847190625],[117.004205351563,32.7751638007813],[117.02271609375,32.75921409375],[117.048853789063,32.7288796210938],[117.087345,32.7238430000001],[117.099698515625,32.7143093085938],[117.07298953125,32.6981984687501],[117.037345,32.683843],[117.023985625,32.6772023750001],[116.920704375,32.6704836250001],[116.907345,32.663843],[116.885816679688,32.6531423164062],[116.863985625,32.6704836250001],[116.847345,32.673843],[116.831358671875,32.6658962226563],[116.813985625,32.7004836250001],[116.787345,32.713843],[116.767667265625,32.718891828125],[116.75326296875,32.7397585273438],[116.74142703125,32.7479274726563],[116.73326296875,32.7697585273438],[116.719112578125,32.7914821601563],[116.694459257813,32.7859548164063],[116.67310671875,32.799858625],[116.66326296875,32.8472145820313],[116.68326296875,32.8779274726563],[116.69142703125,32.9097585273438],[116.707345,32.933843],[116.737345,32.933843],[116.79271609375,32.90921409375],[116.806402617188,32.8933278632813],[116.95197390625,32.79847190625]]]]}},{"type":"Feature","properties":{"name":"田家庵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.037345,32.6138430000001],[116.962369414063,32.6085427070313],[116.94259890625,32.60972190625],[116.937345,32.603843],[116.912105742188,32.6103200507813],[116.907345,32.663843],[116.920704375,32.6704836250001],[117.023985625,32.6772023750001],[117.037345,32.683843],[117.044991484375,32.6656423164063],[117.041221953125,32.6488430000001],[117.043472929688,32.6388014960937],[117.037345,32.6138430000001]]]]}},{"type":"Feature","properties":{"name":"谢家集区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.867345,32.623843],[116.854537382813,32.628843],[116.867345,32.633843],[116.867345,32.623843]]],[[[116.867345,32.623843],[116.880152617188,32.628843],[116.867345,32.633843],[116.86326296875,32.6497585273438],[116.847345,32.673843],[116.863985625,32.6704836250001],[116.885816679688,32.6531423164062],[116.907345,32.663843],[116.912105742188,32.6103200507813],[116.937345,32.603843],[116.932628203125,32.5760768867188],[116.90298953125,32.55819846875],[116.867345,32.5438430000001],[116.85170046875,32.5481984687501],[116.820147734375,32.5672341132813],[116.797345,32.623843],[116.807345,32.6377956367187],[116.830484648438,32.6055104804688],[116.858121367188,32.61097190625],[116.867345,32.623843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"当涂县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.587345,31.613843],[118.575152617188,31.6172658515625],[118.583922148438,31.6260353828125],[118.587345,31.613843]]],[[[118.587345,31.613843],[118.603985625,31.617202375],[118.6439075,31.637046125],[118.647345,31.643843],[118.682310820313,31.6380983710938],[118.697345,31.6403200507813],[118.7321496875,31.6351784492188],[118.746910429688,31.68819846875],[118.797154570313,31.6714138007813],[118.7795715625,31.6578420234375],[118.7946496875,31.6209914375001],[118.827345,31.633843],[118.863765898438,31.6134548164063],[118.86156375,31.5985500312501],[118.873136015625,31.569106671875],[118.867345,31.533843],[118.857345,31.533843],[118.857345,31.523843],[118.847345,31.523843],[118.847345,31.5138430000001],[118.835152617188,31.5104201484375],[118.843922148438,31.5016506171875],[118.847345,31.5138430000001],[118.857345,31.5138430000001],[118.857345,31.523843],[118.867345,31.523843],[118.867345,31.533843],[118.877345,31.533843],[118.877345,31.483843],[118.87224734375,31.4789430976563],[118.861861601563,31.4575392890626],[118.8624621875,31.4281838203125],[118.8419153125,31.3883058906251],[118.77447390625,31.366421125],[118.753121367188,31.3886452460938],[118.717345,31.3238430000001],[118.683985625,31.3072023750001],[118.657345,31.303843],[118.612896757813,31.2982888007812],[118.567345,31.293843],[118.550709257813,31.330688703125],[118.553018828125,31.3492482734376],[118.51099734375,31.4017848945313],[118.450328398438,31.3942385078125],[118.419913359375,31.4443068671875],[118.422965117188,31.4688430000001],[118.421241484375,31.4827150703125],[118.39068484375,31.50718284375],[118.377345,31.523843],[118.40297,31.664702375],[118.417345,31.7038430000001],[118.437345,31.7038430000001],[118.437345,31.693843],[118.441158476563,31.6676564765625],[118.453531523438,31.6400295234376],[118.461378203125,31.5861428046876],[118.489796171875,31.6060964179688],[118.501539335938,31.5870339179688],[118.513150664063,31.5906520820313],[118.521539335938,31.5770339179688],[118.532345,31.5804006171876],[118.542379179688,31.5772756171876],[118.581783476563,31.5902370429688],[118.587345,31.613843]]]]}},{"type":"Feature","properties":{"name":"含山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1091028125,31.81956565625],[118.132345,31.8186452460938],[118.14295046875,31.8190651679688],[118.142139921875,31.798657453125],[118.182120390625,31.7859987617188],[118.158175078125,31.7176857734375],[118.222154570313,31.7202223945312],[118.212535429688,31.7086525703126],[118.192110625,31.6897292304687],[118.192901640625,31.66983909375],[118.182535429688,31.6586525703125],[118.1717590625,31.6486647773438],[118.172550078125,31.6286647773438],[118.143038359375,31.6013210273438],[118.142144804688,31.5788430000001],[118.143287382813,31.5500734687501],[118.131402617188,31.52761253125],[118.132940703125,31.488843],[118.130963164063,31.4390285468751],[118.162608671875,31.4290090156251],[118.157345,31.403843],[118.13197390625,31.40847190625],[117.989849882813,31.439848859375],[117.970289335938,31.4382765937501],[117.972769804688,31.4691310859376],[117.957345,31.493843],[117.94548953125,31.5387721992188],[117.921519804688,31.5480178046875],[117.903170195313,31.5636843085938],[117.923170195313,31.5780178046876],[117.933345976563,31.6287770820313],[117.928394804688,31.653843],[117.933453398438,31.6794631171875],[117.921519804688,31.6880178046876],[117.908780546875,31.705796125],[117.914322539063,31.7338430000001],[117.911358671875,31.748843],[117.91341921875,31.7592751289063],[117.90127078125,31.7784108710938],[117.904322539063,31.793843],[117.900367460938,31.8138430000001],[117.90447390625,31.8346169257813],[117.934820585938,31.8563674140626],[117.947345,31.903843],[117.96326296875,31.8997585273438],[118.006285429688,31.871743390625],[118.077345,31.8538430000001],[118.1091028125,31.81956565625]]]]}},{"type":"Feature","properties":{"name":"和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.493985625,31.827202375],[118.480704375,31.800483625],[118.477345,31.7738430000001],[118.47170046875,31.76948753125],[118.46298953125,31.75819846875],[118.423858671875,31.7421828437501],[118.417345,31.7038430000001],[118.40297,31.664702375],[118.377345,31.523843],[118.368331328125,31.5166237617188],[118.325767851563,31.4465505195313],[118.30181765625,31.4495314765625],[118.297345,31.423843],[118.283956328125,31.3793752265626],[118.26486453125,31.3778395820313],[118.21271609375,31.38921409375],[118.157345,31.403843],[118.162608671875,31.4290090156251],[118.130963164063,31.4390285468751],[118.132940703125,31.488843],[118.131402617188,31.52761253125],[118.143287382813,31.5500734687501],[118.142144804688,31.5788430000001],[118.143038359375,31.6013210273438],[118.172550078125,31.6286647773438],[118.1717590625,31.6486647773438],[118.182535429688,31.6586525703125],[118.192901640625,31.66983909375],[118.192110625,31.6897292304687],[118.212535429688,31.7086525703126],[118.222154570313,31.7202223945312],[118.158175078125,31.7176857734375],[118.182120390625,31.7859987617188],[118.142139921875,31.798657453125],[118.14295046875,31.8190651679688],[118.132345,31.8186452460938],[118.1091028125,31.81956565625],[118.077345,31.8538430000001],[118.082252226563,31.8820314765625],[118.111793242188,31.8993971992188],[118.172896757813,31.9082888007812],[118.201793242188,31.9293971992188],[118.238858671875,31.945014875],[118.298453398438,31.9927370429688],[118.3248059375,32.0256471992188],[118.377345,32.053843],[118.382896757813,32.049233625],[118.381803007813,32.038520734375],[118.39474734375,32.0159157539062],[118.382808867188,31.9883815742188],[118.371793242188,31.979233625],[118.372882109375,31.9685768867188],[118.358956328125,31.9315114570313],[118.381881132813,31.9183815742188],[118.463287382813,31.8830763984375],[118.460968046875,31.860356671875],[118.481881132813,31.8483815742188],[118.497345,31.843843],[118.493985625,31.827202375]]]]}},{"type":"Feature","properties":{"name":"雨山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.587345,31.613843],[118.583922148438,31.6260353828125],[118.575152617188,31.6172658515625],[118.581783476563,31.5902370429688],[118.542379179688,31.5772756171876],[118.532345,31.5804006171876],[118.521539335938,31.5770339179688],[118.513150664063,31.5906520820313],[118.501539335938,31.5870339179688],[118.489796171875,31.6060964179688],[118.461378203125,31.5861428046876],[118.453531523438,31.6400295234376],[118.441158476563,31.6676564765625],[118.437345,31.693843],[118.452808867188,31.6983815742188],[118.469039335938,31.7179201484376],[118.505079375,31.6745339179687],[118.552608671875,31.679380109375],[118.582589140625,31.6681154609375],[118.591881132813,31.6793044257813],[118.602808867188,31.6883815742188],[118.617345,31.7058815742188],[118.631881132813,31.6883815742188],[118.637345,31.683843],[118.640704375,31.657202375],[118.647345,31.643843],[118.6439075,31.637046125],[118.603985625,31.617202375],[118.587345,31.613843]]]]}},{"type":"Feature","properties":{"name":"花山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.517891875,31.7480178046875],[118.552740507813,31.7371633125],[118.583531523438,31.7476564765625],[118.601886015625,31.7605422187501],[118.612345,31.7572853828125],[118.631539335938,31.7632643867188],[118.646300078125,31.73931175],[118.677750273438,31.7285939765626],[118.685660429688,31.7031935859375],[118.663531523438,31.6876564765625],[118.637345,31.683843],[118.631881132813,31.6883815742188],[118.617345,31.7058815742188],[118.602808867188,31.6883815742188],[118.591881132813,31.6793044257813],[118.582589140625,31.6681154609375],[118.552608671875,31.679380109375],[118.505079375,31.6745339179687],[118.469039335938,31.7179201484376],[118.452808867188,31.6983815742188],[118.437345,31.693843],[118.437345,31.7038430000001],[118.417345,31.7038430000001],[118.423858671875,31.7421828437501],[118.46298953125,31.75819846875],[118.47170046875,31.76948753125],[118.477345,31.7738430000001],[118.492608671875,31.7806789375],[118.511158476563,31.7676564765625],[118.536011992188,31.759184796875],[118.517891875,31.7480178046875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"杜集区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.807345,34.073843],[116.795152617188,34.0772658515625],[116.803922148438,34.0860353828126],[116.807345,34.073843]]],[[[116.807345,34.073843],[116.8226965625,34.0663661933594],[116.849268828125,34.0869631171876],[116.872828398438,34.0763784003907],[116.907008085938,34.1057302070313],[116.930797148438,34.0872927070312],[116.96615359375,34.0799221015625],[116.936163359375,34.0450002265625],[116.965225859375,34.029692609375],[116.974625273438,34.0087685371094],[116.957345,33.973843],[116.950206328125,33.9683315253907],[116.953658476563,33.9449550605469],[116.917047148438,33.9503652167969],[116.877345,33.9438430000001],[116.871217070313,33.9677162910157],[116.847345,33.973843],[116.814483671875,33.9790224433595],[116.797345,34.003843],[116.800704375,34.060483625],[116.807345,34.073843]]],[[[116.977345,34.1738430000001],[116.980767851563,34.1616506171876],[116.989537382813,34.1704201484375],[116.98170046875,34.1994863105469],[116.99670046875,34.2376357246094],[117.01795046875,34.2101039863281],[117.027345,34.243843],[117.045445585938,34.2401894355469],[117.03990359375,34.228843],[117.044796171875,34.2188246894532],[117.017345,34.163843],[117.0112903125,34.1536330390625],[116.971949492188,34.1401210761719],[116.96857546875,34.1686440253907],[116.977345,34.1738430000001]]]]}},{"type":"Feature","properties":{"name":"烈山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.84361453125,33.9095131660156],[116.8380090625,33.8845082832031],[116.86697390625,33.8910024238281],[116.88361453125,33.8795131660156],[116.881221953125,33.8688430000001],[116.883975859375,33.8565651679687],[116.871754179688,33.8238954902344],[116.85142703125,33.8379274726562],[116.84326296875,33.8497585273437],[116.783648710938,33.8650563789063],[116.79326296875,33.9079274726563],[116.797345,33.9138430000001],[116.837345,33.9138430000001],[116.84361453125,33.9095131660156]]],[[[116.877345,33.9438430000001],[116.857345,33.9438430000001],[116.850704375,33.957202375],[116.847345,33.973843],[116.871217070313,33.9677162910157],[116.877345,33.9438430000001]]]]}},{"type":"Feature","properties":{"name":"相山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.837345,33.9138430000001],[116.797345,33.9138430000001],[116.773092070313,33.9476784492187],[116.721519804688,33.9580178046875],[116.707877226563,33.977055890625],[116.723170195313,33.9880178046875],[116.727345,34.013843],[116.77326296875,34.0097585273438],[116.797345,34.003843],[116.814483671875,33.9790224433595],[116.847345,33.973843],[116.850704375,33.957202375],[116.857345,33.9438430000001],[116.837345,33.9138430000001]]]]}},{"type":"Feature","properties":{"name":"濉溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.79326296875,33.9079274726563],[116.783648710938,33.8650563789063],[116.84326296875,33.8497585273437],[116.85142703125,33.8379274726562],[116.871754179688,33.8238954902344],[116.883975859375,33.8565651679687],[116.881221953125,33.8688430000001],[116.88361453125,33.8795131660156],[116.86697390625,33.8910024238281],[116.8380090625,33.8845082832031],[116.84361453125,33.9095131660156],[116.837345,33.9138430000001],[116.857345,33.9438430000001],[116.877345,33.9438430000001],[116.917047148438,33.9503652167969],[116.953658476563,33.9449550605469],[116.950206328125,33.9683315253907],[116.957345,33.973843],[116.957345,33.963843],[116.987345,33.963843],[116.987345,33.9438430000001],[116.997345,33.9438430000001],[116.98170046875,33.9053371406251],[116.956705351563,33.8853212714844],[116.940396757813,33.7694948554687],[116.943023710938,33.7483901191407],[116.930533476563,33.7383901191406],[116.934566679688,33.7059816718751],[116.921846953125,33.6757949042969],[116.873336210938,33.6818288398438],[116.871724882813,33.668843],[116.874039335938,33.65022971875],[116.855479765625,33.6186586738282],[116.889176054688,33.5765834785156],[116.931793242188,33.5818837714844],[116.922896757813,33.5482900214844],[116.904830351563,33.5338210273437],[116.901724882813,33.508843],[116.903590117188,33.4938430000001],[116.90166140625,33.4783449531251],[116.922896757813,33.4693959785156],[116.931793242188,33.4582900214844],[116.960826445313,33.4460549140626],[116.963428984375,33.4251235175782],[116.952159453125,33.3857057929688],[116.918048125,33.3583901191406],[116.923004179688,33.3185597968751],[116.917345,33.3038430000001],[116.871246367188,33.2999404121094],[116.85857546875,33.2801467109375],[116.813443632813,33.2999404121094],[116.797345,33.3038430000001],[116.781070585938,33.3471498847656],[116.792808867188,33.3783803535156],[116.801881132813,33.4137075019531],[116.747398710938,33.4473146796875],[116.721881132813,33.4583803535156],[116.711475859375,33.4709059882813],[116.589420195313,33.4883803535157],[116.56545046875,33.4595241523438],[116.527345,33.473843],[116.534796171875,33.4888283515625],[116.52990359375,33.498843],[116.534796171875,33.5088576484375],[116.516641875,33.5453713203126],[116.533985625,33.567202375],[116.540704375,33.6020253730469],[116.50406375,33.62056175],[116.493985625,33.640483625],[116.475504179688,33.6498329902344],[116.48966921875,33.6788430000001],[116.474293242188,33.7103273750001],[116.460704375,33.717202375],[116.453985625,33.7304836250001],[116.43406375,33.74056175],[116.423985625,33.760483625],[116.400704375,33.767202375],[116.393985625,33.780483625],[116.387345,33.783843],[116.400806914063,33.8012868476563],[116.42295046875,33.7980141425782],[116.43170046875,33.8394863105469],[116.476265898438,33.8704799628906],[116.49263796875,33.8680605292969],[116.542608671875,33.8877053046875],[116.562579375,33.9135793281251],[116.6325403125,33.8860756660157],[116.643326445313,33.9371938300781],[116.641607695313,33.9488430000001],[116.645089140625,33.9724269843751],[116.61170046875,33.9981996894532],[116.597345,34.0238430000001],[116.66197390625,34.0184706855469],[116.727345,34.013843],[116.723170195313,33.9880178046875],[116.707877226563,33.977055890625],[116.721519804688,33.9580178046875],[116.773092070313,33.9476784492187],[116.797345,33.9138430000001],[116.79326296875,33.9079274726563]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"铜陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.890030546875,31.0795876289063],[117.936812773438,31.0748195625],[117.977345,31.083843],[117.99213015625,31.0772194648438],[118.009600859375,31.0826589179688],[118.013902617188,31.068843],[118.003961210938,31.0369240546876],[118.075909453125,31.0124050117188],[118.096939726563,30.9782692695313],[118.153531523438,30.9700295234375],[118.157345,30.963843],[118.150416289063,30.9578713203125],[118.152745390625,30.928843],[118.151944609375,30.918843],[118.1527746875,30.9084889960938],[118.12197390625,30.89921409375],[118.072633085938,30.8684181953125],[118.051373320313,30.8701271796875],[118.024757109375,30.8392311835937],[118.017345,30.8638430000001],[118.012345,30.8870876289063],[118.007345,30.8638430000001],[117.980704375,30.850483625],[117.977345,30.843843],[117.97142703125,30.8397585273437],[117.95959109375,30.8226125312501],[117.932266875,30.8404055],[117.90326296875,30.8179274726563],[117.87142703125,30.8097585273438],[117.84201296875,30.7906032539062],[117.827432890625,30.7694899726563],[117.80142703125,30.7597585273437],[117.797345,30.753843],[117.756519804688,30.7643190742188],[117.742345,30.8022048164063],[117.70435671875,30.7936891914063],[117.697345,30.803843],[117.72142703125,30.8397585273437],[117.727345,30.843843],[117.75326296875,30.8479274726563],[117.78830203125,30.870747296875],[117.797345,30.883843],[117.797345,30.8938430000001],[117.817345,30.8938430000001],[117.837345,30.8938430000001],[117.837345,30.923843],[117.847345,30.923843],[117.847345,30.9338430000001],[117.847345,30.9438430000001],[117.860152617188,30.948843],[117.847345,30.953843],[117.837345,30.953843],[117.827345,30.953843],[117.82154421875,30.9668337226563],[117.817345,30.9438430000001],[117.791695585938,30.9501442695313],[117.787345,30.9438430000001],[117.767345,30.9438430000001],[117.767345,30.9338430000001],[117.737345,30.913843],[117.733985625,30.960483625],[117.727345,30.9738430000001],[117.732784453125,31.0283229804688],[117.768214140625,31.1100221992188],[117.835186796875,31.1483815742188],[117.867388945313,31.1317946601563],[117.890030546875,31.0795876289063]],[[117.897345,30.9038430000001],[117.900767851563,30.8916506171875],[117.909537382813,30.9004201484375],[117.89166140625,30.9373097968751],[117.87298953125,30.9226418281251],[117.897345,30.9038430000001]],[[117.987345,30.923843],[117.991627226563,30.8908937812501],[118.000797148438,30.9167580390625],[117.983922148438,30.9360353828125],[117.975152617188,30.9272658515625],[117.987345,30.923843]],[[118.004346953125,30.9178957343751],[118.027345,30.913843],[118.021910429688,30.9265407539063],[118.004346953125,30.9178957343751]]]]}},{"type":"Feature","properties":{"name":"狮子山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.017345,30.8638430000001],[118.007345,30.8638430000001],[118.012345,30.8870876289063],[118.017345,30.8638430000001]]],[[[117.897345,30.9038430000001],[117.909537382813,30.9004201484375],[117.900767851563,30.8916506171875],[117.897345,30.9038430000001]]],[[[117.987345,30.923843],[118.000797148438,30.9167580390625],[117.991627226563,30.8908937812501],[117.987345,30.923843]]],[[[118.021910429688,30.9265407539063],[118.027345,30.913843],[118.004346953125,30.9178957343751],[118.021910429688,30.9265407539063]]],[[[117.847345,30.923843],[117.837345,30.923843],[117.837345,30.9338430000001],[117.847345,30.9338430000001],[117.847345,30.923843]]],[[[117.987345,30.923843],[117.975152617188,30.9272658515625],[117.983922148438,30.9360353828125],[117.987345,30.923843]]],[[[117.897345,30.9038430000001],[117.87298953125,30.9226418281251],[117.89166140625,30.9373097968751],[117.897345,30.9038430000001]]],[[[117.860152617188,30.948843],[117.847345,30.9438430000001],[117.847345,30.953843],[117.860152617188,30.948843]]]]}},{"type":"Feature","properties":{"name":"铜官山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.743922148438,30.8660353828125],[117.747345,30.853843],[117.735152617188,30.8572658515625],[117.743922148438,30.8660353828125]]],[[[117.763922148438,30.8860353828126],[117.767345,30.873843],[117.755152617188,30.8772658515625],[117.763922148438,30.8860353828126]]],[[[117.797345,30.8938430000001],[117.797345,30.883843],[117.7741028125,30.888843],[117.797345,30.8938430000001]]],[[[117.757345,30.9038430000001],[117.753922148438,30.8916506171875],[117.745152617188,30.9004201484375],[117.757345,30.9038430000001]]],[[[117.757345,30.9038430000001],[117.757345,30.913843],[117.767345,30.913843],[117.767345,30.9038430000001],[117.757345,30.9038430000001]]],[[[117.827345,30.9438430000001],[117.827345,30.923843],[117.837345,30.923843],[117.837345,30.8938430000001],[117.817345,30.8938430000001],[117.805694609375,30.9107155585937],[117.792301054688,30.9077126289062],[117.767345,30.913843],[117.767345,30.9338430000001],[117.787345,30.9338430000001],[117.787345,30.9438430000001],[117.791695585938,30.9501442695313],[117.817345,30.9438430000001],[117.827345,30.9438430000001]]],[[[117.827345,30.9438430000001],[117.827345,30.953843],[117.837345,30.953843],[117.837345,30.9438430000001],[117.827345,30.9438430000001]]]]}},{"type":"Feature","properties":{"name":"郊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.963985625,30.660483625],[116.967345,30.6338430000001],[116.925347929688,30.6376930976563],[116.913985625,30.6609596992188],[116.963985625,30.660483625]]],[[[117.767345,30.913843],[117.757345,30.913843],[117.757345,30.9038430000001],[117.745152617188,30.9004201484375],[117.753922148438,30.8916506171875],[117.757345,30.9038430000001],[117.767345,30.9038430000001],[117.792301054688,30.9077126289062],[117.805694609375,30.9107155585937],[117.817345,30.8938430000001],[117.797345,30.8938430000001],[117.7741028125,30.888843],[117.797345,30.883843],[117.78830203125,30.870747296875],[117.75326296875,30.8479274726563],[117.727345,30.843843],[117.73298953125,30.87819846875],[117.737345,30.913843],[117.767345,30.9338430000001],[117.767345,30.913843]],[[117.755152617188,30.8772658515625],[117.767345,30.873843],[117.763922148438,30.8860353828126],[117.755152617188,30.8772658515625]],[[117.735152617188,30.8572658515625],[117.747345,30.853843],[117.743922148438,30.8660353828125],[117.735152617188,30.8572658515625]]],[[[117.767345,30.9338430000001],[117.767345,30.9438430000001],[117.787345,30.9438430000001],[117.787345,30.9338430000001],[117.767345,30.9338430000001]]],[[[117.827345,30.9438430000001],[117.837345,30.9438430000001],[117.837345,30.953843],[117.847345,30.953843],[117.847345,30.9438430000001],[117.847345,30.9338430000001],[117.837345,30.9338430000001],[117.837345,30.923843],[117.827345,30.923843],[117.827345,30.9438430000001]]],[[[117.827345,30.9438430000001],[117.817345,30.9438430000001],[117.82154421875,30.9668337226563],[117.827345,30.953843],[117.827345,30.9438430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大观区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.027345,30.503843],[117.017345,30.503843],[117.017345,30.5138430000001],[117.020758085938,30.5307424140625],[117.047296171875,30.5437038398438],[117.057345,30.523843],[117.027345,30.503843]]]]}},{"type":"Feature","properties":{"name":"怀宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.047345,30.663843],[117.038272734375,30.656577375],[117.0454309375,30.5990138984375],[117.011793242188,30.5893971992188],[116.961041289063,30.5595632148438],[116.973272734375,30.5387599921876],[117.017345,30.5138430000001],[117.017345,30.503843],[117.007345,30.503843],[117.007345,30.493843],[116.99830203125,30.480747296875],[116.96326296875,30.4579274726563],[116.88326296875,30.4376930976562],[116.89142703125,30.3779274726563],[116.897345,30.353843],[116.8669934375,30.3708351875],[116.842916289063,30.4296657539063],[116.822345,30.4266262031251],[116.801954375,30.4296388984376],[116.765484648438,30.4076393867187],[116.749967070313,30.4099343085938],[116.753175078125,30.38823753125],[116.673140898438,30.3713503242188],[116.659400664063,30.3535524726563],[116.632735625,30.3696388984375],[116.622345,30.3681032539063],[116.582979765625,30.373921125],[116.54220828125,30.3578932929688],[116.509346953125,30.3777175117188],[116.487345,30.383843],[116.494801054688,30.398843],[116.480704375,30.4272023750001],[116.477345,30.463843],[116.481793242188,30.4693971992188],[116.540748320313,30.4821511054688],[116.598428984375,30.4749758125001],[116.61630984375,30.4526491523437],[116.645167265625,30.5211403632813],[116.641724882813,30.548843],[116.644039335938,30.5674562812501],[116.603883085938,30.635766828125],[116.68750125,30.6994020820312],[116.711793242188,30.7393971992188],[116.753292265625,30.7962111640625],[116.751666289063,30.8092971015625],[116.762896757813,30.8182888007813],[116.767345,30.8238430000001],[116.805675078125,30.808774640625],[116.90298953125,30.79948753125],[116.92170046875,30.78819846875],[116.951690703125,30.775923078125],[116.98478640625,30.7503786445312],[116.981529570313,30.7283278632813],[117.03298953125,30.68948753125],[117.047345,30.663843]],[[116.925347929688,30.6376930976563],[116.967345,30.6338430000001],[116.963985625,30.660483625],[116.913985625,30.6609596992188],[116.925347929688,30.6376930976563]]]]}},{"type":"Feature","properties":{"name":"潜山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.615816679688,31.0745436835938],[116.652330351563,31.0563942695313],[116.66892703125,31.0644997382813],[116.690704375,31.047202375],[116.707345,31.043843],[116.71142703125,31.0179274726562],[116.724268828125,30.9873537421875],[116.709176054688,30.9470119453125],[116.678912382813,30.9005373359376],[116.70142703125,30.8679274726562],[116.71326296875,30.8597585273438],[116.727667265625,30.838891828125],[116.76326296875,30.8297585273438],[116.767345,30.8238430000001],[116.762896757813,30.8182888007813],[116.751666289063,30.8092971015625],[116.753292265625,30.7962111640625],[116.711793242188,30.7393971992188],[116.68750125,30.6994020820312],[116.603883085938,30.635766828125],[116.644039335938,30.5674562812501],[116.641724882813,30.548843],[116.645167265625,30.5211403632813],[116.61630984375,30.4526491523437],[116.598428984375,30.4749758125001],[116.540748320313,30.4821511054688],[116.481793242188,30.4693971992188],[116.477345,30.463843],[116.438878203125,30.4703786445313],[116.443140898438,30.499233625],[116.426798125,30.52632346875],[116.433990507813,30.5749831367187],[116.3734778125,30.5997487617188],[116.32982546875,30.5932985664063],[116.294449492188,30.6146364570313],[116.28298953125,30.62948753125],[116.259386015625,30.6477053046876],[116.237345,30.653843],[116.2718371875,30.6969142890625],[116.292345,30.6994655585938],[116.306065703125,30.697759015625],[116.342896757813,30.7082888007813],[116.351798125,30.7394118476563],[116.401793242188,30.7793971992188],[116.433502226563,30.7927590156251],[116.454830351563,30.8098390937501],[116.422896757813,30.8354128242187],[116.431793242188,30.8493971992188],[116.451241484375,30.8649709296876],[116.452965117188,30.878843],[116.450479765625,30.8988430000001],[116.452965117188,30.918843],[116.451666289063,30.9293068671875],[116.498258085938,30.962055890625],[116.512530546875,31.0119802070313],[116.527345,31.023843],[116.549488554688,31.0283132148437],[116.560704375,31.050483625],[116.593985625,31.057202375],[116.615816679688,31.0745436835938]]]]}},{"type":"Feature","properties":{"name":"宿松县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.049107695313,30.38968284375],[116.069888945313,30.387563703125],[116.121539335938,30.4020046210938],[116.192808867188,30.3893044257813],[116.201881132813,30.3783815742188],[116.24302859375,30.3605373359375],[116.24123171875,30.3429347968751],[116.255406523438,30.3102516914063],[116.287345,30.2718044257812],[116.309039335938,30.2979201484375],[116.346422148438,30.2529177070313],[116.368267851563,30.2347682929688],[116.381881132813,30.1883815742188],[116.412808867188,30.1693044257813],[116.457345,30.1338430000001],[116.463638945313,30.1236257148438],[116.503531523438,30.1100295234375],[116.531158476563,30.0876564765625],[116.563531523438,30.0700295234375],[116.571158476563,30.0576564765625],[116.577345,30.053843],[116.555689726563,29.9246535468751],[116.54298953125,29.90819846875],[116.467408476563,29.8989626289062],[116.427921171875,29.875141828125],[116.387345,29.863843],[116.36685671875,29.8581374335938],[116.27826296875,29.7924513984375],[116.247345,29.783843],[116.224566679688,29.8253444648437],[116.1618371875,29.8380178046875],[116.127345,29.823843],[116.121944609375,29.8888356757813],[116.122769804688,29.8991408515625],[116.07187625,29.9686013007812],[116.08275515625,30.0387258125001],[116.079932890625,30.073843],[116.082745390625,30.108843],[116.081944609375,30.118843],[116.0827746875,30.1291677070313],[116.062535429688,30.1466017890625],[116.051495390625,30.1832717109375],[116.05439578125,30.2193727851562],[115.99197390625,30.25847190625],[115.981300078125,30.2708571601563],[115.9827746875,30.2891799140625],[115.943834257813,30.3135695625001],[115.917345,30.303843],[115.905504179688,30.3098342109375],[115.919185820313,30.3378517890625],[115.893599882813,30.3507961250001],[115.878326445313,30.3820729804688],[115.920704375,30.4204836250001],[115.937345,30.423843],[115.995811796875,30.4310134101563],[116.025455351563,30.4181569648438],[116.049107695313,30.38968284375]]]]}},{"type":"Feature","properties":{"name":"太湖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.782916289063,30.7624538398438],[115.817345,30.7573659492188],[115.83263796875,30.75962425],[115.847345,30.753843],[115.86150515625,30.7001735664063],[115.915518828125,30.6837648750001],[115.985343046875,30.7005886054688],[116.001724882813,30.6777321601563],[116.037345,30.684770734375],[116.082345,30.6758791328125],[116.110406523438,30.6814235664063],[116.143780546875,30.6602346015625],[116.208150664063,30.672954328125],[116.237345,30.653843],[116.259386015625,30.6477053046876],[116.28298953125,30.62948753125],[116.294449492188,30.6146364570313],[116.32982546875,30.5932985664063],[116.3734778125,30.5997487617188],[116.433990507813,30.5749831367187],[116.426798125,30.52632346875],[116.443140898438,30.499233625],[116.438878203125,30.4703786445313],[116.477345,30.463843],[116.480704375,30.4272023750001],[116.494801054688,30.398843],[116.487345,30.383843],[116.461793242188,30.3693971992188],[116.437901640625,30.3395632148438],[116.443721953125,30.292759015625],[116.483248320313,30.2611061835938],[116.468463164063,30.1427443671875],[116.457345,30.1338430000001],[116.412808867188,30.1693044257813],[116.381881132813,30.1883815742188],[116.368267851563,30.2347682929688],[116.346422148438,30.2529177070313],[116.309039335938,30.2979201484375],[116.287345,30.2718044257812],[116.255406523438,30.3102516914063],[116.24123171875,30.3429347968751],[116.24302859375,30.3605373359375],[116.201881132813,30.3783815742188],[116.192808867188,30.3893044257813],[116.121539335938,30.4020046210938],[116.069888945313,30.387563703125],[116.049107695313,30.38968284375],[116.025455351563,30.4181569648438],[115.995811796875,30.4310134101563],[115.937345,30.423843],[115.93326296875,30.4297585273438],[115.891070585938,30.4581667304688],[115.899854765625,30.49733909375],[115.91408328125,30.5191896796875],[115.90142703125,30.5279274726563],[115.89326296875,30.5397585273438],[115.88142703125,30.5479274726563],[115.869879179688,30.5929274726563],[115.81142703125,30.6079274726563],[115.798917265625,30.656684796875],[115.767345,30.6738430000001],[115.757203398438,30.6996364570313],[115.782916289063,30.7624538398438]]]]}},{"type":"Feature","properties":{"name":"桐城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.220152617188,30.688843],[117.207345,30.683843],[117.207345,30.693843],[117.220152617188,30.688843]]],[[[117.147345,31.073843],[117.130030546875,31.0072658515625],[117.08593875,31.0127492500001],[117.0787121875,30.9546266914063],[117.092896757813,30.8793971992188],[117.101793242188,30.7682888007813],[117.137345,30.723843],[117.110079375,30.7162502265626],[117.07298953125,30.66819846875],[117.047345,30.663843],[117.03298953125,30.68948753125],[116.981529570313,30.7283278632813],[116.98478640625,30.7503786445312],[116.951690703125,30.775923078125],[116.92170046875,30.78819846875],[116.90298953125,30.79948753125],[116.805675078125,30.808774640625],[116.767345,30.8238430000001],[116.76326296875,30.8297585273438],[116.727667265625,30.838891828125],[116.71326296875,30.8597585273438],[116.70142703125,30.8679274726562],[116.678912382813,30.9005373359376],[116.709176054688,30.9470119453125],[116.724268828125,30.9873537421875],[116.71142703125,31.0179274726562],[116.707345,31.043843],[116.724049101563,31.064702375],[116.767345,31.0700856757813],[116.78279421875,31.0681642890625],[116.832896757813,31.1082888007813],[116.849381132813,31.1288747382813],[116.896373320313,31.1390407539063],[116.937642851563,31.1720900703125],[116.964327421875,31.2354103828125],[116.992896757813,31.2582888007813],[117.001964140625,31.2696096015625],[117.027345,31.263843],[117.045777617188,31.2408229804688],[117.073707304688,31.2290554023438],[117.110850859375,31.1658693671875],[117.11607546875,31.1238430000001],[117.111143828125,31.0841921210938],[117.147345,31.073843]]]]}},{"type":"Feature","properties":{"name":"望江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.842916289063,30.4296657539063],[116.8669934375,30.3708351875],[116.897345,30.353843],[116.931510039063,30.2802834296875],[116.91271609375,30.25847190625],[116.86353640625,30.2161013007813],[116.850621367188,30.1592555976563],[116.822603789063,30.126733625],[116.747345,30.0638430000001],[116.722345,30.0533425117188],[116.68326296875,30.0697585273438],[116.6137903125,30.0779274726563],[116.577345,30.053843],[116.571158476563,30.0576564765625],[116.563531523438,30.0700295234375],[116.531158476563,30.0876564765625],[116.503531523438,30.1100295234375],[116.463638945313,30.1236257148438],[116.457345,30.1338430000001],[116.468463164063,30.1427443671875],[116.483248320313,30.2611061835938],[116.443721953125,30.292759015625],[116.437901640625,30.3395632148438],[116.461793242188,30.3693971992188],[116.487345,30.383843],[116.509346953125,30.3777175117188],[116.54220828125,30.3578932929688],[116.582979765625,30.373921125],[116.622345,30.3681032539063],[116.632735625,30.3696388984375],[116.659400664063,30.3535524726563],[116.673140898438,30.3713503242188],[116.753175078125,30.38823753125],[116.749967070313,30.4099343085938],[116.765484648438,30.4076393867187],[116.801954375,30.4296388984376],[116.822345,30.4266262031251],[116.842916289063,30.4296657539063]]]]}},{"type":"Feature","properties":{"name":"宜秀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.027345,30.493843],[117.007345,30.493843],[117.007345,30.503843],[117.017345,30.503843],[117.027345,30.503843],[117.027345,30.493843]]],[[[117.153985625,30.7204836250001],[117.167393828125,30.6939821601563],[117.18740359375,30.7037551093751],[117.207345,30.693843],[117.207345,30.683843],[117.194810820313,30.6586232734375],[117.21406375,30.62056175],[117.227345,30.613843],[117.247047148438,30.5716506171876],[117.225933867188,30.4893801093751],[117.197345,30.473843],[117.159888945313,30.4763869453125],[117.134801054688,30.5012990546876],[117.067345,30.503843],[117.067345,30.523843],[117.057345,30.523843],[117.047296171875,30.5437038398438],[117.020758085938,30.5307424140625],[117.017345,30.5138430000001],[116.973272734375,30.5387599921876],[116.961041289063,30.5595632148438],[117.011793242188,30.5893971992188],[117.0454309375,30.5990138984375],[117.038272734375,30.656577375],[117.047345,30.663843],[117.07298953125,30.66819846875],[117.110079375,30.7162502265626],[117.137345,30.723843],[117.153985625,30.7204836250001]]]]}},{"type":"Feature","properties":{"name":"迎江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.067345,30.503843],[117.027345,30.493843],[117.027345,30.503843],[117.057345,30.523843],[117.067345,30.523843],[117.067345,30.503843]]]]}},{"type":"Feature","properties":{"name":"岳西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.552965117188,31.148843],[116.551724882813,31.138843],[116.555064726563,31.1119753242188],[116.533853789063,31.0758937812501],[116.527345,31.023843],[116.512530546875,31.0119802070313],[116.498258085938,30.962055890625],[116.451666289063,30.9293068671875],[116.452965117188,30.918843],[116.450479765625,30.8988430000001],[116.452965117188,30.878843],[116.451241484375,30.8649709296876],[116.431793242188,30.8493971992188],[116.422896757813,30.8354128242187],[116.454830351563,30.8098390937501],[116.433502226563,30.7927590156251],[116.401793242188,30.7793971992188],[116.351798125,30.7394118476563],[116.342896757813,30.7082888007813],[116.306065703125,30.697759015625],[116.292345,30.6994655585938],[116.2718371875,30.6969142890625],[116.237345,30.653843],[116.208150664063,30.672954328125],[116.143780546875,30.6602346015625],[116.110406523438,30.6814235664063],[116.082345,30.6758791328125],[116.037345,30.684770734375],[116.001724882813,30.6777321601563],[115.985343046875,30.7005886054688],[115.915518828125,30.6837648750001],[115.86150515625,30.7001735664063],[115.847345,30.753843],[115.85170046875,30.7694875312501],[115.8632434375,30.7783937812501],[115.848136015625,30.843579328125],[115.865894804688,30.8730178046875],[115.932061796875,30.9000978828126],[115.99685671875,30.9481374335938],[116.063404570313,30.9666701484375],[116.057252226563,31.0082985664063],[116.037345,31.0138430000001],[116.046568632813,31.0488088203125],[116.0627746875,31.0714186835938],[116.094283476563,31.0914235664063],[116.11252078125,31.0878200507813],[116.156925078125,31.1013112617188],[116.173170195313,31.0896681953125],[116.184742460938,31.0596681953126],[116.226178007813,31.0686721015625],[116.276470976563,31.1047170234376],[116.301519804688,31.1396681953126],[116.323170195313,31.1480178046875],[116.35396609375,31.1715358710938],[116.416475859375,31.1590041328125],[116.427345,31.143843],[116.444947539063,31.1218605781251],[116.491983671875,31.1495095039063],[116.502750273438,31.1481716132813],[116.54849734375,31.18476096875],[116.552965117188,31.148843]]]]}},{"type":"Feature","properties":{"name":"枞阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.233819609375,31.0155226875],[117.284849882813,30.979341046875],[117.303072539063,31.0004933906251],[117.35271609375,30.9892140937501],[117.363516875,30.9533400703125],[117.410250273438,30.9794118476563],[117.431363554688,30.9777175117188],[117.466182890625,30.9971413398438],[117.49197390625,30.99921409375],[117.497345,31.003843],[117.515479765625,30.9986574531251],[117.535513945313,30.9736403632813],[117.605181914063,30.9823049140625],[117.642896757813,30.9593971992188],[117.65834109375,30.9401125312501],[117.681793242188,30.9693971992188],[117.727345,30.9738430000001],[117.733985625,30.960483625],[117.737345,30.913843],[117.73298953125,30.87819846875],[117.727345,30.843843],[117.72142703125,30.8397585273437],[117.697345,30.803843],[117.647296171875,30.7814357734375],[117.571881132813,30.7593044257813],[117.501964140625,30.7294924140625],[117.48548953125,30.6915114570313],[117.43603640625,30.6793044257813],[117.382608671875,30.699380109375],[117.345596953125,30.6956081367188],[117.232667265625,30.6437233710938],[117.227345,30.613843],[117.21406375,30.62056175],[117.194810820313,30.6586232734375],[117.207345,30.683843],[117.220152617188,30.688843],[117.207345,30.693843],[117.18740359375,30.7037551093751],[117.167393828125,30.6939821601563],[117.153985625,30.7204836250001],[117.137345,30.723843],[117.101793242188,30.7682888007813],[117.092896757813,30.8793971992188],[117.0787121875,30.9546266914063],[117.08593875,31.0127492500001],[117.130030546875,31.0072658515625],[117.147345,31.073843],[117.174263945313,31.0837282539063],[117.210831328125,31.0522219062501],[117.233819609375,31.0155226875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"黄山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.121519804688,30.5079933906251],[118.113170195313,30.4780178046875],[118.096768828125,30.4662624335937],[118.111866484375,30.4271218085938],[118.153170195313,30.4380178046875],[118.173267851563,30.4660622382812],[118.208360625,30.4729958320313],[118.22388796875,30.4485329414063],[118.207877226563,30.437055890625],[118.225694609375,30.4121926093751],[118.243170195313,30.3996681953125],[118.253365507813,30.3854470039063],[118.297345,30.373843],[118.290709257813,30.3590261054688],[118.304039335938,30.3184889960938],[118.293531523438,30.2876564765625],[118.271827421875,30.2742800117188],[118.26048953125,30.2378835273437],[118.283531523438,30.2300295234376],[118.291158476563,30.1976564765625],[118.313531523438,30.1900295234375],[118.321158476563,30.1776564765625],[118.334151640625,30.1696486640626],[118.3298840625,30.1559474921876],[118.344971953125,30.1314675117188],[118.357345,30.123843],[118.357345,30.113843],[118.347345,30.113843],[118.3074621875,30.0938430000001],[118.297345,30.073843],[118.252906523438,30.0811428046875],[118.216221953125,30.0757204414063],[118.20298953125,30.0281984687501],[118.178424101563,29.99948753125],[118.159400664063,30.0241335273438],[118.13298953125,30.00819846875],[118.107345,30.003843],[118.097345,30.0238430000001],[118.080440703125,30.0829592109375],[118.037345,30.0776003242188],[118.022345,30.0794655585938],[117.979947539063,30.0741921210938],[117.943043242188,30.0524977851563],[117.93187625,30.1041237617188],[117.911793242188,30.1382888007813],[117.902515898438,30.1707302070313],[117.868287382813,30.1664723945313],[117.87447390625,30.1167116523438],[117.8394153125,30.1210720039063],[117.853038359375,30.1687795234375],[117.847345,30.193843],[117.85627078125,30.2181447578125],[117.82197390625,30.2284719062501],[117.81271609375,30.2472365546876],[117.88271609375,30.27847190625],[117.932916289063,30.3367385078125],[117.931734648438,30.3514455390625],[117.917345,30.3638430000001],[117.921339140625,30.369848859375],[117.950982695313,30.3895607734375],[117.93982546875,30.433843],[117.943785429688,30.4495607734375],[117.9287121875,30.4595827460938],[117.954342070313,30.5051979804688],[117.967345,30.5138430000001],[117.991900664063,30.4977663398438],[118.007345,30.5008180976563],[118.026016875,30.4971291328126],[118.061944609375,30.5199367500001],[118.121519804688,30.5079933906251]]]]}},{"type":"Feature","properties":{"name":"徽州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.301724882813,30.0188430000001],[118.303370390625,30.0056056953126],[118.26400515625,30.01050315625],[118.304146757813,29.9444118476562],[118.343472929688,29.9129201484375],[118.341099882813,29.893843],[118.344156523438,29.8692971015626],[118.322896757813,29.8522731757813],[118.343389921875,29.8371071601563],[118.375206328125,29.8410646796876],[118.409117460938,29.8267751289062],[118.392896757813,29.7882888007813],[118.377345,29.783843],[118.35142703125,29.7797585273438],[118.340601835938,29.7640749335938],[118.298892851563,29.7815920234375],[118.267345,29.773843],[118.275870390625,29.7941457343751],[118.226480742188,29.8282497382813],[118.208472929688,29.8984206367188],[118.164508085938,29.9097048164063],[118.15326296875,29.9397585273438],[118.135513945313,29.9520119453125],[118.12326296875,29.9697585273438],[118.09982546875,29.9859401679688],[118.107345,30.003843],[118.13298953125,30.00819846875],[118.159400664063,30.0241335273438],[118.178424101563,29.99948753125],[118.20298953125,30.0281984687501],[118.216221953125,30.0757204414063],[118.252906523438,30.0811428046875],[118.297345,30.073843],[118.302965117188,30.0288454414063],[118.301724882813,30.0188430000001]],[[118.354346953125,29.817895734375],[118.377345,29.813843],[118.371910429688,29.8265407539063],[118.354346953125,29.817895734375]]]]}},{"type":"Feature","properties":{"name":"祁门县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.60005984375,30.1319948554688],[117.622862578125,30.1064748359375],[117.657345,30.113843],[117.647662382813,30.0744313789063],[117.677345,30.0810842109376],[117.692345,30.0777223945312],[117.735377226563,30.087368390625],[117.724683867188,30.0396584296875],[117.777345,30.0261452460938],[117.769381132813,29.9906276679688],[117.787345,29.9866017890625],[117.803116484375,29.9901369453125],[117.81142703125,29.9679274726563],[117.857511015625,29.9368947578125],[117.847750273438,29.8933473945313],[117.874459257813,29.8759548164062],[117.91533328125,29.8851174140626],[117.924503203125,29.8442116523438],[117.91326296875,29.8279274726563],[117.89326296875,29.8141188789063],[117.903648710938,29.7935305000001],[117.932623320313,29.8000270820313],[117.947345,29.7938430000001],[117.939366484375,29.7627590156251],[117.903746367188,29.785952375],[117.892418242188,29.7556716132813],[117.860714140625,29.7097585273438],[117.82142703125,29.7179274726563],[117.790714140625,29.7379274726563],[117.745211210938,29.7252346015626],[117.728370390625,29.7008425117188],[117.69142703125,29.6797585273438],[117.68326296875,29.6679274726563],[117.652525664063,29.6467067695313],[117.647345,29.613843],[117.631519804688,29.6096681953125],[117.596007109375,29.5871218085938],[117.51435671875,29.603423078125],[117.525186796875,29.6582228828126],[117.507554960938,29.6708596015625],[117.474205351563,29.6642702460938],[117.451871367188,29.6954347968751],[117.443170195313,29.7596681953125],[117.425694609375,29.7721926093751],[117.4072278125,29.7979567695313],[117.417095976563,29.8478957343751],[117.394674101563,29.8580178046876],[117.360928984375,29.8109377265625],[117.331724882813,29.851684796875],[117.294918242188,29.8444118476563],[117.280518828125,29.8243190742188],[117.2382434375,29.8416921210938],[117.256060820313,29.8850490546875],[117.250543242188,29.9129689765625],[117.211519804688,29.9280178046875],[117.207345,29.933843],[117.1976575,29.9782497382813],[117.267345,29.993843],[117.382628203125,30.0185622382813],[117.393101835938,30.0302883125],[117.441588164063,30.0273976875001],[117.453101835938,30.0402883125],[117.499542265625,30.0375197578126],[117.533233671875,30.0589479804688],[117.530797148438,30.099829328125],[117.5626965625,30.0979274726563],[117.561490507813,30.1181545234375],[117.60005984375,30.1319948554688]]]]}},{"type":"Feature","properties":{"name":"屯溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.377345,29.783843],[118.395015898438,29.7478346992188],[118.382345,29.7247219062501],[118.371939726563,29.7437087226563],[118.363804960938,29.7173830390625],[118.3341028125,29.7011013007812],[118.353804960938,29.6903029609375],[118.357345,29.6838430000001],[118.351519804688,29.6796681953125],[118.343170195313,29.6680178046876],[118.324742460938,29.6596681953125],[118.313053007813,29.6899709296876],[118.302345,29.6878542304688],[118.280709257813,29.6921315742188],[118.285347929688,29.6686354804688],[118.253721953125,29.6596681953125],[118.242095976563,29.7037331367188],[118.195543242188,29.694536359375],[118.183170195313,29.7359889960937],[118.25500125,29.7503908515626],[118.2512121875,29.7695851875],[118.267345,29.773843],[118.298892851563,29.7815920234375],[118.340601835938,29.7640749335938],[118.35142703125,29.7797585273438],[118.377345,29.783843]]]]}},{"type":"Feature","properties":{"name":"休宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.2512121875,29.7695851875],[118.25500125,29.7503908515626],[118.183170195313,29.7359889960937],[118.195543242188,29.694536359375],[118.242095976563,29.7037331367188],[118.253721953125,29.6596681953125],[118.285347929688,29.6686354804688],[118.280709257813,29.6921315742188],[118.302345,29.6878542304688],[118.313053007813,29.6899709296876],[118.324742460938,29.6596681953125],[118.343170195313,29.6680178046876],[118.351519804688,29.6796681953125],[118.357345,29.6838430000001],[118.363170195313,29.6796681953125],[118.371519804688,29.6680178046876],[118.393170195313,29.6596681953125],[118.407198515625,29.58968284375],[118.433170195313,29.5796681953126],[118.437345,29.513843],[118.422628203125,29.5081862617187],[118.3859778125,29.5127443671876],[118.337345,29.473843],[118.322891875,29.4996633125],[118.300494414063,29.4963527656251],[118.310987578125,29.4253493476563],[118.282345,29.4295827460938],[118.272345,29.4281032539063],[118.262345,29.4295827460938],[118.252345,29.4281032539063],[118.242345,29.4295827460938],[118.216549101563,29.4257692695313],[118.1986340625,29.4025563789062],[118.187345,29.393843],[118.18099734375,29.4017702460938],[118.141793242188,29.4182888007813],[118.120709257813,29.4306838203126],[118.123590117188,29.4538430000001],[118.121676054688,29.4692018867188],[118.138931914063,29.4985500312501],[118.101793242188,29.5282888007813],[118.092799101563,29.5395217109375],[118.082345,29.5382204414063],[118.062135039063,29.5407350898438],[118.018370390625,29.5727028632813],[117.977345,29.5676003242188],[117.95373171875,29.5705373359376],[117.932706328125,29.5581764960938],[117.922061796875,29.5594997382813],[117.887345,29.5461550117188],[117.852628203125,29.5594997382813],[117.841983671875,29.5581764960938],[117.811099882813,29.5763307929687],[117.712261992188,29.5481081367188],[117.697345,29.553843],[117.682374296875,29.5614162421875],[117.673985625,29.590483625],[117.660704375,29.597202375],[117.653985625,29.610483625],[117.647345,29.613843],[117.652525664063,29.6467067695313],[117.68326296875,29.6679274726563],[117.69142703125,29.6797585273438],[117.728370390625,29.7008425117188],[117.745211210938,29.7252346015626],[117.790714140625,29.7379274726563],[117.82142703125,29.7179274726563],[117.860714140625,29.7097585273438],[117.892418242188,29.7556716132813],[117.903746367188,29.785952375],[117.939366484375,29.7627590156251],[117.947345,29.7938430000001],[117.97142703125,29.8097585273437],[118.007886992188,29.8191139960937],[118.001221953125,29.848843],[118.003468046875,29.858843],[118.001041289063,29.8696584296876],[118.049722929688,29.882153546875],[118.060191679688,29.928843],[118.047193632813,29.9868312812501],[118.069176054688,30.0020119453125],[118.08142703125,30.0197585273438],[118.097345,30.0238430000001],[118.107345,30.003843],[118.09982546875,29.9859401679688],[118.12326296875,29.9697585273438],[118.135513945313,29.9520119453125],[118.15326296875,29.9397585273438],[118.164508085938,29.9097048164063],[118.208472929688,29.8984206367188],[118.226480742188,29.8282497382813],[118.275870390625,29.7941457343751],[118.267345,29.773843],[118.2512121875,29.7695851875]]]]}},{"type":"Feature","properties":{"name":"歙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.371910429688,29.8265407539063],[118.377345,29.813843],[118.354346953125,29.817895734375],[118.371910429688,29.8265407539063]]],[[[118.87170046875,30.0781984687501],[118.88298953125,30.05948753125],[118.897345,30.0238430000001],[118.8877746875,30.0169826484375],[118.893331328125,29.9888430000001],[118.8853528125,29.9484548164063],[118.841519804688,29.9396681953125],[118.831842070313,29.89140159375],[118.795694609375,29.865493390625],[118.781724882813,29.846001203125],[118.762345,29.8498317695313],[118.749678984375,29.8473293281251],[118.753453398438,29.8282228828125],[118.741519804688,29.8196681953125],[118.730382109375,29.7907888007813],[118.743389921875,29.7591310859376],[118.738912382813,29.7364675117188],[118.68404421875,29.69714378125],[118.646685820313,29.6450197578125],[118.610054960938,29.65226096875],[118.561470976563,29.6375002265626],[118.533170195313,29.5980178046876],[118.494742460938,29.5757375312501],[118.483170195313,29.5180178046876],[118.437345,29.513843],[118.433170195313,29.5796681953126],[118.407198515625,29.58968284375],[118.393170195313,29.6596681953125],[118.371519804688,29.6680178046876],[118.363170195313,29.6796681953125],[118.357345,29.6838430000001],[118.353804960938,29.6903029609375],[118.3341028125,29.7011013007812],[118.363804960938,29.7173830390625],[118.371939726563,29.7437087226563],[118.382345,29.7247219062501],[118.395015898438,29.7478346992188],[118.377345,29.783843],[118.392896757813,29.7882888007813],[118.409117460938,29.8267751289062],[118.375206328125,29.8410646796876],[118.343389921875,29.8371071601563],[118.322896757813,29.8522731757813],[118.344156523438,29.8692971015626],[118.341099882813,29.893843],[118.343472929688,29.9129201484375],[118.304146757813,29.9444118476562],[118.26400515625,30.01050315625],[118.303370390625,30.0056056953126],[118.301724882813,30.0188430000001],[118.302965117188,30.0288454414063],[118.297345,30.073843],[118.3074621875,30.0938430000001],[118.347345,30.113843],[118.357838164063,30.1002468085938],[118.372345,30.0981032539063],[118.42564578125,30.105981671875],[118.471954375,30.0780471015626],[118.48463015625,30.0799196601562],[118.505513945313,30.045298078125],[118.49845828125,29.9975295234375],[118.512935820313,29.9996706367187],[118.526221953125,29.9519655585938],[118.5527746875,29.9480397773438],[118.58170046875,29.9694875312501],[118.610484648438,29.9812673164063],[118.613082304688,29.998843],[118.610318632813,30.0175539375],[118.675616484375,30.0286452460938],[118.705914335938,30.0678981757813],[118.742345,30.0898757148438],[118.76447390625,30.076528546875],[118.79298953125,30.08819846875],[118.83802859375,30.1153688789063],[118.867345,30.1038430000001],[118.87170046875,30.0781984687501]]]]}},{"type":"Feature","properties":{"name":"黟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.853038359375,30.1687795234375],[117.8394153125,30.1210720039063],[117.87447390625,30.1167116523438],[117.868287382813,30.1664723945313],[117.902515898438,30.1707302070313],[117.911793242188,30.1382888007813],[117.93187625,30.1041237617188],[117.943043242188,30.0524977851563],[117.979947539063,30.0741921210938],[118.022345,30.0794655585938],[118.037345,30.0776003242188],[118.080440703125,30.0829592109375],[118.097345,30.0238430000001],[118.08142703125,30.0197585273438],[118.069176054688,30.0020119453125],[118.047193632813,29.9868312812501],[118.060191679688,29.928843],[118.049722929688,29.882153546875],[118.001041289063,29.8696584296876],[118.003468046875,29.858843],[118.001221953125,29.848843],[118.007886992188,29.8191139960937],[117.97142703125,29.8097585273437],[117.947345,29.7938430000001],[117.932623320313,29.8000270820313],[117.903648710938,29.7935305000001],[117.89326296875,29.8141188789063],[117.91326296875,29.8279274726563],[117.924503203125,29.8442116523438],[117.91533328125,29.8851174140626],[117.874459257813,29.8759548164062],[117.847750273438,29.8933473945313],[117.857511015625,29.9368947578125],[117.81142703125,29.9679274726563],[117.803116484375,29.9901369453125],[117.787345,29.9866017890625],[117.769381132813,29.9906276679688],[117.777345,30.0261452460938],[117.724683867188,30.0396584296875],[117.735377226563,30.087368390625],[117.692345,30.0777223945312],[117.677345,30.0810842109376],[117.647662382813,30.0744313789063],[117.657345,30.113843],[117.710299101563,30.1533693671875],[117.757345,30.1603200507813],[117.772735625,30.1580471015625],[117.818990507813,30.1859474921875],[117.847345,30.193843],[117.853038359375,30.1687795234375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"琅琊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.253922148438,32.3460353828125],[118.257345,32.333843],[118.245152617188,32.3372658515625],[118.253922148438,32.3460353828125]]],[[[118.317345,32.323843],[118.320767851563,32.3116506171875],[118.329537382813,32.3204201484376],[118.296334257813,32.377290265625],[118.329659453125,32.3909279609376],[118.347345,32.413843],[118.36326296875,32.4097585273438],[118.387345,32.373843],[118.3788684375,32.3517922187501],[118.383013945313,32.3184841132813],[118.371676054688,32.2992018867187],[118.373023710938,32.2883962226563],[118.328516875,32.2328151679688],[118.290479765625,32.248843],[118.294566679688,32.2817043281251],[118.282896757813,32.3093971992188],[118.262896757813,32.3254128242188],[118.272310820313,32.3507936835937],[118.281793242188,32.3282888007813],[118.317345,32.323843]]]]}},{"type":"Feature","properties":{"name":"定远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.877345,32.243843],[117.889537382813,32.2404201484375],[117.880767851563,32.2316506171875],[117.877345,32.243843]]],[[[117.377345,32.393843],[117.371783476563,32.380844953125],[117.354620390625,32.3898366523438],[117.377345,32.393843]]],[[[117.937345,32.673843],[117.937345,32.683843],[117.950152617188,32.678843],[117.937345,32.673843]]],[[[117.937345,32.673843],[117.943389921875,32.6591310859376],[117.939678984375,32.640356671875],[117.952345,32.6378542304688],[117.962779570313,32.63991721875],[117.990694609375,32.6221926093751],[118.074620390625,32.6053664375001],[118.071358671875,32.588843],[118.073331328125,32.5788430000001],[118.069761992188,32.5607839179688],[118.08341921875,32.5392751289063],[118.079014921875,32.5169826484375],[118.103170195313,32.4996681953125],[118.107345,32.483843],[118.10326296875,32.4779274726563],[118.04142703125,32.4697585273438],[118.03255984375,32.4243483710937],[117.993682890625,32.397505109375],[117.973013945313,32.3675710273437],[117.95771609375,32.371001203125],[117.93298953125,32.3539333320313],[117.913531523438,32.3019216132813],[117.88142703125,32.2797585273438],[117.877345,32.243843],[117.84170046875,32.22948753125],[117.837345,32.223843],[117.81990359375,32.23069846875],[117.793922148438,32.2268605781251],[117.762896757813,32.2455739570313],[117.711832304688,32.2380275703125],[117.69490359375,32.2599611640625],[117.677345,32.2573659492188],[117.647515898438,32.2617726875001],[117.583511992188,32.2366115546875],[117.55298953125,32.21819846875],[117.518780546875,32.2041970039063],[117.477838164063,32.2102468085938],[117.46298953125,32.22948753125],[117.420494414063,32.2413210273438],[117.423170195313,32.2594362617188],[117.407345,32.2638430000001],[117.394918242188,32.288843],[117.420548125,32.3404055],[117.433985625,32.347202375],[117.440704375,32.3671096015625],[117.394298125,32.3904201484375],[117.377345,32.393843],[117.382984648438,32.4186818671876],[117.380748320313,32.4366799140626],[117.398736601563,32.4834792304688],[117.335889921875,32.4465358710938],[117.302345,32.450708234375],[117.282061796875,32.4481862617188],[117.247735625,32.4613796210938],[117.220079375,32.4579396796876],[117.19978640625,32.4832814765626],[117.203590117188,32.513843],[117.201099882813,32.5338430000001],[117.203941679688,32.5566799140625],[117.191793242188,32.5882888007812],[117.187345,32.6138430000001],[117.231549101563,32.6304518867188],[117.252345,32.6283327460938],[117.262345,32.6293532539063],[117.278082304688,32.62774925],[117.352808867188,32.6583815742188],[117.362178984375,32.6696633125],[117.392345,32.652387921875],[117.422398710938,32.6695998359375],[117.451998320313,32.6482985664063],[117.536490507813,32.65690940625],[117.552178984375,32.6380226875],[117.580811796875,32.6544191718751],[117.658819609375,32.621157453125],[117.703433867188,32.6831471992188],[117.700865507813,32.7083815742188],[117.732808867188,32.6993044257813],[117.750343046875,32.639555890625],[117.762345,32.6383327460938],[117.772345,32.6393532539062],[117.799644804688,32.6365700507813],[117.836627226563,32.6577516914062],[117.857345,32.6598610664063],[117.87255984375,32.6583107734375],[117.911881132813,32.6693044257813],[117.937345,32.673843]]]]}},{"type":"Feature","properties":{"name":"凤阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.772281523438,33.049458234375],[117.799620390625,33.034204328125],[117.891197539063,33.0415627265625],[117.877345,33.003843],[117.85170046875,32.99948753125],[117.830113554688,32.9864650703125],[117.848912382813,32.8886721015625],[117.90298953125,32.87948753125],[117.914019804688,32.8651930976563],[117.90338015625,32.7931764960938],[117.9433996875,32.7692409492188],[117.93170046875,32.73948753125],[117.92298953125,32.6949245429687],[117.937345,32.683843],[117.937345,32.673843],[117.911881132813,32.6693044257813],[117.87255984375,32.6583107734375],[117.857345,32.6598610664063],[117.836627226563,32.6577516914062],[117.799644804688,32.6365700507813],[117.772345,32.6393532539062],[117.762345,32.6383327460938],[117.750343046875,32.639555890625],[117.732808867188,32.6993044257813],[117.700865507813,32.7083815742188],[117.703433867188,32.6831471992188],[117.658819609375,32.621157453125],[117.580811796875,32.6544191718751],[117.552178984375,32.6380226875],[117.536490507813,32.65690940625],[117.451998320313,32.6482985664063],[117.422398710938,32.6695998359375],[117.392345,32.652387921875],[117.362178984375,32.6696633125],[117.352808867188,32.6583815742188],[117.278082304688,32.62774925],[117.262345,32.6293532539063],[117.252345,32.6283327460938],[117.231549101563,32.6304518867188],[117.187345,32.6138430000001],[117.15826296875,32.68683128125],[117.17298953125,32.6981984687501],[117.197345,32.733843],[117.22298953125,32.76819846875],[117.24170046875,32.7994875312501],[117.247345,32.8038430000001],[117.277345,32.8038430000001],[117.277345,32.823843],[117.297345,32.823843],[117.312105742188,32.8303151679688],[117.322584257813,32.8273708320313],[117.359918242188,32.8437404609376],[117.408531523438,32.8300783515626],[117.417345,32.8438430000001],[117.473531523438,32.8476564765625],[117.484971953125,32.8662184882813],[117.506763945313,32.8796486640626],[117.499229765625,32.903843],[117.510347929688,32.9395314765625],[117.523531523438,32.9476564765625],[117.527345,32.983843],[117.599678984375,32.9218703437501],[117.665113554688,32.9166115546875],[117.70197390625,32.99921409375],[117.73271609375,33.0184719062501],[117.772281523438,33.049458234375]]]]}},{"type":"Feature","properties":{"name":"来安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.687345,32.733843],[118.687345,32.7238430000001],[118.697345,32.7238430000001],[118.703072539063,32.7086013007812],[118.690855742188,32.6984523750001],[118.693995390625,32.6676711250001],[118.6632434375,32.6421291328125],[118.692896757813,32.6292653632813],[118.690855742188,32.6092336250001],[118.697345,32.603843],[118.691461210938,32.5974904609376],[118.652178984375,32.5990480781251],[118.632408476563,32.5885866523438],[118.58505984375,32.6009914375],[118.55283328125,32.5711305976563],[118.602550078125,32.5390236640625],[118.602144804688,32.528843],[118.6029309375,32.5090212226563],[118.582535429688,32.490122296875],[118.592154570313,32.4786525703125],[118.683736601563,32.4689064765625],[118.682144804688,32.4288430000001],[118.682545195313,32.4188430000001],[118.681373320313,32.3893752265625],[118.692550078125,32.3790212226563],[118.691373320313,32.3493752265625],[118.702808867188,32.3387819648438],[118.682154570313,32.3290334296875],[118.672535429688,32.3186525703126],[118.6617590625,32.3086647773438],[118.662545195313,32.288843],[118.661783476563,32.2697072578125],[118.667345,32.253843],[118.658199492188,32.2218605781251],[118.622896757813,32.2082888007812],[118.507345,32.1938430000001],[118.502857695313,32.1996584296876],[118.492345,32.1981032539063],[118.446099882813,32.2049391914063],[118.410494414063,32.2313356757813],[118.413160429688,32.2493556953125],[118.383311796875,32.2723952460938],[118.412345,32.2681032539063],[118.430191679688,32.2707424140625],[118.420206328125,32.3383303046876],[118.433160429688,32.3483303046875],[118.43119265625,32.3616335273438],[118.387345,32.373843],[118.36326296875,32.4097585273438],[118.347345,32.413843],[118.342159453125,32.4319802070313],[118.31361453125,32.4548390937501],[118.347335234375,32.4818434882813],[118.331534453125,32.5087282539063],[118.343004179688,32.538559796875],[118.340533476563,32.5583888984375],[118.358453398438,32.5727370429688],[118.367345,32.603843],[118.392725859375,32.5980763984375],[118.414635039063,32.6254347968751],[118.411666289063,32.6492971015626],[118.431334257813,32.6650441718751],[118.411612578125,32.698598859375],[118.417345,32.7238430000001],[118.44232546875,32.739887921875],[118.473761015625,32.7209255195313],[118.542345,32.731059796875],[118.598761015625,32.7227223945313],[118.61634890625,32.7455055976563],[118.687345,32.733843]]]]}},{"type":"Feature","properties":{"name":"明光市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.049537382813,33.1304201484376],[118.040767851563,33.1216506171875],[118.037345,33.133843],[118.049537382813,33.1304201484376]]],[[[118.2325403125,33.0521120429688],[118.244273710938,32.983051984375],[118.30170046875,32.9670607734375],[118.283219023438,32.9482643867188],[118.22298953125,32.9314919257813],[118.24170046875,32.8581984687501],[118.298057890625,32.842505109375],[118.291226835938,32.7962844062501],[118.31298953125,32.77948753125],[118.322857695313,32.7667018867188],[118.361085234375,32.7723513007813],[118.363824492188,32.753843],[118.359478789063,32.724438703125],[118.40263796875,32.71806175],[118.417345,32.7238430000001],[118.411612578125,32.698598859375],[118.431334257813,32.6650441718751],[118.411666289063,32.6492971015626],[118.414635039063,32.6254347968751],[118.392725859375,32.5980763984375],[118.367345,32.603843],[118.35220828125,32.5978932929688],[118.332110625,32.6100173164063],[118.298824492188,32.5668947578125],[118.28095828125,32.5232350898438],[118.283463164063,32.50628440625],[118.260206328125,32.4883303046876],[118.263170195313,32.4682717109375],[118.216143828125,32.4494875312501],[118.180767851563,32.4708254218751],[118.16205203125,32.4680617500001],[118.13298953125,32.47948753125],[118.107345,32.483843],[118.103170195313,32.4996681953125],[118.079014921875,32.5169826484375],[118.08341921875,32.5392751289063],[118.069761992188,32.5607839179688],[118.073331328125,32.5788430000001],[118.071358671875,32.588843],[118.074620390625,32.6053664375001],[117.990694609375,32.6221926093751],[117.962779570313,32.63991721875],[117.952345,32.6378542304688],[117.939678984375,32.640356671875],[117.943389921875,32.6591310859376],[117.937345,32.673843],[117.950152617188,32.678843],[117.937345,32.683843],[117.92298953125,32.6949245429687],[117.93170046875,32.73948753125],[117.9433996875,32.7692409492188],[117.90338015625,32.7931764960938],[117.914019804688,32.8651930976563],[117.90298953125,32.87948753125],[117.848912382813,32.8886721015625],[117.830113554688,32.9864650703125],[117.85170046875,32.99948753125],[117.877345,33.003843],[117.903756132813,32.9870388007813],[117.94373171875,33.0105373359375],[117.967345,33.0076003242188],[117.982345,33.0094655585938],[118.010382109375,33.0059767890626],[118.031793242188,33.025649640625],[118.000479765625,33.038843],[118.003795195313,33.0655031562501],[118.064244414063,33.0785817695313],[118.061724882813,33.0988442207032],[118.067345,33.1438430000001],[118.10142703125,33.1597585273438],[118.154678984375,33.1734242988281],[118.147750273438,33.2043386054688],[118.175211210938,33.2222206855469],[118.205094023438,33.2015895820313],[118.217345,33.1838430000001],[118.21298953125,33.0981996894531],[118.200865507813,33.088843],[118.213160429688,33.0793556953126],[118.211529570313,33.0683303046876],[118.2325403125,33.0521120429688]]]]}},{"type":"Feature","properties":{"name":"南谯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.317345,32.323843],[118.329537382813,32.3204201484376],[118.320767851563,32.3116506171875],[118.317345,32.323843]]],[[[118.317345,32.323843],[118.281793242188,32.3282888007813],[118.272310820313,32.3507936835937],[118.262896757813,32.3254128242188],[118.282896757813,32.3093971992188],[118.294566679688,32.2817043281251],[118.290479765625,32.248843],[118.328516875,32.2328151679688],[118.373023710938,32.2883962226563],[118.371676054688,32.2992018867187],[118.383013945313,32.3184841132813],[118.3788684375,32.3517922187501],[118.387345,32.373843],[118.43119265625,32.3616335273438],[118.433160429688,32.3483303046875],[118.420206328125,32.3383303046876],[118.430191679688,32.2707424140625],[118.412345,32.2681032539063],[118.383311796875,32.2723952460938],[118.413160429688,32.2493556953125],[118.410494414063,32.2313356757813],[118.446099882813,32.2049391914063],[118.492345,32.1981032539063],[118.502857695313,32.1996584296876],[118.507345,32.1938430000001],[118.503531523438,32.1876564765625],[118.487926054688,32.1780373359375],[118.500382109375,32.1380373359375],[118.471158476563,32.1200295234375],[118.463531523438,32.1076564765625],[118.417345,32.0838430000001],[118.381519804688,32.1380178046876],[118.373170195313,32.1596681953125],[118.36127078125,32.1784108710938],[118.363482695313,32.18960471875],[118.287594023438,32.2048195625001],[118.248673125,32.1971291328125],[118.205162382813,32.2247512031251],[118.189244414063,32.2025392890625],[118.152345,32.2098317695313],[118.138673125,32.2071291328126],[118.102779570313,32.22991721875],[118.077345,32.2248903632813],[118.052345,32.2298317695313],[118.04216921875,32.2278200507813],[117.986754179688,32.244653546875],[117.946568632813,32.23671409375],[117.930328398438,32.2140529609375],[117.934796171875,32.1914430976563],[117.892261992188,32.1998464179688],[117.867345,32.1938430000001],[117.867345,32.203843],[117.857345,32.203843],[117.85062625,32.21712425],[117.837345,32.223843],[117.84170046875,32.22948753125],[117.877345,32.243843],[117.880767851563,32.2316506171875],[117.889537382813,32.2404201484375],[117.877345,32.243843],[117.88142703125,32.2797585273438],[117.913531523438,32.3019216132813],[117.93298953125,32.3539333320313],[117.95771609375,32.371001203125],[117.973013945313,32.3675710273437],[117.993682890625,32.397505109375],[118.03255984375,32.4243483710937],[118.04142703125,32.4697585273438],[118.10326296875,32.4779274726563],[118.107345,32.483843],[118.13298953125,32.47948753125],[118.16205203125,32.4680617500001],[118.180767851563,32.4708254218751],[118.216143828125,32.4494875312501],[118.263170195313,32.4682717109375],[118.260206328125,32.4883303046876],[118.283463164063,32.50628440625],[118.28095828125,32.5232350898438],[118.298824492188,32.5668947578125],[118.332110625,32.6100173164063],[118.35220828125,32.5978932929688],[118.367345,32.603843],[118.358453398438,32.5727370429688],[118.340533476563,32.5583888984375],[118.343004179688,32.538559796875],[118.331534453125,32.5087282539063],[118.347335234375,32.4818434882813],[118.31361453125,32.4548390937501],[118.342159453125,32.4319802070313],[118.347345,32.413843],[118.329659453125,32.3909279609376],[118.296334257813,32.377290265625],[118.317345,32.323843]],[[118.245152617188,32.3372658515625],[118.257345,32.333843],[118.253922148438,32.3460353828125],[118.245152617188,32.3372658515625]]]]}},{"type":"Feature","properties":{"name":"全椒县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.867345,32.1938430000001],[117.857345,32.1938430000001],[117.857345,32.203843],[117.867345,32.203843],[117.867345,32.1938430000001]]],[[[117.867345,32.1938430000001],[117.892261992188,32.1998464179688],[117.934796171875,32.1914430976563],[117.930328398438,32.2140529609375],[117.946568632813,32.23671409375],[117.986754179688,32.244653546875],[118.04216921875,32.2278200507813],[118.052345,32.2298317695313],[118.077345,32.2248903632813],[118.102779570313,32.22991721875],[118.138673125,32.2071291328126],[118.152345,32.2098317695313],[118.189244414063,32.2025392890625],[118.205162382813,32.2247512031251],[118.248673125,32.1971291328125],[118.287594023438,32.2048195625001],[118.363482695313,32.18960471875],[118.36127078125,32.1784108710938],[118.373170195313,32.1596681953125],[118.381519804688,32.1380178046876],[118.417345,32.0838430000001],[118.390704375,32.080483625],[118.377345,32.053843],[118.3248059375,32.0256471992188],[118.298453398438,31.9927370429688],[118.238858671875,31.945014875],[118.201793242188,31.9293971992188],[118.172896757813,31.9082888007812],[118.111793242188,31.8993971992188],[118.082252226563,31.8820314765625],[118.077345,31.8538430000001],[118.006285429688,31.871743390625],[117.96326296875,31.8997585273438],[117.947345,31.903843],[117.93701296875,31.9188088203126],[117.86142703125,31.9379274726563],[117.85326296875,31.9597585273438],[117.84142703125,31.9679274726563],[117.817345,32.0038430000001],[117.820704375,32.010483625],[117.835269804688,32.0178517890625],[117.82990359375,32.028843],[117.837203398438,32.043794171875],[117.852735625,32.0362111640625],[117.876627226563,32.0551857734375],[117.846636992188,32.1153639960938],[117.863985625,32.1372023750001],[117.867345,32.1938430000001]]]]}},{"type":"Feature","properties":{"name":"天长市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.697345,32.7238430000001],[118.687345,32.7238430000001],[118.687345,32.733843],[118.697345,32.733843],[118.697345,32.7238430000001]]],[[[118.697345,32.7238430000001],[118.745548125,32.7324318671875],[118.733756132813,32.8480959296875],[118.802808867188,32.8583815742188],[118.81189578125,32.9193971992188],[118.84158328125,32.916372296875],[118.8428528125,32.928843],[118.84107546875,32.9462966132813],[118.851954375,32.9593923164063],[118.862515898438,32.9583156562501],[118.887345,32.963843],[118.893526640625,32.9397585273438],[118.95326296875,32.9479274726563],[119.008443632813,32.9650319648438],[119.023726835938,32.9286452460938],[119.0080090625,32.9045095039063],[119.033053007813,32.910122296875],[119.054346953125,32.872817609375],[119.07326296875,32.8597585273438],[119.09500125,32.8282741523437],[119.177345,32.823843],[119.19845828125,32.7701320625],[119.210094023438,32.69140159375],[119.180865507813,32.668843],[119.210557890625,32.645923078125],[119.213082304688,32.628843],[119.211529570313,32.6183303046875],[119.22298953125,32.60948753125],[119.227345,32.603843],[119.21099734375,32.5916823554688],[119.2147278125,32.5699880195313],[119.1820715625,32.590200421875],[119.173077421875,32.5781081367188],[119.15099734375,32.5616823554688],[119.154068632813,32.5438430000001],[119.147955351563,32.5083425117188],[119.091612578125,32.4695778632813],[119.080440703125,32.4545607734376],[119.057345,32.4638430000001],[119.052896757813,32.4893971992188],[119.041793242188,32.4982888007813],[119.030079375,32.512915265625],[118.973702421875,32.505903546875],[118.930045195313,32.5604225898437],[118.890284453125,32.5554763007813],[118.903170195313,32.5889943671875],[118.896920195313,32.5982888007813],[118.862896757813,32.5782888007813],[118.825538359375,32.5693971992188],[118.81267703125,32.5999172187501],[118.787345,32.585024640625],[118.759210234375,32.6015627265625],[118.722799101563,32.5970339179688],[118.707345,32.6163307929688],[118.697345,32.603843],[118.690855742188,32.6092336250001],[118.692896757813,32.6292653632813],[118.6632434375,32.6421291328125],[118.693995390625,32.6676711250001],[118.690855742188,32.6984523750001],[118.703072539063,32.7086013007812],[118.697345,32.7238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阜南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,32.413843],[115.561783476563,32.400844953125],[115.544620390625,32.4098366523438],[115.567345,32.413843]]],[[[115.947345,32.8038430000001],[115.952345,32.8166506171875],[115.957345,32.8038430000001],[115.947345,32.8038430000001]]],[[[115.457345,32.863843],[115.447345,32.863843],[115.447345,32.8738430000001],[115.457345,32.8738430000001],[115.457345,32.863843]]],[[[115.947345,32.8038430000001],[115.9426184375,32.7785280585937],[115.917291289063,32.7800392890625],[115.943175078125,32.7178005195313],[115.9408996875,32.6796022773438],[115.95283328125,32.66894065625],[115.923189726563,32.614389875],[115.957345,32.603843],[115.940787382813,32.5798586250001],[115.917345,32.5738430000001],[115.885870390625,32.5870632148438],[115.877345,32.553843],[115.867345,32.553843],[115.867345,32.5438430000001],[115.840704375,32.530483625],[115.837345,32.513843],[115.837345,32.5038430000001],[115.816671171875,32.4977761054688],[115.782066679688,32.4779567695313],[115.769058867188,32.5079470039063],[115.749610625,32.4845339179688],[115.692735625,32.4903322578125],[115.682808867188,32.4783815742188],[115.671793242188,32.469233625],[115.673873320313,32.448843],[115.670572539063,32.4164748359375],[115.642022734375,32.4193849921876],[115.622345,32.4081154609375],[115.602808867188,32.4193044257813],[115.587345,32.4238430000001],[115.577345,32.4238430000001],[115.577345,32.413843],[115.567345,32.413843],[115.562896757813,32.4193971992188],[115.541793242188,32.4282888007813],[115.532896757813,32.4393971992188],[115.514146757813,32.4544118476563],[115.475289335938,32.5183888984375],[115.448785429688,32.529555890625],[115.432896757813,32.5493971992188],[115.411793242188,32.5582888007813],[115.402799101563,32.5796340156251],[115.302803984375,32.55589378125],[115.291632109375,32.5824025703125],[115.277345,32.593843],[115.263765898438,32.6047170234375],[115.305142851563,32.6613600898438],[115.301724882813,32.6888430000001],[115.303912382813,32.7064357734375],[115.351793242188,32.6782888007813],[115.4416028125,32.6652175117188],[115.467047148438,32.7255959296875],[115.50607546875,32.7568508125],[115.488272734375,32.771108625],[115.494381132813,32.8202028632813],[115.462530546875,32.8457057929688],[115.457345,32.863843],[115.47298953125,32.86819846875],[115.495889921875,32.8820143867188],[115.522916289063,32.8780202460938],[115.536334257813,32.9108083320313],[115.60298953125,32.89948753125],[115.61170046875,32.87819846875],[115.623160429688,32.8693556953125],[115.621519804688,32.8582497382813],[115.6686340625,32.8451296210938],[115.693150664063,32.8133644843751],[115.745894804688,32.798676984375],[115.762857695313,32.7767018867188],[115.818761015625,32.7849636054688],[115.83687625,32.7614919257813],[115.853140898438,32.788452375],[115.848834257813,32.8175856757812],[115.862486601563,32.8196022773438],[115.912203398438,32.8080837226563],[115.92990359375,32.8106984687501],[115.947345,32.8038430000001]]]]}},{"type":"Feature","properties":{"name":"界首市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.399957304688,33.4587685371094],[115.435611601563,33.4384169746094],[115.431217070313,33.4188014960938],[115.4458215625,33.359341046875],[115.440103789063,33.3338430000001],[115.443468046875,33.318843],[115.441221953125,33.308843],[115.443468046875,33.2988430000001],[115.441221953125,33.288843],[115.445235625,33.2709572578125],[115.430963164063,33.2490407539063],[115.447110625,33.2105873847656],[115.419215117188,33.1913259101563],[115.433565703125,33.1692897773438],[115.429381132813,33.1506276679688],[115.442345,33.1477223945313],[115.45697390625,33.1510024238282],[115.47326296875,33.1397585273438],[115.483472929688,33.1124697089844],[115.52326296875,33.0897585273438],[115.527345,33.083843],[115.518238554688,33.0621608710938],[115.523472929688,33.0388014960938],[115.517345,33.013843],[115.500181914063,33.0204396796875],[115.477345,33.0176003242188],[115.457345,33.0200856757813],[115.442345,33.0182204414063],[115.422799101563,33.0206520820313],[115.412345,33.0076003242188],[115.402896757813,33.0193971992188],[115.381793242188,33.0282888007813],[115.305269804688,33.0739479804688],[115.284610625,33.0997463203125],[115.272345,33.0982216621094],[115.262345,33.0994643378907],[115.251846953125,33.09815940625],[115.237345,33.133843],[115.294288359375,33.1396511054688],[115.289620390625,33.1977419257813],[115.3227746875,33.2185073066407],[115.321944609375,33.2288430000001],[115.322745390625,33.238843],[115.321920195313,33.2491213203125],[115.334176054688,33.2710829902344],[115.331842070313,33.3000881171876],[115.3526965625,33.2984133125],[115.36197390625,33.3226247382813],[115.335377226563,33.3702919746094],[115.31201296875,33.3684145332032],[115.30271609375,33.3812404609376],[115.3227746875,33.3985195136719],[115.321734648438,33.4114455390626],[115.307345,33.423843],[115.311832304688,33.4523207832032],[115.3466809375,33.4445082832032],[115.341085234375,33.4694557929688],[115.354986601563,33.5236220527344],[115.397345,33.503843],[115.417886992188,33.4896584296876],[115.38326296875,33.4767018867188],[115.399957304688,33.4587685371094]]]]}},{"type":"Feature","properties":{"name":"临泉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.197345,32.633843],[115.185152617188,32.6372658515626],[115.193922148438,32.6460353828125],[115.197345,32.633843]]],[[[115.197345,32.633843],[115.207345,32.633843],[115.207345,32.6538430000001],[115.219537382813,32.6572658515625],[115.210767851563,32.6660353828126],[115.207345,32.6538430000001],[115.201881132813,32.6583815742188],[115.192769804688,32.6793947578125],[115.17353640625,32.67743675],[115.1828528125,32.7688430000001],[115.180748320313,32.7895143867188],[115.204049101563,32.7871413398438],[115.189205351563,32.813051984375],[115.1928528125,32.8488430000001],[115.191685820313,32.8603054023438],[115.172345,32.8583327460938],[115.157120390625,32.8598854804688],[115.1309778125,32.902270734375],[115.092345,32.8983327460938],[115.033643828125,32.9043166328125],[115.022808867188,32.9293044257813],[115.004332304688,32.9446511054688],[114.941954375,32.9382936835938],[114.917940703125,32.9671999335938],[114.877345,32.983843],[114.893565703125,33.0083913398438],[114.89037234375,33.0226491523438],[114.912345,33.0177223945313],[114.926939726563,33.0209938789063],[114.911163359375,33.0585646796875],[114.915225859375,33.0766872382813],[114.887345,33.083843],[114.893985625,33.0972023750001],[114.901846953125,33.1361391425781],[114.942345,33.1562697578125],[114.967345,33.1438430000001],[114.97170046875,33.1281996894531],[114.98298953125,33.1194863105469],[114.996436796875,33.1020619941407],[115.03205203125,33.08806175],[115.042345,33.0895827460938],[115.057345,33.0873659492188],[115.07990359375,33.09069846875],[115.1151965625,33.0768239570313],[115.14298953125,33.0881984687501],[115.186485625,33.1204482246094],[115.202672148438,33.1180556464844],[115.237345,33.133843],[115.251846953125,33.09815940625],[115.262345,33.0994643378907],[115.272345,33.0982216621094],[115.284610625,33.0997463203125],[115.305269804688,33.0739479804688],[115.381793242188,33.0282888007813],[115.402896757813,33.0193971992188],[115.412345,33.0076003242188],[115.422799101563,33.0206520820313],[115.442345,33.0182204414063],[115.457345,33.0200856757813],[115.477345,33.0176003242188],[115.500181914063,33.0204396796875],[115.517345,33.013843],[115.517345,33.003843],[115.49724734375,32.95394065625],[115.47170046875,32.91948753125],[115.447345,32.8738430000001],[115.447345,32.863843],[115.457345,32.863843],[115.462530546875,32.8457057929688],[115.494381132813,32.8202028632813],[115.488272734375,32.771108625],[115.50607546875,32.7568508125],[115.467047148438,32.7255959296875],[115.4416028125,32.6652175117188],[115.351793242188,32.6782888007813],[115.303912382813,32.7064357734375],[115.301724882813,32.6888430000001],[115.305142851563,32.6613600898438],[115.263765898438,32.6047170234375],[115.277345,32.593843],[115.270391875,32.5848317695313],[115.19170046875,32.59819846875],[115.187345,32.603843],[115.193985625,32.617202375],[115.197345,32.633843]]]]}},{"type":"Feature","properties":{"name":"太和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.637345,33.583843],[115.65560671875,33.5231801582032],[115.682066679688,33.5084194160157],[115.724293242188,33.5118117500001],[115.8116028125,33.4630995917969],[115.84271609375,33.4492153144531],[115.887345,33.4138430000001],[115.894796171875,33.3988576484375],[115.884859648438,33.3785195136719],[115.900704375,33.347202375],[115.907345,33.343843],[115.919674101563,33.31632346875],[115.90062625,33.2584133125],[115.921158476563,33.2291701484375],[115.903595,33.2256813789063],[115.872218046875,33.2510964179688],[115.823531523438,33.2662599921875],[115.831158476563,33.2176552558594],[115.849595976563,33.1913930488282],[115.831158476563,33.1800307441406],[115.817345,33.1538430000001],[115.799141875,33.1614882636719],[115.775933867188,33.1562856269532],[115.751007109375,33.120180890625],[115.708433867188,33.090786359375],[115.659141875,33.1114882636719],[115.641636992188,33.1075637031251],[115.623053007813,33.140122296875],[115.5941028125,33.1336330390626],[115.578111601563,33.1104726386719],[115.527345,33.083843],[115.52326296875,33.0897585273438],[115.483472929688,33.1124697089844],[115.47326296875,33.1397585273438],[115.45697390625,33.1510024238282],[115.442345,33.1477223945313],[115.429381132813,33.1506276679688],[115.433565703125,33.1692897773438],[115.419215117188,33.1913259101563],[115.447110625,33.2105873847656],[115.430963164063,33.2490407539063],[115.445235625,33.2709572578125],[115.441221953125,33.288843],[115.443468046875,33.2988430000001],[115.441221953125,33.308843],[115.443468046875,33.318843],[115.440103789063,33.3338430000001],[115.4458215625,33.359341046875],[115.431217070313,33.4188014960938],[115.435611601563,33.4384169746094],[115.399957304688,33.4587685371094],[115.38326296875,33.4767018867188],[115.417886992188,33.4896584296876],[115.397345,33.503843],[115.406246367188,33.5562331367188],[115.452271757813,33.569653546875],[115.503560820313,33.55776878125],[115.55298953125,33.5681996894532],[115.56170046875,33.5794863105469],[115.637345,33.583843]]]]}},{"type":"Feature","properties":{"name":"颍东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.923316679688,33.091577375],[116.00298953125,33.0594875312501],[116.012857695313,33.0467018867188],[116.046749296875,33.0517116523438],[116.053082304688,33.008843],[116.050284453125,32.9898854804688],[116.062345,32.9881032539063],[116.081358671875,32.9909133125],[116.163170195313,32.969438703125],[116.1594934375,32.9445534492188],[116.197345,32.893843],[116.191793242188,32.8893971992187],[116.181261015625,32.8525612617187],[116.183248320313,32.836577375],[116.161793242188,32.8193971992188],[116.14978640625,32.8044045234375],[116.154210234375,32.7688430000001],[116.119928007813,32.7543971992188],[116.123023710938,32.7793190742187],[116.084014921875,32.8030129218751],[116.072843046875,32.8295265937501],[116.055318632813,32.8273464179688],[116.022706328125,32.8081764960938],[115.977345,32.813843],[115.97326296875,32.8197585273437],[115.9508215625,32.8352516914063],[115.90142703125,32.8479274726562],[115.87670046875,32.8837429023438],[115.837345,32.893843],[115.841812773438,32.9331179023438],[115.8867590625,32.9641506171875],[115.877789335938,33.0041677070313],[115.904342070313,33.0449416328125],[115.897193632813,33.0768312812501],[115.907345,33.083843],[115.912345,33.0710353828125],[115.917345,33.083843],[115.923316679688,33.091577375]]]]}},{"type":"Feature","properties":{"name":"颍泉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.817345,32.903843],[115.813922148438,32.8916506171875],[115.805152617188,32.9004201484376],[115.817345,32.903843]]],[[[115.907345,33.083843],[115.917345,33.083843],[115.912345,33.0710353828125],[115.907345,33.083843]]],[[[115.907345,33.083843],[115.897193632813,33.0768312812501],[115.904342070313,33.0449416328125],[115.877789335938,33.0041677070313],[115.8867590625,32.9641506171875],[115.841812773438,32.9331179023438],[115.837345,32.893843],[115.817345,32.903843],[115.804771757813,32.9184352851563],[115.719869414063,32.9506520820313],[115.647139921875,32.944809796875],[115.61271609375,32.9692140937501],[115.589034453125,32.9797829414063],[115.572022734375,32.9784157539063],[115.562022734375,32.9900221992188],[115.542056914063,32.9884181953126],[115.517345,33.003843],[115.517345,33.013843],[115.523472929688,33.0388014960938],[115.518238554688,33.0621608710938],[115.527345,33.083843],[115.578111601563,33.1104726386719],[115.5941028125,33.1336330390626],[115.623053007813,33.140122296875],[115.641636992188,33.1075637031251],[115.659141875,33.1114882636719],[115.708433867188,33.090786359375],[115.751007109375,33.120180890625],[115.775933867188,33.1562856269532],[115.799141875,33.1614882636719],[115.817345,33.1538430000001],[115.850094023438,33.1497133613281],[115.839298125,33.1276076484376],[115.86966921875,33.118843],[115.859215117188,33.0974330878906],[115.903985625,33.0904836250001],[115.907345,33.083843]]]]}},{"type":"Feature","properties":{"name":"颍上县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.387345,32.903843],[116.380128203125,32.8599098945313],[116.397345,32.8573659492188],[116.41869265625,32.8605202460938],[116.434268828125,32.8484987617188],[116.443082304688,32.788843],[116.438648710938,32.758843],[116.443824492188,32.7238430000001],[116.438951445313,32.6908888984376],[116.49298953125,32.6794875312501],[116.50170046875,32.6681984687501],[116.52162234375,32.6528224921875],[116.548350859375,32.587514875],[116.602266875,32.5954811835938],[116.62298953125,32.57948753125],[116.627345,32.553843],[116.61170046875,32.54948753125],[116.552686796875,32.540766828125],[116.521402617188,32.5002321601563],[116.523082304688,32.488843],[116.520484648438,32.4712673164062],[116.49170046875,32.45948753125],[116.48298953125,32.44819846875],[116.477345,32.443843],[116.435640898438,32.4503127265625],[116.394586210938,32.4470143867188],[116.349166289063,32.4723561835938],[116.32884890625,32.5178884101563],[116.279947539063,32.52847190625],[116.241539335938,32.4838893867187],[116.243590117188,32.4583400703126],[116.222345,32.4600490546876],[116.198253203125,32.4581130195313],[116.172345,32.4280397773438],[116.16271609375,32.4392140937501],[116.11423953125,32.4809792304688],[116.089381132813,32.5366847968751],[116.03197390625,32.5584719062501],[116.014322539063,32.5980324531251],[115.957345,32.603843],[115.923189726563,32.614389875],[115.95283328125,32.66894065625],[115.9408996875,32.6796022773438],[115.943175078125,32.7178005195313],[115.917291289063,32.7800392890625],[115.9426184375,32.7785280585937],[115.947345,32.8038430000001],[115.957345,32.8038430000001],[115.977345,32.8038430000001],[115.977345,32.813843],[116.022706328125,32.8081764960938],[116.055318632813,32.8273464179688],[116.072843046875,32.8295265937501],[116.084014921875,32.8030129218751],[116.123023710938,32.7793190742187],[116.119928007813,32.7543971992188],[116.154210234375,32.7688430000001],[116.14978640625,32.8044045234375],[116.161793242188,32.8193971992188],[116.183248320313,32.836577375],[116.181261015625,32.8525612617187],[116.191793242188,32.8893971992187],[116.197345,32.893843],[116.243492460938,32.8896388984375],[116.240054960938,32.8722585273438],[116.27752078125,32.8648561835938],[116.343170195313,32.8780178046875],[116.371519804688,32.8996681953126],[116.387345,32.903843]]]]}},{"type":"Feature","properties":{"name":"颍州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.817345,32.903843],[115.805152617188,32.9004201484376],[115.813922148438,32.8916506171875],[115.837345,32.893843],[115.87670046875,32.8837429023438],[115.90142703125,32.8479274726562],[115.9508215625,32.8352516914063],[115.97326296875,32.8197585273437],[115.977345,32.813843],[115.977345,32.8038430000001],[115.957345,32.8038430000001],[115.952345,32.8166506171875],[115.947345,32.8038430000001],[115.92990359375,32.8106984687501],[115.912203398438,32.8080837226563],[115.862486601563,32.8196022773438],[115.848834257813,32.8175856757812],[115.853140898438,32.788452375],[115.83687625,32.7614919257813],[115.818761015625,32.7849636054688],[115.762857695313,32.7767018867188],[115.745894804688,32.798676984375],[115.693150664063,32.8133644843751],[115.6686340625,32.8451296210938],[115.621519804688,32.8582497382813],[115.623160429688,32.8693556953125],[115.61170046875,32.87819846875],[115.60298953125,32.89948753125],[115.536334257813,32.9108083320313],[115.522916289063,32.8780202460938],[115.495889921875,32.8820143867188],[115.47298953125,32.86819846875],[115.457345,32.863843],[115.457345,32.8738430000001],[115.447345,32.8738430000001],[115.47170046875,32.91948753125],[115.49724734375,32.95394065625],[115.517345,33.003843],[115.542056914063,32.9884181953126],[115.562022734375,32.9900221992188],[115.572022734375,32.9784157539063],[115.589034453125,32.9797829414063],[115.61271609375,32.9692140937501],[115.647139921875,32.944809796875],[115.719869414063,32.9506520820313],[115.804771757813,32.9184352851563],[115.817345,32.903843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"埇桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.156558867188,34.0809877753906],[117.232291289063,34.0658681464844],[117.267345,34.0727956367188],[117.301724882813,34.0660012031251],[117.317506132813,34.0880178046876],[117.363170195313,34.0796681953125],[117.371519804688,34.0580178046875],[117.39224734375,34.0431606269532],[117.397345,34.0238430000001],[117.402652617188,34.0090444160157],[117.402047148438,33.998843],[117.403238554688,33.978843],[117.3998840625,33.9225710273438],[117.412799101563,33.8988075996094],[117.391866484375,33.8688430000001],[117.416090117188,33.834165265625],[117.37322390625,33.7648268867188],[117.3926575,33.7290688300781],[117.392047148438,33.7188430000001],[117.392940703125,33.703843],[117.3920325,33.6886171699219],[117.4026575,33.6690688300782],[117.402047148438,33.658843],[117.40271609375,33.6475783515625],[117.372760039063,33.6208119941407],[117.372047148438,33.6088430000001],[117.373111601563,33.5909743476562],[117.322345,33.5879494453125],[117.282730742188,33.5903102851563],[117.28172,33.57339378125],[117.287345,33.4938430000001],[117.242857695313,33.5011513496094],[117.21298953125,33.4581996894532],[117.20170046875,33.4494863105469],[117.192686796875,33.4378115058594],[117.157345,33.4517055488282],[117.1170715625,33.4358730292969],[117.135557890625,33.4052260566407],[117.126143828125,33.3794863105469],[117.082222929688,33.4059804511719],[117.04298953125,33.3817653632813],[117.07298953125,33.3694863105469],[117.09170046875,33.3549245429688],[117.059097929688,33.3297573066406],[117.093253203125,33.3093300605469],[117.087345,33.283843],[117.057647734375,33.2957814765625],[116.964986601563,33.2798293281251],[116.933077421875,33.2995778632813],[116.917345,33.3038430000001],[116.923004179688,33.3185597968751],[116.918048125,33.3583901191406],[116.952159453125,33.3857057929688],[116.963428984375,33.4251235175782],[116.960826445313,33.4460549140626],[116.931793242188,33.4582900214844],[116.922896757813,33.4693959785156],[116.90166140625,33.4783449531251],[116.903590117188,33.4938430000001],[116.901724882813,33.508843],[116.904830351563,33.5338210273437],[116.922896757813,33.5482900214844],[116.931793242188,33.5818837714844],[116.889176054688,33.5765834785156],[116.855479765625,33.6186586738282],[116.874039335938,33.65022971875],[116.871724882813,33.668843],[116.873336210938,33.6818288398438],[116.921846953125,33.6757949042969],[116.934566679688,33.7059816718751],[116.930533476563,33.7383901191406],[116.943023710938,33.7483901191407],[116.940396757813,33.7694948554687],[116.956705351563,33.8853212714844],[116.98170046875,33.9053371406251],[116.997345,33.9438430000001],[117.017022734375,33.9488930488282],[117.038995390625,33.9807155585938],[117.05697390625,33.9766835761719],[117.080440703125,33.9928859687501],[117.10326296875,34.0279274726563],[117.11826296875,34.0863796210938],[117.147345,34.0938430000001],[117.156558867188,34.0809877753906]]]]}},{"type":"Feature","properties":{"name":"灵璧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.617345,34.0238430000001],[117.605152617188,34.0272658515625],[117.613922148438,34.0360353828125],[117.617345,34.0238430000001]]],[[[117.617345,34.0238430000001],[117.632896757813,34.0193959785157],[117.641793242188,34.0082900214844],[117.663248320313,33.9911074042969],[117.659185820313,33.9584365058594],[117.702569609375,33.8870058417969],[117.751197539063,33.8930544257813],[117.75297,33.8788173652344],[117.738175078125,33.7605226875],[117.717345,33.743843],[117.71271609375,33.7492153144531],[117.696500273438,33.7584706855469],[117.68271609375,33.6084706855469],[117.642730742188,33.5964321113282],[117.66271609375,33.5792153144532],[117.67197390625,33.5650612617188],[117.633668242188,33.5320595527345],[117.62271609375,33.513676984375],[117.663526640625,33.4785195136719],[117.661944609375,33.4588430000001],[117.663150664063,33.443843],[117.661944609375,33.428843],[117.663551054688,33.4088430000001],[117.661944609375,33.388843],[117.663526640625,33.3691664863281],[117.6466028125,33.3545864082032],[117.637345,33.343843],[117.597564726563,33.3370851875001],[117.587345,33.323843],[117.55896609375,33.3302883125],[117.542061796875,33.3281862617188],[117.512896757813,33.3393959785157],[117.471793242188,33.3482900214844],[117.441607695313,33.3660341621095],[117.391666289063,33.4283962226563],[117.392965117188,33.438843],[117.390504179688,33.4586440253906],[117.321793242188,33.4782900214844],[117.302896757813,33.4893959785157],[117.287345,33.4938430000001],[117.28172,33.57339378125],[117.282730742188,33.5903102851563],[117.322345,33.5879494453125],[117.373111601563,33.5909743476562],[117.372047148438,33.6088430000001],[117.372760039063,33.6208119941407],[117.40271609375,33.6475783515625],[117.402047148438,33.658843],[117.4026575,33.6690688300782],[117.3920325,33.6886171699219],[117.392940703125,33.703843],[117.392047148438,33.7188430000001],[117.3926575,33.7290688300781],[117.37322390625,33.7648268867188],[117.416090117188,33.834165265625],[117.391866484375,33.8688430000001],[117.412799101563,33.8988075996094],[117.3998840625,33.9225710273438],[117.403238554688,33.978843],[117.402047148438,33.998843],[117.402652617188,34.0090444160157],[117.397345,34.0238430000001],[117.44326296875,34.0279274726563],[117.486099882813,34.055825421875],[117.517345,34.0638430000001],[117.517345,34.053843],[117.537345,34.053843],[117.542550078125,34.0005275703125],[117.575777617188,33.9793959785157],[117.591793242188,33.9993959785156],[117.608453398438,34.0127370429688],[117.617345,34.0238430000001]]]]}},{"type":"Feature","properties":{"name":"萧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.977345,34.1738430000001],[116.989537382813,34.1704201484375],[116.980767851563,34.1616506171876],[116.977345,34.1738430000001]]],[[[116.977345,34.1738430000001],[116.96857546875,34.1686440253907],[116.971949492188,34.1401210761719],[117.0112903125,34.1536330390625],[117.017345,34.163843],[117.036534453125,34.1584987617188],[117.123673125,34.1228346992188],[117.121519804688,34.1082729316407],[117.14298953125,34.0994863105469],[117.147345,34.0938430000001],[117.11826296875,34.0863796210938],[117.10326296875,34.0279274726563],[117.080440703125,33.9928859687501],[117.05697390625,33.9766835761719],[117.038995390625,33.9807155585938],[117.017022734375,33.9488930488282],[116.997345,33.9438430000001],[116.987345,33.9438430000001],[116.987345,33.963843],[116.957345,33.963843],[116.957345,33.973843],[116.974625273438,34.0087685371094],[116.965225859375,34.029692609375],[116.936163359375,34.0450002265625],[116.96615359375,34.0799221015625],[116.930797148438,34.0872927070312],[116.907008085938,34.1057302070313],[116.872828398438,34.0763784003907],[116.849268828125,34.0869631171876],[116.8226965625,34.0663661933594],[116.807345,34.073843],[116.803922148438,34.0860353828126],[116.795152617188,34.0772658515625],[116.807345,34.073843],[116.800704375,34.060483625],[116.797345,34.003843],[116.77326296875,34.0097585273438],[116.727345,34.013843],[116.66197390625,34.0184706855469],[116.597345,34.0238430000001],[116.58298953125,34.0494863105469],[116.553795195313,34.0888661933594],[116.54170046875,34.0981996894532],[116.52298953125,34.1277358222656],[116.556744414063,34.1732631660157],[116.54170046875,34.1981996894531],[116.53298953125,34.2327614570313],[116.56427859375,34.2569118476563],[116.577345,34.273843],[116.581246367188,34.2799404121095],[116.6080871875,34.289380109375],[116.6247278125,34.3153713203125],[116.6195325,34.3338430000001],[116.6251575,34.353843],[116.6195325,34.3738430000001],[116.623878203125,34.3893019843751],[116.60373171875,34.4187245917969],[116.639249296875,34.4414626289063],[116.621246367188,34.4677455878906],[116.617345,34.4838430000001],[116.65197390625,34.4784706855469],[116.761383085938,34.4673110175782],[116.79197390625,34.4184706855469],[116.807345,34.413843],[116.824205351563,34.3903188300782],[116.90224734375,34.4057399726563],[116.9634778125,34.3895864082032],[116.959503203125,34.3694631171875],[116.975186796875,34.3582228828125],[116.963170195313,34.2974123359375],[116.998931914063,34.2571804023438],[117.012965117188,34.2599538398438],[117.021519804688,34.2480178046875],[117.027345,34.243843],[117.01795046875,34.2101039863281],[116.99670046875,34.2376357246094],[116.98170046875,34.1994863105469],[116.977345,34.1738430000001]]]]}},{"type":"Feature","properties":{"name":"泗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.167345,33.7538430000001],[118.167345,33.743843],[118.177345,33.743843],[118.17271609375,33.7384706855469],[118.151812773438,33.7204616523438],[118.156632109375,33.6604616523437],[118.112281523438,33.622251203125],[118.09841921875,33.4863466621094],[118.043970976563,33.4907204414063],[118.01423953125,33.4374318671875],[118.011944609375,33.4088430000001],[118.015675078125,33.3623732734375],[117.97197390625,33.3492153144532],[117.967345,33.3338430000001],[117.9020715625,33.3392690253907],[117.88271609375,33.3284706855469],[117.859722929688,33.3182106757813],[117.841373320313,33.2969118476563],[117.812022734375,33.2992702460938],[117.793961210938,33.2783107734376],[117.772345,33.2800478339844],[117.742345,33.2776381660156],[117.717862578125,33.2796047187501],[117.6773840625,33.3021901679688],[117.6580871875,33.3245864082032],[117.64197390625,33.3384706855469],[117.637345,33.343843],[117.6466028125,33.3545864082032],[117.663526640625,33.3691664863281],[117.661944609375,33.388843],[117.663551054688,33.4088430000001],[117.661944609375,33.428843],[117.663150664063,33.443843],[117.661944609375,33.4588430000001],[117.663526640625,33.4785195136719],[117.62271609375,33.513676984375],[117.633668242188,33.5320595527345],[117.67197390625,33.5650612617188],[117.66271609375,33.5792153144532],[117.642730742188,33.5964321113282],[117.68271609375,33.6084706855469],[117.696500273438,33.7584706855469],[117.71271609375,33.7492153144531],[117.717345,33.743843],[117.742452421875,33.7147011542969],[117.79646609375,33.7345375800782],[117.891715117188,33.7268849921875],[117.94271609375,33.7384706855469],[117.961099882813,33.7598085761719],[117.9959778125,33.7470009589845],[118.070850859375,33.7633315253906],[118.167345,33.7538430000001]]]]}},{"type":"Feature","properties":{"name":"砀山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.420992460938,34.6519374824219],[116.43224734375,34.6287429023438],[116.472159453125,34.6093788886719],[116.50912234375,34.5530019355469],[116.55244265625,34.5389430976563],[116.56224734375,34.5287429023437],[116.58275515625,34.5090395332031],[116.562706328125,34.4897792792969],[116.617345,34.4838430000001],[116.621246367188,34.4677455878906],[116.639249296875,34.4414626289063],[116.60373171875,34.4187245917969],[116.623878203125,34.3893019843751],[116.6195325,34.3738430000001],[116.6251575,34.353843],[116.6195325,34.3338430000001],[116.6247278125,34.3153713203125],[116.6080871875,34.289380109375],[116.581246367188,34.2799404121095],[116.577345,34.273843],[116.543985625,34.290483625],[116.49916140625,34.297202375],[116.473985625,34.2772023750001],[116.457345,34.273843],[116.45170046875,34.2781996894531],[116.442579375,34.2900160957031],[116.42298953125,34.2781996894531],[116.360225859375,34.2694863105469],[116.366461210938,34.3116945625],[116.298365507813,34.3395644355469],[116.28298953125,34.3594863105469],[116.25861453125,34.3782997871094],[116.21170046875,34.3881996894531],[116.199654570313,34.4176296210938],[116.177345,34.423843],[116.172628203125,34.4391237617187],[116.152647734375,34.4569741035156],[116.193765898438,34.5100307441406],[116.191749296875,34.543843],[116.192652617188,34.5590444160157],[116.187345,34.573843],[116.213804960938,34.5703029609375],[116.240015898438,34.5504763007813],[116.254425078125,34.5767617011719],[116.273804960938,34.5873830390625],[116.280885039063,34.6003029609375],[116.323804960938,34.6073830390626],[116.330885039063,34.6203029609376],[116.359244414063,34.6290639472656],[116.367345,34.643843],[116.382345,34.6387087226563],[116.420992460938,34.6519374824219]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"霍邱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.16271609375,32.4392140937501],[116.172345,32.4280397773438],[116.198253203125,32.4581130195313],[116.222345,32.4600490546876],[116.243590117188,32.4583400703126],[116.241539335938,32.4838893867187],[116.279947539063,32.52847190625],[116.32884890625,32.5178884101563],[116.349166289063,32.4723561835938],[116.394586210938,32.4470143867188],[116.435640898438,32.4503127265625],[116.477345,32.443843],[116.483004179688,32.429126203125],[116.480533476563,32.4092971015625],[116.49334109375,32.3990431953125],[116.473355742188,32.3650441718751],[116.510133085938,32.3355959296875],[116.5237903125,32.2754665351563],[116.521724882813,32.258843],[116.524381132813,32.2374831367188],[116.50134890625,32.2190431953125],[116.513013945313,32.1992018867188],[116.509625273438,32.1719753242188],[116.522896757813,32.1493971992188],[116.531793242188,32.0982888007813],[116.547345,32.073843],[116.522486601563,32.0680837226562],[116.511773710938,32.0696657539062],[116.502345,32.046626203125],[116.472345,32.051059796875],[116.46298953125,32.02819846875],[116.44170046875,32.01948753125],[116.422110625,32.0076686835938],[116.404136992188,32.0309548164063],[116.382276640625,32.0177712226563],[116.35298953125,32.03948753125],[116.306558867188,32.05241721875],[116.272735625,32.0320143867188],[116.26298953125,32.00819846875],[116.233795195313,31.9688210273437],[116.22170046875,31.9594875312501],[116.21298953125,31.94819846875],[116.20170046875,31.93948753125],[116.190670195313,31.9251930976563],[116.198258085938,31.873843],[116.184068632813,31.7778493476563],[116.171832304688,31.7796584296876],[116.155616484375,31.7586452460938],[116.127345,31.753843],[116.09142703125,31.7579274726563],[116.080943632813,31.7859523750001],[116.050230742188,31.7659548164063],[116.002271757813,31.776704328125],[115.99326296875,31.7897585273437],[115.943111601563,31.8026271796876],[115.907345,31.793843],[115.902896757813,31.8193971992187],[115.889625273438,31.8419753242188],[115.892965117188,31.868843],[115.891676054688,31.8792018867187],[115.913316679688,31.9160158515625],[115.9079309375,31.9593459296875],[115.924879179688,32.0034499335938],[115.918272734375,32.0565773750001],[115.936163359375,32.070903546875],[115.921612578125,32.1087624335937],[115.932994414063,32.1486257148438],[115.931724882813,32.1588430000001],[115.933013945313,32.1692018867188],[115.921793242188,32.1882888007813],[115.907242460938,32.2228176093751],[115.913941679688,32.2766799140626],[115.901793242188,32.3082888007813],[115.891632109375,32.3781032539063],[115.893424101563,32.3925295234375],[115.871695585938,32.4686257148438],[115.875484648438,32.4990724921875],[115.837345,32.5038430000001],[115.837345,32.513843],[115.863985625,32.5272023750001],[115.867345,32.5438430000001],[115.877345,32.5438430000001],[115.877345,32.553843],[115.909176054688,32.5620119453126],[115.917345,32.5738430000001],[115.940787382813,32.5798586250001],[115.957345,32.603843],[116.014322539063,32.5980324531251],[116.03197390625,32.5584719062501],[116.089381132813,32.5366847968751],[116.11423953125,32.4809792304688],[116.16271609375,32.4392140937501]]]]}},{"type":"Feature","properties":{"name":"霍山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.517345,31.363843],[116.529537382813,31.3604201484375],[116.520767851563,31.3516506171875],[116.517345,31.363843]]],[[[116.517345,31.363843],[116.495577421875,31.3582570625],[116.489381132813,31.3306276679688],[116.502345,31.3277223945313],[116.540206328125,31.3362111640626],[116.527345,31.2838430000001],[116.52107546875,31.2795143867188],[116.525709257813,31.258843],[116.497257109375,31.2481960273438],[116.47047,31.2094020820313],[116.483858671875,31.188843],[116.456475859375,31.1467971015625],[116.442066679688,31.1500270820313],[116.427345,31.143843],[116.416475859375,31.1590041328125],[116.35396609375,31.1715358710938],[116.323170195313,31.1480178046875],[116.301519804688,31.1396681953126],[116.276470976563,31.1047170234376],[116.226178007813,31.0686721015625],[116.184742460938,31.0596681953126],[116.173170195313,31.0896681953125],[116.156925078125,31.1013112617188],[116.11252078125,31.0878200507813],[116.094283476563,31.0914235664063],[116.0627746875,31.0714186835938],[116.046568632813,31.0488088203125],[116.037345,31.0138430000001],[116.011519804688,31.0180178046875],[115.998155546875,31.0366628242188],[115.941519804688,31.0480178046875],[115.933170195313,31.0696681953126],[115.921519804688,31.0780178046876],[115.913170195313,31.0896681953125],[115.891519804688,31.0980178046875],[115.887345,31.133843],[115.961534453125,31.1506960273438],[115.939136992188,31.1714479804688],[115.9589075,31.2133425117188],[116.012550078125,31.2386598945312],[116.011441679688,31.2666774726562],[116.032154570313,31.2890334296875],[116.052535429688,31.2986525703125],[116.062154570313,31.3090334296876],[116.0829309375,31.3282839179688],[116.072154570313,31.3486525703125],[116.061441679688,31.3936183906251],[116.0408215625,31.4524538398438],[116.091851835938,31.479458234375],[116.112511015625,31.4786379218751],[116.132154570313,31.4890334296875],[116.157345,31.493843],[116.17810671875,31.4637721992188],[116.249176054688,31.4820119453125],[116.262476835938,31.5012770820313],[116.315094023438,31.4815895820313],[116.327345,31.463843],[116.315152617188,31.4604201484375],[116.323922148438,31.4516506171876],[116.327345,31.463843],[116.343648710938,31.4680275703126],[116.339698515625,31.4856423164063],[116.353858671875,31.5193459296875],[116.33326296875,31.5335671210938],[116.347764921875,31.5445607734376],[116.402198515625,31.5276882148438],[116.412345,31.5299636054688],[116.422388945313,31.5277126289063],[116.447345,31.533843],[116.4766028125,31.4830983710938],[116.493951445313,31.468149640625],[116.46271609375,31.4412404609376],[116.48197390625,31.42847190625],[116.512125273438,31.4150173164063],[116.517345,31.363843]]]]}},{"type":"Feature","properties":{"name":"金安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.517345,31.363843],[116.520767851563,31.3516506171875],[116.529537382813,31.3604201484375],[116.512125273438,31.4150173164063],[116.48197390625,31.42847190625],[116.46271609375,31.4412404609376],[116.493951445313,31.468149640625],[116.4766028125,31.4830983710938],[116.447345,31.533843],[116.453170195313,31.5380178046876],[116.461519804688,31.5496681953125],[116.473170195313,31.5580178046875],[116.481519804688,31.6196681953125],[116.524136992188,31.6847731757813],[116.520367460938,31.7038430000001],[116.52443484375,31.7244264960938],[116.489503203125,31.7494631171875],[116.493331328125,31.768843],[116.491300078125,31.7791310859376],[116.50720828125,31.8178420234375],[116.520816679688,31.8867189765626],[116.473170195313,31.9050954414063],[116.484273710938,31.9244753242187],[116.508648710938,31.9419435859376],[116.501358671875,31.978843],[116.504322539063,31.993843],[116.499947539063,32.01597190625],[116.52216921875,32.0300807929688],[116.537345,32.023843],[116.582896757813,32.0193971992188],[116.613741484375,32.0012673164063],[116.672896757813,31.9793971992188],[116.682301054688,31.9042165351563],[116.722061796875,31.9194997382813],[116.767345,31.913843],[116.762628203125,31.9085622382813],[116.712779570313,31.8768581367188],[116.73353640625,31.8583107734375],[116.686939726563,31.8166774726563],[116.712061796875,31.7885622382813],[116.7326575,31.7791091132812],[116.7319934375,31.7679274726563],[116.753258085938,31.7691945625],[116.752047148438,31.748843],[116.752642851563,31.7388430000001],[116.75146609375,31.71909690625],[116.762711210938,31.709048078125],[116.751534453125,31.646137921875],[116.764288359375,31.5642775703126],[116.822061796875,31.5285622382813],[116.837345,31.523843],[116.794986601563,31.4561086250001],[116.70255984375,31.428423078125],[116.684361601563,31.4298854804688],[116.67197390625,31.41921409375],[116.626456328125,31.3603786445312],[116.602345,31.3584401679688],[116.580225859375,31.3602175117188],[116.58412234375,31.3117116523438],[116.56427859375,31.2886745429688],[116.527345,31.2838430000001],[116.540206328125,31.3362111640626],[116.502345,31.3277223945313],[116.489381132813,31.3306276679688],[116.495577421875,31.3582570625],[116.517345,31.363843]]]]}},{"type":"Feature","properties":{"name":"金寨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.002271757813,31.776704328125],[116.050230742188,31.7659548164063],[116.080943632813,31.7859523750001],[116.09142703125,31.7579274726563],[116.127345,31.753843],[116.115787382813,31.7088137031251],[116.044151640625,31.6837013984375],[116.03326296875,31.6679274726562],[116.00326296875,31.6567018867188],[116.01142703125,31.6379274726563],[116.03326296875,31.6297585273438],[116.0441028125,31.6140529609375],[116.077345,31.6066017890626],[116.100557890625,31.6118044257813],[116.103468046875,31.598843],[116.101041289063,31.5880275703125],[116.13326296875,31.5797585273438],[116.15142703125,31.5679274726563],[116.198824492188,31.5586721015625],[116.169132109375,31.5381716132812],[116.174503203125,31.5142116523438],[116.16326296875,31.4979274726563],[116.157345,31.493843],[116.132154570313,31.4890334296875],[116.112511015625,31.4786379218751],[116.091851835938,31.479458234375],[116.0408215625,31.4524538398438],[116.061441679688,31.3936183906251],[116.072154570313,31.3486525703125],[116.0829309375,31.3282839179688],[116.062154570313,31.3090334296876],[116.052535429688,31.2986525703125],[116.032154570313,31.2890334296875],[116.011441679688,31.2666774726562],[116.012550078125,31.2386598945312],[115.9589075,31.2133425117188],[115.939136992188,31.1714479804688],[115.961534453125,31.1506960273438],[115.887345,31.133843],[115.88142703125,31.1379274726563],[115.87125125,31.1526662421876],[115.83326296875,31.1279274726563],[115.78142703125,31.1197585273438],[115.77326296875,31.1079274726563],[115.767345,31.103843],[115.751656523438,31.142798078125],[115.73170046875,31.15819846875],[115.72298953125,31.17948753125],[115.71170046875,31.18819846875],[115.70298953125,31.19948753125],[115.648424101563,31.2181984687501],[115.6286340625,31.1925563789062],[115.6060559375,31.1751296210938],[115.584136992188,31.1467311835938],[115.554449492188,31.1646364570313],[115.53103640625,31.1949733710938],[115.535299101563,31.223843],[115.531129179688,31.2520607734375],[115.4851965625,31.2708620429688],[115.467345,31.263843],[115.45127078125,31.2884011054688],[115.454928007813,31.3069020820313],[115.441519804688,31.3280178046875],[115.433053007813,31.3499709296875],[115.422345,31.3478542304688],[115.412345,31.3498317695313],[115.374132109375,31.3422805],[115.3839465625,31.3919435859375],[115.367345,31.403843],[115.383360625,31.4474587226563],[115.366187773438,31.4942287421875],[115.420465117188,31.5409938789063],[115.433360625,31.5838185859376],[115.483824492188,31.6154274726563],[115.480103789063,31.6617555976563],[115.524361601563,31.6998854804688],[115.542633085938,31.6984181953125],[115.6255871875,31.7501955390626],[115.637345,31.763843],[115.653443632813,31.7677468085938],[115.676007109375,31.7831984687501],[115.720767851563,31.7635720039063],[115.732471953125,31.7818532539063],[115.762613554688,31.7903249335937],[115.812315703125,31.7672512031251],[115.842105742188,31.7803151679687],[115.878531523438,31.7700783515625],[115.891246367188,31.7899391914063],[115.907345,31.793843],[115.943111601563,31.8026271796876],[115.99326296875,31.7897585273437],[116.002271757813,31.776704328125]]]]}},{"type":"Feature","properties":{"name":"寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.767345,32.6538430000001],[116.767345,32.643843],[116.787345,32.643843],[116.787345,32.623843],[116.797345,32.623843],[116.820147734375,32.5672341132813],[116.85170046875,32.5481984687501],[116.867345,32.5438430000001],[116.892926054688,32.4988454414063],[116.881690703125,32.4787136054688],[116.8927746875,32.4691677070313],[116.887628203125,32.405122296875],[116.902022734375,32.3884157539063],[116.995299101563,32.3959108710938],[117.038922148438,32.3764455390626],[117.042745390625,32.328843],[117.039664335938,32.2904616523437],[117.07197390625,32.2626247382813],[117.045191679688,32.2290334296876],[117.00172,32.2191579414063],[117.02197390625,32.164009015625],[116.992496367188,32.1584279609376],[116.97271609375,32.1600173164063],[116.989737578125,32.1203981757813],[117.01345828125,32.0999587226562],[117.03197390625,32.0584719062501],[117.042901640625,32.0388845039063],[117.027345,32.0038430000001],[117.02326296875,31.9979274726563],[116.93142703125,31.9897585273438],[116.90326296875,31.9779274726563],[116.851749296875,31.9647096992188],[116.828883085938,31.9315895820313],[116.77326296875,31.9179274726563],[116.767345,31.913843],[116.722061796875,31.9194997382813],[116.682301054688,31.9042165351563],[116.672896757813,31.9793971992188],[116.613741484375,32.0012673164063],[116.582896757813,32.0193971992188],[116.537345,32.023843],[116.547257109375,32.04378440625],[116.539893828125,32.0588576484375],[116.547345,32.073843],[116.531793242188,32.0982888007813],[116.522896757813,32.1493971992188],[116.509625273438,32.1719753242188],[116.513013945313,32.1992018867188],[116.50134890625,32.2190431953125],[116.524381132813,32.2374831367188],[116.521724882813,32.258843],[116.5237903125,32.2754665351563],[116.510133085938,32.3355959296875],[116.473355742188,32.3650441718751],[116.49334109375,32.3990431953125],[116.480533476563,32.4092971015625],[116.483004179688,32.429126203125],[116.477345,32.443843],[116.48298953125,32.44819846875],[116.49170046875,32.45948753125],[116.520484648438,32.4712673164062],[116.523082304688,32.488843],[116.521402617188,32.5002321601563],[116.552686796875,32.540766828125],[116.61170046875,32.54948753125],[116.627345,32.553843],[116.640704375,32.560483625],[116.673985625,32.5672023750001],[116.687457304688,32.5938283515625],[116.747222929688,32.6238527656251],[116.733985625,32.6509596992188],[116.752232695313,32.6613552070312],[116.767345,32.6538430000001]]]]}},{"type":"Feature","properties":{"name":"舒城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.99205203125,31.55972190625],[117.026954375,31.5463063789063],[117.067345,31.5513307929688],[117.107345,31.5463552070313],[117.18380984375,31.5558669257812],[117.222896757813,31.5393971992188],[117.241793242188,31.5082888007813],[117.247345,31.5038430000001],[117.242896757813,31.4982888007813],[117.14310671875,31.4885475898438],[117.093985625,31.4271291328125],[117.071685820313,31.3691262031251],[117.074073515625,31.3499440742188],[117.062896757813,31.2982888007812],[117.046236601563,31.2849489570313],[117.032896757813,31.2682888007813],[117.027345,31.263843],[117.001964140625,31.2696096015625],[116.992896757813,31.2582888007813],[116.964327421875,31.2354103828125],[116.937642851563,31.1720900703125],[116.896373320313,31.1390407539063],[116.849381132813,31.1288747382813],[116.832896757813,31.1082888007813],[116.78279421875,31.0681642890625],[116.767345,31.0700856757813],[116.724049101563,31.064702375],[116.707345,31.043843],[116.690704375,31.047202375],[116.66892703125,31.0644997382813],[116.652330351563,31.0563942695313],[116.615816679688,31.0745436835938],[116.593985625,31.057202375],[116.560704375,31.050483625],[116.549488554688,31.0283132148437],[116.527345,31.023843],[116.533853789063,31.0758937812501],[116.555064726563,31.1119753242188],[116.551724882813,31.138843],[116.552965117188,31.148843],[116.54849734375,31.18476096875],[116.502750273438,31.1481716132813],[116.491983671875,31.1495095039063],[116.444947539063,31.1218605781251],[116.427345,31.143843],[116.442066679688,31.1500270820313],[116.456475859375,31.1467971015625],[116.483858671875,31.188843],[116.47047,31.2094020820313],[116.497257109375,31.2481960273438],[116.525709257813,31.258843],[116.52107546875,31.2795143867188],[116.527345,31.2838430000001],[116.56427859375,31.2886745429688],[116.58412234375,31.3117116523438],[116.580225859375,31.3602175117188],[116.602345,31.3584401679688],[116.626456328125,31.3603786445312],[116.67197390625,31.41921409375],[116.684361601563,31.4298854804688],[116.70255984375,31.428423078125],[116.794986601563,31.4561086250001],[116.837345,31.523843],[116.8418371875,31.5294509101563],[116.932345,31.540708234375],[116.967906523438,31.5362844062501],[116.982896757813,31.5482888007813],[116.99205203125,31.55972190625]]]]}},{"type":"Feature","properties":{"name":"裕安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.327345,31.463843],[116.323922148438,31.4516506171876],[116.315152617188,31.4604201484375],[116.327345,31.463843]]],[[[116.327345,31.463843],[116.315094023438,31.4815895820313],[116.262476835938,31.5012770820313],[116.249176054688,31.4820119453125],[116.17810671875,31.4637721992188],[116.157345,31.493843],[116.16326296875,31.4979274726563],[116.174503203125,31.5142116523438],[116.169132109375,31.5381716132812],[116.198824492188,31.5586721015625],[116.15142703125,31.5679274726563],[116.13326296875,31.5797585273438],[116.101041289063,31.5880275703125],[116.103468046875,31.598843],[116.100557890625,31.6118044257813],[116.077345,31.6066017890626],[116.0441028125,31.6140529609375],[116.03326296875,31.6297585273438],[116.01142703125,31.6379274726563],[116.00326296875,31.6567018867188],[116.03326296875,31.6679274726562],[116.044151640625,31.6837013984375],[116.115787382813,31.7088137031251],[116.127345,31.753843],[116.155616484375,31.7586452460938],[116.171832304688,31.7796584296876],[116.184068632813,31.7778493476563],[116.198258085938,31.873843],[116.190670195313,31.9251930976563],[116.20170046875,31.93948753125],[116.21298953125,31.94819846875],[116.22170046875,31.9594875312501],[116.233795195313,31.9688210273437],[116.26298953125,32.00819846875],[116.272735625,32.0320143867188],[116.306558867188,32.05241721875],[116.35298953125,32.03948753125],[116.382276640625,32.0177712226563],[116.404136992188,32.0309548164063],[116.422110625,32.0076686835938],[116.44170046875,32.01948753125],[116.46298953125,32.02819846875],[116.472345,32.051059796875],[116.502345,32.046626203125],[116.511773710938,32.0696657539062],[116.522486601563,32.0680837226562],[116.547345,32.073843],[116.539893828125,32.0588576484375],[116.547257109375,32.04378440625],[116.537345,32.023843],[116.52216921875,32.0300807929688],[116.499947539063,32.01597190625],[116.504322539063,31.993843],[116.501358671875,31.978843],[116.508648710938,31.9419435859376],[116.484273710938,31.9244753242187],[116.473170195313,31.9050954414063],[116.520816679688,31.8867189765626],[116.50720828125,31.8178420234375],[116.491300078125,31.7791310859376],[116.493331328125,31.768843],[116.489503203125,31.7494631171875],[116.52443484375,31.7244264960938],[116.520367460938,31.7038430000001],[116.524136992188,31.6847731757813],[116.481519804688,31.6196681953125],[116.473170195313,31.5580178046875],[116.461519804688,31.5496681953125],[116.453170195313,31.5380178046876],[116.447345,31.533843],[116.422388945313,31.5277126289063],[116.412345,31.5299636054688],[116.402198515625,31.5276882148438],[116.347764921875,31.5445607734376],[116.33326296875,31.5335671210938],[116.353858671875,31.5193459296875],[116.339698515625,31.4856423164063],[116.343648710938,31.4680275703126],[116.327345,31.463843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"利辛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.260831328125,33.3583388496094],[116.27326296875,33.3497585273438],[116.28142703125,33.3279274726563],[116.299176054688,33.3156740546875],[116.314542265625,33.2934206367187],[116.35142703125,33.2779274726563],[116.39326296875,33.2697585273438],[116.402345,33.2454799628907],[116.426148710938,33.2508168769532],[116.418541289063,33.2168691230469],[116.440557890625,33.2218056464844],[116.445279570313,33.2007460761719],[116.420943632813,33.1313112617188],[116.3720715625,33.1422670722656],[116.36326296875,33.1079274726563],[116.335235625,33.0974404121094],[116.365094023438,33.0515895820313],[116.377345,33.003843],[116.370538359375,32.9996486640625],[116.373912382813,32.9888112617187],[116.360601835938,32.9483425117188],[116.383531523438,32.9200295234375],[116.387345,32.903843],[116.371519804688,32.8996681953126],[116.343170195313,32.8780178046875],[116.27752078125,32.8648561835938],[116.240054960938,32.8722585273438],[116.243492460938,32.8896388984375],[116.197345,32.893843],[116.1594934375,32.9445534492188],[116.163170195313,32.969438703125],[116.081358671875,32.9909133125],[116.062345,32.9881032539063],[116.050284453125,32.9898854804688],[116.053082304688,33.008843],[116.046749296875,33.0517116523438],[116.012857695313,33.0467018867188],[116.00298953125,33.0594875312501],[115.923316679688,33.091577375],[115.917345,33.083843],[115.907345,33.083843],[115.903985625,33.0904836250001],[115.859215117188,33.0974330878906],[115.86966921875,33.118843],[115.839298125,33.1276076484376],[115.850094023438,33.1497133613281],[115.817345,33.1538430000001],[115.831158476563,33.1800307441406],[115.849595976563,33.1913930488282],[115.831158476563,33.2176552558594],[115.823531523438,33.2662599921875],[115.872218046875,33.2510964179688],[115.903595,33.2256813789063],[115.921158476563,33.2291701484375],[115.90062625,33.2584133125],[115.919674101563,33.31632346875],[115.907345,33.343843],[115.9290246875,33.3529494453125],[115.96431765625,33.3450380683594],[115.960338164063,33.3627895332032],[115.992789335938,33.3700637031251],[116.030025664063,33.3458193183594],[116.051900664063,33.360063703125],[116.062789335938,33.357622296875],[116.087017851563,33.3733998847657],[116.112345,33.3677223945313],[116.1356653125,33.3729494453125],[116.176451445313,33.3558168769531],[116.22142703125,33.3697585273438],[116.267345,33.3738430000001],[116.260831328125,33.3583388496094]]]]}},{"type":"Feature","properties":{"name":"蒙城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.711475859375,33.4709059882813],[116.721881132813,33.4583803535156],[116.747398710938,33.4473146796875],[116.801881132813,33.4137075019531],[116.792808867188,33.3783803535156],[116.781070585938,33.3471498847656],[116.797345,33.3038430000001],[116.80197390625,33.2784706855469],[116.827550078125,33.2177382636719],[116.81271609375,33.1684706855469],[116.759249296875,33.1523732734376],[116.763472929688,33.0998232246094],[116.74271609375,33.0626247382813],[116.76197390625,33.04847190625],[116.82197390625,33.0216970039063],[116.803922148438,32.9959035468751],[116.744166289063,33.0007057929688],[116.737345,32.933843],[116.707345,32.933843],[116.69326296875,32.9397585273438],[116.60142703125,32.9479274726563],[116.377345,33.003843],[116.365094023438,33.0515895820313],[116.335235625,33.0974404121094],[116.36326296875,33.1079274726563],[116.3720715625,33.1422670722656],[116.420943632813,33.1313112617188],[116.445279570313,33.2007460761719],[116.440557890625,33.2218056464844],[116.418541289063,33.2168691230469],[116.426148710938,33.2508168769532],[116.402345,33.2454799628907],[116.39326296875,33.2697585273438],[116.35142703125,33.2779274726563],[116.314542265625,33.2934206367187],[116.299176054688,33.3156740546875],[116.28142703125,33.3279274726563],[116.27326296875,33.3497585273438],[116.260831328125,33.3583388496094],[116.267345,33.3738430000001],[116.29142703125,33.3797585273438],[116.37781375,33.3883815742188],[116.40142703125,33.4297585273437],[116.41326296875,33.4379274726563],[116.42158328125,33.4601711250001],[116.487281523438,33.4440334296876],[116.52267703125,33.4670839667969],[116.527345,33.473843],[116.56545046875,33.4595241523438],[116.589420195313,33.4883803535157],[116.711475859375,33.4709059882813]]]]}},{"type":"Feature","properties":{"name":"涡阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.393985625,33.780483625],[116.400704375,33.767202375],[116.423985625,33.760483625],[116.43406375,33.74056175],[116.453985625,33.7304836250001],[116.460704375,33.717202375],[116.474293242188,33.7103273750001],[116.48966921875,33.6788430000001],[116.475504179688,33.6498329902344],[116.493985625,33.640483625],[116.50406375,33.62056175],[116.540704375,33.6020253730469],[116.533985625,33.567202375],[116.516641875,33.5453713203126],[116.534796171875,33.5088576484375],[116.52990359375,33.498843],[116.534796171875,33.4888283515625],[116.527345,33.473843],[116.52267703125,33.4670839667969],[116.487281523438,33.4440334296876],[116.42158328125,33.4601711250001],[116.41326296875,33.4379274726563],[116.40142703125,33.4297585273437],[116.37781375,33.3883815742188],[116.29142703125,33.3797585273438],[116.267345,33.3738430000001],[116.22142703125,33.3697585273438],[116.176451445313,33.3558168769531],[116.1356653125,33.3729494453125],[116.112345,33.3677223945313],[116.087017851563,33.3733998847657],[116.062789335938,33.357622296875],[116.051900664063,33.360063703125],[116.030025664063,33.3458193183594],[115.992789335938,33.3700637031251],[115.960338164063,33.3627895332032],[115.96431765625,33.3450380683594],[115.9290246875,33.3529494453125],[115.907345,33.343843],[115.900704375,33.347202375],[115.884859648438,33.3785195136719],[115.894796171875,33.3988576484375],[115.887345,33.4138430000001],[115.892154570313,33.4590334296875],[115.921793242188,33.4864955878907],[115.887940703125,33.5689138007813],[115.905045195313,33.6051638007813],[115.979595976563,33.5790334296875],[116.012550078125,33.5886562324219],[116.011749296875,33.6088430000001],[116.012926054688,33.6384682441407],[115.989019804688,33.673208234375],[116.01797,33.7180361152344],[116.075123320313,33.7316506171875],[116.059405546875,33.7764882636719],[116.067345,33.783843],[116.09298953125,33.7794863105469],[116.1060559375,33.7625551582032],[116.1286340625,33.7451308417969],[116.155264921875,33.7106288886719],[116.172735625,33.7080458808594],[116.19170046875,33.7194863105469],[116.21298953125,33.7281996894532],[116.232345,33.7398744941407],[116.254136992188,33.7267299628907],[116.27170046875,33.7494863105469],[116.30298953125,33.7581996894532],[116.317838164063,33.7774379707032],[116.337345,33.7803212714844],[116.352379179688,33.7780995917969],[116.387345,33.783843],[116.393985625,33.780483625]]]]}},{"type":"Feature","properties":{"name":"谯城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.802808867188,34.0593056464844],[115.842042265625,34.0310683417969],[115.855631132813,33.9997402167969],[115.875406523438,34.0235451484375],[115.909283476563,34.0041408515625],[115.917345,34.013843],[115.945513945313,34.0020119453125],[115.977345,33.993843],[115.999117460938,33.9608950019532],[115.98326296875,33.9379274726563],[115.965621367188,33.9257472968751],[116.00326296875,33.8997585273438],[116.01142703125,33.8879274726563],[116.049586210938,33.8661476875],[116.056827421875,33.8338430000001],[116.051124296875,33.8083913398438],[116.067345,33.783843],[116.059405546875,33.7764882636719],[116.075123320313,33.7316506171875],[116.01797,33.7180361152344],[115.989019804688,33.673208234375],[116.012926054688,33.6384682441407],[116.011749296875,33.6088430000001],[116.012550078125,33.5886562324219],[115.979595976563,33.5790334296875],[115.905045195313,33.6051638007813],[115.887940703125,33.5689138007813],[115.921793242188,33.4864955878907],[115.892154570313,33.4590334296875],[115.887345,33.4138430000001],[115.84271609375,33.4492153144531],[115.8116028125,33.4630995917969],[115.724293242188,33.5118117500001],[115.682066679688,33.5084194160157],[115.65560671875,33.5231801582032],[115.637345,33.583843],[115.62298953125,33.6194863105469],[115.60281375,33.6529360175782],[115.591363554688,33.7071938300781],[115.593160429688,33.7193544746094],[115.587345,33.7238430000001],[115.58244265625,33.7389430976563],[115.5622278125,33.7781850410157],[115.56252078125,33.7923403144531],[115.609410429688,33.7762905097656],[115.63172,33.8678090644531],[115.5324621875,33.8799379707031],[115.562447539063,33.9087465644531],[115.562139921875,33.923843],[115.562877226563,33.9599428535157],[115.582447539063,33.9787465644532],[115.582242460938,33.9889321113282],[115.595362578125,34.0272646308594],[115.64244265625,34.0387429023438],[115.647345,34.0638430000001],[115.662203398438,34.0581313300781],[115.722828398438,34.0719033027344],[115.787345,34.0638430000001],[115.802808867188,34.0593056464844]],[[116.035152617188,33.8272658515625],[116.047345,33.823843],[116.043922148438,33.8360353828125],[116.035152617188,33.8272658515625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东至县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.237345,30.203843],[117.225152617188,30.2004201484375],[117.233922148438,30.1916506171876],[117.280797148438,30.19890159375],[117.300367460938,30.168843],[117.274722929688,30.1294606757813],[117.304586210938,30.108843],[117.2905871875,30.09917503125],[117.266436796875,30.0620900703125],[117.261221953125,30.038843],[117.263468046875,30.0288430000001],[117.26107546875,30.0181716132813],[117.273858671875,30.0093459296875],[117.267345,29.993843],[117.1976575,29.9782497382813],[117.207345,29.933843],[117.19326296875,29.9279274726563],[117.15142703125,29.9197585273438],[117.119537382813,29.9063649726563],[117.127511015625,29.8707912421876],[117.067642851563,29.8304763007813],[117.130948515625,29.78784690625],[117.1007825,29.7489235664062],[117.115474882813,29.7263600898438],[117.09142703125,29.7097585273438],[117.087345,29.703843],[117.029527617188,29.6873268867188],[117.006558867188,29.6901833320313],[116.962896757813,29.6582888007812],[116.911793242188,29.6393971992188],[116.902896757813,29.6282888007813],[116.872769804688,29.6155959296875],[116.842896757813,29.5782888007813],[116.796920195313,29.5593971992188],[116.764610625,29.5997463203125],[116.746261015625,29.5974636054688],[116.722174101563,29.5673854804688],[116.710845976563,29.5942653632813],[116.677345,29.6038430000001],[116.6721496875,29.6215456367188],[116.643267851563,29.6455373359376],[116.683448515625,29.678911359375],[116.651241484375,29.6987746406251],[116.662808867188,29.7083815742188],[116.674908476563,29.7362795234375],[116.702808867188,29.7483815742188],[116.747271757813,29.80190940625],[116.782667265625,29.7983010078126],[116.823580351563,29.8217311835938],[116.821793242188,29.839233625],[116.84373171875,29.85745628125],[116.861881132813,29.8793044257813],[116.872808867188,29.8883815742188],[116.893428984375,29.9132057929688],[116.891324492188,29.933843],[116.894849882813,29.9684206367188],[116.868253203125,29.9799538398437],[116.832491484375,29.9763088203126],[116.822779570313,30.0093971992188],[116.793468046875,30.0064089179688],[116.747345,30.0638430000001],[116.822603789063,30.126733625],[116.850621367188,30.1592555976563],[116.86353640625,30.2161013007813],[116.91271609375,30.25847190625],[116.931510039063,30.2802834296875],[116.897345,30.353843],[116.89142703125,30.3779274726563],[116.88326296875,30.4376930976562],[116.96326296875,30.4579274726563],[116.99830203125,30.480747296875],[117.007345,30.493843],[117.027345,30.493843],[117.067345,30.503843],[117.134801054688,30.5012990546876],[117.159888945313,30.4763869453125],[117.197345,30.473843],[117.182203398438,30.437856671875],[117.151461210938,30.439077375],[117.127725859375,30.4134621406251],[117.102594023438,30.3901760078125],[117.172720976563,30.3790041328125],[117.160133085938,30.3552101875],[117.1824621875,30.297856671875],[117.22216921875,30.2994313789063],[117.232154570313,30.2886525703126],[117.257345,30.2838430000001],[117.252935820313,30.2680153632813],[117.23795046875,30.2702297187501],[117.211080351563,30.2592311835938],[117.22298953125,30.2394875312501],[117.237345,30.203843]],[[116.695152617188,29.6972658515626],[116.707345,29.693843],[116.703922148438,29.7060353828125],[116.695152617188,29.6972658515626]]]]}},{"type":"Feature","properties":{"name":"贵池区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.697345,30.803843],[117.70435671875,30.7936891914063],[117.742345,30.8022048164063],[117.756519804688,30.7643190742188],[117.797345,30.753843],[117.791627226563,30.7183596015625],[117.831793242188,30.7014357734375],[117.818961210938,30.6536086250001],[117.79095828125,30.6371486640625],[117.768267851563,30.6399709296876],[117.7206653125,30.5805251289063],[117.681666289063,30.5492971015626],[117.682965117188,30.538843],[117.68037234375,30.5179763007813],[117.700279570313,30.5204518867188],[117.702965117188,30.498843],[117.701475859375,30.4868508125],[117.790494414063,30.4493410468751],[117.781099882813,30.373843],[117.783004179688,30.358559796875],[117.777345,30.343843],[117.74806765625,30.325571515625],[117.692345,30.3300490546876],[117.68271609375,30.3084719062501],[117.670416289063,30.2978713203126],[117.674283476563,30.2497438789063],[117.63271609375,30.27921409375],[117.569967070313,30.2906618476563],[117.506651640625,30.2855739570313],[117.482569609375,30.339546125],[117.4573840625,30.3254958320313],[117.440728789063,30.3061598945313],[117.384586210938,30.3106716132813],[117.361363554688,30.2977175117188],[117.342345,30.2992458320312],[117.330728789063,30.2983107734376],[117.312022734375,30.3200221992188],[117.288253203125,30.3181130195313],[117.26271609375,30.28847190625],[117.257345,30.2838430000001],[117.232154570313,30.2886525703126],[117.22216921875,30.2994313789063],[117.1824621875,30.297856671875],[117.160133085938,30.3552101875],[117.172720976563,30.3790041328125],[117.102594023438,30.3901760078125],[117.127725859375,30.4134621406251],[117.151461210938,30.439077375],[117.182203398438,30.437856671875],[117.197345,30.473843],[117.225933867188,30.4893801093751],[117.247047148438,30.5716506171876],[117.227345,30.613843],[117.232667265625,30.6437233710938],[117.345596953125,30.6956081367188],[117.382608671875,30.699380109375],[117.43603640625,30.6793044257813],[117.48548953125,30.6915114570313],[117.501964140625,30.7294924140625],[117.571881132813,30.7593044257813],[117.647296171875,30.7814357734375],[117.697345,30.803843]]]]}},{"type":"Feature","properties":{"name":"青阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.983761015625,30.8285720039063],[117.960328398438,30.7983400703125],[117.98326296875,30.7897585273438],[117.991676054688,30.7775710273438],[118.002345,30.7799636054688],[118.012345,30.7777223945313],[118.02697390625,30.781001203125],[118.049176054688,30.7656740546875],[118.06142703125,30.7479274726563],[118.106744414063,30.739077375],[118.124913359375,30.6958229804687],[118.10142703125,30.6597585273438],[118.097345,30.643843],[118.093985625,30.637202375],[118.07406375,30.6271242500001],[118.063985625,30.607202375],[118.040704375,30.600483625],[118.013985625,30.5772023750001],[117.980704375,30.5704836250001],[117.973985625,30.527202375],[117.967345,30.5138430000001],[117.954342070313,30.5051979804688],[117.9287121875,30.4595827460938],[117.943785429688,30.4495607734375],[117.93982546875,30.433843],[117.950982695313,30.3895607734375],[117.921339140625,30.369848859375],[117.917345,30.3638430000001],[117.91142703125,30.3597585273438],[117.903013945313,30.3475710273437],[117.877345,30.353325421875],[117.82384890625,30.341333234375],[117.79509890625,30.3226125312501],[117.78326296875,30.3397585273438],[117.777345,30.343843],[117.783004179688,30.358559796875],[117.781099882813,30.373843],[117.790494414063,30.4493410468751],[117.701475859375,30.4868508125],[117.702965117188,30.498843],[117.700279570313,30.5204518867188],[117.68037234375,30.5179763007813],[117.682965117188,30.538843],[117.681666289063,30.5492971015626],[117.7206653125,30.5805251289063],[117.768267851563,30.6399709296876],[117.79095828125,30.6371486640625],[117.818961210938,30.6536086250001],[117.831793242188,30.7014357734375],[117.791627226563,30.7183596015625],[117.797345,30.753843],[117.80142703125,30.7597585273437],[117.827432890625,30.7694899726563],[117.84201296875,30.7906032539062],[117.87142703125,30.8097585273438],[117.90326296875,30.8179274726563],[117.932266875,30.8404055],[117.95959109375,30.8226125312501],[117.97142703125,30.8397585273437],[117.977345,30.843843],[117.983761015625,30.8285720039063]]]]}},{"type":"Feature","properties":{"name":"石台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.237345,30.203843],[117.233922148438,30.1916506171876],[117.225152617188,30.2004201484375],[117.237345,30.203843]]],[[[117.237345,30.203843],[117.22298953125,30.2394875312501],[117.211080351563,30.2592311835938],[117.23795046875,30.2702297187501],[117.252935820313,30.2680153632813],[117.257345,30.2838430000001],[117.26271609375,30.28847190625],[117.288253203125,30.3181130195313],[117.312022734375,30.3200221992188],[117.330728789063,30.2983107734376],[117.342345,30.2992458320312],[117.361363554688,30.2977175117188],[117.384586210938,30.3106716132813],[117.440728789063,30.3061598945313],[117.4573840625,30.3254958320313],[117.482569609375,30.339546125],[117.506651640625,30.2855739570313],[117.569967070313,30.2906618476563],[117.63271609375,30.27921409375],[117.674283476563,30.2497438789063],[117.670416289063,30.2978713203126],[117.68271609375,30.3084719062501],[117.692345,30.3300490546876],[117.74806765625,30.325571515625],[117.777345,30.343843],[117.78326296875,30.3397585273438],[117.79509890625,30.3226125312501],[117.82384890625,30.341333234375],[117.877345,30.353325421875],[117.903013945313,30.3475710273437],[117.91142703125,30.3597585273438],[117.917345,30.3638430000001],[117.931734648438,30.3514455390625],[117.932916289063,30.3367385078125],[117.88271609375,30.27847190625],[117.81271609375,30.2472365546876],[117.82197390625,30.2284719062501],[117.85627078125,30.2181447578125],[117.847345,30.193843],[117.818990507813,30.1859474921875],[117.772735625,30.1580471015625],[117.757345,30.1603200507813],[117.710299101563,30.1533693671875],[117.657345,30.113843],[117.622862578125,30.1064748359375],[117.60005984375,30.1319948554688],[117.561490507813,30.1181545234375],[117.5626965625,30.0979274726563],[117.530797148438,30.099829328125],[117.533233671875,30.0589479804688],[117.499542265625,30.0375197578126],[117.453101835938,30.0402883125],[117.441588164063,30.0273976875001],[117.393101835938,30.0302883125],[117.382628203125,30.0185622382813],[117.267345,29.993843],[117.273858671875,30.0093459296875],[117.26107546875,30.0181716132813],[117.263468046875,30.0288430000001],[117.261221953125,30.038843],[117.266436796875,30.0620900703125],[117.2905871875,30.09917503125],[117.304586210938,30.108843],[117.274722929688,30.1294606757813],[117.300367460938,30.168843],[117.280797148438,30.19890159375],[117.237345,30.203843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"广德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.387345,31.193843],[119.390709257813,31.1740627265625],[119.402345,31.1824440742188],[119.412345,31.1752419257813],[119.428121367188,31.186606671875],[119.450250273438,31.1667482734375],[119.527345,31.1638430000001],[119.531881132813,31.1583815742188],[119.55373171875,31.14022971875],[119.579073515625,31.1097243476563],[119.617345,31.133843],[119.621881132813,31.1183815742188],[119.63298953125,31.1091555],[119.622178984375,31.012778546875],[119.581881132813,30.9793044257813],[119.572808867188,30.9383815742187],[119.550328398438,30.8991310859376],[119.567345,30.853843],[119.56326296875,30.8379274726563],[119.55142703125,30.8297585273438],[119.51720828125,30.77894065625],[119.48142703125,30.7697585273438],[119.473092070313,30.7066506171875],[119.45326296875,30.6779274726562],[119.44142703125,30.6697585273438],[119.420714140625,30.6397585273438],[119.40142703125,30.6479274726563],[119.386461210938,30.6879274726563],[119.359469023438,30.6791188789063],[119.33142703125,30.6597585273438],[119.311119414063,30.6241725898438],[119.282345,30.6177223945313],[119.272345,30.6199636054688],[119.257345,30.6166017890625],[119.241676054688,30.6201149726563],[119.237345,30.613843],[119.193800078125,30.6208620429688],[119.162896757813,30.5982888007813],[119.139303007813,30.5893971992188],[119.143013945313,30.6192018867187],[119.12736453125,30.6458180976563],[119.111099882813,30.658843],[119.12334109375,30.6686428046876],[119.111793242188,30.6882888007812],[119.101261015625,30.7251247382813],[119.10392703125,30.7465431953126],[119.057345,30.7838430000001],[119.063985625,30.797202375],[119.067345,30.813843],[119.083033476563,30.852798078125],[119.10298953125,30.8681984687501],[119.11170046875,30.87948753125],[119.132178984375,30.8952931953125],[119.141754179688,30.9296706367188],[119.152345,30.9281032539063],[119.165855742188,30.9301003242188],[119.161607695313,30.958843],[119.163604765625,30.9723513007813],[119.192345,30.9681032539063],[119.225426054688,30.972993390625],[119.221549101563,30.999233625],[119.235338164063,31.0220949531251],[119.262345,31.0181032539062],[119.277345,31.0203200507813],[119.310806914063,31.0153762031251],[119.325260039063,31.0340993476563],[119.320865507813,31.063843],[119.323082304688,31.078843],[119.320557890625,31.095923078125],[119.287056914063,31.1217848945313],[119.304517851563,31.15073753125],[119.322735625,31.1480471015625],[119.352735625,31.1661428046876],[119.357345,31.2038430000001],[119.370704375,31.197202375],[119.387345,31.193843]]],[[[119.387345,31.193843],[119.390767851563,31.2060353828125],[119.399537382813,31.1972658515625],[119.387345,31.193843]]]]}},{"type":"Feature","properties":{"name":"绩溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.65326296875,30.3003102851563],[118.666011992188,30.2497585273438],[118.6836340625,30.2581032539062],[118.679132109375,30.2781716132812],[118.687345,30.2838430000001],[118.752257109375,30.299848859375],[118.812662382813,30.2877907539063],[118.861519804688,30.3096681953125],[118.877345,30.313843],[118.882647734375,30.2589089179688],[118.881607695313,30.2414577460938],[118.902061796875,30.2185622382813],[118.93091921875,30.2053176093751],[118.833428984375,30.160571515625],[118.892061796875,30.1469289375001],[118.882628203125,30.1285622382813],[118.872061796875,30.1191237617188],[118.867345,30.1038430000001],[118.83802859375,30.1153688789063],[118.79298953125,30.08819846875],[118.76447390625,30.076528546875],[118.742345,30.0898757148438],[118.705914335938,30.0678981757813],[118.675616484375,30.0286452460938],[118.610318632813,30.0175539375],[118.613082304688,29.998843],[118.610484648438,29.9812673164063],[118.58170046875,29.9694875312501],[118.5527746875,29.9480397773438],[118.526221953125,29.9519655585938],[118.512935820313,29.9996706367187],[118.49845828125,29.9975295234375],[118.505513945313,30.045298078125],[118.48463015625,30.0799196601562],[118.471954375,30.0780471015626],[118.42564578125,30.105981671875],[118.372345,30.0981032539063],[118.357838164063,30.1002468085938],[118.347345,30.113843],[118.357345,30.113843],[118.357345,30.123843],[118.38298953125,30.12819846875],[118.41170046875,30.16948753125],[118.42298953125,30.17819846875],[118.439127226563,30.2176296210938],[118.457345,30.2203200507813],[118.472345,30.2181032539062],[118.482345,30.2195827460938],[118.523219023438,30.2135427070313],[118.57170046875,30.24948753125],[118.59298953125,30.2581984687501],[118.609049101563,30.2974391914063],[118.62298953125,30.30819846875],[118.645264921875,30.3370583320313],[118.662486601563,30.3396022773438],[118.687345,30.3338430000001],[118.687345,30.3238430000001],[118.65326296875,30.3003102851563]]]]}},{"type":"Feature","properties":{"name":"郎溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.373248320313,31.2688600898438],[119.36170046875,31.23948753125],[119.357345,31.2038430000001],[119.352735625,31.1661428046876],[119.322735625,31.1480471015625],[119.304517851563,31.15073753125],[119.287056914063,31.1217848945313],[119.320557890625,31.095923078125],[119.323082304688,31.078843],[119.320865507813,31.063843],[119.325260039063,31.0340993476563],[119.310806914063,31.0153762031251],[119.277345,31.0203200507813],[119.262345,31.0181032539062],[119.235338164063,31.0220949531251],[119.221549101563,30.999233625],[119.225426054688,30.972993390625],[119.192345,30.9681032539063],[119.163604765625,30.9723513007813],[119.161607695313,30.958843],[119.165855742188,30.9301003242188],[119.152345,30.9281032539063],[119.141754179688,30.9296706367188],[119.132178984375,30.8952931953125],[119.11170046875,30.87948753125],[119.10298953125,30.8681984687501],[119.083033476563,30.852798078125],[119.067345,30.813843],[119.012921171875,30.8363503242188],[118.996954375,30.872134015625],[119.033194609375,30.9232497382813],[119.031944609375,30.9388430000001],[119.032745390625,30.948843],[119.031138945313,30.9688430000001],[119.033472929688,30.9978615546875],[119.013077421875,31.0344167304687],[118.9881653125,31.1259352851563],[119.011715117188,31.1462209296875],[119.02197390625,31.16921409375],[119.03369265625,31.1793093085938],[119.027345,31.2438430000001],[119.04478640625,31.2369875312501],[119.062345,31.2395827460938],[119.072345,31.2381032539063],[119.082345,31.2395827460938],[119.092857695313,31.2380275703126],[119.1074621875,31.2569533515626],[119.14298953125,31.27819846875],[119.15170046875,31.28948753125],[119.187345,31.303843],[119.19312625,31.28913596875],[119.190924101563,31.2742287421875],[119.23478640625,31.25698753125],[119.252345,31.2595827460938],[119.268345976563,31.2572170234376],[119.33298953125,31.26819846875],[119.356910429688,31.30819846875],[119.373248320313,31.2688600898438]]]]}},{"type":"Feature","properties":{"name":"宁国市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.10392703125,30.7465431953126],[119.101261015625,30.7251247382813],[119.111793242188,30.6882888007812],[119.12334109375,30.6686428046876],[119.111099882813,30.658843],[119.12736453125,30.6458180976563],[119.143013945313,30.6192018867187],[119.139303007813,30.5893971992188],[119.162896757813,30.5982888007813],[119.193800078125,30.6208620429688],[119.237345,30.613843],[119.25748171875,30.5833718085938],[119.228941679688,30.5465480781251],[119.25326296875,30.5297585273438],[119.266339140625,30.5108180976563],[119.322784453125,30.5345290351563],[119.33142703125,30.4479274726562],[119.34326296875,30.4397585273438],[119.35142703125,30.4179274726563],[119.363565703125,30.3992897773438],[119.361041289063,30.3880275703125],[119.39326296875,30.3797585273437],[119.397345,30.373843],[119.358204375,30.3494142890626],[119.316304960938,30.3727907539063],[119.27271609375,30.3484719062501],[119.24197390625,30.33921409375],[119.229522734375,30.2978639960937],[119.207345,30.2996462226562],[119.182345,30.2976369453125],[119.142828398438,30.3008132148438],[119.080206328125,30.3238088203125],[119.052623320313,30.3084181953125],[119.037862578125,30.3096047187501],[118.9973840625,30.3321901679688],[118.98271609375,30.3492140937501],[118.944215117188,30.3608058906251],[118.91271609375,30.33847190625],[118.88197390625,30.31921409375],[118.877345,30.313843],[118.861519804688,30.3096681953125],[118.812662382813,30.2877907539063],[118.752257109375,30.299848859375],[118.687345,30.2838430000001],[118.687345,30.3238430000001],[118.687345,30.3338430000001],[118.699176054688,30.3420119453125],[118.730806914063,30.3878224921875],[118.670011015625,30.4034255195313],[118.675709257813,30.428843],[118.667135039063,30.4670827460938],[118.65142703125,30.4779274726563],[118.64326296875,30.4897585273438],[118.617345,30.493843],[118.629410429688,30.5245314765626],[118.61052859375,30.5391042304687],[118.6460559375,30.5851296210938],[118.657345,30.5938430000001],[118.69255984375,30.5675588203126],[118.74298953125,30.57819846875],[118.76041140625,30.6007741523438],[118.80298953125,30.61819846875],[118.81170046875,30.63948753125],[118.82298953125,30.65819846875],[118.831754179688,30.7198513007813],[118.88170046875,30.7394875312501],[118.91298953125,30.74819846875],[118.94455203125,30.7606081367188],[118.98560671875,30.7358425117188],[119.02298953125,30.7581984687501],[119.057345,30.7838430000001],[119.10392703125,30.7465431953126]]]]}},{"type":"Feature","properties":{"name":"宣州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.517345,30.803843],[118.520767851563,30.7916506171875],[118.529537382813,30.8004201484376],[118.5137903125,30.8320192695313],[118.497345,30.8238430000001],[118.474830351563,30.8296218085938],[118.49408328125,30.8591896796875],[118.467862578125,30.8772951484375],[118.48326296875,30.8879274726563],[118.50662234375,30.9217604804688],[118.497345,30.9438430000001],[118.542061796875,30.9691237617188],[118.573551054688,30.9835768867188],[118.571495390625,31.01808128125],[118.590675078125,31.05337425],[118.606168242188,31.0196193671876],[118.646202421875,31.0413747382812],[118.673082304688,31.0714577460938],[118.672047148438,31.0888430000001],[118.673521757813,31.1136232734376],[118.723394804688,31.1581862617188],[118.650616484375,31.2468874335938],[118.657345,31.303843],[118.683985625,31.3072023750001],[118.717345,31.3238430000001],[118.721612578125,31.2881081367188],[118.766588164063,31.2759157539063],[118.784908476563,31.2298146796876],[118.887345,31.2474513984375],[118.942345,31.2379811835937],[118.957345,31.2405641914063],[118.989815703125,31.2349733710938],[119.027345,31.2438430000001],[119.03369265625,31.1793093085938],[119.02197390625,31.16921409375],[119.011715117188,31.1462209296875],[118.9881653125,31.1259352851563],[119.013077421875,31.0344167304687],[119.033472929688,30.9978615546875],[119.031138945313,30.9688430000001],[119.032745390625,30.948843],[119.031944609375,30.9388430000001],[119.033194609375,30.9232497382813],[118.996954375,30.872134015625],[119.012921171875,30.8363503242188],[119.067345,30.813843],[119.063985625,30.797202375],[119.057345,30.7838430000001],[119.02298953125,30.7581984687501],[118.98560671875,30.7358425117188],[118.94455203125,30.7606081367188],[118.91298953125,30.74819846875],[118.88170046875,30.7394875312501],[118.831754179688,30.7198513007813],[118.82298953125,30.65819846875],[118.81170046875,30.63948753125],[118.80298953125,30.61819846875],[118.76041140625,30.6007741523438],[118.74298953125,30.57819846875],[118.69255984375,30.5675588203126],[118.657345,30.5938430000001],[118.667550078125,30.6559670234375],[118.65170046875,30.66819846875],[118.64298953125,30.68948753125],[118.63170046875,30.70819846875],[118.6211340625,30.7461550117188],[118.59170046875,30.7581984687501],[118.572345,30.7698757148438],[118.545289335938,30.7535524726563],[118.5286340625,30.7751296210938],[118.5060559375,30.7925563789063],[118.497345,30.803843],[118.517345,30.803843]]]]}},{"type":"Feature","properties":{"name":"泾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.517345,30.803843],[118.529537382813,30.8004201484376],[118.520767851563,30.7916506171875],[118.517345,30.803843]]],[[[118.417345,30.813843],[118.417345,30.8238430000001],[118.430152617188,30.8188430000001],[118.417345,30.813843]]],[[[118.517345,30.803843],[118.497345,30.803843],[118.497345,30.8238430000001],[118.5137903125,30.8320192695313],[118.517345,30.803843]]],[[[118.417345,30.8238430000001],[118.404537382813,30.8188430000001],[118.417345,30.813843],[118.420704375,30.8072023750001],[118.443985625,30.8004836250001],[118.4507825,30.7769313789063],[118.473580351563,30.7657985664063],[118.482374296875,30.7962697578125],[118.497345,30.803843],[118.5060559375,30.7925563789063],[118.5286340625,30.7751296210938],[118.545289335938,30.7535524726563],[118.572345,30.7698757148438],[118.59170046875,30.7581984687501],[118.6211340625,30.7461550117188],[118.63170046875,30.70819846875],[118.64298953125,30.68948753125],[118.65170046875,30.66819846875],[118.667550078125,30.6559670234375],[118.657345,30.5938430000001],[118.6460559375,30.5851296210938],[118.61052859375,30.5391042304687],[118.629410429688,30.5245314765626],[118.617345,30.493843],[118.602940703125,30.4800026679687],[118.58244265625,30.4487429023438],[118.57224734375,30.4389430976563],[118.56244265625,30.4287429023438],[118.52224734375,30.4189430976563],[118.478897734375,30.3895583320313],[118.402056914063,30.4291432929688],[118.3714465625,30.4285182929688],[118.35244265625,30.4087429023438],[118.341832304688,30.3985475898438],[118.30232546875,30.3993532539063],[118.297345,30.373843],[118.253365507813,30.3854470039063],[118.243170195313,30.3996681953125],[118.225694609375,30.4121926093751],[118.207877226563,30.437055890625],[118.22388796875,30.4485329414063],[118.208360625,30.4729958320313],[118.173267851563,30.4660622382812],[118.153170195313,30.4380178046875],[118.111866484375,30.4271218085938],[118.096768828125,30.4662624335937],[118.113170195313,30.4780178046875],[118.121519804688,30.5079933906251],[118.061944609375,30.5199367500001],[118.026016875,30.4971291328126],[118.007345,30.5008180976563],[117.991900664063,30.4977663398438],[117.967345,30.5138430000001],[117.973985625,30.527202375],[117.980704375,30.5704836250001],[118.013985625,30.5772023750001],[118.040704375,30.600483625],[118.063985625,30.607202375],[118.07406375,30.6271242500001],[118.093985625,30.637202375],[118.097345,30.643843],[118.11205203125,30.64962425],[118.122803984375,30.6480373359375],[118.189371367188,30.70618675],[118.217345,30.7103200507813],[118.237345,30.7073659492188],[118.262345,30.711059796875],[118.310094023438,30.7040041328125],[118.29170046875,30.7181984687501],[118.28298953125,30.72948753125],[118.271173125,30.7386086250001],[118.291217070313,30.7718434882813],[118.303878203125,30.8173097968751],[118.34298953125,30.82819846875],[118.357838164063,30.8474391914063],[118.38408328125,30.8513161445313],[118.41298953125,30.83948753125],[118.417345,30.8238430000001]]]]}},{"type":"Feature","properties":{"name":"旌德县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.6836340625,30.2581032539062],[118.666011992188,30.2497585273438],[118.65326296875,30.3003102851563],[118.687345,30.3238430000001],[118.687345,30.2838430000001],[118.679132109375,30.2781716132812],[118.6836340625,30.2581032539062]]],[[[118.670011015625,30.4034255195313],[118.730806914063,30.3878224921875],[118.699176054688,30.3420119453125],[118.687345,30.3338430000001],[118.662486601563,30.3396022773438],[118.645264921875,30.3370583320313],[118.62298953125,30.30819846875],[118.609049101563,30.2974391914063],[118.59298953125,30.2581984687501],[118.57170046875,30.24948753125],[118.523219023438,30.2135427070313],[118.482345,30.2195827460938],[118.472345,30.2181032539062],[118.457345,30.2203200507813],[118.439127226563,30.2176296210938],[118.42298953125,30.17819846875],[118.41170046875,30.16948753125],[118.38298953125,30.12819846875],[118.357345,30.123843],[118.344971953125,30.1314675117188],[118.3298840625,30.1559474921876],[118.334151640625,30.1696486640626],[118.321158476563,30.1776564765625],[118.313531523438,30.1900295234375],[118.291158476563,30.1976564765625],[118.283531523438,30.2300295234376],[118.26048953125,30.2378835273437],[118.271827421875,30.2742800117188],[118.293531523438,30.2876564765625],[118.304039335938,30.3184889960938],[118.290709257813,30.3590261054688],[118.297345,30.373843],[118.30232546875,30.3993532539063],[118.341832304688,30.3985475898438],[118.35244265625,30.4087429023438],[118.3714465625,30.4285182929688],[118.402056914063,30.4291432929688],[118.478897734375,30.3895583320313],[118.52224734375,30.4189430976563],[118.56244265625,30.4287429023438],[118.57224734375,30.4389430976563],[118.58244265625,30.4487429023438],[118.602940703125,30.4800026679687],[118.617345,30.493843],[118.64326296875,30.4897585273438],[118.65142703125,30.4779274726563],[118.667135039063,30.4670827460938],[118.675709257813,30.428843],[118.670011015625,30.4034255195313]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.280704375,26.0704836250001],[119.267345,26.0638430000001],[119.25181765625,26.0716994453125],[119.247345,26.0938430000001],[119.253985625,26.107202375],[119.257345,26.123843],[119.304742460938,26.117915265625],[119.317345,26.073843],[119.280704375,26.0704836250001]]]]}},{"type":"Feature","properties":{"name":"仓山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.437345,25.9838430000001],[119.407345,25.963843],[119.38142703125,25.9679274726563],[119.33326296875,25.9797585273438],[119.280089140625,25.9881374335938],[119.238756132813,26.0166774726563],[119.21326296875,26.0773757148438],[119.223004179688,26.1040676093751],[119.247345,26.0938430000001],[119.25181765625,26.0716994453125],[119.267345,26.0638430000001],[119.270704375,26.057202375],[119.343985625,26.050483625],[119.357345,26.043843],[119.36201296875,26.0370827460937],[119.39142703125,26.0179274726563],[119.407345,26.013843],[119.410704375,26.0072023750001],[119.43062625,25.99712425],[119.437345,25.9838430000001]]]]}},{"type":"Feature","properties":{"name":"长乐市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.643922148438,25.6860353828125],[119.647345,25.6738430000001],[119.635152617188,25.6772658515625],[119.643922148438,25.6860353828125]]],[[[119.967345,25.953843],[119.963922148438,25.9416506171875],[119.955152617188,25.9504201484375],[119.967345,25.953843]]],[[[119.967345,25.953843],[119.970767851563,25.9660353828126],[119.979537382813,25.9572658515625],[119.967345,25.953843]]],[[[119.941910429688,25.9865407539063],[119.947345,25.973843],[119.924346953125,25.977895734375],[119.941910429688,25.9865407539063]]],[[[119.547345,26.073843],[119.547345,26.0638430000001],[119.557345,26.0638430000001],[119.557345,26.0538430000001],[119.567345,26.0538430000001],[119.577345,26.0538430000001],[119.582081328125,26.0477053046876],[119.63478640625,26.02698753125],[119.652857695313,26.0296584296876],[119.662857695313,26.0167018867188],[119.697086210938,26.0217604804687],[119.718228789063,26.0054396796875],[119.70298953125,25.96819846875],[119.69170046875,25.94948753125],[119.682647734375,25.9065822578126],[119.647603789063,25.9117604804688],[119.614132109375,25.8859230781251],[119.610865507813,25.8638430000001],[119.613824492188,25.843843],[119.609781523438,25.816489484375],[119.623775664063,25.7560842109375],[119.60170046875,25.71948753125],[119.586402617188,25.6821071601563],[119.577345,25.693843],[119.571217070313,25.7188014960938],[119.5777746875,25.7480690742188],[119.537686796875,25.7630690742188],[119.543663359375,25.7897121406251],[119.47142703125,25.7979274726562],[119.433873320313,25.8270363593751],[119.407345,25.8338430000001],[119.419610625,25.9085085273438],[119.399014921875,25.9426540351562],[119.407345,25.963843],[119.437345,25.9838430000001],[119.477345,25.9838430000001],[119.477345,26.003843],[119.497345,26.003843],[119.497345,26.0238430000001],[119.507345,26.0238430000001],[119.507345,26.033843],[119.507345,26.0538430000001],[119.53142703125,26.0697585273438],[119.547345,26.073843]]]]}},{"type":"Feature","properties":{"name":"福清市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.47334109375,25.356567609375],[119.477345,25.3338430000001],[119.464346953125,25.3394045234375],[119.47334109375,25.356567609375]]],[[[119.647345,25.353843],[119.650767851563,25.3660353828125],[119.659537382813,25.3572658515626],[119.647345,25.353843]]],[[[119.50334109375,25.386567609375],[119.507345,25.363843],[119.494346953125,25.3694045234375],[119.50334109375,25.386567609375]]],[[[119.393922148438,25.4460353828125],[119.397345,25.433843],[119.385152617188,25.4372658515626],[119.393922148438,25.4460353828125]]],[[[119.597345,25.503843],[119.597345,25.513843],[119.610152617188,25.508843],[119.597345,25.503843]]],[[[119.577345,25.573843],[119.582408476563,25.5973830390625],[119.600162382813,25.5863503242188],[119.577345,25.573843]]],[[[119.527345,25.623843],[119.530767851563,25.6360353828125],[119.539537382813,25.6272658515626],[119.527345,25.623843]]],[[[119.527345,25.623843],[119.533526640625,25.6091213203125],[119.528433867188,25.5863942695313],[119.577345,25.573843],[119.583150664063,25.5644216132813],[119.603922148438,25.5708913398438],[119.614151640625,25.5380373359375],[119.601158476563,25.5300295234375],[119.597345,25.513843],[119.567345,25.513843],[119.567345,25.503843],[119.555152617188,25.5004201484376],[119.563922148438,25.4916506171875],[119.567345,25.503843],[119.597345,25.503843],[119.600885039063,25.4973830390626],[119.61478640625,25.4897634101562],[119.606163359375,25.468843],[119.640885039063,25.4581154609375],[119.633804960938,25.4473830390625],[119.603804960938,25.4381154609375],[119.622042265625,25.4266579414063],[119.639263945313,25.433755109375],[119.670885039063,25.416421125],[119.663092070313,25.4064748359375],[119.643873320313,25.4143947578126],[119.65478640625,25.3879225898438],[119.640885039063,25.3803029609375],[119.633804960938,25.3673830390625],[119.616607695313,25.3579567695313],[119.647345,25.353843],[119.635777617188,25.3393971992188],[119.591656523438,25.3483180976563],[119.593013945313,25.3592018867188],[119.58134890625,25.3790431953126],[119.59322390625,25.3885500312501],[119.581685820313,25.418559796875],[119.582965117188,25.428843],[119.581724882813,25.438843],[119.583951445313,25.4567775703125],[119.561890898438,25.4595217109375],[119.552799101563,25.4481642890626],[119.534410429688,25.4504518867188],[119.531724882813,25.428843],[119.532965117188,25.418843],[119.530582304688,25.39968284375],[119.542843046875,25.39815940625],[119.555538359375,25.4282888007812],[119.567125273438,25.3985427070313],[119.536143828125,25.3598537421876],[119.501793242188,25.4182888007813],[119.487345,25.4538430000001],[119.497345,25.4538430000001],[119.497345,25.463843],[119.509537382813,25.4672658515626],[119.500767851563,25.4760353828125],[119.497345,25.463843],[119.487345,25.463843],[119.487345,25.4538430000001],[119.464405546875,25.462661359375],[119.447008085938,25.4409352851562],[119.454635039063,25.5022365546875],[119.403702421875,25.495903546875],[119.388453398438,25.5149489570313],[119.360308867188,25.5374831367188],[119.362999296875,25.5590993476562],[119.3530871875,25.5882888007813],[119.342896757813,25.5182888007813],[119.3288684375,25.48179221875],[119.334210234375,25.438843],[119.294410429688,25.4220729804688],[119.282896757813,25.4493971992188],[119.271612578125,25.4685988593751],[119.277345,25.4938430000001],[119.2900403125,25.4992775703126],[119.281397734375,25.516841046875],[119.277345,25.4938430000001],[119.262359648438,25.4863942695313],[119.24576296875,25.4944997382813],[119.223985625,25.4772023750001],[119.207345,25.473843],[119.21142703125,25.4897585273438],[119.22326296875,25.4979274726563],[119.237886992188,25.5191139960938],[119.227945585938,25.563462140625],[119.187017851563,25.5542873359376],[119.15970828125,25.5720729804687],[119.163565703125,25.5892946601563],[119.128389921875,25.6425246406251],[119.143526640625,25.6785646796876],[119.137135039063,25.7070827460938],[119.120103789063,25.7188430000001],[119.138863554688,25.7317971015625],[119.15142703125,25.7493190742188],[119.067345,25.7538430000001],[119.075655546875,25.7862233710937],[119.107345,25.793325421875],[119.134620390625,25.7872121406251],[119.16326296875,25.7979274726562],[119.17201296875,25.8106032539063],[119.20142703125,25.8297585273438],[119.217345,25.8338430000001],[119.233018828125,25.8268215156251],[119.241158476563,25.8400295234375],[119.276178007813,25.8519655585938],[119.291539335938,25.8270339179688],[119.311539335938,25.8332643867188],[119.323638945313,25.8136257148437],[119.385553007813,25.7925270820312],[119.407345,25.8338430000001],[119.433873320313,25.8270363593751],[119.47142703125,25.7979274726562],[119.543663359375,25.7897121406251],[119.537686796875,25.7630690742188],[119.5777746875,25.7480690742188],[119.571217070313,25.7188014960938],[119.577345,25.693843],[119.496007109375,25.6870436835938],[119.460465117188,25.6672170234375],[119.463428984375,25.6303639960938],[119.527345,25.623843]],[[119.325152617188,25.5772658515625],[119.337345,25.573843],[119.333922148438,25.5860353828126],[119.325152617188,25.5772658515625]],[[119.30334109375,25.5665676093751],[119.294346953125,25.5494045234375],[119.307345,25.543843],[119.30334109375,25.5665676093751]],[[119.285152617188,25.5272658515625],[119.297345,25.5238430000001],[119.293922148438,25.5360353828125],[119.285152617188,25.5272658515625]]]]}},{"type":"Feature","properties":{"name":"晋安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.280323515625,26.3610939765626],[119.302579375,26.3476686835938],[119.318424101563,26.36819846875],[119.343345976563,26.3206130195313],[119.336944609375,26.2773146796876],[119.3560559375,26.2525563789063],[119.38162234375,26.2328224921875],[119.394605742188,26.2011037421875],[119.4311340625,26.1861550117188],[119.437345,26.163843],[119.431217070313,26.1388845039063],[119.43361453125,26.1281716132813],[119.42107546875,26.1195143867188],[119.425557890625,26.0995143867188],[119.41142703125,26.0897585273438],[119.407345,26.013843],[119.39142703125,26.0179274726563],[119.36201296875,26.0370827460937],[119.357345,26.043843],[119.371085234375,26.0544484687501],[119.32170046875,26.0681984687501],[119.317345,26.073843],[119.304742460938,26.117915265625],[119.257345,26.123843],[119.237486601563,26.1365554023438],[119.247203398438,26.1711305976563],[119.215909453125,26.1911647773437],[119.21093875,26.2088430000001],[119.219586210938,26.23960471875],[119.176724882813,26.2670436835938],[119.194488554688,26.2784157539063],[119.173648710938,26.308843],[119.193878203125,26.338384015625],[119.188131132813,26.3588430000001],[119.2180871875,26.3693801093751],[119.231246367188,26.3899391914063],[119.237345,26.393843],[119.281627226563,26.4112502265626],[119.287345,26.4038430000001],[119.280323515625,26.3610939765626]],[[119.265152617188,26.3472658515626],[119.277345,26.343843],[119.273922148438,26.3560353828125],[119.265152617188,26.3472658515626]]]]}},{"type":"Feature","properties":{"name":"连江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.667345,26.123843],[119.679537382813,26.1204201484376],[119.670767851563,26.1116506171876],[119.667345,26.123843]]],[[[119.643922148438,26.1260353828125],[119.647345,26.113843],[119.635152617188,26.1172658515626],[119.643922148438,26.1260353828125]]],[[[119.667345,26.123843],[119.657345,26.123843],[119.657345,26.143843],[119.67547,26.1401833320313],[119.667345,26.123843]]],[[[119.947345,26.153843],[119.950767851563,26.1660353828125],[119.959537382813,26.1572658515626],[119.947345,26.153843]]],[[[119.947345,26.153843],[119.9376184375,26.1397585273438],[119.907257109375,26.1492287421876],[119.922003203125,26.1705886054688],[119.947345,26.153843]]],[[[120.013922148438,26.2160353828125],[120.017345,26.203843],[120.005152617188,26.2072658515625],[120.013922148438,26.2160353828125]]],[[[120.007345,26.233843],[119.999176054688,26.2220119453125],[119.98142703125,26.2097585273438],[119.9676184375,26.1897585273437],[119.972066679688,26.224790265625],[120.007345,26.233843]]],[[[120.007345,26.233843],[120.007345,26.243843],[120.020152617188,26.238843],[120.007345,26.233843]]],[[[120.007345,26.243843],[119.995152617188,26.2472658515625],[120.003922148438,26.2560353828125],[120.007345,26.243843]]],[[[119.987345,26.273843],[119.983922148438,26.2616506171875],[119.975152617188,26.2704201484376],[119.987345,26.273843]]],[[[119.987345,26.273843],[119.990767851563,26.2860353828125],[119.999537382813,26.2772658515626],[119.987345,26.273843]]],[[[119.787345,26.2938430000001],[119.8095325,26.290610578125],[119.790494414063,26.2722292304688],[119.787345,26.2938430000001]]],[[[119.893922148438,26.3060353828126],[119.897345,26.2938430000001],[119.885152617188,26.2972658515625],[119.893922148438,26.3060353828126]]],[[[119.273922148438,26.3560353828125],[119.277345,26.343843],[119.265152617188,26.3472658515626],[119.273922148438,26.3560353828125]]],[[[120.487345,26.3638430000001],[120.483922148438,26.3516506171876],[120.475152617188,26.3604201484375],[120.487345,26.3638430000001]]],[[[120.487345,26.3638430000001],[120.487345,26.373843],[120.500152617188,26.3688430000001],[120.487345,26.3638430000001]]],[[[119.973922148438,26.3760353828125],[119.977345,26.3638430000001],[119.965152617188,26.3672658515625],[119.973922148438,26.3760353828125]]],[[[120.487345,26.373843],[120.475152617188,26.3772658515625],[120.483922148438,26.3860353828126],[120.487345,26.373843]]],[[[119.913922148438,26.4260353828126],[119.917345,26.413843],[119.905152617188,26.4172658515626],[119.913922148438,26.4260353828126]]],[[[119.857345,26.3238430000001],[119.869537382813,26.3272658515625],[119.860767851563,26.3360353828125],[119.837345,26.33378440625],[119.790728789063,26.3106130195313],[119.787345,26.2938430000001],[119.761763945313,26.3000075507813],[119.752965117188,26.2877321601563],[119.741910429688,26.28991721875],[119.722779570313,26.27776878125],[119.702345,26.2818068671875],[119.6383215625,26.2691555],[119.627345,26.2538430000001],[119.615152617188,26.2504201484375],[119.623922148438,26.2416506171875],[119.627345,26.2538430000001],[119.661011992188,26.2490749335938],[119.65062625,26.218843],[119.654410429688,26.2078249335938],[119.631065703125,26.200122296875],[119.623624296875,26.187563703125],[119.611065703125,26.1801222968751],[119.607345,26.1738430000001],[119.595152617188,26.1704201484375],[119.603922148438,26.1616506171876],[119.607345,26.1738430000001],[119.642940703125,26.1647096992188],[119.657345,26.143843],[119.642584257813,26.1373708320313],[119.606158476563,26.1476076484376],[119.597345,26.1338430000001],[119.587345,26.1338430000001],[119.560704375,26.130483625],[119.547345,26.123843],[119.53142703125,26.1279274726563],[119.496246367188,26.1508376289063],[119.475264921875,26.1461354804688],[119.437345,26.163843],[119.4311340625,26.1861550117188],[119.394605742188,26.2011037421875],[119.38162234375,26.2328224921875],[119.3560559375,26.2525563789063],[119.336944609375,26.2773146796876],[119.343345976563,26.3206130195313],[119.318424101563,26.36819846875],[119.302579375,26.3476686835938],[119.280323515625,26.3610939765626],[119.287345,26.4038430000001],[119.293170195313,26.4080178046875],[119.310484648438,26.4321755195313],[119.352891875,26.423794171875],[119.392945585938,26.4402541328125],[119.404595976563,26.4100466132813],[119.440015898438,26.3996681953125],[119.471519804688,26.4196681953126],[119.522945585938,26.4299782539063],[119.531724882813,26.4177321601563],[119.542345,26.4198317695313],[119.555011015625,26.4173293281251],[119.548648710938,26.3851491523438],[119.572345,26.3898317695313],[119.582345,26.3878542304688],[119.598121367188,26.3909719062501],[119.611519804688,26.4096681953126],[119.645933867188,26.4229421210938],[119.637345,26.4438430000001],[119.66033328125,26.4374416328125],[119.663082304688,26.418843],[119.65373171875,26.3555544257813],[119.693170195313,26.3394142890625],[119.690494414063,26.3213332343751],[119.727086210938,26.3159255195313],[119.753463164063,26.33628440625],[119.74845828125,26.3701564765625],[119.783658476563,26.3649538398438],[119.781402617188,26.3802321601563],[119.818424101563,26.42819846875],[119.855382109375,26.4000466132813],[119.840611601563,26.3886452460938],[119.864561796875,26.378843],[119.860924101563,26.3542263007812],[119.9062121875,26.3475319648438],[119.93298953125,26.36819846875],[119.948424101563,26.38819846875],[119.94298953125,26.35819846875],[119.901529570313,26.3293679023438],[119.903433867188,26.3164650703125],[119.882345,26.3195827460938],[119.862857695313,26.3167018867187],[119.857345,26.3238430000001]]]]}},{"type":"Feature","properties":{"name":"罗源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.466002226563,26.6375099921876],[119.518082304688,26.6035939765625],[119.53142703125,26.5679274726563],[119.55978640625,26.5483498359375],[119.59326296875,26.5397585273438],[119.622066679688,26.5276589179688],[119.637345,26.5310842109375],[119.658375273438,26.5263698554688],[119.69033328125,26.5726564765626],[119.733013945313,26.5630886054688],[119.747345,26.583843],[119.767345,26.583843],[119.767345,26.573843],[119.777345,26.573843],[119.760596953125,26.548501203125],[119.7741028125,26.5391750312501],[119.79408328125,26.5084963203125],[119.780103789063,26.498843],[119.79326296875,26.4897585273438],[119.80142703125,26.4779274726563],[119.81978640625,26.4652516914063],[119.825308867188,26.4406276679688],[119.812345,26.4377223945313],[119.79037234375,26.4426491523438],[119.797745390625,26.4097585273438],[119.759429960938,26.4183766914062],[119.78142703125,26.4335671210938],[119.742628203125,26.4500270820313],[119.724459257813,26.4459548164062],[119.70326296875,26.4597585273438],[119.68142703125,26.4679274726563],[119.658599882813,26.5079274726563],[119.63142703125,26.4897585273438],[119.621676054688,26.4756301093751],[119.569312773438,26.4873683906251],[119.573468046875,26.468843],[119.56724734375,26.4411061835938],[119.582345,26.4377223945313],[119.592345,26.4399636054688],[119.607613554688,26.4365407539063],[119.637345,26.4438430000001],[119.645933867188,26.4229421210938],[119.611519804688,26.4096681953126],[119.598121367188,26.3909719062501],[119.582345,26.3878542304688],[119.572345,26.3898317695313],[119.548648710938,26.3851491523438],[119.555011015625,26.4173293281251],[119.542345,26.4198317695313],[119.531724882813,26.4177321601563],[119.522945585938,26.4299782539063],[119.471519804688,26.4196681953126],[119.440015898438,26.3996681953125],[119.404595976563,26.4100466132813],[119.392945585938,26.4402541328125],[119.352891875,26.423794171875],[119.310484648438,26.4321755195313],[119.293170195313,26.4080178046875],[119.287345,26.4038430000001],[119.281627226563,26.4112502265626],[119.237345,26.393843],[119.233985625,26.400483625],[119.220704375,26.407202375],[119.213985625,26.4204836250001],[119.158839140625,26.4481374335938],[119.175850859375,26.4695485664063],[119.13107546875,26.4920388007813],[119.127345,26.543843],[119.1588684375,26.54894065625],[119.197779570313,26.5736428046875],[119.218375273438,26.5202468085938],[119.243170195313,26.5380178046876],[119.252037382813,26.5503884101563],[119.272984648438,26.5370876289063],[119.284654570313,26.5953029609375],[119.322779570313,26.58776878125],[119.341519804688,26.5996681953126],[119.363170195313,26.6080178046875],[119.387345,26.623843],[119.412301054688,26.6299733710938],[119.422345,26.6277223945313],[119.466002226563,26.6375099921876]]]]}},{"type":"Feature","properties":{"name":"马尾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.627535429688,26.11866721875],[119.644283476563,26.0677468085938],[119.581158476563,26.0600295234375],[119.577345,26.0538430000001],[119.567345,26.0538430000001],[119.567345,26.0638430000001],[119.557345,26.0638430000001],[119.557345,26.073843],[119.547345,26.073843],[119.552525664063,26.1067067695313],[119.58326296875,26.1279274726563],[119.587345,26.1338430000001],[119.597345,26.1338430000001],[119.601158476563,26.1276564765625],[119.627535429688,26.11866721875]]],[[[119.437345,26.163843],[119.475264921875,26.1461354804688],[119.496246367188,26.1508376289063],[119.53142703125,26.1279274726563],[119.547345,26.123843],[119.51142703125,26.0697585273438],[119.507345,26.0538430000001],[119.507345,26.033843],[119.497345,26.033843],[119.497345,26.0238430000001],[119.48406375,26.0171242500001],[119.477345,26.003843],[119.477345,25.9838430000001],[119.437345,25.9838430000001],[119.43062625,25.99712425],[119.410704375,26.0072023750001],[119.407345,26.013843],[119.41142703125,26.0897585273438],[119.425557890625,26.0995143867188],[119.42107546875,26.1195143867188],[119.43361453125,26.1281716132813],[119.431217070313,26.1388845039063],[119.437345,26.163843]]]]}},{"type":"Feature","properties":{"name":"闽侯县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.107345,25.953843],[119.119537382813,25.9572658515625],[119.110767851563,25.9660353828126],[119.099503203125,25.9594631171875],[119.10341921875,25.9792751289062],[119.088638945313,26.0025563789063],[119.011519804688,26.0180178046875],[119.002965117188,26.0299538398438],[118.982345,26.0258791328125],[118.947393828125,26.0327858710938],[118.932999296875,26.0701174140625],[118.883604765625,26.0551125312501],[118.877345,26.0638430000001],[118.88170046875,26.06948753125],[118.89500125,26.1504494453125],[118.92298953125,26.1881984687501],[118.93170046875,26.22948753125],[118.95298953125,26.2581984687501],[118.956143828125,26.27819846875],[118.92298953125,26.2581984687501],[118.885660429688,26.2429201484375],[118.86298953125,26.2677346015625],[118.89298953125,26.30819846875],[118.90170046875,26.3494875312501],[118.92162234375,26.3648635078125],[118.93170046875,26.3894875312501],[118.94298953125,26.39819846875],[118.9560559375,26.4151296210938],[118.987921171875,26.4397243476563],[119.013917265625,26.4831935859375],[119.01093875,26.5033498359375],[118.991314726563,26.5184987617188],[118.997345,26.533843],[119.007345,26.533843],[119.010767851563,26.5216506171875],[119.019537382813,26.5304201484376],[119.007345,26.533843],[119.007345,26.543843],[118.997345,26.543843],[118.990323515625,26.559516828125],[119.003531523438,26.5676564765626],[119.017164335938,26.6076564765626],[119.067198515625,26.5994264960938],[119.06047,26.5778176093751],[119.093531523438,26.5700295234376],[119.106666289063,26.5487136054688],[119.127345,26.543843],[119.13107546875,26.4920388007813],[119.175850859375,26.4695485664063],[119.158839140625,26.4481374335938],[119.213985625,26.4204836250001],[119.220704375,26.407202375],[119.233985625,26.400483625],[119.237345,26.393843],[119.231246367188,26.3899391914063],[119.2180871875,26.3693801093751],[119.188131132813,26.3588430000001],[119.193878203125,26.338384015625],[119.173648710938,26.308843],[119.194488554688,26.2784157539063],[119.176724882813,26.2670436835938],[119.219586210938,26.23960471875],[119.21093875,26.2088430000001],[119.215909453125,26.1911647773437],[119.247203398438,26.1711305976563],[119.237486601563,26.1365554023438],[119.257345,26.123843],[119.253985625,26.107202375],[119.247345,26.0938430000001],[119.223004179688,26.1040676093751],[119.21326296875,26.0773757148438],[119.238756132813,26.0166774726563],[119.280089140625,25.9881374335938],[119.33326296875,25.9797585273438],[119.38142703125,25.9679274726563],[119.407345,25.963843],[119.399014921875,25.9426540351562],[119.419610625,25.9085085273438],[119.407345,25.8338430000001],[119.385553007813,25.7925270820312],[119.323638945313,25.8136257148437],[119.311539335938,25.8332643867188],[119.291539335938,25.8270339179688],[119.276178007813,25.8519655585938],[119.241158476563,25.8400295234375],[119.233018828125,25.8268215156251],[119.217345,25.8338430000001],[119.20142703125,25.8579274726563],[119.19326296875,25.8797585273438],[119.156304960938,25.9008522773438],[119.134459257813,25.8959548164063],[119.11228640625,25.9103932929688],[119.107345,25.953843]]]]}},{"type":"Feature","properties":{"name":"闽清县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.587345,26.0638430000001],[118.590767851563,26.0516506171875],[118.599537382813,26.0604201484375],[118.594820585938,26.0791970039063],[118.574224882813,26.1057692695313],[118.585123320313,26.1300270820313],[118.553892851563,26.1393532539063],[118.560797148438,26.1803932929688],[118.567345,26.183843],[118.570767851563,26.1716506171875],[118.579537382813,26.1804201484375],[118.567345,26.183843],[118.580704375,26.210483625],[118.605391875,26.2176076484375],[118.599195585938,26.2302931953126],[118.659263945313,26.2378688789063],[118.667345,26.2538430000001],[118.663985625,26.2704836250001],[118.657345,26.2838430000001],[118.693800078125,26.2939943671875],[118.689913359375,26.3203102851563],[118.725889921875,26.3420143867188],[118.778531523438,26.334233625],[118.796334257813,26.3637477851563],[118.750206328125,26.3993556953125],[118.753463164063,26.4214015937501],[118.72298953125,26.4449245429688],[118.73170046875,26.4694875312501],[118.744327421875,26.4904201484376],[118.740225859375,26.51819846875],[118.77298953125,26.5094875312501],[118.78170046875,26.49819846875],[118.79298953125,26.48948753125],[118.809698515625,26.4294875312501],[118.848707304688,26.4396950507813],[118.876549101563,26.4757692695312],[118.912345,26.481059796875],[118.944947539063,26.4762429023438],[118.939429960938,26.5135866523438],[118.95170046875,26.52948753125],[118.997345,26.533843],[118.991314726563,26.5184987617188],[119.01093875,26.5033498359375],[119.013917265625,26.4831935859375],[118.987921171875,26.4397243476563],[118.9560559375,26.4151296210938],[118.94298953125,26.39819846875],[118.93170046875,26.3894875312501],[118.92162234375,26.3648635078125],[118.90170046875,26.3494875312501],[118.89298953125,26.30819846875],[118.86298953125,26.2677346015625],[118.885660429688,26.2429201484375],[118.92298953125,26.2581984687501],[118.956143828125,26.27819846875],[118.95298953125,26.2581984687501],[118.93170046875,26.22948753125],[118.92298953125,26.1881984687501],[118.89500125,26.1504494453125],[118.88170046875,26.06948753125],[118.877345,26.0638430000001],[118.843839140625,26.0708522773438],[118.831788359375,26.05784690625],[118.832550078125,26.0386647773437],[118.822154570313,26.0290334296875],[118.812535429688,26.0086525703125],[118.782154570313,25.9890334296875],[118.766202421875,25.9718166328125],[118.749703398438,25.9197096992187],[118.722408476563,25.9491701484376],[118.702310820313,25.9385329414063],[118.662437773438,25.9691091132813],[118.622198515625,25.9585646796875],[118.612535429688,25.9790334296876],[118.59000125,26.011782453125],[118.5371496875,25.9932595039063],[118.522535429688,26.0090334296875],[118.507345,26.013843],[118.5146496875,26.0435720039063],[118.511021757813,26.0597365546876],[118.587345,26.0638430000001]]],[[[119.007345,26.533843],[119.019537382813,26.5304201484376],[119.010767851563,26.5216506171875],[119.007345,26.533843]]],[[[119.007345,26.533843],[118.997345,26.533843],[118.997345,26.543843],[119.007345,26.543843],[119.007345,26.533843]]]]}},{"type":"Feature","properties":{"name":"平潭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.723922148438,25.2860353828125],[119.727345,25.273843],[119.715152617188,25.2772658515626],[119.723922148438,25.2860353828125]]],[[[119.743922148438,25.3060353828125],[119.747345,25.2938430000001],[119.735152617188,25.2972658515625],[119.743922148438,25.3060353828125]]],[[[119.763922148438,25.3060353828125],[119.767345,25.2938430000001],[119.755152617188,25.2972658515625],[119.763922148438,25.3060353828125]]],[[[119.703619414063,25.3393801093751],[119.697345,25.313843],[119.68326296875,25.3235671210938],[119.695553007813,25.3479274726563],[119.703619414063,25.3393801093751]]],[[[119.729097929688,25.3881764960937],[119.717345,25.353843],[119.69244265625,25.3619240546876],[119.729097929688,25.3881764960937]]],[[[119.797345,25.4538430000001],[119.809537382813,25.4504201484375],[119.800767851563,25.4416506171875],[119.797345,25.4538430000001]]],[[[119.877345,25.5638430000001],[119.880767851563,25.5760353828125],[119.889537382813,25.5672658515625],[119.877345,25.5638430000001]]],[[[119.837345,25.573843],[119.840767851563,25.5860353828126],[119.849537382813,25.5772658515625],[119.837345,25.573843]]],[[[119.884835234375,25.6066603828125],[119.897345,25.583843],[119.873804960938,25.5889064765625],[119.884835234375,25.6066603828125]]],[[[119.803922148438,25.6560353828126],[119.807345,25.6438430000001],[119.795152617188,25.6472658515625],[119.803922148438,25.6560353828126]]],[[[119.837345,25.573843],[119.837345,25.5638430000001],[119.877345,25.5638430000001],[119.8663684375,25.5460329414063],[119.836168242188,25.5554396796876],[119.803531523438,25.5353322578125],[119.811851835938,25.4942360664063],[119.861158476563,25.4774318671875],[119.85302859375,25.4563430000001],[119.825987578125,25.4753298164063],[119.801158476563,25.4600295234375],[119.797345,25.4538430000001],[119.782154570313,25.4490334296876],[119.747750273438,25.4369753242188],[119.771392851563,25.3922951484375],[119.732535429688,25.4190334296875],[119.710850859375,25.4292678046875],[119.697345,25.4438430000001],[119.709537382813,25.4472658515625],[119.700767851563,25.4560353828125],[119.697345,25.4438430000001],[119.689918242188,25.450014875],[119.692896757813,25.4792336250001],[119.672808867188,25.4959181953125],[119.70205203125,25.5093825507813],[119.721685820313,25.5073805976563],[119.722896757813,25.5192336250001],[119.711793242188,25.5284523750001],[119.714283476563,25.55284690625],[119.702808867188,25.5793044257813],[119.683267851563,25.5955373359375],[119.722808867188,25.6283815742188],[119.731954375,25.6393923164063],[119.742735625,25.6382936835938],[119.759107695313,25.65800315625],[119.784049101563,25.6605446601563],[119.7688684375,25.6340456367188],[119.782735625,25.6173537421876],[119.809796171875,25.62011253125],[119.833824492188,25.6001540351562],[119.82142703125,25.5785134101563],[119.837345,25.573843]],[[119.743922148438,25.5160353828125],[119.735152617188,25.5072658515626],[119.747345,25.503843],[119.743922148438,25.5160353828125]]],[[[119.657345,25.653843],[119.672330351563,25.6612917304688],[119.692345,25.6515163398438],[119.720704375,25.6653664375001],[119.713643828125,25.6357668281251],[119.692345,25.6461696601563],[119.667393828125,25.6339821601563],[119.657345,25.653843]]],[[[119.608492460938,25.668051984375],[119.587345,25.633843],[119.556226835938,25.6396511054687],[119.608492460938,25.668051984375]]],[[[119.657345,25.653843],[119.647345,25.653843],[119.647345,25.6738430000001],[119.657345,25.6738430000001],[119.657345,25.653843]]]]}},{"type":"Feature","properties":{"name":"台江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.371085234375,26.0544484687501],[119.357345,26.043843],[119.343985625,26.050483625],[119.270704375,26.057202375],[119.267345,26.0638430000001],[119.280704375,26.0704836250001],[119.317345,26.073843],[119.32170046875,26.0681984687501],[119.371085234375,26.0544484687501]]]]}},{"type":"Feature","properties":{"name":"永泰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.727345,25.6838430000001],[118.723922148438,25.6716506171875],[118.715152617188,25.6804201484375],[118.727345,25.6838430000001]]],[[[119.107345,25.953843],[119.110767851563,25.9660353828126],[119.119537382813,25.9572658515625],[119.107345,25.953843]]],[[[119.107345,25.953843],[119.11228640625,25.9103932929688],[119.134459257813,25.8959548164063],[119.156304960938,25.9008522773438],[119.19326296875,25.8797585273438],[119.20142703125,25.8579274726563],[119.217345,25.8338430000001],[119.20142703125,25.8297585273438],[119.17201296875,25.8106032539063],[119.16326296875,25.7979274726562],[119.134620390625,25.7872121406251],[119.107345,25.793325421875],[119.075655546875,25.7862233710937],[119.067345,25.7538430000001],[118.971519804688,25.7296681953126],[118.944132109375,25.7122805],[118.953453398438,25.7594582343751],[118.9418371875,25.7680178046875],[118.908995390625,25.722192609375],[118.861519804688,25.7096681953125],[118.847345,25.703843],[118.809073515625,25.7279616523438],[118.784971953125,25.6989479804688],[118.727345,25.6838430000001],[118.72158328125,25.6928444648438],[118.702345,25.68743675],[118.672471953125,25.6958327460938],[118.658531523438,25.7176076484375],[118.602471953125,25.7018532539063],[118.59158328125,25.6848415351563],[118.572345,25.69024925],[118.550279570313,25.684048078125],[118.537345,25.663843],[118.52170046875,25.66819846875],[118.494449492188,25.6846364570312],[118.47427859375,25.7107741523438],[118.43170046875,25.7281984687501],[118.406749296875,25.7965822578126],[118.381226835938,25.8162844062501],[118.38375125,25.8333498359375],[118.413507109375,25.8563185859375],[118.407345,25.893843],[118.413985625,25.8972023750001],[118.428121367188,25.9251418281251],[118.452447539063,25.9058180976563],[118.462345,25.8715163398438],[118.470704375,25.900483625],[118.503985625,25.907202375],[118.514859648438,25.9286965156251],[118.50990359375,25.938843],[118.51966921875,25.958843],[118.50990359375,25.9788430000001],[118.517257109375,25.9939015937501],[118.507345,26.013843],[118.522535429688,26.0090334296875],[118.5371496875,25.9932595039063],[118.59000125,26.011782453125],[118.612535429688,25.9790334296876],[118.622198515625,25.9585646796875],[118.662437773438,25.9691091132813],[118.702310820313,25.9385329414063],[118.722408476563,25.9491701484376],[118.749703398438,25.9197096992187],[118.766202421875,25.9718166328125],[118.782154570313,25.9890334296875],[118.812535429688,26.0086525703125],[118.822154570313,26.0290334296875],[118.832550078125,26.0386647773437],[118.831788359375,26.05784690625],[118.843839140625,26.0708522773438],[118.877345,26.0638430000001],[118.883604765625,26.0551125312501],[118.932999296875,26.0701174140625],[118.947393828125,26.0327858710938],[118.982345,26.0258791328125],[119.002965117188,26.0299538398438],[119.011519804688,26.0180178046875],[119.088638945313,26.0025563789063],[119.10341921875,25.9792751289062],[119.099503203125,25.9594631171875],[119.107345,25.953843]],[[118.505152617188,25.8872658515626],[118.517345,25.883843],[118.513922148438,25.8960353828125],[118.505152617188,25.8872658515626]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海沧区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.031256132813,24.4693483710938],[118.036046171875,24.4451174140626],[117.963170195313,24.4596681953125],[117.957345,24.4638430000001],[117.952877226563,24.5031179023438],[117.93142703125,24.5179274726563],[117.92326296875,24.5297585273438],[117.91142703125,24.5379274726563],[117.90326296875,24.5697585273438],[117.887345,24.593843],[117.890704375,24.610483625],[117.913985625,24.617202375],[117.925201445313,24.6393727851563],[117.947345,24.6438430000001],[117.95107546875,24.592075421875],[117.987203398438,24.5737966132812],[117.979244414063,24.5574977851563],[117.997345,24.553843],[118.001519804688,24.5480178046875],[118.05091921875,24.5289650703125],[118.063761015625,24.508735578125],[118.031256132813,24.4693483710938]]]]}},{"type":"Feature","properties":{"name":"湖里区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.077345,24.4938430000001],[118.077345,24.483843],[118.067345,24.483843],[118.067345,24.4938430000001],[118.077345,24.4938430000001]]],[[[118.077345,24.4938430000001],[118.086412382813,24.5472267890625],[118.140069609375,24.5551564765626],[118.191646757813,24.5243093085938],[118.197345,24.503843],[118.18142703125,24.4997585273438],[118.147345,24.4854421210938],[118.108892851563,24.5015920234376],[118.077345,24.4938430000001]]]]}},{"type":"Feature","properties":{"name":"集美区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.96892703125,24.7544997382813],[117.991954375,24.7362111640625],[118.006031523438,24.7430861640625],[118.023985625,24.720483625],[118.032193632813,24.6920461250001],[118.060704375,24.6672023750001],[118.083985625,24.6604836250001],[118.09406375,24.64056175],[118.113985625,24.6304836250001],[118.120704375,24.607202375],[118.127345,24.603843],[118.097974882813,24.5657936835938],[118.062857695313,24.5709841132813],[118.05298953125,24.55819846875],[117.997345,24.553843],[117.979244414063,24.5574977851563],[117.987203398438,24.5737966132812],[117.95107546875,24.592075421875],[117.947345,24.6438430000001],[117.958936796875,24.6910402656251],[117.94142703125,24.7179274726563],[117.937345,24.753843],[117.952330351563,24.7463942695313],[117.96892703125,24.7544997382813]]]]}},{"type":"Feature","properties":{"name":"思明区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.067345,24.4538430000001],[118.063922148438,24.4416506171876],[118.055152617188,24.4504201484375],[118.067345,24.4538430000001]]],[[[118.067345,24.4538430000001],[118.067345,24.483843],[118.077345,24.483843],[118.077345,24.4938430000001],[118.108892851563,24.5015920234376],[118.147345,24.4854421210938],[118.18142703125,24.4997585273438],[118.197345,24.503843],[118.19080203125,24.4653322578125],[118.122535429688,24.4214870429688],[118.08170046875,24.4381984687501],[118.07298953125,24.4494875312501],[118.067345,24.4538430000001]]]]}},{"type":"Feature","properties":{"name":"同安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.227345,24.703843],[118.239537382813,24.7004201484376],[118.230767851563,24.6916506171875],[118.227345,24.703843]]],[[[117.993922148438,24.9060353828125],[117.997345,24.893843],[117.985152617188,24.8972658515626],[117.993922148438,24.9060353828125]]],[[[118.227345,24.703843],[118.200704375,24.690483625],[118.187345,24.663843],[118.180704375,24.6604836250001],[118.173985625,24.647202375],[118.150704375,24.640483625],[118.133985625,24.607202375],[118.127345,24.603843],[118.120704375,24.607202375],[118.113985625,24.6304836250001],[118.09406375,24.64056175],[118.083985625,24.6604836250001],[118.060704375,24.6672023750001],[118.032193632813,24.6920461250001],[118.023985625,24.720483625],[118.006031523438,24.7430861640625],[117.991954375,24.7362111640625],[117.96892703125,24.7544997382813],[117.952330351563,24.7463942695313],[117.937345,24.753843],[117.95298953125,24.7781984687501],[117.96170046875,24.8329299140626],[117.907345,24.8738430000001],[117.9145325,24.8842507148438],[117.95326296875,24.8697585273438],[117.9670715625,24.8497585273438],[117.98326296875,24.8579274726563],[117.99142703125,24.8797585273438],[118.00326296875,24.8879274726563],[118.0170715625,24.9079274726563],[118.03326296875,24.8997585273438],[118.045513945313,24.8820119453125],[118.06326296875,24.8697585273438],[118.072003203125,24.8570973945313],[118.12142703125,24.8897585273438],[118.147345,24.893843],[118.1651965625,24.9008620429687],[118.193170195313,24.8894142890625],[118.191402617188,24.8774538398438],[118.2260559375,24.8325563789063],[118.237345,24.823843],[118.260382109375,24.8096486640625],[118.250787382813,24.778843],[118.254151640625,24.7680373359376],[118.226920195313,24.7512575507813],[118.235806914063,24.7227321601563],[118.227345,24.703843]],[[118.165152617188,24.6772658515625],[118.177345,24.673843],[118.173922148438,24.6860353828125],[118.165152617188,24.6772658515625]]]]}},{"type":"Feature","properties":{"name":"翔安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.391910429688,24.5665407539063],[118.397345,24.553843],[118.374346953125,24.557895734375],[118.391910429688,24.5665407539063]]],[[[118.340924101563,24.5668923164063],[118.347345,24.543843],[118.29298953125,24.5530763984375],[118.306329375,24.57819846875],[118.340924101563,24.5668923164063]]],[[[118.227345,24.703843],[118.230767851563,24.6916506171875],[118.239537382813,24.7004201484376],[118.235806914063,24.7227321601563],[118.226920195313,24.7512575507813],[118.254151640625,24.7680373359376],[118.250787382813,24.778843],[118.260382109375,24.8096486640625],[118.237345,24.823843],[118.2470715625,24.8379274726563],[118.29326296875,24.8297585273438],[118.32142703125,24.7879274726563],[118.333858671875,24.7793459296875],[118.319698515625,24.7456423164063],[118.325709257813,24.718843],[118.321109648438,24.6983376289063],[118.349205351563,24.6620851875],[118.328389921875,24.6125246406251],[118.347345,24.583843],[118.2919934375,24.5892848945313],[118.282701445313,24.5584133125],[118.272345,24.5592458320313],[118.259742460938,24.5582326484376],[118.2401965625,24.5355495429688],[118.19125125,24.5702516914063],[118.192764921875,24.5890456367188],[118.1818371875,24.628969953125],[118.192882109375,24.6487673164063],[118.187345,24.663843],[118.200704375,24.690483625],[118.227345,24.703843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城厢区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.967203398438,25.5779982734376],[118.953883085938,25.5392067695312],[118.977345,25.533843],[118.98142703125,25.5079274726563],[119.0167590625,25.4835353828125],[119.011221953125,25.458843],[119.013468046875,25.4488430000001],[119.011124296875,25.4383962226563],[119.024132109375,25.418423078125],[118.987672148438,25.3976149726563],[118.976178007813,25.3463405585938],[118.993013945313,25.3501149726563],[119.00142703125,25.3379274726563],[119.02326296875,25.3297585273438],[119.027345,25.323843],[119.049117460938,25.2908937812501],[119.03326296875,25.2679274726563],[119.027345,25.2638430000001],[119.024801054688,25.2812990546876],[118.955035429688,25.2863869453125],[118.934801054688,25.2663869453125],[118.897345,25.2638430000001],[118.891685820313,25.2785597968751],[118.893248320313,25.291108625],[118.871793242188,25.3082888007813],[118.8511340625,25.3340895820313],[118.854210234375,25.358843],[118.844156523438,25.4396901679688],[118.82021609375,25.4367116523438],[118.833013945313,25.4584841132813],[118.831685820313,25.4691481757813],[118.853970976563,25.5207741523438],[118.850308867188,25.5502028632813],[118.8807434375,25.5745729804688],[118.902799101563,25.5470339179688],[118.934801054688,25.5510134101563],[118.927345,25.583843],[118.94427859375,25.5915895820313],[118.967203398438,25.5779982734376]]]]}},{"type":"Feature","properties":{"name":"涵江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.953453398438,25.7594582343751],[118.944132109375,25.7122805],[118.971519804688,25.7296681953126],[119.067345,25.7538430000001],[119.15142703125,25.7493190742188],[119.138863554688,25.7317971015625],[119.120103789063,25.7188430000001],[119.137135039063,25.7070827460938],[119.143526640625,25.6785646796876],[119.128389921875,25.6425246406251],[119.163565703125,25.5892946601563],[119.15970828125,25.5720729804687],[119.187017851563,25.5542873359376],[119.227945585938,25.563462140625],[119.237886992188,25.5191139960938],[119.22326296875,25.4979274726563],[119.21142703125,25.4897585273438],[119.207345,25.473843],[119.20326296875,25.4679274726563],[119.160142851563,25.4568630195313],[119.13326296875,25.4179274726562],[119.117345,25.4138430000001],[119.113531523438,25.4200295234375],[119.081158476563,25.4276564765626],[119.056470976563,25.4449880195313],[119.070518828125,25.4900807929688],[119.051158476563,25.5176564765625],[119.043531523438,25.5600295234375],[119.025855742188,25.5676564765625],[119.013531523438,25.5476564765626],[118.981158476563,25.5400295234375],[118.977345,25.533843],[118.953883085938,25.5392067695312],[118.967203398438,25.5779982734376],[118.94427859375,25.5915895820313],[118.927345,25.583843],[118.922711210938,25.6192751289063],[118.902667265625,25.6176638007813],[118.89271609375,25.62921409375],[118.853155546875,25.6468679023438],[118.847345,25.703843],[118.861519804688,25.7096681953125],[118.908995390625,25.722192609375],[118.9418371875,25.7680178046875],[118.953453398438,25.7594582343751]]]]}},{"type":"Feature","properties":{"name":"荔城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.160582304688,25.35968284375],[119.182345,25.3569777656251],[119.218878203125,25.3615212226563],[119.227345,25.2938430000001],[119.217345,25.2938430000001],[119.18142703125,25.2979274726563],[119.108043242188,25.346421125],[119.0570715625,25.3579274726563],[119.039176054688,25.3320119453126],[119.027345,25.323843],[119.02326296875,25.3297585273438],[119.00142703125,25.3379274726563],[118.993013945313,25.3501149726563],[118.976178007813,25.3463405585938],[118.987672148438,25.3976149726563],[119.024132109375,25.418423078125],[119.011124296875,25.4383962226563],[119.013468046875,25.4488430000001],[119.011221953125,25.458843],[119.0167590625,25.4835353828125],[118.98142703125,25.5079274726563],[118.977345,25.533843],[118.981158476563,25.5400295234375],[119.013531523438,25.5476564765626],[119.025855742188,25.5676564765625],[119.043531523438,25.5600295234375],[119.051158476563,25.5176564765625],[119.070518828125,25.4900807929688],[119.056470976563,25.4449880195313],[119.081158476563,25.4276564765626],[119.113531523438,25.4200295234375],[119.117345,25.4138430000001],[119.131793242188,25.3882888007812],[119.16302859375,25.3793581367188],[119.160582304688,25.35968284375]]]]}},{"type":"Feature","properties":{"name":"仙游县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.517345,25.323843],[118.517345,25.313843],[118.507345,25.313843],[118.507345,25.323843],[118.517345,25.323843]]],[[[118.517345,25.323843],[118.523624296875,25.362798078125],[118.491793242188,25.3882888007812],[118.462120390625,25.4371388984376],[118.457345,25.4538430000001],[118.473863554688,25.4788356757813],[118.453306914063,25.5104030585938],[118.50326296875,25.5679274726563],[118.52142703125,25.5997585273438],[118.5439075,25.6287624335937],[118.530963164063,25.6486452460938],[118.537345,25.663843],[118.550279570313,25.684048078125],[118.572345,25.69024925],[118.59158328125,25.6848415351563],[118.602471953125,25.7018532539063],[118.658531523438,25.7176076484375],[118.672471953125,25.6958327460938],[118.702345,25.68743675],[118.72158328125,25.6928444648438],[118.727345,25.6838430000001],[118.715152617188,25.6804201484375],[118.723922148438,25.6716506171875],[118.727345,25.6838430000001],[118.784971953125,25.6989479804688],[118.809073515625,25.7279616523438],[118.847345,25.703843],[118.853155546875,25.6468679023438],[118.89271609375,25.62921409375],[118.902667265625,25.6176638007813],[118.922711210938,25.6192751289063],[118.927345,25.583843],[118.934801054688,25.5510134101563],[118.902799101563,25.5470339179688],[118.8807434375,25.5745729804688],[118.850308867188,25.5502028632813],[118.853970976563,25.5207741523438],[118.831685820313,25.4691481757813],[118.833013945313,25.4584841132813],[118.82021609375,25.4367116523438],[118.844156523438,25.4396901679688],[118.854210234375,25.358843],[118.8511340625,25.3340895820313],[118.871793242188,25.3082888007813],[118.893248320313,25.291108625],[118.891685820313,25.2785597968751],[118.897345,25.2638430000001],[118.897345,25.2538430000001],[118.877345,25.2538430000001],[118.877345,25.243843],[118.87197390625,25.2392140937501],[118.86271609375,25.22847190625],[118.771324492188,25.2165138984375],[118.7727746875,25.1984889960938],[118.74197390625,25.18921409375],[118.697345,25.163843],[118.666827421875,25.1849123359376],[118.68349734375,25.238696515625],[118.681221953125,25.248843],[118.683468046875,25.2588430000001],[118.680557890625,25.2718044257813],[118.6480090625,25.2645095039063],[118.65720828125,25.3055373359376],[118.617345,25.2966017890625],[118.575694609375,25.3059377265626],[118.567345,25.2938430000001],[118.527345,25.2938430000001],[118.527345,25.313843],[118.527345,25.323843],[118.517345,25.323843]]]]}},{"type":"Feature","properties":{"name":"秀屿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.453922148438,24.9960353828125],[119.457345,24.983843],[119.445152617188,24.9872658515625],[119.453922148438,24.9960353828125]]],[[[119.13400515625,25.0625954414063],[119.127345,25.0338430000001],[119.093604765625,25.0432375312501],[119.114483671875,25.0593556953125],[119.110284453125,25.0878005195313],[119.150094023438,25.0936818671875],[119.131529570313,25.0793556953126],[119.13400515625,25.0625954414063]]],[[[119.393922148438,25.1460353828125],[119.397345,25.133843],[119.385152617188,25.1372658515625],[119.393922148438,25.1460353828125]]],[[[119.027345,25.173843],[119.015152617188,25.1772658515625],[119.023922148438,25.1860353828125],[119.027345,25.173843]]],[[[119.571910429688,25.2165407539063],[119.577345,25.203843],[119.554346953125,25.207895734375],[119.571910429688,25.2165407539063]]],[[[119.494722929688,25.2499343085938],[119.490445585938,25.2209914375001],[119.543170195313,25.1994142890626],[119.54158328125,25.1887013984376],[119.547345,25.163843],[119.52170046875,25.16819846875],[119.48341921875,25.1965822578125],[119.43298953125,25.2106252265625],[119.471422148438,25.2497170234375],[119.482345,25.2481032539063],[119.494722929688,25.2499343085938]]],[[[119.583922148438,25.2560353828125],[119.587345,25.243843],[119.575152617188,25.2472658515626],[119.583922148438,25.2560353828125]]],[[[119.623922148438,25.2660353828125],[119.627345,25.2538430000001],[119.615152617188,25.2572658515625],[119.623922148438,25.2660353828125]]],[[[119.517345,25.273843],[119.513922148438,25.2616506171875],[119.505152617188,25.2704201484375],[119.517345,25.273843]]],[[[119.573922148438,25.2760353828126],[119.577345,25.2638430000001],[119.565152617188,25.2672658515625],[119.573922148438,25.2760353828126]]],[[[119.517345,25.273843],[119.520767851563,25.2860353828125],[119.529537382813,25.2772658515626],[119.517345,25.273843]]],[[[119.343922148438,25.3260353828125],[119.347345,25.313843],[119.335152617188,25.3172658515626],[119.343922148438,25.3260353828125]]],[[[119.257345,25.323843],[119.245152617188,25.3272658515625],[119.253922148438,25.3360353828125],[119.257345,25.323843]]],[[[119.257345,25.323843],[119.275303984375,25.3164626289063],[119.295445585938,25.3204445625001],[119.311519804688,25.2980178046875],[119.370870390625,25.2576198554688],[119.322633085938,25.237798078125],[119.312345,25.2398317695313],[119.302345,25.2378542304688],[119.287003203125,25.2408864570313],[119.296495390625,25.192827375],[119.27263796875,25.1776784492188],[119.224635039063,25.19226096875],[119.168560820313,25.1811794257813],[119.151519804688,25.2080178046876],[119.139947539063,25.2380178046875],[119.10990359375,25.2186257148438],[119.084957304688,25.1793337226563],[119.133170195313,25.1696681953125],[119.141636992188,25.1477150703125],[119.161519804688,25.1516432929688],[119.152745390625,25.1163088203125],[119.14279421875,25.1301906562501],[119.0928528125,25.1096681953125],[119.041539335938,25.12003440625],[119.027345,25.173843],[119.05943484375,25.1620583320313],[119.08197390625,25.2408229804688],[119.052345,25.2384401679688],[119.042345,25.2392458320313],[119.019000273438,25.2373683906251],[119.002022734375,25.2176638007813],[118.981178007813,25.2193386054688],[118.98443484375,25.2598805976563],[119.010787382813,25.2577638984376],[119.027345,25.2638430000001],[119.03326296875,25.2679274726563],[119.049117460938,25.2908937812501],[119.027345,25.323843],[119.039176054688,25.3320119453126],[119.0570715625,25.3579274726563],[119.108043242188,25.346421125],[119.18142703125,25.2979274726563],[119.217345,25.2938430000001],[119.222345,25.2810353828126],[119.227345,25.2938430000001],[119.253985625,25.307202375],[119.257345,25.323843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.833350859375,26.1298488593751],[117.843062773438,26.1152443671876],[117.893038359375,26.127837140625],[117.911339140625,26.0781667304688],[117.893350859375,26.0278371406251],[117.873350859375,26.0145388007813],[117.881553984375,25.9973830390626],[117.902345,26.002622296875],[117.91150515625,25.9773732734376],[117.922345,25.980102765625],[117.936397734375,25.9765627265625],[117.953350859375,25.9878371406251],[117.964498320313,26.0045998359375],[118.001627226563,25.9952443671876],[118.016651640625,26.017837140625],[118.023741484375,26.0093849921875],[118.021085234375,25.998843],[118.027379179688,25.9738674140625],[118.011339140625,25.949848859375],[118.003350859375,25.917837140625],[117.990972929688,25.8992971015626],[117.99486453125,25.883843],[117.98599734375,25.848657453125],[118.017345,25.843843],[118.017345,25.8338430000001],[118.01142703125,25.8197585273438],[118.00326296875,25.7779274726563],[117.966422148438,25.7641432929688],[117.99142703125,25.7279274726563],[118.011373320313,25.7141579414063],[117.99326296875,25.6879274726563],[117.93326296875,25.6725295234375],[117.9480090625,25.6461647773438],[117.9990246875,25.6247365546875],[118.04142703125,25.634243390625],[118.027110625,25.5705861640626],[118.01142703125,25.5597585273438],[118.007345,25.553843],[117.9727746875,25.5280397773438],[117.95455203125,25.5307326484375],[117.90298953125,25.50819846875],[117.848629179688,25.4930617500001],[117.8127746875,25.5196462226563],[117.794771757813,25.5169850898438],[117.782686796875,25.487466046875],[117.7527746875,25.5096462226563],[117.742203398438,25.5080837226563],[117.717345,25.513843],[117.678448515625,25.5190456367188],[117.693033476563,25.5596950507813],[117.725875273438,25.5577394843751],[117.752061796875,25.5997194648438],[117.713101835938,25.5973976875],[117.693189726563,25.6196877265625],[117.662891875,25.6467555976563],[117.648521757813,25.6780666328125],[117.596168242188,25.6496193671876],[117.5785559375,25.687993390625],[117.520494414063,25.7285622382813],[117.50228640625,25.7081813789063],[117.487345,25.733843],[117.498101835938,25.7409963203126],[117.490904570313,25.7695607734375],[117.508101835938,25.7809963203126],[117.498492460938,25.8191384101563],[117.533350859375,25.8278371406251],[117.541339140625,25.849848859375],[117.553350859375,25.857837140625],[117.56716921875,25.878618390625],[117.598389921875,25.887837140625],[117.589410429688,25.8521950507813],[117.623194609375,25.839848859375],[117.661827421875,25.8702321601563],[117.672799101563,25.8674684882813],[117.6988684375,25.88487815625],[117.72494265625,25.9602712226563],[117.773350859375,25.977837140625],[117.781339140625,26.0069509101563],[117.739405546875,26.0221681953125],[117.748077421875,26.0565846992188],[117.697345,26.0438039375],[117.665299101563,26.0518776679688],[117.657345,26.0638430000001],[117.662525664063,26.0922365546876],[117.717345,26.123843],[117.72201296875,26.1170827460938],[117.763975859375,26.0897585273438],[117.794478789063,26.1343141914063],[117.790474882813,26.1521950507812],[117.807345,26.163843],[117.821339140625,26.1378371406251],[117.833350859375,26.1298488593751]]]]}},{"type":"Feature","properties":{"name":"建宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.049464140625,27.0558693671875],[117.0651575,27.0020485664063],[117.0327746875,26.9780397773438],[117.021832304688,26.9796584296876],[117.005894804688,26.959009015625],[116.965303984375,26.9477053046875],[116.93375125,26.9233498359375],[116.926612578125,26.8750612617188],[116.944771757813,26.8307009101563],[116.962345,26.8281032539062],[116.98170046875,26.8309645820313],[116.97298953125,26.81819846875],[116.950128203125,26.808843],[116.9570325,26.7621315742188],[116.88656375,26.7332912421875],[116.91298953125,26.68948753125],[116.917345,26.6638430000001],[116.911217070313,26.6388845039063],[116.91361453125,26.6281716132813],[116.899132109375,26.6181716132813],[116.90498171875,26.5920729804688],[116.880230742188,26.5759548164063],[116.862345,26.5799636054688],[116.842345,26.5754811835938],[116.806846953125,26.5834377265625],[116.79142703125,26.5597585273438],[116.787345,26.543843],[116.77170046875,26.54819846875],[116.71966921875,26.5686550117188],[116.74298953125,26.57819846875],[116.75170046875,26.5942751289063],[116.700909453125,26.6084206367188],[116.72314578125,26.6384133125001],[116.721300078125,26.6509059882813],[116.683883085938,26.645376203125],[116.67298953125,26.6594875312501],[116.629303007813,26.66819846875],[116.567345,26.653843],[116.557345,26.653843],[116.557345,26.643843],[116.552061796875,26.6485622382813],[116.542628203125,26.6591237617188],[116.528673125,26.6715920234376],[116.502628203125,26.7138869453125],[116.560147734375,26.7652834296875],[116.533761015625,26.813843],[116.552628203125,26.8485622382813],[116.557345,26.8638430000001],[116.56170046875,26.86948753125],[116.58298953125,26.87819846875],[116.59170046875,26.8894875312501],[116.60298953125,26.89819846875],[116.62170046875,26.9294875312501],[116.6386340625,26.9425563789063],[116.652320585938,26.9602907539063],[116.69170046875,26.98948753125],[116.707345,26.993843],[116.751627226563,26.9867043281251],[116.764766875,27.0031130195313],[116.822125273438,27.0194924140626],[116.858370390625,27.0149831367188],[116.892174101563,27.0396755195313],[116.931807890625,27.0244411445313],[116.9589465625,27.0583327460938],[117.011793242188,27.0893971992188],[117.047345,27.103843],[117.057345,27.103843],[117.049464140625,27.0558693671875]]]]}},{"type":"Feature","properties":{"name":"将乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.427345,27.0538430000001],[117.415152617188,27.0504201484375],[117.423922148438,27.0416506171875],[117.433443632813,27.0499391914062],[117.448746367188,27.0064260078125],[117.4890246875,27.0177468085938],[117.530538359375,27.0044728828126],[117.537345,26.993843],[117.52084109375,26.9646486640626],[117.492896757813,26.9422731757813],[117.502603789063,26.9270095039063],[117.522345,26.9294655585938],[117.532345,26.9282204414062],[117.547345,26.9300856757813],[117.562345,26.9282204414062],[117.572843046875,26.92952659375],[117.581793242188,26.9082888007813],[117.622896757813,26.8593971992188],[117.651793242188,26.8182888007813],[117.663023710938,26.8092971015625],[117.661724882813,26.798843],[117.663013945313,26.7884841132813],[117.651793242188,26.7693971992188],[117.642896757813,26.7482888007813],[117.5854309375,26.713384015625],[117.603023710938,26.6992971015626],[117.60166140625,26.6883278632813],[117.632896757813,26.6793971992188],[117.637345,26.6638430000001],[117.607584257813,26.65620628125],[117.593116484375,26.6175490546875],[117.574459257813,26.6217311835938],[117.548526640625,26.6048439765626],[117.557345,26.583843],[117.543985625,26.5772023750001],[117.517345,26.573843],[117.513922148438,26.5860353828125],[117.505152617188,26.5772658515626],[117.517345,26.573843],[117.512803984375,26.5575344062501],[117.483980742188,26.5749196601563],[117.480865507813,26.5538430000001],[117.48373171875,26.5344509101563],[117.472784453125,26.5077053046875],[117.43111453125,26.4768093085938],[117.389522734375,26.482954328125],[117.395596953125,26.4418361640625],[117.372345,26.4278102851563],[117.35248171875,26.4397927070313],[117.318502226563,26.4264357734376],[117.286265898438,26.46819846875],[117.27170046875,26.45948753125],[117.262345,26.436626203125],[117.242345,26.4395827460938],[117.224014921875,26.4368727851563],[117.20619265625,26.482212140625],[117.214722929688,26.5399343085938],[117.20205203125,26.53806175],[117.148687773438,26.5590407539063],[117.087345,26.563843],[117.10197390625,26.61921409375],[117.146988554688,26.6294411445313],[117.16197390625,26.67921409375],[117.17271609375,26.6884719062501],[117.181998320313,26.7092726875],[117.200328398438,26.7078005195313],[117.21271609375,26.71847190625],[117.22197390625,26.74921409375],[117.25857546875,26.7721388984376],[117.2219153125,26.7884963203125],[117.223551054688,26.808843],[117.220362578125,26.8484963203126],[117.2578528125,26.8652248359376],[117.232955351563,26.9330251289063],[117.262066679688,26.9492678046876],[117.283360625,26.9475563789063],[117.33271609375,26.97847190625],[117.34197390625,27.0292140937501],[117.397345,27.0538430000001],[117.421314726563,27.0657595039063],[117.427345,27.0538430000001]]]]}},{"type":"Feature","properties":{"name":"梅列区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.572686796875,26.4107155585937],[117.60181765625,26.3871218085938],[117.624761992188,26.3942678046875],[117.641158476563,26.3676564765625],[117.653531523438,26.3600295234375],[117.661158476563,26.3476564765626],[117.683531523438,26.3400295234375],[117.691539335938,26.3270339179688],[117.702345,26.3304006171876],[117.712803984375,26.32714378125],[117.739796171875,26.3460964179688],[117.753638945313,26.3236257148438],[117.79666140625,26.3089650703125],[117.7763684375,26.2760329414063],[117.761539335938,26.2806520820313],[117.748023710938,26.2587136054688],[117.727345,26.2538430000001],[117.695513945313,26.2456740546875],[117.683013945313,26.2275710273438],[117.657374296875,26.2333205390626],[117.622847929688,26.2600759101563],[117.612345,26.2577223945313],[117.597345,26.2610842109375],[117.582345,26.2577223945313],[117.556573515625,26.2635012031251],[117.536676054688,26.2103298164062],[117.52326296875,26.2297585273438],[117.498980742188,26.238843],[117.505235625,26.2667287421876],[117.490831328125,26.2888430000001],[117.50326296875,26.3079274726563],[117.507345,26.3238430000001],[117.51197390625,26.3392140937501],[117.528951445313,26.353843],[117.502935820313,26.3762575507813],[117.55271609375,26.39847190625],[117.557345,26.4038430000001],[117.572686796875,26.4107155585937]]]]}},{"type":"Feature","properties":{"name":"明溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.287345,26.153843],[117.283922148438,26.1416506171875],[117.275152617188,26.1504201484376],[117.287345,26.153843]]],[[[117.517345,26.573843],[117.505152617188,26.5772658515626],[117.513922148438,26.5860353828125],[117.517345,26.573843]]],[[[117.517345,26.573843],[117.543985625,26.5772023750001],[117.557345,26.583843],[117.565933867188,26.5767067695313],[117.543292265625,26.5164430976563],[117.591881132813,26.4953688789063],[117.572808867188,26.4383815742188],[117.561881132813,26.4193044257813],[117.557345,26.4038430000001],[117.55271609375,26.39847190625],[117.502935820313,26.3762575507813],[117.528951445313,26.353843],[117.51197390625,26.3392140937501],[117.507345,26.3238430000001],[117.441519804688,26.3196681953125],[117.423170195313,26.3080178046875],[117.3420715625,26.2917604804687],[117.332594023438,26.2558303046875],[117.309039335938,26.2604836250001],[117.273170195313,26.2383376289063],[117.287345,26.203843],[117.274537382813,26.198843],[117.287345,26.193843],[117.297345,26.193843],[117.30142703125,26.1879274726563],[117.319068632813,26.175747296875],[117.287345,26.153843],[117.283985625,26.160483625],[117.2241028125,26.167202375],[117.213985625,26.147202375],[117.18345828125,26.1317580390626],[117.177345,26.143843],[117.16677859375,26.1690041328125],[117.180006132813,26.2280275703125],[117.14142703125,26.2379274726563],[117.128492460938,26.2566628242188],[117.133526640625,26.2791213203126],[117.117764921875,26.3166481757813],[117.10142703125,26.3279274726563],[117.075440703125,26.3655690742188],[117.060601835938,26.3440749335938],[117.037345,26.353843],[117.030748320313,26.3710060859375],[117.033004179688,26.389126203125],[117.021685820313,26.4185597968751],[117.024156523438,26.4383888984375],[116.99361453125,26.46284690625],[117.02025515625,26.4841799140626],[116.962345,26.476977765625],[116.941983671875,26.4795095039063],[116.922144804688,26.46784690625],[116.912345,26.4800856757813],[116.899957304688,26.4646144843751],[116.858912382813,26.4493971992188],[116.838453398438,26.4749489570313],[116.821793242188,26.4882888007813],[116.811422148438,26.5245632148438],[116.787345,26.543843],[116.79142703125,26.5597585273438],[116.806846953125,26.5834377265625],[116.842345,26.5754811835938],[116.862345,26.5799636054688],[116.880230742188,26.5759548164063],[116.90498171875,26.5920729804688],[116.899132109375,26.6181716132813],[116.91361453125,26.6281716132813],[116.911217070313,26.6388845039063],[116.917345,26.6638430000001],[116.923531523438,26.6600295234375],[116.933902617188,26.6431960273438],[116.982310820313,26.6272756171876],[116.997081328125,26.6318752265625],[117.02295046875,26.5843605781251],[117.04287234375,26.5905641914063],[117.071158476563,26.5676564765626],[117.087345,26.563843],[117.148687773438,26.5590407539063],[117.20205203125,26.53806175],[117.214722929688,26.5399343085938],[117.20619265625,26.482212140625],[117.224014921875,26.4368727851563],[117.242345,26.4395827460938],[117.262345,26.436626203125],[117.27170046875,26.45948753125],[117.286265898438,26.46819846875],[117.318502226563,26.4264357734376],[117.35248171875,26.4397927070313],[117.372345,26.4278102851563],[117.395596953125,26.4418361640625],[117.389522734375,26.482954328125],[117.43111453125,26.4768093085938],[117.472784453125,26.5077053046875],[117.48373171875,26.5344509101563],[117.480865507813,26.5538430000001],[117.483980742188,26.5749196601563],[117.512803984375,26.5575344062501],[117.517345,26.573843]]]]}},{"type":"Feature","properties":{"name":"宁化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.557345,26.373843],[116.545152617188,26.3704201484375],[116.553922148438,26.3616506171875],[116.605328398438,26.3798439765626],[116.601099882813,26.413843],[116.603448515625,26.4327150703126],[116.622896757813,26.4482888007813],[116.635670195313,26.4786037421876],[116.59080203125,26.4914333320313],[116.59392703125,26.5165431953126],[116.541793242188,26.5582888007813],[116.537345,26.563843],[116.553985625,26.597202375],[116.557345,26.643843],[116.567345,26.643843],[116.567345,26.653843],[116.629303007813,26.66819846875],[116.67298953125,26.6594875312501],[116.683883085938,26.645376203125],[116.721300078125,26.6509059882813],[116.72314578125,26.6384133125001],[116.700909453125,26.6084206367188],[116.75170046875,26.5942751289063],[116.74298953125,26.57819846875],[116.71966921875,26.5686550117188],[116.77170046875,26.54819846875],[116.787345,26.543843],[116.811422148438,26.5245632148438],[116.821793242188,26.4882888007813],[116.838453398438,26.4749489570313],[116.858912382813,26.4493971992188],[116.899957304688,26.4646144843751],[116.912345,26.4800856757813],[116.922144804688,26.46784690625],[116.941983671875,26.4795095039063],[116.962345,26.476977765625],[117.02025515625,26.4841799140626],[116.99361453125,26.46284690625],[117.024156523438,26.4383888984375],[117.021685820313,26.4185597968751],[117.033004179688,26.389126203125],[117.030748320313,26.3710060859375],[117.037345,26.353843],[117.025694609375,26.3454933906251],[117.009244414063,26.3225392890626],[116.972345,26.3298317695313],[116.943053007813,26.3240431953126],[116.932594023438,26.3511647773438],[116.922965117188,26.3377321601563],[116.911724882813,26.3399538398438],[116.895445585938,26.3172414375],[116.881910429688,26.31991721875],[116.862779570313,26.3077687812501],[116.813585234375,26.3174904609376],[116.803170195313,26.2780178046876],[116.75693484375,26.2512136054688],[116.764928007813,26.2107839179688],[116.75099734375,26.188843],[116.76701296875,26.1636135078125],[116.803619414063,26.1494948554687],[116.791182890625,26.1085524726563],[116.809112578125,26.0803102851562],[116.763785429688,26.062827375],[116.752965117188,26.0477321601562],[116.715445585938,26.0551467109375],[116.701724882813,26.036001203125],[116.662594023438,26.0437331367188],[116.653170195313,26.0080178046876],[116.647345,26.003843],[116.631842070313,26.0103542304688],[116.617432890625,25.9894899726563],[116.5745325,25.9734352851562],[116.56326296875,25.9897585273438],[116.534620390625,26.000473859375],[116.509097929688,25.9947536445313],[116.481690703125,25.9769045234375],[116.470191679688,26.0217214179688],[116.438511992188,26.0146218085938],[116.397345,26.033843],[116.40170046875,26.0494875312501],[116.41298953125,26.05819846875],[116.42170046875,26.06948753125],[116.484815703125,26.1171266914063],[116.476534453125,26.1731569648438],[116.422345,26.1651491523438],[116.390284453125,26.1698854804688],[116.394097929688,26.1956911445313],[116.381485625,26.2389382148437],[116.395562773438,26.2747487617188],[116.413160429688,26.2883303046875],[116.411529570313,26.2993556953126],[116.4286340625,26.3125563789063],[116.45322390625,26.344419171875],[116.49298953125,26.36819846875],[116.510636015625,26.4113112617188],[116.548468046875,26.4057204414063],[116.557345,26.373843]]]]}},{"type":"Feature","properties":{"name":"清流县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.075440703125,26.3655690742188],[117.10142703125,26.3279274726563],[117.117764921875,26.3166481757813],[117.133526640625,26.2791213203126],[117.128492460938,26.2566628242188],[117.14142703125,26.2379274726563],[117.180006132813,26.2280275703125],[117.16677859375,26.1690041328125],[117.177345,26.143843],[117.139952421875,26.1266725898438],[117.111099882813,26.1316384101563],[117.062076445313,26.1012990546875],[117.051129179688,26.0609108710938],[117.05330203125,26.0482741523438],[117.04138796875,26.0394118476563],[117.048038359375,26.0007643867188],[117.069644804688,25.984692609375],[117.031612578125,25.9695778632813],[117.012760039063,25.9579103828126],[116.958306914063,25.9672853828125],[116.964068632813,25.933843],[116.957393828125,25.8950783515626],[116.941612578125,25.8695778632813],[116.937345,25.853843],[116.897564726563,25.8470851875],[116.88298953125,25.82819846875],[116.87170046875,25.8194875312501],[116.86298953125,25.79819846875],[116.826143828125,25.7794875312501],[116.777198515625,25.8090114570313],[116.784947539063,25.8614430976563],[116.7380090625,25.8545070625],[116.74459109375,25.8990407539063],[116.71170046875,25.90819846875],[116.695616484375,25.9290407539062],[116.667345,25.933843],[116.66326296875,25.9397585273438],[116.65142703125,25.9479274726563],[116.640670195313,25.97667503125],[116.647345,26.003843],[116.653170195313,26.0080178046876],[116.662594023438,26.0437331367188],[116.701724882813,26.036001203125],[116.715445585938,26.0551467109375],[116.752965117188,26.0477321601562],[116.763785429688,26.062827375],[116.809112578125,26.0803102851562],[116.791182890625,26.1085524726563],[116.803619414063,26.1494948554687],[116.76701296875,26.1636135078125],[116.75099734375,26.188843],[116.764928007813,26.2107839179688],[116.75693484375,26.2512136054688],[116.803170195313,26.2780178046876],[116.813585234375,26.3174904609376],[116.862779570313,26.3077687812501],[116.881910429688,26.31991721875],[116.895445585938,26.3172414375],[116.911724882813,26.3399538398438],[116.922965117188,26.3377321601563],[116.932594023438,26.3511647773438],[116.943053007813,26.3240431953126],[116.972345,26.3298317695313],[117.009244414063,26.3225392890626],[117.025694609375,26.3454933906251],[117.037345,26.353843],[117.060601835938,26.3440749335938],[117.075440703125,26.3655690742188]]]]}},{"type":"Feature","properties":{"name":"三元区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.505235625,26.2667287421876],[117.498980742188,26.238843],[117.52326296875,26.2297585273438],[117.536676054688,26.2103298164062],[117.556573515625,26.2635012031251],[117.582345,26.2577223945313],[117.597345,26.2610842109375],[117.612345,26.2577223945313],[117.622847929688,26.2600759101563],[117.657374296875,26.2333205390626],[117.683013945313,26.2275710273438],[117.695513945313,26.2456740546875],[117.727345,26.2538430000001],[117.73142703125,26.2279274726563],[117.744483671875,26.2189138007813],[117.753565703125,26.1783962226563],[117.74142703125,26.1597585273438],[117.73170046875,26.1337526679688],[117.717345,26.123843],[117.662525664063,26.0922365546876],[117.657345,26.0638430000001],[117.61494265625,26.0566384101563],[117.591832304688,26.0267018867188],[117.556549101563,26.0319167304688],[117.53103640625,26.0649733710938],[117.533570585938,26.0821291328126],[117.480484648438,26.1190456367188],[117.41170046875,26.13819846875],[117.38220828125,26.1497927070313],[117.360499296875,26.1366994453125],[117.34095828125,26.1844509101563],[117.343463164063,26.2014186835938],[117.297345,26.193843],[117.287345,26.193843],[117.287345,26.203843],[117.273170195313,26.2383376289063],[117.309039335938,26.2604836250001],[117.332594023438,26.2558303046875],[117.3420715625,26.2917604804687],[117.423170195313,26.3080178046875],[117.441519804688,26.3196681953125],[117.507345,26.3238430000001],[117.50326296875,26.3079274726563],[117.490831328125,26.2888430000001],[117.505235625,26.2667287421876]]]]}},{"type":"Feature","properties":{"name":"沙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.947345,26.2938430000001],[117.943922148438,26.3060353828126],[117.935152617188,26.2972658515625],[117.912423125,26.2332692695313],[117.852066679688,26.2284181953125],[117.823204375,26.2445217109376],[117.8219153125,26.2285182929688],[117.837447539063,26.215141828125],[117.81197390625,26.17921409375],[117.807345,26.163843],[117.790474882813,26.1521950507812],[117.794478789063,26.1343141914063],[117.763975859375,26.0897585273438],[117.72201296875,26.1170827460938],[117.717345,26.123843],[117.73170046875,26.1337526679688],[117.74142703125,26.1597585273438],[117.753565703125,26.1783962226563],[117.744483671875,26.2189138007813],[117.73142703125,26.2279274726563],[117.727345,26.2538430000001],[117.748023710938,26.2587136054688],[117.761539335938,26.2806520820313],[117.7763684375,26.2760329414063],[117.79666140625,26.3089650703125],[117.753638945313,26.3236257148438],[117.739796171875,26.3460964179688],[117.712803984375,26.32714378125],[117.702345,26.3304006171876],[117.691539335938,26.3270339179688],[117.683531523438,26.3400295234375],[117.661158476563,26.3476564765626],[117.653531523438,26.3600295234375],[117.641158476563,26.3676564765625],[117.624761992188,26.3942678046875],[117.60181765625,26.3871218085938],[117.572686796875,26.4107155585937],[117.557345,26.4038430000001],[117.561881132813,26.4193044257813],[117.572808867188,26.4383815742188],[117.591881132813,26.4953688789063],[117.543292265625,26.5164430976563],[117.565933867188,26.5767067695313],[117.557345,26.583843],[117.548526640625,26.6048439765626],[117.574459257813,26.6217311835938],[117.593116484375,26.6175490546875],[117.607584257813,26.65620628125],[117.637345,26.6638430000001],[117.663033476563,26.6593727851563],[117.659976835938,26.6348171210938],[117.715318632813,26.6673464179688],[117.732345,26.6694655585938],[117.752999296875,26.6668971992188],[117.842784453125,26.679536359375],[117.847345,26.6738430000001],[117.85142703125,26.6479274726563],[117.86408328125,26.6284963203125],[117.84455203125,26.6150124335938],[117.871636992188,26.567563703125],[117.892345,26.5722048164063],[117.917345,26.5666017890626],[117.947345,26.573325421875],[117.973013945313,26.5675710273438],[117.9870715625,26.5879274726563],[117.997037382813,26.5747756171875],[117.990714140625,26.5465651679688],[118.00142703125,26.5179274726563],[118.033648710938,26.5096584296875],[118.023819609375,26.4658107734375],[118.048892851563,26.471430890625],[118.06142703125,26.4379274726563],[118.084215117188,26.4221950507812],[118.08107546875,26.4081716132813],[118.099176054688,26.3956740546875],[118.107345,26.383843],[118.100811796875,26.345376203125],[118.071832304688,26.3496584296875],[118.05095828125,26.3226149726563],[118.015289335938,26.3441335273438],[117.996324492188,26.3195632148438],[117.97170046875,26.3094875312501],[117.947345,26.2938430000001]]]]}},{"type":"Feature","properties":{"name":"泰宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.397345,27.0538430000001],[117.34197390625,27.0292140937501],[117.33271609375,26.97847190625],[117.283360625,26.9475563789063],[117.262066679688,26.9492678046876],[117.232955351563,26.9330251289063],[117.2578528125,26.8652248359376],[117.220362578125,26.8484963203126],[117.223551054688,26.808843],[117.2219153125,26.7884963203125],[117.25857546875,26.7721388984376],[117.22197390625,26.74921409375],[117.21271609375,26.71847190625],[117.200328398438,26.7078005195313],[117.181998320313,26.7092726875],[117.17271609375,26.6884719062501],[117.16197390625,26.67921409375],[117.146988554688,26.6294411445313],[117.10197390625,26.61921409375],[117.087345,26.563843],[117.071158476563,26.5676564765626],[117.04287234375,26.5905641914063],[117.02295046875,26.5843605781251],[116.997081328125,26.6318752265625],[116.982310820313,26.6272756171876],[116.933902617188,26.6431960273438],[116.923531523438,26.6600295234375],[116.917345,26.6638430000001],[116.91298953125,26.68948753125],[116.88656375,26.7332912421875],[116.9570325,26.7621315742188],[116.950128203125,26.808843],[116.97298953125,26.81819846875],[116.98170046875,26.8309645820313],[116.962345,26.8281032539062],[116.944771757813,26.8307009101563],[116.926612578125,26.8750612617188],[116.93375125,26.9233498359375],[116.965303984375,26.9477053046875],[117.005894804688,26.959009015625],[117.021832304688,26.9796584296876],[117.0327746875,26.9780397773438],[117.0651575,27.0020485664063],[117.049464140625,27.0558693671875],[117.057345,27.103843],[117.062144804688,27.1098390937501],[117.082545195313,27.0978469062501],[117.09205203125,27.10972190625],[117.1224621875,27.098032453125],[117.152530546875,27.115708234375],[117.172896757813,27.0993971992188],[117.19236453125,27.0673439765626],[117.24822390625,27.0345095039063],[117.278956328125,27.0765798164063],[117.283023710938,27.1092971015625],[117.262896757813,27.1254128242188],[117.277242460938,27.1318386054688],[117.331793242188,27.1082888007813],[117.372896757813,27.0993971992188],[117.381793242188,27.0782888007813],[117.397345,27.0538430000001]]]]}},{"type":"Feature","properties":{"name":"永安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.287345,26.153843],[117.275152617188,26.1504201484376],[117.283922148438,26.1416506171875],[117.319068632813,26.175747296875],[117.30142703125,26.1879274726563],[117.297345,26.193843],[117.343463164063,26.2014186835938],[117.34095828125,26.1844509101563],[117.360499296875,26.1366994453125],[117.38220828125,26.1497927070313],[117.41170046875,26.13819846875],[117.480484648438,26.1190456367188],[117.533570585938,26.0821291328126],[117.53103640625,26.0649733710938],[117.556549101563,26.0319167304688],[117.591832304688,26.0267018867188],[117.61494265625,26.0566384101563],[117.657345,26.0638430000001],[117.665299101563,26.0518776679688],[117.697345,26.0438039375],[117.748077421875,26.0565846992188],[117.739405546875,26.0221681953125],[117.781339140625,26.0069509101563],[117.773350859375,25.977837140625],[117.72494265625,25.9602712226563],[117.6988684375,25.88487815625],[117.672799101563,25.8674684882813],[117.661827421875,25.8702321601563],[117.623194609375,25.839848859375],[117.589410429688,25.8521950507813],[117.598389921875,25.887837140625],[117.56716921875,25.878618390625],[117.553350859375,25.857837140625],[117.541339140625,25.849848859375],[117.533350859375,25.8278371406251],[117.498492460938,25.8191384101563],[117.508101835938,25.7809963203126],[117.490904570313,25.7695607734375],[117.498101835938,25.7409963203126],[117.487345,25.733843],[117.476363554688,25.748071515625],[117.43298953125,25.66819846875],[117.402940703125,25.65948753125],[117.392960234375,25.729673078125],[117.381832304688,25.7280275703125],[117.370670195313,25.7424929023438],[117.373082304688,25.7588430000001],[117.371607695313,25.768843],[117.373170195313,25.7794289375],[117.345264921875,25.78819846875],[117.330943632813,25.75319846875],[117.273116484375,25.7370973945313],[117.24298953125,25.6906252265625],[117.28298953125,25.67948753125],[117.29170046875,25.6717653632813],[117.242271757813,25.6515334296875],[117.23298953125,25.6181984687501],[117.22170046875,25.60948753125],[117.197345,25.573843],[117.193560820313,25.5627565742188],[117.171129179688,25.5849294257813],[117.167345,25.573843],[117.161519804688,25.5780178046875],[117.153170195313,25.6096681953126],[117.141519804688,25.6180178046875],[117.110601835938,25.6634377265625],[117.079244414063,25.6572414375001],[117.060328398438,25.6836330390625],[117.065186796875,25.7082228828125],[117.049503203125,25.7194631171875],[117.060953398438,25.777407453125],[117.034918242188,25.8184133125],[117.021519804688,25.8280178046875],[117.0123059375,25.8629445625],[116.945391875,25.8426174140625],[116.937345,25.853843],[116.941612578125,25.8695778632813],[116.957393828125,25.8950783515626],[116.964068632813,25.933843],[116.958306914063,25.9672853828125],[117.012760039063,25.9579103828126],[117.031612578125,25.9695778632813],[117.069644804688,25.984692609375],[117.048038359375,26.0007643867188],[117.04138796875,26.0394118476563],[117.05330203125,26.0482741523438],[117.051129179688,26.0609108710938],[117.062076445313,26.1012990546875],[117.111099882813,26.1316384101563],[117.139952421875,26.1266725898438],[117.177345,26.143843],[117.18345828125,26.1317580390626],[117.213985625,26.147202375],[117.2241028125,26.167202375],[117.283985625,26.160483625],[117.287345,26.153843]]],[[[117.287345,26.203843],[117.287345,26.193843],[117.274537382813,26.198843],[117.287345,26.203843]]]]}},{"type":"Feature","properties":{"name":"尤溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.017345,25.843843],[118.030152617188,25.838843],[118.017345,25.8338430000001],[118.017345,25.843843]]],[[[118.513922148438,25.8960353828125],[118.517345,25.883843],[118.505152617188,25.8872658515626],[118.513922148438,25.8960353828125]]],[[[118.587345,26.0638430000001],[118.599537382813,26.0604201484375],[118.590767851563,26.0516506171875],[118.587345,26.0638430000001]]],[[[118.567345,26.183843],[118.579537382813,26.1804201484375],[118.570767851563,26.1716506171875],[118.567345,26.183843]]],[[[117.947345,26.2938430000001],[117.935152617188,26.2972658515625],[117.943922148438,26.3060353828126],[117.947345,26.2938430000001]]],[[[118.567345,26.183843],[118.560797148438,26.1803932929688],[118.553892851563,26.1393532539063],[118.585123320313,26.1300270820313],[118.574224882813,26.1057692695313],[118.594820585938,26.0791970039063],[118.587345,26.0638430000001],[118.511021757813,26.0597365546876],[118.5146496875,26.0435720039063],[118.507345,26.013843],[118.517257109375,25.9939015937501],[118.50990359375,25.9788430000001],[118.51966921875,25.958843],[118.50990359375,25.938843],[118.514859648438,25.9286965156251],[118.503985625,25.907202375],[118.470704375,25.900483625],[118.462345,25.8715163398438],[118.452447539063,25.9058180976563],[118.428121367188,25.9251418281251],[118.413985625,25.8972023750001],[118.407345,25.893843],[118.390181914063,25.9004396796876],[118.371871367188,25.8981618476563],[118.344654570313,25.9429689765625],[118.31834109375,25.9101125312501],[118.302799101563,25.9295217109375],[118.292345,25.9282204414063],[118.277345,25.9300856757813],[118.260582304688,25.92800315625],[118.263023710938,25.9083888984376],[118.24656375,25.8952077460937],[118.202799101563,25.9006520820313],[118.187345,25.8813552070312],[118.172896757813,25.8993971992188],[118.15814578125,25.9112111640625],[118.092183867188,25.8923757148438],[118.063702421875,25.8568093085938],[118.009781523438,25.8635158515625],[118.017345,25.843843],[117.98599734375,25.848657453125],[117.99486453125,25.883843],[117.990972929688,25.8992971015626],[118.003350859375,25.917837140625],[118.011339140625,25.949848859375],[118.027379179688,25.9738674140625],[118.021085234375,25.998843],[118.023741484375,26.0093849921875],[118.016651640625,26.017837140625],[118.001627226563,25.9952443671876],[117.964498320313,26.0045998359375],[117.953350859375,25.9878371406251],[117.936397734375,25.9765627265625],[117.922345,25.980102765625],[117.91150515625,25.9773732734376],[117.902345,26.002622296875],[117.881553984375,25.9973830390626],[117.873350859375,26.0145388007813],[117.893350859375,26.0278371406251],[117.911339140625,26.0781667304688],[117.893038359375,26.127837140625],[117.843062773438,26.1152443671876],[117.833350859375,26.1298488593751],[117.821339140625,26.1378371406251],[117.807345,26.163843],[117.81197390625,26.17921409375],[117.837447539063,26.215141828125],[117.8219153125,26.2285182929688],[117.823204375,26.2445217109376],[117.852066679688,26.2284181953125],[117.912423125,26.2332692695313],[117.947345,26.2938430000001],[117.97170046875,26.3094875312501],[117.996324492188,26.3195632148438],[118.015289335938,26.3441335273438],[118.05095828125,26.3226149726563],[118.071832304688,26.3496584296875],[118.100811796875,26.345376203125],[118.107345,26.383843],[118.138804960938,26.3765529609376],[118.17205203125,26.3896242500001],[118.193883085938,26.3863991523438],[118.215289335938,26.4141335273438],[118.250753203125,26.3927394843751],[118.26170046875,26.41948753125],[118.29298953125,26.42819846875],[118.304810820313,26.4435158515626],[118.323160429688,26.4293556953125],[118.320709257813,26.412778546875],[118.357345,26.4073659492188],[118.372735625,26.4096388984375],[118.393922148438,26.3968605781251],[118.45170046875,26.4053981757813],[118.442896757813,26.3880226875],[118.423389921875,26.3909059882813],[118.420670195313,26.3724929023438],[118.437838164063,26.3502468085938],[118.460767851563,26.346860578125],[118.492345,26.3659059882812],[118.52170046875,26.34819846875],[118.55298953125,26.33948753125],[118.56170046875,26.32819846875],[118.585401640625,26.3184987617188],[118.62298953125,26.28948753125],[118.637681914063,26.2704470039063],[118.667345,26.2538430000001],[118.659263945313,26.2378688789063],[118.599195585938,26.2302931953126],[118.605391875,26.2176076484375],[118.580704375,26.210483625],[118.567345,26.183843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"泉港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.993922148438,25.1860353828125],[118.997345,25.173843],[118.985152617188,25.1772658515625],[118.993922148438,25.1860353828125]]],[[[118.931920195313,25.2363845039063],[118.911724882813,25.1982228828126],[118.972076445313,25.2006154609375],[118.9733215625,25.1691603828126],[118.935084257813,25.144468],[118.972154570313,25.1101222968751],[118.94236453125,25.1086428046876],[118.922877226563,25.1094167304688],[118.902511015625,25.098637921875],[118.88380984375,25.099380109375],[118.857345,25.093843],[118.843013945313,25.1145973945312],[118.789581328125,25.1026198554688],[118.749386015625,25.128794171875],[118.717345,25.133843],[118.710704375,25.137202375],[118.697345,25.163843],[118.74197390625,25.18921409375],[118.7727746875,25.1984889960938],[118.771324492188,25.2165138984375],[118.86271609375,25.22847190625],[118.87197390625,25.2392140937501],[118.877345,25.243843],[118.931920195313,25.2363845039063]]]]}},{"type":"Feature","properties":{"name":"石狮市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.722882109375,24.809106671875],[118.719874296875,24.7796047187501],[118.737345,24.7778249335937],[118.759796171875,24.78011253125],[118.781422148438,24.7621486640626],[118.73318484375,24.7220803046875],[118.7318371875,24.708843],[118.7330090625,24.6973146796875],[118.685968046875,24.6634596992188],[118.668267851563,24.6847682929688],[118.657345,24.6938430000001],[118.649644804688,24.7238430000001],[118.612345,24.7154811835938],[118.579859648438,24.7227614570313],[118.585406523438,24.7475051093751],[118.617432890625,24.7594899726563],[118.63142703125,24.7797585273437],[118.64326296875,24.7879274726563],[118.647345,24.793843],[118.68224734375,24.7993630195312],[118.701954375,24.7973537421875],[118.719420195313,24.8183815742188],[118.722882109375,24.809106671875]]]]}},{"type":"Feature","properties":{"name":"安溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,25.003843],[118.143922148438,25.0160353828126],[118.135152617188,25.0072658515626],[118.1412903125,24.9891066718751],[118.129761992188,24.9307839179688],[118.143170195313,24.9096681953125],[118.147345,24.893843],[118.12142703125,24.8897585273438],[118.072003203125,24.8570973945313],[118.06326296875,24.8697585273438],[118.045513945313,24.8820119453125],[118.03326296875,24.8997585273438],[118.0170715625,24.9079274726563],[118.00326296875,24.8879274726563],[117.99142703125,24.8797585273438],[117.98326296875,24.8579274726563],[117.9670715625,24.8497585273438],[117.95326296875,24.8697585273438],[117.9145325,24.8842507148438],[117.907345,24.8738430000001],[117.88236453125,24.8894338203125],[117.862623320313,24.8784181953125],[117.852345,24.8792458320313],[117.842345,24.8784401679688],[117.822345,24.8800490546876],[117.812345,24.8576369453125],[117.792345,24.8592458320313],[117.772667265625,24.8576638007813],[117.76271609375,24.86921409375],[117.738565703125,24.88847190625],[117.668385039063,24.8493141914063],[117.63271609375,24.86921409375],[117.617345,24.8738430000001],[117.609405546875,24.8949782539063],[117.623824492188,24.9201540351563],[117.593267851563,24.9455373359375],[117.638267851563,24.9829177070313],[117.653516875,25.0012721992188],[117.688038359375,24.9977516914062],[117.73498171875,25.0315358710938],[117.721353789063,25.0802712226563],[117.702345,25.0783327460938],[117.677008085938,25.0809157539062],[117.662808867188,25.1293044257812],[117.629644804688,25.1390383125],[117.612808867188,25.1593044257813],[117.565406523438,25.1885427070312],[117.547345,25.193843],[117.547345,25.203843],[117.557345,25.203843],[117.557345,25.213843],[117.569928007813,25.2342678046876],[117.6087121875,25.2221877265625],[117.616202421875,25.2462282539063],[117.593531523438,25.2785158515625],[117.601158476563,25.3000295234375],[117.641051054688,25.3136257148438],[117.654971953125,25.3362184882813],[117.678199492188,25.3505300117188],[117.687017851563,25.3788430000001],[117.6798840625,25.4017385078125],[117.691158476563,25.4200295234375],[117.697345,25.423843],[117.717896757813,25.3972194648438],[117.802222929688,25.41343284375],[117.822857695313,25.3867018867188],[117.852345,25.3910597968751],[117.878082304688,25.3872560859376],[117.943741484375,25.3998781562501],[117.99298953125,25.38948753125],[118.00170046875,25.35819846875],[118.018863554688,25.3449513984375],[118.061832304688,25.2880275703126],[118.081832304688,25.2909841132812],[118.091939726563,25.2778932929688],[118.137750273438,25.2912502265625],[118.153375273438,25.2791872382813],[118.147345,25.2638430000001],[118.151881132813,25.2183815742188],[118.162896757813,25.209233625],[118.159400664063,25.1749782539063],[118.231324492188,25.153872296875],[118.233365507813,25.133843],[118.22904421875,25.0914601875001],[118.252022734375,25.0783010078126],[118.269796171875,25.08011253125],[118.284151640625,25.0681887031251],[118.261803007813,25.029165265625],[118.264678984375,25.0009596992188],[118.17531375,25.0100685859376],[118.147345,25.003843]],[[117.985152617188,24.8972658515626],[117.997345,24.893843],[117.993922148438,24.9060353828125],[117.985152617188,24.8972658515626]]]]}},{"type":"Feature","properties":{"name":"德化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.344654570313,25.9429689765625],[118.371871367188,25.8981618476563],[118.390181914063,25.9004396796876],[118.407345,25.893843],[118.413507109375,25.8563185859375],[118.38375125,25.8333498359375],[118.381226835938,25.8162844062501],[118.406749296875,25.7965822578126],[118.43170046875,25.7281984687501],[118.47427859375,25.7107741523438],[118.494449492188,25.6846364570312],[118.52170046875,25.66819846875],[118.537345,25.663843],[118.530963164063,25.6486452460938],[118.5439075,25.6287624335937],[118.52142703125,25.5997585273438],[118.50326296875,25.5679274726563],[118.453306914063,25.5104030585938],[118.473863554688,25.4788356757813],[118.457345,25.4538430000001],[118.4282434375,25.4469655585938],[118.407345,25.4505641914063],[118.360386992188,25.4424806953125],[118.36396609375,25.4632546210938],[118.297081328125,25.4433473945313],[118.282345,25.4062599921875],[118.257203398438,25.4105886054688],[118.229112578125,25.4483547187501],[118.116187773438,25.4712331367188],[118.098194609375,25.5375978828125],[118.03291140625,25.5263576484375],[118.023077421875,25.5395778632813],[118.011612578125,25.5481081367188],[118.007345,25.553843],[118.01142703125,25.5597585273438],[118.027110625,25.5705861640626],[118.04142703125,25.634243390625],[117.9990246875,25.6247365546875],[117.9480090625,25.6461647773438],[117.93326296875,25.6725295234375],[117.99326296875,25.6879274726563],[118.011373320313,25.7141579414063],[117.99142703125,25.7279274726563],[117.966422148438,25.7641432929688],[118.00326296875,25.7779274726563],[118.01142703125,25.8197585273438],[118.017345,25.8338430000001],[118.030152617188,25.838843],[118.017345,25.843843],[118.009781523438,25.8635158515625],[118.063702421875,25.8568093085938],[118.092183867188,25.8923757148438],[118.15814578125,25.9112111640625],[118.172896757813,25.8993971992188],[118.187345,25.8813552070312],[118.202799101563,25.9006520820313],[118.24656375,25.8952077460937],[118.263023710938,25.9083888984376],[118.260582304688,25.92800315625],[118.277345,25.9300856757813],[118.292345,25.9282204414063],[118.302799101563,25.9295217109375],[118.31834109375,25.9101125312501],[118.344654570313,25.9429689765625]]]]}},{"type":"Feature","properties":{"name":"丰泽区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.681871367188,24.8802761054688],[118.637345,24.853843],[118.629488554688,24.8693727851563],[118.590704375,24.877202375],[118.587345,24.893843],[118.599757109375,24.9188185859376],[118.570704375,24.927202375],[118.553985625,24.940483625],[118.537345,24.943843],[118.56314578125,24.9784108710938],[118.561514921875,24.9894557929688],[118.587345,24.9938430000001],[118.59408328125,24.9805226875],[118.653985625,24.950483625],[118.660704375,24.9372023750001],[118.667345,24.933843],[118.672550078125,24.928843],[118.65193484375,24.9090383125],[118.681871367188,24.8802761054688]]]]}},{"type":"Feature","properties":{"name":"惠安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.974195585938,24.9054567695313],[118.977345,24.8838430000001],[118.9551575,24.887075421875],[118.974195585938,24.9054567695313]]],[[[119.043922148438,25.0860353828126],[119.047345,25.0738430000001],[119.035152617188,25.0772658515625],[119.043922148438,25.0860353828126]]],[[[118.749386015625,25.128794171875],[118.789581328125,25.1026198554688],[118.843013945313,25.1145973945312],[118.857345,25.093843],[118.861881132813,25.0883815742188],[118.882808867188,25.0793044257813],[118.975513945313,25.0196022773438],[119.007725859375,25.0583815742188],[119.01306765625,25.0488381171876],[119.001881132813,25.0293044257813],[118.992808867188,25.0083815742188],[118.972808867188,24.9917678046875],[118.991881132813,24.9683815742188],[119.031881132813,24.9566432929688],[118.98588015625,24.9435695625001],[118.965269804688,24.9683815742188],[118.91396609375,24.9576491523438],[118.891324492188,24.938843],[118.902808867188,24.9293044257813],[118.916422148438,24.9129177070312],[118.951881132813,24.8834596992188],[118.930284453125,24.8777077460938],[118.872315703125,24.8994899726563],[118.822808867188,24.8783815742187],[118.791881132813,24.8693044257813],[118.756964140625,24.8493044257813],[118.701788359375,24.8583962226563],[118.702882109375,24.8691091132813],[118.690206328125,24.9028444648438],[118.694879179688,24.9486989570313],[118.677345,24.9538430000001],[118.677345,24.963843],[118.667345,24.963843],[118.64170046875,24.9981984687501],[118.63298953125,25.0227614570313],[118.65298953125,25.0381984687501],[118.674893828125,25.0665822578126],[118.671607695313,25.088843],[118.675894804688,25.1178688789063],[118.71298953125,25.12819846875],[118.717345,25.133843],[118.749386015625,25.128794171875]]]]}},{"type":"Feature","properties":{"name":"金门县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.231881132813,24.4093044257813],[118.227345,24.403843],[118.212808867188,24.4159181953126],[118.241593046875,24.4583815742187],[118.271807890625,24.433930890625],[118.231881132813,24.4093044257813]]],[[[118.461124296875,24.4683962226563],[118.47572390625,24.4459767890625],[118.453726835938,24.4141164375],[118.377486601563,24.43774925],[118.34412234375,24.4147145820313],[118.327345,24.3838430000001],[118.288350859375,24.40503440625],[118.31142703125,24.4404714179688],[118.30326296875,24.4597585273438],[118.28486453125,24.4724611640625],[118.312423125,24.4904055],[118.351969023438,24.4597585273438],[118.38912234375,24.4694557929688],[118.393468046875,24.488843],[118.390943632813,24.5000905585938],[118.413892851563,24.533325421875],[118.43142703125,24.5079274726563],[118.464815703125,24.4848757148438],[118.461124296875,24.4683962226563]]]]}},{"type":"Feature","properties":{"name":"晋江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.677345,24.623843],[118.680767851563,24.6360353828126],[118.689537382813,24.6272658515626],[118.677345,24.623843]]],[[[118.677345,24.623843],[118.663858671875,24.5790456367187],[118.602652617188,24.5284157539063],[118.592066679688,24.5292678046875],[118.57103640625,24.5175319648438],[118.572745390625,24.5388430000001],[118.571944609375,24.548843],[118.573389921875,24.5668288398438],[118.545709257813,24.5989553046875],[118.50197390625,24.61847190625],[118.470513945313,24.6360231757813],[118.437345,24.623843],[118.442965117188,24.6688405585937],[118.441099882813,24.6838430000001],[118.443941679688,24.7066799140625],[118.426202421875,24.7528322578125],[118.421666289063,24.7892971015625],[118.432896757813,24.7982888007813],[118.441793242188,24.8393971992188],[118.472896757813,24.8582888007813],[118.481793242188,24.8993971992188],[118.487345,24.903843],[118.542720976563,24.876196515625],[118.560704375,24.8904836250001],[118.587345,24.893843],[118.590704375,24.877202375],[118.629488554688,24.8693727851563],[118.637345,24.853843],[118.630972929688,24.8386721015625],[118.64142703125,24.7979274726563],[118.647345,24.793843],[118.64326296875,24.7879274726563],[118.63142703125,24.7797585273437],[118.617432890625,24.7594899726563],[118.585406523438,24.7475051093751],[118.579859648438,24.7227614570313],[118.612345,24.7154811835938],[118.649644804688,24.7238430000001],[118.657345,24.6938430000001],[118.643985625,24.666968],[118.651539335938,24.6110158515626],[118.677345,24.623843]]]]}},{"type":"Feature","properties":{"name":"鲤城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.560704375,24.8904836250001],[118.542720976563,24.876196515625],[118.487345,24.903843],[118.504503203125,24.935415265625],[118.537345,24.943843],[118.553985625,24.940483625],[118.570704375,24.927202375],[118.599757109375,24.9188185859376],[118.587345,24.893843],[118.560704375,24.8904836250001]]]]}},{"type":"Feature","properties":{"name":"洛江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.575694609375,25.3059377265626],[118.617345,25.2966017890625],[118.65720828125,25.3055373359376],[118.6480090625,25.2645095039063],[118.680557890625,25.2718044257813],[118.683468046875,25.2588430000001],[118.681221953125,25.248843],[118.68349734375,25.238696515625],[118.666827421875,25.1849123359376],[118.697345,25.163843],[118.710704375,25.137202375],[118.717345,25.133843],[118.71298953125,25.12819846875],[118.675894804688,25.1178688789063],[118.671607695313,25.088843],[118.674893828125,25.0665822578126],[118.65298953125,25.0381984687501],[118.63298953125,25.0227614570313],[118.64170046875,24.9981984687501],[118.667345,24.963843],[118.667345,24.9538430000001],[118.677345,24.9538430000001],[118.667345,24.933843],[118.660704375,24.9372023750001],[118.653985625,24.950483625],[118.59408328125,24.9805226875],[118.587345,24.9938430000001],[118.582511015625,25.0343386054688],[118.561412382813,25.0684279609376],[118.563204375,25.078843],[118.557374296875,25.11272971875],[118.581358671875,25.1514870429688],[118.571412382813,25.2092580390625],[118.5890246875,25.2377150703125],[118.56138796875,25.2582741523438],[118.563204375,25.268843],[118.561431914063,25.2791359687501],[118.567345,25.2938430000001],[118.575694609375,25.3059377265626]]]]}},{"type":"Feature","properties":{"name":"南安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,25.003843],[118.135152617188,25.0072658515626],[118.143922148438,25.0160353828126],[118.147345,25.003843]]],[[[118.267345,25.233843],[118.255152617188,25.2372658515626],[118.263922148438,25.2460353828126],[118.267345,25.233843]]],[[[118.147345,25.003843],[118.17531375,25.0100685859376],[118.264678984375,25.0009596992188],[118.261803007813,25.029165265625],[118.284151640625,25.0681887031251],[118.269796171875,25.08011253125],[118.252022734375,25.0783010078126],[118.22904421875,25.0914601875001],[118.233365507813,25.133843],[118.231324492188,25.153872296875],[118.159400664063,25.1749782539063],[118.162896757813,25.209233625],[118.151881132813,25.2183815742188],[118.147345,25.2638430000001],[118.163985625,25.260483625],[118.170704375,25.237202375],[118.188682890625,25.2145680976563],[118.228873320313,25.2345436835938],[118.256568632813,25.212544171875],[118.267345,25.233843],[118.27326296875,25.2379274726563],[118.296651640625,25.2718068671875],[118.367647734375,25.2498000312501],[118.38142703125,25.2697585273438],[118.39326296875,25.2779274726563],[118.40142703125,25.2897585273438],[118.4510559375,25.3024953437501],[118.477345,25.2966017890625],[118.498756132813,25.30140159375],[118.507345,25.313843],[118.517345,25.313843],[118.527345,25.313843],[118.527345,25.2938430000001],[118.567345,25.2938430000001],[118.561431914063,25.2791359687501],[118.563204375,25.268843],[118.56138796875,25.2582741523438],[118.5890246875,25.2377150703125],[118.571412382813,25.2092580390625],[118.581358671875,25.1514870429688],[118.557374296875,25.11272971875],[118.563204375,25.078843],[118.561412382813,25.0684279609376],[118.582511015625,25.0343386054688],[118.587345,24.9938430000001],[118.561514921875,24.9894557929688],[118.56314578125,24.9784108710938],[118.537345,24.943843],[118.504503203125,24.935415265625],[118.487345,24.903843],[118.481793242188,24.8993971992188],[118.472896757813,24.8582888007813],[118.441793242188,24.8393971992188],[118.432896757813,24.7982888007813],[118.421666289063,24.7892971015625],[118.426202421875,24.7528322578125],[118.443941679688,24.7066799140625],[118.441099882813,24.6838430000001],[118.442965117188,24.6688405585937],[118.437345,24.623843],[118.38326296875,24.5879274726563],[118.347345,24.583843],[118.328389921875,24.6125246406251],[118.349205351563,24.6620851875],[118.321109648438,24.6983376289063],[118.325709257813,24.718843],[118.319698515625,24.7456423164063],[118.333858671875,24.7793459296875],[118.32142703125,24.7879274726563],[118.29326296875,24.8297585273438],[118.2470715625,24.8379274726563],[118.237345,24.823843],[118.2260559375,24.8325563789063],[118.191402617188,24.8774538398438],[118.193170195313,24.8894142890625],[118.1651965625,24.9008620429687],[118.147345,24.893843],[118.143170195313,24.9096681953125],[118.129761992188,24.9307839179688],[118.1412903125,24.9891066718751],[118.147345,25.003843]]]]}},{"type":"Feature","properties":{"name":"永春县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.517345,25.323843],[118.527345,25.323843],[118.527345,25.313843],[118.517345,25.313843],[118.517345,25.323843]]],[[[118.517345,25.323843],[118.507345,25.323843],[118.507345,25.313843],[118.498756132813,25.30140159375],[118.477345,25.2966017890625],[118.4510559375,25.3024953437501],[118.40142703125,25.2897585273438],[118.39326296875,25.2779274726563],[118.38142703125,25.2697585273438],[118.367647734375,25.2498000312501],[118.296651640625,25.2718068671875],[118.27326296875,25.2379274726563],[118.267345,25.233843],[118.263922148438,25.2460353828126],[118.255152617188,25.2372658515626],[118.267345,25.233843],[118.256568632813,25.212544171875],[118.228873320313,25.2345436835938],[118.188682890625,25.2145680976563],[118.170704375,25.237202375],[118.163985625,25.260483625],[118.147345,25.2638430000001],[118.153375273438,25.2791872382813],[118.137750273438,25.2912502265625],[118.091939726563,25.2778932929688],[118.081832304688,25.2909841132812],[118.061832304688,25.2880275703126],[118.018863554688,25.3449513984375],[118.00170046875,25.35819846875],[117.99298953125,25.38948753125],[117.943741484375,25.3998781562501],[117.878082304688,25.3872560859376],[117.852345,25.3910597968751],[117.822857695313,25.3867018867188],[117.802222929688,25.41343284375],[117.717896757813,25.3972194648438],[117.697345,25.423843],[117.687222929688,25.4479421210937],[117.713565703125,25.4883962226563],[117.711163359375,25.4991213203125],[117.717345,25.513843],[117.742203398438,25.5080837226563],[117.7527746875,25.5096462226563],[117.782686796875,25.487466046875],[117.794771757813,25.5169850898438],[117.8127746875,25.5196462226563],[117.848629179688,25.4930617500001],[117.90298953125,25.50819846875],[117.95455203125,25.5307326484375],[117.9727746875,25.5280397773438],[118.007345,25.553843],[118.011612578125,25.5481081367188],[118.023077421875,25.5395778632813],[118.03291140625,25.5263576484375],[118.098194609375,25.5375978828125],[118.116187773438,25.4712331367188],[118.229112578125,25.4483547187501],[118.257203398438,25.4105886054688],[118.282345,25.4062599921875],[118.297081328125,25.4433473945313],[118.36396609375,25.4632546210938],[118.360386992188,25.4424806953125],[118.407345,25.4505641914063],[118.4282434375,25.4469655585938],[118.457345,25.4538430000001],[118.462120390625,25.4371388984376],[118.491793242188,25.3882888007812],[118.523624296875,25.362798078125],[118.517345,25.323843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"云霄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.437345,23.933843],[117.433922148438,23.9216506171875],[117.425152617188,23.9304201484375],[117.437345,23.933843]]],[[[117.437345,23.933843],[117.433985625,23.9404836250001],[117.4058215625,23.9472023750001],[117.420455351563,23.9172341132813],[117.479263945313,23.9098171210938],[117.499830351563,23.869165265625],[117.4874621875,23.8438430000001],[117.495391875,23.8276076484376],[117.46502078125,23.818843],[117.475269804688,23.7978517890625],[117.45406375,23.78712425],[117.443985625,23.767202375],[117.427345,23.763843],[117.427345,23.7738430000001],[117.417345,23.7738430000001],[117.407345,23.7738430000001],[117.407345,23.783843],[117.397345,23.783843],[117.377345,23.783843],[117.367345,23.783843],[117.349014921875,23.7969826484375],[117.354322539063,23.823843],[117.351358671875,23.838843],[117.353331328125,23.8488430000001],[117.350831328125,23.8615065742188],[117.327345,23.8568679023438],[117.302345,23.8618068671875],[117.243780546875,23.8502346015625],[117.211568632813,23.8706838203126],[117.183170195313,23.9196681953125],[117.171519804688,23.9280178046875],[117.15093875,23.9567311835938],[117.154322539063,23.973843],[117.151358671875,23.988843],[117.15341921875,23.9992751289062],[117.14127078125,24.0184108710938],[117.143389921875,24.0291310859375],[117.137345,24.0438430000001],[117.149127226563,24.0861501289063],[117.172735625,24.0896388984375],[117.222720976563,24.05948753125],[117.24298953125,24.06819846875],[117.25170046875,24.08948753125],[117.266514921875,24.1009206367188],[117.25298953125,24.14948753125],[117.23298953125,24.1826418281251],[117.24170046875,24.19948753125],[117.27298953125,24.2081984687501],[117.282281523438,24.2309059882813],[117.326549101563,24.1967360664063],[117.343140898438,24.169233625],[117.335211210938,24.115571515625],[117.37408328125,24.1213161445313],[117.40298953125,24.1094875312501],[117.42170046875,24.09819846875],[117.437345,24.093843],[117.45298953125,24.0694875312501],[117.46170046875,24.0081984687501],[117.500787382813,23.9922023750001],[117.46170046875,23.93948753125],[117.457345,23.9238430000001],[117.437345,23.933843]]]]}},{"type":"Feature","properties":{"name":"长泰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.697345,24.663843],[117.709537382813,24.6672658515626],[117.700767851563,24.6760353828125],[117.69142703125,24.6679274726563],[117.68326296875,24.6897585273438],[117.65970828125,24.6985720039063],[117.67326296875,24.7079274726563],[117.68142703125,24.7267018867188],[117.643082304688,24.7410500312501],[117.610943632813,24.7875954414062],[117.615235625,24.8067287421875],[117.60060671875,24.8291896796875],[117.628121367188,24.8481862617188],[117.617345,24.8738430000001],[117.63271609375,24.86921409375],[117.668385039063,24.8493141914063],[117.738565703125,24.88847190625],[117.76271609375,24.86921409375],[117.772667265625,24.8576638007813],[117.792345,24.8592458320313],[117.812345,24.8576369453125],[117.822345,24.8800490546876],[117.842345,24.8784401679688],[117.852345,24.8792458320313],[117.862623320313,24.8784181953125],[117.88236453125,24.8894338203125],[117.907345,24.8738430000001],[117.96170046875,24.8329299140626],[117.95298953125,24.7781984687501],[117.937345,24.753843],[117.94142703125,24.7179274726563],[117.958936796875,24.6910402656251],[117.947345,24.6438430000001],[117.925201445313,24.6393727851563],[117.913985625,24.617202375],[117.890704375,24.610483625],[117.887345,24.593843],[117.869888945313,24.5912990546876],[117.854801054688,24.5763869453125],[117.817345,24.5738430000001],[117.759888945313,24.5763869453125],[117.744801054688,24.5912990546876],[117.717345,24.593843],[117.717345,24.603843],[117.707345,24.603843],[117.703985625,24.620483625],[117.697345,24.633843],[117.7092590625,24.6398708320313],[117.697345,24.663843]]]]}},{"type":"Feature","properties":{"name":"东山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.433922148438,23.5960353828126],[117.437345,23.5838430000001],[117.425152617188,23.5872658515625],[117.433922148438,23.5960353828126]]],[[[117.321910429688,23.6165407539063],[117.327345,23.603843],[117.304346953125,23.607895734375],[117.321910429688,23.6165407539063]]],[[[117.553922148438,23.7360353828125],[117.557345,23.723843],[117.545152617188,23.7272658515625],[117.553922148438,23.7360353828125]]],[[[117.397345,23.783843],[117.397345,23.7738430000001],[117.407345,23.7738430000001],[117.417345,23.7738430000001],[117.417345,23.763843],[117.427345,23.763843],[117.445235625,23.7415016914063],[117.4924621875,23.7596535468751],[117.511793242188,23.7482888007812],[117.533804960938,23.7390138984375],[117.521793242188,23.7293971992188],[117.512799101563,23.7181642890625],[117.490343046875,23.7209572578126],[117.468526640625,23.683843],[117.485264921875,23.6553713203125],[117.423775664063,23.6630178046875],[117.411969023438,23.5819069648438],[117.377345,23.5776003242188],[117.352345,23.580708234375],[117.319268828125,23.5765944648438],[117.400889921875,23.6671584296876],[117.382345,23.6694655585938],[117.365440703125,23.6673610664062],[117.340553007813,23.6872902656251],[117.354303007813,23.7106813789063],[117.347345,23.753843],[117.357345,23.753843],[117.357345,23.763843],[117.367345,23.763843],[117.367345,23.7738430000001],[117.377345,23.7738430000001],[117.377345,23.783843],[117.397345,23.783843]]]]}},{"type":"Feature","properties":{"name":"华安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.697345,24.663843],[117.700767851563,24.6760353828125],[117.709537382813,24.6672658515626],[117.697345,24.663843]]],[[[117.697345,24.663843],[117.7092590625,24.6398708320313],[117.697345,24.633843],[117.69170046875,24.63819846875],[117.633053007813,24.6517897773438],[117.621275664063,24.707602765625],[117.562799101563,24.6580373359376],[117.552345,24.6595827460938],[117.542310820313,24.6580983710938],[117.507345,24.663843],[117.514644804688,24.7082814765626],[117.510875273438,24.7337966132813],[117.472345,24.7281032539063],[117.456324492188,24.7304714179688],[117.43298953125,24.76948753125],[117.390084257813,24.778540265625],[117.393082304688,24.7988430000001],[117.39017703125,24.8184987617188],[117.35170046875,24.8481984687501],[117.34298953125,24.85948753125],[117.316383085938,24.870376203125],[117.30298953125,24.8927614570312],[117.32298953125,24.90819846875],[117.33170046875,24.9218288398438],[117.290963164063,24.938501203125],[117.317345,24.973843],[117.335050078125,24.9809596992188],[117.357345,24.9771218085938],[117.417237578125,24.9874318671875],[117.432799101563,24.9665114570313],[117.483048125,24.9578615546876],[117.491612578125,25.0295778632813],[117.511612578125,25.0618923164063],[117.503077421875,25.0995778632812],[117.473077421875,25.1394460273438],[117.482266875,25.171889875],[117.523077421875,25.1881081367188],[117.531612578125,25.1995778632813],[117.537345,25.203843],[117.537345,25.193843],[117.547345,25.193843],[117.565406523438,25.1885427070312],[117.612808867188,25.1593044257813],[117.629644804688,25.1390383125],[117.662808867188,25.1293044257812],[117.677008085938,25.0809157539062],[117.702345,25.0783327460938],[117.721353789063,25.0802712226563],[117.73498171875,25.0315358710938],[117.688038359375,24.9977516914062],[117.653516875,25.0012721992188],[117.638267851563,24.9829177070313],[117.593267851563,24.9455373359375],[117.623824492188,24.9201540351563],[117.609405546875,24.8949782539063],[117.617345,24.8738430000001],[117.628121367188,24.8481862617188],[117.60060671875,24.8291896796875],[117.615235625,24.8067287421875],[117.610943632813,24.7875954414062],[117.643082304688,24.7410500312501],[117.68142703125,24.7267018867188],[117.67326296875,24.7079274726563],[117.65970828125,24.6985720039063],[117.68326296875,24.6897585273438],[117.69142703125,24.6679274726563],[117.697345,24.663843]]],[[[117.537345,25.203843],[117.537345,25.213843],[117.557345,25.213843],[117.557345,25.203843],[117.547345,25.203843],[117.537345,25.203843]]]]}},{"type":"Feature","properties":{"name":"龙海市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.023922148438,24.1960353828125],[118.027345,24.183843],[118.015152617188,24.1872658515625],[118.023922148438,24.1960353828125]]],[[[118.137345,24.333843],[118.133922148438,24.3216506171876],[118.125152617188,24.3304201484376],[118.137345,24.333843]]],[[[118.137345,24.333843],[118.140767851563,24.3460353828125],[118.149537382813,24.3372658515625],[118.137345,24.333843]]],[[[118.047345,24.353843],[118.035152617188,24.3504201484375],[118.043922148438,24.3416506171875],[118.07572390625,24.3473976875001],[118.100504179688,24.3504787421875],[118.130377226563,24.2996608710938],[118.13431765625,24.2679763007813],[118.120084257813,24.2697463203126],[118.071793242188,24.2493971992188],[118.027345,24.213843],[118.022896757813,24.2793971992188],[117.951793242188,24.2982888007813],[117.942266875,24.310180890625],[117.915767851563,24.2665505195313],[117.8455090625,24.2752907539063],[117.832896757813,24.3193971992188],[117.76259890625,24.3394972968751],[117.733702421875,24.335903546875],[117.722896757813,24.3493971992187],[117.709303007813,24.3582888007812],[117.714053984375,24.3200930000001],[117.707193632813,24.3093971992188],[117.680347929688,24.3535915351563],[117.615816679688,24.2465456367188],[117.588136015625,24.2499880195313],[117.594210234375,24.298843],[117.565206328125,24.3110646796876],[117.541846953125,24.30815940625],[117.532896757813,24.3293971992188],[117.507345,24.333843],[117.503443632813,24.3499391914063],[117.490870390625,24.3786037421876],[117.499332304688,24.408716046875],[117.5151575,24.4188430000001],[117.50072390625,24.42808128125],[117.50375125,24.438843],[117.494019804688,24.4734596992188],[117.507345,24.503843],[117.568409453125,24.4593776679688],[117.583721953125,24.4927346015625],[117.607345,24.513843],[117.63326296875,24.4997585273438],[117.641695585938,24.4875417304688],[117.667345,24.4938430000001],[117.671832304688,24.4880275703126],[117.702345,24.4925368476563],[117.74111453125,24.4868093085938],[117.783204375,24.5180153632813],[117.781226835938,24.53140159375],[117.812178984375,24.5552931953126],[117.817345,24.5738430000001],[117.854801054688,24.5763869453125],[117.869888945313,24.5912990546876],[117.887345,24.593843],[117.90326296875,24.5697585273438],[117.91142703125,24.5379274726563],[117.92326296875,24.5297585273438],[117.93142703125,24.5179274726563],[117.952877226563,24.5031179023438],[117.957345,24.4638430000001],[117.898609648438,24.48491721875],[117.921568632813,24.4426662421876],[117.8920325,24.4291091132813],[117.892642851563,24.4188430000001],[117.89150515625,24.3997878242188],[117.956202421875,24.3959304023438],[117.939205351563,24.4111159492188],[117.992345,24.4079494453125],[118.068385039063,24.4124806953125],[118.047345,24.353843]]]]}},{"type":"Feature","properties":{"name":"龙文区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.717345,24.593843],[117.744801054688,24.5912990546876],[117.759888945313,24.5763869453125],[117.817345,24.5738430000001],[117.812178984375,24.5552931953126],[117.781226835938,24.53140159375],[117.783204375,24.5180153632813],[117.74111453125,24.4868093085938],[117.702345,24.4925368476563],[117.671832304688,24.4880275703126],[117.667345,24.4938430000001],[117.6600403125,24.5235720039063],[117.665709257813,24.548843],[117.661031523438,24.5696950507813],[117.71326296875,24.5779274726562],[117.717345,24.593843]]],[[[117.717345,24.593843],[117.707345,24.593843],[117.707345,24.603843],[117.717345,24.603843],[117.717345,24.593843]]]]}},{"type":"Feature","properties":{"name":"南靖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.233922148438,24.9660353828125],[117.237345,24.9538430000001],[117.225152617188,24.9572658515625],[117.233922148438,24.9660353828125]]],[[[117.33170046875,24.9218288398438],[117.32298953125,24.90819846875],[117.30298953125,24.8927614570312],[117.316383085938,24.870376203125],[117.34298953125,24.85948753125],[117.35170046875,24.8481984687501],[117.39017703125,24.8184987617188],[117.393082304688,24.7988430000001],[117.390084257813,24.778540265625],[117.43298953125,24.76948753125],[117.456324492188,24.7304714179688],[117.472345,24.7281032539063],[117.510875273438,24.7337966132813],[117.514644804688,24.7082814765626],[117.507345,24.663843],[117.496065703125,24.6554518867188],[117.490401640625,24.6225612617187],[117.547511015625,24.599868390625],[117.521373320313,24.5894826484375],[117.523204375,24.5788430000001],[117.5199621875,24.5599880195313],[117.565396757813,24.5881081367188],[117.583077421875,24.5595778632813],[117.591612578125,24.5381081367188],[117.607345,24.513843],[117.583721953125,24.4927346015625],[117.568409453125,24.4593776679688],[117.507345,24.503843],[117.474908476563,24.5165944648438],[117.45298953125,24.48819846875],[117.43170046875,24.4794875312501],[117.399000273438,24.4371218085938],[117.358590117188,24.4430934882813],[117.32298953125,24.46948753125],[117.29170046875,24.47819846875],[117.28298953125,24.4894875312501],[117.262266875,24.5054811835938],[117.207838164063,24.4974391914062],[117.19298953125,24.47819846875],[117.148424101563,24.46948753125],[117.115562773438,24.5120607734375],[117.08170046875,24.53819846875],[117.06427859375,24.5607741523438],[117.017345,24.5738430000001],[117.022974882813,24.6087721992187],[117.020533476563,24.6283888984375],[117.036417265625,24.6411086250001],[117.031724882813,24.678843],[117.033023710938,24.6892971015625],[117.012896757813,24.7054128242188],[117.023668242188,24.7828908515625],[117.042896757813,24.7982888007813],[117.051793242188,24.8293971992188],[117.057345,24.833843],[117.063443632813,24.8299391914063],[117.071851835938,24.7844875312501],[117.099893828125,24.792368390625],[117.121886015625,24.777309796875],[117.145152617188,24.7838478828126],[117.14093875,24.7988430000001],[117.145909453125,24.8165212226563],[117.171109648438,24.8326540351563],[117.160714140625,24.86964378125],[117.194268828125,24.8882033515625],[117.177345,24.923843],[117.22951296875,24.9152736640626],[117.259127226563,24.9876296210937],[117.283433867188,24.9912209296875],[117.281514921875,24.9782228828125],[117.317345,24.973843],[117.290963164063,24.938501203125],[117.33170046875,24.9218288398438]]]]}},{"type":"Feature","properties":{"name":"平和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.06427859375,24.5607741523438],[117.08170046875,24.53819846875],[117.115562773438,24.5120607734375],[117.148424101563,24.46948753125],[117.19298953125,24.47819846875],[117.207838164063,24.4974391914062],[117.262266875,24.5054811835938],[117.28298953125,24.4894875312501],[117.29170046875,24.47819846875],[117.32298953125,24.46948753125],[117.358590117188,24.4430934882813],[117.399000273438,24.4371218085938],[117.43170046875,24.4794875312501],[117.45298953125,24.48819846875],[117.474908476563,24.5165944648438],[117.507345,24.503843],[117.494019804688,24.4734596992188],[117.50375125,24.438843],[117.50072390625,24.42808128125],[117.5151575,24.4188430000001],[117.499332304688,24.408716046875],[117.490870390625,24.3786037421876],[117.503443632813,24.3499391914063],[117.507345,24.333843],[117.515767851563,24.3119264960938],[117.462896757813,24.2782888007813],[117.441793242188,24.2693971992188],[117.432896757813,24.2482888007813],[117.416886015625,24.2354689765625],[117.432984648438,24.1790920234375],[117.443023710938,24.0983888984375],[117.437345,24.093843],[117.42170046875,24.09819846875],[117.40298953125,24.1094875312501],[117.37408328125,24.1213161445313],[117.335211210938,24.115571515625],[117.343140898438,24.169233625],[117.326549101563,24.1967360664063],[117.282281523438,24.2309059882813],[117.27298953125,24.2081984687501],[117.24170046875,24.19948753125],[117.23298953125,24.1826418281251],[117.25298953125,24.14948753125],[117.266514921875,24.1009206367188],[117.25170046875,24.08948753125],[117.24298953125,24.06819846875],[117.222720976563,24.05948753125],[117.172735625,24.0896388984375],[117.149127226563,24.0861501289063],[117.137345,24.0438430000001],[117.12170046875,24.0481984687501],[117.089937773438,24.0893483710938],[117.0374621875,24.1207326484375],[117.0186340625,24.1451296210938],[116.9960559375,24.1625563789063],[116.987345,24.173843],[116.98287234375,24.1959865546875],[116.960704375,24.207202375],[116.953985625,24.220483625],[116.930704375,24.227202375],[116.927345,24.2338430000001],[116.93361453125,24.2381716132813],[116.924483671875,24.2789138007813],[116.91142703125,24.2879274726563],[116.90326296875,24.3397585273438],[116.891104765625,24.3584279609375],[116.897345,24.3838430000001],[116.923170195313,24.3880178046875],[116.931519804688,24.4096681953125],[116.94341921875,24.4284108710938],[116.936920195313,24.4612917304688],[116.905636015625,24.5311574531251],[116.922965117188,24.5277321601563],[116.944205351563,24.557368390625],[116.992345,24.5478542304688],[117.011485625,24.5516384101563],[117.017345,24.5738430000001],[117.06427859375,24.5607741523438]]]]}},{"type":"Feature","properties":{"name":"漳浦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.597345,23.743843],[117.592281523438,23.7203029609375],[117.574527617188,23.7313356757812],[117.597345,23.743843]]],[[[117.713922148438,23.7860353828126],[117.717345,23.7738430000001],[117.705152617188,23.7772658515625],[117.713922148438,23.7860353828126]]],[[[117.693922148438,23.7960353828126],[117.697345,23.783843],[117.685152617188,23.7872658515625],[117.693922148438,23.7960353828126]]],[[[117.597345,23.743843],[117.589810820313,23.7763552070313],[117.6151965625,23.8184352851563],[117.58531375,23.8944411445313],[117.54673953125,23.9102297187501],[117.531954375,23.9080471015625],[117.51298953125,23.9194875312501],[117.457345,23.9238430000001],[117.46170046875,23.93948753125],[117.500787382813,23.9922023750001],[117.46170046875,24.0081984687501],[117.45298953125,24.0694875312501],[117.437345,24.093843],[117.443023710938,24.0983888984375],[117.432984648438,24.1790920234375],[117.416886015625,24.2354689765625],[117.432896757813,24.2482888007813],[117.441793242188,24.2693971992188],[117.462896757813,24.2782888007813],[117.515767851563,24.3119264960938],[117.507345,24.333843],[117.532896757813,24.3293971992188],[117.541846953125,24.30815940625],[117.565206328125,24.3110646796876],[117.594210234375,24.298843],[117.588136015625,24.2499880195313],[117.615816679688,24.2465456367188],[117.680347929688,24.3535915351563],[117.707193632813,24.3093971992188],[117.714053984375,24.3200930000001],[117.709303007813,24.3582888007812],[117.722896757813,24.3493971992187],[117.733702421875,24.335903546875],[117.76259890625,24.3394972968751],[117.832896757813,24.3193971992188],[117.8455090625,24.2752907539063],[117.915767851563,24.2665505195313],[117.942266875,24.310180890625],[117.951793242188,24.2982888007813],[118.022896757813,24.2793971992188],[118.027345,24.213843],[118.022896757813,24.2082888007812],[118.001793242188,24.1993971992187],[117.973853789063,24.1533986640625],[117.96244265625,24.1804714179687],[117.93818484375,24.1405324531251],[117.903448515625,24.1127150703126],[117.89861453125,24.0738430000001],[117.904107695313,24.02968284375],[117.892345,24.0282204414063],[117.850987578125,24.033364484375],[117.822799101563,23.9981642890626],[117.80634890625,24.0002101875],[117.792896757813,23.9682888007813],[117.772530546875,23.9519802070313],[117.760670195313,23.9105007148438],[117.735636015625,23.9073854804688],[117.731666289063,23.9392971015625],[117.791793242188,23.9874440742187],[117.752750273438,24.0195168281251],[117.741983671875,24.0181764960938],[117.710064726563,24.036938703125],[117.691578398438,23.988843],[117.70380984375,23.95702659375],[117.634547148438,23.9015651679688],[117.627369414063,23.8438430000001],[117.63490359375,23.7832814765625],[117.622896757813,23.7682888007813],[117.611793242188,23.7593971992188],[117.602896757813,23.7482888007812],[117.597345,23.743843]],[[117.947345,24.173843],[117.943922148438,24.1860353828125],[117.935152617188,24.1772658515626],[117.947345,24.173843]]]]}},{"type":"Feature","properties":{"name":"诏安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.293922148438,23.6060353828126],[117.297345,23.593843],[117.285152617188,23.5972658515626],[117.293922148438,23.6060353828126]]],[[[117.14127078125,24.0184108710938],[117.15341921875,23.9992751289062],[117.151358671875,23.988843],[117.154322539063,23.973843],[117.15093875,23.9567311835938],[117.171519804688,23.9280178046875],[117.183170195313,23.9196681953125],[117.211568632813,23.8706838203126],[117.243780546875,23.8502346015625],[117.302345,23.8618068671875],[117.327345,23.8568679023438],[117.350831328125,23.8615065742188],[117.353331328125,23.8488430000001],[117.351358671875,23.838843],[117.354322539063,23.823843],[117.349014921875,23.7969826484375],[117.367345,23.783843],[117.367345,23.7738430000001],[117.357345,23.7738430000001],[117.357345,23.763843],[117.347345,23.763843],[117.347345,23.753843],[117.303018828125,23.7463137031251],[117.269093046875,23.7258498359375],[117.274561796875,23.688843],[117.270128203125,23.6588430000001],[117.274483671875,23.6293556953126],[117.23744265625,23.6007619453125],[117.22298953125,23.61948753125],[117.187345,23.6238430000001],[117.18298953125,23.62948753125],[117.165030546875,23.6433498359375],[117.10127078125,23.6611037421876],[117.051768828125,23.6978054023438],[117.04162234375,23.7575221992188],[117.02156375,23.80855003125],[117.023824492188,23.823843],[117.02093875,23.8433498359375],[116.997086210938,23.8617604804688],[116.972345,23.8581032539063],[116.960284453125,23.8598854804687],[116.964561796875,23.8888430000001],[116.960362578125,23.9172658515625],[116.97670046875,23.9443556953125],[116.970865507813,23.983843],[116.973082304688,23.9988430000001],[116.971300078125,24.0109059882813],[116.951773710938,24.0080202460938],[116.94095828125,24.0344509101562],[116.943140898438,24.049233625],[116.93170046875,24.06819846875],[116.92298953125,24.1254006171875],[116.987345,24.173843],[116.9960559375,24.1625563789063],[117.0186340625,24.1451296210938],[117.0374621875,24.1207326484375],[117.089937773438,24.0893483710938],[117.12170046875,24.0481984687501],[117.137345,24.0438430000001],[117.143389921875,24.0291310859375],[117.14127078125,24.0184108710938]],[[117.237345,23.683843],[117.237345,23.6638430000001],[117.222359648438,23.6712917304687],[117.205704375,23.6631569648438],[117.233136015625,23.6304836250001],[117.237345,23.6638430000001],[117.251295195313,23.673843],[117.233922148438,23.6960353828125],[117.225152617188,23.6872658515625],[117.237345,23.683843]]]]}},{"type":"Feature","properties":{"name":"芗城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.621275664063,24.707602765625],[117.633053007813,24.6517897773438],[117.69170046875,24.63819846875],[117.697345,24.633843],[117.703985625,24.620483625],[117.707345,24.603843],[117.707345,24.593843],[117.717345,24.593843],[117.71326296875,24.5779274726562],[117.661031523438,24.5696950507813],[117.665709257813,24.548843],[117.6600403125,24.5235720039063],[117.667345,24.4938430000001],[117.641695585938,24.4875417304688],[117.63326296875,24.4997585273438],[117.607345,24.513843],[117.591612578125,24.5381081367188],[117.583077421875,24.5595778632813],[117.565396757813,24.5881081367188],[117.5199621875,24.5599880195313],[117.523204375,24.5788430000001],[117.521373320313,24.5894826484375],[117.547511015625,24.599868390625],[117.490401640625,24.6225612617187],[117.496065703125,24.6554518867188],[117.507345,24.663843],[117.542310820313,24.6580983710938],[117.552345,24.6595827460938],[117.562799101563,24.6580373359376],[117.621275664063,24.707602765625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"光泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.277345,27.763843],[117.265152617188,27.7672658515625],[117.273922148438,27.7760353828125],[117.277345,27.763843]]],[[[117.277345,27.763843],[117.2933996875,27.7719631171875],[117.300704375,27.8370851875],[117.280704375,27.847202375],[117.277345,27.8538430000001],[117.28142703125,27.8697585273438],[117.320621367188,27.8968166328126],[117.334088164063,27.8608180976563],[117.37142703125,27.8897585273438],[117.414547148438,27.9008229804688],[117.437345,27.933843],[117.45205203125,27.93962425],[117.477974882813,27.9357936835938],[117.518424101563,27.98819846875],[117.548526640625,27.96526878125],[117.56170046875,27.94819846875],[117.58093875,27.9333498359376],[117.583082304688,27.918843],[117.58103640625,27.9049733710938],[117.608365507813,27.8695632148438],[117.65427859375,27.8507741523438],[117.67170046875,27.8281984687501],[117.677345,27.823843],[117.67156375,27.80913596875],[117.67314578125,27.7984133125],[117.633048125,27.7443288398438],[117.627345,27.723843],[117.614346953125,27.7148683906251],[117.587428007813,27.6677101875001],[117.552393828125,27.6435207343751],[117.538472929688,27.5892653632813],[117.517345,27.5838430000001],[117.48170046875,27.57948753125],[117.47298953125,27.5581984687501],[117.44673953125,27.54745628125],[117.431832304688,27.5496584296876],[117.42298953125,27.53819846875],[117.386519804688,27.5232717109376],[117.39623171875,27.4575295234376],[117.377345,27.4603200507812],[117.348365507813,27.4560378242188],[117.30263796875,27.4380617500001],[117.282345,27.441059796875],[117.27298953125,27.41819846875],[117.260206328125,27.4083303046875],[117.263082304688,27.3888430000001],[117.258648710938,27.3588430000001],[117.264127226563,27.3217897773438],[117.178345976563,27.3072170234375],[117.161832304688,27.3096584296875],[117.157345,27.303843],[117.131514921875,27.3082302070313],[117.1331653125,27.3193825507813],[117.10170046875,27.33819846875],[117.09298953125,27.3777346015625],[117.125889921875,27.4221096015625],[117.101070585938,27.4852346015625],[117.10468875,27.5097194648438],[117.07798953125,27.5776369453125],[117.054439726563,27.5471218085938],[117.037345,27.553843],[117.021612578125,27.5581081367188],[117.013077421875,27.5995778632813],[117.001158476563,27.6292385078125],[117.013077421875,27.6381081367188],[117.024371367188,27.6665261054688],[117.05185671875,27.6781081367188],[117.08291140625,27.6363576484375],[117.10470828125,27.6401100898437],[117.094761992188,27.697895734375],[117.19123171875,27.6812868476563],[117.201612578125,27.7195778632813],[117.2521496875,27.7299758125001],[117.277345,27.763843]]]]}},{"type":"Feature","properties":{"name":"建阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.637345,27.333843],[118.626568632813,27.312544171875],[118.603985625,27.3304836250001],[118.580704375,27.3372023750001],[118.577345,27.343843],[118.5964465625,27.3779616523438],[118.61170046875,27.35819846875],[118.6286340625,27.3451296210938],[118.637345,27.333843]]],[[[118.487345,27.533843],[118.475152617188,27.5304201484376],[118.483922148438,27.5216506171876],[118.504439726563,27.5271218085938],[118.527564726563,27.5570851875],[118.567345,27.563843],[118.631793242188,27.5718947578125],[118.622896757813,27.5482888007813],[118.591793242188,27.5093971992188],[118.587345,27.493843],[118.565035429688,27.4876296210938],[118.548785429688,27.4479299140625],[118.553082304688,27.418843],[118.551607695313,27.408843],[118.553082304688,27.3988430000001],[118.551070585938,27.3852346015625],[118.567345,27.343843],[118.553702421875,27.3268093085938],[118.517345,27.3313307929688],[118.492345,27.3282204414063],[118.481983671875,27.3295095039063],[118.462896757813,27.3182888007813],[118.43166140625,27.3093581367188],[118.43447390625,27.2867116523438],[118.411890898438,27.2895217109375],[118.398428984375,27.2727101875],[118.361890898438,27.2681642890625],[118.352545195313,27.27983909375],[118.317769804688,27.2593971992188],[118.281793242188,27.2782888007813],[118.252574492188,27.299634015625],[118.155845976563,27.271977765625],[118.149859648438,27.223843],[118.15533328125,27.1798366523438],[118.142345,27.1782204414063],[118.127652617188,27.1800490546875],[118.071793242188,27.1593971992188],[118.022652617188,27.1381838203125],[118.010079375,27.1397463203125],[117.992896757813,27.1182888007813],[117.987345,27.113843],[117.957955351563,27.1184743476563],[117.935694609375,27.1507155585938],[117.922345,27.1477223945313],[117.909381132813,27.1506276679688],[117.913468046875,27.1688430000001],[117.9098059375,27.1851735664063],[117.8637903125,27.1979274726563],[117.827345,27.173843],[117.82298953125,27.19948753125],[117.80170046875,27.20819846875],[117.751314726563,27.2509059882813],[117.727838164063,27.2474391914063],[117.707315703125,27.2208498359375],[117.69298953125,27.23960471875],[117.715792265625,27.3178102851563],[117.6815246875,27.3383034492188],[117.683140898438,27.3492336250001],[117.666549101563,27.3767360664063],[117.65170046875,27.38819846875],[117.639429960938,27.4040993476563],[117.64314578125,27.4292726875001],[117.62170046875,27.45819846875],[117.609654570313,27.4876296210938],[117.57170046875,27.49819846875],[117.560084257813,27.5265822578125],[117.517345,27.5838430000001],[117.538472929688,27.5892653632813],[117.552393828125,27.6435207343751],[117.587428007813,27.6677101875001],[117.614346953125,27.7148683906251],[117.627345,27.723843],[117.642896757813,27.7193971992188],[117.671793242188,27.6982888007813],[117.702896757813,27.6893971992188],[117.721793242188,27.6434206367188],[117.701676054688,27.6092018867188],[117.704737578125,27.5845949531251],[117.786158476563,27.5544948554688],[117.780533476563,27.5092971015625],[117.797926054688,27.4953688789063],[117.821793242188,27.5093971992188],[117.85103640625,27.5217189765625],[117.861793242188,27.5082888007813],[117.878453398438,27.4949489570313],[117.891793242188,27.4782888007813],[117.953219023438,27.4607253242188],[118.001793242188,27.4793971992188],[118.074078398438,27.4899172187501],[118.07037234375,27.5197096992187],[118.091890898438,27.5170339179687],[118.106236601563,27.5349489570313],[118.131632109375,27.5552834296876],[118.144566679688,27.585981671875],[118.139312773438,27.628208234375],[118.160357695313,27.6382888007812],[118.173428984375,27.5925612617188],[118.171724882813,27.5788430000001],[118.1739465625,27.5609572578125],[118.242345,27.5694655585938],[118.267345,27.5663552070313],[118.300640898438,27.5704958320313],[118.327345,27.603843],[118.352994414063,27.6101442695312],[118.36142703125,27.5979274726563],[118.417345,27.5783278632813],[118.43142703125,27.5579274726563],[118.4768371875,27.5490602851563],[118.487345,27.533843]]]]}},{"type":"Feature","properties":{"name":"建瓯市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.037345,27.0138430000001],[118.033922148438,27.0016506171875],[118.025152617188,27.0104201484375],[118.037345,27.0138430000001]]],[[[118.037345,27.0138430000001],[118.043585234375,27.0392580390625],[118.026568632813,27.0653932929688],[117.986178007813,27.0563405585938],[117.993472929688,27.0888845039062],[117.987345,27.113843],[117.992896757813,27.1182888007813],[118.010079375,27.1397463203125],[118.022652617188,27.1381838203125],[118.071793242188,27.1593971992188],[118.127652617188,27.1800490546875],[118.142345,27.1782204414063],[118.15533328125,27.1798366523438],[118.149859648438,27.223843],[118.155845976563,27.271977765625],[118.252574492188,27.299634015625],[118.281793242188,27.2782888007813],[118.317769804688,27.2593971992188],[118.352545195313,27.27983909375],[118.361890898438,27.2681642890625],[118.398428984375,27.2727101875],[118.411890898438,27.2895217109375],[118.43447390625,27.2867116523438],[118.43166140625,27.3093581367188],[118.462896757813,27.3182888007813],[118.481983671875,27.3295095039063],[118.492345,27.3282204414063],[118.517345,27.3313307929688],[118.553702421875,27.3268093085938],[118.567345,27.343843],[118.577345,27.343843],[118.580704375,27.3372023750001],[118.603985625,27.3304836250001],[118.626568632813,27.312544171875],[118.637345,27.333843],[118.671793242188,27.3182888007813],[118.735152617188,27.309067609375],[118.758546171875,27.2798537421875],[118.793800078125,27.3005763984375],[118.845338164063,27.2858400703126],[118.861793242188,27.2282888007813],[118.882896757813,27.2193971992188],[118.89791140625,27.2006447578125],[118.932896757813,27.1793971992188],[118.937345,27.173843],[118.931666289063,27.1692971015625],[118.932965117188,27.1588430000001],[118.931666289063,27.1483888984375],[118.942896757813,27.1393971992188],[118.951793242188,27.107046125],[118.917222929688,27.1113454414063],[118.866490507813,27.0391750312501],[118.841793242188,27.0193971992187],[118.829932890625,26.991255109375],[118.798785429688,26.978130109375],[118.782896757813,26.9582888007813],[118.712452421875,26.9480373359375],[118.682896757813,26.9593971992188],[118.662896757813,26.96046409375],[118.696553984375,26.9143898750001],[118.687345,26.873843],[118.68326296875,26.8679274726562],[118.627891875,26.8537184882813],[118.638570585938,26.806079328125],[118.615513945313,26.7706740546875],[118.596651640625,26.7202712226563],[118.58142703125,26.7097585273438],[118.577345,26.7038430000001],[118.535484648438,26.6987258125],[118.52298953125,26.66819846875],[118.49673953125,26.65745628125],[118.482345,26.6595827460938],[118.455889921875,26.6556716132813],[118.43045046875,26.6710182929688],[118.433160429688,26.6893556953125],[118.417222929688,26.7016579414063],[118.377345,26.685981671875],[118.321871367188,26.7077883125001],[118.31162234375,26.7328224921875],[118.291529570313,26.7483303046875],[118.294483671875,26.7683303046875],[118.280206328125,26.7793556953125],[118.29091921875,26.8518581367188],[118.264127226563,26.87819846875],[118.251182890625,26.8317116523438],[118.25677859375,26.793843],[118.22170046875,26.77948753125],[118.212579375,26.7676686835938],[118.192735625,26.7796388984375],[118.181807890625,26.7780251289063],[118.159635039063,26.815093],[118.10978640625,26.8077248359375],[118.097345,26.8238430000001],[118.11298953125,26.8281984687501],[118.14357546875,26.8508766914063],[118.166851835938,26.8474391914063],[118.182857695313,26.8267018867188],[118.214195585938,26.831333234375],[118.211529570313,26.8493556953125],[118.243765898438,26.8742360664063],[118.238409453125,26.9104787421875],[118.219967070313,26.9077516914063],[118.225953398438,26.9482717109376],[118.155347929688,26.9771706367188],[118.132579375,26.9476686835938],[118.095484648438,26.9700466132813],[118.076202421875,26.9671974921875],[118.059654570313,27.0076296210937],[118.037345,27.0138430000001]]]]}},{"type":"Feature","properties":{"name":"浦城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.487345,27.533843],[118.483922148438,27.5216506171876],[118.475152617188,27.5304201484376],[118.487345,27.533843]]],[[[118.487345,27.533843],[118.4768371875,27.5490602851563],[118.43142703125,27.5579274726563],[118.417345,27.5783278632813],[118.36142703125,27.5979274726563],[118.352994414063,27.6101442695312],[118.327345,27.603843],[118.321217070313,27.6288014960938],[118.323580351563,27.6393483710938],[118.3007825,27.6687624335938],[118.31857546875,27.69608909375],[118.30142703125,27.7079274726563],[118.29326296875,27.7397585273438],[118.265777617188,27.7752175117188],[118.227345,27.7666017890625],[118.209381132813,27.7706276679688],[118.216158476563,27.80085471875],[118.18970828125,27.8191139960938],[118.215709257813,27.828843],[118.210211210938,27.8533571601563],[118.255611601563,27.8792702460938],[118.249454375,27.9067287421875],[118.270367460938,27.938843],[118.247789335938,27.9735182929688],[118.253526640625,27.9991213203126],[118.241163359375,28.0285646796875],[118.243468046875,28.0388430000001],[118.241217070313,28.0488845039063],[118.247345,28.0738430000001],[118.269801054688,28.0824733710938],[118.34884890625,28.0995778632813],[118.361793242188,28.1593971992188],[118.377100859375,28.1716579414063],[118.362896757813,28.1893971992188],[118.323311796875,28.2060768867188],[118.320533476563,28.2284011054688],[118.371793242188,28.2693971992188],[118.392896757813,28.2782888007813],[118.411793242188,28.2893971992188],[118.427345,28.293843],[118.438219023438,28.252622296875],[118.496851835938,28.2410353828125],[118.488648710938,28.2825368476563],[118.530484648438,28.2742702460938],[118.542115507813,28.2904982734375],[118.583170195313,28.2796681953126],[118.595513945313,28.2624489570313],[118.673170195313,28.2780178046875],[118.691519804688,28.3096681953125],[118.697345,28.3138430000001],[118.725225859375,28.3066872382813],[118.72107546875,28.2881716132813],[118.73326296875,28.2797585273438],[118.747955351563,28.2584743476563],[118.777345,28.253843],[118.78170046875,28.2481984687501],[118.804815703125,28.230356671875],[118.760816679688,28.1784450507813],[118.80170046875,28.1670607734375],[118.79298953125,28.11819846875],[118.762999296875,28.105923078125],[118.718272734375,28.07140159375],[118.724561796875,28.028843],[118.721182890625,28.0059743476563],[118.735416289063,27.9548659492188],[118.81834109375,27.920923078125],[118.823082304688,27.8888430000001],[118.82158328125,27.8787013984375],[118.827345,27.8538430000001],[118.77197390625,27.8292140937501],[118.682974882813,27.7768556953126],[118.67103640625,27.685639875],[118.629010039063,27.6494289375],[118.561119414063,27.6390846992188],[118.562745390625,27.6188430000001],[118.561402617188,27.6021364570313],[118.567345,27.563843],[118.527564726563,27.5570851875],[118.504439726563,27.5271218085938],[118.487345,27.533843]]]]}},{"type":"Feature","properties":{"name":"邵武市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.427345,27.0538430000001],[117.423922148438,27.0416506171875],[117.415152617188,27.0504201484375],[117.427345,27.0538430000001]]],[[[117.427345,27.0538430000001],[117.421314726563,27.0657595039063],[117.397345,27.0538430000001],[117.381793242188,27.0782888007813],[117.372896757813,27.0993971992188],[117.331793242188,27.1082888007813],[117.277242460938,27.1318386054688],[117.262896757813,27.1254128242188],[117.283023710938,27.1092971015625],[117.278956328125,27.0765798164063],[117.24822390625,27.0345095039063],[117.19236453125,27.0673439765626],[117.172896757813,27.0993971992188],[117.152530546875,27.115708234375],[117.1224621875,27.098032453125],[117.09205203125,27.10972190625],[117.082545195313,27.0978469062501],[117.062144804688,27.1098390937501],[117.057345,27.103843],[117.047345,27.103843],[117.038394804688,27.1448854804688],[117.091671171875,27.2092995429688],[117.107847929688,27.2079982734376],[117.167232695313,27.2769240546875],[117.157345,27.303843],[117.161832304688,27.3096584296875],[117.178345976563,27.3072170234375],[117.264127226563,27.3217897773438],[117.258648710938,27.3588430000001],[117.263082304688,27.3888430000001],[117.260206328125,27.4083303046875],[117.27298953125,27.41819846875],[117.282345,27.441059796875],[117.30263796875,27.4380617500001],[117.348365507813,27.4560378242188],[117.377345,27.4603200507812],[117.39623171875,27.4575295234376],[117.386519804688,27.5232717109376],[117.42298953125,27.53819846875],[117.431832304688,27.5496584296876],[117.44673953125,27.54745628125],[117.47298953125,27.5581984687501],[117.48170046875,27.57948753125],[117.517345,27.5838430000001],[117.560084257813,27.5265822578125],[117.57170046875,27.49819846875],[117.609654570313,27.4876296210938],[117.62170046875,27.45819846875],[117.64314578125,27.4292726875001],[117.639429960938,27.4040993476563],[117.65170046875,27.38819846875],[117.666549101563,27.3767360664063],[117.683140898438,27.3492336250001],[117.6815246875,27.3383034492188],[117.715792265625,27.3178102851563],[117.69298953125,27.23960471875],[117.707315703125,27.2208498359375],[117.727838164063,27.2474391914063],[117.751314726563,27.2509059882813],[117.80170046875,27.20819846875],[117.82298953125,27.19948753125],[117.827345,27.173843],[117.814146757813,27.1632741523438],[117.775289335938,27.0992971015625],[117.751793242188,27.0893971992188],[117.7387121875,27.07306175],[117.744210234375,27.028843],[117.741724882813,27.0088430000001],[117.742965117188,26.998843],[117.739859648438,26.9738649726563],[117.710714140625,26.9505251289062],[117.632008085938,26.9280202460937],[117.622896757813,26.9393971992188],[117.58080203125,26.9514333320313],[117.586573515625,26.99784690625],[117.55365359375,27.0117189765626],[117.542896757813,26.9982888007813],[117.537345,26.993843],[117.530538359375,27.0044728828126],[117.4890246875,27.0177468085938],[117.448746367188,27.0064260078125],[117.433443632813,27.0499391914062],[117.427345,27.0538430000001]]]]}},{"type":"Feature","properties":{"name":"顺昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.037345,27.0138430000001],[118.025152617188,27.0104201484375],[118.033922148438,27.0016506171875],[118.059654570313,27.0076296210937],[118.076202421875,26.9671974921875],[118.095484648438,26.9700466132813],[118.132579375,26.9476686835938],[118.155347929688,26.9771706367188],[118.225953398438,26.9482717109376],[118.219967070313,26.9077516914063],[118.238409453125,26.9104787421875],[118.243765898438,26.8742360664063],[118.211529570313,26.8493556953125],[118.214195585938,26.831333234375],[118.182857695313,26.8267018867188],[118.166851835938,26.8474391914063],[118.14357546875,26.8508766914063],[118.11298953125,26.8281984687501],[118.097345,26.8238430000001],[118.081041289063,26.8280275703125],[118.085709257813,26.848843],[118.0445325,26.8642507148438],[118.02435671875,26.8350295234375],[118.001573515625,26.8401369453125],[117.99326296875,26.8179274726563],[117.97142703125,26.8097585273438],[117.95435671875,26.7850295234375],[117.9055871875,26.7959621406251],[117.887056914063,26.7237599921875],[117.87142703125,26.6997585273438],[117.86326296875,26.6779274726563],[117.847345,26.6738430000001],[117.842784453125,26.679536359375],[117.752999296875,26.6668971992188],[117.732345,26.6694655585938],[117.715318632813,26.6673464179688],[117.659976835938,26.6348171210938],[117.663033476563,26.6593727851563],[117.637345,26.6638430000001],[117.632896757813,26.6793971992188],[117.60166140625,26.6883278632813],[117.603023710938,26.6992971015626],[117.5854309375,26.713384015625],[117.642896757813,26.7482888007813],[117.651793242188,26.7693971992188],[117.663013945313,26.7884841132813],[117.661724882813,26.798843],[117.663023710938,26.8092971015625],[117.651793242188,26.8182888007813],[117.622896757813,26.8593971992188],[117.581793242188,26.9082888007813],[117.572843046875,26.92952659375],[117.562345,26.9282204414062],[117.547345,26.9300856757813],[117.532345,26.9282204414062],[117.522345,26.9294655585938],[117.502603789063,26.9270095039063],[117.492896757813,26.9422731757813],[117.52084109375,26.9646486640626],[117.537345,26.993843],[117.542896757813,26.9982888007813],[117.55365359375,27.0117189765626],[117.586573515625,26.99784690625],[117.58080203125,26.9514333320313],[117.622896757813,26.9393971992188],[117.632008085938,26.9280202460937],[117.710714140625,26.9505251289062],[117.739859648438,26.9738649726563],[117.742965117188,26.998843],[117.741724882813,27.0088430000001],[117.744210234375,27.028843],[117.7387121875,27.07306175],[117.751793242188,27.0893971992188],[117.775289335938,27.0992971015625],[117.814146757813,27.1632741523438],[117.827345,27.173843],[117.8637903125,27.1979274726563],[117.9098059375,27.1851735664063],[117.913468046875,27.1688430000001],[117.909381132813,27.1506276679688],[117.922345,27.1477223945313],[117.935694609375,27.1507155585938],[117.957955351563,27.1184743476563],[117.987345,27.113843],[117.993472929688,27.0888845039062],[117.986178007813,27.0563405585938],[118.026568632813,27.0653932929688],[118.043585234375,27.0392580390625],[118.037345,27.0138430000001]]]]}},{"type":"Feature","properties":{"name":"松溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.827345,27.8538430000001],[118.827345,27.833843],[118.837345,27.833843],[118.8446496875,27.8041139960938],[118.840206328125,27.7842971015625],[118.875323515625,27.7321413398438],[118.90142703125,27.7141188789063],[118.892843046875,27.7076100898438],[118.87326296875,27.7119997382813],[118.88142703125,27.6679274726562],[118.898253203125,27.6420900703126],[118.904801054688,27.6128932929688],[118.891329375,27.5604030585938],[118.85326296875,27.5341188789063],[118.86142703125,27.5179274726563],[118.882296171875,27.503520734375],[118.887345,27.483843],[118.88142703125,27.4797585273438],[118.87170046875,27.4537526679688],[118.85142703125,27.4397585273438],[118.84033328125,27.4236891914063],[118.802345,27.4322048164063],[118.782345,27.4277223945313],[118.768443632813,27.4308376289063],[118.73326296875,27.4079274726563],[118.701969023438,27.3997585273438],[118.657882109375,27.4339284492188],[118.667003203125,27.4746169257813],[118.627965117188,27.489223859375],[118.587345,27.493843],[118.591793242188,27.5093971992188],[118.622896757813,27.5482888007813],[118.631793242188,27.5718947578125],[118.567345,27.563843],[118.561402617188,27.6021364570313],[118.562745390625,27.6188430000001],[118.561119414063,27.6390846992188],[118.629010039063,27.6494289375],[118.67103640625,27.685639875],[118.682974882813,27.7768556953126],[118.77197390625,27.8292140937501],[118.827345,27.8538430000001]]]]}},{"type":"Feature","properties":{"name":"武夷山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.247345,28.0738430000001],[118.241217070313,28.0488845039063],[118.243468046875,28.0388430000001],[118.241163359375,28.0285646796875],[118.253526640625,27.9991213203126],[118.247789335938,27.9735182929688],[118.270367460938,27.938843],[118.249454375,27.9067287421875],[118.255611601563,27.8792702460938],[118.210211210938,27.8533571601563],[118.215709257813,27.828843],[118.18970828125,27.8191139960938],[118.216158476563,27.80085471875],[118.209381132813,27.7706276679688],[118.227345,27.7666017890625],[118.265777617188,27.7752175117188],[118.29326296875,27.7397585273438],[118.30142703125,27.7079274726563],[118.31857546875,27.69608909375],[118.3007825,27.6687624335938],[118.323580351563,27.6393483710938],[118.321217070313,27.6288014960938],[118.327345,27.603843],[118.300640898438,27.5704958320313],[118.267345,27.5663552070313],[118.242345,27.5694655585938],[118.1739465625,27.5609572578125],[118.171724882813,27.5788430000001],[118.173428984375,27.5925612617188],[118.160357695313,27.6382888007812],[118.139312773438,27.628208234375],[118.144566679688,27.585981671875],[118.131632109375,27.5552834296876],[118.106236601563,27.5349489570313],[118.091890898438,27.5170339179687],[118.07037234375,27.5197096992187],[118.074078398438,27.4899172187501],[118.001793242188,27.4793971992188],[117.953219023438,27.4607253242188],[117.891793242188,27.4782888007813],[117.878453398438,27.4949489570313],[117.861793242188,27.5082888007813],[117.85103640625,27.5217189765625],[117.821793242188,27.5093971992188],[117.797926054688,27.4953688789063],[117.780533476563,27.5092971015625],[117.786158476563,27.5544948554688],[117.704737578125,27.5845949531251],[117.701676054688,27.6092018867188],[117.721793242188,27.6434206367188],[117.702896757813,27.6893971992188],[117.671793242188,27.6982888007813],[117.642896757813,27.7193971992188],[117.627345,27.723843],[117.633048125,27.7443288398438],[117.67314578125,27.7984133125],[117.67156375,27.80913596875],[117.677345,27.823843],[117.688912382813,27.8382888007813],[117.702896757813,27.8293971992188],[117.718472929688,27.809946515625],[117.74000125,27.8072682929688],[117.783018828125,27.85843284375],[117.77798953125,27.8988649726563],[117.842896757813,27.9382888007813],[117.851890898438,27.9495217109375],[117.875206328125,27.9466213203125],[117.902896757813,27.9582888007813],[117.927222929688,27.9725905585938],[117.969249296875,27.9673610664063],[117.982896757813,27.9782888007813],[117.991793242188,27.9893971992188],[117.997345,27.993843],[118.002965117188,27.986001203125],[118.0319153125,27.9917214179688],[118.063170195313,27.9796681953126],[118.082984648438,27.9670876289062],[118.093892851563,28.0215016914063],[118.126041289063,28.0151491523437],[118.117779570313,28.0569533515626],[118.147345,28.0627956367188],[118.192891875,28.053794171875],[118.217345,28.063843],[118.230704375,28.070483625],[118.247345,28.0738430000001]]]]}},{"type":"Feature","properties":{"name":"延平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.294483671875,26.7683303046875],[118.291529570313,26.7483303046875],[118.31162234375,26.7328224921875],[118.321871367188,26.7077883125001],[118.377345,26.685981671875],[118.417222929688,26.7016579414063],[118.433160429688,26.6893556953125],[118.43045046875,26.6710182929688],[118.455889921875,26.6556716132813],[118.482345,26.6595827460938],[118.49673953125,26.65745628125],[118.52298953125,26.66819846875],[118.535484648438,26.6987258125],[118.577345,26.7038430000001],[118.57062625,26.6867482734375],[118.595675078125,26.6674123359376],[118.581573515625,26.6190529609375],[118.583082304688,26.608843],[118.576519804688,26.5644142890625],[118.616812773438,26.5479225898438],[118.60156375,26.5091359687501],[118.604019804688,26.4924929023438],[118.59298953125,26.47819846875],[118.558277617188,26.4639919257813],[118.548785429688,26.3997560859375],[118.561954375,26.3675759101563],[118.582735625,26.3801100898437],[118.591954375,26.3575759101563],[118.61560671875,26.3718434882813],[118.65588015625,26.347759015625],[118.6516028125,26.3188088203126],[118.657345,26.2838430000001],[118.663985625,26.2704836250001],[118.667345,26.2538430000001],[118.637681914063,26.2704470039063],[118.62298953125,26.28948753125],[118.585401640625,26.3184987617188],[118.56170046875,26.32819846875],[118.55298953125,26.33948753125],[118.52170046875,26.34819846875],[118.492345,26.3659059882812],[118.460767851563,26.346860578125],[118.437838164063,26.3502468085938],[118.420670195313,26.3724929023438],[118.423389921875,26.3909059882813],[118.442896757813,26.3880226875],[118.45170046875,26.4053981757813],[118.393922148438,26.3968605781251],[118.372735625,26.4096388984375],[118.357345,26.4073659492188],[118.320709257813,26.412778546875],[118.323160429688,26.4293556953125],[118.304810820313,26.4435158515626],[118.29298953125,26.42819846875],[118.26170046875,26.41948753125],[118.250753203125,26.3927394843751],[118.215289335938,26.4141335273438],[118.193883085938,26.3863991523438],[118.17205203125,26.3896242500001],[118.138804960938,26.3765529609376],[118.107345,26.383843],[118.099176054688,26.3956740546875],[118.08107546875,26.4081716132813],[118.084215117188,26.4221950507812],[118.06142703125,26.4379274726563],[118.048892851563,26.471430890625],[118.023819609375,26.4658107734375],[118.033648710938,26.5096584296875],[118.00142703125,26.5179274726563],[117.990714140625,26.5465651679688],[117.997037382813,26.5747756171875],[117.9870715625,26.5879274726563],[117.973013945313,26.5675710273438],[117.947345,26.573325421875],[117.917345,26.5666017890626],[117.892345,26.5722048164063],[117.871636992188,26.567563703125],[117.84455203125,26.6150124335938],[117.86408328125,26.6284963203125],[117.85142703125,26.6479274726563],[117.847345,26.6738430000001],[117.86326296875,26.6779274726563],[117.87142703125,26.6997585273438],[117.887056914063,26.7237599921875],[117.9055871875,26.7959621406251],[117.95435671875,26.7850295234375],[117.97142703125,26.8097585273438],[117.99326296875,26.8179274726563],[118.001573515625,26.8401369453125],[118.02435671875,26.8350295234375],[118.0445325,26.8642507148438],[118.085709257813,26.848843],[118.081041289063,26.8280275703125],[118.097345,26.8238430000001],[118.10978640625,26.8077248359375],[118.159635039063,26.815093],[118.181807890625,26.7780251289063],[118.192735625,26.7796388984375],[118.212579375,26.7676686835938],[118.22170046875,26.77948753125],[118.25677859375,26.793843],[118.251182890625,26.8317116523438],[118.264127226563,26.87819846875],[118.29091921875,26.8518581367188],[118.280206328125,26.7793556953125],[118.294483671875,26.7683303046875]]]]}},{"type":"Feature","properties":{"name":"政和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.054664335938,27.4733254218751],[119.082779570313,27.46776878125],[119.114674101563,27.4880178046875],[119.12509890625,27.4777736640626],[119.11625125,27.4330104804688],[119.142345,27.4278542304688],[119.152345,27.4298317695313],[119.162345,27.4278542304688],[119.172345,27.4298317695313],[119.207345,27.4229152656251],[119.242633085938,27.4298879218751],[119.257345,27.423843],[119.264635039063,27.3794704414063],[119.249605742188,27.3678688789063],[119.237345,27.323843],[119.211881132813,27.3093044257813],[119.202808867188,27.2601467109375],[119.2714465625,27.2178078437501],[119.2544934375,27.1993044257813],[119.205968046875,27.2342263007812],[119.179444609375,27.2022951484375],[119.183873320313,27.1588430000001],[119.181793242188,27.138452375],[119.192808867188,27.1293044257813],[119.201881132813,27.1173610664063],[119.182345,27.1193532539063],[119.169107695313,27.1180031562501],[119.152808867188,27.0983815742188],[119.131881132813,27.0893044257813],[119.122808867188,27.0583815742188],[119.117345,27.0538430000001],[119.08298953125,27.09948753125],[119.04521609375,27.1100051093751],[118.992711210938,27.1022463203125],[118.981832304688,27.16628440625],[118.937345,27.173843],[118.932896757813,27.1793971992188],[118.89791140625,27.2006447578125],[118.882896757813,27.2193971992188],[118.861793242188,27.2282888007813],[118.845338164063,27.2858400703126],[118.793800078125,27.3005763984375],[118.758546171875,27.2798537421875],[118.735152617188,27.309067609375],[118.671793242188,27.3182888007813],[118.637345,27.333843],[118.6286340625,27.3451296210938],[118.61170046875,27.35819846875],[118.5964465625,27.3779616523438],[118.577345,27.343843],[118.567345,27.343843],[118.551070585938,27.3852346015625],[118.553082304688,27.3988430000001],[118.551607695313,27.408843],[118.553082304688,27.418843],[118.548785429688,27.4479299140625],[118.565035429688,27.4876296210938],[118.587345,27.493843],[118.627965117188,27.489223859375],[118.667003203125,27.4746169257813],[118.657882109375,27.4339284492188],[118.701969023438,27.3997585273438],[118.73326296875,27.4079274726563],[118.768443632813,27.4308376289063],[118.782345,27.4277223945313],[118.802345,27.4322048164063],[118.84033328125,27.4236891914063],[118.85142703125,27.4397585273438],[118.87170046875,27.4537526679688],[118.88142703125,27.4797585273438],[118.887345,27.483843],[118.893170195313,27.4796681953126],[118.90162234375,27.4678786445313],[118.952965117188,27.4577321601562],[118.965694609375,27.475493390625],[118.983453398438,27.4882228828126],[118.979542265625,27.5080178046875],[119.013170195313,27.4996681953125],[119.054664335938,27.4733254218751]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长汀县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.397345,26.033843],[116.438511992188,26.0146218085938],[116.470191679688,26.0217214179688],[116.481690703125,25.9769045234375],[116.509097929688,25.9947536445313],[116.534620390625,26.000473859375],[116.56326296875,25.9897585273438],[116.5745325,25.9734352851562],[116.617432890625,25.9894899726563],[116.631842070313,26.0103542304688],[116.647345,26.003843],[116.640670195313,25.97667503125],[116.65142703125,25.9479274726563],[116.66326296875,25.9397585273438],[116.667345,25.933843],[116.66197390625,25.9292140937501],[116.65271609375,25.87847190625],[116.612730742188,25.8664333320313],[116.63271609375,25.8492140937501],[116.659908476563,25.8176540351563],[116.62197390625,25.7692140937501],[116.61271609375,25.72847190625],[116.593331328125,25.6937258125001],[116.581495390625,25.6544142890626],[116.583551054688,25.628843],[116.581138945313,25.5988430000001],[116.584176054688,25.5610817695313],[116.571217070313,25.5378615546875],[116.573453398438,25.5100563789063],[116.547345,25.4538430000001],[116.52189578125,25.4597389960938],[116.49490359375,25.424770734375],[116.461954375,25.4296388984375],[116.44045046875,25.4166677070313],[116.44314578125,25.3984133125],[116.419854765625,25.3669948554688],[116.397345,25.3703200507813],[116.37978640625,25.3677248359375],[116.358878203125,25.394809796875],[116.312320585938,25.3602907539063],[116.299429960938,25.3435866523438],[116.303160429688,25.3183303046875],[116.297345,25.313843],[116.27170046875,25.31819846875],[116.260328398438,25.3459914375],[116.280714140625,25.3978493476563],[116.310103789063,25.4465749335938],[116.28170046875,25.4581984687501],[116.27298953125,25.46948753125],[116.24170046875,25.47819846875],[116.232857695313,25.4896584296876],[116.207345,25.4858864570313],[116.172345,25.491059796875],[116.140494414063,25.486352765625],[116.144561796875,25.458843],[116.120128203125,25.4488430000001],[116.14298953125,25.4394875312501],[116.15170046875,25.4312892890625],[116.118424101563,25.41948753125],[116.0986340625,25.4451296210937],[116.07869265625,25.4605202460938],[116.05478640625,25.45698753125],[116.02298953125,25.46948753125],[116.007345,25.473843],[116.000538359375,25.4780373359375],[116.010347929688,25.5095314765625],[116.023531523438,25.5176564765625],[116.027345,25.543843],[116.056202421875,25.55968284375],[116.033170195313,25.6355055976563],[116.05228640625,25.6398415351563],[116.065631132813,25.6372048164063],[116.054190703125,25.6950978828125],[116.103170195313,25.7080178046876],[116.115987578125,25.7565993476563],[116.142345,25.7618068671876],[116.16892703125,25.7565529609375],[116.17375125,25.7809548164063],[116.148995390625,25.8154933906251],[116.123170195313,25.8340016914063],[116.13490359375,25.8700734687501],[116.190831328125,25.9055788398438],[116.217345,25.9108180976562],[116.251773710938,25.9040163398438],[116.302862578125,25.933637921875],[116.321519804688,25.9596681953126],[116.337345,25.963843],[116.347345,25.963843],[116.367345,25.963843],[116.367345,25.973843],[116.357315703125,25.99401878125],[116.375201445313,26.0293727851563],[116.397345,26.033843]]]]}},{"type":"Feature","properties":{"name":"连城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.74459109375,25.8990407539063],[116.7380090625,25.8545070625],[116.784947539063,25.8614430976563],[116.777198515625,25.8090114570313],[116.826143828125,25.7794875312501],[116.86298953125,25.79819846875],[116.87170046875,25.8194875312501],[116.88298953125,25.82819846875],[116.897564726563,25.8470851875],[116.937345,25.853843],[116.945391875,25.8426174140625],[117.0123059375,25.8629445625],[117.021519804688,25.8280178046875],[117.034918242188,25.8184133125],[117.060953398438,25.777407453125],[117.049503203125,25.7194631171875],[117.065186796875,25.7082228828125],[117.060328398438,25.6836330390625],[117.079244414063,25.6572414375001],[117.110601835938,25.6634377265625],[117.141519804688,25.6180178046875],[117.153170195313,25.6096681953126],[117.161519804688,25.5780178046875],[117.167345,25.573843],[117.159176054688,25.5420119453125],[117.14107546875,25.5295143867188],[117.144849882813,25.5126784492188],[117.10037234375,25.5226491523438],[117.105504179688,25.4997585273438],[117.055733671875,25.5116896796875],[117.042418242188,25.530981671875],[117.002066679688,25.5400270820313],[116.972623320313,25.5276589179688],[116.961676054688,25.5301149726563],[116.95326296875,25.5179274726563],[116.939132109375,25.5081716132813],[116.945557890625,25.4795143867188],[116.930831328125,25.4693459296875],[116.948121367188,25.4281862617188],[116.917193632813,25.40683128125],[116.923526640625,25.3785646796876],[116.917345,25.363843],[116.855147734375,25.3925783515625],[116.833160429688,25.3679665351563],[116.81224734375,25.3793288398438],[116.793101835938,25.3579030585938],[116.77209109375,25.3591555],[116.754097929688,25.3390163398438],[116.703370390625,25.3233522773438],[116.692437773438,25.2879445625],[116.672345,25.2891408515625],[116.66088015625,25.2884572578126],[116.663629179688,25.2422756171875],[116.632628203125,25.2591237617188],[116.6120325,25.2685768867188],[116.6126575,25.2790798164063],[116.591822539063,25.3089089179688],[116.610147734375,25.3252834296875],[116.589469023438,25.3633376289063],[116.57146609375,25.3785622382813],[116.572735625,25.3573293281251],[116.540660429688,25.3592409492187],[116.547345,25.4538430000001],[116.573453398438,25.5100563789063],[116.571217070313,25.5378615546875],[116.584176054688,25.5610817695313],[116.581138945313,25.5988430000001],[116.583551054688,25.628843],[116.581495390625,25.6544142890626],[116.593331328125,25.6937258125001],[116.61271609375,25.72847190625],[116.62197390625,25.7692140937501],[116.659908476563,25.8176540351563],[116.63271609375,25.8492140937501],[116.612730742188,25.8664333320313],[116.65271609375,25.87847190625],[116.66197390625,25.9292140937501],[116.667345,25.933843],[116.695616484375,25.9290407539062],[116.71170046875,25.90819846875],[116.74459109375,25.8990407539063]]]]}},{"type":"Feature","properties":{"name":"上杭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.547345,25.4538430000001],[116.540660429688,25.3592409492187],[116.572735625,25.3573293281251],[116.57146609375,25.3785622382813],[116.589469023438,25.3633376289063],[116.610147734375,25.3252834296875],[116.591822539063,25.3089089179688],[116.6126575,25.2790798164063],[116.6120325,25.2685768867188],[116.632628203125,25.2591237617188],[116.663629179688,25.2422756171875],[116.66088015625,25.2884572578126],[116.672345,25.2891408515625],[116.692437773438,25.2879445625],[116.703370390625,25.3233522773438],[116.754097929688,25.3390163398438],[116.77209109375,25.3591555],[116.793101835938,25.3579030585938],[116.81224734375,25.3793288398438],[116.833160429688,25.3679665351563],[116.855147734375,25.3925783515625],[116.917345,25.363843],[116.951793242188,25.3539943671875],[116.942896757813,25.3382888007813],[116.921441679688,25.3211086250001],[116.9235559375,25.3040895820313],[116.902799101563,25.2781642890625],[116.882896757813,25.280639875],[116.895181914063,25.2635842109375],[116.921241484375,25.2427150703125],[116.923717070313,25.2227956367188],[116.854908476563,25.2079055000001],[116.831793242188,25.1893971992187],[116.814610625,25.1679396796875],[116.783702421875,25.171782453125],[116.761890898438,25.1445461250001],[116.69812625,25.1524782539063],[116.679742460938,25.1377565742187],[116.742896757813,25.0993971992188],[116.751793242188,25.0682888007813],[116.757345,25.0638430000001],[116.76170046875,25.0481984687501],[116.777066679688,25.0227248359375],[116.75298953125,25.0081984687501],[116.725279570313,24.9968581367188],[116.754078398438,24.9580178046875],[116.73947390625,24.9055739570313],[116.696514921875,24.9119216132813],[116.63298953125,24.8859206367188],[116.643209257813,24.84167503125],[116.691339140625,24.8219753242188],[116.672857695313,24.7980275703126],[116.662345,24.7995827460938],[116.643922148438,24.7968605781251],[116.608546171875,24.8181984687501],[116.58170046875,24.80948753125],[116.558546171875,24.77948753125],[116.54170046875,24.78819846875],[116.532735625,24.8101100898438],[116.51298953125,24.79819846875],[116.48170046875,24.7894875312501],[116.471832304688,24.7767018867188],[116.437515898438,24.7817726875],[116.417345,24.773843],[116.39326296875,24.7897585273438],[116.377345,24.793843],[116.371807890625,24.8085768867188],[116.373551054688,24.8256935859376],[116.4114465625,24.8421291328125],[116.391881132813,24.8583815742188],[116.387345,24.8838430000001],[116.381939726563,24.9388063789063],[116.383560820313,24.9589601875],[116.35197390625,24.96847190625],[116.3406653125,24.9815944648438],[116.292027617188,24.9682839179688],[116.28271609375,24.99921409375],[116.267242460938,25.0125441718751],[116.292896757813,25.0487258125001],[116.275089140625,25.0972194648438],[116.32271609375,25.11847190625],[116.343267851563,25.1423268867187],[116.341842070313,25.1600881171875],[116.37037234375,25.1577956367188],[116.39197390625,25.164009015625],[116.35197390625,25.1984719062501],[116.34271609375,25.20921409375],[116.288804960938,25.2190505195313],[116.27271609375,25.2412404609375],[116.29271609375,25.25847190625],[116.306046171875,25.2739430976563],[116.297345,25.313843],[116.303160429688,25.3183303046875],[116.299429960938,25.3435866523438],[116.312320585938,25.3602907539063],[116.358878203125,25.394809796875],[116.37978640625,25.3677248359375],[116.397345,25.3703200507813],[116.419854765625,25.3669948554688],[116.44314578125,25.3984133125],[116.44045046875,25.4166677070313],[116.461954375,25.4296388984375],[116.49490359375,25.424770734375],[116.52189578125,25.4597389960938],[116.547345,25.4538430000001]]]]}},{"type":"Feature","properties":{"name":"武平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.172345,25.491059796875],[116.207345,25.4858864570313],[116.232857695313,25.4896584296876],[116.24170046875,25.47819846875],[116.27298953125,25.46948753125],[116.28170046875,25.4581984687501],[116.310103789063,25.4465749335938],[116.280714140625,25.3978493476563],[116.260328398438,25.3459914375],[116.27170046875,25.31819846875],[116.297345,25.313843],[116.306046171875,25.2739430976563],[116.29271609375,25.25847190625],[116.27271609375,25.2412404609375],[116.288804960938,25.2190505195313],[116.34271609375,25.20921409375],[116.35197390625,25.1984719062501],[116.39197390625,25.164009015625],[116.37037234375,25.1577956367188],[116.341842070313,25.1600881171875],[116.343267851563,25.1423268867187],[116.32271609375,25.11847190625],[116.275089140625,25.0972194648438],[116.292896757813,25.0487258125001],[116.267242460938,25.0125441718751],[116.28271609375,24.99921409375],[116.292027617188,24.9682839179688],[116.3406653125,24.9815944648438],[116.35197390625,24.96847190625],[116.383560820313,24.9589601875],[116.381939726563,24.9388063789063],[116.387345,24.8838430000001],[116.354195585938,24.8651027656251],[116.339932890625,24.831255109375],[116.311793242188,24.8193971992188],[116.292896757813,24.8082888007813],[116.253033476563,24.7968923164063],[116.22638796875,24.8002053046875],[116.24341921875,24.8291774726562],[116.221793242188,24.8382888007813],[116.208453398438,24.8549489570313],[116.191793242188,24.8682888007813],[116.182467070313,24.8799343085938],[116.141397734375,24.8470900703125],[116.087345,24.853843],[116.055113554688,24.8590529609375],[116.026475859375,24.8990041328125],[115.981519804688,24.9080178046876],[115.972965117188,24.9199538398438],[115.962345,24.9178542304687],[115.911783476563,24.9278469062501],[115.887345,24.943843],[115.874713164063,24.9543337226563],[115.862808867188,24.971343],[115.921651640625,24.9653469062501],[115.864288359375,25.0129958320313],[115.889488554688,25.0339308906251],[115.923233671875,25.0485646796875],[115.906334257813,25.078071515625],[115.881881132813,25.0983815742188],[115.87107546875,25.1113893867188],[115.874849882813,25.1484206367188],[115.851793242188,25.1584206367188],[115.852882109375,25.1691091132813],[115.847345,25.1838430000001],[115.854483671875,25.1893556953126],[115.851607695313,25.208843],[115.853389921875,25.2209059882813],[115.87263796875,25.21806175],[115.925885039063,25.2389919257812],[115.945260039063,25.2640993476563],[115.941519804688,25.2894142890625],[115.96795046875,25.30022971875],[115.982345,25.2981032539063],[115.998746367188,25.3005275703125],[115.991607695313,25.348843],[115.993082304688,25.358843],[115.990362578125,25.3772658515625],[116.003140898438,25.398452375],[116.001529570313,25.4093556953125],[116.016090117188,25.4205934882813],[116.007345,25.473843],[116.02298953125,25.46948753125],[116.05478640625,25.45698753125],[116.07869265625,25.4605202460938],[116.0986340625,25.4451296210937],[116.118424101563,25.41948753125],[116.15170046875,25.4312892890625],[116.14298953125,25.4394875312501],[116.120128203125,25.4488430000001],[116.144561796875,25.458843],[116.140494414063,25.486352765625],[116.172345,25.491059796875]]]]}},{"type":"Feature","properties":{"name":"新罗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.171129179688,25.5849294257813],[117.193560820313,25.5627565742188],[117.197345,25.573843],[117.229132109375,25.5647536445313],[117.261793242188,25.5182888007813],[117.301378203125,25.5016091132813],[117.303023710938,25.4883888984376],[117.28970828125,25.4777272773438],[117.301793242188,25.4082888007813],[117.33853640625,25.3928054023438],[117.321666289063,25.3792971015625],[117.323590117188,25.363843],[117.319234648438,25.328843],[117.323590117188,25.2938430000001],[117.321724882813,25.278843],[117.32447390625,25.2567116523437],[117.296109648438,25.260239484375],[117.250054960938,25.2322658515625],[117.253023710938,25.2083888984375],[117.23361453125,25.1928469062501],[117.263409453125,25.1689870429688],[117.241793242188,25.1393971992188],[117.227764921875,25.0903420234376],[117.185592070313,25.0725685859375],[117.171627226563,24.9985158515626],[117.193175078125,24.9690138984376],[117.181793242188,24.9393971992188],[117.177345,24.923843],[117.194268828125,24.8882033515625],[117.160714140625,24.86964378125],[117.171109648438,24.8326540351563],[117.145909453125,24.8165212226563],[117.14093875,24.7988430000001],[117.145152617188,24.7838478828126],[117.121886015625,24.777309796875],[117.099893828125,24.792368390625],[117.071851835938,24.7844875312501],[117.063443632813,24.8299391914063],[117.057345,24.833843],[117.06677859375,24.8770998359375],[117.041539335938,24.898843],[117.061754179688,24.9162575507813],[117.009722929688,24.9394753242188],[116.99271609375,24.95921409375],[116.97838015625,24.971567609375],[116.92045046875,24.9502956367188],[116.923150664063,24.983843],[116.921793242188,25.0007033515625],[116.8819153125,25.0184963203126],[116.883150664063,25.0338430000001],[116.881734648438,25.0514455390625],[116.848858671875,25.0797682929688],[116.832022734375,25.0784157539062],[116.822476835938,25.0894948554688],[116.802623320313,25.0784181953125],[116.783199492188,25.0799806953126],[116.757345,25.0638430000001],[116.751793242188,25.0682888007813],[116.742896757813,25.0993971992188],[116.679742460938,25.1377565742187],[116.69812625,25.1524782539063],[116.761890898438,25.1445461250001],[116.783702421875,25.171782453125],[116.814610625,25.1679396796875],[116.831793242188,25.1893971992187],[116.854908476563,25.2079055000001],[116.923717070313,25.2227956367188],[116.921241484375,25.2427150703125],[116.895181914063,25.2635842109375],[116.882896757813,25.280639875],[116.902799101563,25.2781642890625],[116.9235559375,25.3040895820313],[116.921441679688,25.3211086250001],[116.942896757813,25.3382888007813],[116.951793242188,25.3539943671875],[116.917345,25.363843],[116.923526640625,25.3785646796876],[116.917193632813,25.40683128125],[116.948121367188,25.4281862617188],[116.930831328125,25.4693459296875],[116.945557890625,25.4795143867188],[116.939132109375,25.5081716132813],[116.95326296875,25.5179274726563],[116.961676054688,25.5301149726563],[116.972623320313,25.5276589179688],[117.002066679688,25.5400270820313],[117.042418242188,25.530981671875],[117.055733671875,25.5116896796875],[117.105504179688,25.4997585273438],[117.10037234375,25.5226491523438],[117.144849882813,25.5126784492188],[117.14107546875,25.5295143867188],[117.159176054688,25.5420119453125],[117.167345,25.573843],[117.171129179688,25.5849294257813]]]]}},{"type":"Feature","properties":{"name":"永定县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.822476835938,25.0894948554688],[116.832022734375,25.0784157539062],[116.848858671875,25.0797682929688],[116.881734648438,25.0514455390625],[116.883150664063,25.0338430000001],[116.8819153125,25.0184963203126],[116.921793242188,25.0007033515625],[116.923150664063,24.983843],[116.92045046875,24.9502956367188],[116.97838015625,24.971567609375],[116.99271609375,24.95921409375],[117.009722929688,24.9394753242188],[117.061754179688,24.9162575507813],[117.041539335938,24.898843],[117.06677859375,24.8770998359375],[117.057345,24.833843],[117.051793242188,24.8293971992188],[117.042896757813,24.7982888007813],[117.023668242188,24.7828908515625],[117.012896757813,24.7054128242188],[117.033023710938,24.6892971015625],[117.031724882813,24.678843],[117.036417265625,24.6411086250001],[117.020533476563,24.6283888984375],[117.022974882813,24.6087721992187],[117.017345,24.5738430000001],[117.011485625,24.5516384101563],[116.992345,24.5478542304688],[116.944205351563,24.557368390625],[116.922965117188,24.5277321601563],[116.905636015625,24.5311574531251],[116.936920195313,24.4612917304688],[116.94341921875,24.4284108710938],[116.931519804688,24.4096681953125],[116.923170195313,24.3880178046875],[116.897345,24.3838430000001],[116.872154570313,24.3986525703125],[116.836090117188,24.4375759101563],[116.85263796875,24.468843],[116.84154421875,24.4898024726563],[116.8100403125,24.4885524726563],[116.7481653125,24.555337140625],[116.762550078125,24.5686647773438],[116.761763945313,24.5885231757813],[116.811925078125,24.6539382148438],[116.79033328125,24.6886525703126],[116.751812773438,24.6682692695313],[116.722345,24.6694387031251],[116.676671171875,24.6676271796875],[116.622496367188,24.648637921875],[116.59326296875,24.6497975898438],[116.558482695313,24.6258620429688],[116.547345,24.6138430000001],[116.514644804688,24.6067116523438],[116.488599882813,24.7213552070313],[116.442667265625,24.7176638007813],[116.4280871875,24.7345876289063],[116.408975859375,24.7510524726563],[116.417345,24.773843],[116.437515898438,24.7817726875],[116.471832304688,24.7767018867188],[116.48170046875,24.7894875312501],[116.51298953125,24.79819846875],[116.532735625,24.8101100898438],[116.54170046875,24.78819846875],[116.558546171875,24.77948753125],[116.58170046875,24.80948753125],[116.608546171875,24.8181984687501],[116.643922148438,24.7968605781251],[116.662345,24.7995827460938],[116.672857695313,24.7980275703126],[116.691339140625,24.8219753242188],[116.643209257813,24.84167503125],[116.63298953125,24.8859206367188],[116.696514921875,24.9119216132813],[116.73947390625,24.9055739570313],[116.754078398438,24.9580178046875],[116.725279570313,24.9968581367188],[116.75298953125,25.0081984687501],[116.777066679688,25.0227248359375],[116.76170046875,25.0481984687501],[116.757345,25.0638430000001],[116.783199492188,25.0799806953126],[116.802623320313,25.0784181953125],[116.822476835938,25.0894948554688]]]]}},{"type":"Feature","properties":{"name":"漳平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.537345,25.203843],[117.547345,25.203843],[117.547345,25.193843],[117.537345,25.193843],[117.537345,25.203843]]],[[[117.537345,25.203843],[117.531612578125,25.1995778632813],[117.523077421875,25.1881081367188],[117.482266875,25.171889875],[117.473077421875,25.1394460273438],[117.503077421875,25.0995778632812],[117.511612578125,25.0618923164063],[117.491612578125,25.0295778632813],[117.483048125,24.9578615546876],[117.432799101563,24.9665114570313],[117.417237578125,24.9874318671875],[117.357345,24.9771218085938],[117.335050078125,24.9809596992188],[117.317345,24.973843],[117.281514921875,24.9782228828125],[117.283433867188,24.9912209296875],[117.259127226563,24.9876296210937],[117.22951296875,24.9152736640626],[117.177345,24.923843],[117.181793242188,24.9393971992188],[117.193175078125,24.9690138984376],[117.171627226563,24.9985158515626],[117.185592070313,25.0725685859375],[117.227764921875,25.0903420234376],[117.241793242188,25.1393971992188],[117.263409453125,25.1689870429688],[117.23361453125,25.1928469062501],[117.253023710938,25.2083888984375],[117.250054960938,25.2322658515625],[117.296109648438,25.260239484375],[117.32447390625,25.2567116523437],[117.321724882813,25.278843],[117.323590117188,25.2938430000001],[117.319234648438,25.328843],[117.323590117188,25.363843],[117.321666289063,25.3792971015625],[117.33853640625,25.3928054023438],[117.301793242188,25.4082888007813],[117.28970828125,25.4777272773438],[117.303023710938,25.4883888984376],[117.301378203125,25.5016091132813],[117.261793242188,25.5182888007813],[117.229132109375,25.5647536445313],[117.197345,25.573843],[117.22170046875,25.60948753125],[117.23298953125,25.6181984687501],[117.242271757813,25.6515334296875],[117.29170046875,25.6717653632813],[117.28298953125,25.67948753125],[117.24298953125,25.6906252265625],[117.273116484375,25.7370973945313],[117.330943632813,25.75319846875],[117.345264921875,25.78819846875],[117.373170195313,25.7794289375],[117.371607695313,25.768843],[117.373082304688,25.7588430000001],[117.370670195313,25.7424929023438],[117.381832304688,25.7280275703125],[117.392960234375,25.729673078125],[117.402940703125,25.65948753125],[117.43298953125,25.66819846875],[117.476363554688,25.748071515625],[117.487345,25.733843],[117.50228640625,25.7081813789063],[117.520494414063,25.7285622382813],[117.5785559375,25.687993390625],[117.596168242188,25.6496193671876],[117.648521757813,25.6780666328125],[117.662891875,25.6467555976563],[117.693189726563,25.6196877265625],[117.713101835938,25.5973976875],[117.752061796875,25.5997194648438],[117.725875273438,25.5577394843751],[117.693033476563,25.5596950507813],[117.678448515625,25.5190456367188],[117.717345,25.513843],[117.711163359375,25.4991213203125],[117.713565703125,25.4883962226563],[117.687222929688,25.4479421210937],[117.697345,25.423843],[117.691158476563,25.4200295234375],[117.6798840625,25.4017385078125],[117.687017851563,25.3788430000001],[117.678199492188,25.3505300117188],[117.654971953125,25.3362184882813],[117.641051054688,25.3136257148438],[117.601158476563,25.3000295234375],[117.593531523438,25.2785158515625],[117.616202421875,25.2462282539063],[117.6087121875,25.2221877265625],[117.569928007813,25.2342678046876],[117.557345,25.213843],[117.537345,25.213843],[117.537345,25.203843]],[[117.225152617188,24.9572658515625],[117.237345,24.9538430000001],[117.233922148438,24.9660353828125],[117.225152617188,24.9572658515625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"福安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.650152617188,26.738843],[119.637345,26.733843],[119.637345,26.7438430000001],[119.650152617188,26.738843]]],[[[119.597345,26.793843],[119.597345,26.7838430000001],[119.587345,26.7838430000001],[119.587345,26.793843],[119.597345,26.793843]]],[[[119.817345,27.0138430000001],[119.805152617188,27.0104201484375],[119.813922148438,27.0016506171875],[119.83490359375,27.0093361640625],[119.864586210938,26.988843],[119.845704375,26.9758034492188],[119.828590117188,26.9205959296876],[119.833468046875,26.8988430000001],[119.825250273438,26.8621950507813],[119.837345,26.8538430000001],[119.837345,26.843843],[119.817345,26.843843],[119.817345,26.833843],[119.807345,26.833843],[119.791002226563,26.8419655585938],[119.787345,26.8238430000001],[119.755225859375,26.8156008125],[119.763468046875,26.7788430000001],[119.756314726563,26.746938703125],[119.737345,26.733843],[119.731807890625,26.7485768867188],[119.734771757813,26.777671125],[119.716422148438,26.7929177070313],[119.695631132813,26.8179470039063],[119.679581328125,26.7809450507812],[119.683404570313,26.7434548164063],[119.737345,26.733843],[119.718111601563,26.6994875312501],[119.686241484375,26.7164089179688],[119.646265898438,26.76819846875],[119.63170046875,26.75948753125],[119.627345,26.753843],[119.617345,26.753843],[119.62908328125,26.8016384101563],[119.597345,26.793843],[119.602061796875,26.8091237617188],[119.631221953125,26.8351784492188],[119.60181765625,26.8486745429687],[119.612886992188,26.8690431953125],[119.577301054688,26.8800319648438],[119.551431914063,26.8784914375],[119.55353640625,26.913843],[119.551929960938,26.9408107734375],[119.522252226563,26.9673268867188],[119.487345,26.9738430000001],[119.480704375,26.977202375],[119.472315703125,27.0062697578126],[119.44406375,27.0205617500001],[119.437345,27.033843],[119.449537382813,27.0372658515626],[119.440767851563,27.0460353828125],[119.437345,27.033843],[119.42263796875,27.0396242500001],[119.404185820313,27.0368971992188],[119.39298953125,27.0427614570313],[119.41298953125,27.0581984687501],[119.42170046875,27.06948753125],[119.44298953125,27.07819846875],[119.45170046875,27.1009645820313],[119.422857695313,27.0967018867188],[119.392447539063,27.1361013007813],[119.38298953125,27.1627614570313],[119.397345,27.173843],[119.431539335938,27.183364484375],[119.45170046875,27.20948753125],[119.48298953125,27.2181984687501],[119.51478640625,27.23069846875],[119.582003203125,27.220766828125],[119.591832304688,27.2080275703125],[119.615640898438,27.2115456367188],[119.611607695313,27.2388430000001],[119.613082304688,27.248843],[119.61048953125,27.2664040351563],[119.623424101563,27.2993093085938],[119.601363554688,27.3083376289063],[119.615269804688,27.3560182929688],[119.694000273438,27.3726345039062],[119.691529570313,27.3893556953125],[119.70298953125,27.39819846875],[119.707345,27.403843],[119.717345,27.403843],[119.717345,27.3938430000001],[119.727345,27.3938430000001],[119.747203398438,27.3837966132813],[119.737486601563,27.3638893867188],[119.764293242188,27.3503273750001],[119.77478640625,27.328843],[119.765504179688,27.3098342109375],[119.777345,27.303843],[119.7737121875,27.2874733710938],[119.760406523438,27.2589894843751],[119.770767851563,27.2314968085938],[119.7509778125,27.2202126289063],[119.7437121875,27.2074733710938],[119.727022734375,27.1979592109375],[119.73611453125,27.173843],[119.727525664063,27.1510622382812],[119.7409778125,27.1274733710938],[119.7637121875,27.1202126289063],[119.7709778125,27.0974733710938],[119.777345,27.0938430000001],[119.78406375,27.08056175],[119.804293242188,27.070327375],[119.8172278125,27.043843],[119.809893828125,27.0288283515625],[119.817345,27.0138430000001]]]]}},{"type":"Feature","properties":{"name":"福鼎市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.317345,26.943843],[120.298546171875,26.9194875312501],[120.283878203125,26.9381569648438],[120.317345,26.943843]]],[[[120.317345,26.943843],[120.325108671875,26.9683571601563],[120.36093875,26.9697780585937],[120.382154570313,26.950122296875],[120.356685820313,26.9197536445313],[120.317345,26.943843]]],[[[120.71334109375,26.996567609375],[120.717345,26.9738430000001],[120.704346953125,26.9794045234375],[120.71334109375,26.996567609375]]],[[[120.706553984375,27.0172634101563],[120.697345,26.993843],[120.68298953125,27.0049245429688],[120.706553984375,27.0172634101563]]],[[[120.367345,27.0938430000001],[120.390343046875,27.089790265625],[120.372779570313,27.0811452460938],[120.367345,27.0938430000001]]],[[[120.403922148438,27.1060353828126],[120.407345,27.0938430000001],[120.395152617188,27.0972658515625],[120.403922148438,27.1060353828126]]],[[[120.417345,27.143843],[120.427345,27.143843],[120.422345,27.1310353828125],[120.417345,27.143843]]],[[[120.427345,27.143843],[120.430767851563,27.1560353828125],[120.439537382813,27.1472658515626],[120.427345,27.143843]]],[[[120.437345,27.173843],[120.432345,27.1610353828125],[120.427345,27.173843],[120.437345,27.173843]]],[[[120.407345,27.193843],[120.417345,27.193843],[120.417345,27.183843],[120.407345,27.183843],[120.407345,27.193843]]],[[[120.407345,27.193843],[120.397345,27.193843],[120.397345,27.2038430000001],[120.407345,27.2038430000001],[120.407345,27.193843]]],[[[120.397345,27.2038430000001],[120.384537382813,27.2088430000001],[120.397345,27.213843],[120.397345,27.2038430000001]]],[[[120.287345,27.2738430000001],[120.287345,27.2838430000001],[120.297345,27.2838430000001],[120.297345,27.2738430000001],[120.287345,27.2738430000001]]],[[[120.347345,27.233843],[120.335152617188,27.2304201484375],[120.343922148438,27.2216506171876],[120.379464140625,27.2256008125],[120.37107546875,27.1881716132813],[120.389176054688,27.1756740546876],[120.40142703125,27.1579274726563],[120.41326296875,27.1497585273438],[120.417345,27.143843],[120.39326296875,27.1279274726563],[120.36970828125,27.1191139960938],[120.384586210938,27.108843],[120.37142703125,27.0997585273438],[120.367345,27.0938430000001],[120.317359648438,27.1000881171875],[120.294508085938,27.0972463203126],[120.262301054688,27.10962425],[120.252896757813,27.1054128242188],[120.272896757813,27.0893971992188],[120.291793242188,27.0424123359376],[120.262066679688,27.0598830390626],[120.247345,27.033843],[120.235152617188,27.0304201484376],[120.243922148438,27.0216506171875],[120.247345,27.033843],[120.267345,27.033843],[120.267345,26.993843],[120.247345,26.993843],[120.24271609375,26.99921409375],[120.200250273438,27.00886253125],[120.178253203125,27.0343947578125],[120.154342070313,27.087983625],[120.108570585938,27.0555300117188],[120.05562625,27.0597853828125],[120.000787382813,27.0799221015625],[119.982086210938,27.0784206367188],[119.947345,27.0938430000001],[119.96197390625,27.11921409375],[119.978951445313,27.133843],[119.961163359375,27.1491677070313],[119.964127226563,27.186040265625],[120.019288359375,27.1657839179688],[120.063511992188,27.1693386054688],[120.061236601563,27.1976149726563],[119.96125125,27.260239484375],[119.962877226563,27.2804616523438],[119.932535429688,27.3066017890625],[119.927345,27.323843],[119.93244265625,27.3287429023437],[119.96224734375,27.3689430976562],[119.99771609375,27.3861525703125],[120.02845828125,27.3392629218751],[120.0744934375,27.3704665351563],[120.09224734375,27.3889430976563],[120.102857695313,27.3991384101563],[120.12244265625,27.3987380195313],[120.13224734375,27.4189430976563],[120.185264921875,27.4292946601563],[120.217345,27.428637921875],[120.233043242188,27.4289601875],[120.247345,27.443843],[120.25271609375,27.43921409375],[120.267769804688,27.38921409375],[120.30271609375,27.39847190625],[120.315865507813,27.4137331367188],[120.343629179688,27.3898146796875],[120.341300078125,27.3608571601563],[120.3566028125,27.3430983710938],[120.373663359375,27.3284011054688],[120.423116484375,27.2586501289063],[120.4019153125,27.2491896796875],[120.403526640625,27.2291677070313],[120.397345,27.223843],[120.392105742188,27.2330275703126],[120.3551184375,27.2474733710938],[120.347345,27.233843]],[[120.317345,27.2838430000001],[120.329537382813,27.2872658515625],[120.320767851563,27.2960353828126],[120.297345,27.2838430000001],[120.283775664063,27.3067287421875],[120.273624296875,27.281977765625],[120.287345,27.2738430000001],[120.269166289063,27.2373976875001],[120.297345,27.233843],[120.30142703125,27.2179274726563],[120.3171496875,27.1997585273438],[120.33142703125,27.2422145820313],[120.297345,27.233843],[120.30142703125,27.2597585273438],[120.317345,27.2838430000001]],[[120.227345,27.253843],[120.233565703125,27.2437477851563],[120.271158476563,27.2584841132813],[120.253756132813,27.3076564765625],[120.237564726563,27.2601393867188],[120.2162903125,27.2969240546875],[120.189132109375,27.2781716132813],[120.194586210938,27.253843],[120.18326296875,27.2033205390625],[120.20326296875,27.2079274726562],[120.218038359375,27.2474147773438],[120.227345,27.253843]],[[120.375152617188,27.1372658515625],[120.387345,27.133843],[120.383922148438,27.1460353828126],[120.375152617188,27.1372658515625]]]]}},{"type":"Feature","properties":{"name":"古田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.687345,26.873843],[118.712174101563,26.86831565625],[118.723941679688,26.8695143867188],[118.72107546875,26.8413893867188],[118.731881132813,26.8283815742188],[118.771085234375,26.8113796210938],[118.791861601563,26.7863649726563],[118.858521757813,26.8059279609375],[118.887139921875,26.8223171210938],[118.921422148438,26.793843],[118.872808867188,26.7534596992188],[118.88423953125,26.7470632148438],[118.922808867188,26.7583815742188],[118.96607546875,26.7831618476563],[119.002345,26.762387921875],[119.04466921875,26.7866286445313],[119.039874296875,26.73960471875],[119.086812773438,26.7348195625],[119.127345,26.7438430000001],[119.142667265625,26.7260573554688],[119.187345,26.7296462226563],[119.212022734375,26.7276638007813],[119.238389921875,26.758266828125],[119.25197390625,26.69847190625],[119.27271609375,26.6892140937501],[119.292066679688,26.6784181953125],[119.330289335938,26.6814894843751],[119.34271609375,26.65921409375],[119.351998320313,26.6384133125001],[119.3822278125,26.6408425117188],[119.387345,26.623843],[119.363170195313,26.6080178046875],[119.341519804688,26.5996681953126],[119.322779570313,26.58776878125],[119.284654570313,26.5953029609375],[119.272984648438,26.5370876289063],[119.252037382813,26.5503884101563],[119.243170195313,26.5380178046876],[119.218375273438,26.5202468085938],[119.197779570313,26.5736428046875],[119.1588684375,26.54894065625],[119.127345,26.543843],[119.106666289063,26.5487136054688],[119.093531523438,26.5700295234376],[119.06047,26.5778176093751],[119.067198515625,26.5994264960938],[119.017164335938,26.6076564765626],[119.003531523438,26.5676564765626],[118.990323515625,26.559516828125],[118.997345,26.543843],[118.997345,26.533843],[118.95170046875,26.52948753125],[118.939429960938,26.5135866523438],[118.944947539063,26.4762429023438],[118.912345,26.481059796875],[118.876549101563,26.4757692695312],[118.848707304688,26.4396950507813],[118.809698515625,26.4294875312501],[118.79298953125,26.48948753125],[118.78170046875,26.49819846875],[118.77298953125,26.5094875312501],[118.740225859375,26.51819846875],[118.744327421875,26.4904201484376],[118.73170046875,26.4694875312501],[118.72298953125,26.4449245429688],[118.753463164063,26.4214015937501],[118.750206328125,26.3993556953125],[118.796334257813,26.3637477851563],[118.778531523438,26.334233625],[118.725889921875,26.3420143867188],[118.689913359375,26.3203102851563],[118.693800078125,26.2939943671875],[118.657345,26.2838430000001],[118.6516028125,26.3188088203126],[118.65588015625,26.347759015625],[118.61560671875,26.3718434882813],[118.591954375,26.3575759101563],[118.582735625,26.3801100898437],[118.561954375,26.3675759101563],[118.548785429688,26.3997560859375],[118.558277617188,26.4639919257813],[118.59298953125,26.47819846875],[118.604019804688,26.4924929023438],[118.60156375,26.5091359687501],[118.616812773438,26.5479225898438],[118.576519804688,26.5644142890625],[118.583082304688,26.608843],[118.581573515625,26.6190529609375],[118.595675078125,26.6674123359376],[118.57062625,26.6867482734375],[118.577345,26.7038430000001],[118.58142703125,26.7097585273438],[118.596651640625,26.7202712226563],[118.615513945313,26.7706740546875],[118.638570585938,26.806079328125],[118.627891875,26.8537184882813],[118.68326296875,26.8679274726562],[118.687345,26.873843]]]]}},{"type":"Feature","properties":{"name":"蕉城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.797345,26.563843],[119.793922148438,26.5516506171875],[119.785152617188,26.5604201484375],[119.797345,26.563843]]],[[[119.797345,26.563843],[119.800767851563,26.5760353828126],[119.809537382813,26.5672658515625],[119.797345,26.563843]]],[[[119.767345,26.583843],[119.790338164063,26.5796462226563],[119.777345,26.573843],[119.767345,26.573843],[119.767345,26.583843]]],[[[119.767345,26.583843],[119.747345,26.583843],[119.747345,26.5938430000001],[119.767345,26.5938430000001],[119.767345,26.583843]]],[[[119.782154570313,26.6090334296875],[119.777345,26.603843],[119.752535429688,26.6116970039063],[119.787877226563,26.6386525703126],[119.81173953125,26.6229958320313],[119.782154570313,26.6090334296875]]],[[[119.643922148438,26.6460353828126],[119.647345,26.6338430000001],[119.635152617188,26.6372658515625],[119.643922148438,26.6460353828126]]],[[[119.727345,26.6638430000001],[119.720391875,26.6500978828125],[119.692345,26.63640159375],[119.682345,26.64128440625],[119.660225859375,26.630483625],[119.6607825,26.677202375],[119.713985625,26.670483625],[119.727345,26.6638430000001]]],[[[119.727345,26.6638430000001],[119.743975859375,26.6879274726563],[119.761412382813,26.6725856757813],[119.727345,26.6638430000001]]],[[[119.787345,26.693843],[119.783922148438,26.6816506171875],[119.775152617188,26.6904201484376],[119.787345,26.693843]]],[[[119.651910429688,26.7165407539063],[119.657345,26.7038430000001],[119.634346953125,26.707895734375],[119.651910429688,26.7165407539063]]],[[[119.557345,26.763843],[119.553922148438,26.7760353828125],[119.545152617188,26.7672658515626],[119.56142703125,26.7479274726563],[119.585504179688,26.7397585273438],[119.581217070313,26.7588845039063],[119.587345,26.7838430000001],[119.597345,26.7838430000001],[119.604561796875,26.7797267890625],[119.59447390625,26.7529665351563],[119.6095715625,26.7402126289063],[119.617345,26.753843],[119.627345,26.753843],[119.627345,26.7438430000001],[119.637345,26.7438430000001],[119.637345,26.733843],[119.583326445313,26.7171608710938],[119.623043242188,26.6989333320313],[119.612061796875,26.6891237617188],[119.602628203125,26.6585622382813],[119.552901640625,26.643208234375],[119.55150515625,26.6197341132813],[119.572061796875,26.6085622382813],[119.592628203125,26.5991237617188],[119.602198515625,26.5782643867188],[119.632061796875,26.5991237617188],[119.652628203125,26.6085622382813],[119.67384890625,26.6200954414063],[119.733902617188,26.6088845039063],[119.747345,26.5938430000001],[119.734537382813,26.5888430000001],[119.747345,26.583843],[119.733013945313,26.5630886054688],[119.69033328125,26.5726564765626],[119.658375273438,26.5263698554688],[119.637345,26.5310842109375],[119.622066679688,26.5276589179688],[119.59326296875,26.5397585273438],[119.55978640625,26.5483498359375],[119.53142703125,26.5679274726563],[119.518082304688,26.6035939765625],[119.466002226563,26.6375099921876],[119.422345,26.6277223945313],[119.412301054688,26.6299733710938],[119.387345,26.623843],[119.3822278125,26.6408425117188],[119.351998320313,26.6384133125001],[119.34271609375,26.65921409375],[119.330289335938,26.6814894843751],[119.292066679688,26.6784181953125],[119.27271609375,26.6892140937501],[119.25197390625,26.69847190625],[119.238389921875,26.758266828125],[119.212022734375,26.7276638007813],[119.187345,26.7296462226563],[119.142667265625,26.7260573554688],[119.127345,26.7438430000001],[119.163170195313,26.7480178046875],[119.175694609375,26.7654933906251],[119.201295195313,26.7838430000001],[119.181519804688,26.7980178046875],[119.173170195313,26.817466046875],[119.2134778125,26.8281008125001],[119.209381132813,26.848843],[119.213331328125,26.868843],[119.211324492188,26.87901878125],[119.223580351563,26.9193727851563],[119.205694609375,26.932192609375],[119.197345,26.943843],[119.213985625,26.947202375],[119.233048125,26.9623464179688],[119.250704375,26.927202375],[119.263985625,26.920483625],[119.267345,26.913843],[119.255152617188,26.9104201484376],[119.263922148438,26.9016506171875],[119.267345,26.913843],[119.29033328125,26.9241408515625],[119.320655546875,26.9146974921875],[119.334761992188,26.8918093085938],[119.377345,26.9050734687501],[119.402345,26.8972853828126],[119.425655546875,26.9045461250001],[119.441158476563,26.9500295234375],[119.481051054688,26.9636257148438],[119.487345,26.9738430000001],[119.522252226563,26.9673268867188],[119.551929960938,26.9408107734375],[119.55353640625,26.913843],[119.551431914063,26.8784914375],[119.577301054688,26.8800319648438],[119.612886992188,26.8690431953125],[119.60181765625,26.8486745429687],[119.631221953125,26.8351784492188],[119.602061796875,26.8091237617188],[119.597345,26.793843],[119.587345,26.793843],[119.580704375,26.790483625],[119.57062625,26.77056175],[119.557345,26.763843]]]]}},{"type":"Feature","properties":{"name":"屏南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.981832304688,27.16628440625],[118.992711210938,27.1022463203125],[119.04521609375,27.1100051093751],[119.08298953125,27.09948753125],[119.117345,27.0538430000001],[119.149488554688,27.0062062812501],[119.204351835938,26.9688649726563],[119.183394804688,26.953843],[119.197345,26.943843],[119.205694609375,26.932192609375],[119.223580351563,26.9193727851563],[119.211324492188,26.87901878125],[119.213331328125,26.868843],[119.209381132813,26.848843],[119.2134778125,26.8281008125001],[119.173170195313,26.817466046875],[119.181519804688,26.7980178046875],[119.201295195313,26.7838430000001],[119.175694609375,26.7654933906251],[119.163170195313,26.7480178046875],[119.127345,26.7438430000001],[119.086812773438,26.7348195625],[119.039874296875,26.73960471875],[119.04466921875,26.7866286445313],[119.002345,26.762387921875],[118.96607546875,26.7831618476563],[118.922808867188,26.7583815742188],[118.88423953125,26.7470632148438],[118.872808867188,26.7534596992188],[118.921422148438,26.793843],[118.887139921875,26.8223171210938],[118.858521757813,26.8059279609375],[118.791861601563,26.7863649726563],[118.771085234375,26.8113796210938],[118.731881132813,26.8283815742188],[118.72107546875,26.8413893867188],[118.723941679688,26.8695143867188],[118.712174101563,26.86831565625],[118.687345,26.873843],[118.696553984375,26.9143898750001],[118.662896757813,26.96046409375],[118.682896757813,26.9593971992188],[118.712452421875,26.9480373359375],[118.782896757813,26.9582888007813],[118.798785429688,26.978130109375],[118.829932890625,26.991255109375],[118.841793242188,27.0193971992187],[118.866490507813,27.0391750312501],[118.917222929688,27.1113454414063],[118.951793242188,27.107046125],[118.942896757813,27.1393971992188],[118.931666289063,27.1483888984375],[118.932965117188,27.1588430000001],[118.931666289063,27.1692971015625],[118.937345,27.173843],[118.981832304688,27.16628440625]]]]}},{"type":"Feature","properties":{"name":"寿宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.727345,27.3938430000001],[119.717345,27.3938430000001],[119.717345,27.403843],[119.727345,27.403843],[119.727345,27.3938430000001]]],[[[119.637345,27.673843],[119.633531523438,27.6376564765626],[119.620460234375,27.6190407539063],[119.631158476563,27.5876564765625],[119.668873320313,27.5748024726563],[119.656632109375,27.5355055976563],[119.688590117188,27.5454592109375],[119.703912382813,27.4988747382812],[119.700787382813,27.488843],[119.705806914063,27.4727321601563],[119.69060671875,27.4388039375001],[119.707345,27.403843],[119.70298953125,27.39819846875],[119.691529570313,27.3893556953125],[119.694000273438,27.3726345039062],[119.615269804688,27.3560182929688],[119.601363554688,27.3083376289063],[119.623424101563,27.2993093085938],[119.61048953125,27.2664040351563],[119.613082304688,27.248843],[119.611607695313,27.2388430000001],[119.615640898438,27.2115456367188],[119.591832304688,27.2080275703125],[119.582003203125,27.220766828125],[119.51478640625,27.23069846875],[119.48298953125,27.2181984687501],[119.45170046875,27.20948753125],[119.431539335938,27.183364484375],[119.397345,27.173843],[119.388116484375,27.19784690625],[119.433214140625,27.2168508125],[119.431724882813,27.228843],[119.432965117188,27.2388430000001],[119.431724882813,27.248843],[119.43302859375,27.2593410468751],[119.407486601563,27.2701052070312],[119.391954375,27.2681716132812],[119.3582434375,27.2927956367188],[119.249537382813,27.3086183906251],[119.237345,27.323843],[119.249605742188,27.3678688789063],[119.264635039063,27.3794704414063],[119.257345,27.423843],[119.26271609375,27.42847190625],[119.284713164063,27.4540016914063],[119.33271609375,27.4884719062501],[119.344034453125,27.5260695625],[119.414742460938,27.53847190625],[119.432667265625,27.5176638007813],[119.457178984375,27.519634015625],[119.488804960938,27.570122296875],[119.497345,27.653843],[119.51271609375,27.65847190625],[119.542105742188,27.669262921875],[119.557345,27.6680397773437],[119.572345,27.6692458320312],[119.5823840625,27.6684377265626],[119.637345,27.673843]]]]}},{"type":"Feature","properties":{"name":"霞浦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.133922148438,26.4960353828126],[120.137345,26.4838430000001],[120.125152617188,26.4872658515625],[120.133922148438,26.4960353828126]]],[[[120.057345,26.5138430000001],[120.05255984375,26.5051149726563],[120.023804960938,26.4932619453126],[120.036490507813,26.5237917304688],[120.057345,26.5138430000001]]],[[[120.057345,26.5138430000001],[120.060767851563,26.5260353828125],[120.069537382813,26.5172658515625],[120.057345,26.5138430000001]]],[[[120.023922148438,26.5360353828126],[120.027345,26.523843],[120.015152617188,26.5272658515625],[120.023922148438,26.5360353828126]]],[[[120.143922148438,26.5460353828125],[120.147345,26.533843],[120.135152617188,26.5372658515626],[120.143922148438,26.5460353828125]]],[[[120.003922148438,26.5560353828125],[120.007345,26.543843],[119.995152617188,26.5472658515625],[120.003922148438,26.5560353828125]]],[[[120.153922148438,26.5660353828125],[120.157345,26.5538430000001],[120.145152617188,26.5572658515625],[120.153922148438,26.5660353828125]]],[[[120.103922148438,26.5860353828125],[120.107345,26.573843],[120.095152617188,26.5772658515626],[120.103922148438,26.5860353828125]]],[[[120.140704375,26.5704836250001],[120.137345,26.5538430000001],[120.117301054688,26.5639846015625],[120.130860625,26.5907936835938],[120.164464140625,26.607202375],[120.1638684375,26.5821999335938],[120.140704375,26.5704836250001]]],[[[120.353922148438,26.6560353828126],[120.357345,26.643843],[120.345152617188,26.6472658515626],[120.353922148438,26.6560353828126]]],[[[120.383922148438,26.6860353828126],[120.387345,26.6738430000001],[120.375152617188,26.6772658515625],[120.383922148438,26.6860353828126]]],[[[119.811910429688,26.6865407539063],[119.817345,26.6738430000001],[119.794346953125,26.677895734375],[119.811910429688,26.6865407539063]]],[[[120.133922148438,26.6960353828125],[120.137345,26.683843],[120.125152617188,26.6872658515626],[120.133922148438,26.6960353828125]]],[[[119.929957304688,26.6977712226563],[119.937345,26.6738430000001],[119.902628203125,26.6845632148438],[119.929957304688,26.6977712226563]]],[[[120.35334109375,26.7165676093751],[120.357345,26.693843],[120.344346953125,26.6994045234375],[120.35334109375,26.7165676093751]]],[[[120.007345,26.7138430000001],[119.984346953125,26.7178957343751],[120.001910429688,26.7265407539062],[120.007345,26.7138430000001]]],[[[120.143922148438,26.7760353828125],[120.147345,26.763843],[120.135152617188,26.7672658515626],[120.143922148438,26.7760353828125]]],[[[120.127345,26.793843],[120.132906523438,26.806841046875],[120.150069609375,26.7978493476562],[120.127345,26.793843]]],[[[120.193922148438,26.8960353828125],[120.197345,26.883843],[120.185152617188,26.8872658515625],[120.193922148438,26.8960353828125]]],[[[120.223922148438,26.8960353828125],[120.227345,26.883843],[120.215152617188,26.8872658515625],[120.223922148438,26.8960353828125]]],[[[120.257345,26.923843],[120.253922148438,26.9116506171876],[120.245152617188,26.9204201484376],[120.257345,26.923843]]],[[[120.257345,26.923843],[120.260767851563,26.9360353828125],[120.269537382813,26.9272658515625],[120.257345,26.923843]]],[[[120.253922148438,26.9560353828126],[120.257345,26.943843],[120.245152617188,26.9472658515625],[120.253922148438,26.9560353828126]]],[[[119.817345,27.0138430000001],[119.813922148438,27.0016506171875],[119.805152617188,27.0104201484375],[119.817345,27.0138430000001]]],[[[120.127345,26.793843],[120.11345828125,26.7777272773438],[120.085220976563,26.7533962226563],[120.130250273438,26.7282741523437],[120.15197390625,26.7300173164063],[120.14271609375,26.71847190625],[120.109156523438,26.7034963203125],[120.1127746875,26.6585182929688],[120.101539335938,26.648843],[120.119469023438,26.6333962226563],[120.083204375,26.6131642890625],[120.081944609375,26.6288430000001],[120.0834778125,26.6479518867188],[120.007589140625,26.6056105781251],[119.953756132813,26.6099343085937],[119.931920195313,26.5791384101563],[119.932877226563,26.5672243476563],[119.9066028125,26.5445876289063],[119.883961210938,26.5183107734375],[119.872345,26.5192458320313],[119.854361601563,26.5178005195313],[119.82740359375,26.5410231757813],[119.84271609375,26.56847190625],[119.856539335938,26.5994435859376],[119.89584109375,26.6213747382812],[119.942203398438,26.6176491523438],[119.962008085938,26.6492726875],[119.982847929688,26.6475978828125],[119.981539335938,26.6638430000001],[119.9827746875,26.6791677070313],[119.96716921875,26.6926100898438],[120.00271609375,26.70847190625],[120.007345,26.7138430000001],[120.022896757813,26.7182888007813],[120.031793242188,26.7393971992188],[120.042896757813,26.7482888007813],[120.051793242188,26.7593971992188],[120.071749296875,26.775376203125],[120.081793242188,26.8008034492188],[119.982999296875,26.7868971992188],[119.940572539063,26.792173078125],[119.912896757813,26.7834206367188],[119.933272734375,26.7487575507812],[119.901793242188,26.7093971992188],[119.891085234375,26.6839846015625],[119.893741484375,26.6626052070312],[119.860548125,26.6493971992188],[119.864381132813,26.6802028632813],[119.841793242188,26.6982888007813],[119.83263796875,26.7097219062501],[119.802896757813,26.6982888007813],[119.787345,26.693843],[119.7909778125,26.7102126289063],[119.80439578125,26.7283986640625],[119.79611453125,26.7503713203125],[119.814444609375,26.7874733710938],[119.843541289063,26.7765065742188],[119.850816679688,26.8174733710938],[119.8237121875,26.7974733710937],[119.791978789063,26.7902126289063],[119.787345,26.8238430000001],[119.807345,26.8238430000001],[119.807345,26.833843],[119.817345,26.833843],[119.837345,26.833843],[119.837345,26.843843],[119.858961210938,26.8469924140625],[119.841261015625,26.8653224921876],[119.837345,26.8538430000001],[119.825250273438,26.8621950507813],[119.833468046875,26.8988430000001],[119.828590117188,26.9205959296876],[119.845704375,26.9758034492188],[119.864586210938,26.988843],[119.83490359375,27.0093361640625],[119.817345,27.0138430000001],[119.809893828125,27.0288283515625],[119.8172278125,27.043843],[119.804293242188,27.070327375],[119.78406375,27.08056175],[119.777345,27.0938430000001],[119.792896757813,27.0982888007813],[119.826143828125,27.1178322578125],[119.843248320313,27.096469953125],[119.921441679688,27.111216046875],[119.931793242188,27.0982888007813],[119.947345,27.0938430000001],[119.982086210938,27.0784206367188],[120.000787382813,27.0799221015625],[120.05562625,27.0597853828125],[120.108570585938,27.0555300117188],[120.154342070313,27.087983625],[120.178253203125,27.0343947578125],[120.200250273438,27.00886253125],[120.24271609375,26.99921409375],[120.247345,26.993843],[120.238140898438,26.9819167304688],[120.212345,26.9781032539063],[120.16298953125,26.9853981757813],[120.19187625,26.9580348945312],[120.235391875,26.9644655585937],[120.231607695313,26.9388430000001],[120.234327421875,26.9204225898437],[120.167345,26.9303200507813],[120.152345,26.9281032539063],[120.142345,26.9295827460938],[120.132345,26.9281032539063],[120.108233671875,26.9316677070313],[120.11423953125,26.8910182929688],[120.092345,26.8778102851562],[120.058546171875,26.89819846875],[120.051070585938,26.8886843085938],[120.064215117188,26.878540265625],[120.02435671875,26.8674416328125],[120.020670195313,26.8424929023438],[120.037838164063,26.8202468085938],[120.052345,26.8181032539063],[120.073883085938,26.8212868476563],[120.09170046875,26.7981984687501],[120.127345,26.793843]]]]}},{"type":"Feature","properties":{"name":"周宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.267345,26.913843],[119.263922148438,26.9016506171875],[119.255152617188,26.9104201484376],[119.267345,26.913843]]],[[[119.437345,27.033843],[119.440767851563,27.0460353828125],[119.449537382813,27.0372658515626],[119.437345,27.033843]]],[[[119.437345,27.033843],[119.44406375,27.0205617500001],[119.472315703125,27.0062697578126],[119.480704375,26.977202375],[119.487345,26.9738430000001],[119.481051054688,26.9636257148438],[119.441158476563,26.9500295234375],[119.425655546875,26.9045461250001],[119.402345,26.8972853828126],[119.377345,26.9050734687501],[119.334761992188,26.8918093085938],[119.320655546875,26.9146974921875],[119.29033328125,26.9241408515625],[119.267345,26.913843],[119.263985625,26.920483625],[119.250704375,26.927202375],[119.233048125,26.9623464179688],[119.213985625,26.947202375],[119.197345,26.943843],[119.183394804688,26.953843],[119.204351835938,26.9688649726563],[119.149488554688,27.0062062812501],[119.117345,27.0538430000001],[119.122808867188,27.0583815742188],[119.131881132813,27.0893044257813],[119.152808867188,27.0983815742188],[119.169107695313,27.1180031562501],[119.182345,27.1193532539063],[119.201881132813,27.1173610664063],[119.192808867188,27.1293044257813],[119.181793242188,27.138452375],[119.183873320313,27.1588430000001],[119.179444609375,27.2022951484375],[119.205968046875,27.2342263007812],[119.2544934375,27.1993044257813],[119.2714465625,27.2178078437501],[119.202808867188,27.2601467109375],[119.211881132813,27.3093044257813],[119.237345,27.323843],[119.249537382813,27.3086183906251],[119.3582434375,27.2927956367188],[119.391954375,27.2681716132812],[119.407486601563,27.2701052070312],[119.43302859375,27.2593410468751],[119.431724882813,27.248843],[119.432965117188,27.2388430000001],[119.431724882813,27.228843],[119.433214140625,27.2168508125],[119.388116484375,27.19784690625],[119.397345,27.173843],[119.38298953125,27.1627614570313],[119.392447539063,27.1361013007813],[119.422857695313,27.0967018867188],[119.45170046875,27.1009645820313],[119.44298953125,27.07819846875],[119.42170046875,27.06948753125],[119.41298953125,27.0581984687501],[119.39298953125,27.0427614570313],[119.404185820313,27.0368971992188],[119.42263796875,27.0396242500001],[119.437345,27.033843]]]]}},{"type":"Feature","properties":{"name":"柘荣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.927345,27.323843],[119.932535429688,27.3066017890625],[119.962877226563,27.2804616523438],[119.96125125,27.260239484375],[120.061236601563,27.1976149726563],[120.063511992188,27.1693386054688],[120.019288359375,27.1657839179688],[119.964127226563,27.186040265625],[119.961163359375,27.1491677070313],[119.978951445313,27.133843],[119.96197390625,27.11921409375],[119.947345,27.0938430000001],[119.931793242188,27.0982888007813],[119.921441679688,27.111216046875],[119.843248320313,27.096469953125],[119.826143828125,27.1178322578125],[119.792896757813,27.0982888007813],[119.777345,27.0938430000001],[119.7709778125,27.0974733710938],[119.7637121875,27.1202126289063],[119.7409778125,27.1274733710938],[119.727525664063,27.1510622382812],[119.73611453125,27.173843],[119.727022734375,27.1979592109375],[119.7437121875,27.2074733710938],[119.7509778125,27.2202126289063],[119.770767851563,27.2314968085938],[119.760406523438,27.2589894843751],[119.7737121875,27.2874733710938],[119.777345,27.303843],[119.792105742188,27.3103151679688],[119.828531523438,27.3000783515626],[119.841729765625,27.3206911445313],[119.872345,27.3072658515625],[119.902105742188,27.3203151679687],[119.912584257813,27.3173708320313],[119.927345,27.323843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.657345,28.8038430000001],[115.669537382813,28.8004201484375],[115.660767851563,28.7916506171875],[115.657345,28.8038430000001]]],[[[115.673922148438,28.9560353828125],[115.677345,28.943843],[115.665152617188,28.9472658515625],[115.673922148438,28.9560353828125]]],[[[115.657345,28.8038430000001],[115.651158476563,28.8000295234375],[115.6357825,28.7549123359376],[115.643980742188,28.7285915351563],[115.627345,28.6938430000001],[115.610738554688,28.6641823554688],[115.590894804688,28.6488649726563],[115.56170046875,28.60948753125],[115.557345,28.583843],[115.525426054688,28.5878688789063],[115.517345,28.603843],[115.52170046875,28.60948753125],[115.53298953125,28.61819846875],[115.550860625,28.7234108710938],[115.528370390625,28.7407692695313],[115.462428007813,28.7280910468751],[115.4443371875,28.7307643867188],[115.43298953125,28.7627614570313],[115.45298953125,28.7781984687501],[115.478140898438,28.8107814765625],[115.487345,28.8438430000001],[115.505250273438,28.83632346875],[115.524503203125,28.8642116523438],[115.518253203125,28.8920900703125],[115.50142703125,28.9179274726563],[115.49326296875,28.9397585273438],[115.459185820313,28.9806203437501],[115.467345,29.013843],[115.536495390625,29.0095583320313],[115.566314726563,28.9663698554688],[115.584342070313,28.9704128242187],[115.64326296875,28.9497585273438],[115.680816679688,28.9206545234375],[115.731920195313,28.9321096015625],[115.75142703125,28.8979274726563],[115.757345,28.893843],[115.753170195313,28.8880178046875],[115.740367460938,28.8788430000001],[115.754000273438,28.8690724921876],[115.740968046875,28.8196681953126],[115.721519804688,28.8280178046876],[115.707345,28.8477956367188],[115.693170195313,28.8280178046876],[115.661519804688,28.8096681953126],[115.657345,28.8038430000001]]]]}},{"type":"Feature","properties":{"name":"东湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.94310671875,28.7110964179688],[115.947345,28.673843],[115.880704375,28.6772023750001],[115.867345,28.6838430000001],[115.87638796875,28.696938703125],[115.923975859375,28.7279274726563],[115.94310671875,28.7110964179688]]]]}},{"type":"Feature","properties":{"name":"进贤县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.334224882813,28.7497585273438],[116.362345,28.7486452460938],[116.37252078125,28.7490480781251],[116.383077421875,28.7376540351563],[116.4408996875,28.7103688789063],[116.442740507813,28.663843],[116.441773710938,28.6393752265626],[116.452535429688,28.6190334296875],[116.462154570313,28.5986525703125],[116.557345,28.4938430000001],[116.550206328125,28.4883303046876],[116.561119414063,28.4144753242188],[116.524771757813,28.3864186835938],[116.500670195313,28.3551930976563],[116.50611453125,28.3183303046875],[116.48170046875,28.2994875312501],[116.464937773438,28.2585305],[116.383433867188,28.2446852851563],[116.36298953125,28.21819846875],[116.357345,28.213843],[116.338897734375,28.2360524726563],[116.315816679688,28.2483815742188],[116.302769804688,28.2182912421875],[116.27634890625,28.2209841132813],[116.239639921875,28.2071901679688],[116.219058867188,28.1597389960938],[116.202808867188,28.1793044257813],[116.169644804688,28.1890383125],[116.139249296875,28.2256276679688],[116.107345,28.243843],[116.100704375,28.2572023750001],[116.097345,28.2738430000001],[116.091705351563,28.2986818671876],[116.09431765625,28.3197096992187],[116.078267851563,28.3177150703125],[116.052896757813,28.3493971992188],[116.020084257813,28.3756716132812],[116.024830351563,28.413843],[116.021676054688,28.4392018867188],[116.04423953125,28.4775807929688],[116.120831328125,28.455708234375],[116.1414075,28.4814040351563],[116.153746367188,28.5384352851563],[116.202896757813,28.5682888007813],[116.244644804688,28.6204225898438],[116.262579375,28.6181911445312],[116.291793242188,28.62722190625],[116.2613684375,28.6688674140625],[116.293018828125,28.7084377265625],[116.290499296875,28.7286672187501],[116.317345,28.743843],[116.334224882813,28.7497585273438]]]]}},{"type":"Feature","properties":{"name":"南昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.266173125,28.9309230781251],[116.26037234375,28.9050368476563],[116.287764921875,28.9111794257813],[116.297345,28.8738430000001],[116.2227746875,28.8673439765625],[116.2429309375,28.8486647773438],[116.241358671875,28.8089040351563],[116.272535429688,28.7990334296876],[116.309263945313,28.7861598945313],[116.317345,28.743843],[116.290499296875,28.7286672187501],[116.293018828125,28.7084377265625],[116.2613684375,28.6688674140625],[116.291793242188,28.62722190625],[116.262579375,28.6181911445312],[116.244644804688,28.6204225898438],[116.202896757813,28.5682888007813],[116.153746367188,28.5384352851563],[116.1414075,28.4814040351563],[116.120831328125,28.455708234375],[116.04423953125,28.4775807929688],[116.021676054688,28.4392018867188],[116.024830351563,28.413843],[116.020084257813,28.3756716132812],[116.052896757813,28.3493971992188],[116.078267851563,28.3177150703125],[116.09431765625,28.3197096992187],[116.091705351563,28.2986818671876],[116.097345,28.2738430000001],[116.081519804688,28.2780178046875],[116.0532825,28.2959450507813],[116.002345,28.2858791328125],[115.982345,28.2898317695313],[115.950299101563,28.2834987617188],[115.953453398438,28.2994631171876],[115.922789335938,28.3214406562501],[115.912345,28.3068679023438],[115.902345,28.3208180976563],[115.887701445313,28.3003884101563],[115.867203398438,28.2896681953125],[115.848839140625,28.3812697578126],[115.817345,28.403843],[115.82142703125,28.4397585273437],[115.841241484375,28.4701857734376],[115.79812625,28.5218898750001],[115.81326296875,28.5579274726563],[115.82142703125,28.6197585273438],[115.827345,28.623843],[115.827345,28.6138430000001],[115.877345,28.6138430000001],[115.8886340625,28.6051296210938],[115.901846953125,28.5880104804688],[115.937345,28.593843],[116.011451445313,28.5879079414063],[116.043297148438,28.6098195625],[116.041729765625,28.6494142890625],[116.022178984375,28.648637921875],[115.990636015625,28.6653322578126],[116.012550078125,28.71868675],[116.012125273438,28.7294289375],[115.986798125,28.7284255195313],[115.932535429688,28.74085471875],[115.981475859375,28.7862038398438],[115.957345,28.793843],[115.965225859375,28.8245534492188],[116.002066679688,28.8400270820313],[116.0226184375,28.8354201484375],[116.035045195313,28.8838430000001],[116.062345,28.8899636054688],[116.087345,28.884360578125],[116.122345,28.8922048164063],[116.148375273438,28.8863698554687],[116.183902617188,28.937827375],[116.22326296875,28.9479274726563],[116.253975859375,28.9679274726563],[116.266173125,28.9309230781251]]]]}},{"type":"Feature","properties":{"name":"青山湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.891353789063,28.6656838203126],[115.897345,28.6538430000001],[115.877345,28.6138430000001],[115.827345,28.6138430000001],[115.827345,28.623843],[115.857345,28.663843],[115.872330351563,28.6563942695313],[115.891353789063,28.6656838203126]]],[[[115.87646609375,28.81368675],[115.934498320313,28.769184796875],[115.957345,28.793843],[115.981475859375,28.7862038398438],[115.932535429688,28.74085471875],[115.986798125,28.7284255195313],[116.012125273438,28.7294289375],[116.012550078125,28.71868675],[115.990636015625,28.6653322578126],[116.022178984375,28.648637921875],[116.041729765625,28.6494142890625],[116.043297148438,28.6098195625],[116.011451445313,28.5879079414063],[115.937345,28.593843],[115.948170195313,28.6379201484375],[115.92142703125,28.6479274726563],[115.917345,28.6538430000001],[115.947345,28.6538430000001],[115.947345,28.673843],[115.94310671875,28.7110964179688],[115.923975859375,28.7279274726563],[115.87638796875,28.696938703125],[115.867345,28.6838430000001],[115.840704375,28.687202375],[115.827296171875,28.7137038398438],[115.811954375,28.7062111640626],[115.791280546875,28.7226320625],[115.787345,28.753843],[115.80423953125,28.7578224921875],[115.813902617188,28.788843],[115.81047,28.799868390625],[115.827345,28.8038430000001],[115.842193632813,28.798637921875],[115.852345,28.7990407539063],[115.86252078125,28.798637921875],[115.87646609375,28.81368675]]]]}},{"type":"Feature","properties":{"name":"青云谱区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.937345,28.593843],[115.901846953125,28.5880104804688],[115.8886340625,28.6051296210938],[115.877345,28.6138430000001],[115.897345,28.6538430000001],[115.917345,28.6538430000001],[115.92142703125,28.6479274726563],[115.948170195313,28.6379201484375],[115.937345,28.593843]]]]}},{"type":"Feature","properties":{"name":"湾里区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.647345,28.6938430000001],[115.659537382813,28.6904201484375],[115.650767851563,28.6816506171875],[115.647345,28.6938430000001]]],[[[115.647345,28.6938430000001],[115.627345,28.6938430000001],[115.643980742188,28.7285915351563],[115.6357825,28.7549123359376],[115.651158476563,28.8000295234375],[115.657345,28.8038430000001],[115.660767851563,28.7916506171875],[115.669537382813,28.8004201484375],[115.657345,28.8038430000001],[115.661519804688,28.8096681953126],[115.693170195313,28.8280178046876],[115.707345,28.8477956367188],[115.721519804688,28.8280178046876],[115.740968046875,28.8196681953126],[115.754000273438,28.8690724921876],[115.740367460938,28.8788430000001],[115.753170195313,28.8880178046875],[115.757345,28.893843],[115.770704375,28.9004836250001],[115.807345,28.903843],[115.821373320313,28.8941579414063],[115.80326296875,28.8679274726563],[115.787554960938,28.8570827460937],[115.776954375,28.8097878242188],[115.823160429688,28.8201467109375],[115.827345,28.8038430000001],[115.81047,28.799868390625],[115.813902617188,28.788843],[115.80423953125,28.7578224921875],[115.787345,28.753843],[115.784801054688,28.7612990546875],[115.751197539063,28.7663869453125],[115.744801054688,28.741509015625],[115.778443632813,28.7076296210938],[115.759888945313,28.7012990546875],[115.754801054688,28.6763869453126],[115.735011015625,28.6712990546876],[115.704801054688,28.7012990546875],[115.65162234375,28.7063869453126],[115.647345,28.6938430000001]]]]}},{"type":"Feature","properties":{"name":"西湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.947345,28.673843],[115.947345,28.6538430000001],[115.917345,28.6538430000001],[115.897345,28.6538430000001],[115.891353789063,28.6656838203126],[115.872330351563,28.6563942695313],[115.857345,28.663843],[115.867345,28.6838430000001],[115.880704375,28.6772023750001],[115.947345,28.673843]]]]}},{"type":"Feature","properties":{"name":"新建县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.647345,28.6938430000001],[115.650767851563,28.6816506171875],[115.659537382813,28.6904201484375],[115.65162234375,28.7063869453126],[115.704801054688,28.7012990546875],[115.735011015625,28.6712990546876],[115.754801054688,28.6763869453126],[115.759888945313,28.7012990546875],[115.778443632813,28.7076296210938],[115.744801054688,28.741509015625],[115.751197539063,28.7663869453125],[115.784801054688,28.7612990546875],[115.787345,28.753843],[115.791280546875,28.7226320625],[115.811954375,28.7062111640626],[115.827296171875,28.7137038398438],[115.840704375,28.687202375],[115.867345,28.6838430000001],[115.857345,28.663843],[115.827345,28.623843],[115.82142703125,28.6197585273438],[115.81326296875,28.5579274726563],[115.79812625,28.5218898750001],[115.841241484375,28.4701857734376],[115.82142703125,28.4397585273437],[115.817345,28.403843],[115.80170046875,28.39948753125],[115.775928984375,28.3660964179688],[115.75205203125,28.36962425],[115.72220828125,28.3578932929688],[115.695289335938,28.3741335273438],[115.67490359375,28.3477248359376],[115.661954375,28.3496388984375],[115.642735625,28.3380471015625],[115.6161340625,28.341977765625],[115.649386015625,28.3868288398438],[115.62170046875,28.40819846875],[115.61298953125,28.41948753125],[115.598424101563,28.4281984687501],[115.5786340625,28.4025563789063],[115.527345,28.393843],[115.5309778125,28.4102126289063],[115.550767851563,28.4214968085938],[115.540460234375,28.448843],[115.54611453125,28.4638430000001],[115.538795195313,28.4832643867188],[115.564561796875,28.4979592109375],[115.560460234375,28.508843],[115.5698840625,28.5338430000001],[115.557022734375,28.5679592109375],[115.5737121875,28.5774733710938],[115.5809778125,28.5948830390625],[115.557345,28.583843],[115.56170046875,28.60948753125],[115.590894804688,28.6488649726563],[115.610738554688,28.6641823554688],[115.627345,28.6938430000001],[115.647345,28.6938430000001]],[[115.665152617188,28.3672658515626],[115.677345,28.363843],[115.673922148438,28.3760353828125],[115.665152617188,28.3672658515626]]],[[[115.817345,28.973843],[115.805152617188,28.9772658515626],[115.813922148438,28.9860353828125],[115.817345,28.973843]]],[[[115.817345,28.973843],[115.860582304688,28.9796266914063],[115.892061796875,29.0291237617187],[115.911929960938,29.0468752265625],[115.912940703125,29.063843],[115.911485625,29.0882570625],[115.955806914063,29.1001271796876],[115.982569609375,29.0985305000001],[116.00244265625,29.1093288398438],[116.01603640625,29.0941139960938],[116.062120390625,29.1191555000001],[116.0774621875,29.1182399726562],[116.167345,29.123843],[116.138990507813,29.0851467109376],[116.170250273438,29.0488625312501],[116.220220976563,29.0375099921876],[116.232960234375,28.9951930976563],[116.271422148438,29.0123561835938],[116.272764921875,29.0290456367188],[116.25271609375,29.1022927070313],[116.284205351563,29.1136110664063],[116.36197390625,29.0584719062501],[116.397345,29.053843],[116.397345,29.043843],[116.407345,29.043843],[116.3988684375,29.0093410468751],[116.403975859375,28.9865651679688],[116.39326296875,28.9579274726563],[116.36455203125,28.9381056953126],[116.348082304688,28.8940920234375],[116.32326296875,28.8779274726563],[116.297345,28.8738430000001],[116.287764921875,28.9111794257813],[116.26037234375,28.9050368476563],[116.266173125,28.9309230781251],[116.253975859375,28.9679274726563],[116.22326296875,28.9479274726563],[116.183902617188,28.937827375],[116.148375273438,28.8863698554687],[116.122345,28.8922048164063],[116.087345,28.884360578125],[116.062345,28.8899636054688],[116.035045195313,28.8838430000001],[116.0226184375,28.8354201484375],[116.002066679688,28.8400270820313],[115.965225859375,28.8245534492188],[115.957345,28.793843],[115.934498320313,28.769184796875],[115.87646609375,28.81368675],[115.86252078125,28.798637921875],[115.852345,28.7990407539063],[115.842193632813,28.798637921875],[115.827345,28.8038430000001],[115.823160429688,28.8201467109375],[115.776954375,28.8097878242188],[115.787554960938,28.8570827460937],[115.80326296875,28.8679274726563],[115.821373320313,28.8941579414063],[115.807345,28.903843],[115.81298953125,28.93819846875],[115.817345,28.973843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"乐平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.380396757813,29.1551613593751],[117.425250273438,29.13632346875],[117.441676054688,29.1601149726563],[117.457345,29.1566017890626],[117.490079375,29.16394065625],[117.493565703125,29.1483962226563],[117.47896609375,29.1259767890625],[117.49142703125,29.1079274726563],[117.50361453125,29.0995143867188],[117.498531523438,29.0768312812501],[117.517345,29.063843],[117.51298953125,29.05819846875],[117.498140898438,29.0467360664063],[117.480362578125,29.0172658515626],[117.48478640625,28.9873073554688],[117.460611601563,28.9686452460938],[117.48298953125,28.95948753125],[117.518360625,28.9136574531251],[117.553326445313,28.8993483710938],[117.5386340625,28.8489626289063],[117.544210234375,28.8112258125001],[117.446676054688,28.8414430976563],[117.40990359375,28.8269875312501],[117.389766875,28.8299636054688],[117.397345,28.783843],[117.38170046875,28.77948753125],[117.307764921875,28.7673415351563],[117.29298953125,28.74819846875],[117.269386015625,28.7299806953125],[117.247345,28.7238430000001],[117.24142703125,28.7279274726563],[117.233116484375,28.7501369453125],[117.222345,28.7477223945312],[117.212345,28.7499636054688],[117.202345,28.7477223945312],[117.192345,28.7499636054688],[117.178995390625,28.7469704414063],[117.157022734375,28.778794171875],[117.12142703125,28.7879274726563],[117.11326296875,28.7997585273438],[117.0636340625,28.8124953437501],[117.041636992188,28.807563703125],[117.02326296875,28.8397585273438],[117.01142703125,28.8479274726562],[116.995694609375,28.8707155585938],[116.981676054688,28.8675710273438],[116.97326296875,28.8797585273438],[116.957345,28.8838430000001],[116.963736601563,28.93493675],[116.995269804688,28.96019065625],[117.011793242188,28.9993971992187],[117.03341921875,29.0085085273438],[117.020553007813,29.030395734375],[117.045284453125,29.0502028632813],[117.040533476563,29.0883888984375],[117.062159453125,29.1057057929688],[117.067345,29.123843],[117.105113554688,29.0998146796876],[117.121793242188,29.1393971992188],[117.172896757813,29.1482888007813],[117.182530546875,29.1819802070313],[117.197345,29.193843],[117.209683867188,29.1495314765626],[117.31193484375,29.2161550117188],[117.34170046875,29.1981984687501],[117.367345,29.193843],[117.383565703125,29.1692946601563],[117.380396757813,29.1551613593751]],[[117.125152617188,28.7972658515625],[117.137345,28.793843],[117.133922148438,28.8060353828125],[117.125152617188,28.7972658515625]]]]}},{"type":"Feature","properties":{"name":"昌江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.195631132813,29.3579470039063],[117.215079375,29.3345339179688],[117.279566679688,29.341108625],[117.282882109375,29.3085768867188],[117.271881132813,29.2793044257813],[117.258228789063,29.2177346015625],[117.233209257813,29.2202834296875],[117.197345,29.193843],[117.182530546875,29.1819802070313],[117.172896757813,29.1482888007813],[117.121793242188,29.1393971992188],[117.105113554688,29.0998146796876],[117.067345,29.123843],[117.06224734375,29.1431618476563],[117.028121367188,29.167622296875],[117.009967070313,29.211801984375],[117.013331328125,29.2288430000001],[117.003873320313,29.2767189765625],[117.033170195313,29.2880178046876],[117.041519804688,29.2996681953125],[117.067345,29.313843],[117.078267851563,29.3047682929688],[117.092178984375,29.2880226875],[117.111881132813,29.2993044257813],[117.167428007813,29.3156056953125],[117.182808867188,29.3283815742188],[117.195631132813,29.3579470039063]],[[117.259342070313,29.317134015625],[117.227345,29.3050734687501],[117.197105742188,29.3164723945313],[117.184928007813,29.2841628242188],[117.202491484375,29.2907839179687],[117.217345,29.283843],[117.2209778125,29.2902126289063],[117.2709778125,29.2987087226562],[117.259342070313,29.317134015625]]]]}},{"type":"Feature","properties":{"name":"浮梁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.2382434375,29.8416921210938],[117.280518828125,29.8243190742188],[117.294918242188,29.8444118476563],[117.331724882813,29.851684796875],[117.360928984375,29.8109377265625],[117.394674101563,29.8580178046876],[117.417095976563,29.8478957343751],[117.4072278125,29.7979567695313],[117.425694609375,29.7721926093751],[117.443170195313,29.7596681953125],[117.451871367188,29.6954347968751],[117.474205351563,29.6642702460938],[117.507554960938,29.6708596015625],[117.525186796875,29.6582228828126],[117.51435671875,29.603423078125],[117.596007109375,29.5871218085938],[117.631519804688,29.6096681953125],[117.647345,29.613843],[117.653985625,29.610483625],[117.660704375,29.597202375],[117.673985625,29.590483625],[117.682374296875,29.5614162421875],[117.697345,29.553843],[117.685894804688,29.539009015625],[117.65170046875,29.52948753125],[117.63298953125,29.51819846875],[117.61170046875,29.50948753125],[117.598487578125,29.4771974921875],[117.572857695313,29.4809841132813],[117.5586340625,29.4625563789063],[117.54170046875,29.44948753125],[117.531832304688,29.4367018867188],[117.511754179688,29.4396706367188],[117.50298953125,29.40819846875],[117.481519804688,29.3994142890626],[117.484561796875,29.3788430000001],[117.481607695313,29.358843],[117.483990507813,29.3427028632813],[117.427266875,29.3194850898438],[117.44591921875,29.2720314765626],[117.42298953125,29.25819846875],[117.387398710938,29.2436330390625],[117.367345,29.193843],[117.34170046875,29.1981984687501],[117.31193484375,29.2161550117188],[117.209683867188,29.1495314765626],[117.197345,29.193843],[117.233209257813,29.2202834296875],[117.258228789063,29.2177346015625],[117.271881132813,29.2793044257813],[117.282882109375,29.3085768867188],[117.279566679688,29.341108625],[117.215079375,29.3345339179688],[117.195631132813,29.3579470039063],[117.182808867188,29.3283815742188],[117.167428007813,29.3156056953125],[117.111881132813,29.2993044257813],[117.092178984375,29.2880226875],[117.078267851563,29.3047682929688],[117.067345,29.313843],[117.06326296875,29.3397585273438],[117.034722929688,29.3594606757813],[117.05326296875,29.3879274726563],[117.068673125,29.4291164375],[117.035250273438,29.4521950507813],[117.0493371875,29.5150270820313],[117.024742460938,29.6151442695313],[117.04326296875,29.6279274726563],[117.05142703125,29.6397585273438],[117.075094023438,29.6560964179688],[117.087345,29.703843],[117.09142703125,29.7097585273438],[117.115474882813,29.7263600898438],[117.1007825,29.7489235664062],[117.130948515625,29.78784690625],[117.067642851563,29.8304763007813],[117.127511015625,29.8707912421876],[117.119537382813,29.9063649726563],[117.15142703125,29.9197585273438],[117.19326296875,29.9279274726563],[117.207345,29.933843],[117.211519804688,29.9280178046875],[117.250543242188,29.9129689765625],[117.256060820313,29.8850490546875],[117.2382434375,29.8416921210938]]]]}},{"type":"Feature","properties":{"name":"珠山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.259342070313,29.317134015625],[117.2709778125,29.2987087226562],[117.2209778125,29.2902126289063],[117.217345,29.283843],[117.202491484375,29.2907839179687],[117.184928007813,29.2841628242188],[117.197105742188,29.3164723945313],[117.227345,29.3050734687501],[117.259342070313,29.317134015625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.812899199219,27.6693971992188],[113.825345488281,27.6538503242188],[113.851986113281,27.6695095039062],[113.8684778125,27.6674587226563],[113.942899199219,27.6782888007813],[113.977345,27.7038430000001],[113.991610136719,27.6932302070313],[113.981385527344,27.639145734375],[113.951405058594,27.5993044257813],[113.953690214844,27.5860280585938],[113.910321074219,27.5934963203125],[113.891610136719,27.5795778632813],[113.881041289063,27.5529787421875],[113.847345,27.5438430000001],[113.842899199219,27.5593971992188],[113.831790800781,27.5782888007813],[113.822899199219,27.5993971992188],[113.811790800781,27.6082888007813],[113.801890898438,27.6206520820313],[113.782345,27.6182204414063],[113.770584746094,27.61968284375],[113.774212675781,27.6488674140625],[113.767345,27.7038430000001],[113.777345,27.7038430000001],[113.777345,27.713843],[113.805323515625,27.7245973945313],[113.79088015625,27.6870265937501],[113.812899199219,27.6693971992188]]]]}},{"type":"Feature","properties":{"name":"莲花县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.975264921875,27.4306276679688],[113.992379179688,27.4280983710938],[114.027345,27.4338430000001],[114.017415800781,27.3901345039063],[114.042899199219,27.3793971992188],[114.051790800781,27.3682888007813],[114.062899199219,27.3593971992188],[114.071790800781,27.3382888007813],[114.092899199219,27.3293971992188],[114.11373171875,27.3171486640626],[114.132869902344,27.3195314765626],[114.153619414063,27.2468752265625],[114.131790800781,27.2293971992188],[114.127345,27.223843],[114.0953528125,27.2184084296875],[114.0701965625,27.1569435859375],[114.043922148438,27.160825421875],[114.022838164063,27.1481081367188],[113.989586210938,27.0925099921876],[113.993140898438,27.068452375],[113.976551542969,27.0409499335938],[113.96170046875,27.02948753125],[113.95298953125,27.00819846875],[113.933949003906,26.9935036445313],[113.917345,26.963843],[113.888316679688,26.9685353828125],[113.873170195313,26.9896681953126],[113.861519804688,26.9980178046876],[113.853170195313,27.0196681953126],[113.811519804688,27.0480178046875],[113.800797148438,27.1015016914063],[113.771881132813,27.0957863593751],[113.767345,27.1238430000001],[113.79197390625,27.15921409375],[113.809705839844,27.1744924140626],[113.85197390625,27.26921409375],[113.862996855469,27.2889723945313],[113.846185332031,27.3034572578126],[113.86271609375,27.34847190625],[113.867345,27.383843],[113.867345,27.413843],[113.877345,27.413843],[113.899156523438,27.40526878125],[113.91298953125,27.42819846875],[113.929359160156,27.46819846875],[113.95298953125,27.4594875312501],[113.975264921875,27.4306276679688]]]]}},{"type":"Feature","properties":{"name":"芦溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.157345,27.743843],[114.145152617188,27.7404201484375],[114.153922148438,27.7316506171875],[114.163905058594,27.7393141914063],[114.2069153125,27.6742287421876],[114.200186796875,27.6442116523438],[114.219598417969,27.6160964179688],[114.255091582031,27.5915895820313],[114.267345,27.573843],[114.222154570313,27.5490334296875],[114.212535429688,27.5286525703125],[114.202154570313,27.5190334296875],[114.192535429688,27.4886525703125],[114.166610136719,27.4396584296876],[114.027345,27.4338430000001],[113.992379179688,27.4280983710938],[113.975264921875,27.4306276679688],[113.95298953125,27.4594875312501],[113.929359160156,27.46819846875],[113.91298953125,27.42819846875],[113.899156523438,27.40526878125],[113.877345,27.413843],[113.873260527344,27.4197585273438],[113.861429472656,27.4279274726563],[113.842274199219,27.4556716132813],[113.829686308594,27.48931175],[113.863260527344,27.4979274726563],[113.877291289063,27.5182497382813],[113.851429472656,27.5279274726563],[113.847345,27.5438430000001],[113.881041289063,27.5529787421875],[113.891610136719,27.5795778632813],[113.910321074219,27.5934963203125],[113.953690214844,27.5860280585938],[113.951405058594,27.5993044257813],[113.981385527344,27.639145734375],[113.991610136719,27.6932302070313],[113.977345,27.7038430000001],[113.98170046875,27.70948753125],[114.05298953125,27.73819846875],[114.057345,27.743843],[114.071429472656,27.7497585273438],[114.103260527344,27.7579274726563],[114.115582304688,27.7757741523438],[114.153260527344,27.7497585273438],[114.157345,27.743843]]]]}},{"type":"Feature","properties":{"name":"上栗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.907345,27.993843],[113.922061796875,27.9881862617187],[113.941890898438,27.9906520820313],[113.952799101563,27.9770339179687],[113.980504179688,27.9804787421875],[113.997342558594,27.9518337226563],[113.942750273438,27.9081716132813],[113.915303984375,27.9115846992188],[113.891282988281,27.8786989570312],[113.903023710938,27.8692971015625],[113.901722441406,27.858843],[113.902967558594,27.8488430000001],[113.90166140625,27.8383449531251],[113.922899199219,27.8293971992188],[113.931846953125,27.80815940625],[113.963370390625,27.8120803046875],[113.95978640625,27.7832814765625],[113.978472929688,27.759946515625],[113.997345,27.7576003242188],[114.02095828125,27.7605373359375],[114.041790800781,27.7482888007813],[114.057345,27.743843],[114.05298953125,27.73819846875],[113.98170046875,27.70948753125],[113.977345,27.7038430000001],[113.942899199219,27.6782888007813],[113.8684778125,27.6674587226563],[113.851986113281,27.6695095039062],[113.825345488281,27.6538503242188],[113.812899199219,27.6693971992188],[113.79088015625,27.6870265937501],[113.805323515625,27.7245973945313],[113.777345,27.713843],[113.767345,27.713843],[113.767345,27.7038430000001],[113.728424101563,27.6895510078126],[113.744820585938,27.7341994453125],[113.697345,27.723843],[113.701339140625,27.749848859375],[113.713350859375,27.757837140625],[113.72533328125,27.7758547187501],[113.760982695313,27.7995607734375],[113.751085234375,27.838843],[113.753604765625,27.8488430000001],[113.749310332031,27.8658864570313],[113.731339140625,27.877837140625],[113.727345,27.8838430000001],[113.732908964844,27.91581565625],[113.758785429688,27.948130109375],[113.782899199219,27.9582888007813],[113.798472929688,27.977739484375],[113.812345,27.9794655585938],[113.841846953125,27.975796125],[113.852347441406,28.0007131171875],[113.907345,27.993843]]]]}},{"type":"Feature","properties":{"name":"湘东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.767345,27.7038430000001],[113.767345,27.713843],[113.777345,27.713843],[113.777345,27.7038430000001],[113.767345,27.7038430000001]]],[[[113.767345,27.7038430000001],[113.774212675781,27.6488674140625],[113.770584746094,27.61968284375],[113.782345,27.6182204414063],[113.801890898438,27.6206520820313],[113.811790800781,27.6082888007813],[113.822899199219,27.5993971992188],[113.831790800781,27.5782888007813],[113.842899199219,27.5593971992188],[113.847345,27.5438430000001],[113.851429472656,27.5279274726563],[113.877291289063,27.5182497382813],[113.863260527344,27.4979274726563],[113.829686308594,27.48931175],[113.842274199219,27.4556716132813],[113.861429472656,27.4279274726563],[113.873260527344,27.4197585273438],[113.877345,27.413843],[113.867345,27.413843],[113.867345,27.383843],[113.827635527344,27.368921125],[113.7262903125,27.3575563789063],[113.692806425781,27.3383815742188],[113.669420195313,27.3293044257813],[113.652806425781,27.3493044257813],[113.60728640625,27.359399640625],[113.592806425781,27.3834596992188],[113.623363066406,27.408843],[113.617345,27.413843],[113.61298953125,27.4194875312501],[113.60170046875,27.42819846875],[113.587257109375,27.4634914375001],[113.630872832031,27.5223195625001],[113.602345,27.5181032539063],[113.585064726563,27.5206569648438],[113.57298953125,27.5477346015625],[113.603148222656,27.5884133125001],[113.600867949219,27.603843],[113.603084746094,27.6188430000001],[113.600128203125,27.638843],[113.632991972656,27.6522927070313],[113.674769316406,27.7064186835937],[113.697345,27.723843],[113.744820585938,27.7341994453125],[113.728424101563,27.6895510078126],[113.767345,27.7038430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"修水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.317345,29.363843],[114.341151152344,29.3200392890625],[114.440094023438,29.3443434882813],[114.453013945313,29.3256301093751],[114.482843046875,29.3323171210938],[114.517345,29.323843],[114.52170046875,29.29819846875],[114.536334257813,29.2739382148438],[114.47298953125,29.225044171875],[114.508468046875,29.1918727851563],[114.592711210938,29.178032453125],[114.620679960938,29.1949025703125],[114.657345,29.2003200507813],[114.682345,29.1966262031251],[114.7027746875,29.1996462226562],[114.741080351563,29.1712477851563],[114.762345,29.1681032539063],[114.772955351563,29.169673078125],[114.781822539063,29.1174953437501],[114.807408476563,29.1329274726563],[114.82998171875,29.0555080390626],[114.819796171875,28.9865822578126],[114.8460559375,28.9525563789063],[114.86298953125,28.9394875312501],[114.876549101563,28.9219167304688],[114.902345,28.9181032539063],[114.920675078125,28.9208132148438],[114.93298953125,28.88948753125],[114.937345,28.8738430000001],[114.913990507813,28.8683425117188],[114.900303984375,28.8281813789063],[114.907345,28.823843],[114.914527617188,28.8047292304688],[114.871881132813,28.7693044257813],[114.855582304688,28.74968284375],[114.832735625,28.7473537421876],[114.807345,28.7779201484376],[114.792359648438,28.726860578125],[114.749234648438,28.7081569648438],[114.737345,28.6938430000001],[114.727345,28.6938430000001],[114.702476835938,28.6886403632813],[114.632686796875,28.6914064765626],[114.587203398438,28.7227028632813],[114.569503203125,28.778618390625],[114.512496367188,28.758637921875],[114.502193632813,28.7590480781251],[114.47119265625,28.7481813789063],[114.452345,28.7082472968751],[114.417345,28.7096364570313],[114.387345,28.7084474921876],[114.367345,28.7092385078126],[114.3426184375,28.7082595039063],[114.272818632813,28.7672463203126],[114.252896757813,28.8094582343751],[114.222345,28.808247296875],[114.21244265625,28.8292311835938],[114.176456328125,28.804468],[114.152535429688,28.7786525703125],[114.147345,28.773843],[114.139132109375,28.7795143867188],[114.149439726563,28.8254909492188],[114.122074003906,28.8443874335938],[114.07435671875,28.8336891914063],[114.050943632813,28.8675954414063],[114.055706816406,28.888843],[114.049796171875,28.9152077460938],[114.021998320313,28.8971047187501],[113.999251738281,28.9300466132813],[114.004847441406,28.9550075507813],[113.962345,28.9454811835938],[113.949312773438,28.9803127265625],[113.953565703125,28.9992897773438],[113.941429472656,29.0179274726563],[113.937345,29.053843],[113.941790800781,29.0593971992188],[113.9462121875,29.0949269843751],[113.968450957031,29.1127370429688],[113.981790800781,29.1293971992188],[114.032291289063,29.1600685859376],[114.067345,29.203843],[114.072633085938,29.2102077460937],[114.162345,29.2193532539063],[114.178253203125,29.2177321601563],[114.202806425781,29.2283815742188],[114.222022734375,29.2393849921875],[114.245076933594,29.237036359375],[114.241807890625,29.2691091132813],[114.252882109375,29.2985768867188],[114.250408964844,29.32284690625],[114.265299101563,29.35718284375],[114.317345,29.363843]]]]}},{"type":"Feature","properties":{"name":"永修县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.817345,28.973843],[115.813922148438,28.9860353828125],[115.805152617188,28.9772658515626],[115.81298953125,28.93819846875],[115.807345,28.903843],[115.770704375,28.9004836250001],[115.757345,28.893843],[115.75142703125,28.8979274726563],[115.731920195313,28.9321096015625],[115.680816679688,28.9206545234375],[115.64326296875,28.9497585273438],[115.584342070313,28.9704128242187],[115.566314726563,28.9663698554688],[115.536495390625,29.0095583320313],[115.467345,29.013843],[115.463985625,29.030483625],[115.440704375,29.037202375],[115.432315703125,29.0662697578126],[115.417345,29.0738430000001],[115.433179960938,29.1098220039063],[115.432047148438,29.128843],[115.4326575,29.1390529609375],[115.411710234375,29.1894142890625],[115.392037382813,29.3187209296875],[115.3926575,29.3290969062501],[115.37615359375,29.343843],[115.387345,29.353843],[115.437906523438,29.3444045234376],[115.459014921875,29.3207814765626],[115.632628203125,29.3091237617188],[115.652061796875,29.2985622382813],[115.672628203125,29.2891237617188],[115.692061796875,29.2785622382813],[115.722628203125,29.2691237617188],[115.752061796875,29.2485622382812],[115.828570585938,29.2040212226563],[115.837345,29.213843],[115.852345,29.2078127265625],[115.90283328125,29.2281081367188],[115.921148710938,29.2128591132813],[115.87623171875,29.1864089179687],[115.869888945313,29.1495778632813],[115.913077421875,29.1581081367188],[115.931065703125,29.1822853828126],[115.9420715625,29.167485578125],[115.961612578125,29.1795778632813],[116.021612578125,29.1919216132812],[116.013077421875,29.2295778632813],[115.983077421875,29.2518923164063],[115.99521609375,29.2770534492188],[116.031612578125,29.2995778632813],[116.047345,29.3038430000001],[116.054967070313,29.2620607734376],[116.114293242188,29.2402736640625],[116.241261015625,29.2273220039063],[116.246475859375,29.1624098945313],[116.200655546875,29.1299196601562],[116.167345,29.123843],[116.0774621875,29.1182399726562],[116.062120390625,29.1191555000001],[116.01603640625,29.0941139960938],[116.00244265625,29.1093288398438],[115.982569609375,29.0985305000001],[115.955806914063,29.1001271796876],[115.911485625,29.0882570625],[115.912940703125,29.063843],[115.911929960938,29.0468752265625],[115.892061796875,29.0291237617187],[115.860582304688,28.9796266914063],[115.817345,28.973843]],[[115.665152617188,28.9472658515625],[115.677345,28.943843],[115.673922148438,28.9560353828125],[115.665152617188,28.9472658515625]]]]}},{"type":"Feature","properties":{"name":"湖口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.287345,29.5238430000001],[116.290767851563,29.5360353828125],[116.299537382813,29.5272658515625],[116.287345,29.5238430000001]]],[[[116.307345,29.5638430000001],[116.303922148438,29.5516506171876],[116.295152617188,29.5604201484375],[116.307345,29.5638430000001]]],[[[116.307345,29.5638430000001],[116.303985625,29.5804836250001],[116.2841028125,29.5872023750001],[116.269830351563,29.558989484375],[116.27478640625,29.548843],[116.267486601563,29.5338893867188],[116.287345,29.5238430000001],[116.276851835938,29.5102468085937],[116.241031523438,29.5049538398438],[116.244405546875,29.5278005195313],[116.217515898438,29.5317726875],[116.179664335938,29.5168923164063],[116.137345,29.5238430000001],[116.137345,29.533843],[116.127345,29.533843],[116.120338164063,29.5899147773438],[116.142896757813,29.6282888007813],[116.151793242188,29.6493971992187],[116.182896757813,29.6982888007813],[116.199420195313,29.73749534375],[116.212896757813,29.7482888007813],[116.217345,29.7538430000001],[116.237266875,29.763921125],[116.247345,29.783843],[116.27826296875,29.7924513984375],[116.36685671875,29.8581374335938],[116.387345,29.863843],[116.393258085938,29.84913596875],[116.39138796875,29.8382741523438],[116.40330203125,29.8294118476563],[116.401485625,29.818843],[116.403204375,29.808843],[116.401485625,29.7988430000001],[116.403204375,29.788843],[116.40047,29.7729421210938],[116.421319609375,29.6847170234375],[116.390455351563,29.6900295234375],[116.371109648438,29.6587721992188],[116.393287382813,29.6293044257813],[116.39099734375,29.6160036445312],[116.407345,29.6038430000001],[116.403062773438,29.5826198554688],[116.357476835938,29.5413014960938],[116.32279421875,29.5715212226562],[116.307345,29.5638430000001]]]]}},{"type":"Feature","properties":{"name":"庐山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.199420195313,29.73749534375],[116.182896757813,29.6982888007813],[116.151793242188,29.6493971992187],[116.142896757813,29.6282888007813],[116.120338164063,29.5899147773438],[116.127345,29.533843],[116.1176184375,29.5197585273438],[116.05142703125,29.5279274726563],[116.008297148438,29.5412966132813],[115.992345,29.5377223945313],[115.981676054688,29.5401149726563],[115.97326296875,29.5279274726563],[115.96142703125,29.5197585273438],[115.951529570313,29.4932985664063],[115.932686796875,29.5205886054688],[115.907345,29.503843],[115.901890898438,29.5106520820313],[115.871475859375,29.50687034375],[115.877594023438,29.5560329414063],[115.90400515625,29.5771828437501],[115.9259778125,29.60462425],[115.913746367188,29.7029543281251],[115.927345,29.7138430000001],[115.954615507813,29.7092092109376],[115.951534453125,29.6883522773438],[115.961236601563,29.67948753125],[116.0310559375,29.7312502265626],[116.072608671875,29.7251100898438],[116.077345,29.763843],[116.149932890625,29.7698757148438],[116.217345,29.7538430000001],[116.212896757813,29.7482888007813],[116.199420195313,29.73749534375]]]]}},{"type":"Feature","properties":{"name":"彭泽县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.703922148438,29.7060353828125],[116.707345,29.693843],[116.695152617188,29.6972658515626],[116.703922148438,29.7060353828125]]],[[[116.68326296875,30.0697585273438],[116.722345,30.0533425117188],[116.747345,30.0638430000001],[116.793468046875,30.0064089179688],[116.822779570313,30.0093971992188],[116.832491484375,29.9763088203126],[116.868253203125,29.9799538398437],[116.894849882813,29.9684206367188],[116.891324492188,29.933843],[116.893428984375,29.9132057929688],[116.872808867188,29.8883815742188],[116.861881132813,29.8793044257813],[116.84373171875,29.85745628125],[116.821793242188,29.839233625],[116.823580351563,29.8217311835938],[116.782667265625,29.7983010078126],[116.747271757813,29.80190940625],[116.702808867188,29.7483815742188],[116.674908476563,29.7362795234375],[116.662808867188,29.7083815742188],[116.651241484375,29.6987746406251],[116.683448515625,29.678911359375],[116.643267851563,29.6455373359376],[116.6721496875,29.6215456367188],[116.677345,29.6038430000001],[116.65189578125,29.6097389960938],[116.636324492188,29.5895632148438],[116.602432890625,29.5756935859375],[116.562735625,29.5996388984375],[116.548736601563,29.5975710273438],[116.507345,29.613843],[116.501051054688,29.6376955390625],[116.438995390625,29.612192609375],[116.407345,29.6038430000001],[116.39099734375,29.6160036445312],[116.393287382813,29.6293044257813],[116.371109648438,29.6587721992188],[116.390455351563,29.6900295234375],[116.421319609375,29.6847170234375],[116.40047,29.7729421210938],[116.403204375,29.788843],[116.401485625,29.7988430000001],[116.403204375,29.808843],[116.401485625,29.818843],[116.40330203125,29.8294118476563],[116.39138796875,29.8382741523438],[116.393258085938,29.84913596875],[116.387345,29.863843],[116.427921171875,29.875141828125],[116.467408476563,29.8989626289062],[116.54298953125,29.90819846875],[116.555689726563,29.9246535468751],[116.577345,30.053843],[116.6137903125,30.0779274726563],[116.68326296875,30.0697585273438]]]]}},{"type":"Feature","properties":{"name":"浔阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.077345,29.763843],[116.072608671875,29.7251100898438],[116.0310559375,29.7312502265626],[115.961236601563,29.67948753125],[115.951534453125,29.6883522773438],[115.954615507813,29.7092092109376],[115.927345,29.7138430000001],[115.927345,29.7238430000001],[115.962628203125,29.7285622382813],[116.047345,29.763843],[116.077345,29.763843]]]]}},{"type":"Feature","properties":{"name":"德安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.7141028125,29.537993390625],[115.711666289063,29.5183669257813],[115.760494414063,29.4887062812501],[115.762965117188,29.468843],[115.761666289063,29.4583888984376],[115.791422148438,29.4345632148438],[115.801793242188,29.3982888007813],[115.817345,29.3738430000001],[115.810704375,29.370483625],[115.803985625,29.32565940625],[115.824976835938,29.2992336250001],[115.8174621875,29.283843],[115.82478640625,29.268843],[115.817428007813,29.2537721992188],[115.837345,29.213843],[115.828570585938,29.2040212226563],[115.752061796875,29.2485622382812],[115.722628203125,29.2691237617188],[115.692061796875,29.2785622382813],[115.672628203125,29.2891237617188],[115.652061796875,29.2985622382813],[115.632628203125,29.3091237617188],[115.459014921875,29.3207814765626],[115.437906523438,29.3444045234376],[115.387345,29.353843],[115.383985625,29.380483625],[115.377345,29.393843],[115.3857825,29.4435060859376],[115.422882109375,29.4380251289063],[115.44170046875,29.46948753125],[115.4586340625,29.4825563789063],[115.475264921875,29.5041017890626],[115.528800078125,29.5120143867188],[115.552735625,29.4975759101563],[115.564771757813,29.5269850898438],[115.582345,29.5295827460938],[115.598082304688,29.5272560859375],[115.66170046875,29.53948753125],[115.667345,29.543843],[115.7141028125,29.537993390625]]]]}},{"type":"Feature","properties":{"name":"都昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.287345,29.5238430000001],[116.299537382813,29.5272658515625],[116.290767851563,29.5360353828125],[116.267486601563,29.5338893867188],[116.27478640625,29.548843],[116.269830351563,29.558989484375],[116.2841028125,29.5872023750001],[116.303985625,29.5804836250001],[116.307345,29.5638430000001],[116.295152617188,29.5604201484375],[116.303922148438,29.5516506171876],[116.307345,29.5638430000001],[116.32279421875,29.5715212226562],[116.357476835938,29.5413014960938],[116.403062773438,29.5826198554688],[116.407345,29.6038430000001],[116.438995390625,29.612192609375],[116.501051054688,29.6376955390625],[116.507345,29.613843],[116.502896757813,29.5982888007813],[116.490553007813,29.577290265625],[116.5277746875,29.5474831367187],[116.520533476563,29.4892971015625],[116.539830351563,29.473843],[116.512896757813,29.4522731757813],[116.521793242188,29.4282888007812],[116.532896757813,29.4193971992187],[116.541793242188,29.3982888007813],[116.55322390625,29.3788430000001],[116.5355871875,29.348843],[116.552896757813,29.3193971992188],[116.563057890625,29.2952834296875],[116.582896757813,29.2793971992188],[116.591793242188,29.2582888007813],[116.6390246875,29.2295998359375],[116.542896757813,29.1582888007813],[116.461793242188,29.1493971992188],[116.432896757813,29.0982888007813],[116.397345,29.053843],[116.36197390625,29.0584719062501],[116.284205351563,29.1136110664063],[116.25271609375,29.1022927070313],[116.272764921875,29.0290456367188],[116.271422148438,29.0123561835938],[116.232960234375,28.9951930976563],[116.220220976563,29.0375099921876],[116.170250273438,29.0488625312501],[116.138990507813,29.0851467109376],[116.167345,29.123843],[116.200655546875,29.1299196601562],[116.246475859375,29.1624098945313],[116.241261015625,29.2273220039063],[116.114293242188,29.2402736640625],[116.054967070313,29.2620607734376],[116.047345,29.3038430000001],[116.071217070313,29.3567165351562],[116.031793242188,29.3882888007812],[116.022896757813,29.4218459296875],[116.126104765625,29.4845339179688],[116.137345,29.5238430000001],[116.179664335938,29.5168923164063],[116.217515898438,29.5317726875],[116.244405546875,29.5278005195313],[116.241031523438,29.5049538398438],[116.276851835938,29.5102468085937],[116.287345,29.5238430000001]]]]}},{"type":"Feature","properties":{"name":"九江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.247345,29.783843],[116.237266875,29.763921125],[116.217345,29.7538430000001],[116.149932890625,29.7698757148438],[116.077345,29.763843],[116.047345,29.763843],[116.066871367188,29.7921218085938],[116.127345,29.823843],[116.1618371875,29.8380178046875],[116.224566679688,29.8253444648437],[116.247345,29.783843]]],[[[115.927345,29.7138430000001],[115.913746367188,29.7029543281251],[115.9259778125,29.60462425],[115.90400515625,29.5771828437501],[115.877594023438,29.5560329414063],[115.871475859375,29.50687034375],[115.901890898438,29.5106520820313],[115.907345,29.503843],[115.898736601563,29.4729274726563],[115.849078398438,29.4059499335938],[115.857423125,29.34948753125],[115.83170046875,29.35819846875],[115.82298953125,29.3694875312501],[115.817345,29.3738430000001],[115.801793242188,29.3982888007813],[115.791422148438,29.4345632148438],[115.761666289063,29.4583888984376],[115.762965117188,29.468843],[115.760494414063,29.4887062812501],[115.711666289063,29.5183669257813],[115.7141028125,29.537993390625],[115.667345,29.543843],[115.659561796875,29.5710646796876],[115.61908328125,29.6216774726563],[115.688258085938,29.6636940742188],[115.727203398438,29.6801052070313],[115.742769804688,29.678169171875],[115.751793242188,29.6868532539063],[115.699600859375,29.7017751289063],[115.702965117188,29.728843],[115.700650664063,29.74745628125],[115.71334109375,29.7690431953125],[115.659195585938,29.8124025703125],[115.647345,29.853843],[115.692608671875,29.8461550117188],[115.727345,29.823843],[115.736182890625,29.8110451484375],[115.824845,29.7524538398437],[115.90142703125,29.7279274726563],[115.927345,29.7238430000001],[115.927345,29.7138430000001]],[[115.755152617188,29.6972658515626],[115.767345,29.693843],[115.763922148438,29.7060353828125],[115.755152617188,29.6972658515626]]]]}},{"type":"Feature","properties":{"name":"瑞昌市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.763922148438,29.7060353828125],[115.767345,29.693843],[115.755152617188,29.6972658515626],[115.763922148438,29.7060353828125]]],[[[115.751793242188,29.6868532539063],[115.742769804688,29.678169171875],[115.727203398438,29.6801052070313],[115.688258085938,29.6636940742188],[115.61908328125,29.6216774726563],[115.659561796875,29.5710646796876],[115.667345,29.543843],[115.66170046875,29.53948753125],[115.598082304688,29.5272560859375],[115.582345,29.5295827460938],[115.564771757813,29.5269850898438],[115.552735625,29.4975759101563],[115.528800078125,29.5120143867188],[115.475264921875,29.5041017890626],[115.4586340625,29.4825563789063],[115.44170046875,29.46948753125],[115.422882109375,29.4380251289063],[115.3857825,29.4435060859376],[115.377345,29.393843],[115.341246367188,29.3977468085937],[115.306485625,29.4129909492188],[115.321109648438,29.4650319648438],[115.298345976563,29.47960471875],[115.304039335938,29.4998635078125],[115.242647734375,29.5077468085938],[115.202345,29.4801467109375],[115.173443632813,29.4999391914063],[115.157345,29.503843],[115.1476965625,29.5431154609375],[115.153468046875,29.5688430000001],[115.151124296875,29.5792897773438],[115.168389921875,29.6058034492188],[115.120264921875,29.5950148750001],[115.133673125,29.64960471875],[115.11142703125,29.6579274726563],[115.110714140625,29.6879274726563],[115.158443632813,29.6568483710938],[115.172345,29.6599636054688],[115.212345,29.6509963203125],[115.252345,29.6599636054688],[115.265308867188,29.6570583320313],[115.261143828125,29.6384865546875],[115.270714140625,29.6197585273437],[115.30142703125,29.6397585273438],[115.35326296875,29.6579274726563],[115.37142703125,29.6697585273438],[115.412164335938,29.6850002265625],[115.42142703125,29.7097585273438],[115.465562773438,29.7394802070312],[115.460103789063,29.763843],[115.471026640625,29.8125783515626],[115.499176054688,29.8320119453125],[115.507345,29.843843],[115.633985625,29.847202375],[115.647345,29.853843],[115.659195585938,29.8124025703125],[115.71334109375,29.7690431953125],[115.700650664063,29.74745628125],[115.702965117188,29.728843],[115.699600859375,29.7017751289063],[115.751793242188,29.6868532539063]]]]}},{"type":"Feature","properties":{"name":"武宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.917345,29.4538430000001],[114.882843046875,29.4461623359375],[114.872769804688,29.4693947578125],[114.853326445313,29.4674147773438],[114.882808867188,29.5083815742188],[114.892198515625,29.5300368476563],[114.901881132813,29.5183815742188],[114.923824492188,29.5001540351563],[114.909405546875,29.4749782539063],[114.917345,29.4538430000001]]],[[[114.917345,29.4538430000001],[114.938697539063,29.4584352851563],[114.930284453125,29.478843],[114.93861453125,29.49905784375],[114.9705871875,29.5165846992188],[114.938072539063,29.5344069648438],[114.947345,29.553843],[114.99138796875,29.5646608710938],[115.047345,29.5521169257812],[115.090557890625,29.5618044257813],[115.093565703125,29.5483962226563],[115.078824492188,29.5257595039063],[115.15142703125,29.5079274726563],[115.157345,29.503843],[115.173443632813,29.4999391914063],[115.202345,29.4801467109375],[115.242647734375,29.5077468085938],[115.304039335938,29.4998635078125],[115.298345976563,29.47960471875],[115.321109648438,29.4650319648438],[115.306485625,29.4129909492188],[115.341246367188,29.3977468085937],[115.377345,29.393843],[115.383985625,29.380483625],[115.387345,29.353843],[115.37615359375,29.343843],[115.3926575,29.3290969062501],[115.392037382813,29.3187209296875],[115.411710234375,29.1894142890625],[115.4326575,29.1390529609375],[115.432047148438,29.128843],[115.433179960938,29.1098220039063],[115.417345,29.0738430000001],[115.412491484375,29.0684084296875],[115.382628203125,29.0791237617188],[115.352061796875,29.0885622382813],[115.305553007813,29.1052516914063],[115.14656375,29.0804763007812],[115.032628203125,29.0185622382812],[114.982603789063,29.0069240546875],[114.9620325,28.969067609375],[114.963194609375,28.94960471875],[114.950421171875,28.9261037421875],[114.95271609375,28.8875783515625],[114.937345,28.8738430000001],[114.93298953125,28.88948753125],[114.920675078125,28.9208132148438],[114.902345,28.9181032539063],[114.876549101563,28.9219167304688],[114.86298953125,28.9394875312501],[114.8460559375,28.9525563789063],[114.819796171875,28.9865822578126],[114.82998171875,29.0555080390626],[114.807408476563,29.1329274726563],[114.781822539063,29.1174953437501],[114.772955351563,29.169673078125],[114.762345,29.1681032539063],[114.741080351563,29.1712477851563],[114.7027746875,29.1996462226562],[114.682345,29.1966262031251],[114.657345,29.2003200507813],[114.620679960938,29.1949025703125],[114.592711210938,29.178032453125],[114.508468046875,29.1918727851563],[114.47298953125,29.225044171875],[114.536334257813,29.2739382148438],[114.52170046875,29.29819846875],[114.517345,29.323843],[114.521881132813,29.3293044257813],[114.597642851563,29.3621608710938],[114.616749296875,29.3851638007813],[114.728873320313,29.3983815742188],[114.744053984375,29.3633693671876],[114.771881132813,29.3793044257813],[114.812808867188,29.3883815742188],[114.848482695313,29.4017848945313],[114.884298125,29.3981349921875],[114.901881132813,29.4193044257813],[114.926339140625,29.4299123359375],[114.917345,29.4538430000001]]]]}},{"type":"Feature","properties":{"name":"星子县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.008297148438,29.5412966132813],[116.05142703125,29.5279274726563],[116.1176184375,29.5197585273438],[116.127345,29.533843],[116.137345,29.533843],[116.137345,29.5238430000001],[116.126104765625,29.4845339179688],[116.022896757813,29.4218459296875],[116.031793242188,29.3882888007812],[116.071217070313,29.3567165351562],[116.047345,29.3038430000001],[116.031612578125,29.2995778632813],[115.99521609375,29.2770534492188],[115.983077421875,29.2518923164063],[116.013077421875,29.2295778632813],[116.021612578125,29.1919216132812],[115.961612578125,29.1795778632813],[115.9420715625,29.167485578125],[115.931065703125,29.1822853828126],[115.913077421875,29.1581081367188],[115.869888945313,29.1495778632813],[115.87623171875,29.1864089179687],[115.921148710938,29.2128591132813],[115.90283328125,29.2281081367188],[115.852345,29.2078127265625],[115.837345,29.213843],[115.817428007813,29.2537721992188],[115.82478640625,29.268843],[115.8174621875,29.283843],[115.824976835938,29.2992336250001],[115.803985625,29.32565940625],[115.810704375,29.370483625],[115.817345,29.3738430000001],[115.82298953125,29.3694875312501],[115.83170046875,29.35819846875],[115.857423125,29.34948753125],[115.849078398438,29.4059499335938],[115.898736601563,29.4729274726563],[115.907345,29.503843],[115.932686796875,29.5205886054688],[115.951529570313,29.4932985664063],[115.96142703125,29.5197585273438],[115.97326296875,29.5279274726563],[115.981676054688,29.5401149726563],[115.992345,29.5377223945313],[116.008297148438,29.5412966132813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"分宜县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.797345,27.6238430000001],[114.807345,27.6238430000001],[114.807345,27.613843],[114.797345,27.613843],[114.797345,27.6238430000001]]],[[[114.797345,27.6238430000001],[114.7821496875,27.6302272773438],[114.74638796875,27.6069387031251],[114.737345,27.593843],[114.71834109375,27.6009841132813],[114.677198515625,27.5967897773438],[114.629332304688,27.5294118476563],[114.608267851563,27.5547682929688],[114.531881132813,27.5683815742188],[114.527345,27.603843],[114.534390898438,27.6577053046875],[114.571944609375,27.7250148750001],[114.58197390625,27.7700173164063],[114.562086210938,27.7684206367188],[114.55271609375,27.7726247382813],[114.579000273438,27.8197365546875],[114.559947539063,27.84847190625],[114.542022734375,27.8276638007813],[114.504371367188,27.830688703125],[114.48072390625,27.8836794257813],[114.483267851563,27.9153298164063],[114.513551054688,27.9288430000001],[114.5119153125,27.9491677070313],[114.526065703125,27.9613552070313],[114.564439726563,27.9582741523438],[114.606793242188,27.9819045234376],[114.59197390625,28.00847190625],[114.567345,28.063843],[114.591881132813,28.0793044257813],[114.622808867188,28.0883815742188],[114.643638945313,28.1003102851563],[114.736964140625,28.1098244453126],[114.775870390625,28.0984084296876],[114.769976835938,28.0406130195313],[114.801158476563,28.0374343085938],[114.822022734375,28.0493849921875],[114.832345,28.0483327460938],[114.871910429688,28.0523659492188],[114.877345,28.033843],[114.862896757813,27.9982888007813],[114.808463164063,27.9652248359376],[114.791632109375,27.9252834296875],[114.764859648438,27.903843],[114.78736453125,27.8858180976563],[114.804976835938,27.8558596015625],[114.782896757813,27.8282888007812],[114.770640898438,27.8184743476563],[114.74134890625,27.7686428046876],[114.765943632813,27.7489504218751],[114.751109648438,27.6970046210938],[114.792896757813,27.6793971992188],[114.797345,27.6238430000001]]]]}},{"type":"Feature","properties":{"name":"渝水区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.98326296875,28.0897585273438],[114.993013945313,28.0756301093751],[115.017613554688,28.0811452460937],[115.047345,28.0738430000001],[115.106173125,28.0880178046875],[115.15670046875,28.0766139960938],[115.147345,28.053843],[115.14271609375,28.0184719062501],[115.131217070313,27.9978615546875],[115.1327746875,27.9785182929688],[115.109615507813,27.9585695625001],[115.138175078125,27.8945680976563],[115.21259890625,27.8783351875],[115.227345,27.8954494453126],[115.242022734375,27.8784157539063],[115.252345,27.8792458320313],[115.267345,27.8780397773438],[115.287345,27.8796462226563],[115.307345,27.8780397773438],[115.322349882813,27.8792458320313],[115.387345,27.873843],[115.382628203125,27.8685622382813],[115.362061796875,27.8591237617188],[115.288204375,27.7764601875],[115.247345,27.763843],[115.203018828125,27.756313703125],[115.164449492188,27.7330495429688],[115.15298953125,27.71819846875],[115.130225859375,27.70948753125],[115.13312625,27.7291164375],[115.126143828125,27.7481984687501],[115.10298953125,27.71819846875],[115.084810820313,27.7041701484375],[115.07298953125,27.7194875312501],[115.05869265625,27.7305202460938],[115.035264921875,27.7270583320313],[115.009429960938,27.6935866523438],[115.015924101563,27.6496193671875],[114.98298953125,27.66948753125],[114.960225859375,27.6781984687501],[114.963990507813,27.6527028632813],[114.93170046875,27.63948753125],[114.886988554688,27.6063356757813],[114.877345,27.593843],[114.852388945313,27.5877126289063],[114.8241028125,27.5940529609376],[114.81326296875,27.6097585273438],[114.807345,27.613843],[114.807345,27.6238430000001],[114.797345,27.6238430000001],[114.792896757813,27.6793971992188],[114.751109648438,27.6970046210938],[114.765943632813,27.7489504218751],[114.74134890625,27.7686428046876],[114.770640898438,27.8184743476563],[114.782896757813,27.8282888007812],[114.804976835938,27.8558596015625],[114.78736453125,27.8858180976563],[114.764859648438,27.903843],[114.791632109375,27.9252834296875],[114.808463164063,27.9652248359376],[114.862896757813,27.9982888007813],[114.877345,28.033843],[114.90326296875,28.0379274726563],[114.917257109375,28.0581960273438],[114.94326296875,28.0679274726563],[114.963975859375,28.0979274726563],[114.98326296875,28.0897585273438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"贵溪市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.305982695313,28.5379445625],[117.324444609375,28.4419069648438],[117.308297148438,28.4008278632813],[117.32422,28.3885353828125],[117.31298953125,28.34819846875],[117.2815246875,28.3293825507813],[117.283170195313,28.3182717109375],[117.25298953125,28.3059206367187],[117.26170046875,28.28819846875],[117.290557890625,28.265923078125],[117.293140898438,28.248452375],[117.280201445313,28.2269972968751],[117.270084257813,28.1585402656251],[117.31298953125,28.1494875312501],[117.323883085938,28.135376203125],[117.352735625,28.1396388984376],[117.383922148438,28.1208254218751],[117.402345,28.1181032539063],[117.41869265625,28.1205202460938],[117.441656523438,28.102798078125],[117.457345,28.063843],[117.467154570313,28.0239064765625],[117.438023710938,27.9791701484375],[117.429132109375,27.9395143867188],[117.437345,27.933843],[117.414547148438,27.9008229804688],[117.37142703125,27.8897585273438],[117.334088164063,27.8608180976563],[117.320621367188,27.8968166328126],[117.28142703125,27.8697585273438],[117.277345,27.8538430000001],[117.241793242188,27.8782888007813],[117.232896757813,27.8893971992188],[117.1630871875,27.8995558906251],[117.14373171875,27.8971486640625],[117.113995390625,27.9146291328125],[117.102345,27.886977765625],[117.081939726563,27.8895143867188],[117.042896757813,27.8582888007813],[117.026822539063,27.8493971992188],[117.007345,27.8838430000001],[117.01170046875,27.9094875312501],[117.03298953125,27.9381984687501],[117.0474621875,27.9735622382813],[117.01170046875,27.98819846875],[116.977779570313,28.0133498359376],[116.96298953125,28.04948753125],[116.934605742188,28.0611037421875],[116.927345,28.103843],[116.946314726563,28.1313161445313],[116.967345,28.1266017890625],[116.985308867188,28.1306276679688],[116.981217070313,28.1488845039063],[116.987345,28.173843],[117.015694609375,28.1854933906251],[117.063170195313,28.1980178046875],[117.071519804688,28.2096681953126],[117.083170195313,28.2180178046876],[117.091519804688,28.2296681953125],[117.113472929688,28.2381349921875],[117.1107434375,28.2519435859375],[117.141295195313,28.2738430000001],[117.121519804688,28.2880178046875],[117.113170195313,28.2996681953125],[117.064742460938,28.3080178046875],[117.053170195313,28.2780178046875],[117.037506132813,28.2696681953125],[117.02279421875,28.29019065625],[117.007345,28.283843],[116.999176054688,28.2956740546875],[116.9726575,28.3139821601563],[116.96326296875,28.3441188789063],[116.996158476563,28.36683128125],[116.991221953125,28.3888430000001],[116.993526640625,28.3991213203125],[116.978409453125,28.4351198554688],[117.0005871875,28.46917503125],[117.01326296875,28.4779274726563],[117.021754179688,28.4902272773438],[117.069444609375,28.4754421210938],[117.10302859375,28.4973122382813],[117.11455203125,28.5281056953126],[117.143858671875,28.5483400703125],[117.137345,28.563843],[117.154049101563,28.5686183906251],[117.210675078125,28.603012921875],[117.221944609375,28.62976096875],[117.237345,28.623843],[117.268824492188,28.5995436835938],[117.305982695313,28.5379445625]]]]}},{"type":"Feature","properties":{"name":"余江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.11455203125,28.5281056953126],[117.10302859375,28.4973122382813],[117.069444609375,28.4754421210938],[117.021754179688,28.4902272773438],[117.01326296875,28.4779274726563],[117.0005871875,28.46917503125],[116.978409453125,28.4351198554688],[116.993526640625,28.3991213203125],[116.991221953125,28.3888430000001],[116.996158476563,28.36683128125],[116.96326296875,28.3441188789063],[116.9726575,28.3139821601563],[116.999176054688,28.2956740546875],[117.007345,28.283843],[117.002896757813,28.2782888007813],[116.970875273438,28.2647951484375],[116.982896757813,28.1793971992188],[116.987345,28.173843],[116.981217070313,28.1488845039063],[116.985308867188,28.1306276679688],[116.967345,28.1266017890625],[116.946314726563,28.1313161445313],[116.927345,28.103843],[116.915513945313,28.0956740546875],[116.900094023438,28.0733425117188],[116.857345,28.0838430000001],[116.853531523438,28.0900295234375],[116.828521757813,28.1054396796875],[116.801383085938,28.09698753125],[116.790572539063,28.1287209296875],[116.807877226563,28.1673537421875],[116.785240507813,28.1813014960938],[116.762345,28.1741701484375],[116.720299101563,28.1872682929688],[116.728057890625,28.2121804023438],[116.707345,28.205727765625],[116.685689726563,28.2124733710938],[116.696490507813,28.2471559882813],[116.729522734375,28.2675075507813],[116.762345,28.2572853828125],[116.772345,28.2604006171875],[116.794761992188,28.2534181953125],[116.815172148438,28.2865431953125],[116.791158476563,28.3376564765625],[116.787345,28.353843],[116.79142703125,28.3597585273438],[116.819991484375,28.379477765625],[116.86795046875,28.3888430000001],[116.859132109375,28.4281716132813],[116.901358671875,28.4573268867188],[116.88142703125,28.4879274726563],[116.87326296875,28.5119997382813],[116.893160429688,28.5075392890625],[116.897345,28.523843],[116.932808867188,28.5283815742188],[116.965167265625,28.5405397773438],[116.997345,28.5018044257813],[117.011881132813,28.5193044257812],[117.02818484375,28.5328444648438],[117.044620390625,28.5615407539063],[117.039874296875,28.60808128125],[117.05330203125,28.6094509101562],[117.125455351563,28.5781569648438],[117.137345,28.563843],[117.143858671875,28.5483400703125],[117.11455203125,28.5281056953126]]]]}},{"type":"Feature","properties":{"name":"月湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.141295195313,28.2738430000001],[117.1107434375,28.2519435859375],[117.113472929688,28.2381349921875],[117.091519804688,28.2296681953125],[117.083170195313,28.2180178046876],[117.071519804688,28.2096681953126],[117.063170195313,28.1980178046875],[117.015694609375,28.1854933906251],[116.987345,28.173843],[116.982896757813,28.1793971992188],[116.970875273438,28.2647951484375],[117.002896757813,28.2782888007813],[117.007345,28.283843],[117.02279421875,28.29019065625],[117.037506132813,28.2696681953125],[117.053170195313,28.2780178046875],[117.064742460938,28.3080178046875],[117.113170195313,28.2996681953125],[117.121519804688,28.2880178046875],[117.141295195313,28.2738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"定南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.122896757813,25.0193971992188],[115.131890898438,25.0081642890625],[115.15095828125,25.0105373359375],[115.171793242188,24.9982888007813],[115.197345,24.9938430000001],[115.156998320313,24.9434011054688],[115.177843046875,24.8939284492188],[115.247467070313,24.9025905585938],[115.279947539063,24.8834938789063],[115.321793242188,24.8782888007813],[115.327345,24.8738430000001],[115.341773710938,24.8380202460938],[115.367086210938,24.8417604804687],[115.391226835938,24.8231276679688],[115.343463164063,24.7945583320313],[115.36298953125,24.77948753125],[115.367345,24.773843],[115.352735625,24.73757346875],[115.320767851563,24.7568605781251],[115.291173125,24.7612331367188],[115.235484648438,24.7276393867187],[115.216695585938,24.7304177070313],[115.1812903125,24.7092409492187],[115.187345,24.6938430000001],[115.142061796875,24.6891237617188],[115.097056914063,24.672973859375],[115.074346953125,24.6983913398437],[115.050494414063,24.7085622382813],[115.02259890625,24.6773366523438],[114.992345,24.6791408515625],[114.979039335938,24.6783473945312],[114.935513945313,24.6546974921876],[114.914229765625,24.6785207343751],[114.891485625,24.6048610664063],[114.868092070313,24.5618141914063],[114.851539335938,24.5803395820312],[114.852735625,24.600356671875],[114.813570585938,24.5980226875],[114.797345,24.603843],[114.81142703125,24.6597585273438],[114.82326296875,24.6679274726563],[114.83142703125,24.6997585273438],[114.846846953125,24.7234377265625],[114.877345,24.7166017890625],[114.898756132813,24.72140159375],[114.915513945313,24.7456740546875],[114.937496367188,24.7608547187501],[114.931051054688,24.7896169257812],[114.95326296875,24.7979274726563],[114.983707304688,24.8177565742188],[114.977135039063,24.8470827460938],[114.96107546875,24.8581716132813],[114.963468046875,24.868843],[114.961221953125,24.8788430000001],[114.9695325,24.9159157539063],[114.94093875,24.9790138984375],[114.957345,25.003843],[114.97302859375,25.0083278632813],[114.97111453125,25.0237282539063],[115.0322278125,25.059653546875],[115.061793242188,25.0482888007813],[115.100714140625,25.0371608710937],[115.122896757813,25.0193971992188]]]]}},{"type":"Feature","properties":{"name":"全南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,24.583843],[114.347345,24.583843],[114.342345,24.5710353828125],[114.337345,24.583843]]],[[[114.177345,24.663843],[114.177345,24.6538430000001],[114.167345,24.6538430000001],[114.167345,24.663843],[114.177345,24.663843]]],[[[114.607345,24.733843],[114.619537382813,24.7304201484375],[114.610767851563,24.7216506171875],[114.607345,24.733843]]],[[[114.607345,24.733843],[114.5753528125,24.7284084296875],[114.550479765625,24.6676369453125],[114.474605742188,24.6365822578125],[114.46298953125,24.60819846875],[114.44869265625,24.5971657539063],[114.416712675781,24.6018923164063],[114.387345,24.563843],[114.367345,24.563843],[114.367345,24.583843],[114.347345,24.583843],[114.342345,24.5966506171876],[114.337345,24.583843],[114.322359648438,24.5763942695313],[114.311353789063,24.5817678046876],[114.307345,24.5738430000001],[114.300225859375,24.5799758125],[114.276129179688,24.6339748359376],[114.187345,24.6538430000001],[114.187345,24.663843],[114.177345,24.663843],[114.166986113281,24.6901930976563],[114.27298953125,24.70819846875],[114.28170046875,24.72948753125],[114.335638457031,24.7515627265626],[114.330455351563,24.7866335273438],[114.35750125,24.8485256171876],[114.39611453125,24.8783303046875],[114.390867949219,24.9138430000001],[114.393104277344,24.9289846015625],[114.387345,24.9538430000001],[114.413531523438,24.9576564765625],[114.421158476563,24.9700295234376],[114.4560559375,24.9819240546876],[114.45045046875,24.999926984375],[114.503531523438,25.0076564765626],[114.511158476563,25.0200295234376],[114.530386992188,25.031880109375],[114.560504179688,25.0872023750001],[114.592345,25.0772853828125],[114.607345,25.081958234375],[114.627345,25.075727765625],[114.650655546875,25.0829885078125],[114.6683215625,25.1116530585938],[114.687345,25.1057277656251],[114.715406523438,25.1144680000001],[114.727345,25.133843],[114.802686796875,25.0712673164063],[114.8607434375,25.0537868476563],[114.863424101563,25.0204006171875],[114.857345,25.003843],[114.84326296875,24.9979274726562],[114.78142703125,24.9897585273438],[114.757672148438,24.9742873359376],[114.722345,24.9822048164062],[114.6841028125,24.9736330390625],[114.67326296875,24.9579274726563],[114.64142703125,24.9397585273438],[114.61326296875,24.9179274726563],[114.58142703125,24.9097585273438],[114.560011015625,24.8787380195313],[114.595611601563,24.8584157539063],[114.591124296875,24.8383962226563],[114.603565703125,24.8192897773438],[114.599454375,24.8009572578125],[114.61857546875,24.77159690625],[114.597579375,24.7570998359376],[114.607345,24.733843]]]]}},{"type":"Feature","properties":{"name":"安远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.177345,25.1038430000001],[115.173922148438,25.0916506171876],[115.165152617188,25.1004201484375],[115.177345,25.1038430000001]]],[[[115.177345,25.1038430000001],[115.18142703125,25.1597585273437],[115.21781375,25.17337425],[115.23142703125,25.2097585273438],[115.249176054688,25.2220119453125],[115.276500273438,25.261587140625],[115.29142703125,25.3197585273438],[115.30326296875,25.3379274726563],[115.31142703125,25.3703102851563],[115.291163359375,25.4185646796876],[115.297003203125,25.4446169257813],[115.26142703125,25.4579274726562],[115.25013796875,25.4881056953125],[115.22142703125,25.5079274726563],[115.217345,25.513843],[115.256553984375,25.544106671875],[115.247345,25.583843],[115.26298953125,25.58819846875],[115.27170046875,25.59948753125],[115.29298953125,25.6081984687501],[115.315889921875,25.6220143867188],[115.342345,25.6181032539063],[115.380875273438,25.6237966132813],[115.383160429688,25.6083303046875],[115.36298953125,25.5927614570313],[115.371983671875,25.588051984375],[115.38490359375,25.5899611640625],[115.416143828125,25.5494875312501],[115.43298953125,25.55819846875],[115.441846953125,25.5696755195313],[115.477345,25.5638430000001],[115.48142703125,25.5579274726563],[115.49326296875,25.5497585273438],[115.501573515625,25.5275490546876],[115.521676054688,25.5320558906251],[115.535513945313,25.5120119453126],[115.55326296875,25.4997585273438],[115.56142703125,25.4679274726563],[115.573565703125,25.4492897773438],[115.56748171875,25.4221486640625],[115.624849882813,25.4350075507812],[115.62107546875,25.4181716132813],[115.637750273438,25.4066579414063],[115.62326296875,25.3679274726563],[115.600474882813,25.3521950507812],[115.603624296875,25.3381349921875],[115.565811796875,25.3165529609375],[115.583863554688,25.2888356757813],[115.5458215625,25.231274640625],[115.557345,25.203843],[115.548878203125,25.1973073554688],[115.553917265625,25.1631935859375],[115.529244414063,25.1219411445313],[115.490167265625,25.0985695625001],[115.494732695313,25.067671125],[115.468878203125,25.024809796875],[115.481832304688,25.0080275703125],[115.50041140625,25.0107741523438],[115.48298953125,24.9681984687501],[115.450738554688,24.924702375],[115.453170195313,24.9082717109375],[115.43170046875,24.8994875312501],[115.41298953125,24.8881984687501],[115.34170046875,24.87948753125],[115.327345,24.8738430000001],[115.321793242188,24.8782888007813],[115.279947539063,24.8834938789063],[115.247467070313,24.9025905585938],[115.177843046875,24.8939284492188],[115.156998320313,24.9434011054688],[115.197345,24.9938430000001],[115.205269804688,24.9978517890625],[115.19502078125,25.018843],[115.209185820313,25.0478517890625],[115.189420195313,25.0578517890625],[115.1972278125,25.0738430000001],[115.184293242188,25.1003273750001],[115.177345,25.1038430000001]]]]}},{"type":"Feature","properties":{"name":"崇义县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.09271609375,25.89921409375],[114.102115507813,25.888305890625],[114.145257597656,25.9001149726563],[114.206236601563,25.8660915351563],[114.243902617188,25.8799221015625],[114.272345,25.8776369453125],[114.304329863281,25.8802077460938],[114.370953398438,25.8650710273438],[114.382535429688,25.8266017890625],[114.404276152344,25.8078713203126],[114.396453886719,25.7105226875],[114.432345,25.7076369453125],[114.452345,25.7092458320313],[114.47162234375,25.7076955390625],[114.510045195313,25.7349391914063],[114.597345,25.743843],[114.602061796875,25.7285622382813],[114.622003203125,25.7107448554688],[114.572061796875,25.6991237617188],[114.562628203125,25.6885622382813],[114.552061796875,25.6791237617188],[114.542628203125,25.6685622382813],[114.5146496875,25.6435646796876],[114.497345,25.613843],[114.442213164063,25.6086208320313],[114.4223840625,25.6191139960938],[114.391190214844,25.6081813789063],[114.372535429688,25.5686525703126],[114.362154570313,25.5490334296875],[114.352535429688,25.5086525703125],[114.331180449219,25.4682936835938],[114.312345,25.4690407539062],[114.281978789063,25.467837140625],[114.257711210938,25.51925315625],[114.242166777344,25.518637921875],[114.228902617188,25.532954328125],[114.162535429688,25.5131911445313],[114.192550078125,25.4990261054688],[114.192147246094,25.4888430000001],[114.192572050781,25.4781081367187],[114.152154570313,25.4590334296875],[114.137725859375,25.443462140625],[114.106217070313,25.4142678046876],[114.082877226563,25.439458234375],[114.062345,25.4386452460938],[114.0189075,25.4403664375001],[114.007345,25.403843],[113.973673125,25.4088796210938],[113.994486113281,25.4392702460938],[113.967017851563,25.4568556953126],[113.937345,25.4438430000001],[113.941429472656,25.4697585273438],[113.953565703125,25.4883962226563],[113.950103789063,25.503843],[113.95490359375,25.5252516914063],[113.973260527344,25.5379274726563],[113.986197539063,25.5566628242187],[113.974388457031,25.6093361640625],[113.951429472656,25.6179274726563],[113.935091582031,25.6615895820313],[113.909456816406,25.7009572578126],[113.913529082031,25.7191213203125],[113.907345,25.733843],[113.912899199219,25.7382888007813],[113.926239042969,25.7549489570313],[113.952159453125,25.7757057929688],[113.969600859375,25.8367092109375],[114.011790800781,25.8893971992188],[114.017345,25.893843],[114.057178984375,25.90847190625],[114.09271609375,25.89921409375]]]]}},{"type":"Feature","properties":{"name":"大余县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4223840625,25.6191139960938],[114.442213164063,25.6086208320313],[114.497345,25.613843],[114.552896757813,25.5993971992188],[114.562916289063,25.5868849921875],[114.660260039063,25.6005886054688],[114.662965117188,25.578843],[114.661724882813,25.5688430000001],[114.663590117188,25.553843],[114.661676054688,25.5384841132813],[114.672896757813,25.5193971992188],[114.681793242188,25.4982888007813],[114.697345,25.473843],[114.660797148438,25.4703932929688],[114.643316679688,25.4361598945313],[114.63138796875,25.44151878125],[114.623892851563,25.4272927070313],[114.603013945313,25.416294171875],[114.57947390625,25.4268727851563],[114.567345,25.403843],[114.532218046875,25.4201100898438],[114.501060820313,25.4003322578125],[114.503472929688,25.3881349921876],[114.473682890625,25.376645734375],[114.452779570313,25.3899172187501],[114.438219023438,25.3870388007813],[114.421658964844,25.3441042304688],[114.393182402344,25.3236916328125],[114.305933867188,25.3411135078126],[114.293170195313,25.3080178046875],[114.253660917969,25.2975954414063],[114.237345,25.3008180976562],[114.222056914063,25.297798078125],[114.189386015625,25.3112233710938],[114.172345,25.3078542304688],[114.157345,25.3108180976563],[114.142345,25.3078542304688],[114.13201296875,25.3098976875],[114.06267703125,25.2777883125],[114.049244414063,25.2804445625001],[114.032345,25.2568679023438],[114.023170195313,25.2696681953126],[114.007345,25.273843],[114.02408328125,25.3043386054688],[114.044320097656,25.318843],[114.023392363281,25.3338430000001],[114.043455839844,25.3482228828126],[114.041356230469,25.358843],[114.043472929688,25.3695510078125],[114.020023222656,25.3785964179688],[114.034666777344,25.3890895820313],[114.011519804688,25.3980178046876],[114.007345,25.403843],[114.0189075,25.4403664375001],[114.062345,25.4386452460938],[114.082877226563,25.439458234375],[114.106217070313,25.4142678046876],[114.137725859375,25.443462140625],[114.152154570313,25.4590334296875],[114.192572050781,25.4781081367187],[114.192147246094,25.4888430000001],[114.192550078125,25.4990261054688],[114.162535429688,25.5131911445313],[114.228902617188,25.532954328125],[114.242166777344,25.518637921875],[114.257711210938,25.51925315625],[114.281978789063,25.467837140625],[114.312345,25.4690407539062],[114.331180449219,25.4682936835938],[114.352535429688,25.5086525703125],[114.362154570313,25.5490334296875],[114.372535429688,25.5686525703126],[114.391190214844,25.6081813789063],[114.4223840625,25.6191139960938]]]]}},{"type":"Feature","properties":{"name":"赣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.207345,25.8638430000001],[115.210767851563,25.8760353828125],[115.219537382813,25.8672658515625],[115.207345,25.8638430000001]]],[[[115.207345,25.8638430000001],[115.21142703125,25.8379274726562],[115.22326296875,25.8297585273438],[115.23142703125,25.8179274726563],[115.245557890625,25.8081716132813],[115.236119414063,25.766079328125],[115.25857546875,25.73159690625],[115.240103789063,25.7188430000001],[115.256827421875,25.7072951484375],[115.2305871875,25.68917503125],[115.204722929688,25.6494606757813],[115.234483671875,25.6289138007812],[115.24326296875,25.5897585273438],[115.247345,25.583843],[115.256553984375,25.544106671875],[115.217345,25.513843],[115.206422148438,25.5047682929688],[115.192808867188,25.4883815742187],[115.159644804688,25.4786476875],[115.13537234375,25.4494264960938],[115.08611453125,25.4293044257813],[115.072808867188,25.4893044257813],[115.057725859375,25.5083815742188],[115.011104765625,25.4816774726563],[115.012896757813,25.4992653632813],[114.94263796875,25.5297365546875],[114.91607546875,25.5145241523438],[114.872550078125,25.5394533515626],[114.847345,25.533843],[114.83115359375,25.568520734375],[114.836436796875,25.5920900703125],[114.853565703125,25.6183962226563],[114.849127226563,25.6382057929688],[114.89326296875,25.6679274726563],[114.90142703125,25.6797585273438],[114.92326296875,25.6879274726563],[114.927345,25.703843],[114.95201296875,25.6882985664063],[114.962667265625,25.6893849921875],[114.989283476563,25.6741408515625],[115.001881132813,25.6893044257813],[115.035401640625,25.7171486640626],[115.004288359375,25.7429958320312],[115.022808867188,25.7583815742188],[115.031881132813,25.7693044257813],[115.042808867188,25.7783815742188],[115.054522734375,25.7924831367188],[115.051324492188,25.823843],[115.055860625,25.8683156562501],[115.002056914063,25.8480983710938],[114.982808867188,25.8793044257813],[114.961881132813,25.8883815742188],[114.952808867188,25.9393044257813],[114.919644804688,25.9490383125],[114.901954375,25.9703322578125],[114.877345,25.9678249335938],[114.857345,25.9698610664063],[114.806334257813,25.9646633125],[114.797345,25.953843],[114.776588164063,25.9681716132813],[114.784586210938,26.003843],[114.77673953125,26.038843],[114.783638945313,26.0696169257813],[114.757257109375,26.0794899726563],[114.72755984375,26.1224977851563],[114.733638945313,26.1496169257813],[114.71142703125,26.1579274726563],[114.707345,26.163843],[114.712896757813,26.1682888007813],[114.730079375,26.1897463203125],[114.752345,26.1869777656251],[114.777345,26.1900856757813],[114.807735625,26.1863063789063],[114.844508085938,26.2004396796875],[114.870181914063,26.1972463203125],[114.906954375,26.2113796210938],[114.993961210938,26.2005568671876],[115.018785429688,26.169555890625],[115.042896757813,26.1593971992188],[115.067345,26.145024640625],[115.09963015625,26.1640041328125],[115.081793242188,26.1782888007813],[115.072896757813,26.1893971992188],[115.037310820313,26.1995705390625],[115.072896757813,26.2482888007813],[115.087345,26.273843],[115.10205203125,26.26806175],[115.127345,26.2717995429688],[115.157345,26.2673659492188],[115.17295046875,26.2696706367188],[115.182345,26.2251491523437],[115.212345,26.2295827460938],[115.222345,26.2281032539063],[115.243814726563,26.2312770820312],[115.263140898438,26.199233625],[115.261529570313,26.1883303046875],[115.27298953125,26.17948753125],[115.288365507813,26.1595632148438],[115.31298953125,26.14948753125],[115.33170046875,26.13819846875],[115.36170046875,26.1259206367188],[115.35298953125,26.1081984687501],[115.331182890625,26.0913674140625],[115.337345,26.0538430000001],[115.33298953125,26.04819846875],[115.293678007813,26.0321096015625],[115.33170046875,26.0027614570313],[115.287623320313,25.9747951484375],[115.241954375,25.9680471015625],[115.208546171875,25.98819846875],[115.19302859375,25.9684474921876],[115.177222929688,25.872231671875],[115.207345,25.8638430000001]]]]}},{"type":"Feature","properties":{"name":"会昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.827345,25.173843],[115.839537382813,25.1704201484375],[115.830767851563,25.1616506171876],[115.827345,25.173843]]],[[[115.877345,25.803843],[115.889537382813,25.8004201484375],[115.880767851563,25.7916506171875],[115.877345,25.803843]]],[[[115.677345,25.883843],[115.673922148438,25.8716506171875],[115.665152617188,25.8804201484375],[115.677345,25.883843]]],[[[115.877345,25.803843],[115.862154570313,25.8086525703125],[115.83435671875,25.8386525703126],[115.824522734375,25.7957228828125],[115.842672148438,25.7789089179688],[115.832154570313,25.7590334296875],[115.821304960938,25.7360427070313],[115.792139921875,25.7090212226563],[115.792545195313,25.698843],[115.792144804688,25.688843],[115.79287234375,25.6705983710938],[115.772535429688,25.6486525703126],[115.751881132813,25.6389040351563],[115.762535429688,25.6290334296876],[115.774151640625,25.61649925],[115.812535429688,25.6286525703125],[115.831065703125,25.6486525703126],[115.863585234375,25.6283791328125],[115.902613554688,25.5679421210938],[115.922154570313,25.5890334296875],[115.942535429688,25.5986525703125],[115.97033328125,25.6286525703125],[115.972545195313,25.6089333320313],[115.9714075,25.58024925],[115.982154570313,25.5686525703126],[116.01357546875,25.5587038398438],[116.027345,25.543843],[116.023531523438,25.5176564765625],[116.010347929688,25.5095314765625],[116.000538359375,25.4780373359375],[116.007345,25.473843],[116.016090117188,25.4205934882813],[116.001529570313,25.4093556953125],[116.003140898438,25.398452375],[115.990362578125,25.3772658515625],[115.993082304688,25.358843],[115.991607695313,25.348843],[115.998746367188,25.3005275703125],[115.982345,25.2981032539063],[115.96795046875,25.30022971875],[115.941519804688,25.2894142890625],[115.945260039063,25.2640993476563],[115.925885039063,25.2389919257812],[115.87263796875,25.21806175],[115.853389921875,25.2209059882813],[115.851607695313,25.208843],[115.854483671875,25.1893556953126],[115.847345,25.1838430000001],[115.827345,25.1838430000001],[115.827345,25.173843],[115.821612578125,25.1695778632813],[115.771734648438,25.1577907539063],[115.762569609375,25.1808644843751],[115.737886992188,25.1476857734376],[115.709888945313,25.1295778632813],[115.713648710938,25.1514040351563],[115.663316679688,25.1714040351563],[115.674879179688,25.2385622382813],[115.657955351563,25.2481081367188],[115.643077421875,25.2281081367188],[115.631612578125,25.2195778632813],[115.616705351563,25.18206565625],[115.567203398438,25.1905886054688],[115.557345,25.203843],[115.5458215625,25.231274640625],[115.583863554688,25.2888356757813],[115.565811796875,25.3165529609375],[115.603624296875,25.3381349921875],[115.600474882813,25.3521950507812],[115.62326296875,25.3679274726563],[115.637750273438,25.4066579414063],[115.62107546875,25.4181716132813],[115.624849882813,25.4350075507812],[115.56748171875,25.4221486640625],[115.573565703125,25.4492897773438],[115.56142703125,25.4679274726563],[115.55326296875,25.4997585273438],[115.535513945313,25.5120119453126],[115.521676054688,25.5320558906251],[115.501573515625,25.5275490546876],[115.49326296875,25.5497585273438],[115.48142703125,25.5579274726563],[115.477345,25.5638430000001],[115.49224734375,25.5745241523438],[115.503585234375,25.6174904609375],[115.562345,25.6058791328126],[115.588814726563,25.611108625],[115.580367460938,25.653843],[115.583331328125,25.668843],[115.581358671875,25.6788430000001],[115.585308867188,25.698843],[115.581358671875,25.7188430000001],[115.583331328125,25.728843],[115.579561796875,25.7479177070313],[115.549503203125,25.7694631171875],[115.556295195313,25.803843],[115.5507434375,25.8319435859375],[115.590235625,25.86024925],[115.602345,25.8578542304688],[115.631636992188,25.8636428046876],[115.643917265625,25.831801984375],[115.641300078125,25.8185549140625],[115.654547148438,25.786313703125],[115.704595976563,25.7962038398438],[115.688629179688,25.8350490546876],[115.693331328125,25.858843],[115.69021609375,25.8746169257813],[115.677345,25.883843],[115.68170046875,25.8894875312501],[115.717345,25.9038430000001],[115.801265898438,25.9176296210938],[115.83677859375,25.8716237617188],[115.889561796875,25.83491721875],[115.877345,25.803843]]]]}},{"type":"Feature","properties":{"name":"龙南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.607345,24.733843],[114.610767851563,24.7216506171875],[114.619537382813,24.7304201484375],[114.597579375,24.7570998359376],[114.61857546875,24.77159690625],[114.599454375,24.8009572578125],[114.603565703125,24.8192897773438],[114.591124296875,24.8383962226563],[114.595611601563,24.8584157539063],[114.560011015625,24.8787380195313],[114.58142703125,24.9097585273438],[114.61326296875,24.9179274726563],[114.64142703125,24.9397585273438],[114.67326296875,24.9579274726563],[114.6841028125,24.9736330390625],[114.722345,24.9822048164062],[114.757672148438,24.9742873359376],[114.78142703125,24.9897585273438],[114.84326296875,24.9979274726562],[114.857345,25.003843],[114.892310820313,25.0095876289063],[114.902345,25.0081032539063],[114.934439726563,25.01284690625],[114.957345,25.003843],[114.94093875,24.9790138984375],[114.9695325,24.9159157539063],[114.961221953125,24.8788430000001],[114.963468046875,24.868843],[114.96107546875,24.8581716132813],[114.977135039063,24.8470827460938],[114.983707304688,24.8177565742188],[114.95326296875,24.7979274726563],[114.931051054688,24.7896169257812],[114.937496367188,24.7608547187501],[114.915513945313,24.7456740546875],[114.898756132813,24.72140159375],[114.877345,24.7166017890625],[114.846846953125,24.7234377265625],[114.83142703125,24.6997585273438],[114.82326296875,24.6679274726563],[114.81142703125,24.6597585273438],[114.797345,24.603843],[114.779029570313,24.611704328125],[114.723350859375,24.6095388007812],[114.734508085938,24.5652565742187],[114.711339140625,24.549848859375],[114.703350859375,24.5378371406251],[114.697345,24.5338430000001],[114.692896757813,24.5393971992188],[114.681793242188,24.5482888007813],[114.662120390625,24.5806813789063],[114.637345,24.5776003242188],[114.618267851563,24.5799709296876],[114.592896757813,24.5482888007813],[114.548912382813,24.5393971992188],[114.532545195313,24.5598390937501],[114.486060820313,24.5325124335938],[114.436673613281,24.4964382148438],[114.3982434375,24.5012184882813],[114.387345,24.563843],[114.416712675781,24.6018923164063],[114.44869265625,24.5971657539063],[114.46298953125,24.60819846875],[114.474605742188,24.6365822578125],[114.550479765625,24.6676369453125],[114.5753528125,24.7284084296875],[114.607345,24.733843]]]]}},{"type":"Feature","properties":{"name":"南康市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.807345,25.893843],[114.810767851563,25.9060353828125],[114.819537382813,25.8972658515625],[114.807345,25.893843]]],[[[114.807345,25.893843],[114.812623320313,25.8516481757813],[114.8529309375,25.81937034375],[114.892896757813,25.7693971992188],[114.912838164063,25.7154592109375],[114.927345,25.703843],[114.92326296875,25.6879274726563],[114.90142703125,25.6797585273438],[114.89326296875,25.6679274726563],[114.849127226563,25.6382057929688],[114.853565703125,25.6183962226563],[114.836436796875,25.5920900703125],[114.83115359375,25.568520734375],[114.847345,25.533843],[114.85517703125,25.5151906562501],[114.84326296875,25.4979274726563],[114.76806765625,25.4893776679688],[114.752847929688,25.4673317695313],[114.722584257813,25.4800417304688],[114.697345,25.473843],[114.681793242188,25.4982888007813],[114.672896757813,25.5193971992188],[114.661676054688,25.5384841132813],[114.663590117188,25.553843],[114.661724882813,25.5688430000001],[114.662965117188,25.578843],[114.660260039063,25.6005886054688],[114.562916289063,25.5868849921875],[114.552896757813,25.5993971992188],[114.497345,25.613843],[114.5146496875,25.6435646796876],[114.542628203125,25.6685622382813],[114.552061796875,25.6791237617188],[114.562628203125,25.6885622382813],[114.572061796875,25.6991237617188],[114.622003203125,25.7107448554688],[114.602061796875,25.7285622382813],[114.597345,25.743843],[114.6127746875,25.7484889960938],[114.611944609375,25.7588430000001],[114.612745390625,25.768843],[114.611539335938,25.783843],[114.613951445313,25.813843],[114.610186796875,25.8606789375001],[114.582008085938,25.8584133125],[114.57271609375,25.8726247382813],[114.592769804688,25.9085646796876],[114.5919153125,25.9191677070313],[114.6330871875,25.954634015625],[114.630308867188,25.9891677070313],[114.658951445313,26.013843],[114.633590117188,26.0356960273438],[114.594527617188,26.01390159375],[114.57271609375,26.0392140937501],[114.560416289063,26.0498146796876],[114.5627746875,26.0791677070313],[114.49197390625,26.13847190625],[114.487345,26.163843],[114.51298953125,26.19819846875],[114.522345,26.221059796875],[114.542857695313,26.2180275703125],[114.557838164063,26.2374391914063],[114.57869265625,26.2405202460937],[114.603463164063,26.2214015937501],[114.600924101563,26.2042263007812],[114.642486601563,26.1980837226563],[114.667345,26.203843],[114.660235625,26.1879689765625],[114.701051054688,26.1740602851562],[114.707345,26.163843],[114.71142703125,26.1579274726563],[114.733638945313,26.1496169257813],[114.72755984375,26.1224977851563],[114.757257109375,26.0794899726563],[114.783638945313,26.0696169257813],[114.77673953125,26.038843],[114.784586210938,26.003843],[114.776588164063,25.9681716132813],[114.797345,25.953843],[114.784810820313,25.9286232734376],[114.800704375,25.8972023750001],[114.807345,25.893843]]]]}},{"type":"Feature","properties":{"name":"宁都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.757345,26.613843],[115.769537382813,26.6172658515626],[115.760767851563,26.6260353828125],[115.716656523438,26.6184694648438],[115.726148710938,26.6608180976563],[115.712301054688,26.6577126289063],[115.687345,26.6638430000001],[115.702447539063,26.6987526679688],[115.702242460938,26.70894065625],[115.723053007813,26.7190383125001],[115.722237578125,26.759145734375],[115.702257109375,26.7587380195313],[115.664625273438,26.7716213203125],[115.682647734375,26.7889382148438],[115.682242460938,26.808930890625],[115.698775664063,26.8572341132813],[115.7778528125,26.8092775703125],[115.801690703125,26.8584084296875],[115.822086210938,26.8780080390626],[115.83224734375,26.8989430976563],[115.86244265625,26.9187429023438],[115.912252226563,26.9589479804688],[115.92244265625,26.9587380195312],[115.927345,26.9738430000001],[115.951929960938,26.9928200507813],[116.003951445313,27.0629836250001],[115.9985559375,27.099497296875],[116.02170046875,27.12948753125],[116.027345,27.133843],[116.093306914063,27.1446779609376],[116.11298953125,27.12948753125],[116.12170046875,27.10819846875],[116.13298953125,27.08948753125],[116.1501575,27.0475417304688],[116.177345,27.0538430000001],[116.186129179688,27.0159255195313],[116.15170046875,26.96948753125],[116.147345,26.953843],[116.151793242188,26.9182888007813],[116.163013945313,26.8992018867188],[116.161724882813,26.888843],[116.163013945313,26.8784841132813],[116.140343046875,26.8399221015625],[116.144073515625,26.8099440742187],[116.132896757813,26.7582888007813],[116.113092070313,26.7245973945313],[116.191378203125,26.6916091132813],[116.192965117188,26.678843],[116.191475859375,26.6668703437501],[116.212799101563,26.6695217109376],[116.223702421875,26.655903546875],[116.271793242188,26.6618849921876],[116.260162382813,26.644106671875],[116.236671171875,26.625298078125],[116.268936796875,26.5811330390626],[116.241793242188,26.5593971992188],[116.237345,26.543843],[116.22197390625,26.5392140937501],[116.21271609375,26.5215261054688],[116.242769804688,26.4791384101563],[116.241710234375,26.4659304023438],[116.273780546875,26.4382985664063],[116.25197390625,26.39921409375],[116.24271609375,26.37847190625],[116.229000273438,26.3538820625],[116.210738554688,26.3381496406251],[116.25123171875,26.3032643867187],[116.284342070313,26.2884889960938],[116.2566028125,26.2645876289063],[116.2380871875,26.2430983710938],[116.2219153125,26.2291677070312],[116.2227746875,26.21851096875],[116.153350859375,26.1686623359375],[116.12197390625,26.1592140937501],[116.11056765625,26.1459743476563],[116.113629179688,26.1078639960937],[116.097345,26.113843],[116.082545195313,26.1191530585937],[116.067345,26.1182472968751],[116.05093875,26.1192238593751],[116.032628203125,26.1591237617188],[116.020494414063,26.1685622382813],[115.993189726563,26.1379982734375],[115.972061796875,26.1191237617188],[115.936373320313,26.0791774726563],[115.922628203125,26.1091237617188],[115.902061796875,26.1185622382813],[115.891461210938,26.2090505195313],[115.892642851563,26.228843],[115.892047148438,26.238843],[115.893194609375,26.25808128125],[115.87447390625,26.2925319648438],[115.817345,26.2838430000001],[115.800704375,26.287202375],[115.762447539063,26.3062184882813],[115.742198515625,26.2963307929687],[115.723985625,26.306968],[115.737345,26.333843],[115.742511015625,26.3523928046875],[115.76298953125,26.36819846875],[115.77170046875,26.37948753125],[115.79298953125,26.38819846875],[115.81771609375,26.4031130195313],[115.787867460938,26.4433718085938],[115.83298953125,26.47819846875],[115.84170046875,26.4994875312501],[115.853140898438,26.5184523750001],[115.850128203125,26.538843],[115.853160429688,26.5593556953126],[115.837086210938,26.5717604804688],[115.811832304688,26.5680275703125],[115.802857695313,26.5796584296875],[115.76412234375,26.5739333320313],[115.757345,26.613843]]]]}},{"type":"Feature","properties":{"name":"瑞金市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.367345,25.963843],[116.347345,25.963843],[116.347345,25.973843],[116.367345,25.973843],[116.367345,25.963843]]],[[[115.877345,25.803843],[115.880767851563,25.7916506171875],[115.889537382813,25.8004201484375],[115.889561796875,25.83491721875],[115.83677859375,25.8716237617188],[115.801265898438,25.9176296210938],[115.717345,25.9038430000001],[115.71326296875,25.9197585273438],[115.690504179688,25.9491213203125],[115.707496367188,25.96085471875],[115.698492460938,26.0010231757813],[115.715513945313,26.0256740546876],[115.747345,26.033843],[115.74326296875,25.9979274726563],[115.73060671875,25.9784963203125],[115.763551054688,25.9557497382813],[115.816007109375,25.9675099921875],[115.810103789063,25.993843],[115.814215117188,26.0121950507813],[115.769429960938,26.0431179023438],[115.747345,26.033843],[115.755030546875,26.0676857734376],[115.708961210938,26.1045803046876],[115.740640898438,26.1584743476562],[115.753023710938,26.1683888984375],[115.750308867188,26.1902028632813],[115.772896757813,26.2082888007813],[115.781793242188,26.2193971992187],[115.812896757813,26.2282888007812],[115.826392851563,26.2603102851563],[115.817345,26.2838430000001],[115.87447390625,26.2925319648438],[115.893194609375,26.25808128125],[115.892047148438,26.238843],[115.892642851563,26.228843],[115.891461210938,26.2090505195313],[115.902061796875,26.1185622382813],[115.922628203125,26.1091237617188],[115.936373320313,26.0791774726563],[115.972061796875,26.1191237617188],[115.993189726563,26.1379982734375],[116.020494414063,26.1685622382813],[116.032628203125,26.1591237617188],[116.05093875,26.1192238593751],[116.067345,26.1182472968751],[116.082545195313,26.1191530585937],[116.097345,26.113843],[116.102686796875,26.0930373359375],[116.156392851563,26.0763893867188],[116.172960234375,26.0801003242188],[116.21326296875,26.0697585273438],[116.243765898438,26.0498952460938],[116.28326296875,26.0397585273438],[116.29142703125,26.0279274726562],[116.30326296875,26.0197585273438],[116.31142703125,25.9979274726563],[116.32326296875,25.9897585273438],[116.337345,25.963843],[116.321519804688,25.9596681953126],[116.302862578125,25.933637921875],[116.251773710938,25.9040163398438],[116.217345,25.9108180976562],[116.190831328125,25.9055788398438],[116.13490359375,25.8700734687501],[116.123170195313,25.8340016914063],[116.148995390625,25.8154933906251],[116.17375125,25.7809548164063],[116.16892703125,25.7565529609375],[116.142345,25.7618068671876],[116.115987578125,25.7565993476563],[116.103170195313,25.7080178046876],[116.054190703125,25.6950978828125],[116.065631132813,25.6372048164063],[116.05228640625,25.6398415351563],[116.033170195313,25.6355055976563],[116.056202421875,25.55968284375],[116.027345,25.543843],[116.01357546875,25.5587038398438],[115.982154570313,25.5686525703126],[115.9714075,25.58024925],[115.972545195313,25.6089333320313],[115.97033328125,25.6286525703125],[115.942535429688,25.5986525703125],[115.922154570313,25.5890334296875],[115.902613554688,25.5679421210938],[115.863585234375,25.6283791328125],[115.831065703125,25.6486525703126],[115.812535429688,25.6286525703125],[115.774151640625,25.61649925],[115.762535429688,25.6290334296876],[115.751881132813,25.6389040351563],[115.772535429688,25.6486525703126],[115.79287234375,25.6705983710938],[115.792144804688,25.688843],[115.792545195313,25.698843],[115.792139921875,25.7090212226563],[115.821304960938,25.7360427070313],[115.832154570313,25.7590334296875],[115.842672148438,25.7789089179688],[115.824522734375,25.7957228828125],[115.83435671875,25.8386525703126],[115.862154570313,25.8086525703125],[115.877345,25.803843]]]]}},{"type":"Feature","properties":{"name":"上犹县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.49197390625,26.13847190625],[114.5627746875,26.0791677070313],[114.560416289063,26.0498146796876],[114.57271609375,26.0392140937501],[114.594527617188,26.01390159375],[114.633590117188,26.0356960273438],[114.658951445313,26.013843],[114.630308867188,25.9891677070313],[114.6330871875,25.954634015625],[114.5919153125,25.9191677070313],[114.592769804688,25.9085646796876],[114.57271609375,25.8726247382813],[114.582008085938,25.8584133125],[114.610186796875,25.8606789375001],[114.613951445313,25.813843],[114.611539335938,25.783843],[114.612745390625,25.768843],[114.611944609375,25.7588430000001],[114.6127746875,25.7484889960938],[114.597345,25.743843],[114.510045195313,25.7349391914063],[114.47162234375,25.7076955390625],[114.452345,25.7092458320313],[114.432345,25.7076369453125],[114.396453886719,25.7105226875],[114.404276152344,25.8078713203126],[114.382535429688,25.8266017890625],[114.370953398438,25.8650710273438],[114.304329863281,25.8802077460938],[114.272345,25.8776369453125],[114.243902617188,25.8799221015625],[114.206236601563,25.8660915351563],[114.145257597656,25.9001149726563],[114.102115507813,25.888305890625],[114.09271609375,25.89921409375],[114.057178984375,25.90847190625],[114.017345,25.893843],[114.022974882813,25.9389138007813],[114.017345,25.973843],[114.027345,25.973843],[114.027345,25.9838430000001],[114.041790800781,25.9893971992187],[114.120159941406,26.0008034492188],[114.173011503906,26.03187034375],[114.215579863281,26.0265749335938],[114.282899199219,26.0382888007812],[114.30267703125,26.0629885078126],[114.352899199219,26.0982888007813],[114.371312285156,26.1212868476563],[114.412899199219,26.1093971992188],[114.423240996094,26.0848513007813],[114.442896757813,26.1182888007813],[114.451793242188,26.1393971992188],[114.487345,26.163843],[114.49197390625,26.13847190625]]]]}},{"type":"Feature","properties":{"name":"石城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.557345,26.373843],[116.553922148438,26.3616506171875],[116.545152617188,26.3704201484375],[116.557345,26.373843]]],[[[116.557345,26.373843],[116.548468046875,26.4057204414063],[116.510636015625,26.4113112617188],[116.49298953125,26.36819846875],[116.45322390625,26.344419171875],[116.4286340625,26.3125563789063],[116.411529570313,26.2993556953126],[116.413160429688,26.2883303046875],[116.395562773438,26.2747487617188],[116.381485625,26.2389382148437],[116.394097929688,26.1956911445313],[116.390284453125,26.1698854804688],[116.422345,26.1651491523438],[116.476534453125,26.1731569648438],[116.484815703125,26.1171266914063],[116.42170046875,26.06948753125],[116.41298953125,26.05819846875],[116.40170046875,26.0494875312501],[116.397345,26.033843],[116.375201445313,26.0293727851563],[116.357315703125,25.99401878125],[116.367345,25.973843],[116.347345,25.973843],[116.347345,25.963843],[116.337345,25.963843],[116.32326296875,25.9897585273438],[116.31142703125,25.9979274726563],[116.30326296875,26.0197585273438],[116.29142703125,26.0279274726562],[116.28326296875,26.0397585273438],[116.243765898438,26.0498952460938],[116.21326296875,26.0697585273438],[116.172960234375,26.0801003242188],[116.156392851563,26.0763893867188],[116.102686796875,26.0930373359375],[116.097345,26.113843],[116.113629179688,26.1078639960937],[116.11056765625,26.1459743476563],[116.12197390625,26.1592140937501],[116.153350859375,26.1686623359375],[116.2227746875,26.21851096875],[116.2219153125,26.2291677070312],[116.2380871875,26.2430983710938],[116.2566028125,26.2645876289063],[116.284342070313,26.2884889960938],[116.25123171875,26.3032643867187],[116.210738554688,26.3381496406251],[116.229000273438,26.3538820625],[116.24271609375,26.37847190625],[116.25197390625,26.39921409375],[116.273780546875,26.4382985664063],[116.241710234375,26.4659304023438],[116.242769804688,26.4791384101563],[116.21271609375,26.5215261054688],[116.22197390625,26.5392140937501],[116.237345,26.543843],[116.252896757813,26.5393971992188],[116.302237578125,26.5080055976563],[116.374254179688,26.5184865546875],[116.37080203125,26.5462526679688],[116.430845976563,26.5634206367188],[116.449010039063,26.6065309882812],[116.488453398438,26.5749489570313],[116.503502226563,26.5561550117188],[116.537345,26.563843],[116.541793242188,26.5582888007813],[116.59392703125,26.5165431953126],[116.59080203125,26.4914333320313],[116.635670195313,26.4786037421876],[116.622896757813,26.4482888007813],[116.603448515625,26.4327150703126],[116.601099882813,26.413843],[116.605328398438,26.3798439765626],[116.557345,26.373843]]]]}},{"type":"Feature","properties":{"name":"信丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.177345,25.1038430000001],[115.165152617188,25.1004201484375],[115.173922148438,25.0916506171876],[115.184293242188,25.1003273750001],[115.1972278125,25.0738430000001],[115.189420195313,25.0578517890625],[115.209185820313,25.0478517890625],[115.19502078125,25.018843],[115.205269804688,24.9978517890625],[115.197345,24.9938430000001],[115.171793242188,24.9982888007813],[115.15095828125,25.0105373359375],[115.131890898438,25.0081642890625],[115.122896757813,25.0193971992188],[115.100714140625,25.0371608710937],[115.061793242188,25.0482888007813],[115.0322278125,25.059653546875],[114.97111453125,25.0237282539063],[114.97302859375,25.0083278632813],[114.957345,25.003843],[114.934439726563,25.01284690625],[114.902345,25.0081032539063],[114.892310820313,25.0095876289063],[114.857345,25.003843],[114.863424101563,25.0204006171875],[114.8607434375,25.0537868476563],[114.802686796875,25.0712673164063],[114.727345,25.133843],[114.72326296875,25.1597585273437],[114.68052859375,25.175747296875],[114.683468046875,25.1888430000001],[114.681109648438,25.1993483710938],[114.707428007813,25.2333083320313],[114.733189726563,25.2275319648438],[114.74142703125,25.2741188789063],[114.72142703125,25.2879274726563],[114.698375273438,25.3213161445313],[114.674459257813,25.3159548164063],[114.650230742188,25.3317311835938],[114.628995390625,25.3269704414063],[114.602271757813,25.3656716132813],[114.592345,25.3922048164063],[114.571529570313,25.3875392890625],[114.567345,25.403843],[114.57947390625,25.4268727851563],[114.603013945313,25.416294171875],[114.623892851563,25.4272927070313],[114.63138796875,25.44151878125],[114.643316679688,25.4361598945313],[114.660797148438,25.4703932929688],[114.697345,25.473843],[114.722584257813,25.4800417304688],[114.752847929688,25.4673317695313],[114.76806765625,25.4893776679688],[114.84326296875,25.4979274726563],[114.85517703125,25.5151906562501],[114.847345,25.533843],[114.872550078125,25.5394533515626],[114.91607546875,25.5145241523438],[114.94263796875,25.5297365546875],[115.012896757813,25.4992653632813],[115.011104765625,25.4816774726563],[115.057725859375,25.5083815742188],[115.072808867188,25.4893044257813],[115.08611453125,25.4293044257813],[115.13537234375,25.4494264960938],[115.159644804688,25.4786476875],[115.192808867188,25.4883815742187],[115.206422148438,25.5047682929688],[115.217345,25.513843],[115.22142703125,25.5079274726563],[115.25013796875,25.4881056953125],[115.26142703125,25.4579274726562],[115.297003203125,25.4446169257813],[115.291163359375,25.4185646796876],[115.31142703125,25.3703102851563],[115.30326296875,25.3379274726563],[115.29142703125,25.3197585273438],[115.276500273438,25.261587140625],[115.249176054688,25.2220119453125],[115.23142703125,25.2097585273438],[115.21781375,25.17337425],[115.18142703125,25.1597585273437],[115.177345,25.1038430000001]]]]}},{"type":"Feature","properties":{"name":"兴国县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.757345,26.613843],[115.760767851563,26.6260353828125],[115.769537382813,26.6172658515626],[115.757345,26.613843]]],[[[115.757345,26.613843],[115.76412234375,26.5739333320313],[115.802857695313,26.5796584296875],[115.811832304688,26.5680275703125],[115.837086210938,26.5717604804688],[115.853160429688,26.5593556953126],[115.850128203125,26.538843],[115.853140898438,26.5184523750001],[115.84170046875,26.4994875312501],[115.83298953125,26.47819846875],[115.787867460938,26.4433718085938],[115.81771609375,26.4031130195313],[115.79298953125,26.38819846875],[115.77170046875,26.37948753125],[115.76298953125,26.36819846875],[115.742511015625,26.3523928046875],[115.737345,26.333843],[115.704722929688,26.3417018867188],[115.683170195313,26.3280178046875],[115.59580203125,26.3056423164063],[115.5701575,26.2698610664063],[115.531519804688,26.2596681953126],[115.520797148438,26.2061843085938],[115.501724882813,26.2099538398438],[115.480260039063,26.180005109375],[115.493170195313,26.1596681953125],[115.510694609375,26.1142287421876],[115.482056914063,26.119887921875],[115.449386015625,26.1064626289063],[115.396685820313,26.1168776679688],[115.383170195313,26.0980178046875],[115.371236601563,26.0894631171876],[115.377349882813,26.0585060859376],[115.337345,26.0538430000001],[115.331182890625,26.0913674140625],[115.35298953125,26.1081984687501],[115.36170046875,26.1259206367188],[115.33170046875,26.13819846875],[115.31298953125,26.14948753125],[115.288365507813,26.1595632148438],[115.27298953125,26.17948753125],[115.261529570313,26.1883303046875],[115.263140898438,26.199233625],[115.243814726563,26.2312770820312],[115.222345,26.2281032539063],[115.212345,26.2295827460938],[115.182345,26.2251491523437],[115.17295046875,26.2696706367188],[115.157345,26.2673659492188],[115.127345,26.2717995429688],[115.10205203125,26.26806175],[115.087345,26.273843],[115.072393828125,26.284165265625],[115.06326296875,26.3197585273438],[115.025806914063,26.3646706367188],[115.040206328125,26.4289138007812],[115.05326296875,26.4379274726563],[115.057345,26.453843],[115.069176054688,26.4620119453125],[115.095426054688,26.5000270820313],[115.168800078125,26.5274831367188],[115.212345,26.5177223945313],[115.225308867188,26.5206276679688],[115.2179309375,26.5535353828125],[115.25326296875,26.5779274726563],[115.26142703125,26.5997585273438],[115.29326296875,26.6379274726562],[115.30142703125,26.6597585273438],[115.32326296875,26.6679274726563],[115.327345,26.6738430000001],[115.34326296875,26.6697585273438],[115.365064726563,26.6555593085937],[115.41326296875,26.6679274726563],[115.425933867188,26.68628440625],[115.442789335938,26.690063703125],[115.4621496875,26.6774587226563],[115.477345,26.683843],[115.522276640625,26.6912233710938],[115.538487578125,26.6516237617188],[115.617345,26.66327659375],[115.667174101563,26.6559133125],[115.687345,26.6638430000001],[115.712301054688,26.6577126289063],[115.726148710938,26.6608180976563],[115.716656523438,26.6184694648438],[115.757345,26.613843]]]]}},{"type":"Feature","properties":{"name":"寻乌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.827345,25.173843],[115.830767851563,25.1616506171876],[115.839537382813,25.1704201484375],[115.827345,25.1838430000001],[115.847345,25.1838430000001],[115.852882109375,25.1691091132813],[115.851793242188,25.1584206367188],[115.874849882813,25.1484206367188],[115.87107546875,25.1113893867188],[115.881881132813,25.0983815742188],[115.906334257813,25.078071515625],[115.923233671875,25.0485646796875],[115.889488554688,25.0339308906251],[115.864288359375,25.0129958320313],[115.921651640625,24.9653469062501],[115.862808867188,24.971343],[115.874713164063,24.9543337226563],[115.887345,24.943843],[115.876886015625,24.9166335273438],[115.901793242188,24.8742653632813],[115.86185671875,24.8681301093751],[115.845108671875,24.907876203125],[115.818140898438,24.9112306953126],[115.781676054688,24.8492018867188],[115.783013945313,24.8384841132813],[115.771793242188,24.8193971992188],[115.762896757813,24.7682888007813],[115.749713164063,24.7458596015626],[115.776236601563,24.7127370429688],[115.801793242188,24.6922731757813],[115.792086210938,24.6770095039063],[115.76318484375,24.6806032539063],[115.761666289063,24.6683888984375],[115.779693632813,24.6539528632813],[115.811793242188,24.6082888007813],[115.840968046875,24.584926984375],[115.843682890625,24.5630788398438],[115.780025664063,24.5709963203125],[115.737345,24.543843],[115.68345828125,24.5505837226563],[115.67125125,24.6070070625],[115.631793242188,24.6182888007813],[115.6022278125,24.6296535468751],[115.574561796875,24.6133888984376],[115.557345,24.6438430000001],[115.5505871875,24.6836208320313],[115.5260559375,24.7025563789063],[115.51298953125,24.7194875312501],[115.50170046875,24.72819846875],[115.469000273438,24.7705641914063],[115.449205351563,24.7676393867187],[115.407345,24.7928908515626],[115.38298953125,24.7781984687501],[115.367345,24.773843],[115.36298953125,24.77948753125],[115.343463164063,24.7945583320313],[115.391226835938,24.8231276679688],[115.367086210938,24.8417604804687],[115.341773710938,24.8380202460938],[115.327345,24.8738430000001],[115.34170046875,24.87948753125],[115.41298953125,24.8881984687501],[115.43170046875,24.8994875312501],[115.453170195313,24.9082717109375],[115.450738554688,24.924702375],[115.48298953125,24.9681984687501],[115.50041140625,25.0107741523438],[115.481832304688,25.0080275703125],[115.468878203125,25.024809796875],[115.494732695313,25.067671125],[115.490167265625,25.0985695625001],[115.529244414063,25.1219411445313],[115.553917265625,25.1631935859375],[115.548878203125,25.1973073554688],[115.557345,25.203843],[115.567203398438,25.1905886054688],[115.616705351563,25.18206565625],[115.631612578125,25.2195778632813],[115.643077421875,25.2281081367188],[115.657955351563,25.2481081367188],[115.674879179688,25.2385622382813],[115.663316679688,25.1714040351563],[115.713648710938,25.1514040351563],[115.709888945313,25.1295778632813],[115.737886992188,25.1476857734376],[115.762569609375,25.1808644843751],[115.771734648438,25.1577907539063],[115.821612578125,25.1695778632813],[115.827345,25.173843]]]]}},{"type":"Feature","properties":{"name":"于都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.747345,26.033843],[115.769429960938,26.0431179023438],[115.814215117188,26.0121950507813],[115.810103789063,25.993843],[115.816007109375,25.9675099921875],[115.763551054688,25.9557497382813],[115.73060671875,25.9784963203125],[115.74326296875,25.9979274726563],[115.747345,26.033843]]],[[[115.747345,26.033843],[115.715513945313,26.0256740546876],[115.698492460938,26.0010231757813],[115.707496367188,25.96085471875],[115.690504179688,25.9491213203125],[115.71326296875,25.9197585273438],[115.717345,25.9038430000001],[115.68170046875,25.8894875312501],[115.677345,25.883843],[115.665152617188,25.8804201484375],[115.673922148438,25.8716506171875],[115.677345,25.883843],[115.69021609375,25.8746169257813],[115.693331328125,25.858843],[115.688629179688,25.8350490546876],[115.704595976563,25.7962038398438],[115.654547148438,25.786313703125],[115.641300078125,25.8185549140625],[115.643917265625,25.831801984375],[115.631636992188,25.8636428046876],[115.602345,25.8578542304688],[115.590235625,25.86024925],[115.5507434375,25.8319435859375],[115.556295195313,25.803843],[115.549503203125,25.7694631171875],[115.579561796875,25.7479177070313],[115.583331328125,25.728843],[115.581358671875,25.7188430000001],[115.585308867188,25.698843],[115.581358671875,25.6788430000001],[115.583331328125,25.668843],[115.580367460938,25.653843],[115.588814726563,25.611108625],[115.562345,25.6058791328126],[115.503585234375,25.6174904609375],[115.49224734375,25.5745241523438],[115.477345,25.5638430000001],[115.441846953125,25.5696755195313],[115.43298953125,25.55819846875],[115.416143828125,25.5494875312501],[115.38490359375,25.5899611640625],[115.371983671875,25.588051984375],[115.36298953125,25.5927614570313],[115.383160429688,25.6083303046875],[115.380875273438,25.6237966132813],[115.342345,25.6181032539063],[115.315889921875,25.6220143867188],[115.29298953125,25.6081984687501],[115.27170046875,25.59948753125],[115.26298953125,25.58819846875],[115.247345,25.583843],[115.24326296875,25.5897585273438],[115.234483671875,25.6289138007812],[115.204722929688,25.6494606757813],[115.2305871875,25.68917503125],[115.256827421875,25.7072951484375],[115.240103789063,25.7188430000001],[115.25857546875,25.73159690625],[115.236119414063,25.766079328125],[115.245557890625,25.8081716132813],[115.23142703125,25.8179274726563],[115.22326296875,25.8297585273438],[115.21142703125,25.8379274726562],[115.207345,25.8638430000001],[115.219537382813,25.8672658515625],[115.210767851563,25.8760353828125],[115.207345,25.8638430000001],[115.177222929688,25.872231671875],[115.19302859375,25.9684474921876],[115.208546171875,25.98819846875],[115.241954375,25.9680471015625],[115.287623320313,25.9747951484375],[115.33170046875,26.0027614570313],[115.293678007813,26.0321096015625],[115.33298953125,26.04819846875],[115.337345,26.0538430000001],[115.377349882813,26.0585060859376],[115.371236601563,26.0894631171876],[115.383170195313,26.0980178046875],[115.396685820313,26.1168776679688],[115.449386015625,26.1064626289063],[115.482056914063,26.119887921875],[115.510694609375,26.1142287421876],[115.493170195313,26.1596681953125],[115.480260039063,26.180005109375],[115.501724882813,26.2099538398438],[115.520797148438,26.2061843085938],[115.531519804688,26.2596681953126],[115.5701575,26.2698610664063],[115.59580203125,26.3056423164063],[115.683170195313,26.3280178046875],[115.704722929688,26.3417018867188],[115.737345,26.333843],[115.723985625,26.306968],[115.742198515625,26.2963307929687],[115.762447539063,26.3062184882813],[115.800704375,26.287202375],[115.817345,26.2838430000001],[115.826392851563,26.2603102851563],[115.812896757813,26.2282888007812],[115.781793242188,26.2193971992187],[115.772896757813,26.2082888007813],[115.750308867188,26.1902028632813],[115.753023710938,26.1683888984375],[115.740640898438,26.1584743476562],[115.708961210938,26.1045803046876],[115.755030546875,26.0676857734376],[115.747345,26.033843]]]]}},{"type":"Feature","properties":{"name":"章贡区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.807345,25.893843],[114.819537382813,25.8972658515625],[114.810767851563,25.9060353828125],[114.800704375,25.8972023750001],[114.784810820313,25.9286232734376],[114.797345,25.953843],[114.806334257813,25.9646633125],[114.857345,25.9698610664063],[114.877345,25.9678249335938],[114.901954375,25.9703322578125],[114.919644804688,25.9490383125],[114.952808867188,25.9393044257813],[114.961881132813,25.8883815742188],[114.982808867188,25.8793044257813],[115.002056914063,25.8480983710938],[115.055860625,25.8683156562501],[115.051324492188,25.823843],[115.054522734375,25.7924831367188],[115.042808867188,25.7783815742188],[115.031881132813,25.7693044257813],[115.022808867188,25.7583815742188],[115.004288359375,25.7429958320312],[115.035401640625,25.7171486640626],[115.001881132813,25.6893044257813],[114.989283476563,25.6741408515625],[114.962667265625,25.6893849921875],[114.95201296875,25.6882985664063],[114.927345,25.703843],[114.912838164063,25.7154592109375],[114.892896757813,25.7693971992188],[114.8529309375,25.81937034375],[114.812623320313,25.8516481757813],[114.807345,25.893843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安福县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.531881132813,27.5683815742188],[114.608267851563,27.5547682929688],[114.629332304688,27.5294118476563],[114.677198515625,27.5967897773438],[114.71834109375,27.6009841132813],[114.737345,27.593843],[114.743013945313,27.5484841132813],[114.722896757813,27.5142653632813],[114.731793242188,27.4882888007813],[114.744781523438,27.4778884101563],[114.778956328125,27.4311061835938],[114.783590117188,27.3938430000001],[114.781724882813,27.378843],[114.784210234375,27.3588430000001],[114.781724882813,27.338843],[114.783248320313,27.3265773750001],[114.744327421875,27.2954103828125],[114.731617460938,27.2652516914063],[114.670054960938,27.2160182929688],[114.616265898438,27.2227077460938],[114.628785429688,27.1220827460938],[114.5922278125,27.1080324531251],[114.572144804688,27.1198390937501],[114.554874296875,27.098266828125],[114.502896757813,27.0782888007813],[114.447345,27.073843],[114.418248320313,27.0787868476562],[114.38298953125,27.12948753125],[114.343143339844,27.1602419257812],[114.322345,27.211059796875],[114.301954375,27.2080471015625],[114.282110625,27.2200173164063],[114.267240019531,27.2007521796876],[114.202120390625,27.2197389960938],[114.18298953125,27.20819846875],[114.144842558594,27.1925881171876],[114.127345,27.223843],[114.131790800781,27.2293971992188],[114.153619414063,27.2468752265625],[114.132869902344,27.3195314765626],[114.11373171875,27.3171486640626],[114.092899199219,27.3293971992188],[114.071790800781,27.3382888007813],[114.062899199219,27.3593971992188],[114.051790800781,27.3682888007813],[114.042899199219,27.3793971992188],[114.017415800781,27.3901345039063],[114.027345,27.4338430000001],[114.166610136719,27.4396584296876],[114.192535429688,27.4886525703125],[114.202154570313,27.5190334296875],[114.212535429688,27.5286525703125],[114.222154570313,27.5490334296875],[114.267345,27.573843],[114.294700957031,27.5853322578125],[114.321429472656,27.5679274726563],[114.343260527344,27.5597585273437],[114.362691679688,27.54710471875],[114.371673613281,27.5601149726563],[114.402183867188,27.5532741523438],[114.442066679688,27.5700270820313],[114.461138945313,27.5657497382812],[114.49326296875,27.5879274726563],[114.509439726563,27.61136253125],[114.527345,27.603843],[114.531881132813,27.5683815742188]]]]}},{"type":"Feature","properties":{"name":"吉安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.797345,27.6238430000001],[114.797345,27.613843],[114.807345,27.613843],[114.81326296875,27.6097585273438],[114.8241028125,27.5940529609376],[114.852388945313,27.5877126289063],[114.877345,27.593843],[114.883985625,27.580483625],[114.887345,27.5438430000001],[114.87166140625,27.5393581367188],[114.872965117188,27.528843],[114.871099882813,27.5138430000001],[114.873590117188,27.493843],[114.869298125,27.459341046875],[114.919547148438,27.4381667304688],[114.937994414063,27.3569606757813],[114.914659453125,27.3172658515625],[114.97025515625,27.3241799140626],[114.951666289063,27.3092971015626],[114.952965117188,27.298843],[114.950636015625,27.2801052070313],[114.967345,27.253843],[114.931793242188,27.2293971992188],[114.91732546875,27.2113283515626],[114.892345,27.2082204414063],[114.882345,27.2094655585938],[114.867345,27.2076003242188],[114.85189578125,27.2095217109375],[114.792896757813,27.1622731757813],[114.804791289063,27.1301955390625],[114.8341028125,27.080337140625],[114.812896757813,27.0442653632813],[114.850006132813,27.0365895820312],[114.885318632813,27.0573464179688],[114.953839140625,27.0658693671875],[114.950689726563,27.0405226875],[114.987345,27.063843],[115.005030546875,27.0409279609375],[115.051129179688,27.0220607734375],[115.054381132813,27.0000637031251],[115.027345,26.963843],[115.011793242188,26.9593971992188],[114.992896757813,26.9482888007813],[114.931656523438,26.9393776679688],[114.932965117188,26.928843],[114.93150515625,26.9170827460938],[114.907345,26.9200856757813],[114.892345,26.9182204414063],[114.881983671875,26.9195095039063],[114.86021609375,26.9067116523438],[114.864039335938,26.93745628125],[114.84845828125,26.9639577460938],[114.790738554688,26.9567775703126],[114.792965117188,26.9388430000001],[114.79150515625,26.9270827460938],[114.767345,26.9300856757813],[114.71802859375,26.9239528632813],[114.682896757813,26.8982888007813],[114.651793242188,26.8893971992188],[114.614405546875,26.823266828125],[114.505050078125,26.8544924140625],[114.477345,26.843843],[114.44170046875,26.85819846875],[114.419266386719,26.913012921875],[114.423822050781,26.943843],[114.421522246094,26.9594142890626],[114.44298953125,26.96819846875],[114.473902617188,27.0082521796876],[114.45170046875,27.03819846875],[114.447345,27.073843],[114.502896757813,27.0782888007813],[114.554874296875,27.098266828125],[114.572144804688,27.1198390937501],[114.5922278125,27.1080324531251],[114.628785429688,27.1220827460938],[114.616265898438,27.2227077460938],[114.670054960938,27.2160182929688],[114.731617460938,27.2652516914063],[114.744327421875,27.2954103828125],[114.783248320313,27.3265773750001],[114.781724882813,27.338843],[114.784210234375,27.3588430000001],[114.781724882813,27.378843],[114.783590117188,27.3938430000001],[114.778956328125,27.4311061835938],[114.744781523438,27.4778884101563],[114.731793242188,27.4882888007813],[114.722896757813,27.5142653632813],[114.743013945313,27.5484841132813],[114.737345,27.593843],[114.74638796875,27.6069387031251],[114.7821496875,27.6302272773438],[114.797345,27.6238430000001]]]]}},{"type":"Feature","properties":{"name":"吉水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.0236340625,27.4851296210938],[115.051954375,27.4680471015625],[115.080806914063,27.4723097968751],[115.098424101563,27.44948753125],[115.143150664063,27.4983791328125],[115.138746367188,27.52819846875],[115.16298953125,27.51948753125],[115.196143828125,27.4994875312501],[115.22298953125,27.50819846875],[115.243922148438,27.5208254218751],[115.262345,27.5181032539063],[115.272935820313,27.5196706367188],[115.28670046875,27.4702468085938],[115.31298953125,27.4594875312501],[115.347345,27.413843],[115.332896757813,27.3882888007813],[115.276339140625,27.3721193671875],[115.282965117188,27.3188430000001],[115.281666289063,27.3083888984375],[115.298453398438,27.2949489570313],[115.319947539063,27.2197682929688],[115.342159453125,27.2019802070313],[115.354019804688,27.1605007148438],[115.372345,27.1582204414062],[115.401890898438,27.1618971992188],[115.462183867188,27.1482009101563],[115.482120390625,27.1506813789063],[115.501793242188,27.1182888007813],[115.518453398438,27.1049489570313],[115.531890898438,27.0881642890626],[115.547100859375,27.0900563789063],[115.603697539063,27.044731671875],[115.599625273438,27.0119753242187],[115.621793242188,26.9742653632813],[115.604483671875,26.9431716132813],[115.563863554688,26.9260549140625],[115.561666289063,26.9083888984376],[115.573917265625,26.8985817695313],[115.541793242188,26.8893971992188],[115.507769804688,26.8693971992188],[115.484600859375,26.8822927070313],[115.455777617188,26.9182888007813],[115.451685820313,26.9091555000001],[115.454107695313,26.88968284375],[115.437345,26.8876003242188],[115.381007109375,26.8946071601563],[115.382965117188,26.8788405585937],[115.377345,26.833843],[115.362545195313,26.8391530585938],[115.342345,26.8379494453125],[115.327193632813,26.8709645820313],[115.29228640625,26.8584401679688],[115.263233671875,26.8742287421876],[115.242628203125,26.9191237617188],[115.212061796875,26.9385622382813],[115.202628203125,26.9506911445313],[115.2226575,26.96858909375],[115.221749296875,26.983843],[115.222940703125,27.003843],[115.2220325,27.0190676093751],[115.235494414063,27.043843],[115.20935671875,27.0919435859376],[115.152120390625,27.0885305000001],[115.116168242188,27.1080666328125],[115.102628203125,27.0785622382813],[115.08146609375,27.0691237617188],[115.083194609375,27.09808128125],[115.072061796875,27.1185622382813],[115.067345,27.1638430000001],[115.07170046875,27.16948753125],[115.111226835938,27.1931276679688],[115.08869265625,27.2105202460938],[115.058761015625,27.2060964179688],[115.023482695313,27.251801984375],[115.0125403125,27.2910890937501],[114.983746367188,27.2868337226562],[114.972647734375,27.2469728828125],[114.967345,27.253843],[114.950636015625,27.2801052070313],[114.952965117188,27.298843],[114.951666289063,27.3092971015626],[114.97025515625,27.3241799140626],[114.914659453125,27.3172658515625],[114.937994414063,27.3569606757813],[114.919547148438,27.4381667304688],[114.869298125,27.459341046875],[114.873590117188,27.493843],[114.871099882813,27.5138430000001],[114.872965117188,27.528843],[114.87166140625,27.5393581367188],[114.887345,27.5438430000001],[114.90298953125,27.54819846875],[114.940299101563,27.5628664375],[114.974561796875,27.5488430000001],[114.971529570313,27.5283303046875],[114.98298953125,27.51948753125],[114.99170046875,27.49819846875],[115.0236340625,27.4851296210938]]]]}},{"type":"Feature","properties":{"name":"吉州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.023482695313,27.251801984375],[115.058761015625,27.2060964179688],[115.08869265625,27.2105202460938],[115.111226835938,27.1931276679688],[115.07170046875,27.16948753125],[115.067345,27.1638430000001],[115.03170046875,27.1494875312501],[114.992496367188,27.1178005195313],[114.987345,27.063843],[114.950689726563,27.0405226875],[114.953839140625,27.0658693671875],[114.885318632813,27.0573464179688],[114.850006132813,27.0365895820312],[114.812896757813,27.0442653632813],[114.8341028125,27.080337140625],[114.804791289063,27.1301955390625],[114.792896757813,27.1622731757813],[114.85189578125,27.2095217109375],[114.867345,27.2076003242188],[114.882345,27.2094655585938],[114.892345,27.2082204414063],[114.91732546875,27.2113283515626],[114.931793242188,27.2293971992188],[114.967345,27.253843],[114.972647734375,27.2469728828125],[114.983746367188,27.2868337226562],[115.0125403125,27.2910890937501],[115.023482695313,27.251801984375]]]]}},{"type":"Feature","properties":{"name":"井冈山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.04189578125,26.8101906562501],[114.072056914063,26.797798078125],[114.084456816406,26.80024925],[114.113170195313,26.7796681953125],[114.123785429688,26.764858625],[114.163170195313,26.7496681953125],[114.176571074219,26.7309719062501],[114.19947390625,26.7264455390625],[114.213170195313,26.7480178046875],[114.227345,26.7847707343751],[114.268577910156,26.7766237617188],[114.311519804688,26.7896681953126],[114.337345,26.793843],[114.348245878906,26.7863161445313],[114.333260527344,26.7279274726563],[114.315513945313,26.7156740546876],[114.307345,26.683843],[114.278726835938,26.6943532539062],[114.259906035156,26.652173078125],[114.282913847656,26.6109377265625],[114.281422148438,26.5923561835938],[114.25197390625,26.57921409375],[114.21271609375,26.5538088203125],[114.306077910156,26.4999806953126],[114.28197390625,26.47921409375],[114.25728640625,26.4505617500001],[114.300990019531,26.4310622382813],[114.31197390625,26.419321515625],[114.22810671875,26.36679221875],[114.168875761719,26.38300315625],[114.15271609375,26.4192140937501],[114.137552519531,26.4322805],[114.087345,26.413843],[114.081634550781,26.4287013984375],[114.09312625,26.4792995429688],[114.07166140625,26.488344953125],[114.074364042969,26.5100710273438],[114.100582304688,26.5782790351563],[114.018216582031,26.5902663398438],[114.002899199219,26.6093971992188],[113.972928496094,26.6220241523438],[113.917225371094,26.6150954414062],[113.883116484375,26.6351467109376],[113.872742949219,26.65976096875],[113.857345,26.653843],[113.848089628906,26.7645876289063],[113.837345,26.793843],[113.861903105469,26.8099196601563],[113.892345,26.8039040351563],[113.922965117188,26.8099538398438],[113.938319121094,26.7885305],[113.99685671875,26.7769631171875],[114.033170195313,26.7980178046875],[114.04189578125,26.8101906562501]]]]}},{"type":"Feature","properties":{"name":"青原区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.083194609375,27.09808128125],[115.08146609375,27.0691237617188],[115.102628203125,27.0785622382813],[115.116168242188,27.1080666328125],[115.152120390625,27.0885305000001],[115.20935671875,27.0919435859376],[115.235494414063,27.043843],[115.2220325,27.0190676093751],[115.222940703125,27.003843],[115.221749296875,26.983843],[115.2226575,26.96858909375],[115.202628203125,26.9506911445313],[115.212061796875,26.9385622382813],[115.242628203125,26.9191237617188],[115.263233671875,26.8742287421876],[115.29228640625,26.8584401679688],[115.327193632813,26.8709645820313],[115.342345,26.8379494453125],[115.362545195313,26.8391530585938],[115.377345,26.833843],[115.387891875,26.7959694648438],[115.421832304688,26.8009841132813],[115.44322390625,26.7732668281251],[115.500064726563,26.7392751289063],[115.50314578125,26.7184108710938],[115.477345,26.683843],[115.4621496875,26.6774587226563],[115.442789335938,26.690063703125],[115.425933867188,26.68628440625],[115.41326296875,26.6679274726563],[115.365064726563,26.6555593085937],[115.34326296875,26.6697585273438],[115.327345,26.6738430000001],[115.319176054688,26.7056740546875],[115.30142703125,26.7179274726563],[115.288970976563,26.7512209296875],[115.216475859375,26.79062034375],[115.192940703125,26.8247096992188],[115.14142703125,26.8379274726563],[115.12326296875,26.8497585273438],[115.10142703125,26.8579274726563],[115.080943632813,26.8875954414063],[115.087056914063,26.9148610664063],[115.0544934375,26.9568752265626],[115.027345,26.963843],[115.054381132813,27.0000637031251],[115.051129179688,27.0220607734375],[115.005030546875,27.0409279609375],[114.987345,27.063843],[114.992496367188,27.1178005195313],[115.03170046875,27.1494875312501],[115.067345,27.1638430000001],[115.072061796875,27.1185622382813],[115.083194609375,27.09808128125]]]]}},{"type":"Feature","properties":{"name":"遂川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.027345,25.9838430000001],[114.027345,25.973843],[114.017345,25.973843],[114.017345,25.9838430000001],[114.027345,25.9838430000001]]],[[[114.027345,25.9838430000001],[114.022806425781,25.9893044257813],[114.003761015625,26.0051271796875],[114.022806425781,26.0383815742188],[114.041497832031,26.0814772773437],[114.091529570313,26.0763771796876],[114.121883574219,26.0817678046875],[114.101151152344,26.0989870429688],[114.139869414063,26.1157814765625],[114.188016386719,26.1299098945313],[114.223719511719,26.1503566718751],[114.221326933594,26.1738430000001],[114.223597441406,26.196137921875],[114.171807890625,26.2113356757813],[114.133538847656,26.2074367500001],[114.067345,26.1695241523438],[114.032667265625,26.1893849921875],[114.013538847656,26.18743675],[113.961156035156,26.1574343085938],[113.940882597656,26.1595021796876],[113.942894316406,26.179233625],[113.937345,26.183843],[113.944969511719,26.1962184882813],[113.967562285156,26.2101393867188],[113.9823840625,26.2536330390625],[114.02420046875,26.2678835273438],[114.017576933594,26.2891481757812],[114.037113066406,26.3485378242187],[114.02666140625,26.3820900703126],[114.061158476563,26.4100295234375],[114.087345,26.413843],[114.137552519531,26.4322805],[114.15271609375,26.4192140937501],[114.168875761719,26.38300315625],[114.22810671875,26.36679221875],[114.31197390625,26.419321515625],[114.300990019531,26.4310622382813],[114.25728640625,26.4505617500001],[114.28197390625,26.47921409375],[114.306077910156,26.4999806953126],[114.21271609375,26.5538088203125],[114.25197390625,26.57921409375],[114.281422148438,26.5923561835938],[114.282913847656,26.6109377265625],[114.259906035156,26.652173078125],[114.278726835938,26.6943532539062],[114.307345,26.683843],[114.328507109375,26.675708234375],[114.351898222656,26.689458234375],[114.458370390625,26.7027028632813],[114.494527617188,26.6762917304688],[114.490582304688,26.7080031562501],[114.502799101563,26.7095217109376],[114.507345,26.7038430000001],[114.514010039063,26.6805397773438],[114.571793242188,26.6342653632813],[114.552896757813,26.5782888007813],[114.541793242188,26.5693971992188],[114.532896757813,26.5582888007813],[114.512896757813,26.5422731757813],[114.542725859375,26.495376203125],[114.572345,26.4779640937501],[114.591983671875,26.4895095039062],[114.607345,26.4876003242187],[114.626422148438,26.4899709296876],[114.651793242188,26.4582888007813],[114.667335234375,26.4458425117187],[114.6502746875,26.4168166328126],[114.701265898438,26.3868434882813],[114.767345,26.3950612617188],[114.749761992188,26.3137844062501],[114.731793242188,26.2993971992188],[114.667345,26.203843],[114.642486601563,26.1980837226563],[114.600924101563,26.2042263007812],[114.603463164063,26.2214015937501],[114.57869265625,26.2405202460937],[114.557838164063,26.2374391914063],[114.542857695313,26.2180275703125],[114.522345,26.221059796875],[114.51298953125,26.19819846875],[114.487345,26.163843],[114.451793242188,26.1393971992188],[114.442896757813,26.1182888007813],[114.423240996094,26.0848513007813],[114.412899199219,26.1093971992188],[114.371312285156,26.1212868476563],[114.352899199219,26.0982888007813],[114.30267703125,26.0629885078126],[114.282899199219,26.0382888007812],[114.215579863281,26.0265749335938],[114.173011503906,26.03187034375],[114.120159941406,26.0008034492188],[114.041790800781,25.9893971992187],[114.027345,25.9838430000001]]]]}},{"type":"Feature","properties":{"name":"泰和县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.864039335938,26.93745628125],[114.86021609375,26.9067116523438],[114.881983671875,26.9195095039063],[114.892345,26.9182204414063],[114.907345,26.9200856757813],[114.93150515625,26.9170827460938],[114.932965117188,26.928843],[114.931656523438,26.9393776679688],[114.992896757813,26.9482888007813],[115.011793242188,26.9593971992188],[115.027345,26.963843],[115.0544934375,26.9568752265626],[115.087056914063,26.9148610664063],[115.080943632813,26.8875954414063],[115.10142703125,26.8579274726563],[115.12326296875,26.8497585273438],[115.14142703125,26.8379274726563],[115.192940703125,26.8247096992188],[115.216475859375,26.79062034375],[115.288970976563,26.7512209296875],[115.30142703125,26.7179274726563],[115.319176054688,26.7056740546875],[115.327345,26.6738430000001],[115.32326296875,26.6679274726563],[115.30142703125,26.6597585273438],[115.29326296875,26.6379274726562],[115.26142703125,26.5997585273438],[115.25326296875,26.5779274726563],[115.2179309375,26.5535353828125],[115.225308867188,26.5206276679688],[115.212345,26.5177223945313],[115.168800078125,26.5274831367188],[115.095426054688,26.5000270820313],[115.069176054688,26.4620119453125],[115.057345,26.453843],[115.03170046875,26.4581984687501],[115.0091028125,26.4874782539063],[115.02677859375,26.5011232734376],[114.9762121875,26.5401540351563],[114.96205203125,26.53806175],[114.923521757813,26.553208234375],[114.901832304688,26.612661359375],[114.88170046875,26.62819846875],[114.86298953125,26.6527614570313],[114.884483671875,26.6693556953125],[114.881300078125,26.6909059882813],[114.861832304688,26.6880275703125],[114.85298953125,26.6994875312501],[114.835264921875,26.70819846875],[114.82298953125,26.6781984687501],[114.807901640625,26.653188703125],[114.760518828125,26.6914821601563],[114.763433867188,26.7112209296875],[114.742345,26.7081032539063],[114.72978640625,26.7099611640626],[114.698922148438,26.6699733710938],[114.663863554688,26.6594875312501],[114.612965117188,26.72542503125],[114.58158328125,26.73819846875],[114.542652617188,26.6877663398438],[114.507345,26.7038430000001],[114.502799101563,26.7095217109376],[114.490582304688,26.7080031562501],[114.494527617188,26.6762917304688],[114.458370390625,26.7027028632813],[114.351898222656,26.689458234375],[114.328507109375,26.675708234375],[114.307345,26.683843],[114.315513945313,26.7156740546876],[114.333260527344,26.7279274726563],[114.348245878906,26.7863161445313],[114.337345,26.793843],[114.341519804688,26.7996681953126],[114.363170195313,26.8080178046876],[114.371519804688,26.8196681953125],[114.393619414063,26.8355080390626],[114.471104765625,26.8201955390625],[114.477345,26.843843],[114.505050078125,26.8544924140625],[114.614405546875,26.823266828125],[114.651793242188,26.8893971992188],[114.682896757813,26.8982888007813],[114.71802859375,26.9239528632813],[114.767345,26.9300856757813],[114.79150515625,26.9270827460938],[114.792965117188,26.9388430000001],[114.790738554688,26.9567775703126],[114.84845828125,26.9639577460938],[114.864039335938,26.93745628125]]]]}},{"type":"Feature","properties":{"name":"万安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.612965117188,26.72542503125],[114.663863554688,26.6594875312501],[114.698922148438,26.6699733710938],[114.72978640625,26.7099611640626],[114.742345,26.7081032539063],[114.763433867188,26.7112209296875],[114.760518828125,26.6914821601563],[114.807901640625,26.653188703125],[114.82298953125,26.6781984687501],[114.835264921875,26.70819846875],[114.85298953125,26.6994875312501],[114.861832304688,26.6880275703125],[114.881300078125,26.6909059882813],[114.884483671875,26.6693556953125],[114.86298953125,26.6527614570313],[114.88170046875,26.62819846875],[114.901832304688,26.612661359375],[114.923521757813,26.553208234375],[114.96205203125,26.53806175],[114.9762121875,26.5401540351563],[115.02677859375,26.5011232734376],[115.0091028125,26.4874782539063],[115.03170046875,26.4581984687501],[115.057345,26.453843],[115.05326296875,26.4379274726563],[115.040206328125,26.4289138007812],[115.025806914063,26.3646706367188],[115.06326296875,26.3197585273438],[115.072393828125,26.284165265625],[115.087345,26.273843],[115.072896757813,26.2482888007813],[115.037310820313,26.1995705390625],[115.072896757813,26.1893971992188],[115.081793242188,26.1782888007813],[115.09963015625,26.1640041328125],[115.067345,26.145024640625],[115.042896757813,26.1593971992188],[115.018785429688,26.169555890625],[114.993961210938,26.2005568671876],[114.906954375,26.2113796210938],[114.870181914063,26.1972463203125],[114.844508085938,26.2004396796875],[114.807735625,26.1863063789063],[114.777345,26.1900856757813],[114.752345,26.1869777656251],[114.730079375,26.1897463203125],[114.712896757813,26.1682888007813],[114.707345,26.163843],[114.701051054688,26.1740602851562],[114.660235625,26.1879689765625],[114.667345,26.203843],[114.731793242188,26.2993971992188],[114.749761992188,26.3137844062501],[114.767345,26.3950612617188],[114.701265898438,26.3868434882813],[114.6502746875,26.4168166328126],[114.667335234375,26.4458425117187],[114.651793242188,26.4582888007813],[114.626422148438,26.4899709296876],[114.607345,26.4876003242187],[114.591983671875,26.4895095039062],[114.572345,26.4779640937501],[114.542725859375,26.495376203125],[114.512896757813,26.5422731757813],[114.532896757813,26.5582888007813],[114.541793242188,26.5693971992188],[114.552896757813,26.5782888007813],[114.571793242188,26.6342653632813],[114.514010039063,26.6805397773438],[114.507345,26.7038430000001],[114.542652617188,26.6877663398438],[114.58158328125,26.73819846875],[114.612965117188,26.72542503125]]]]}},{"type":"Feature","properties":{"name":"峡江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.284761992188,27.7289919257813],[115.335299101563,27.6899831367188],[115.31375125,27.6733498359376],[115.308834257813,27.6401003242188],[115.347345,27.63440940625],[115.3827746875,27.6396462226563],[115.41170046875,27.61819846875],[115.43298953125,27.6094875312501],[115.44170046875,27.5981984687501],[115.468311796875,27.5873097968751],[115.496768828125,27.5397243476563],[115.52298953125,27.51948753125],[115.527345,27.5038430000001],[115.521246367188,27.484575421875],[115.444517851563,27.4602834296875],[115.422535429688,27.4486525703125],[115.347345,27.413843],[115.31298953125,27.4594875312501],[115.28670046875,27.4702468085938],[115.272935820313,27.5196706367188],[115.262345,27.5181032539063],[115.243922148438,27.5208254218751],[115.22298953125,27.50819846875],[115.196143828125,27.4994875312501],[115.16298953125,27.51948753125],[115.138746367188,27.52819846875],[115.143150664063,27.4983791328125],[115.098424101563,27.44948753125],[115.080806914063,27.4723097968751],[115.051954375,27.4680471015625],[115.0236340625,27.4851296210938],[114.99170046875,27.49819846875],[114.98298953125,27.51948753125],[114.971529570313,27.5283303046875],[114.974561796875,27.5488430000001],[114.940299101563,27.5628664375],[114.90298953125,27.54819846875],[114.887345,27.5438430000001],[114.883985625,27.580483625],[114.877345,27.593843],[114.886988554688,27.6063356757813],[114.93170046875,27.63948753125],[114.963990507813,27.6527028632813],[114.960225859375,27.6781984687501],[114.98298953125,27.66948753125],[115.015924101563,27.6496193671875],[115.009429960938,27.6935866523438],[115.035264921875,27.7270583320313],[115.05869265625,27.7305202460938],[115.07298953125,27.7194875312501],[115.084810820313,27.7041701484375],[115.10298953125,27.71819846875],[115.126143828125,27.7481984687501],[115.13312625,27.7291164375],[115.130225859375,27.70948753125],[115.15298953125,27.71819846875],[115.164449492188,27.7330495429688],[115.203018828125,27.756313703125],[115.247345,27.763843],[115.25170046875,27.73819846875],[115.284761992188,27.7289919257813]]]]}},{"type":"Feature","properties":{"name":"新干县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.417345,27.953843],[115.420767851563,27.9416506171876],[115.429537382813,27.9504201484376],[115.429058867188,27.9679470039063],[115.44375125,27.9340724921875],[115.464845,27.9193044257813],[115.461793242188,27.949233625],[115.474893828125,27.9601125312501],[115.518492460938,27.9556691718751],[115.531881132813,27.9359181953125],[115.511881132813,27.9193044257813],[115.502808867188,27.9042263007813],[115.539488554688,27.873755109375],[115.572808867188,27.8593044257813],[115.601881132813,27.8383815742188],[115.635269804688,27.8193044257813],[115.647345,27.833843],[115.67857546875,27.8122805],[115.69142703125,27.7779274726563],[115.72326296875,27.7597585273438],[115.727345,27.7338430000001],[115.721807890625,27.7154518867188],[115.67271609375,27.65847190625],[115.635328398438,27.6262599921875],[115.601920195313,27.5791384101563],[115.60295046875,27.566333234375],[115.587345,27.523843],[115.58326296875,27.5179274726563],[115.527345,27.5038430000001],[115.52298953125,27.51948753125],[115.496768828125,27.5397243476563],[115.468311796875,27.5873097968751],[115.44170046875,27.5981984687501],[115.43298953125,27.6094875312501],[115.41170046875,27.61819846875],[115.3827746875,27.6396462226563],[115.347345,27.63440940625],[115.308834257813,27.6401003242188],[115.31375125,27.6733498359376],[115.335299101563,27.6899831367188],[115.284761992188,27.7289919257813],[115.25170046875,27.73819846875],[115.247345,27.763843],[115.288204375,27.7764601875],[115.362061796875,27.8591237617188],[115.382628203125,27.8685622382813],[115.387345,27.873843],[115.402843046875,27.8787502265625],[115.381685820313,27.8983522773438],[115.4026965625,27.9288845039063],[115.382862578125,27.94726096875],[115.417345,27.953843]]]]}},{"type":"Feature","properties":{"name":"永丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.652999296875,27.1884084296876],[115.672955351563,27.1472731757813],[115.70244265625,27.1189430976563],[115.712633085938,27.1083376289062],[115.8117590625,27.1103615546875],[115.822603789063,27.0880080390625],[115.84244265625,27.0689430976563],[115.863697539063,27.0034499335938],[115.89224734375,26.9887429023438],[115.927345,26.9738430000001],[115.92244265625,26.9587380195312],[115.912252226563,26.9589479804688],[115.86244265625,26.9187429023438],[115.83224734375,26.8989430976563],[115.822086210938,26.8780080390626],[115.801690703125,26.8584084296875],[115.7778528125,26.8092775703125],[115.698775664063,26.8572341132813],[115.682242460938,26.808930890625],[115.682647734375,26.7889382148438],[115.664625273438,26.7716213203125],[115.702257109375,26.7587380195313],[115.722237578125,26.759145734375],[115.723053007813,26.7190383125001],[115.702242460938,26.70894065625],[115.702447539063,26.6987526679688],[115.687345,26.6638430000001],[115.667174101563,26.6559133125],[115.617345,26.66327659375],[115.538487578125,26.6516237617188],[115.522276640625,26.6912233710938],[115.477345,26.683843],[115.50314578125,26.7184108710938],[115.500064726563,26.7392751289063],[115.44322390625,26.7732668281251],[115.421832304688,26.8009841132813],[115.387891875,26.7959694648438],[115.377345,26.833843],[115.382965117188,26.8788405585937],[115.381007109375,26.8946071601563],[115.437345,26.8876003242188],[115.454107695313,26.88968284375],[115.451685820313,26.9091555000001],[115.455777617188,26.9182888007813],[115.484600859375,26.8822927070313],[115.507769804688,26.8693971992188],[115.541793242188,26.8893971992188],[115.573917265625,26.8985817695313],[115.561666289063,26.9083888984376],[115.563863554688,26.9260549140625],[115.604483671875,26.9431716132813],[115.621793242188,26.9742653632813],[115.599625273438,27.0119753242187],[115.603697539063,27.044731671875],[115.547100859375,27.0900563789063],[115.531890898438,27.0881642890626],[115.518453398438,27.1049489570313],[115.501793242188,27.1182888007813],[115.482120390625,27.1506813789063],[115.462183867188,27.1482009101563],[115.401890898438,27.1618971992188],[115.372345,27.1582204414062],[115.354019804688,27.1605007148438],[115.342159453125,27.2019802070313],[115.319947539063,27.2197682929688],[115.298453398438,27.2949489570313],[115.281666289063,27.3083888984375],[115.282965117188,27.3188430000001],[115.276339140625,27.3721193671875],[115.332896757813,27.3882888007813],[115.347345,27.413843],[115.422535429688,27.4486525703125],[115.444517851563,27.4602834296875],[115.521246367188,27.484575421875],[115.527345,27.5038430000001],[115.58326296875,27.5179274726563],[115.587345,27.523843],[115.601138945313,27.5105886054688],[115.64224734375,27.4587429023438],[115.722154570313,27.4475881171875],[115.70224734375,27.4089430976563],[115.69244265625,27.3687429023438],[115.6724621875,27.3495436835938],[115.672242460938,27.3387599921876],[115.685699492188,27.2730446601562],[115.61845828125,27.2512233710938],[115.632428007813,27.2081740546876],[115.652999296875,27.1884084296876]]]]}},{"type":"Feature","properties":{"name":"永新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.127345,27.223843],[114.144842558594,27.1925881171876],[114.18298953125,27.20819846875],[114.202120390625,27.2197389960938],[114.267240019531,27.2007521796876],[114.282110625,27.2200173164063],[114.301954375,27.2080471015625],[114.322345,27.211059796875],[114.343143339844,27.1602419257812],[114.38298953125,27.12948753125],[114.418248320313,27.0787868476562],[114.447345,27.073843],[114.45170046875,27.03819846875],[114.473902617188,27.0082521796876],[114.44298953125,26.96819846875],[114.421522246094,26.9594142890626],[114.423822050781,26.943843],[114.419266386719,26.913012921875],[114.44170046875,26.85819846875],[114.477345,26.843843],[114.471104765625,26.8201955390625],[114.393619414063,26.8355080390626],[114.371519804688,26.8196681953125],[114.363170195313,26.8080178046876],[114.341519804688,26.7996681953126],[114.337345,26.793843],[114.311519804688,26.7896681953126],[114.268577910156,26.7766237617188],[114.227345,26.7847707343751],[114.213170195313,26.7480178046875],[114.19947390625,26.7264455390625],[114.176571074219,26.7309719062501],[114.163170195313,26.7496681953125],[114.123785429688,26.764858625],[114.113170195313,26.7796681953125],[114.084456816406,26.80024925],[114.072056914063,26.797798078125],[114.04189578125,26.8101906562501],[114.033170195313,26.7980178046875],[113.99685671875,26.7769631171875],[113.938319121094,26.7885305],[113.922965117188,26.8099538398438],[113.892345,26.8039040351563],[113.861903105469,26.8099196601563],[113.837345,26.793843],[113.831370878906,26.8090407539063],[113.864852324219,26.8541994453125],[113.88298953125,26.8681984687501],[113.898643828125,26.924419171875],[113.91298953125,26.9481984687501],[113.917345,26.963843],[113.933949003906,26.9935036445313],[113.95298953125,27.00819846875],[113.96170046875,27.02948753125],[113.976551542969,27.0409499335938],[113.993140898438,27.068452375],[113.989586210938,27.0925099921876],[114.022838164063,27.1481081367188],[114.043922148438,27.160825421875],[114.0701965625,27.1569435859375],[114.0953528125,27.2184084296875],[114.127345,27.223843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丰城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.673922148438,28.3760353828125],[115.677345,28.363843],[115.665152617188,28.3672658515626],[115.673922148438,28.3760353828125]]],[[[115.687345,28.0738430000001],[115.699537382813,28.0772658515625],[115.690767851563,28.0860353828125],[115.649888945313,28.0763869453125],[115.643990507813,28.1052614570313],[115.632315703125,28.0939870429688],[115.614801054688,28.1112990546875],[115.579888945313,28.1163869453125],[115.574801054688,28.1312990546876],[115.567345,28.133843],[115.573375273438,28.1491872382813],[115.544132109375,28.1717629218751],[115.541549101563,28.1892336250001],[115.558448515625,28.2172512031251],[115.53170046875,28.22819846875],[115.51427859375,28.2507741523438],[115.49170046875,28.26819846875],[115.475894804688,28.288676984375],[115.43298953125,28.3006252265625],[115.45170046875,28.3294875312501],[115.50298953125,28.36819846875],[115.5160559375,28.3851296210938],[115.527345,28.393843],[115.5786340625,28.4025563789063],[115.598424101563,28.4281984687501],[115.61298953125,28.41948753125],[115.62170046875,28.40819846875],[115.649386015625,28.3868288398438],[115.6161340625,28.341977765625],[115.642735625,28.3380471015625],[115.661954375,28.3496388984375],[115.67490359375,28.3477248359376],[115.695289335938,28.3741335273438],[115.72220828125,28.3578932929688],[115.75205203125,28.36962425],[115.775928984375,28.3660964179688],[115.80170046875,28.39948753125],[115.817345,28.403843],[115.848839140625,28.3812697578126],[115.867203398438,28.2896681953125],[115.887701445313,28.3003884101563],[115.902345,28.3208180976563],[115.912345,28.3068679023438],[115.922789335938,28.3214406562501],[115.953453398438,28.2994631171876],[115.950299101563,28.2834987617188],[115.982345,28.2898317695313],[116.002345,28.2858791328125],[116.0532825,28.2959450507813],[116.081519804688,28.2780178046875],[116.097345,28.2738430000001],[116.100704375,28.2572023750001],[116.107345,28.243843],[116.10125125,28.220747296875],[116.073170195313,28.1765163398438],[116.089454375,28.1404372382813],[116.144097929688,28.1294826484375],[116.127823515625,28.103843],[116.1450403125,28.0767189765626],[116.121519804688,28.0396681953125],[116.113170195313,28.0080178046875],[116.101519804688,27.9996681953125],[116.057345,27.933843],[116.041793242188,27.9293971992188],[116.012896757813,27.9082888007813],[115.961793242188,27.8993971992188],[115.90802859375,27.88718284375],[115.883702421875,27.8568093085937],[115.861807890625,27.8595314765626],[115.848175078125,27.7505226875001],[115.827345,27.7338430000001],[115.762828398438,27.7419045234376],[115.727345,27.7338430000001],[115.72326296875,27.7597585273438],[115.69142703125,27.7779274726563],[115.67857546875,27.8122805],[115.647345,27.833843],[115.652271757813,27.8811013007813],[115.680147734375,27.9324025703125],[115.62377078125,27.982778546875],[115.681304960938,28.0341872382813],[115.713043242188,28.0487526679688],[115.696783476563,28.0632814765626],[115.687345,28.0738430000001]]]]}},{"type":"Feature","properties":{"name":"奉新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.400054960938,28.8622365546875],[115.437345,28.8576003242188],[115.467906523438,28.86140159375],[115.482896757813,28.8493971992187],[115.487345,28.8438430000001],[115.478140898438,28.8107814765625],[115.45298953125,28.7781984687501],[115.43298953125,28.7627614570313],[115.4443371875,28.7307643867188],[115.462428007813,28.7280910468751],[115.528370390625,28.7407692695313],[115.550860625,28.7234108710938],[115.53298953125,28.61819846875],[115.52170046875,28.60948753125],[115.517345,28.603843],[115.493238554688,28.6133205390625],[115.422750273438,28.5680446601562],[115.410284453125,28.5698854804688],[115.414215117188,28.5965016914063],[115.370225859375,28.60819846875],[115.3731653125,28.5883034492188],[115.33377078125,28.5647414375],[115.30576296875,28.6115651679688],[115.253487578125,28.6038405585938],[115.24298953125,28.62948753125],[115.206124296875,28.6445729804688],[115.114190703125,28.6309889960937],[115.09298953125,28.61819846875],[115.07170046875,28.60948753125],[115.057125273438,28.5906008125],[115.017345,28.583843],[115.013170195313,28.5896681953126],[115.001519804688,28.5980178046876],[114.993170195313,28.6096681953125],[114.961519804688,28.6180178046875],[114.929386015625,28.6312233710938],[114.871793242188,28.6198415351563],[114.850406523438,28.6062624335938],[114.827345,28.6108180976563],[114.809244414063,28.6072414375],[114.788995390625,28.6354933906251],[114.765220976563,28.6525319648438],[114.737345,28.6938430000001],[114.749234648438,28.7081569648438],[114.792359648438,28.726860578125],[114.807345,28.7779201484376],[114.832735625,28.7473537421876],[114.855582304688,28.74968284375],[114.871881132813,28.7693044257813],[114.914527617188,28.8047292304688],[114.907345,28.823843],[114.952896757813,28.8193971992188],[115.02607546875,28.8027736640626],[115.062896757813,28.8182888007812],[115.077139921875,28.8360768867188],[115.125323515625,28.8545973945313],[115.216207304688,28.83745628125],[115.2384778125,28.8402272773438],[115.31906375,28.8284987617187],[115.334117460938,28.7927712226563],[115.380284453125,28.775024640625],[115.391793242188,28.7893971992188],[115.407550078125,28.8020143867188],[115.400054960938,28.8622365546875]]]]}},{"type":"Feature","properties":{"name":"高安市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.24298953125,28.62948753125],[115.253487578125,28.6038405585938],[115.30576296875,28.6115651679688],[115.33377078125,28.5647414375],[115.3731653125,28.5883034492188],[115.370225859375,28.60819846875],[115.414215117188,28.5965016914063],[115.410284453125,28.5698854804688],[115.422750273438,28.5680446601562],[115.493238554688,28.6133205390625],[115.517345,28.603843],[115.525426054688,28.5878688789063],[115.557345,28.583843],[115.5809778125,28.5948830390625],[115.5737121875,28.5774733710938],[115.557022734375,28.5679592109375],[115.5698840625,28.5338430000001],[115.560460234375,28.508843],[115.564561796875,28.4979592109375],[115.538795195313,28.4832643867188],[115.54611453125,28.4638430000001],[115.540460234375,28.448843],[115.550767851563,28.4214968085938],[115.5309778125,28.4102126289063],[115.527345,28.393843],[115.5160559375,28.3851296210938],[115.50298953125,28.36819846875],[115.45170046875,28.3294875312501],[115.43298953125,28.3006252265625],[115.475894804688,28.288676984375],[115.49170046875,28.26819846875],[115.51427859375,28.2507741523438],[115.53170046875,28.22819846875],[115.558448515625,28.2172512031251],[115.541549101563,28.1892336250001],[115.544132109375,28.1717629218751],[115.573375273438,28.1491872382813],[115.567345,28.133843],[115.49740359375,28.1251052070313],[115.457345,28.1300856757812],[115.423702421875,28.125903546875],[115.39834109375,28.1575734687501],[115.382545195313,28.13784690625],[115.355347929688,28.1538356757813],[115.342896757813,28.1382888007813],[115.30068484375,28.12050315625],[115.282896757813,28.0982888007813],[115.246920195313,28.0793971992188],[115.222896757813,28.1093971992188],[115.209303007813,28.1182888007813],[115.213023710938,28.0883888984376],[115.19068484375,28.0705031562501],[115.172725859375,28.0480763984376],[115.147345,28.053843],[115.15670046875,28.0766139960938],[115.106173125,28.0880178046875],[115.047345,28.0738430000001],[115.042808867188,28.0893044257813],[115.023267851563,28.1055373359375],[115.062808867188,28.1383815742188],[115.071881132813,28.1893044257813],[115.082808867188,28.1983815742188],[115.097174101563,28.2156764960938],[115.081881132813,28.2283815742188],[115.066456328125,28.2469509101563],[115.096436796875,28.2599538398438],[115.112345,28.2583327460938],[115.127345,28.2598610664063],[115.147178984375,28.2578395820313],[115.161881132813,28.2853688789063],[115.131881132813,28.2983815742188],[115.122808867188,28.3093044257813],[115.081881132813,28.3383815742188],[115.077345,28.4238430000001],[115.10170046875,28.43948753125],[115.13170046875,28.4517653632813],[115.113199492188,28.4894020820312],[115.02125125,28.5264357734376],[115.024327421875,28.5472658515625],[115.007056914063,28.5759011054688],[115.017345,28.583843],[115.057125273438,28.5906008125],[115.07170046875,28.60948753125],[115.09298953125,28.61819846875],[115.114190703125,28.6309889960937],[115.206124296875,28.6445729804688],[115.24298953125,28.62948753125]]]]}},{"type":"Feature","properties":{"name":"靖安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.382628203125,29.0791237617188],[115.412491484375,29.0684084296875],[115.417345,29.0738430000001],[115.432315703125,29.0662697578126],[115.440704375,29.037202375],[115.463985625,29.030483625],[115.467345,29.013843],[115.459185820313,28.9806203437501],[115.49326296875,28.9397585273438],[115.50142703125,28.9179274726563],[115.518253203125,28.8920900703125],[115.524503203125,28.8642116523438],[115.505250273438,28.83632346875],[115.487345,28.8438430000001],[115.482896757813,28.8493971992187],[115.467906523438,28.86140159375],[115.437345,28.8576003242188],[115.400054960938,28.8622365546875],[115.407550078125,28.8020143867188],[115.391793242188,28.7893971992188],[115.380284453125,28.775024640625],[115.334117460938,28.7927712226563],[115.31906375,28.8284987617187],[115.2384778125,28.8402272773438],[115.216207304688,28.83745628125],[115.125323515625,28.8545973945313],[115.077139921875,28.8360768867188],[115.062896757813,28.8182888007812],[115.02607546875,28.8027736640626],[114.952896757813,28.8193971992188],[114.907345,28.823843],[114.900303984375,28.8281813789063],[114.913990507813,28.8683425117188],[114.937345,28.8738430000001],[114.95271609375,28.8875783515625],[114.950421171875,28.9261037421875],[114.963194609375,28.94960471875],[114.9620325,28.969067609375],[114.982603789063,29.0069240546875],[115.032628203125,29.0185622382812],[115.14656375,29.0804763007812],[115.305553007813,29.1052516914063],[115.352061796875,29.0885622382813],[115.382628203125,29.0791237617188]]]]}},{"type":"Feature","properties":{"name":"上高县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.161881132813,28.2853688789063],[115.147178984375,28.2578395820313],[115.127345,28.2598610664063],[115.112345,28.2583327460938],[115.096436796875,28.2599538398438],[115.066456328125,28.2469509101563],[115.081881132813,28.2283815742188],[115.097174101563,28.2156764960938],[115.082808867188,28.1983815742188],[115.071881132813,28.1893044257813],[115.062808867188,28.1383815742188],[115.023267851563,28.1055373359375],[115.042808867188,28.0893044257813],[115.047345,28.0738430000001],[115.017613554688,28.0811452460937],[114.993013945313,28.0756301093751],[114.98326296875,28.0897585273438],[114.963975859375,28.0979274726563],[114.94326296875,28.0679274726563],[114.917257109375,28.0581960273438],[114.90326296875,28.0379274726563],[114.877345,28.033843],[114.871910429688,28.0523659492188],[114.832345,28.0483327460938],[114.822022734375,28.0493849921875],[114.801158476563,28.0374343085938],[114.769976835938,28.0406130195313],[114.775870390625,28.0984084296876],[114.736964140625,28.1098244453126],[114.643638945313,28.1003102851563],[114.622808867188,28.0883815742188],[114.591881132813,28.0793044257813],[114.567345,28.063843],[114.53170046875,28.04948753125],[114.50459109375,28.0331325507813],[114.477345,28.0438430000001],[114.48244265625,28.0631618476563],[114.504918242188,28.0792726875],[114.52341921875,28.1084108710938],[114.520347929688,28.1239455390625],[114.538492460938,28.2144460273438],[114.580968046875,28.2468849921875],[114.607345,28.253843],[114.6126575,28.2336989570313],[114.6718371875,28.2580178046876],[114.706671171875,28.2487355781251],[114.734674101563,28.2096681953126],[114.782784453125,28.2201027656251],[114.811519804688,28.2696681953125],[114.843463164063,28.288188703125],[114.839332304688,28.3090895820313],[114.891143828125,28.3227590156251],[114.901519804688,28.3496681953125],[114.953170195313,28.3580178046875],[114.981519804688,28.3696681953125],[115.013170195313,28.3780178046876],[115.049010039063,28.4306716132813],[115.077345,28.4238430000001],[115.081881132813,28.3383815742188],[115.122808867188,28.3093044257813],[115.131881132813,28.2983815742188],[115.161881132813,28.2853688789063]]]]}},{"type":"Feature","properties":{"name":"铜鼓县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.21244265625,28.8292311835938],[114.222345,28.808247296875],[114.252896757813,28.8094582343751],[114.272818632813,28.7672463203126],[114.3426184375,28.7082595039063],[114.367345,28.7092385078126],[114.387345,28.7084474921876],[114.417345,28.7096364570313],[114.452345,28.7082472968751],[114.47119265625,28.7481813789063],[114.502193632813,28.7590480781251],[114.512496367188,28.758637921875],[114.569503203125,28.778618390625],[114.587203398438,28.7227028632813],[114.632686796875,28.6914064765626],[114.702476835938,28.6886403632813],[114.727345,28.6938430000001],[114.722803984375,28.6575221992188],[114.688931914063,28.6017580390625],[114.631793242188,28.5893971992188],[114.602486601563,28.5781325507813],[114.5502746875,28.5899904609375],[114.527457304688,28.5614943671875],[114.473560820313,28.5236086250001],[114.471099882813,28.5038430000001],[114.47302859375,28.4883278632813],[114.426239042969,28.4749489570313],[114.417345,28.4638430000001],[114.401519804688,28.4596681953125],[114.373170195313,28.4380178046875],[114.307366972656,28.4248244453125],[114.293170195313,28.3880178046875],[114.257345,28.3838430000001],[114.25170046875,28.38819846875],[114.24298953125,28.39948753125],[114.21170046875,28.40819846875],[114.196324492188,28.4281227851563],[114.170611601563,28.4386452460938],[114.214066191406,28.4721877265625],[114.210765410156,28.4945363593751],[114.16170046875,28.5081984687501],[114.12298953125,28.53948753125],[114.09170046875,28.5481984687501],[114.077345,28.553843],[114.123504667969,28.609419171875],[114.121942167969,28.628843],[114.124354277344,28.658843],[114.121165800781,28.6985182929688],[114.13271609375,28.7084719062501],[114.143387480469,28.7208571601563],[114.14193484375,28.7389601875],[114.147345,28.773843],[114.152535429688,28.7786525703125],[114.176456328125,28.804468],[114.21244265625,28.8292311835938]]]]}},{"type":"Feature","properties":{"name":"万载县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.538492460938,28.2144460273438],[114.520347929688,28.1239455390625],[114.52341921875,28.1084108710938],[114.504918242188,28.0792726875],[114.48244265625,28.0631618476563],[114.477345,28.0438430000001],[114.451793242188,28.0393971992188],[114.402506132813,28.0282009101563],[114.377345,28.0313307929688],[114.352061796875,28.0281862617188],[114.300623808594,28.0479567695313],[114.222345,28.0382204414063],[114.200985136719,28.0408766914063],[114.18099734375,28.0159157539062],[114.126175566406,27.9928151679688],[114.112899199219,28.0093971992187],[114.090553007813,28.0272902656251],[114.106163359375,28.053843],[114.088741484375,28.083481671875],[114.062899199219,28.0682888007813],[114.037345,28.063843],[114.032899199219,28.0793971992188],[114.001004667969,28.1230593085938],[114.003011503906,28.1392018867188],[113.987640410156,28.1653493476563],[114.038626738281,28.1799269843751],[114.062345,28.1769777656251],[114.086221953125,28.179946515625],[114.141790800781,28.2493971992188],[114.172899199219,28.2582888007813],[114.181790800781,28.2693971992188],[114.193023710938,28.2783888984376],[114.19166140625,28.2893410468751],[114.212899199219,28.2982888007813],[114.235972929688,28.3118532539063],[114.253607207031,28.3537013984376],[114.251688261719,28.3691262031251],[114.257345,28.3838430000001],[114.293170195313,28.3880178046875],[114.307366972656,28.4248244453125],[114.373170195313,28.4380178046875],[114.401519804688,28.4596681953125],[114.417345,28.4638430000001],[114.421768828125,28.4378054023438],[114.467164335938,28.4041481757813],[114.50298953125,28.38948753125],[114.5174621875,28.3707326484376],[114.571573515625,28.3383718085937],[114.59625125,28.3050881171876],[114.60298953125,28.2594875312501],[114.607345,28.253843],[114.580968046875,28.2468849921875],[114.538492460938,28.2144460273438]],[[114.244346953125,28.0578957343751],[114.267345,28.053843],[114.261910429688,28.0665407539063],[114.244346953125,28.0578957343751]]]]}},{"type":"Feature","properties":{"name":"宜丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.788995390625,28.6354933906251],[114.809244414063,28.6072414375],[114.827345,28.6108180976563],[114.850406523438,28.6062624335938],[114.871793242188,28.6198415351563],[114.929386015625,28.6312233710938],[114.961519804688,28.6180178046875],[114.993170195313,28.6096681953125],[115.001519804688,28.5980178046876],[115.013170195313,28.5896681953126],[115.017345,28.583843],[115.007056914063,28.5759011054688],[115.024327421875,28.5472658515625],[115.02125125,28.5264357734376],[115.113199492188,28.4894020820312],[115.13170046875,28.4517653632813],[115.10170046875,28.43948753125],[115.077345,28.4238430000001],[115.049010039063,28.4306716132813],[115.013170195313,28.3780178046876],[114.981519804688,28.3696681953125],[114.953170195313,28.3580178046875],[114.901519804688,28.3496681953125],[114.891143828125,28.3227590156251],[114.839332304688,28.3090895820313],[114.843463164063,28.288188703125],[114.811519804688,28.2696681953125],[114.782784453125,28.2201027656251],[114.734674101563,28.2096681953126],[114.706671171875,28.2487355781251],[114.6718371875,28.2580178046876],[114.6126575,28.2336989570313],[114.607345,28.253843],[114.60298953125,28.2594875312501],[114.59625125,28.3050881171876],[114.571573515625,28.3383718085937],[114.5174621875,28.3707326484376],[114.50298953125,28.38948753125],[114.467164335938,28.4041481757813],[114.421768828125,28.4378054023438],[114.417345,28.4638430000001],[114.426239042969,28.4749489570313],[114.47302859375,28.4883278632813],[114.471099882813,28.5038430000001],[114.473560820313,28.5236086250001],[114.527457304688,28.5614943671875],[114.5502746875,28.5899904609375],[114.602486601563,28.5781325507813],[114.631793242188,28.5893971992188],[114.688931914063,28.6017580390625],[114.722803984375,28.6575221992188],[114.727345,28.6938430000001],[114.737345,28.6938430000001],[114.765220976563,28.6525319648438],[114.788995390625,28.6354933906251]]]]}},{"type":"Feature","properties":{"name":"袁州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.157345,27.743843],[114.153922148438,27.7316506171875],[114.145152617188,27.7404201484375],[114.157345,27.743843]]],[[[114.261910429688,28.0665407539063],[114.267345,28.053843],[114.244346953125,28.0578957343751],[114.261910429688,28.0665407539063]]],[[[114.157345,27.743843],[114.153260527344,27.7497585273438],[114.115582304688,27.7757741523438],[114.103260527344,27.7579274726563],[114.071429472656,27.7497585273438],[114.057345,27.743843],[114.041790800781,27.7482888007813],[114.02095828125,27.7605373359375],[113.997345,27.7576003242188],[113.978472929688,27.759946515625],[113.95978640625,27.7832814765625],[113.963370390625,27.8120803046875],[113.931846953125,27.80815940625],[113.922899199219,27.8293971992188],[113.90166140625,27.8383449531251],[113.902967558594,27.8488430000001],[113.901722441406,27.858843],[113.903023710938,27.8692971015625],[113.891282988281,27.8786989570312],[113.915303984375,27.9115846992188],[113.942750273438,27.9081716132813],[113.997342558594,27.9518337226563],[113.980504179688,27.9804787421875],[113.952799101563,27.9770339179687],[113.941890898438,27.9906520820313],[113.922061796875,27.9881862617187],[113.907345,27.993843],[113.926761503906,28.0209352851563],[113.952345,28.0158791328125],[113.964469023438,28.0473146796875],[114.017928496094,28.0367507148437],[114.037345,28.063843],[114.062899199219,28.0682888007813],[114.088741484375,28.083481671875],[114.106163359375,28.053843],[114.090553007813,28.0272902656251],[114.112899199219,28.0093971992187],[114.126175566406,27.9928151679688],[114.18099734375,28.0159157539062],[114.200985136719,28.0408766914063],[114.222345,28.0382204414063],[114.300623808594,28.0479567695313],[114.352061796875,28.0281862617188],[114.377345,28.0313307929688],[114.402506132813,28.0282009101563],[114.451793242188,28.0393971992188],[114.477345,28.0438430000001],[114.50459109375,28.0331325507813],[114.53170046875,28.04948753125],[114.567345,28.063843],[114.59197390625,28.00847190625],[114.606793242188,27.9819045234376],[114.564439726563,27.9582741523438],[114.526065703125,27.9613552070313],[114.5119153125,27.9491677070313],[114.513551054688,27.9288430000001],[114.483267851563,27.9153298164063],[114.48072390625,27.8836794257813],[114.504371367188,27.830688703125],[114.542022734375,27.8276638007813],[114.559947539063,27.84847190625],[114.579000273438,27.8197365546875],[114.55271609375,27.7726247382813],[114.562086210938,27.7684206367188],[114.58197390625,27.7700173164063],[114.571944609375,27.7250148750001],[114.534390898438,27.6577053046875],[114.527345,27.603843],[114.509439726563,27.61136253125],[114.49326296875,27.5879274726563],[114.461138945313,27.5657497382812],[114.442066679688,27.5700270820313],[114.402183867188,27.5532741523438],[114.371673613281,27.5601149726563],[114.362691679688,27.54710471875],[114.343260527344,27.5597585273437],[114.321429472656,27.5679274726563],[114.294700957031,27.5853322578125],[114.267345,27.573843],[114.255091582031,27.5915895820313],[114.219598417969,27.6160964179688],[114.200186796875,27.6442116523438],[114.2069153125,27.6742287421876],[114.163905058594,27.7393141914063],[114.157345,27.743843]]]]}},{"type":"Feature","properties":{"name":"樟树市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.417345,27.953843],[115.429537382813,27.9504201484376],[115.420767851563,27.9416506171876],[115.417345,27.953843]]],[[[115.687345,28.0738430000001],[115.690767851563,28.0860353828125],[115.699537382813,28.0772658515625],[115.687345,28.0738430000001]]],[[[115.687345,28.0738430000001],[115.696783476563,28.0632814765626],[115.713043242188,28.0487526679688],[115.681304960938,28.0341872382813],[115.62377078125,27.982778546875],[115.680147734375,27.9324025703125],[115.652271757813,27.8811013007813],[115.647345,27.833843],[115.635269804688,27.8193044257813],[115.601881132813,27.8383815742188],[115.572808867188,27.8593044257813],[115.539488554688,27.873755109375],[115.502808867188,27.9042263007813],[115.511881132813,27.9193044257813],[115.531881132813,27.9359181953125],[115.518492460938,27.9556691718751],[115.474893828125,27.9601125312501],[115.461793242188,27.949233625],[115.464845,27.9193044257813],[115.44375125,27.9340724921875],[115.429058867188,27.9679470039063],[115.417345,27.953843],[115.382862578125,27.94726096875],[115.4026965625,27.9288845039063],[115.381685820313,27.8983522773438],[115.402843046875,27.8787502265625],[115.387345,27.873843],[115.322349882813,27.8792458320313],[115.307345,27.8780397773438],[115.287345,27.8796462226563],[115.267345,27.8780397773438],[115.252345,27.8792458320313],[115.242022734375,27.8784157539063],[115.227345,27.8954494453126],[115.21259890625,27.8783351875],[115.138175078125,27.8945680976563],[115.109615507813,27.9585695625001],[115.1327746875,27.9785182929688],[115.131217070313,27.9978615546875],[115.14271609375,28.0184719062501],[115.147345,28.053843],[115.172725859375,28.0480763984376],[115.19068484375,28.0705031562501],[115.213023710938,28.0883888984376],[115.209303007813,28.1182888007813],[115.222896757813,28.1093971992188],[115.246920195313,28.0793971992188],[115.282896757813,28.0982888007813],[115.30068484375,28.12050315625],[115.342896757813,28.1382888007813],[115.355347929688,28.1538356757813],[115.382545195313,28.13784690625],[115.39834109375,28.1575734687501],[115.423702421875,28.125903546875],[115.457345,28.1300856757812],[115.49740359375,28.1251052070313],[115.567345,28.133843],[115.574801054688,28.1312990546876],[115.579888945313,28.1163869453125],[115.614801054688,28.1112990546875],[115.632315703125,28.0939870429688],[115.643990507813,28.1052614570313],[115.649888945313,28.0763869453125],[115.687345,28.0738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"金溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.756763945313,28.0580373359375],[116.749010039063,28.0331325507813],[116.777345,28.0419582343751],[116.792345,28.0372853828126],[116.802345,28.0404006171876],[116.834263945313,28.0304592109375],[116.851158476563,28.0800295234375],[116.857345,28.0838430000001],[116.900094023438,28.0733425117188],[116.915513945313,28.0956740546875],[116.927345,28.103843],[116.934605742188,28.0611037421875],[116.96298953125,28.04948753125],[116.977779570313,28.0133498359376],[117.01170046875,27.98819846875],[117.0474621875,27.9735622382813],[117.03298953125,27.9381984687501],[117.01170046875,27.9094875312501],[117.007345,27.8838430000001],[116.957393828125,27.8554470039063],[116.932213164063,27.8694948554688],[116.92271609375,27.85847190625],[116.908565703125,27.84921409375],[116.870103789063,27.8706716132813],[116.842345,27.8684401679688],[116.826842070313,27.8696877265625],[116.777047148438,27.811889875],[116.787345,27.783843],[116.767135039063,27.752075421875],[116.7456653125,27.7011208320313],[116.721890898438,27.6981642890626],[116.70634890625,27.71757346875],[116.682647734375,27.6879763007813],[116.610621367188,27.6984596992188],[116.617345,27.7038430000001],[116.623170195313,27.7080178046875],[116.635909453125,27.725796125],[116.631236601563,27.7494631171875],[116.643170195313,27.7580178046876],[116.651519804688,27.7765163398438],[116.621519804688,27.7980178046876],[116.610772734375,27.825884015625],[116.615186796875,27.8482228828125],[116.587706328125,27.8679177070313],[116.561519804688,27.8780178046876],[116.550011015625,27.9078639960938],[116.503663359375,27.9200905585938],[116.477994414063,27.9150197578125],[116.453170195313,27.9265163398438],[116.500870390625,27.9607033515626],[116.491236601563,28.0094631171875],[116.503453398438,28.0182228828126],[116.499752226563,28.0369655585938],[116.517345,28.063843],[116.533531523438,28.0676564765625],[116.552428007813,28.080923078125],[116.582471953125,28.0565895820313],[116.612803984375,28.0471437812501],[116.639796171875,28.0660964179688],[116.662017851563,28.0300295234376],[116.676143828125,28.0516506171875],[116.67048953125,28.0698024726563],[116.693531523438,28.0776564765625],[116.72818484375,28.1057228828125],[116.741158476563,28.0676564765625],[116.756763945313,28.0580373359375]]]]}},{"type":"Feature","properties":{"name":"崇仁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.238565703125,27.858843],[116.263814726563,27.8496804023438],[116.258565703125,27.828843],[116.267398710938,27.7937917304688],[116.23797,27.8012038398438],[116.243673125,27.7785817695312],[116.224303007813,27.7334572578125],[116.241339140625,27.707837140625],[116.257345,27.7038430000001],[116.253170195313,27.6980178046875],[116.239503203125,27.6882228828125],[116.245186796875,27.6594631171875],[116.223394804688,27.643843],[116.251519804688,27.6236843085938],[116.216412382813,27.591899640625],[116.165596953125,27.6127809882813],[116.133170195313,27.5880178046875],[116.073170195313,27.5550856757813],[116.081519804688,27.5480178046875],[116.139879179688,27.5363185859375],[116.145308867188,27.5088430000001],[116.113326445313,27.4965065742188],[116.100406523438,27.4475392890625],[116.067345,27.423843],[116.06298953125,27.42948753125],[116.02521609375,27.440005109375],[115.995889921875,27.4356716132813],[115.970767851563,27.450825421875],[115.952345,27.4481032539063],[115.939127226563,27.4500563789063],[115.917120390625,27.5038210273438],[115.954400664063,27.5499440742188],[115.949390898438,27.5838430000001],[115.958595,27.6461330390626],[115.92170046875,27.6681984687501],[115.904625273438,27.7099196601563],[115.884771757813,27.7069850898437],[115.871773710938,27.6752321601563],[115.836412382813,27.6804592109375],[115.827345,27.7338430000001],[115.848175078125,27.7505226875001],[115.861807890625,27.8595314765626],[115.883702421875,27.8568093085937],[115.90802859375,27.88718284375],[115.961793242188,27.8993971992188],[116.012896757813,27.9082888007813],[116.041793242188,27.9293971992188],[116.057345,27.933843],[116.0911340625,27.9286550117188],[116.098101835938,27.9009963203125],[116.07982546875,27.8888430000001],[116.093350859375,27.879848859375],[116.110894804688,27.8534645820313],[116.134342070313,27.8951979804688],[116.153350859375,27.907837140625],[116.165299101563,27.9258083320313],[116.210670195313,27.9372389960938],[116.221339140625,27.907837140625],[116.246666289063,27.8909963203125],[116.238565703125,27.858843]]]]}},{"type":"Feature","properties":{"name":"东乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.563170195313,28.4036843085938],[116.572628203125,28.3859352851563],[116.615655546875,28.394438703125],[116.644346953125,28.3762258125],[116.703170195313,28.3880178046875],[116.7375403125,28.4142653632813],[116.751519804688,28.3780178046876],[116.773170195313,28.3696681953125],[116.781519804688,28.3580178046875],[116.787345,28.353843],[116.791158476563,28.3376564765625],[116.815172148438,28.2865431953125],[116.794761992188,28.2534181953125],[116.772345,28.2604006171875],[116.762345,28.2572853828125],[116.729522734375,28.2675075507813],[116.696490507813,28.2471559882813],[116.685689726563,28.2124733710938],[116.707345,28.205727765625],[116.728057890625,28.2121804023438],[116.720299101563,28.1872682929688],[116.762345,28.1741701484375],[116.785240507813,28.1813014960938],[116.807877226563,28.1673537421875],[116.790572539063,28.1287209296875],[116.801383085938,28.09698753125],[116.828521757813,28.1054396796875],[116.853531523438,28.0900295234375],[116.857345,28.0838430000001],[116.851158476563,28.0800295234375],[116.834263945313,28.0304592109375],[116.802345,28.0404006171876],[116.792345,28.0372853828126],[116.777345,28.0419582343751],[116.749010039063,28.0331325507813],[116.756763945313,28.0580373359375],[116.741158476563,28.0676564765625],[116.72818484375,28.1057228828125],[116.693531523438,28.0776564765625],[116.67048953125,28.0698024726563],[116.676143828125,28.0516506171875],[116.662017851563,28.0300295234376],[116.639796171875,28.0660964179688],[116.612803984375,28.0471437812501],[116.582471953125,28.0565895820313],[116.552428007813,28.080923078125],[116.533531523438,28.0676564765625],[116.517345,28.063843],[116.501519804688,28.0680178046876],[116.493170195313,28.0796681953125],[116.475694609375,28.0921926093751],[116.457345,28.1177956367188],[116.443170195313,28.0980178046875],[116.425601835938,28.0854274726562],[116.403170195313,28.0996681953125],[116.379381132813,28.108843],[116.383331328125,28.128843],[116.37908328125,28.150356671875],[116.354918242188,28.1884133125],[116.338394804688,28.2002590156251],[116.357345,28.213843],[116.36298953125,28.21819846875],[116.383433867188,28.2446852851563],[116.464937773438,28.2585305],[116.48170046875,28.2994875312501],[116.50611453125,28.3183303046875],[116.500670195313,28.3551930976563],[116.524771757813,28.3864186835938],[116.561119414063,28.4144753242188],[116.550206328125,28.4883303046876],[116.557345,28.4938430000001],[116.57955203125,28.487983625],[116.585308867188,28.4588430000001],[116.581358671875,28.438843],[116.585186796875,28.4194631171875],[116.563170195313,28.4036843085938]]]]}},{"type":"Feature","properties":{"name":"广昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.557345,26.643843],[116.557345,26.653843],[116.567345,26.653843],[116.567345,26.643843],[116.557345,26.643843]]],[[[116.557345,26.643843],[116.553985625,26.597202375],[116.537345,26.563843],[116.503502226563,26.5561550117188],[116.488453398438,26.5749489570313],[116.449010039063,26.6065309882812],[116.430845976563,26.5634206367188],[116.37080203125,26.5462526679688],[116.374254179688,26.5184865546875],[116.302237578125,26.5080055976563],[116.252896757813,26.5393971992188],[116.237345,26.543843],[116.241793242188,26.5593971992188],[116.268936796875,26.5811330390626],[116.236671171875,26.625298078125],[116.260162382813,26.644106671875],[116.271793242188,26.6618849921876],[116.223702421875,26.655903546875],[116.212799101563,26.6695217109376],[116.191475859375,26.6668703437501],[116.192965117188,26.678843],[116.191378203125,26.6916091132813],[116.113092070313,26.7245973945313],[116.132896757813,26.7582888007813],[116.144073515625,26.8099440742187],[116.140343046875,26.8399221015625],[116.163013945313,26.8784841132813],[116.161724882813,26.888843],[116.163013945313,26.8992018867188],[116.151793242188,26.9182888007813],[116.147345,26.953843],[116.182843046875,26.9480104804688],[116.191832304688,26.9596584296875],[116.207345,26.9573659492188],[116.243658476563,26.9627321601562],[116.239429960938,26.9340993476563],[116.257345,26.9108864570313],[116.274449492188,26.9330495429688],[116.329390898438,26.9661891914063],[116.361832304688,26.9709841132813],[116.378424101563,26.94948753125],[116.45298953125,26.95819846875],[116.48205203125,26.9696242500001],[116.492345,26.9681032539063],[116.504722929688,26.9699343085938],[116.50158328125,26.9487013984376],[116.51310671875,26.8989846015625],[116.511265898438,26.88655784375],[116.54170046875,26.8681984687501],[116.557345,26.8638430000001],[116.552628203125,26.8485622382813],[116.533761015625,26.813843],[116.560147734375,26.7652834296875],[116.502628203125,26.7138869453125],[116.528673125,26.6715920234376],[116.542628203125,26.6591237617188],[116.552061796875,26.6485622382813],[116.557345,26.643843]]]]}},{"type":"Feature","properties":{"name":"乐安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.836412382813,27.6804592109375],[115.871773710938,27.6752321601563],[115.884771757813,27.7069850898437],[115.904625273438,27.7099196601563],[115.92170046875,27.6681984687501],[115.958595,27.6461330390626],[115.949390898438,27.5838430000001],[115.954400664063,27.5499440742188],[115.917120390625,27.5038210273438],[115.939127226563,27.4500563789063],[115.952345,27.4481032539063],[115.970767851563,27.450825421875],[115.995889921875,27.4356716132813],[116.02521609375,27.440005109375],[116.06298953125,27.42948753125],[116.067345,27.423843],[116.060772734375,27.3594313789063],[116.0380871875,27.3330983710938],[116.017379179688,27.3152565742188],[116.032799101563,27.2589186835938],[116.0212903125,27.1954372382813],[116.027345,27.133843],[116.02170046875,27.12948753125],[115.9985559375,27.099497296875],[116.003951445313,27.0629836250001],[115.951929960938,26.9928200507813],[115.927345,26.9738430000001],[115.89224734375,26.9887429023438],[115.863697539063,27.0034499335938],[115.84244265625,27.0689430976563],[115.822603789063,27.0880080390625],[115.8117590625,27.1103615546875],[115.712633085938,27.1083376289062],[115.70244265625,27.1189430976563],[115.672955351563,27.1472731757813],[115.652999296875,27.1884084296876],[115.632428007813,27.2081740546876],[115.61845828125,27.2512233710938],[115.685699492188,27.2730446601562],[115.672242460938,27.3387599921876],[115.6724621875,27.3495436835938],[115.69244265625,27.3687429023438],[115.70224734375,27.4089430976563],[115.722154570313,27.4475881171875],[115.64224734375,27.4587429023438],[115.601138945313,27.5105886054688],[115.587345,27.523843],[115.60295046875,27.566333234375],[115.601920195313,27.5791384101563],[115.635328398438,27.6262599921875],[115.67271609375,27.65847190625],[115.721807890625,27.7154518867188],[115.727345,27.7338430000001],[115.762828398438,27.7419045234376],[115.827345,27.7338430000001],[115.836412382813,27.6804592109375]]]]}},{"type":"Feature","properties":{"name":"黎川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.07798953125,27.5776369453125],[117.10468875,27.5097194648438],[117.101070585938,27.4852346015625],[117.125889921875,27.4221096015625],[117.09298953125,27.3777346015625],[117.10170046875,27.33819846875],[117.1331653125,27.3193825507813],[117.131514921875,27.3082302070313],[117.157345,27.303843],[117.167232695313,27.2769240546875],[117.107847929688,27.2079982734376],[117.091671171875,27.2092995429688],[117.038394804688,27.1448854804688],[117.047345,27.103843],[117.011793242188,27.0893971992188],[116.9589465625,27.0583327460938],[116.931807890625,27.0244411445313],[116.892174101563,27.0396755195313],[116.858370390625,27.0149831367188],[116.822125273438,27.0194924140626],[116.764766875,27.0031130195313],[116.751627226563,26.9867043281251],[116.707345,26.993843],[116.71310671875,27.0187013984376],[116.71158328125,27.0289846015625],[116.731573515625,27.1152516914063],[116.711549101563,27.148452375],[116.713082304688,27.1588430000001],[116.704420195313,27.2174587226563],[116.746011992188,27.2290407539063],[116.741607695313,27.258843],[116.743140898438,27.269233625],[116.731549101563,27.2884523750001],[116.734483671875,27.3083303046876],[116.721314726563,27.3184987617188],[116.727345,27.333843],[116.735933867188,27.3409792304688],[116.721617460938,27.3790846992188],[116.732808867188,27.3883815742188],[116.741881132813,27.3993044257813],[116.772808867188,27.4083815742188],[116.807345,27.4281618476563],[116.87064578125,27.3919045234375],[116.900284453125,27.3562258125],[116.941881132813,27.3917678046875],[116.920855742188,27.409233625],[116.925601835938,27.4557814765626],[116.952808867188,27.4783815742188],[116.957345,27.483843],[116.99060671875,27.5005226875],[117.000704375,27.5204836250001],[117.027266875,27.5339211250001],[117.037345,27.553843],[117.054439726563,27.5471218085938],[117.07798953125,27.5776369453125]]]]}},{"type":"Feature","properties":{"name":"临川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.338897734375,28.2360524726563],[116.357345,28.213843],[116.338394804688,28.2002590156251],[116.354918242188,28.1884133125],[116.37908328125,28.150356671875],[116.383331328125,28.128843],[116.379381132813,28.108843],[116.403170195313,28.0996681953125],[116.425601835938,28.0854274726562],[116.443170195313,28.0980178046875],[116.457345,28.1177956367188],[116.475694609375,28.0921926093751],[116.493170195313,28.0796681953125],[116.501519804688,28.0680178046876],[116.517345,28.063843],[116.499752226563,28.0369655585938],[116.503453398438,28.0182228828126],[116.491236601563,28.0094631171875],[116.500870390625,27.9607033515626],[116.453170195313,27.9265163398438],[116.477994414063,27.9150197578125],[116.503663359375,27.9200905585938],[116.550011015625,27.9078639960938],[116.561519804688,27.8780178046876],[116.587706328125,27.8679177070313],[116.615186796875,27.8482228828125],[116.610772734375,27.825884015625],[116.621519804688,27.7980178046876],[116.651519804688,27.7765163398438],[116.643170195313,27.7580178046876],[116.631236601563,27.7494631171875],[116.635909453125,27.725796125],[116.623170195313,27.7080178046875],[116.617345,27.7038430000001],[116.61326296875,27.7097585273438],[116.568297148438,27.7212990546876],[116.514947539063,27.7093386054688],[116.48865359375,27.671255109375],[116.52377078125,27.629145734375],[116.511163359375,27.5991213203125],[116.514991484375,27.5820436835938],[116.50142703125,27.5497585273438],[116.492296171875,27.514165265625],[116.477345,27.5038430000001],[116.46298953125,27.5394875312501],[116.44170046875,27.54819846875],[116.43298953125,27.5659206367188],[116.46298953125,27.57819846875],[116.47170046875,27.6009645820312],[116.451832304688,27.5980275703125],[116.41298953125,27.6494875312501],[116.392379179688,27.665395734375],[116.320386992188,27.6805861640625],[116.323170195313,27.6994362617187],[116.278077421875,27.7119924140626],[116.257345,27.7038430000001],[116.241339140625,27.707837140625],[116.224303007813,27.7334572578125],[116.243673125,27.7785817695312],[116.23797,27.8012038398438],[116.267398710938,27.7937917304688],[116.258565703125,27.828843],[116.263814726563,27.8496804023438],[116.238565703125,27.858843],[116.246666289063,27.8909963203125],[116.221339140625,27.907837140625],[116.210670195313,27.9372389960938],[116.165299101563,27.9258083320313],[116.153350859375,27.907837140625],[116.134342070313,27.8951979804688],[116.110894804688,27.8534645820313],[116.093350859375,27.879848859375],[116.07982546875,27.8888430000001],[116.098101835938,27.9009963203125],[116.0911340625,27.9286550117188],[116.057345,27.933843],[116.101519804688,27.9996681953125],[116.113170195313,28.0080178046875],[116.121519804688,28.0396681953125],[116.1450403125,28.0767189765626],[116.127823515625,28.103843],[116.144097929688,28.1294826484375],[116.089454375,28.1404372382813],[116.073170195313,28.1765163398438],[116.10125125,28.220747296875],[116.107345,28.243843],[116.139249296875,28.2256276679688],[116.169644804688,28.1890383125],[116.202808867188,28.1793044257813],[116.219058867188,28.1597389960938],[116.239639921875,28.2071901679688],[116.27634890625,28.2209841132813],[116.302769804688,28.2182912421875],[116.315816679688,28.2483815742188],[116.338897734375,28.2360524726563]]]]}},{"type":"Feature","properties":{"name":"南城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.870850859375,27.7225148750001],[116.876646757813,27.688843],[116.829703398438,27.679184796875],[116.834928007813,27.648843],[116.83048953125,27.6230593085938],[116.8420715625,27.607485578125],[116.8626184375,27.6202004218751],[116.871612578125,27.6081081367188],[116.911612578125,27.5845534492188],[116.893077421875,27.5681081367188],[116.863077421875,27.55618675],[116.879840117188,27.5206642890625],[116.9351575,27.5301882148438],[116.93060671875,27.5037331367188],[116.957345,27.483843],[116.952808867188,27.4783815742188],[116.925601835938,27.4557814765626],[116.920855742188,27.409233625],[116.941881132813,27.3917678046875],[116.900284453125,27.3562258125],[116.87064578125,27.3919045234375],[116.807345,27.4281618476563],[116.772808867188,27.4083815742188],[116.741881132813,27.3993044257813],[116.732808867188,27.3883815742188],[116.721617460938,27.3790846992188],[116.735933867188,27.3409792304688],[116.727345,27.333843],[116.686578398438,27.352251203125],[116.612291289063,27.3079274726563],[116.573297148438,27.3364089179688],[116.562896757813,27.3493971992188],[116.548057890625,27.3582888007813],[116.553248320313,27.316577375],[116.527906523438,27.29628440625],[116.501890898438,27.2995217109375],[116.489342070313,27.2838503242188],[116.462896757813,27.2993971992188],[116.441793242188,27.3082888007813],[116.422896757813,27.3193971992188],[116.397345,27.323843],[116.418082304688,27.3682521796875],[116.41119265625,27.398989484375],[116.429845,27.459165265625],[116.46970828125,27.4740822578126],[116.477345,27.5038430000001],[116.492296171875,27.514165265625],[116.50142703125,27.5497585273438],[116.514991484375,27.5820436835938],[116.511163359375,27.5991213203125],[116.52377078125,27.629145734375],[116.48865359375,27.671255109375],[116.514947539063,27.7093386054688],[116.568297148438,27.7212990546876],[116.61326296875,27.7097585273438],[116.617345,27.7038430000001],[116.610621367188,27.6984596992188],[116.682647734375,27.6879763007813],[116.70634890625,27.71757346875],[116.721890898438,27.6981642890626],[116.7456653125,27.7011208320313],[116.767135039063,27.752075421875],[116.787345,27.783843],[116.813077421875,27.7695778632813],[116.824454375,27.7409523750001],[116.870850859375,27.7225148750001]]]]}},{"type":"Feature","properties":{"name":"南丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.573297148438,27.3364089179688],[116.612291289063,27.3079274726563],[116.686578398438,27.352251203125],[116.727345,27.333843],[116.721314726563,27.3184987617188],[116.734483671875,27.3083303046876],[116.731549101563,27.2884523750001],[116.743140898438,27.269233625],[116.741607695313,27.258843],[116.746011992188,27.2290407539063],[116.704420195313,27.2174587226563],[116.713082304688,27.1588430000001],[116.711549101563,27.148452375],[116.731573515625,27.1152516914063],[116.71158328125,27.0289846015625],[116.71310671875,27.0187013984376],[116.707345,26.993843],[116.69170046875,26.98948753125],[116.652320585938,26.9602907539063],[116.6386340625,26.9425563789063],[116.62170046875,26.9294875312501],[116.60298953125,26.89819846875],[116.59170046875,26.8894875312501],[116.58298953125,26.87819846875],[116.56170046875,26.86948753125],[116.557345,26.8638430000001],[116.54170046875,26.8681984687501],[116.511265898438,26.88655784375],[116.51310671875,26.8989846015625],[116.50158328125,26.9487013984376],[116.504722929688,26.9699343085938],[116.492345,26.9681032539063],[116.48205203125,26.9696242500001],[116.45298953125,26.95819846875],[116.378424101563,26.94948753125],[116.361832304688,26.9709841132813],[116.329390898438,26.9661891914063],[116.274449492188,26.9330495429688],[116.257345,26.9108864570313],[116.239429960938,26.9340993476563],[116.243658476563,26.9627321601562],[116.207345,26.9573659492188],[116.191832304688,26.9596584296875],[116.182843046875,26.9480104804688],[116.147345,26.953843],[116.15170046875,26.96948753125],[116.186129179688,27.0159255195313],[116.177345,27.0538430000001],[116.218092070313,27.0768776679687],[116.231793242188,27.1093971992188],[116.253248320313,27.126577375],[116.250865507813,27.1457350898438],[116.295845976563,27.201977765625],[116.352896757813,27.2182888007812],[116.361793242188,27.2593971992188],[116.372896757813,27.2782888007813],[116.381793242188,27.3093971992188],[116.392896757813,27.3182888007813],[116.397345,27.323843],[116.422896757813,27.3193971992188],[116.441793242188,27.3082888007813],[116.462896757813,27.2993971992188],[116.489342070313,27.2838503242188],[116.501890898438,27.2995217109375],[116.527906523438,27.29628440625],[116.553248320313,27.316577375],[116.548057890625,27.3582888007813],[116.562896757813,27.3493971992188],[116.573297148438,27.3364089179688]]]]}},{"type":"Feature","properties":{"name":"宜黄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.41298953125,27.6494875312501],[116.451832304688,27.5980275703125],[116.47170046875,27.6009645820312],[116.46298953125,27.57819846875],[116.43298953125,27.5659206367188],[116.44170046875,27.54819846875],[116.46298953125,27.5394875312501],[116.477345,27.5038430000001],[116.46970828125,27.4740822578126],[116.429845,27.459165265625],[116.41119265625,27.398989484375],[116.418082304688,27.3682521796875],[116.397345,27.323843],[116.392896757813,27.3182888007813],[116.381793242188,27.3093971992188],[116.372896757813,27.2782888007813],[116.361793242188,27.2593971992188],[116.352896757813,27.2182888007812],[116.295845976563,27.201977765625],[116.250865507813,27.1457350898438],[116.253248320313,27.126577375],[116.231793242188,27.1093971992188],[116.218092070313,27.0768776679687],[116.177345,27.0538430000001],[116.1501575,27.0475417304688],[116.13298953125,27.08948753125],[116.12170046875,27.10819846875],[116.11298953125,27.12948753125],[116.093306914063,27.1446779609376],[116.027345,27.133843],[116.0212903125,27.1954372382813],[116.032799101563,27.2589186835938],[116.017379179688,27.3152565742188],[116.0380871875,27.3330983710938],[116.060772734375,27.3594313789063],[116.067345,27.423843],[116.100406523438,27.4475392890625],[116.113326445313,27.4965065742188],[116.145308867188,27.5088430000001],[116.139879179688,27.5363185859375],[116.081519804688,27.5480178046875],[116.073170195313,27.5550856757813],[116.133170195313,27.5880178046875],[116.165596953125,27.6127809882813],[116.216412382813,27.591899640625],[116.251519804688,27.6236843085938],[116.223394804688,27.643843],[116.245186796875,27.6594631171875],[116.239503203125,27.6882228828125],[116.253170195313,27.6980178046875],[116.257345,27.7038430000001],[116.278077421875,27.7119924140626],[116.323170195313,27.6994362617187],[116.320386992188,27.6805861640625],[116.392379179688,27.665395734375],[116.41298953125,27.6494875312501]]]]}},{"type":"Feature","properties":{"name":"资溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.277345,27.763843],[117.273922148438,27.7760353828125],[117.265152617188,27.7672658515625],[117.2521496875,27.7299758125001],[117.201612578125,27.7195778632813],[117.19123171875,27.6812868476563],[117.094761992188,27.697895734375],[117.10470828125,27.6401100898437],[117.08291140625,27.6363576484375],[117.05185671875,27.6781081367188],[117.024371367188,27.6665261054688],[117.013077421875,27.6381081367188],[117.001158476563,27.6292385078125],[117.013077421875,27.5995778632813],[117.021612578125,27.5581081367188],[117.037345,27.553843],[117.027266875,27.5339211250001],[117.000704375,27.5204836250001],[116.99060671875,27.5005226875],[116.957345,27.483843],[116.93060671875,27.5037331367188],[116.9351575,27.5301882148438],[116.879840117188,27.5206642890625],[116.863077421875,27.55618675],[116.893077421875,27.5681081367188],[116.911612578125,27.5845534492188],[116.871612578125,27.6081081367188],[116.8626184375,27.6202004218751],[116.8420715625,27.607485578125],[116.83048953125,27.6230593085938],[116.834928007813,27.648843],[116.829703398438,27.679184796875],[116.876646757813,27.688843],[116.870850859375,27.7225148750001],[116.824454375,27.7409523750001],[116.813077421875,27.7695778632813],[116.787345,27.783843],[116.777047148438,27.811889875],[116.826842070313,27.8696877265625],[116.842345,27.8684401679688],[116.870103789063,27.8706716132813],[116.908565703125,27.84921409375],[116.92271609375,27.85847190625],[116.932213164063,27.8694948554688],[116.957393828125,27.8554470039063],[117.007345,27.8838430000001],[117.026822539063,27.8493971992188],[117.042896757813,27.8582888007813],[117.081939726563,27.8895143867188],[117.102345,27.886977765625],[117.113995390625,27.9146291328125],[117.14373171875,27.8971486640625],[117.1630871875,27.8995558906251],[117.232896757813,27.8893971992188],[117.241793242188,27.8782888007813],[117.277345,27.8538430000001],[117.280704375,27.847202375],[117.300704375,27.8370851875],[117.2933996875,27.7719631171875],[117.277345,27.763843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"玉山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.176373320313,28.9786452460938],[118.22107546875,28.94284690625],[118.182896757813,28.9122731757813],[118.196920195313,28.9059914375],[118.231793242188,28.9193971992188],[118.257345,28.9238430000001],[118.263043242188,28.9191091132813],[118.292882109375,28.849126203125],[118.290972929688,28.83038596875],[118.36732546875,28.8079787421875],[118.377345,28.773843],[118.395362578125,28.7342702460938],[118.391529570313,28.7083303046875],[118.40298953125,28.69948753125],[118.41170046875,28.68819846875],[118.425811796875,28.6773073554688],[118.420865507813,28.643843],[118.423140898438,28.628452375],[118.410362578125,28.6072658515625],[118.413824492188,28.583843],[118.4108215625,28.5635451484376],[118.417345,28.523843],[118.382589140625,28.49806175],[118.33357546875,28.5120583320312],[118.317867460938,28.5669850898438],[118.28834109375,28.5301125312501],[118.26677859375,28.5570412421876],[118.231666289063,28.5783669257813],[118.232984648438,28.5889772773438],[118.224928007813,28.6282888007812],[118.16877078125,28.606704328125],[118.137345,28.6138430000001],[118.132725859375,28.6313503242188],[118.123170195313,28.6180178046875],[118.076553984375,28.5909914375],[118.053761015625,28.6227956367188],[118.037345,28.5998903632813],[118.023170195313,28.6196681953126],[118.017345,28.623843],[118.026944609375,28.6452761054688],[117.992017851563,28.6576564765625],[117.963531523438,28.6376564765625],[117.923531523438,28.6355495429688],[117.93857546875,28.6838430000001],[117.929229765625,28.713843],[117.9351575,28.7328688789063],[117.911158476563,28.7476564765626],[117.903531523438,28.7600295234375],[117.881588164063,28.7735500312501],[117.877345,28.813843],[117.881612578125,28.8295778632813],[117.921612578125,28.8404225898438],[117.913077421875,28.8695778632813],[117.901612578125,28.8781081367188],[117.893077421875,28.8895778632813],[117.853077421875,28.9131325507812],[117.872095976563,28.9197463203126],[117.88291140625,28.9178835273438],[117.892345,28.9305641914063],[117.905733671875,28.9125637031251],[117.946246367188,28.9055886054688],[117.963077421875,28.9181081367188],[117.975181914063,28.934380109375],[118.054605742188,28.9207057929688],[118.049654570313,28.9494850898438],[118.061705351563,28.9798146796876],[118.072769804688,28.9779079414063],[118.097345,28.9938430000001],[118.107345,28.9938430000001],[118.107345,29.003843],[118.107345,29.013843],[118.12302859375,29.0093581367188],[118.120709257813,28.990688703125],[118.176373320313,28.9786452460938]]]]}},{"type":"Feature","properties":{"name":"广丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.107345,28.5738430000001],[118.103922148438,28.5616506171876],[118.095152617188,28.5704201484375],[118.107345,28.5738430000001]]],[[[118.107345,28.5738430000001],[118.110704375,28.580483625],[118.13287234375,28.5916994453125],[118.137345,28.6138430000001],[118.16877078125,28.606704328125],[118.224928007813,28.6282888007812],[118.232984648438,28.5889772773438],[118.231666289063,28.5783669257813],[118.26677859375,28.5570412421876],[118.28834109375,28.5301125312501],[118.317867460938,28.5669850898438],[118.33357546875,28.5120583320312],[118.382589140625,28.49806175],[118.417345,28.523843],[118.441612578125,28.5172634101563],[118.433077421875,28.5081081367188],[118.40966921875,28.4988063789063],[118.47127078125,28.4766286445313],[118.43865359375,28.4028884101563],[118.468863554688,28.3540773750001],[118.47443484375,28.3217018867188],[118.443077421875,28.2981081367187],[118.427345,28.293843],[118.411793242188,28.2893971992188],[118.392896757813,28.2782888007813],[118.371793242188,28.2693971992188],[118.320533476563,28.2284011054688],[118.323311796875,28.2060768867188],[118.362896757813,28.1893971992188],[118.377100859375,28.1716579414063],[118.361793242188,28.1593971992188],[118.34884890625,28.0995778632813],[118.269801054688,28.0824733710938],[118.247345,28.0738430000001],[118.230704375,28.070483625],[118.217345,28.063843],[118.21271609375,28.07921409375],[118.201163359375,28.0891677070313],[118.203472929688,28.1178615546876],[118.19197390625,28.1384719062501],[118.178277617188,28.1691579414063],[118.1965246875,28.218843],[118.17295046875,28.28304221875],[118.196944609375,28.3260500312501],[118.124576445313,28.3062429023438],[118.06271609375,28.3592140937501],[118.03197390625,28.37847190625],[118.027345,28.393843],[118.04298953125,28.3981984687501],[118.051754179688,28.4296706367188],[118.067345,28.4273659492188],[118.082345,28.4295827460938],[118.092735625,28.4280471015625],[118.129796171875,28.4504030585938],[118.153741484375,28.5089064765625],[118.14170046875,28.51819846875],[118.132955351563,28.5696730781251],[118.12205203125,28.56806175],[118.107345,28.5738430000001]]]]}},{"type":"Feature","properties":{"name":"横峰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.730152617188,28.718843],[117.717345,28.713843],[117.717345,28.7238430000001],[117.730152617188,28.718843]]],[[[117.612154570313,28.747973859375],[117.688643828125,28.6937429023438],[117.7021496875,28.7094216132813],[117.717345,28.703843],[117.710753203125,28.6863014960938],[117.721910429688,28.6482888007813],[117.741363554688,28.6502712226563],[117.710909453125,28.6079494453125],[117.713365507813,28.583843],[117.711807890625,28.5685768867188],[117.725933867188,28.5309792304688],[117.692808867188,28.5034596992188],[117.702022734375,28.4983010078126],[117.722345,28.5003713203125],[117.736920195313,28.4667604804688],[117.771685820313,28.4703054023438],[117.773053007813,28.4568923164063],[117.749151640625,28.437036359375],[117.727345,28.3838430000001],[117.71047,28.387817609375],[117.714229765625,28.3998903632813],[117.675855742188,28.4076564765626],[117.663531523438,28.3876564765625],[117.651158476563,28.3800295234375],[117.641842070313,28.3404885078125],[117.585347929688,28.321235578125],[117.603531523438,28.3100295234375],[117.606827421875,28.2900295234376],[117.537345,28.323843],[117.541519804688,28.3296681953125],[117.570816679688,28.3409670234376],[117.553092070313,28.4306667304688],[117.527345,28.4143190742188],[117.492379179688,28.43651878125],[117.483170195313,28.4525905585938],[117.524664335938,28.4685964179688],[117.5077746875,28.4807033515625],[117.513331328125,28.508843],[117.509332304688,28.5290895820313],[117.543170195313,28.5380178046875],[117.551519804688,28.5496681953126],[117.591080351563,28.5726052070313],[117.601519804688,28.5996681953125],[117.613170195313,28.6180178046875],[117.621519804688,28.6548268867188],[117.581519804688,28.6780178046876],[117.577345,28.6838430000001],[117.612154570313,28.747973859375]]]]}},{"type":"Feature","properties":{"name":"铅山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.867345,28.293843],[117.879537382813,28.2904201484376],[117.870767851563,28.2816506171875],[117.867345,28.293843]]],[[[117.867345,28.293843],[117.843375273438,28.2739308906251],[117.841475859375,28.2553298164063],[117.872808867188,28.2293044257813],[117.909244414063,28.1780178046876],[117.95080203125,28.1822536445313],[117.96673953125,28.1252443671875],[117.94302859375,28.0838430000001],[117.968267851563,28.0397682929688],[117.981881132813,28.0083815742188],[117.992808867188,27.9993044257813],[117.997345,27.993843],[117.991793242188,27.9893971992188],[117.982896757813,27.9782888007813],[117.969249296875,27.9673610664063],[117.927222929688,27.9725905585938],[117.902896757813,27.9582888007813],[117.875206328125,27.9466213203125],[117.851890898438,27.9495217109375],[117.842896757813,27.9382888007813],[117.77798953125,27.8988649726563],[117.783018828125,27.85843284375],[117.74000125,27.8072682929688],[117.718472929688,27.809946515625],[117.702896757813,27.8293971992188],[117.688912382813,27.8382888007813],[117.677345,27.823843],[117.67170046875,27.8281984687501],[117.65427859375,27.8507741523438],[117.608365507813,27.8695632148438],[117.58103640625,27.9049733710938],[117.583082304688,27.918843],[117.58093875,27.9333498359376],[117.56170046875,27.94819846875],[117.548526640625,27.96526878125],[117.518424101563,27.98819846875],[117.477974882813,27.9357936835938],[117.45205203125,27.93962425],[117.437345,27.933843],[117.429132109375,27.9395143867188],[117.438023710938,27.9791701484375],[117.467154570313,28.0239064765625],[117.457345,28.063843],[117.466846953125,28.0692629218751],[117.477999296875,28.098843],[117.463922148438,28.1361891914062],[117.477345,28.143843],[117.480767851563,28.1316506171876],[117.489537382813,28.1404201484376],[117.477345,28.143843],[117.482530546875,28.1619802070313],[117.50334109375,28.1786428046875],[117.49134890625,28.1990431953126],[117.511793242188,28.2154128242188],[117.49787234375,28.23730003125],[117.469298125,28.2493410468751],[117.47302859375,28.2793410468751],[117.442896757813,28.292036359375],[117.451793242188,28.3093971992188],[117.462896757813,28.3182888007813],[117.478912382813,28.3382888007813],[117.492896757813,28.3293971992188],[117.51634890625,28.3001125312501],[117.531793242188,28.3193971992188],[117.537345,28.323843],[117.606827421875,28.2900295234376],[117.603531523438,28.3100295234375],[117.585347929688,28.321235578125],[117.641842070313,28.3404885078125],[117.651158476563,28.3800295234375],[117.663531523438,28.3876564765625],[117.675855742188,28.4076564765626],[117.714229765625,28.3998903632813],[117.71047,28.387817609375],[117.727345,28.3838430000001],[117.746158476563,28.37085471875],[117.73326296875,28.3133205390625],[117.76326296875,28.3179274726563],[117.778013945313,28.3573561835938],[117.791676054688,28.3375710273438],[117.807345,28.3410842109375],[117.822345,28.3377223945313],[117.842159453125,28.3421633125],[117.86326296875,28.3097585273438],[117.867345,28.293843]]]]}},{"type":"Feature","properties":{"name":"上饶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.867345,28.293843],[117.870767851563,28.2816506171875],[117.879537382813,28.2904201484376],[117.86326296875,28.3097585273438],[117.842159453125,28.3421633125],[117.822345,28.3377223945313],[117.807345,28.3410842109375],[117.791676054688,28.3375710273438],[117.778013945313,28.3573561835938],[117.76326296875,28.3179274726563],[117.73326296875,28.3133205390625],[117.746158476563,28.37085471875],[117.727345,28.3838430000001],[117.749151640625,28.437036359375],[117.773053007813,28.4568923164063],[117.771685820313,28.4703054023438],[117.736920195313,28.4667604804688],[117.722345,28.5003713203125],[117.702022734375,28.4983010078126],[117.692808867188,28.5034596992188],[117.725933867188,28.5309792304688],[117.711807890625,28.5685768867188],[117.713365507813,28.583843],[117.710909453125,28.6079494453125],[117.741363554688,28.6502712226563],[117.721910429688,28.6482888007813],[117.710753203125,28.6863014960938],[117.717345,28.703843],[117.717345,28.713843],[117.730152617188,28.718843],[117.717345,28.7238430000001],[117.726085234375,28.7429494453125],[117.713761015625,28.778843],[117.72406375,28.8088430000001],[117.718819609375,28.824106671875],[117.742061796875,28.8408351875],[117.776451445313,28.8251027656251],[117.803951445313,28.834546125],[117.841065703125,28.817563703125],[117.877345,28.813843],[117.881588164063,28.7735500312501],[117.903531523438,28.7600295234375],[117.911158476563,28.7476564765626],[117.9351575,28.7328688789063],[117.929229765625,28.713843],[117.93857546875,28.6838430000001],[117.923531523438,28.6355495429688],[117.963531523438,28.6376564765625],[117.992017851563,28.6576564765625],[118.026944609375,28.6452761054688],[118.017345,28.623843],[118.021881132813,28.5783815742188],[118.04150515625,28.5620803046875],[118.043853789063,28.5390261054688],[117.988687773438,28.5050002265625],[117.972345,28.4673146796875],[117.958873320313,28.4983815742187],[117.928736601563,28.4592507148438],[117.933365507813,28.413843],[117.92947390625,28.3756642890625],[117.972808867188,28.3883815742188],[117.994522734375,28.4145241523438],[118.027345,28.393843],[118.03197390625,28.37847190625],[118.06271609375,28.3592140937501],[118.124576445313,28.3062429023438],[118.196944609375,28.3260500312501],[118.17295046875,28.28304221875],[118.1965246875,28.218843],[118.178277617188,28.1691579414063],[118.19197390625,28.1384719062501],[118.203472929688,28.1178615546876],[118.201163359375,28.0891677070313],[118.21271609375,28.07921409375],[118.217345,28.063843],[118.192891875,28.053794171875],[118.147345,28.0627956367188],[118.117779570313,28.0569533515626],[118.126041289063,28.0151491523437],[118.093892851563,28.0215016914063],[118.082984648438,27.9670876289062],[118.063170195313,27.9796681953126],[118.0319153125,27.9917214179688],[118.002965117188,27.986001203125],[117.997345,27.993843],[117.992808867188,27.9993044257813],[117.981881132813,28.0083815742188],[117.968267851563,28.0397682929688],[117.94302859375,28.0838430000001],[117.96673953125,28.1252443671875],[117.95080203125,28.1822536445313],[117.909244414063,28.1780178046876],[117.872808867188,28.2293044257813],[117.841475859375,28.2553298164063],[117.843375273438,28.2739308906251],[117.867345,28.293843]]]]}},{"type":"Feature","properties":{"name":"万年县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.133922148438,28.8060353828125],[117.137345,28.793843],[117.125152617188,28.7972658515625],[117.133922148438,28.8060353828125]]],[[[116.85298953125,28.88948753125],[116.86920046875,28.8498805976563],[116.912345,28.8759059882813],[116.956143828125,28.84948753125],[116.963428984375,28.8587575507813],[116.951173125,28.879077375],[116.957345,28.8838430000001],[116.97326296875,28.8797585273438],[116.981676054688,28.8675710273438],[116.995694609375,28.8707155585938],[117.01142703125,28.8479274726562],[117.02326296875,28.8397585273438],[117.041636992188,28.807563703125],[117.0636340625,28.8124953437501],[117.11326296875,28.7997585273438],[117.12142703125,28.7879274726563],[117.157022734375,28.778794171875],[117.178995390625,28.7469704414063],[117.192345,28.7499636054688],[117.202345,28.7477223945312],[117.212345,28.7499636054688],[117.222345,28.7477223945312],[117.233116484375,28.7501369453125],[117.24142703125,28.7279274726563],[117.247345,28.7238430000001],[117.25392703125,28.7081764960938],[117.225406523438,28.697505109375],[117.22107546875,28.6781716132812],[117.246827421875,28.6603908515625],[117.231046171875,28.6494924140625],[117.237345,28.623843],[117.221944609375,28.62976096875],[117.210675078125,28.603012921875],[117.154049101563,28.5686183906251],[117.137345,28.563843],[117.125455351563,28.5781569648438],[117.05330203125,28.6094509101562],[117.039874296875,28.60808128125],[117.044620390625,28.5615407539063],[117.02818484375,28.5328444648438],[117.011881132813,28.5193044257812],[116.997345,28.5018044257813],[116.965167265625,28.5405397773438],[116.932808867188,28.5283815742188],[116.897345,28.523843],[116.893170195313,28.5396681953125],[116.881519804688,28.5580178046876],[116.871182890625,28.6095925117188],[116.819561796875,28.646587140625],[116.836431914063,28.6731569648438],[116.827003203125,28.7208864570313],[116.843082304688,28.7177101875],[116.851519804688,28.7474660468751],[116.811519804688,28.7580178046876],[116.7827746875,28.7762673164062],[116.777345,28.783843],[116.78298953125,28.78819846875],[116.79170046875,28.79948753125],[116.839327421875,28.81897971875],[116.816285429688,28.8571779609376],[116.809732695313,28.9015334296875],[116.85298953125,28.88948753125]]]]}},{"type":"Feature","properties":{"name":"信州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.107345,28.5738430000001],[118.095152617188,28.5704201484375],[118.103922148438,28.5616506171876],[118.12205203125,28.56806175],[118.132955351563,28.5696730781251],[118.14170046875,28.51819846875],[118.153741484375,28.5089064765625],[118.129796171875,28.4504030585938],[118.092735625,28.4280471015625],[118.082345,28.4295827460938],[118.067345,28.4273659492188],[118.051754179688,28.4296706367188],[118.04298953125,28.3981984687501],[118.027345,28.393843],[117.994522734375,28.4145241523438],[117.972808867188,28.3883815742188],[117.92947390625,28.3756642890625],[117.933365507813,28.413843],[117.928736601563,28.4592507148438],[117.958873320313,28.4983815742187],[117.972345,28.4673146796875],[117.988687773438,28.5050002265625],[118.043853789063,28.5390261054688],[118.04150515625,28.5620803046875],[118.021881132813,28.5783815742188],[118.017345,28.623843],[118.023170195313,28.6196681953126],[118.037345,28.5998903632813],[118.053761015625,28.6227956367188],[118.076553984375,28.5909914375],[118.123170195313,28.6180178046875],[118.132725859375,28.6313503242188],[118.137345,28.6138430000001],[118.13287234375,28.5916994453125],[118.110704375,28.580483625],[118.107345,28.5738430000001]]]]}},{"type":"Feature","properties":{"name":"余干县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.407345,29.043843],[116.423170195313,29.0396681953126],[116.461519804688,29.0080178046875],[116.48330203125,28.9996169257813],[116.493331328125,28.948843],[116.486593046875,28.9147414375],[116.512633085938,28.919887921875],[116.551798125,28.903794171875],[116.592345,28.9118068671875],[116.612345,28.9078542304688],[116.622779570313,28.90991721875],[116.641910429688,28.8977687812501],[116.652779570313,28.8999172187501],[116.680694609375,28.882192609375],[116.721363554688,28.8665065742188],[116.731519804688,28.8280178046876],[116.75166140625,28.8135817695313],[116.761519804688,28.7880178046876],[116.777345,28.783843],[116.7827746875,28.7762673164062],[116.811519804688,28.7580178046876],[116.851519804688,28.7474660468751],[116.843082304688,28.7177101875],[116.827003203125,28.7208864570313],[116.836431914063,28.6731569648438],[116.819561796875,28.646587140625],[116.871182890625,28.6095925117188],[116.881519804688,28.5580178046876],[116.893170195313,28.5396681953125],[116.897345,28.523843],[116.893160429688,28.5075392890625],[116.87326296875,28.5119997382813],[116.88142703125,28.4879274726563],[116.901358671875,28.4573268867188],[116.859132109375,28.4281716132813],[116.86795046875,28.3888430000001],[116.819991484375,28.379477765625],[116.79142703125,28.3597585273438],[116.787345,28.353843],[116.781519804688,28.3580178046875],[116.773170195313,28.3696681953125],[116.751519804688,28.3780178046876],[116.7375403125,28.4142653632813],[116.703170195313,28.3880178046875],[116.644346953125,28.3762258125],[116.615655546875,28.394438703125],[116.572628203125,28.3859352851563],[116.563170195313,28.4036843085938],[116.585186796875,28.4194631171875],[116.581358671875,28.438843],[116.585308867188,28.4588430000001],[116.57955203125,28.487983625],[116.557345,28.4938430000001],[116.462154570313,28.5986525703125],[116.452535429688,28.6190334296875],[116.441773710938,28.6393752265626],[116.442740507813,28.663843],[116.4408996875,28.7103688789063],[116.383077421875,28.7376540351563],[116.37252078125,28.7490480781251],[116.362345,28.7486452460938],[116.334224882813,28.7497585273438],[116.317345,28.743843],[116.309263945313,28.7861598945313],[116.272535429688,28.7990334296876],[116.241358671875,28.8089040351563],[116.2429309375,28.8486647773438],[116.2227746875,28.8673439765625],[116.297345,28.8738430000001],[116.32326296875,28.8779274726563],[116.348082304688,28.8940920234375],[116.36455203125,28.9381056953126],[116.39326296875,28.9579274726563],[116.403975859375,28.9865651679688],[116.3988684375,29.0093410468751],[116.407345,29.043843]]],[[[116.407345,29.043843],[116.397345,29.043843],[116.397345,29.053843],[116.407345,29.053843],[116.407345,29.043843]]]]}},{"type":"Feature","properties":{"name":"弋阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.477345,28.143843],[117.489537382813,28.1404201484376],[117.480767851563,28.1316506171876],[117.477345,28.143843]]],[[[117.477345,28.143843],[117.463922148438,28.1361891914062],[117.477999296875,28.098843],[117.466846953125,28.0692629218751],[117.457345,28.063843],[117.441656523438,28.102798078125],[117.41869265625,28.1205202460938],[117.402345,28.1181032539063],[117.383922148438,28.1208254218751],[117.352735625,28.1396388984376],[117.323883085938,28.135376203125],[117.31298953125,28.1494875312501],[117.270084257813,28.1585402656251],[117.280201445313,28.2269972968751],[117.293140898438,28.248452375],[117.290557890625,28.265923078125],[117.26170046875,28.28819846875],[117.25298953125,28.3059206367187],[117.283170195313,28.3182717109375],[117.2815246875,28.3293825507813],[117.31298953125,28.34819846875],[117.32422,28.3885353828125],[117.308297148438,28.4008278632813],[117.324444609375,28.4419069648438],[117.305982695313,28.5379445625],[117.268824492188,28.5995436835938],[117.237345,28.623843],[117.231046171875,28.6494924140625],[117.246827421875,28.6603908515625],[117.22107546875,28.6781716132812],[117.225406523438,28.697505109375],[117.25392703125,28.7081764960938],[117.247345,28.7238430000001],[117.269386015625,28.7299806953125],[117.29298953125,28.74819846875],[117.307764921875,28.7673415351563],[117.38170046875,28.77948753125],[117.397345,28.783843],[117.391217070313,28.7588845039063],[117.394586210938,28.743843],[117.389132109375,28.7195143867187],[117.40326296875,28.7097585273438],[117.412271757813,28.6856716132813],[117.443746367188,28.6400881171875],[117.523873320313,28.6606496406251],[117.5620715625,28.6902565742188],[117.577345,28.6838430000001],[117.581519804688,28.6780178046876],[117.621519804688,28.6548268867188],[117.613170195313,28.6180178046875],[117.601519804688,28.5996681953125],[117.591080351563,28.5726052070313],[117.551519804688,28.5496681953126],[117.543170195313,28.5380178046875],[117.509332304688,28.5290895820313],[117.513331328125,28.508843],[117.5077746875,28.4807033515625],[117.524664335938,28.4685964179688],[117.483170195313,28.4525905585938],[117.492379179688,28.43651878125],[117.527345,28.4143190742188],[117.553092070313,28.4306667304688],[117.570816679688,28.3409670234376],[117.541519804688,28.3296681953125],[117.537345,28.323843],[117.531793242188,28.3193971992188],[117.51634890625,28.3001125312501],[117.492896757813,28.3293971992188],[117.478912382813,28.3382888007813],[117.462896757813,28.3182888007813],[117.451793242188,28.3093971992188],[117.442896757813,28.292036359375],[117.47302859375,28.2793410468751],[117.469298125,28.2493410468751],[117.49787234375,28.23730003125],[117.511793242188,28.2154128242188],[117.49134890625,28.1990431953126],[117.50334109375,28.1786428046875],[117.482530546875,28.1619802070313],[117.477345,28.143843]]]]}},{"type":"Feature","properties":{"name":"德兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.097345,29.003843],[118.097345,29.013843],[118.107345,29.013843],[118.107345,29.003843],[118.097345,29.003843]]],[[[118.097345,29.003843],[118.097345,28.9938430000001],[118.072769804688,28.9779079414063],[118.061705351563,28.9798146796876],[118.049654570313,28.9494850898438],[118.054605742188,28.9207057929688],[117.975181914063,28.934380109375],[117.963077421875,28.9181081367188],[117.946246367188,28.9055886054688],[117.905733671875,28.9125637031251],[117.892345,28.9305641914063],[117.88291140625,28.9178835273438],[117.872095976563,28.9197463203126],[117.853077421875,28.9131325507812],[117.893077421875,28.8895778632813],[117.901612578125,28.8781081367188],[117.913077421875,28.8695778632813],[117.921612578125,28.8404225898438],[117.881612578125,28.8295778632813],[117.877345,28.813843],[117.841065703125,28.817563703125],[117.803951445313,28.834546125],[117.776451445313,28.8251027656251],[117.742061796875,28.8408351875],[117.718819609375,28.824106671875],[117.72406375,28.8088430000001],[117.713761015625,28.778843],[117.726085234375,28.7429494453125],[117.717345,28.7238430000001],[117.717345,28.713843],[117.717345,28.703843],[117.7021496875,28.7094216132813],[117.688643828125,28.6937429023438],[117.612154570313,28.747973859375],[117.577345,28.6838430000001],[117.5620715625,28.6902565742188],[117.523873320313,28.6606496406251],[117.443746367188,28.6400881171875],[117.412271757813,28.6856716132813],[117.40326296875,28.7097585273438],[117.389132109375,28.7195143867187],[117.394586210938,28.743843],[117.391217070313,28.7588845039063],[117.397345,28.783843],[117.389766875,28.8299636054688],[117.40990359375,28.8269875312501],[117.446676054688,28.8414430976563],[117.544210234375,28.8112258125001],[117.5386340625,28.8489626289063],[117.553326445313,28.8993483710938],[117.518360625,28.9136574531251],[117.48298953125,28.95948753125],[117.460611601563,28.9686452460938],[117.48478640625,28.9873073554688],[117.480362578125,29.0172658515626],[117.498140898438,29.0467360664063],[117.51298953125,29.05819846875],[117.517345,29.063843],[117.5756653125,29.0203102851563],[117.592935820313,29.0625075507813],[117.617345,29.0308864570313],[117.644156523438,29.0656252265625],[117.695499296875,29.0805934882813],[117.760660429688,29.0709645820313],[117.79162234375,29.0948635078126],[117.80170046875,29.11948753125],[117.817345,29.123843],[117.820767851563,29.1116506171875],[117.829537382813,29.1204201484376],[117.817345,29.123843],[117.828995390625,29.1407155585938],[117.857672148438,29.1342873359376],[117.884459257813,29.1517311835938],[117.905694609375,29.1469704414063],[117.927257109375,29.1781960273437],[117.955513945313,29.1887721992188],[117.98326296875,29.2079274726563],[117.993204375,29.2466823554688],[118.02326296875,29.2579274726563],[118.032345,29.2822048164063],[118.052623320313,29.2776589179688],[118.067345,29.283843],[118.075186796875,29.2782228828126],[118.070367460938,29.253843],[118.074361601563,29.2336330390625],[118.063170195313,29.2180178046875],[118.023189726563,29.2025978828125],[118.043350859375,29.1189235664063],[118.039014921875,29.0969826484375],[118.063170195313,29.0796681953126],[118.071519804688,29.0480178046875],[118.083170195313,29.0296681953125],[118.091519804688,29.0080178046875],[118.097345,29.003843]]]]}},{"type":"Feature","properties":{"name":"鄱阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.087345,29.703843],[117.075094023438,29.6560964179688],[117.05142703125,29.6397585273438],[117.04326296875,29.6279274726563],[117.024742460938,29.6151442695313],[117.0493371875,29.5150270820313],[117.035250273438,29.4521950507813],[117.068673125,29.4291164375],[117.05326296875,29.3879274726563],[117.034722929688,29.3594606757813],[117.06326296875,29.3397585273438],[117.067345,29.313843],[117.041519804688,29.2996681953125],[117.033170195313,29.2880178046876],[117.003873320313,29.2767189765625],[117.013331328125,29.2288430000001],[117.009967070313,29.211801984375],[117.028121367188,29.167622296875],[117.06224734375,29.1431618476563],[117.067345,29.123843],[117.062159453125,29.1057057929688],[117.040533476563,29.0883888984375],[117.045284453125,29.0502028632813],[117.020553007813,29.030395734375],[117.03341921875,29.0085085273438],[117.011793242188,28.9993971992187],[116.995269804688,28.96019065625],[116.963736601563,28.93493675],[116.957345,28.8838430000001],[116.951173125,28.879077375],[116.963428984375,28.8587575507813],[116.956143828125,28.84948753125],[116.912345,28.8759059882813],[116.86920046875,28.8498805976563],[116.85298953125,28.88948753125],[116.809732695313,28.9015334296875],[116.816285429688,28.8571779609376],[116.839327421875,28.81897971875],[116.79170046875,28.79948753125],[116.78298953125,28.78819846875],[116.777345,28.783843],[116.761519804688,28.7880178046876],[116.75166140625,28.8135817695313],[116.731519804688,28.8280178046876],[116.721363554688,28.8665065742188],[116.680694609375,28.882192609375],[116.652779570313,28.8999172187501],[116.641910429688,28.8977687812501],[116.622779570313,28.90991721875],[116.612345,28.9078542304688],[116.592345,28.9118068671875],[116.551798125,28.903794171875],[116.512633085938,28.919887921875],[116.486593046875,28.9147414375],[116.493331328125,28.948843],[116.48330203125,28.9996169257813],[116.461519804688,29.0080178046875],[116.423170195313,29.0396681953126],[116.407345,29.043843],[116.407345,29.053843],[116.397345,29.053843],[116.432896757813,29.0982888007813],[116.461793242188,29.1493971992188],[116.542896757813,29.1582888007813],[116.6390246875,29.2295998359375],[116.591793242188,29.2582888007813],[116.582896757813,29.2793971992188],[116.563057890625,29.2952834296875],[116.552896757813,29.3193971992188],[116.5355871875,29.348843],[116.55322390625,29.3788430000001],[116.541793242188,29.3982888007813],[116.532896757813,29.4193971992187],[116.521793242188,29.4282888007812],[116.512896757813,29.4522731757813],[116.539830351563,29.473843],[116.520533476563,29.4892971015625],[116.5277746875,29.5474831367187],[116.490553007813,29.577290265625],[116.502896757813,29.5982888007813],[116.507345,29.613843],[116.548736601563,29.5975710273438],[116.562735625,29.5996388984375],[116.602432890625,29.5756935859375],[116.636324492188,29.5895632148438],[116.65189578125,29.6097389960938],[116.677345,29.6038430000001],[116.710845976563,29.5942653632813],[116.722174101563,29.5673854804688],[116.746261015625,29.5974636054688],[116.764610625,29.5997463203125],[116.796920195313,29.5593971992188],[116.842896757813,29.5782888007813],[116.872769804688,29.6155959296875],[116.902896757813,29.6282888007813],[116.911793242188,29.6393971992188],[116.962896757813,29.6582888007812],[117.006558867188,29.6901833320313],[117.029527617188,29.6873268867188],[117.087345,29.703843]]]]}},{"type":"Feature","properties":{"name":"婺源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.817345,29.123843],[117.829537382813,29.1204201484376],[117.820767851563,29.1116506171875],[117.817345,29.123843]]],[[[117.817345,29.123843],[117.80170046875,29.11948753125],[117.79162234375,29.0948635078126],[117.760660429688,29.0709645820313],[117.695499296875,29.0805934882813],[117.644156523438,29.0656252265625],[117.617345,29.0308864570313],[117.592935820313,29.0625075507813],[117.5756653125,29.0203102851563],[117.517345,29.063843],[117.498531523438,29.0768312812501],[117.50361453125,29.0995143867188],[117.49142703125,29.1079274726563],[117.47896609375,29.1259767890625],[117.493565703125,29.1483962226563],[117.490079375,29.16394065625],[117.457345,29.1566017890626],[117.441676054688,29.1601149726563],[117.425250273438,29.13632346875],[117.380396757813,29.1551613593751],[117.383565703125,29.1692946601563],[117.367345,29.193843],[117.387398710938,29.2436330390625],[117.42298953125,29.25819846875],[117.44591921875,29.2720314765626],[117.427266875,29.3194850898438],[117.483990507813,29.3427028632813],[117.481607695313,29.358843],[117.484561796875,29.3788430000001],[117.481519804688,29.3994142890626],[117.50298953125,29.40819846875],[117.511754179688,29.4396706367188],[117.531832304688,29.4367018867188],[117.54170046875,29.44948753125],[117.5586340625,29.4625563789063],[117.572857695313,29.4809841132813],[117.598487578125,29.4771974921875],[117.61170046875,29.50948753125],[117.63298953125,29.51819846875],[117.65170046875,29.52948753125],[117.685894804688,29.539009015625],[117.697345,29.553843],[117.712261992188,29.5481081367188],[117.811099882813,29.5763307929687],[117.841983671875,29.5581764960938],[117.852628203125,29.5594997382813],[117.887345,29.5461550117188],[117.922061796875,29.5594997382813],[117.932706328125,29.5581764960938],[117.95373171875,29.5705373359376],[117.977345,29.5676003242188],[118.018370390625,29.5727028632813],[118.062135039063,29.5407350898438],[118.082345,29.5382204414063],[118.092799101563,29.5395217109375],[118.101793242188,29.5282888007813],[118.138931914063,29.4985500312501],[118.121676054688,29.4692018867188],[118.123590117188,29.4538430000001],[118.120709257813,29.4306838203126],[118.141793242188,29.4182888007813],[118.18099734375,29.4017702460938],[118.187345,29.393843],[118.191793242188,29.3882888007812],[118.203023710938,29.3792971015625],[118.201724882813,29.368843],[118.203023710938,29.3583962226563],[118.148428984375,29.2902223945313],[118.132345,29.2882204414063],[118.112345,29.290708234375],[118.092345,29.2882204414063],[118.072799101563,29.2906520820313],[118.067345,29.283843],[118.052623320313,29.2776589179688],[118.032345,29.2822048164063],[118.02326296875,29.2579274726563],[117.993204375,29.2466823554688],[117.98326296875,29.2079274726563],[117.955513945313,29.1887721992188],[117.927257109375,29.1781960273437],[117.905694609375,29.1469704414063],[117.884459257813,29.1517311835938],[117.857672148438,29.1342873359376],[117.828995390625,29.1407155585938],[117.817345,29.123843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"槐荫区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.977345,36.663843],[116.972999296875,36.6256496406251],[116.963013945313,36.6401137519532],[116.952345,36.6377223945313],[116.909312773438,36.647368390625],[116.914830351563,36.6227626777344],[116.892066679688,36.6176601386719],[116.862623320313,36.6300258613281],[116.852345,36.6277223945313],[116.83033328125,36.6326564765626],[116.817345,36.6138430000001],[116.811158476563,36.6176552558594],[116.800572539063,36.6487209296875],[116.815714140625,36.682524640625],[116.797345,36.6938430000001],[116.802354765625,36.7104897285156],[116.877345,36.743843],[116.925533476563,36.7403725410157],[116.915504179688,36.7198329902344],[116.933985625,36.7104836250001],[116.955167265625,36.6683205390625],[116.977345,36.663843]]]]}},{"type":"Feature","properties":{"name":"长清区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.077345,36.333843],[117.06298953125,36.2981996894531],[117.057345,36.293843],[116.96709109375,36.2425319648438],[116.952667265625,36.2592702460938],[116.942066679688,36.2584194160157],[116.922388945313,36.2693984199219],[116.887345,36.253843],[116.865494414063,36.2719924140625],[116.842735625,36.2993923164063],[116.815045195313,36.2965700507813],[116.779610625,36.3168642402344],[116.685855742188,36.2768874335938],[116.652808867188,36.2893056464844],[116.607345,36.293843],[116.599771757813,36.308813703125],[116.570704375,36.317202375],[116.563336210938,36.3317690253906],[116.54935671875,36.3249404121094],[116.533985625,36.3467263007813],[116.545269804688,36.3698329902344],[116.530704375,36.3772023750001],[116.527345,36.3838430000001],[116.530704375,36.4004836250001],[116.537345,36.413843],[116.547345,36.413843],[116.62197390625,36.4214553046875],[116.60271609375,36.4692153144532],[116.591641875,36.4890663886719],[116.613551054688,36.4988430000001],[116.611300078125,36.5268288398437],[116.62197390625,36.5392153144532],[116.64963015625,36.5515566230469],[116.66197390625,36.5792153144532],[116.68271609375,36.5884706855469],[116.69197390625,36.6092153144531],[116.746578398438,36.6216200996094],[116.77271609375,36.6684706855469],[116.78197390625,36.6892153144531],[116.797345,36.6938430000001],[116.815714140625,36.682524640625],[116.800572539063,36.6487209296875],[116.811158476563,36.6176552558594],[116.817345,36.6138430000001],[116.83041140625,36.5969118476563],[116.86478640625,36.5703786445313],[116.85818484375,36.5257070136719],[116.873878203125,36.5053774238281],[116.927345,36.483843],[116.953531523438,36.4700307441407],[116.961158476563,36.4476552558594],[116.998800078125,36.4348281074219],[117.013912382813,36.3888747382813],[117.007564726563,36.368501203125],[117.043531523438,36.3600307441407],[117.051158476563,36.3476552558594],[117.077345,36.333843]]]]}},{"type":"Feature","properties":{"name":"济阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.44326296875,37.1497585273438],[117.45142703125,37.1179274726562],[117.457345,37.1138430000001],[117.447022734375,37.0988930488282],[117.395513945313,37.0856740546876],[117.352584257813,37.0676430488281],[117.327345,37.0738430000001],[117.30170046875,37.0694863105469],[117.2736340625,37.0525551582032],[117.24170046875,37.0394863105469],[117.232066679688,36.9606423164062],[117.1821496875,36.9221120429687],[117.177345,36.893843],[117.16298953125,36.8681996894531],[117.14306765625,36.8528212714844],[117.129425078125,36.8194948554687],[117.11298953125,36.7981996894531],[117.077345,36.783843],[117.048526640625,36.7916555],[117.061090117188,36.8646535468751],[116.999088164063,36.8539784980469],[116.957345,36.863843],[116.950904570313,36.8681252265625],[116.960982695313,36.9081252265625],[116.920181914063,36.9352553535157],[116.926197539063,36.9591384101563],[116.891339140625,36.9678371406251],[116.877345,36.9938430000001],[116.88142703125,36.9997585273438],[116.89326296875,37.0079274726563],[116.90142703125,37.0197585273438],[116.939859648438,37.0296218085938],[116.910347929688,37.0749416328125],[116.913468046875,37.088843],[116.910968046875,37.09999534375],[117.001846953125,37.1223171210938],[117.022623320313,37.1176601386719],[117.037345,37.123843],[117.041983671875,37.1178359199219],[117.10298953125,37.1281996894531],[117.125889921875,37.1420131660157],[117.197735625,37.1313967109376],[117.223150664063,37.164321515625],[117.297921171875,37.185141828125],[117.32170046875,37.1994863105469],[117.34298953125,37.2081996894531],[117.35170046875,37.2194863105469],[117.36298953125,37.2281996894532],[117.374327421875,37.2428908515625],[117.397345,37.233843],[117.405513945313,37.2020119453125],[117.42326296875,37.1897585273438],[117.43142703125,37.1679274726563],[117.44326296875,37.1497585273438]]]]}},{"type":"Feature","properties":{"name":"历城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.200582304688,36.8596840644531],[117.212345,36.8582216621094],[117.222345,36.8594643378907],[117.232345,36.8582216621094],[117.247345,36.8600868964844],[117.262652617188,36.8581825996094],[117.320006132813,36.8829409003907],[117.341793242188,36.8262587714844],[117.332896757813,36.8082900214844],[117.309859648438,36.7898390937501],[117.331241484375,36.7727150703125],[117.333590117188,36.753843],[117.329796171875,36.723344953125],[117.364210234375,36.708843],[117.360748320313,36.6810048652344],[117.37322390625,36.64855003125],[117.350553007813,36.6303969550782],[117.3649621875,36.6058803535157],[117.306378203125,36.5326259589844],[117.329830351563,36.513843],[117.311793242188,36.4993959785157],[117.302896757813,36.4782900214844],[117.297345,36.473843],[117.249898710938,36.4420278144532],[117.23326296875,36.4179274726563],[117.20142703125,36.3997585273437],[117.17326296875,36.3579274726563],[117.13377078125,36.3431520820313],[117.127345,36.333843],[117.08923953125,36.3481618476563],[117.077345,36.333843],[117.051158476563,36.3476552558594],[117.043531523438,36.3600307441407],[117.007564726563,36.368501203125],[117.013912382813,36.3888747382813],[116.998800078125,36.4348281074219],[116.961158476563,36.4476552558594],[116.953531523438,36.4700307441407],[116.927345,36.483843],[116.93244265625,36.5031606269532],[116.957135039063,36.5208608222657],[116.972965117188,36.5177321601563],[116.981519804688,36.5296681953125],[117.013170195313,36.5480178046875],[117.021519804688,36.5596681953125],[117.037135039063,36.5708608222656],[117.052345,36.567855451172],[117.071724882813,36.5716847968751],[117.096763945313,36.5367519355469],[117.117345,36.5408193183594],[117.136871367188,36.5369606757813],[117.161519804688,36.5536830878907],[117.129869414063,36.5763674140626],[117.117345,36.593843],[117.1327746875,36.5984889960937],[117.131944609375,36.6088430000001],[117.132745390625,36.6188430000001],[117.128043242188,36.6774025703126],[117.1732825,36.6521608710938],[117.170753203125,36.683676984375],[117.140328398438,36.7098867011719],[117.112769804688,36.7076723457031],[117.0614465625,36.6674758125],[117.047345,36.683843],[117.043531523438,36.7100307441407],[117.021158476563,36.7176552558594],[117.013531523438,36.7474318671876],[117.065909453125,36.7652809882813],[117.077345,36.783843],[117.11298953125,36.7981996894531],[117.129425078125,36.8194948554687],[117.14306765625,36.8528212714844],[117.16298953125,36.8681996894531],[117.177345,36.893843],[117.20388796875,36.8862538886719],[117.200582304688,36.8596840644531]]]]}},{"type":"Feature","properties":{"name":"历下区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.170753203125,36.683676984375],[117.1732825,36.6521608710938],[117.128043242188,36.6774025703126],[117.132745390625,36.6188430000001],[117.131944609375,36.6088430000001],[117.1327746875,36.5984889960937],[117.117345,36.593843],[117.052569609375,36.6291542792969],[117.042345,36.6285451484375],[117.01361453125,36.6302577949219],[117.007345,36.663843],[117.015513945313,36.6756740546875],[117.047345,36.683843],[117.0614465625,36.6674758125],[117.112769804688,36.7076723457031],[117.140328398438,36.7098867011719],[117.170753203125,36.683676984375]]]]}},{"type":"Feature","properties":{"name":"平阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.533985625,36.3467263007813],[116.54935671875,36.3249404121094],[116.563336210938,36.3317690253906],[116.570704375,36.317202375],[116.599771757813,36.308813703125],[116.607345,36.293843],[116.598267851563,36.2829177070313],[116.581881132813,36.2693056464844],[116.572735625,36.2582936835938],[116.562022734375,36.2593849921875],[116.541158476563,36.2474355292969],[116.507799101563,36.2508351875001],[116.463267851563,36.213843],[116.514151640625,36.1715749335938],[116.510885039063,36.1395021796876],[116.527345,36.1378237128906],[116.561881132813,36.1413442207032],[116.552808867188,36.1083803535157],[116.541881132813,36.0993056464844],[116.527345,36.073843],[116.456236601563,36.0649489570313],[116.432857695313,36.0357546210938],[116.421632109375,36.0624025703125],[116.387100859375,36.0900563789063],[116.35736453125,36.0863576484375],[116.342896757813,36.0682900214844],[116.291514921875,36.0370803046875],[116.260738554688,36.0409084296875],[116.262965117188,36.058843],[116.259234648438,36.088843],[116.263013945313,36.1192348457032],[116.241793242188,36.1482900214844],[116.227345,36.173843],[116.27271609375,36.2284706855469],[116.319210234375,36.2885720039063],[116.39197390625,36.3192153144532],[116.43271609375,36.3284706855469],[116.443316679688,36.3407741523438],[116.47267703125,36.3384145332032],[116.50197390625,36.3792153144531],[116.527345,36.3838430000001],[116.530704375,36.3772023750001],[116.545269804688,36.3698329902344],[116.533985625,36.3467263007813]]]]}},{"type":"Feature","properties":{"name":"商河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.27326296875,37.5197585273438],[117.281676054688,37.5075722480469],[117.292388945313,37.5099733710938],[117.317345,37.503843],[117.31271609375,37.4884706855469],[117.272730742188,37.4764321113282],[117.29271609375,37.4592153144532],[117.302667265625,37.4476638007813],[117.360860625,37.45233909375],[117.362745390625,37.428843],[117.360416289063,37.3998146796876],[117.404586210938,37.3617568183594],[117.401163359375,37.3191664863282],[117.420484648438,37.3025221992188],[117.43408328125,37.2654946113281],[117.397345,37.233843],[117.374327421875,37.2428908515625],[117.36298953125,37.2281996894532],[117.35170046875,37.2194863105469],[117.34298953125,37.2081996894531],[117.32170046875,37.1994863105469],[117.297921171875,37.185141828125],[117.223150664063,37.164321515625],[117.197735625,37.1313967109376],[117.125889921875,37.1420131660157],[117.10298953125,37.1281996894531],[117.041983671875,37.1178359199219],[117.037345,37.123843],[117.041158476563,37.1300307441407],[117.054151640625,37.1380373359375],[117.049229765625,37.1538430000001],[117.057769804688,37.1812587714845],[117.026490507813,37.2005300117188],[117.02064578125,37.2193007636719],[117.034229765625,37.2386452460938],[117.023531523438,37.2700307441407],[116.994156523438,37.2881301093751],[116.978385039063,37.3360829902344],[116.993531523438,37.3576552558594],[117.001158476563,37.3900307441407],[117.014151640625,37.3980373359375],[117.004307890625,37.4296486640625],[117.027345,37.443843],[117.035933867188,37.4314003730469],[117.060875273438,37.4258095527344],[117.0977746875,37.4396169257813],[117.090338164063,37.4727895332032],[117.122345,37.4799636054688],[117.1436340625,37.4751918769532],[117.19326296875,37.4879274726563],[117.205513945313,37.5056740546876],[117.22326296875,37.5179274726563],[117.231695585938,37.5301430488281],[117.257345,37.523843],[117.27326296875,37.5197585273438]]]]}},{"type":"Feature","properties":{"name":"市中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.01361453125,36.6302577949219],[117.042345,36.6285451484375],[117.052569609375,36.6291542792969],[117.117345,36.593843],[117.129869414063,36.5763674140626],[117.161519804688,36.5536830878907],[117.136871367188,36.5369606757813],[117.117345,36.5408193183594],[117.096763945313,36.5367519355469],[117.071724882813,36.5716847968751],[117.052345,36.567855451172],[117.037135039063,36.5708608222656],[117.021519804688,36.5596681953125],[117.013170195313,36.5480178046875],[116.981519804688,36.5296681953125],[116.972965117188,36.5177321601563],[116.957135039063,36.5208608222657],[116.93244265625,36.5031606269532],[116.927345,36.483843],[116.873878203125,36.5053774238281],[116.85818484375,36.5257070136719],[116.86478640625,36.5703786445313],[116.83041140625,36.5969118476563],[116.817345,36.6138430000001],[116.83033328125,36.6326564765626],[116.852345,36.6277223945313],[116.862623320313,36.6300258613281],[116.892066679688,36.6176601386719],[116.914830351563,36.6227626777344],[116.909312773438,36.647368390625],[116.952345,36.6377223945313],[116.963013945313,36.6401137519532],[116.972999296875,36.6256496406251],[116.977345,36.663843],[117.007345,36.663843],[117.01361453125,36.6302577949219]]]]}},{"type":"Feature","properties":{"name":"天桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.061090117188,36.8646535468751],[117.048526640625,36.7916555],[117.077345,36.783843],[117.065909453125,36.7652809882813],[117.013531523438,36.7474318671876],[117.021158476563,36.7176552558594],[117.043531523438,36.7100307441407],[117.047345,36.683843],[117.015513945313,36.6756740546875],[117.007345,36.663843],[116.977345,36.663843],[116.955167265625,36.6683205390625],[116.933985625,36.7104836250001],[116.915504179688,36.7198329902344],[116.925533476563,36.7403725410157],[116.877345,36.743843],[116.8558215625,36.776411359375],[116.878663359375,36.8307888007813],[116.918995390625,36.8217482734375],[116.93142703125,36.8397585273438],[116.95326296875,36.8479274726563],[116.957345,36.863843],[116.999088164063,36.8539784980469],[117.061090117188,36.8646535468751]]]]}},{"type":"Feature","properties":{"name":"章丘市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.537345,36.933843],[117.533922148438,36.9460353828125],[117.525152617188,36.9372658515626],[117.54170046875,36.9281996894532],[117.565518828125,36.918452375],[117.583375273438,36.8888430000001],[117.563761015625,36.8563271308594],[117.6160559375,36.8175551582032],[117.6672278125,36.7869521308594],[117.689073515625,36.7586452460938],[117.743746367188,36.7493581367188],[117.707345,36.6938430000001],[117.700704375,36.690483625],[117.684503203125,36.6584548164062],[117.707345,36.6538430000001],[117.701724882813,36.6088442207032],[117.704039335938,36.59022971875],[117.691202421875,36.5683925605469],[117.717345,36.563843],[117.717345,36.5438430000001],[117.737345,36.5438430000001],[117.737345,36.523843],[117.702379179688,36.5180995917969],[117.666148710938,36.5234535957032],[117.622735625,36.5496401191407],[117.603922148438,36.5468593574219],[117.543516875,36.5104201484375],[117.49170046875,36.4994863105469],[117.475553007813,36.4785634589844],[117.406578398438,36.4687587714844],[117.378863554688,36.4328542304688],[117.337345,36.4638430000001],[117.333228789063,36.4710610175782],[117.304996367188,36.4604201484375],[117.297345,36.473843],[117.302896757813,36.4782900214844],[117.311793242188,36.4993959785157],[117.329830351563,36.513843],[117.306378203125,36.5326259589844],[117.3649621875,36.6058803535157],[117.350553007813,36.6303969550782],[117.37322390625,36.64855003125],[117.360748320313,36.6810048652344],[117.364210234375,36.708843],[117.329796171875,36.723344953125],[117.333590117188,36.753843],[117.331241484375,36.7727150703125],[117.309859648438,36.7898390937501],[117.332896757813,36.8082900214844],[117.341793242188,36.8262587714844],[117.320006132813,36.8829409003907],[117.262652617188,36.8581825996094],[117.247345,36.8600868964844],[117.232345,36.8582216621094],[117.222345,36.8594643378907],[117.212345,36.8582216621094],[117.200582304688,36.8596840644531],[117.20388796875,36.8862538886719],[117.177345,36.893843],[117.1821496875,36.9221120429687],[117.232066679688,36.9606423164062],[117.24170046875,37.0394863105469],[117.2736340625,37.0525551582032],[117.30170046875,37.0694863105469],[117.327345,37.0738430000001],[117.323892851563,37.0372927070313],[117.304957304688,37.0273195625],[117.330797148438,37.0072927070313],[117.36927859375,36.9992714667969],[117.35826296875,36.9747585273437],[117.389698515625,36.9503932929688],[117.463892851563,36.9572927070313],[117.501221953125,36.9754701972657],[117.5117590625,36.9554604316407],[117.543765898438,36.9829421210938],[117.56037234375,36.9459731269531],[117.537345,36.933843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.397345,36.3538430000001],[120.385152617188,36.3572658515625],[120.393922148438,36.3660353828126],[120.397345,36.3538430000001]]],[[[120.397345,36.3538430000001],[120.4357825,36.3355934882813],[120.46158328125,36.3428444648437],[120.476158476563,36.3200783515625],[120.517345,36.3316530585938],[120.532345,36.3274379707032],[120.548678007813,36.3320278144532],[120.567345,36.323843],[120.576363554688,36.2864223457032],[120.556475859375,36.2586806464844],[120.501597929688,36.2476784492188],[120.477345,36.213843],[120.463350859375,36.207837140625],[120.426651640625,36.1998488593751],[120.401627226563,36.2374806953125],[120.355299101563,36.2258083320312],[120.347345,36.213843],[120.302296171875,36.2493849921875],[120.277471953125,36.2216005683594],[120.3115246875,36.1911745429688],[120.270494414063,36.1791237617188],[120.25209109375,36.1997219062501],[120.22259890625,36.1979640937501],[120.207056914063,36.2153591132813],[120.142628203125,36.1885622382813],[120.127345,36.183843],[120.121529570313,36.1883315253907],[120.123160429688,36.1993544746094],[120.111529570313,36.2083315253907],[120.113082304688,36.218843],[120.110128203125,36.2388430000001],[120.113082304688,36.258843],[120.111519804688,36.2694130683594],[120.139737578125,36.2809621406251],[120.195850859375,36.3225624824219],[120.207345,36.363843],[120.212628203125,36.3685622382813],[120.226011992188,36.3977211738282],[120.256783476563,36.3632802558594],[120.284957304688,36.3381044746094],[120.331080351563,36.3408534980469],[120.342061796875,36.3285622382813],[120.38662234375,36.3191237617188],[120.397345,36.3538430000001]],[[120.285152617188,36.2672658515625],[120.297345,36.263843],[120.293922148438,36.2760353828125],[120.285152617188,36.2672658515625]]]]}},{"type":"Feature","properties":{"name":"黄岛区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.217345,35.943843],[120.21326296875,35.9279274726563],[120.20142703125,35.9197585273438],[120.180714140625,35.8897585273438],[120.170201445313,35.899009015625],[120.19142703125,35.9297585273438],[120.217345,35.943843]]],[[[120.247345,35.9638430000001],[120.247345,35.9738430000001],[120.257345,35.9738430000001],[120.257345,35.9638430000001],[120.247345,35.9638430000001]]],[[[120.257345,35.9738430000001],[120.26099734375,35.9919423652344],[120.273580351563,35.9857973457032],[120.282642851563,36.017202375],[120.3098840625,36.0086269355469],[120.293829375,35.9768935371094],[120.272330351563,35.9663942695313],[120.257345,35.9738430000001]]],[[[120.247345,35.9638430000001],[120.243985625,35.9572023750001],[120.217345,35.943843],[120.21326296875,35.9497585273438],[120.1937903125,35.9579274726563],[120.157345,35.9338430000001],[120.153077421875,35.9395778632813],[120.129761992188,35.948843],[120.13330203125,35.9694106269531],[120.116822539063,35.9816713691406],[120.08263796875,35.9679311347656],[120.045513945313,35.9743227363281],[120.013077421875,36.0057643867188],[120.074625273438,36.0184267402344],[120.059859648438,36.0294106269532],[120.067315703125,36.0727284980469],[120.04310671875,36.111849591797],[120.087345,36.1238430000001],[120.097345,36.1238430000001],[120.10298953125,36.1194863105469],[120.11170046875,36.0981996894531],[120.14298953125,36.0894863105469],[120.17170046875,36.0681996894531],[120.235640898438,36.0591103339844],[120.220260039063,36.0215297675781],[120.18298953125,35.9927614570313],[120.21298953125,35.9981996894532],[120.245850859375,36.0180226875001],[120.231353789063,35.968296125],[120.247345,35.9638430000001]]]]}},{"type":"Feature","properties":{"name":"即墨市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.961910429688,36.4265395332032],[120.967345,36.413843],[120.944346953125,36.417895734375],[120.961910429688,36.4265395332032]]],[[[120.993922148438,36.4960353828125],[120.997345,36.483843],[120.985152617188,36.4872658515626],[120.993922148438,36.4960353828125]]],[[[120.897345,36.563843],[120.885152617188,36.5604201484376],[120.893922148438,36.5516506171875],[120.971529570313,36.5575112128906],[120.9726575,36.5386061835938],[120.950933867188,36.5075075507813],[120.95318484375,36.4697341132813],[120.932628203125,36.4585622382813],[120.9014465625,36.4489333320313],[120.903194609375,36.4196059394531],[120.892061796875,36.3991237617188],[120.878297148438,36.3691237617188],[120.8520325,36.3985964179688],[120.853194609375,36.4180800605469],[120.842061796875,36.4385622382813],[120.82724734375,36.4708400703125],[120.738531523438,36.4570156074219],[120.682633085938,36.3769887519532],[120.725191679688,36.3389614082032],[120.662061796875,36.3291237617188],[120.657345,36.323843],[120.630162382813,36.3266591621094],[120.622345,36.3466005683594],[120.614527617188,36.3266591621094],[120.567345,36.323843],[120.548678007813,36.3320278144532],[120.532345,36.3274379707032],[120.517345,36.3316530585938],[120.476158476563,36.3200783515625],[120.46158328125,36.3428444648437],[120.4357825,36.3355934882813],[120.397345,36.3538430000001],[120.393922148438,36.3660353828126],[120.385152617188,36.3572658515625],[120.397345,36.3538430000001],[120.38662234375,36.3191237617188],[120.342061796875,36.3285622382813],[120.331080351563,36.3408534980469],[120.284957304688,36.3381044746094],[120.256783476563,36.3632802558594],[120.226011992188,36.3977211738282],[120.212628203125,36.3685622382813],[120.207345,36.363843],[120.16685671875,36.3742324042969],[120.147789335938,36.4035182929688],[120.155709257813,36.438843],[120.12970828125,36.4485707832032],[120.14326296875,36.4579274726563],[120.15142703125,36.4697585273438],[120.157345,36.473843],[120.1805871875,36.478843],[120.157345,36.483843],[120.151217070313,36.5088014960938],[120.153565703125,36.5192897773438],[120.135616484375,36.5468544746094],[120.15142703125,36.5697585273438],[120.188370390625,36.5908437324219],[120.212271757813,36.62546409375],[120.239141875,36.6314882636719],[120.257345,36.623843],[120.261832304688,36.6180287910156],[120.272345,36.6195815253907],[120.287642851563,36.6173207832032],[120.362843046875,36.6296742988281],[120.371832304688,36.6180287910156],[120.393736601563,36.6212648750001],[120.4652746875,36.6075124335938],[120.506378203125,36.6323073554688],[120.532178984375,36.6123928046875],[120.5436340625,36.5712624335938],[120.58252078125,36.6000942207031],[120.591832304688,36.5880287910156],[120.602345,36.5895815253907],[120.61263796875,36.5880605292969],[120.627345,36.593843],[120.63297,36.5736354804688],[120.69298953125,36.5981996894531],[120.712613554688,36.6236220527344],[120.787345,36.593843],[120.797345,36.5798903632813],[120.807345,36.593843],[120.823985625,36.5972023750001],[120.852476835938,36.6113649726563],[120.887203398438,36.5937953925782],[120.879420195313,36.5778530097656],[120.893985625,36.570483625],[120.897345,36.563843]]]]}},{"type":"Feature","properties":{"name":"胶南市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.917345,35.633843],[119.929537382813,35.6304201484375],[119.920767851563,35.6216506171875],[119.917345,35.633843]]],[[[120.184732695313,35.7610524726563],[120.177345,35.7438430000001],[120.153350859375,35.749829328125],[120.168516875,35.787837140625],[120.184732695313,35.7610524726563]]],[[[119.917345,35.633843],[119.892061796875,35.6291237617188],[119.865513945313,35.6146974921875],[119.85209109375,35.6297219062501],[119.83209109375,35.6285305],[119.82209109375,35.63972190625],[119.797886992188,35.6382790351563],[119.760933867188,35.5801784492188],[119.7626575,35.6090688300781],[119.751456328125,35.6296840644532],[119.729039335938,35.6283473945313],[119.669386015625,35.5959340644532],[119.647345,35.603843],[119.643922148438,35.6160353828125],[119.635152617188,35.6072658515626],[119.647345,35.603843],[119.647345,35.593843],[119.61982546875,35.5998451972657],[119.602345,35.5984413886719],[119.5923059375,35.5992482734375],[119.537345,35.593843],[119.537345,35.603843],[119.517345,35.603843],[119.512139921875,35.6989540839844],[119.517345,35.723843],[119.561793242188,35.7182900214844],[119.621793242188,35.7172206855469],[119.586671171875,35.7652968574219],[119.613248320313,35.7865785957032],[119.610650664063,35.80745628125],[119.625357695313,35.8324697089844],[119.662896757813,35.8482900214844],[119.685479765625,35.8615627265625],[119.712345,35.8582216621094],[119.727779570313,35.8601406074219],[119.721241484375,35.9127150703125],[119.701793242188,35.9282900214844],[119.672896757813,35.997407453125],[119.707345,36.0438430000001],[119.744039335938,36.0204982734376],[119.771890898438,36.0170339179687],[119.781890898438,36.0295217109375],[119.803702421875,36.0268080878906],[119.82736453125,36.0563576484375],[119.852706328125,36.0595095039063],[119.872154570313,36.0480776191406],[119.951690703125,36.0707900214844],[119.972799101563,36.0681642890625],[119.981793242188,36.0793959785157],[120.003248320313,36.0965785957032],[120.001085234375,36.1139833808594],[120.01334109375,36.1430727363281],[120.052345,36.1382216621094],[120.069249296875,36.1403237128906],[120.082896757813,36.1293959785156],[120.087345,36.1238430000001],[120.04310671875,36.111849591797],[120.067315703125,36.0727284980469],[120.059859648438,36.0294106269532],[120.074625273438,36.0184267402344],[120.013077421875,36.0057643867188],[120.045513945313,35.9743227363281],[120.08263796875,35.9679311347656],[120.116822539063,35.9816713691406],[120.13330203125,35.9694106269531],[120.129761992188,35.948843],[120.153077421875,35.9395778632813],[120.157345,35.9338430000001],[120.1525403125,35.9165969062501],[120.126485625,35.9204482246094],[120.08298953125,35.8881996894532],[120.059171171875,35.878452375],[120.027579375,35.8260781074219],[120.0361340625,35.7681874824219],[120.000054960938,35.7214455390625],[119.94220828125,35.7681996894531],[119.90298953125,35.7515370917969],[119.916969023438,35.7301369453125],[119.946011992188,35.7182497382813],[119.905103789063,35.6866750312501],[119.917345,35.633843]]]]}},{"type":"Feature","properties":{"name":"胶州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.007345,36.493843],[120.048863554688,36.4775209785157],[120.122345,36.4895925117188],[120.157345,36.483843],[120.157345,36.473843],[120.15142703125,36.4697585273438],[120.14326296875,36.4579274726563],[120.12970828125,36.4485707832032],[120.155709257813,36.438843],[120.147789335938,36.4035182929688],[120.16685671875,36.3742324042969],[120.207345,36.363843],[120.195850859375,36.3225624824219],[120.139737578125,36.2809621406251],[120.111519804688,36.2694130683594],[120.113082304688,36.258843],[120.110128203125,36.2388430000001],[120.113082304688,36.218843],[120.111529570313,36.2083315253907],[120.123160429688,36.1993544746094],[120.121529570313,36.1883315253907],[120.127345,36.183843],[120.124801054688,36.1663869453125],[120.099888945313,36.1412990546876],[120.097345,36.1238430000001],[120.087345,36.1238430000001],[120.082896757813,36.1293959785156],[120.069249296875,36.1403237128906],[120.052345,36.1382216621094],[120.01334109375,36.1430727363281],[120.001085234375,36.1139833808594],[120.003248320313,36.0965785957032],[119.981793242188,36.0793959785157],[119.972799101563,36.0681642890625],[119.951690703125,36.0707900214844],[119.872154570313,36.0480776191406],[119.852706328125,36.0595095039063],[119.82736453125,36.0563576484375],[119.803702421875,36.0268080878906],[119.781890898438,36.0295217109375],[119.771890898438,36.0170339179687],[119.744039335938,36.0204982734376],[119.707345,36.0438430000001],[119.703531523438,36.0500307441407],[119.672740507813,36.0605239082031],[119.662345,36.0572853828125],[119.631485625,36.0668984199219],[119.623531523438,36.0853322578125],[119.649381132813,36.1012587714844],[119.640719023438,36.1290566230469],[119.647345,36.143843],[119.672423125,36.1803163886719],[119.722896757813,36.1693959785156],[119.742100859375,36.1581081367188],[119.792183867188,36.1694850898438],[119.811143828125,36.1671266914063],[119.823155546875,36.2091896796876],[119.803355742188,36.2250453925781],[119.822896757813,36.2582900214844],[119.838717070313,36.2958327460938],[119.861793242188,36.3093959785157],[119.882896757813,36.3182900214844],[119.900240507813,36.3789528632813],[119.933453398438,36.3884487128907],[119.917354765625,36.4158412910157],[119.932896757813,36.4282900214844],[119.94736453125,36.4463576484375],[119.977345,36.4500868964844],[120.00150515625,36.4470815253906],[120.002965117188,36.4588430000001],[119.999405546875,36.4874843574219],[120.007345,36.493843]]]]}},{"type":"Feature","properties":{"name":"莱西市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.54064578125,37.1100112128907],[120.530806914063,37.0434438300781],[120.57869265625,37.0505202460938],[120.61170046875,37.0250429511719],[120.59193484375,36.9966872382813],[120.566280546875,37.0004775214844],[120.55818484375,36.9457070136719],[120.578795195313,36.9190090156251],[120.62170046875,36.9070607734375],[120.61298953125,36.8881996894532],[120.567535429688,36.878607404297],[120.59170046875,36.8381996894532],[120.607017851563,36.8263759589844],[120.59298953125,36.8081996894532],[120.556900664063,36.798149640625],[120.53810671875,36.7503481269531],[120.585064726563,36.7222634101563],[120.581519804688,36.6982497382813],[120.61298953125,36.6894863105469],[120.62170046875,36.6681996894532],[120.66170046875,36.6518276191406],[120.65298953125,36.6281996894532],[120.64170046875,36.6194863105469],[120.63298953125,36.5981996894531],[120.627345,36.593843],[120.61263796875,36.5880605292969],[120.602345,36.5895815253907],[120.591832304688,36.5880287910156],[120.58252078125,36.6000942207031],[120.5436340625,36.5712624335938],[120.532178984375,36.6123928046875],[120.506378203125,36.6323073554688],[120.4652746875,36.6075124335938],[120.393736601563,36.6212648750001],[120.371832304688,36.6180287910156],[120.362843046875,36.6296742988281],[120.287642851563,36.6173207832032],[120.272345,36.6195815253907],[120.261832304688,36.6180287910156],[120.257345,36.623843],[120.261881132813,36.6293056464844],[120.29158328125,36.6539784980469],[120.271881132813,36.6883803535157],[120.257799101563,36.7984413886719],[120.283155546875,36.8659133125],[120.2818371875,36.8788430000001],[120.283365507813,36.893843],[120.280855742188,36.918452375],[120.292808867188,36.9283803535156],[120.318516875,36.9593337226563],[120.3015246875,36.9890077949219],[120.313687773438,36.9991103339844],[120.271881132813,37.0083803535156],[120.262808867188,37.0153700996094],[120.293541289063,37.0286977363281],[120.279796171875,37.04011253125],[120.250084257813,37.0370839667969],[120.207345,37.043843],[120.21142703125,37.0797585273438],[120.22326296875,37.0879274726563],[120.231539335938,37.1201821113282],[120.257345,37.1138430000001],[120.28955203125,37.1351271796875],[120.308995390625,37.1069704414063],[120.323013945313,37.1101137519532],[120.339859648438,37.0857143378906],[120.367017851563,37.1033998847656],[120.401676054688,37.0956301093751],[120.41142703125,37.1097585273438],[120.469386015625,37.1188930488281],[120.50142703125,37.1397585273438],[120.527345,37.1438430000001],[120.54064578125,37.1100112128907]]]]}},{"type":"Feature","properties":{"name":"李沧区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.401627226563,36.2374806953125],[120.426651640625,36.1998488593751],[120.463350859375,36.207837140625],[120.477345,36.213843],[120.51170046875,36.2080068183594],[120.477222929688,36.1530825019531],[120.41298953125,36.1381996894531],[120.407345,36.133843],[120.397345,36.133843],[120.397345,36.1538430000001],[120.357345,36.1538430000001],[120.365377226563,36.1865529609375],[120.347345,36.213843],[120.355299101563,36.2258083320312],[120.401627226563,36.2374806953125]]]]}},{"type":"Feature","properties":{"name":"平度市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.157345,36.483843],[120.1805871875,36.478843],[120.157345,36.473843],[120.157345,36.483843]]],[[[120.157345,36.483843],[120.122345,36.4895925117188],[120.048863554688,36.4775209785157],[120.007345,36.493843],[120.002935820313,36.5096694160157],[119.983922148438,36.5068593574219],[119.960767851563,36.5208266425781],[119.937838164063,36.5174379707031],[119.9221496875,36.4971096015626],[119.910084257813,36.5265822578125],[119.808023710938,36.5439199042969],[119.74263796875,36.5696254707032],[119.721256132813,36.5664650703125],[119.723804960938,36.5837160468751],[119.62170046875,36.6381996894531],[119.59298953125,36.6794863105469],[119.587345,36.683843],[119.573170195313,36.7096681953126],[119.523389921875,36.7385292792969],[119.534971953125,36.7971425605469],[119.563170195313,36.8080178046875],[119.595640898438,36.867173078125],[119.591358671875,36.8888430000001],[119.596060820313,36.9126381660157],[119.5789465625,36.9542751289062],[119.607345,37.013843],[119.642896757813,37.0093959785156],[119.682125273438,36.9981935859375],[119.702345,37.000708234375],[119.752847929688,36.9944264960938],[119.794766875,37.0105409980469],[119.911881132813,36.9940541816407],[119.964288359375,37.0141994453125],[120.029210234375,37.0061232734375],[120.051983671875,37.0195095039063],[120.092345,37.0144899726563],[120.132345,37.0194643378907],[120.160987578125,37.0159023261719],[120.171793242188,37.0293959785157],[120.207345,37.043843],[120.250084257813,37.0370839667969],[120.279796171875,37.04011253125],[120.293541289063,37.0286977363281],[120.262808867188,37.0153700996094],[120.271881132813,37.0083803535156],[120.313687773438,36.9991103339844],[120.3015246875,36.9890077949219],[120.318516875,36.9593337226563],[120.292808867188,36.9283803535156],[120.280855742188,36.918452375],[120.283365507813,36.893843],[120.2818371875,36.8788430000001],[120.283155546875,36.8659133125],[120.257799101563,36.7984413886719],[120.271881132813,36.6883803535157],[120.29158328125,36.6539784980469],[120.261881132813,36.6293056464844],[120.257345,36.623843],[120.239141875,36.6314882636719],[120.212271757813,36.62546409375],[120.188370390625,36.5908437324219],[120.15142703125,36.5697585273438],[120.135616484375,36.5468544746094],[120.153565703125,36.5192897773438],[120.151217070313,36.5088014960938],[120.157345,36.483843]]]]}},{"type":"Feature","properties":{"name":"市北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.317345,36.093843],[120.304537382813,36.098843],[120.317345,36.103843],[120.317345,36.093843]]],[[[120.377345,36.093843],[120.369078398438,36.077505109375],[120.307345,36.073843],[120.317345,36.093843],[120.327345,36.093843],[120.327345,36.103843],[120.35142703125,36.0979274726563],[120.377345,36.093843]]],[[[120.327345,36.103843],[120.317345,36.103843],[120.317345,36.113843],[120.327345,36.113843],[120.327345,36.103843]]],[[[120.377345,36.093843],[120.387423125,36.113764875],[120.407345,36.1238430000001],[120.414293242188,36.1203273750001],[120.425269804688,36.0978530097657],[120.417345,36.093843],[120.377345,36.093843]]]]}},{"type":"Feature","properties":{"name":"市南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.417345,36.093843],[120.417345,36.053843],[120.382379179688,36.0595864082032],[120.347345,36.05440940625],[120.312345,36.0595815253906],[120.283311796875,36.0552907539063],[120.307345,36.073843],[120.369078398438,36.077505109375],[120.377345,36.093843],[120.417345,36.093843]]]]}},{"type":"Feature","properties":{"name":"四方区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.397345,36.1538430000001],[120.397345,36.133843],[120.407345,36.133843],[120.407345,36.1238430000001],[120.387423125,36.113764875],[120.377345,36.093843],[120.35142703125,36.0979274726563],[120.327345,36.103843],[120.327345,36.113843],[120.336217070313,36.1484218574219],[120.357345,36.1538430000001],[120.397345,36.1538430000001]]]]}},{"type":"Feature","properties":{"name":"崂山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.733922148438,36.2360353828125],[120.737345,36.223843],[120.725152617188,36.2272658515625],[120.733922148438,36.2360353828125]]],[[[120.657345,36.323843],[120.649737578125,36.2766530585938],[120.676846953125,36.280024640625],[120.671685820313,36.238559796875],[120.683941679688,36.2066811347657],[120.681695585938,36.1886257148438],[120.696246367188,36.1376686835938],[120.611793242188,36.1193959785157],[120.601890898438,36.1070339179688],[120.577345,36.1100868964844],[120.562345,36.1082216621094],[120.541475859375,36.1108168769532],[120.543033476563,36.0983046699219],[120.461793242188,36.0893959785156],[120.417345,36.053843],[120.417345,36.093843],[120.425269804688,36.0978530097657],[120.414293242188,36.1203273750001],[120.407345,36.1238430000001],[120.407345,36.133843],[120.41298953125,36.1381996894531],[120.477222929688,36.1530825019531],[120.51170046875,36.2080068183594],[120.477345,36.213843],[120.501597929688,36.2476784492188],[120.556475859375,36.2586806464844],[120.576363554688,36.2864223457032],[120.567345,36.323843],[120.614527617188,36.3266591621094],[120.622345,36.3466005683594],[120.630162382813,36.3266591621094],[120.657345,36.323843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"博山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.882974882813,36.5793740058594],[117.94107546875,36.53284690625],[117.907589140625,36.5060292792969],[117.929210234375,36.479028546875],[117.962896757813,36.4693959785156],[117.996319609375,36.4449831367187],[118.073873320313,36.4546303535156],[118.093023710938,36.4392958808594],[118.08978640625,36.4132802558594],[118.104405546875,36.3950258613281],[118.1424621875,36.4096535468751],[118.161793242188,36.3982900214844],[118.182896757813,36.3893959785157],[118.191793242188,36.3782900214844],[118.197345,36.373843],[118.208311796875,36.3653786445313],[118.18170046875,36.3294863105469],[118.172935820313,36.2980165839844],[118.162135039063,36.2996132636719],[118.115318632813,36.2859621406251],[118.028526640625,36.300219953125],[117.97170046875,36.2794863105469],[117.967345,36.2738430000001],[117.917345,36.2738430000001],[117.923004179688,36.2885597968751],[117.919859648438,36.3138430000001],[117.922965117188,36.338843],[117.921353789063,36.3518288398438],[117.891890898438,36.3481642890626],[117.842896757813,36.4093959785157],[117.821441679688,36.4265785957032],[117.823214140625,36.4408168769531],[117.786954375,36.4363063789063],[117.750655546875,36.4502577949219],[117.752965117188,36.468843],[117.751724882813,36.478843],[117.753023710938,36.4892958808594],[117.741666289063,36.4983901191407],[117.744156523438,36.5183901191406],[117.737345,36.523843],[117.737345,36.5438430000001],[117.717345,36.5438430000001],[117.717345,36.563843],[117.760982695313,36.5708779121094],[117.802799101563,36.5656764960938],[117.82666140625,36.5954750800781],[117.882974882813,36.5793740058594]]]]}},{"type":"Feature","properties":{"name":"高青县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.853531523438,37.2800307441407],[117.89443484375,37.2617067695313],[117.927345,37.271958234375],[117.947345,37.2657277656251],[117.965240507813,37.2713014960938],[117.989595976563,37.2562929511719],[117.963648710938,37.2193386054687],[118.011539335938,37.2044216132813],[118.02187625,37.2211940742188],[118.041158476563,37.2076552558594],[118.067345,37.203843],[118.060474882813,37.1488661933594],[118.065089140625,37.1117751289063],[118.037345,37.103843],[118.03142703125,37.0997585273438],[117.90326296875,37.0679274726563],[117.837345,37.063843],[117.789351835938,37.0715798164063],[117.742345,37.0657338691406],[117.712345,37.0694643378906],[117.691690703125,37.0668959785157],[117.609527617188,37.0903578925782],[117.573702421875,37.0859023261719],[117.560865507813,37.1019362617188],[117.563023710938,37.1192958808594],[117.551793242188,37.1282900214844],[117.547345,37.1438430000001],[117.581417265625,37.1631056953125],[117.591793242188,37.1993959785156],[117.610543242188,37.2144106269532],[117.647530546875,37.2753041816407],[117.691793242188,37.2582900214844],[117.757803984375,37.2394167304688],[117.803082304688,37.2660341621094],[117.817345,37.283843],[117.853531523438,37.2800307441407]]]]}},{"type":"Feature","properties":{"name":"桓台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.147345,36.893843],[118.163687773438,36.9019655585938],[118.167345,36.8838430000001],[118.147345,36.8838430000001],[118.147345,36.893843]]],[[[118.147345,36.893843],[118.082393828125,36.8777114082032],[118.065933867188,36.8814003730469],[118.043013945313,36.9145973945313],[117.998609648438,36.90464378125],[117.96955203125,36.8625588203125],[117.937345,36.8838430000001],[117.937345,36.893843],[117.954229765625,36.9193959785157],[117.93142703125,36.9279274726562],[117.912271757813,36.9556728339844],[117.90326296875,36.9797585273438],[117.859464140625,36.9909975410156],[117.864215117188,37.0121938300782],[117.84142703125,37.0279274726563],[117.837345,37.063843],[117.90326296875,37.0679274726563],[118.03142703125,37.0997585273438],[118.037345,37.103843],[118.051724882813,37.0837807441406],[118.120220976563,37.0973159003907],[118.131519804688,37.0680178046875],[118.148253203125,37.0560243964844],[118.126890898438,37.0223793769532],[118.151519804688,36.9880178046876],[118.173170195313,36.9796681953125],[118.177345,36.973843],[118.172296171875,36.9418007636719],[118.15142703125,36.9097585273438],[118.147345,36.893843]]]]}},{"type":"Feature","properties":{"name":"临淄区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.291256132813,36.9769692207031],[118.332345,36.9641713691406],[118.371383085938,36.9763307929688],[118.381158476563,36.9476552558594],[118.467345,36.943843],[118.49142703125,36.9376625800781],[118.48326296875,36.9179274726563],[118.47107546875,36.9095131660157],[118.475709257813,36.8888430000001],[118.471221953125,36.868843],[118.475308867188,36.8506276679688],[118.462345,36.8477223945313],[118.451256132813,36.8502077460938],[118.431124296875,36.8192897773438],[118.434678984375,36.8034242988282],[118.38142703125,36.7897585273438],[118.343682890625,36.7651796699219],[118.289312773438,36.777368390625],[118.293638945313,36.7580690742188],[118.268980742188,36.748843],[118.27431765625,36.7250380683594],[118.236573515625,36.7334999824219],[118.22326296875,36.6979274726562],[118.209454375,36.6767287421875],[118.214215117188,36.6554921699219],[118.197345,36.643843],[118.17326296875,36.6597585273438],[118.130816679688,36.6706508613281],[118.107345,36.713843],[118.14298953125,36.7281996894532],[118.15170046875,36.7594863105469],[118.163160429688,36.7683315253906],[118.161607695313,36.778843],[118.164327421875,36.7972658515625],[118.149742460938,36.8214443183594],[118.1885559375,36.815708234375],[118.20170046875,36.8527614570313],[118.1760559375,36.8725551582031],[118.167345,36.8838430000001],[118.163687773438,36.9019655585938],[118.147345,36.893843],[118.15142703125,36.9097585273438],[118.172296171875,36.9418007636719],[118.177345,36.973843],[118.203331328125,36.9636269355469],[118.25170046875,36.9994863105469],[118.287345,37.003843],[118.291256132813,36.9769692207031]]]]}},{"type":"Feature","properties":{"name":"沂源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.30822390625,36.3111074042969],[118.301163359375,36.2543422675781],[118.347100859375,36.2600563789062],[118.376417265625,36.2365785957032],[118.371373320313,36.1960170722657],[118.392896757813,36.1593959785157],[118.406964140625,36.1260097480469],[118.444405546875,36.1404018378907],[118.48302859375,36.1293581367187],[118.474556914063,36.0612404609375],[118.507345,36.073843],[118.521793242188,36.0362587714844],[118.512764921875,36.0281691718751],[118.502345,36.0294643378907],[118.487345,36.0275991035156],[118.46400515625,36.0305019355469],[118.481793242188,35.9882900214844],[118.496939726563,35.9625234199219],[118.448013945313,35.9564382148437],[118.399737578125,35.9917031074219],[118.329371367188,35.9503395820313],[118.312345,35.9482216621094],[118.301983671875,35.9495095039063],[118.261959257813,35.9259804511719],[118.227345,35.9338430000001],[118.218453398438,35.9449489570313],[118.191441679688,35.9665785957032],[118.194210234375,35.988843],[118.19142703125,36.0112404609376],[118.113048125,36.0336489082031],[118.037921171875,35.9894850898438],[118.012896757813,35.9482900214844],[117.987345,35.943843],[117.977486601563,35.9496889472657],[117.986295195313,35.9753517890625],[117.942115507813,35.9601784492188],[117.937345,35.993843],[117.950152617188,35.9988430000001],[117.937345,36.0038430000001],[117.9428528125,36.018843],[117.93000125,36.053843],[117.946803007813,36.0996034980469],[117.919039335938,36.0973720527344],[117.901573515625,36.1742458320313],[117.903638945313,36.1999440742188],[117.922345,36.198441388672],[117.950987578125,36.2007424140625],[117.967345,36.2738430000001],[117.97170046875,36.2794863105469],[118.028526640625,36.300219953125],[118.115318632813,36.2859621406251],[118.162135039063,36.2996132636719],[118.172935820313,36.2980165839844],[118.18170046875,36.3294863105469],[118.208311796875,36.3653786445313],[118.197345,36.373843],[118.200704375,36.380483625],[118.227345,36.393843],[118.254840117188,36.3538564277344],[118.30822390625,36.3111074042969]]]]}},{"type":"Feature","properties":{"name":"张店区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.987345,36.743843],[117.999537382813,36.7472658515626],[117.990767851563,36.7560353828125],[117.967345,36.753843],[117.97318484375,36.7894057441406],[117.940699492188,36.8027028632813],[117.943160429688,36.8193544746095],[117.924390898438,36.833843],[117.945206328125,36.8499123359375],[117.937345,36.8838430000001],[117.96955203125,36.8625588203125],[117.998609648438,36.90464378125],[118.043013945313,36.9145973945313],[118.065933867188,36.8814003730469],[118.082393828125,36.8777114082032],[118.147345,36.893843],[118.147345,36.8838430000001],[118.167345,36.8838430000001],[118.1760559375,36.8725551582031],[118.20170046875,36.8527614570313],[118.1885559375,36.815708234375],[118.149742460938,36.8214443183594],[118.164327421875,36.7972658515625],[118.161607695313,36.778843],[118.163160429688,36.7683315253906],[118.15170046875,36.7594863105469],[118.14298953125,36.7281996894532],[118.107345,36.713843],[118.08740359375,36.7237551093751],[118.062242460938,36.7114675117188],[118.021363554688,36.7317873359375],[118.012345,36.7139589667969],[118.003985625,36.730483625],[117.990704375,36.737202375],[117.987345,36.743843]]]]}},{"type":"Feature","properties":{"name":"周村区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.93922,36.7489492011719],[117.945582304688,36.6978188300782],[117.932125273438,36.6994924140626],[117.892345,36.6881313300781],[117.852261992188,36.6995778632813],[117.822896757813,36.6882900214844],[117.779381132813,36.6788747382813],[117.762799101563,36.6581642890626],[117.752345,36.6594655585938],[117.707345,36.6538430000001],[117.684503203125,36.6584548164062],[117.700704375,36.690483625],[117.707345,36.6938430000001],[117.779107695313,36.6986049628906],[117.80298953125,36.7381996894532],[117.811954375,36.7601100898438],[117.846143828125,36.7394863105469],[117.842579375,36.7620839667969],[117.80459109375,36.7914052558594],[117.82312625,36.8385512519532],[117.820318632813,36.8575527167969],[117.902608671875,36.8715322089844],[117.937345,36.893843],[117.937345,36.8838430000001],[117.945206328125,36.8499123359375],[117.924390898438,36.833843],[117.943160429688,36.8193544746095],[117.940699492188,36.8027028632813],[117.97318484375,36.7894057441406],[117.967345,36.753843],[117.93922,36.7489492011719]]]]}},{"type":"Feature","properties":{"name":"淄川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.987345,36.743843],[117.990704375,36.737202375],[118.003985625,36.730483625],[118.012345,36.7139589667969],[118.021363554688,36.7317873359375],[118.062242460938,36.7114675117188],[118.08740359375,36.7237551093751],[118.107345,36.713843],[118.130816679688,36.6706508613281],[118.17326296875,36.6597585273438],[118.197345,36.643843],[118.209127226563,36.6157875800782],[118.169913359375,36.5887099433594],[118.184151640625,36.5506508613282],[118.215709257813,36.5388430000001],[118.204454375,36.4886403632813],[118.223565703125,36.4592897773438],[118.221221953125,36.448843],[118.224586210938,36.433843],[118.218516875,36.4067617011719],[118.247345,36.413843],[118.24062625,36.4005617500001],[118.227345,36.393843],[118.200704375,36.380483625],[118.197345,36.373843],[118.191793242188,36.3782900214844],[118.182896757813,36.3893959785157],[118.161793242188,36.3982900214844],[118.1424621875,36.4096535468751],[118.104405546875,36.3950258613281],[118.08978640625,36.4132802558594],[118.093023710938,36.4392958808594],[118.073873320313,36.4546303535156],[117.996319609375,36.4449831367187],[117.962896757813,36.4693959785156],[117.929210234375,36.479028546875],[117.907589140625,36.5060292792969],[117.94107546875,36.53284690625],[117.882974882813,36.5793740058594],[117.82666140625,36.5954750800781],[117.802799101563,36.5656764960938],[117.760982695313,36.5708779121094],[117.717345,36.563843],[117.691202421875,36.5683925605469],[117.704039335938,36.59022971875],[117.701724882813,36.6088442207032],[117.707345,36.6538430000001],[117.752345,36.6594655585938],[117.762799101563,36.6581642890626],[117.779381132813,36.6788747382813],[117.822896757813,36.6882900214844],[117.852261992188,36.6995778632813],[117.892345,36.6881313300781],[117.932125273438,36.6994924140626],[117.945582304688,36.6978188300782],[117.93922,36.7489492011719],[117.967345,36.753843],[117.987345,36.743843]]],[[[117.987345,36.743843],[117.990767851563,36.7560353828125],[117.999537382813,36.7472658515626],[117.987345,36.743843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"山亭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.572896757813,35.1593959785157],[117.607345,35.1338430000001],[117.613360625,35.1104030585938],[117.64326296875,35.0897585273438],[117.657257109375,35.0694887519532],[117.690538359375,35.0570351386719],[117.701573515625,35.0275490546875],[117.712345,35.0299636054688],[117.722345,35.0277223945313],[117.733013945313,35.0301137519531],[117.737345,35.023843],[117.72142703125,34.9997585273438],[117.717345,34.963843],[117.701793242188,34.9593959785156],[117.649815703125,34.9394179511719],[117.631890898438,34.9170339179688],[117.608472929688,34.919946515625],[117.584610625,34.9497463203125],[117.557345,34.9463552070313],[117.525162382813,34.9503591132813],[117.467345,34.9338430000001],[117.450704375,34.930483625],[117.443985625,34.917202375],[117.410704375,34.9104836250001],[117.382345,34.8963869453125],[117.367345,34.9038430000001],[117.371881132813,34.9393056464844],[117.382808867188,34.9583803535157],[117.391881132813,34.9793056464844],[117.403800078125,35.00011253125],[117.37431765625,35.0515920234375],[117.337345,35.0478237128907],[117.288643828125,35.0527870917969],[117.272808867188,35.0893056464844],[117.2436340625,35.1402407050781],[117.270474882813,35.137505109375],[117.313385039063,35.15362815625],[117.31150515625,35.1720803046875],[117.286959257813,35.1924684882812],[117.31500125,35.2314272285156],[117.307345,35.293843],[117.311890898438,35.3219533515625],[117.388155546875,35.3066640449219],[117.405694609375,35.282192609375],[117.417345,35.273843],[117.426236601563,35.2627370429688],[117.442896757813,35.2493959785157],[117.451793242188,35.2282900214844],[117.483453398438,35.2149489570312],[117.541793242188,35.1682900214844],[117.572896757813,35.1593959785157]]]]}},{"type":"Feature","properties":{"name":"市中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.717345,34.963843],[117.695909453125,34.9155507636719],[117.757345,34.843843],[117.744610625,34.8279396796875],[117.6843371875,34.8354360175782],[117.672843046875,34.80815940625],[117.661890898438,34.8095217109375],[117.64931765625,34.7938210273438],[117.608546171875,34.7698537421876],[117.586217070313,34.797739484375],[117.551890898438,34.8020095039063],[117.529176054688,34.7736403632813],[117.482345,34.7794643378906],[117.471890898438,34.7781642890625],[117.467345,34.7838430000001],[117.460553007813,34.8011244941407],[117.483297148438,34.8589784980469],[117.471549101563,34.878452375],[117.47634890625,34.9109389472657],[117.467345,34.9338430000001],[117.525162382813,34.9503591132813],[117.557345,34.9463552070313],[117.584610625,34.9497463203125],[117.608472929688,34.919946515625],[117.631890898438,34.9170339179688],[117.649815703125,34.9394179511719],[117.701793242188,34.9593959785156],[117.717345,34.963843]]]]}},{"type":"Feature","properties":{"name":"台儿庄区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.787174101563,34.568843],[117.794146757813,34.5216555000001],[117.70310671875,34.5481996894531],[117.68170046875,34.5394863105469],[117.651705351563,34.5006264472656],[117.605889921875,34.4878688789063],[117.587345,34.463843],[117.547642851563,34.4703652167969],[117.532345,34.4681044746094],[117.507345,34.4717983222657],[117.481832304688,34.4680287910157],[117.47298953125,34.4794863105469],[117.46170046875,34.4881996894532],[117.44427859375,34.5107741523438],[117.42170046875,34.5281996894532],[117.41298953125,34.5394863105469],[117.397345,34.543843],[117.397345,34.573843],[117.593018828125,34.5809401679688],[117.591842070313,34.6385549140625],[117.6122278125,34.6581435371094],[117.612652617188,34.6788430000001],[117.591969023438,34.6888759589845],[117.63244265625,34.6987429023438],[117.67127078125,34.7187429023437],[117.761846953125,34.7013979316407],[117.77224734375,34.6587429023438],[117.787345,34.653843],[117.7938684375,34.6141408515625],[117.787174101563,34.568843]]]]}},{"type":"Feature","properties":{"name":"薛城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.47634890625,34.9109389472657],[117.471549101563,34.878452375],[117.483297148438,34.8589784980469],[117.460553007813,34.8011244941407],[117.467345,34.7838430000001],[117.442388945313,34.7777126289063],[117.409195585938,34.7851528144531],[117.39326296875,34.7535671210938],[117.41326296875,34.7397585273438],[117.433746367188,34.7100893378907],[117.430103789063,34.693843],[117.436827421875,34.663843],[117.431221953125,34.6388430000001],[117.433658476563,34.6279897285157],[117.407345,34.623843],[117.390181914063,34.6304396796876],[117.371846953125,34.62815940625],[117.362896757813,34.6493959785156],[117.351793242188,34.6582900214844],[117.342896757813,34.6693959785157],[117.331793242188,34.6782900214845],[117.312896757813,34.7093959785157],[117.299249296875,34.7203237128907],[117.281983671875,34.7181764960938],[117.262706328125,34.7295095039063],[117.2476184375,34.7276332832032],[117.182896757813,34.7793959785157],[117.16166140625,34.788344953125],[117.163448515625,34.8027150703125],[117.182896757813,34.8182900214844],[117.187345,34.8238430000001],[117.19197390625,34.8292153144532],[117.260670195313,34.86882346875],[117.29271609375,34.8784706855469],[117.32197390625,34.8892153144531],[117.36271609375,34.8984706855469],[117.367345,34.9038430000001],[117.382345,34.8963869453125],[117.410704375,34.9104836250001],[117.443985625,34.917202375],[117.450704375,34.930483625],[117.467345,34.9338430000001],[117.47634890625,34.9109389472657]]]]}},{"type":"Feature","properties":{"name":"峄城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7907434375,34.8389809394531],[117.797769804688,34.8164272285156],[117.768414335938,34.7983388496094],[117.783638945313,34.7736244941406],[117.829835234375,34.7578835273438],[117.819229765625,34.723843],[117.826202421875,34.7014577460938],[117.811158476563,34.6800307441407],[117.803531523438,34.6576552558595],[117.797345,34.653843],[117.787345,34.653843],[117.77224734375,34.6587429023438],[117.761846953125,34.7013979316407],[117.67127078125,34.7187429023437],[117.63244265625,34.6987429023438],[117.591969023438,34.6888759589845],[117.612652617188,34.6788430000001],[117.6122278125,34.6581435371094],[117.591842070313,34.6385549140625],[117.593018828125,34.5809401679688],[117.397345,34.573843],[117.387345,34.573843],[117.39142703125,34.5997585273438],[117.407345,34.623843],[117.433658476563,34.6279897285157],[117.431221953125,34.6388430000001],[117.436827421875,34.663843],[117.430103789063,34.693843],[117.433746367188,34.7100893378907],[117.41326296875,34.7397585273438],[117.39326296875,34.7535671210938],[117.409195585938,34.7851528144531],[117.442388945313,34.7777126289063],[117.467345,34.7838430000001],[117.471890898438,34.7781642890625],[117.482345,34.7794643378906],[117.529176054688,34.7736403632813],[117.551890898438,34.8020095039063],[117.586217070313,34.797739484375],[117.608546171875,34.7698537421876],[117.64931765625,34.7938210273438],[117.661890898438,34.8095217109375],[117.672843046875,34.80815940625],[117.6843371875,34.8354360175782],[117.744610625,34.8279396796875],[117.757345,34.843843],[117.7907434375,34.8389809394531]]]]}},{"type":"Feature","properties":{"name":"滕州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.307345,35.293843],[117.31500125,35.2314272285156],[117.286959257813,35.1924684882812],[117.31150515625,35.1720803046875],[117.313385039063,35.15362815625],[117.270474882813,35.137505109375],[117.2436340625,35.1402407050781],[117.272808867188,35.0893056464844],[117.288643828125,35.0527870917969],[117.337345,35.0478237128907],[117.37431765625,35.0515920234375],[117.403800078125,35.00011253125],[117.391881132813,34.9793056464844],[117.382808867188,34.9583803535157],[117.371881132813,34.9393056464844],[117.367345,34.9038430000001],[117.36271609375,34.8984706855469],[117.32197390625,34.8892153144531],[117.29271609375,34.8784706855469],[117.260670195313,34.86882346875],[117.19197390625,34.8292153144532],[117.187345,34.8238430000001],[117.165343046875,34.8299697089844],[117.12568484375,34.853891828125],[117.103331328125,34.9341616035156],[117.045889921875,34.9256728339844],[117.016832304688,34.9432009101563],[116.972857695313,34.9367018867188],[116.94088015625,34.9781276679688],[116.953140898438,34.998452375],[116.950484648438,35.0164174628907],[116.92170046875,35.0281996894532],[116.91298953125,35.0394863105469],[116.90170046875,35.0481996894532],[116.883780546875,35.0919802070313],[116.82677859375,35.1316237617188],[116.81298953125,35.1494863105469],[116.807345,35.153843],[116.81740359375,35.1881264472656],[116.852398710938,35.1680849433594],[116.888721953125,35.1942263007813],[116.901954375,35.1782936835938],[116.917345,35.1798622871094],[116.949893828125,35.1765444160156],[117.01685671875,35.2187416816406],[117.1381653125,35.2323451972656],[117.192808867188,35.2483803535156],[117.201881132813,35.2593056464844],[117.252901640625,35.2683974433594],[117.250748320313,35.2895156074219],[117.262388945313,35.2883290839844],[117.307345,35.293843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东营区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.642896757813,37.5093959785156],[118.665479765625,37.4961232734375],[118.6984778125,37.5002272773438],[118.772896757813,37.4893959785157],[118.850523710938,37.4747573066406],[118.901793242188,37.4893959785157],[118.947345,37.4938430000001],[118.952965117188,37.4488442207032],[118.951695585938,37.4386257148437],[118.970592070313,37.3724575019531],[118.947345,37.353843],[118.90170046875,37.3494863105469],[118.8727746875,37.3280409980469],[118.832345,37.3340151191406],[118.787345,37.3273647285157],[118.772345,37.3295815253906],[118.742345,37.3251491523438],[118.697345,37.3317983222657],[118.667345,37.3273647285157],[118.651954375,37.3296401191406],[118.63298953125,37.3181996894531],[118.58224734375,37.3074916816406],[118.566627226563,37.3277260566407],[118.542745390625,37.2877895332032],[118.51263796875,37.2996254707031],[118.497345,37.2973647285156],[118.467345,37.3017983222656],[118.442345,37.2981044746094],[118.432345,37.2995815253907],[118.406549101563,37.2957704902344],[118.385894804688,37.269009015625],[118.367345,37.2638430000001],[118.359307890625,37.2768862128907],[118.312066679688,37.3026052070313],[118.302921171875,37.3534230781251],[118.247965117188,37.3721511054688],[118.222003203125,37.3640639472656],[118.217345,37.383843],[118.233463164063,37.3962831855469],[118.231070585938,37.4124513984376],[118.247345,37.4538430000001],[118.262896757813,37.4493959785157],[118.32142703125,37.4121596503907],[118.387345,37.430981671875],[118.434371367188,37.4175539375],[118.431099882813,37.443843],[118.434210234375,37.468843],[118.4309778125,37.49483909375],[118.462896757813,37.5082900214844],[118.486920195313,37.5382900214844],[118.522896757813,37.5293959785157],[118.541793242188,37.5182900214844],[118.642896757813,37.5093959785156]]]]}},{"type":"Feature","properties":{"name":"广饶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.9706653125,37.33710471875],[118.987345,37.3038430000001],[118.912061796875,37.2991237617187],[118.783795195313,37.2854994941406],[118.675523710938,37.2266640449219],[118.661798125,37.1967568183594],[118.63115359375,37.1693752265626],[118.642628203125,37.1591237617188],[118.652061796875,37.1485622382813],[118.6670715625,37.1351540351563],[118.650391875,37.0728884101563],[118.562061796875,37.0591237617188],[118.536881132813,37.0309401679688],[118.579132109375,37.011548078125],[118.550562773438,36.9984352851563],[118.557345,36.9538430000001],[118.544639921875,36.9332216621094],[118.474928007813,36.9561501289063],[118.467345,36.943843],[118.381158476563,36.9476552558594],[118.371383085938,36.9763307929688],[118.332345,36.9641713691406],[118.291256132813,36.9769692207031],[118.287345,37.003843],[118.296964140625,37.014223859375],[118.317725859375,37.033462140625],[118.332843046875,37.0812160468751],[118.332144804688,37.098843],[118.33341921875,37.1309401679688],[118.381715117188,37.1756911445313],[118.345553007813,37.2282485175782],[118.367345,37.2638430000001],[118.385894804688,37.269009015625],[118.406549101563,37.2957704902344],[118.432345,37.2995815253907],[118.442345,37.2981044746094],[118.467345,37.3017983222656],[118.497345,37.2973647285156],[118.51263796875,37.2996254707031],[118.542745390625,37.2877895332032],[118.566627226563,37.3277260566407],[118.58224734375,37.3074916816406],[118.63298953125,37.3181996894531],[118.651954375,37.3296401191406],[118.667345,37.3273647285157],[118.697345,37.3317983222657],[118.742345,37.3251491523438],[118.772345,37.3295815253906],[118.787345,37.3273647285157],[118.832345,37.3340151191406],[118.8727746875,37.3280409980469],[118.90170046875,37.3494863105469],[118.947345,37.353843],[118.950704375,37.347202375],[118.9706653125,37.33710471875]]]]}},{"type":"Feature","properties":{"name":"河口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.937345,38.073843],[118.933922148438,38.0860353828126],[118.925152617188,38.0772658515625],[118.94170046875,38.0481996894531],[118.95298953125,38.0394863105469],[118.96170046875,38.0281996894532],[118.973482695313,38.0191054511719],[118.99298953125,37.9694863105469],[118.997345,37.9538430000001],[118.982154570313,37.9490334296876],[118.892535429688,37.8686525703125],[118.840152617188,37.8439296699219],[118.777574492188,37.8056142402344],[118.687345,37.7638430000001],[118.671124296875,37.7883913398438],[118.673565703125,37.7992897773438],[118.656568632813,37.8253945136719],[118.622345,37.8177223945312],[118.611842070313,37.8200771308594],[118.578360625,37.7941310859375],[118.545548125,37.8014882636719],[118.512623320313,37.7876601386719],[118.499381132813,37.7906276679688],[118.508912382813,37.833130109375],[118.473975859375,37.8479274726563],[118.442789335938,37.827622296875],[118.431676054688,37.8301137519532],[118.409854765625,37.7985146308594],[118.357345,37.7938430000001],[118.322808867188,37.8593056464844],[118.30603640625,37.8683803535157],[118.252608671875,37.848305890625],[118.240885039063,37.8495021796876],[118.243424101563,37.8744106269531],[118.211803007813,37.9485707832031],[118.223917265625,38.0584316230469],[118.221803007813,38.0791652656251],[118.237047148438,38.1057839179688],[118.221324492188,38.118843],[118.227345,38.123843],[118.250753203125,38.1328408027344],[118.312896757813,38.1193959785156],[118.332345,38.1079653144531],[118.3522278125,38.1196535468751],[118.384508085938,38.1072463203126],[118.4084778125,38.1102272773438],[118.489039335938,38.0985024238282],[118.521632109375,38.0724025703125],[118.53396609375,38.043130109375],[118.558453398438,38.0627370429688],[118.571793242188,38.0793959785156],[118.602896757813,38.0982900214844],[118.642135039063,38.1269509101563],[118.662345,38.1294643378907],[118.672345,38.1282216621094],[118.711832304688,38.1331325507812],[118.727193632813,38.0793959785156],[118.761280546875,38.1044509101563],[118.774581328125,38.13601096875],[118.839176054688,38.1440456367188],[118.854610625,38.124770734375],[118.898951445313,38.1302870917969],[118.95693484375,38.0895302558594],[118.937345,38.073843]],[[118.297345,38.1038430000001],[118.293922148438,38.1160353828126],[118.285152617188,38.1072658515625],[118.297345,38.1038430000001]]]]}},{"type":"Feature","properties":{"name":"垦利县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.135318632813,37.8103395820313],[119.170987578125,37.8059023261719],[119.188912382813,37.8282900214844],[119.242896757813,37.8193959785157],[119.251793242188,37.8082900214844],[119.321793242188,37.796108625],[119.30923953125,37.7709621406251],[119.271187773438,37.754926984375],[119.251324492188,37.7390224433594],[119.291793242188,37.6754164863282],[119.2761340625,37.6452626777344],[119.22107546875,37.6521108222656],[119.102139921875,37.6353676582032],[119.082174101563,37.6603017402344],[119.071846953125,37.635794904297],[119.028936796875,37.6411330390625],[119.001793242188,37.6193959785156],[118.982896757813,37.5882900214844],[118.964371367188,37.5734548164062],[118.951793242188,37.5293959785157],[118.947345,37.4938430000001],[118.901793242188,37.4893959785157],[118.850523710938,37.4747573066406],[118.772896757813,37.4893959785157],[118.6984778125,37.5002272773438],[118.665479765625,37.4961232734375],[118.642896757813,37.5093959785156],[118.541793242188,37.5182900214844],[118.522896757813,37.5293959785157],[118.486920195313,37.5382900214844],[118.462896757813,37.5082900214844],[118.4309778125,37.49483909375],[118.434210234375,37.468843],[118.431099882813,37.443843],[118.434371367188,37.4175539375],[118.387345,37.430981671875],[118.32142703125,37.4121596503907],[118.262896757813,37.4493959785157],[118.247345,37.4538430000001],[118.27170046875,37.489486310547],[118.30298953125,37.5081996894531],[118.31170046875,37.5394863105469],[118.333804960938,37.5957094550781],[118.429527617188,37.6159096503907],[118.52564578125,37.6017055488282],[118.5810559375,37.6351308417969],[118.62576296875,37.6534267402345],[118.675128203125,37.7244118476563],[118.705299101563,37.7477028632813],[118.69170046875,37.7581996894532],[118.687345,37.7638430000001],[118.777574492188,37.8056142402344],[118.840152617188,37.8439296699219],[118.892535429688,37.8686525703125],[118.982154570313,37.9490334296876],[118.997345,37.9538430000001],[119.027144804688,37.948657453125],[119.061793242188,37.9282900214844],[119.088199492188,37.9171620917969],[119.094830351563,37.863843],[119.09138796875,37.8361611152344],[119.135318632813,37.8103395820313]]]]}},{"type":"Feature","properties":{"name":"利津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.508912382813,37.833130109375],[118.499381132813,37.7906276679688],[118.512623320313,37.7876601386719],[118.545548125,37.8014882636719],[118.578360625,37.7941310859375],[118.611842070313,37.8200771308594],[118.622345,37.8177223945312],[118.656568632813,37.8253945136719],[118.673565703125,37.7992897773438],[118.671124296875,37.7883913398438],[118.687345,37.7638430000001],[118.69170046875,37.7581996894532],[118.705299101563,37.7477028632813],[118.675128203125,37.7244118476563],[118.62576296875,37.6534267402345],[118.5810559375,37.6351308417969],[118.52564578125,37.6017055488282],[118.429527617188,37.6159096503907],[118.333804960938,37.5957094550781],[118.31170046875,37.5394863105469],[118.30298953125,37.5081996894531],[118.27170046875,37.489486310547],[118.247345,37.4538430000001],[118.231070585938,37.4124513984376],[118.233463164063,37.3962831855469],[118.217345,37.383843],[118.190704375,37.380483625],[118.163985625,37.3672023750001],[118.147345,37.363843],[118.14271609375,37.3692153144531],[118.130738554688,37.3795351386719],[118.15271609375,37.3984706855469],[118.167921171875,37.4161171699219],[118.140328398438,37.4398867011719],[118.11103640625,37.4375319648437],[118.112745390625,37.4588430000001],[118.111363554688,37.4760451484376],[118.171441679688,37.5607790351563],[118.131842070313,37.5575978828125],[118.1327746875,37.5691664863282],[118.12197390625,37.5784706855469],[118.117345,37.583843],[118.13818484375,37.600532453125],[118.177379179688,37.6650575996094],[118.247345,37.6563552070312],[118.27724734375,37.6600746894531],[118.331793242188,37.7393959785156],[118.343023710938,37.7483901191407],[118.339405546875,37.7774843574219],[118.352896757813,37.7882900214844],[118.357345,37.7938430000001],[118.409854765625,37.7985146308594],[118.431676054688,37.8301137519532],[118.442789335938,37.827622296875],[118.473975859375,37.8479274726563],[118.508912382813,37.833130109375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"芝罘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.407345,37.503843],[121.437345,37.503843],[121.437345,37.483843],[121.407345,37.483843],[121.407345,37.503843]]],[[[121.387345,37.553843],[121.390767851563,37.5660353828125],[121.399537382813,37.5572658515625],[121.387345,37.553843]]],[[[121.513922148438,37.5660353828125],[121.517345,37.553843],[121.505152617188,37.5572658515625],[121.513922148438,37.5660353828125]]],[[[121.387345,37.553843],[121.393638945313,37.5436244941407],[121.433531523438,37.5300307441406],[121.437345,37.523843],[121.407345,37.523843],[121.407345,37.503843],[121.39142703125,37.4997585273438],[121.381085234375,37.4594557929688],[121.3867590625,37.4341518378907],[121.357345,37.4138430000001],[121.352628203125,37.4191237617188],[121.332061796875,37.4285622382813],[121.322628203125,37.4391237617188],[121.312061796875,37.4485622382813],[121.280953398438,37.483382794922],[121.287345,37.5738430000001],[121.34853640625,37.5842372871094],[121.363140898438,37.6084523750001],[121.360225859375,37.6281996894531],[121.38298953125,37.6194863105469],[121.40170046875,37.6081996894532],[121.425064726563,37.5986367011719],[121.37298953125,37.5876479316406],[121.38170046875,37.5581996894531],[121.387345,37.553843]]]]}},{"type":"Feature","properties":{"name":"长岛县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.623922148438,37.9460353828125],[120.627345,37.933843],[120.615152617188,37.9372658515626],[120.623922148438,37.9460353828125]]],[[[120.683922148438,37.9460353828125],[120.687345,37.933843],[120.675152617188,37.9372658515626],[120.683922148438,37.9460353828125]]],[[[120.753985625,37.920483625],[120.757345,37.893843],[120.73718875,37.9040395332031],[120.717345,37.9439589667969],[120.737437773438,37.9537721992188],[120.753985625,37.920483625]]],[[[120.627345,37.9538430000001],[120.597345,37.9538430000001],[120.597345,37.9838430000001],[120.627345,37.9838430000001],[120.627345,37.9538430000001]]],[[[120.721119414063,37.9862001777344],[120.727345,37.963843],[120.70170046875,37.9681996894531],[120.69298953125,37.9794863105469],[120.67298953125,37.9949245429687],[120.721119414063,37.9862001777344]]],[[[120.663922148438,38.0060353828126],[120.667345,37.993843],[120.655152617188,37.9972658515625],[120.663922148438,38.0060353828126]]],[[[120.873922148438,38.0260353828125],[120.877345,38.013843],[120.865152617188,38.0172658515625],[120.873922148438,38.0260353828125]]],[[[120.941910429688,38.0365395332032],[120.947345,38.0238430000001],[120.924346953125,38.027895734375],[120.941910429688,38.0365395332032]]],[[[120.643922148438,38.0660353828125],[120.647345,38.053843],[120.635152617188,38.0572658515625],[120.643922148438,38.0660353828125]]],[[[120.853922148438,38.0760353828126],[120.857345,38.0638430000001],[120.845152617188,38.0672658515625],[120.853922148438,38.0760353828126]]],[[[120.643922148438,38.1460353828125],[120.647345,38.1338430000001],[120.635152617188,38.1372658515625],[120.643922148438,38.1460353828125]]],[[[120.762838164063,38.1714028144532],[120.767345,38.153843],[120.752623320313,38.1600258613282],[120.741461210938,38.1575234199219],[120.7376184375,38.2079274726563],[120.762838164063,38.1714028144532]]],[[[120.807345,38.2938430000001],[120.803922148438,38.2816506171875],[120.795152617188,38.2904201484375],[120.807345,38.2938430000001]]],[[[120.807345,38.2938430000001],[120.812061796875,38.3172023750001],[120.838048125,38.3092385078126],[120.807345,38.2938430000001]]],[[[120.843922148438,38.3560353828125],[120.847345,38.343843],[120.835152617188,38.3472658515626],[120.843922148438,38.3560353828125]]],[[[120.903922148438,38.3660353828125],[120.907345,38.353843],[120.895152617188,38.3572658515626],[120.903922148438,38.3660353828125]]],[[[120.9166809375,38.404926984375],[120.927345,38.383843],[120.893985625,38.3880495429687],[120.9166809375,38.404926984375]]]]}},{"type":"Feature","properties":{"name":"福山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.017345,37.713843],[121.04380984375,37.7083058906251],[121.087345,37.7100319648437],[121.122345,37.7086452460938],[121.142125273438,37.7094289375],[121.142550078125,37.6986916328125],[121.129405546875,37.6611977363282],[121.14263796875,37.6489406562501],[121.1292590625,37.6107680488281],[121.188492460938,37.5794240546875],[121.287345,37.5738430000001],[121.280953398438,37.483382794922],[121.312061796875,37.4485622382813],[121.322628203125,37.4391237617188],[121.332061796875,37.4285622382813],[121.352628203125,37.4191237617188],[121.357345,37.4138430000001],[121.32541140625,37.3498805976563],[121.337345,37.3438430000001],[121.320596953125,37.318501203125],[121.34142703125,37.3041188789063],[121.326070585938,37.2736757636719],[121.29142703125,37.2497585273438],[121.2776184375,37.2297585273438],[121.2566809375,37.2403237128906],[121.247345,37.253843],[121.266095,37.2939943671876],[121.225513945313,37.3220119453125],[121.21326296875,37.3397585273438],[121.184991484375,37.3592751289063],[121.153975859375,37.3679274726563],[121.126871367188,37.3286721015626],[121.09326296875,37.3217348457032],[121.129093046875,37.4007997871094],[121.11142703125,37.4279274726563],[121.10326296875,37.4597585273438],[121.071065703125,37.4781349921875],[121.0758215625,37.4993544746094],[121.047345,37.503843],[121.038297148438,37.5268593574219],[121.05298953125,37.5381996894532],[121.06170046875,37.5694863105469],[121.07298953125,37.5881996894531],[121.085240507813,37.6181386542969],[121.05170046875,37.6381996894532],[121.007423125,37.6710268378906],[121.017345,37.713843]]]]}},{"type":"Feature","properties":{"name":"海阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.233922148438,36.6760353828126],[121.237345,36.663843],[121.225152617188,36.6672658515625],[121.233922148438,36.6760353828126]]],[[[120.927345,36.6138430000001],[120.937345,36.6138430000001],[120.937345,36.623843],[120.949537382813,36.6272658515625],[120.940767851563,36.6360353828126],[120.937345,36.623843],[120.927345,36.623843],[120.89170046875,36.6281996894532],[120.867345,36.643843],[120.855675078125,36.6522084785157],[120.833170195313,36.6836830878907],[120.860167265625,36.703032453125],[120.871519804688,36.7596681953125],[120.886070585938,36.8075661445313],[120.914141875,36.81839378125],[120.890704375,36.8490846992187],[120.903170195313,36.8580178046875],[120.911519804688,36.8696681953125],[120.944600859375,36.882426984375],[120.939503203125,36.9082228828125],[120.953453398438,36.9182228828125],[120.951358671875,36.928843],[120.953331328125,36.938843],[120.951358671875,36.948843],[120.9620325,37.0028676582031],[120.983453398438,37.0182228828125],[120.981358671875,37.028843],[120.983482695313,37.03960471875],[120.941519804688,37.0480178046875],[120.917345,37.083843],[120.92170046875,37.0894863105469],[120.950260039063,37.1115297675782],[120.963487578125,37.1438466621094],[121.0594934375,37.1296584296875],[121.074771757813,37.1669850898438],[121.100767851563,37.1708266425781],[121.13009890625,37.1531325507813],[121.157345,37.163843],[121.16326296875,37.1397585273438],[121.171978789063,37.0844533515626],[121.187345,37.0738430000001],[121.19400515625,37.0451100898438],[121.18298953125,37.0181996894531],[121.167828398438,37.0064968085938],[121.21298953125,36.9794863105469],[121.2260559375,36.9625551582032],[121.24298953125,36.9494863105469],[121.264156523438,36.9220619941406],[121.319312773438,36.9059804511719],[121.356143828125,36.9281996894532],[121.364742460938,36.8795546699219],[121.348023710938,36.8666481757813],[121.38298953125,36.8194863105469],[121.401807890625,36.7880239082031],[121.430806914063,36.792309796875],[121.467345,36.783843],[121.450855742188,36.7546755195313],[121.39486453125,36.7616384101562],[121.378526640625,36.7338430000001],[121.396978789063,36.7024513984375],[121.34177859375,36.7236696601563],[121.252896757813,36.6982900214844],[121.197471953125,36.6886440253907],[121.145596953125,36.6667861152344],[121.092896757813,36.6282900214844],[121.05369265625,36.6117690253907],[121.036217070313,36.5899465156251],[121.003702421875,36.5859023261719],[120.985777617188,36.6082900214844],[120.961793242188,36.5893959785156],[120.952345,36.5775991035157],[120.942896757813,36.5893959785156],[120.931793242188,36.5982900214844],[120.927345,36.6138430000001]]]]}},{"type":"Feature","properties":{"name":"莱山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.407345,37.503843],[121.407345,37.483843],[121.437345,37.483843],[121.437345,37.503843],[121.407345,37.523843],[121.437345,37.523843],[121.44326296875,37.5197585273438],[121.455225859375,37.4731337714844],[121.49142703125,37.4579274726563],[121.52326296875,37.4497585273438],[121.557345,37.433843],[121.551549101563,37.4155336738281],[121.504283476563,37.3717397285156],[121.439742460938,37.2896694160156],[121.397115507813,37.3356740546875],[121.337345,37.3438430000001],[121.32541140625,37.3498805976563],[121.357345,37.4138430000001],[121.3867590625,37.4341518378907],[121.381085234375,37.4594557929688],[121.39142703125,37.4997585273438],[121.407345,37.503843]]]]}},{"type":"Feature","properties":{"name":"莱阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.807345,36.603843],[120.803922148438,36.6160353828125],[120.795152617188,36.6072658515625],[120.807345,36.593843],[120.787345,36.593843],[120.712613554688,36.6236220527344],[120.69298953125,36.5981996894531],[120.63297,36.5736354804688],[120.627345,36.593843],[120.63298953125,36.5981996894531],[120.64170046875,36.6194863105469],[120.65298953125,36.6281996894532],[120.66170046875,36.6518276191406],[120.62170046875,36.6681996894532],[120.61298953125,36.6894863105469],[120.581519804688,36.6982497382813],[120.585064726563,36.7222634101563],[120.53810671875,36.7503481269531],[120.556900664063,36.798149640625],[120.59298953125,36.8081996894532],[120.607017851563,36.8263759589844],[120.59170046875,36.8381996894532],[120.567535429688,36.878607404297],[120.61298953125,36.8881996894532],[120.62170046875,36.9070607734375],[120.578795195313,36.9190090156251],[120.55818484375,36.9457070136719],[120.566280546875,37.0004775214844],[120.59193484375,36.9966872382813],[120.61170046875,37.0250429511719],[120.57869265625,37.0505202460938],[120.530806914063,37.0434438300781],[120.54064578125,37.1100112128907],[120.527345,37.1438430000001],[120.527345,37.1538430000001],[120.567345,37.1538430000001],[120.567345,37.163843],[120.616187773438,37.1360744453125],[120.652105742188,37.1492641425781],[120.662550078125,37.1484255195313],[120.703863554688,37.1597328925782],[120.742345,37.1382631660157],[120.766812773438,37.1519155097657],[120.823565703125,37.1390224433594],[120.8205090625,37.1009987617188],[120.857345,37.0980397773438],[120.8903528125,37.1006911445313],[120.917345,37.083843],[120.941519804688,37.0480178046875],[120.983482695313,37.03960471875],[120.981358671875,37.028843],[120.983453398438,37.0182228828125],[120.9620325,37.0028676582031],[120.951358671875,36.948843],[120.953331328125,36.938843],[120.951358671875,36.928843],[120.953453398438,36.9182228828125],[120.939503203125,36.9082228828125],[120.944600859375,36.882426984375],[120.911519804688,36.8696681953125],[120.903170195313,36.8580178046875],[120.890704375,36.8490846992187],[120.914141875,36.81839378125],[120.886070585938,36.8075661445313],[120.871519804688,36.7596681953125],[120.860167265625,36.703032453125],[120.833170195313,36.6836830878907],[120.855675078125,36.6522084785157],[120.867345,36.643843],[120.862701445313,36.6284133125001],[120.852066679688,36.6292678046876],[120.807345,36.603843]]]]}},{"type":"Feature","properties":{"name":"莱州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.147594023438,37.4260341621094],[120.1407434375,37.3709694648438],[120.173409453125,37.3471096015625],[120.210318632813,37.3517006660157],[120.233004179688,37.2991481757812],[120.23166140625,37.2883278632813],[120.269478789063,37.277514875],[120.281846953125,37.24815940625],[120.30150515625,37.2506044746094],[120.304107695313,37.2296718574219],[120.272896757813,37.1782900214844],[120.243863554688,37.1660549140625],[120.241676054688,37.1484828925781],[120.252896757813,37.1293959785156],[120.257345,37.1138430000001],[120.231539335938,37.1201821113282],[120.22326296875,37.0879274726563],[120.21142703125,37.0797585273438],[120.207345,37.043843],[120.171793242188,37.0293959785157],[120.160987578125,37.0159023261719],[120.132345,37.0194643378907],[120.092345,37.0144899726563],[120.051983671875,37.0195095039063],[120.029210234375,37.0061232734375],[119.964288359375,37.0141994453125],[119.911881132813,36.9940541816407],[119.794766875,37.0105409980469],[119.752847929688,36.9944264960938],[119.702345,37.000708234375],[119.682125273438,36.9981935859375],[119.642896757813,37.0093959785156],[119.607345,37.013843],[119.600767851563,37.0394655585938],[119.55142703125,37.0579274726563],[119.547345,37.063843],[119.56345828125,37.0777272773437],[119.590479765625,37.1090895820313],[119.736534453125,37.1212978339844],[119.75197390625,37.1392153144531],[119.7680871875,37.1530995917969],[119.78197390625,37.1692153144532],[119.848370390625,37.2074977851563],[119.899766875,37.2517775703125],[119.90400515625,37.3045058417969],[119.88271609375,37.3292153144531],[119.84373171875,37.3466115546875],[119.84130984375,37.3767507148438],[119.872345,37.3792446113282],[119.886939726563,37.378071515625],[119.93271609375,37.3884706855469],[119.952008085938,37.4192714667969],[119.987198515625,37.4164443183595],[120.02197390625,37.4292153144532],[120.066221953125,37.4392665839844],[120.105738554688,37.4613173652344],[120.147345,37.473843],[120.151793242188,37.4582900214844],[120.16334109375,37.4386440253907],[120.147594023438,37.4260341621094]]]]}},{"type":"Feature","properties":{"name":"龙口市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6019153125,37.6784792304688],[120.674366484375,37.6689992500001],[120.671593046875,37.6344570136719],[120.745064726563,37.5920961738281],[120.721925078125,37.5290810371094],[120.722769804688,37.5185646796875],[120.711690703125,37.4987123847657],[120.72271609375,37.4892153144532],[120.727345,37.483843],[120.714444609375,37.4629042792969],[120.671158476563,37.4776552558594],[120.660714140625,37.4946059394532],[120.617345,37.473843],[120.590025664063,37.4626174140625],[120.552345,37.4865407539063],[120.523170195313,37.4680178046875],[120.485592070313,37.4596681953125],[120.49341921875,37.4992763496094],[120.478360625,37.5229958320313],[120.452056914063,37.517798078125],[120.416099882813,37.5325746894532],[120.392037382813,37.5172975898438],[120.383170195313,37.5296681953125],[120.3675403125,37.5408705878907],[120.297374296875,37.5268605781251],[120.282345,37.5298305488282],[120.266763945313,37.5267519355469],[120.247345,37.553843],[120.27271609375,37.5684706855469],[120.313428984375,37.6003554511719],[120.311138945313,37.628843],[120.312769804688,37.6491213203125],[120.299429960938,37.6730275703126],[120.242076445313,37.6684194160157],[120.22271609375,37.6782704902344],[120.371534453125,37.6934499335938],[120.4405871875,37.7424123359375],[120.577345,37.7538430000001],[120.602769804688,37.7091225410157],[120.601944609375,37.698843],[120.602745390625,37.688843],[120.6019153125,37.6784792304688]]],[[[120.451910429688,37.7865395332031],[120.457345,37.773843],[120.434346953125,37.7778957343751],[120.451910429688,37.7865395332031]]]]}},{"type":"Feature","properties":{"name":"牟平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.647345,37.443843],[121.650767851563,37.4316506171876],[121.659537382813,37.4404201484375],[121.652608671875,37.4622524238282],[121.7523840625,37.4482070136719],[121.821793242188,37.4593959785157],[121.912896757813,37.4682900214844],[121.927345,37.473843],[121.919195585938,37.4258815742188],[121.87334109375,37.3691432929688],[121.867345,37.333843],[121.83197390625,37.3192153144532],[121.82271609375,37.3084706855469],[121.79197390625,37.2992153144531],[121.770972929688,37.2521559882813],[121.736187773438,37.2366323066406],[121.764234648438,37.1970717597656],[121.737345,37.123843],[121.701793242188,37.1282900214844],[121.682144804688,37.1398378730469],[121.672896757813,37.1282900214844],[121.648912382813,37.1193959785156],[121.632799101563,37.1395217109375],[121.612345,37.136977765625],[121.591846953125,37.13952659375],[121.57834109375,37.1074758125001],[121.562345,37.1094643378906],[121.51033328125,37.1029958320313],[121.445421171875,37.1215309882813],[121.422896757813,37.1082900214844],[121.397486601563,37.0975820136719],[121.3690246875,37.1011220527344],[121.35267703125,37.13991721875],[121.3324621875,37.1280324531251],[121.3022278125,37.139653546875],[121.252711210938,37.1105458808594],[121.242896757813,37.0982900214844],[121.226265898438,37.0849709296876],[121.187345,37.0738430000001],[121.171978789063,37.0844533515626],[121.16326296875,37.1397585273438],[121.157345,37.163843],[121.185826445313,37.1711513496094],[121.20326296875,37.1979274726563],[121.216358671875,37.2489589667969],[121.247345,37.253843],[121.2566809375,37.2403237128906],[121.2776184375,37.2297585273438],[121.29142703125,37.2497585273438],[121.326070585938,37.2736757636719],[121.34142703125,37.3041188789063],[121.320596953125,37.318501203125],[121.337345,37.3438430000001],[121.397115507813,37.3356740546875],[121.439742460938,37.2896694160156],[121.504283476563,37.3717397285156],[121.551549101563,37.4155336738281],[121.557345,37.433843],[121.561060820313,37.4458583808594],[121.573629179688,37.4318276191407],[121.57970828125,37.4514809394532],[121.587345,37.4538430000001],[121.609703398438,37.4297109199219],[121.617345,37.4538430000001],[121.629537382813,37.4572658515625],[121.620767851563,37.4660353828126],[121.617345,37.4538430000001],[121.587345,37.4538430000001],[121.592447539063,37.4624526191406],[121.647003203125,37.4874135566407],[121.63463015625,37.4513796210938],[121.647345,37.443843]]]]}},{"type":"Feature","properties":{"name":"蓬莱市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.876558867188,37.8308998847657],[120.922139921875,37.8184255195312],[120.934400664063,37.81940940625],[120.930972929688,37.7767665839844],[120.99963015625,37.7461293769532],[121.01197390625,37.7184706855469],[121.017345,37.713843],[121.007423125,37.6710268378906],[121.05170046875,37.6381996894532],[121.085240507813,37.6181386542969],[121.07298953125,37.5881996894531],[121.06170046875,37.5694863105469],[121.05298953125,37.5381996894532],[121.038297148438,37.5268593574219],[121.047345,37.503843],[121.005338164063,37.5087380195313],[120.982926054688,37.5400075507813],[120.9189075,37.5245815253907],[120.892345,37.5298305488282],[120.881724882813,37.5277321601563],[120.867345,37.5477956367188],[120.84892703125,37.5220998359376],[120.863741484375,37.4987673164063],[120.83968875,37.4672731757813],[120.843482695313,37.44808128125],[120.801519804688,37.4396681953125],[120.753170195313,37.4180178046875],[120.72670046875,37.4096681953125],[120.743546171875,37.4795693183594],[120.727345,37.483843],[120.72271609375,37.4892153144532],[120.711690703125,37.4987123847657],[120.722769804688,37.5185646796875],[120.721925078125,37.5290810371094],[120.745064726563,37.5920961738281],[120.671593046875,37.6344570136719],[120.674366484375,37.6689992500001],[120.6019153125,37.6784792304688],[120.602745390625,37.688843],[120.601944609375,37.698843],[120.602769804688,37.7091225410157],[120.577345,37.7538430000001],[120.622066679688,37.7792678046875],[120.648648710938,37.7771315742187],[120.68271609375,37.7984706855469],[120.72404421875,37.8277748847657],[120.742515898438,37.8292580390626],[120.82380984375,37.8115273261719],[120.876558867188,37.8308998847657]]]]}},{"type":"Feature","properties":{"name":"栖霞市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.867345,37.5477956367188],[120.881724882813,37.5277321601563],[120.892345,37.5298305488282],[120.9189075,37.5245815253907],[120.982926054688,37.5400075507813],[121.005338164063,37.5087380195313],[121.047345,37.503843],[121.0758215625,37.4993544746094],[121.071065703125,37.4781349921875],[121.10326296875,37.4597585273438],[121.11142703125,37.4279274726563],[121.129093046875,37.4007997871094],[121.09326296875,37.3217348457032],[121.126871367188,37.3286721015626],[121.153975859375,37.3679274726563],[121.184991484375,37.3592751289063],[121.21326296875,37.3397585273438],[121.225513945313,37.3220119453125],[121.266095,37.2939943671876],[121.247345,37.253843],[121.216358671875,37.2489589667969],[121.20326296875,37.1979274726563],[121.185826445313,37.1711513496094],[121.157345,37.163843],[121.13009890625,37.1531325507813],[121.100767851563,37.1708266425781],[121.074771757813,37.1669850898438],[121.0594934375,37.1296584296875],[120.963487578125,37.1438466621094],[120.950260039063,37.1115297675782],[120.92170046875,37.0894863105469],[120.917345,37.083843],[120.8903528125,37.1006911445313],[120.857345,37.0980397773438],[120.8205090625,37.1009987617188],[120.823565703125,37.1390224433594],[120.766812773438,37.1519155097657],[120.742345,37.1382631660157],[120.703863554688,37.1597328925782],[120.662550078125,37.1484255195313],[120.652105742188,37.1492641425781],[120.616187773438,37.1360744453125],[120.567345,37.163843],[120.56107546875,37.1681728339844],[120.563565703125,37.1792897773438],[120.549215117188,37.2013259101563],[120.57326296875,37.2179274726563],[120.586197539063,37.2366628242188],[120.577193632813,37.2768325019531],[120.59326296875,37.2879274726563],[120.606695585938,37.3073867011719],[120.59142703125,37.3179274726563],[120.57326296875,37.3473976875],[120.615240507813,37.4109242988281],[120.61107546875,37.4295131660157],[120.630367460938,37.4428346992188],[120.617345,37.473843],[120.660714140625,37.4946059394532],[120.671158476563,37.4776552558594],[120.714444609375,37.4629042792969],[120.727345,37.483843],[120.743546171875,37.4795693183594],[120.72670046875,37.4096681953125],[120.753170195313,37.4180178046875],[120.801519804688,37.4396681953125],[120.843482695313,37.44808128125],[120.83968875,37.4672731757813],[120.863741484375,37.4987673164063],[120.84892703125,37.5220998359376],[120.867345,37.5477956367188]]]]}},{"type":"Feature","properties":{"name":"招远市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.247345,37.553843],[120.266763945313,37.5267519355469],[120.282345,37.5298305488282],[120.297374296875,37.5268605781251],[120.3675403125,37.5408705878907],[120.383170195313,37.5296681953125],[120.392037382813,37.5172975898438],[120.416099882813,37.5325746894532],[120.452056914063,37.517798078125],[120.478360625,37.5229958320313],[120.49341921875,37.4992763496094],[120.485592070313,37.4596681953125],[120.523170195313,37.4680178046875],[120.552345,37.4865407539063],[120.590025664063,37.4626174140625],[120.617345,37.473843],[120.630367460938,37.4428346992188],[120.61107546875,37.4295131660157],[120.615240507813,37.4109242988281],[120.57326296875,37.3473976875],[120.59142703125,37.3179274726563],[120.606695585938,37.3073867011719],[120.59326296875,37.2879274726563],[120.577193632813,37.2768325019531],[120.586197539063,37.2366628242188],[120.57326296875,37.2179274726563],[120.549215117188,37.2013259101563],[120.563565703125,37.1792897773438],[120.56107546875,37.1681728339844],[120.567345,37.163843],[120.567345,37.1538430000001],[120.527345,37.1538430000001],[120.527345,37.1438430000001],[120.50142703125,37.1397585273438],[120.469386015625,37.1188930488281],[120.41142703125,37.1097585273438],[120.401676054688,37.0956301093751],[120.367017851563,37.1033998847656],[120.339859648438,37.0857143378906],[120.323013945313,37.1101137519532],[120.308995390625,37.1069704414063],[120.28955203125,37.1351271796875],[120.257345,37.1138430000001],[120.252896757813,37.1293959785156],[120.241676054688,37.1484828925781],[120.243863554688,37.1660549140625],[120.272896757813,37.1782900214844],[120.304107695313,37.2296718574219],[120.30150515625,37.2506044746094],[120.281846953125,37.24815940625],[120.269478789063,37.277514875],[120.23166140625,37.2883278632813],[120.233004179688,37.2991481757812],[120.210318632813,37.3517006660157],[120.173409453125,37.3471096015625],[120.1407434375,37.3709694648438],[120.147594023438,37.4260341621094],[120.16334109375,37.4386440253907],[120.151793242188,37.4582900214844],[120.147345,37.473843],[120.18271609375,37.4984706855469],[120.247345,37.553843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安丘市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.367345,36.603843],[119.37326296875,36.5897585273438],[119.38142703125,36.5079274726562],[119.428297148438,36.4903908515626],[119.4179309375,36.4441518378907],[119.447345,36.4238430000001],[119.441666289063,36.3783901191407],[119.452896757813,36.3693959785156],[119.457345,36.3538430000001],[119.438853789063,36.2712099433594],[119.395167265625,36.2517153144532],[119.351715117188,36.2176882148438],[119.323326445313,36.2199697089844],[119.281920195313,36.1968679023438],[119.198624296875,36.2035610175782],[119.18197390625,36.1892153144531],[119.17271609375,36.1784706855469],[119.12197390625,36.1392153144532],[119.096236601563,36.0981288886719],[119.071373320313,36.1001259589844],[119.057345,36.0838430000001],[119.015636015625,36.0998744941406],[118.97939578125,36.0953664375],[118.93013796875,36.114301984375],[118.902896757813,36.0982900214844],[118.864166289063,36.0819692207032],[118.852896757813,36.1593959785157],[118.841676054688,36.1784828925782],[118.842965117188,36.188843],[118.840894804688,36.2055043769531],[118.782345,36.1982216621094],[118.756954375,36.2013796210938],[118.737345,36.1938430000001],[118.745362578125,36.2250856757813],[118.777056914063,36.2737599921875],[118.787345,36.3138430000001],[118.7960559375,36.3451308417969],[118.818311796875,36.3623073554688],[118.855343046875,36.3399697089844],[118.908131132813,36.3252700019532],[118.93170046875,36.3394863105469],[119.001651640625,36.3513698554688],[119.01170046875,36.4027614570312],[118.990611601563,36.4190407539063],[119.01298953125,36.4281996894532],[119.035889921875,36.4420131660157],[119.082857695313,36.43507346875],[119.10170046875,36.4594863105469],[119.173170195313,36.4782472968751],[119.170557890625,36.4959242988281],[119.147345,36.513843],[119.16033328125,36.5326564765625],[119.183013945313,36.5275722480469],[119.195933867188,36.5462856269532],[119.247174101563,36.5577712226563],[119.27326296875,36.5397585273438],[119.282345,36.5266017890625],[119.29142703125,36.5397585273438],[119.30326296875,36.5479274726563],[119.329654570313,36.5941713691406],[119.367345,36.603843]]],[[[119.367345,36.603843],[119.367345,36.6138430000001],[119.387345,36.6138430000001],[119.387345,36.603843],[119.367345,36.603843]]],[[[119.400152617188,36.628843],[119.387345,36.623843],[119.387345,36.633843],[119.400152617188,36.628843]]]]}},{"type":"Feature","properties":{"name":"昌乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.927345,36.753843],[118.930767851563,36.7416506171875],[118.939537382813,36.7504201484376],[118.927345,36.7638430000001],[118.937345,36.7638430000001],[118.971422148438,36.753843],[118.941617460938,36.7290859199219],[118.952882109375,36.6991078925781],[118.9518371875,36.6888430000001],[118.952886992188,36.6785207343751],[118.941803007813,36.659165265625],[118.9428528125,36.648843],[118.9418371875,36.638843],[118.9428528125,36.628843],[118.940987578125,36.6105104804688],[118.972345,36.6073146796876],[119.001954375,36.6103322578125],[119.011881132813,36.5983803535157],[119.057345,36.593843],[119.070885039063,36.5673830390625],[119.103804960938,36.5603029609375],[119.112003203125,36.5221767402344],[119.139923125,36.5003029609375],[119.147345,36.513843],[119.170557890625,36.4959242988281],[119.173170195313,36.4782472968751],[119.10170046875,36.4594863105469],[119.082857695313,36.43507346875],[119.035889921875,36.4420131660157],[119.01298953125,36.4281996894532],[118.990611601563,36.4190407539063],[119.01170046875,36.4027614570312],[119.001651640625,36.3513698554688],[118.93170046875,36.3394863105469],[118.908131132813,36.3252700019532],[118.855343046875,36.3399697089844],[118.818311796875,36.3623073554688],[118.7960559375,36.3451308417969],[118.787345,36.3138430000001],[118.746095,36.2832424140625],[118.732896757813,36.3293959785156],[118.72146609375,36.35913596875],[118.734156523438,36.3692958808594],[118.731656523438,36.3893617988281],[118.765777617188,36.3982900214844],[118.787345,36.3713552070313],[118.803824492188,36.3919362617188],[118.801441679688,36.4111074042969],[118.831690703125,36.4353298164063],[118.771656523438,36.4483193183594],[118.773004179688,36.459126203125],[118.761578398438,36.488843],[118.7758215625,36.5258950019532],[118.770826445313,36.5660549140625],[118.741793242188,36.5782900214844],[118.737345,36.5838430000001],[118.754215117188,36.5954921699219],[118.751124296875,36.6092897773438],[118.765235625,36.6309572578125],[118.761221953125,36.648843],[118.763468046875,36.6588430000001],[118.761221953125,36.668843],[118.763468046875,36.678843],[118.758424101563,36.7013271308594],[118.725045195313,36.6938430000001],[118.717345,36.723843],[118.73326296875,36.7279274726563],[118.757017851563,36.7433998847657],[118.811676054688,36.7311464667969],[118.832271757813,36.7609804511719],[118.873013945313,36.7701137519531],[118.88142703125,36.7579274726563],[118.927345,36.753843]]]]}},{"type":"Feature","properties":{"name":"昌邑市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.595640898438,36.867173078125],[119.563170195313,36.8080178046875],[119.534971953125,36.7971425605469],[119.523389921875,36.7385292792969],[119.573170195313,36.7096681953126],[119.587345,36.683843],[119.55422,36.6790212226563],[119.539224882813,36.6350087714844],[119.57187625,36.6148891425781],[119.581158476563,36.5876552558594],[119.593531523438,36.5800307441407],[119.61562625,36.5143764472657],[119.610787382813,36.4988430000001],[119.617017851563,36.478843],[119.604991484375,36.4402321601563],[119.562345,36.4535146308594],[119.541539335938,36.4470351386719],[119.533531523438,36.4600307441406],[119.492017851563,36.4676552558594],[119.468023710938,36.4287123847657],[119.447345,36.4238430000001],[119.4179309375,36.4441518378907],[119.428297148438,36.4903908515626],[119.38142703125,36.5079274726562],[119.37326296875,36.5897585273438],[119.367345,36.603843],[119.387345,36.603843],[119.387345,36.6138430000001],[119.387345,36.623843],[119.400152617188,36.628843],[119.387345,36.633843],[119.383531523438,36.6500307441406],[119.3705090625,36.6685805488281],[119.386900664063,36.7051711250001],[119.423531523438,36.7176552558594],[119.427345,36.723843],[119.422628203125,36.7791237617188],[119.405572539063,36.7985622382813],[119.361011992188,36.7674330878907],[119.32150515625,36.7697866035157],[119.323179960938,36.7978847480469],[119.309429960938,36.8285622382813],[119.264449492188,36.8041176582032],[119.220909453125,36.8197402167969],[119.222940703125,36.853843],[119.222047148438,36.868843],[119.222642851563,36.8788430000001],[119.22156375,36.8969496894532],[119.242628203125,36.9885622382813],[119.252061796875,37.0891237617188],[119.297345,37.1538430000001],[119.48312625,37.1486440253907],[119.50224734375,37.1287429023438],[119.54244265625,37.1189430976563],[119.547345,37.063843],[119.55142703125,37.0579274726563],[119.600767851563,37.0394655585938],[119.607345,37.013843],[119.5789465625,36.9542751289062],[119.596060820313,36.9126381660157],[119.591358671875,36.8888430000001],[119.595640898438,36.867173078125]]]]}},{"type":"Feature","properties":{"name":"坊子区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.367345,36.6138430000001],[119.367345,36.603843],[119.329654570313,36.5941713691406],[119.30326296875,36.5479274726563],[119.29142703125,36.5397585273438],[119.282345,36.5266017890625],[119.27326296875,36.5397585273438],[119.247174101563,36.5577712226563],[119.195933867188,36.5462856269532],[119.183013945313,36.5275722480469],[119.16033328125,36.5326564765625],[119.147345,36.513843],[119.139923125,36.5003029609375],[119.112003203125,36.5221767402344],[119.103804960938,36.5603029609375],[119.070885039063,36.5673830390625],[119.057345,36.593843],[119.07326296875,36.5979274726563],[119.097345,36.6138430000001],[119.11279421875,36.6074941230469],[119.121519804688,36.6196681953125],[119.1439465625,36.6357411933594],[119.136593046875,36.6729433417969],[119.210904570313,36.6582595039063],[119.221519804688,36.6180178046875],[119.265147734375,36.6096681953125],[119.261358671875,36.628843],[119.264971953125,36.6471425605469],[119.295308867188,36.6588430000001],[119.291358671875,36.678843],[119.293472929688,36.6895510078125],[119.263326445313,36.7011794257812],[119.257345,36.723843],[119.385084257813,36.7328713203125],[119.427345,36.723843],[119.423531523438,36.7176552558594],[119.386900664063,36.7051711250001],[119.3705090625,36.6685805488281],[119.383531523438,36.6500307441406],[119.387345,36.633843],[119.387345,36.623843],[119.387345,36.6138430000001],[119.367345,36.6138430000001]]]]}},{"type":"Feature","properties":{"name":"高密市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.723804960938,36.5837160468751],[119.721256132813,36.5664650703125],[119.74263796875,36.5696254707032],[119.808023710938,36.5439199042969],[119.910084257813,36.5265822578125],[119.9221496875,36.4971096015626],[119.937838164063,36.5174379707031],[119.960767851563,36.5208266425781],[119.983922148438,36.5068593574219],[120.002935820313,36.5096694160157],[120.007345,36.493843],[119.999405546875,36.4874843574219],[120.002965117188,36.4588430000001],[120.00150515625,36.4470815253906],[119.977345,36.4500868964844],[119.94736453125,36.4463576484375],[119.932896757813,36.4282900214844],[119.917354765625,36.4158412910157],[119.933453398438,36.3884487128907],[119.900240507813,36.3789528632813],[119.882896757813,36.3182900214844],[119.861793242188,36.3093959785157],[119.838717070313,36.2958327460938],[119.822896757813,36.2582900214844],[119.803355742188,36.2250453925781],[119.823155546875,36.2091896796876],[119.811143828125,36.1671266914063],[119.792183867188,36.1694850898438],[119.742100859375,36.1581081367188],[119.722896757813,36.1693959785156],[119.672423125,36.1803163886719],[119.647345,36.143843],[119.632154570313,36.1486525703125],[119.602535429688,36.1890334296876],[119.576695585938,36.1986525703126],[119.562535429688,36.1686525703126],[119.5457434375,36.1530934882813],[119.522535429688,36.1890334296876],[119.432686796875,36.2033461738281],[119.48279421875,36.2980422187501],[119.471646757813,36.3405922675782],[119.457345,36.3538430000001],[119.452896757813,36.3693959785156],[119.441666289063,36.3783901191407],[119.447345,36.4238430000001],[119.468023710938,36.4287123847657],[119.492017851563,36.4676552558594],[119.533531523438,36.4600307441406],[119.541539335938,36.4470351386719],[119.562345,36.4535146308594],[119.604991484375,36.4402321601563],[119.617017851563,36.478843],[119.610787382813,36.4988430000001],[119.61562625,36.5143764472657],[119.593531523438,36.5800307441407],[119.581158476563,36.5876552558594],[119.57187625,36.6148891425781],[119.539224882813,36.6350087714844],[119.55422,36.6790212226563],[119.587345,36.683843],[119.59298953125,36.6794863105469],[119.62170046875,36.6381996894531],[119.723804960938,36.5837160468751]]]]}},{"type":"Feature","properties":{"name":"寒亭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.197345,37.163843],[119.185152617188,37.1604201484375],[119.193922148438,37.1516506171875],[119.212086210938,37.1695095039063],[119.291793242188,37.1582900214844],[119.297345,37.1538430000001],[119.252061796875,37.0891237617188],[119.242628203125,36.9885622382813],[119.22156375,36.8969496894532],[119.222642851563,36.8788430000001],[119.222047148438,36.868843],[119.222940703125,36.853843],[119.220909453125,36.8197402167969],[119.264449492188,36.8041176582032],[119.309429960938,36.8285622382813],[119.323179960938,36.7978847480469],[119.32150515625,36.7697866035157],[119.361011992188,36.7674330878907],[119.405572539063,36.7985622382813],[119.422628203125,36.7791237617188],[119.427345,36.723843],[119.385084257813,36.7328713203125],[119.257345,36.723843],[119.25298953125,36.7294863105469],[119.18369265625,36.7412587714844],[119.161832304688,36.7380287910156],[119.15298953125,36.7494863105469],[119.1251965625,36.7608608222656],[119.107345,36.753843],[119.102955351563,36.7796718574219],[119.092345,36.7781044746094],[119.072345,36.781059796875],[119.018560820313,36.7731117988282],[118.971822539063,36.8077663398437],[118.967345,36.823843],[118.9990246875,36.8113881660157],[119.004561796875,36.8488430000001],[119.001607695313,36.868843],[119.003824492188,36.8838430000001],[118.999439726563,36.9134987617188],[119.04170046875,36.9694863105469],[119.073560820313,36.988540265625],[119.059879179688,37.0112172675781],[119.08170046875,37.0394863105469],[119.087345,37.043843],[119.090767851563,37.0316506171875],[119.099537382813,37.0404201484375],[119.087345,37.043843],[119.137901640625,37.1047109199219],[119.131929960938,37.1790151191406],[119.137345,37.203843],[119.141646757813,37.2123427558594],[119.160704375,37.197202375],[119.183985625,37.190483625],[119.197345,37.163843]]],[[[119.193922148438,37.2560353828125],[119.197345,37.243843],[119.185152617188,37.2472658515626],[119.193922148438,37.2560353828125]]]]}},{"type":"Feature","properties":{"name":"奎文区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.15298953125,36.7494863105469],[119.161832304688,36.7380287910156],[119.18369265625,36.7412587714844],[119.25298953125,36.7294863105469],[119.257345,36.723843],[119.263326445313,36.7011794257812],[119.293472929688,36.6895510078125],[119.291358671875,36.678843],[119.295308867188,36.6588430000001],[119.264971953125,36.6471425605469],[119.261358671875,36.628843],[119.265147734375,36.6096681953125],[119.221519804688,36.6180178046875],[119.210904570313,36.6582595039063],[119.136593046875,36.6729433417969],[119.1439465625,36.6357411933594],[119.121519804688,36.6196681953125],[119.11279421875,36.6074941230469],[119.097345,36.6138430000001],[119.091871367188,36.6389382148438],[119.102764921875,36.6686049628906],[119.101534453125,36.6839345527344],[119.107345,36.753843],[119.1251965625,36.7608608222656],[119.15298953125,36.7494863105469]]]]}},{"type":"Feature","properties":{"name":"临朐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.570709257813,36.6221303535157],[118.592345,36.6178554511719],[118.602345,36.6198305488282],[118.622345,36.6158791328126],[118.647554960938,36.6208608222657],[118.663170195313,36.6096681953125],[118.685479765625,36.5711879707031],[118.702779570313,36.56776878125],[118.721519804688,36.5796681953125],[118.737345,36.5838430000001],[118.741793242188,36.5782900214844],[118.770826445313,36.5660549140625],[118.7758215625,36.5258950019532],[118.761578398438,36.488843],[118.773004179688,36.459126203125],[118.771656523438,36.4483193183594],[118.831690703125,36.4353298164063],[118.801441679688,36.4111074042969],[118.803824492188,36.3919362617188],[118.787345,36.3713552070313],[118.765777617188,36.3982900214844],[118.731656523438,36.3893617988281],[118.734156523438,36.3692958808594],[118.72146609375,36.35913596875],[118.732896757813,36.3293959785156],[118.746095,36.2832424140625],[118.787345,36.3138430000001],[118.777056914063,36.2737599921875],[118.745362578125,36.2250856757813],[118.737345,36.1938430000001],[118.744390898438,36.1759242988282],[118.722857695313,36.1480287910157],[118.707345,36.1503212714844],[118.6919153125,36.1480409980469],[118.651236601563,36.1781996894531],[118.609244414063,36.1689455390625],[118.56170046875,36.1494863105469],[118.54427859375,36.1269118476563],[118.500611601563,36.1090407539063],[118.516392851563,36.0968593574219],[118.507345,36.073843],[118.474556914063,36.0612404609375],[118.48302859375,36.1293581367187],[118.444405546875,36.1404018378907],[118.406964140625,36.1260097480469],[118.392896757813,36.1593959785157],[118.371373320313,36.1960170722657],[118.376417265625,36.2365785957032],[118.347100859375,36.2600563789062],[118.301163359375,36.2543422675781],[118.30822390625,36.3111074042969],[118.254840117188,36.3538564277344],[118.227345,36.393843],[118.24062625,36.4005617500001],[118.247345,36.413843],[118.251519804688,36.4196681953125],[118.263170195313,36.4280178046875],[118.272965117188,36.441684796875],[118.292965117188,36.4377321601563],[118.301519804688,36.4496681953125],[118.34080203125,36.4648183417969],[118.373170195313,36.4880178046876],[118.390484648438,36.5121742988281],[118.412779570313,36.50776878125],[118.440694609375,36.5254933906251],[118.503170195313,36.5380178046875],[118.530831328125,36.5555800605469],[118.552345,36.5598305488282],[118.570831328125,36.5561782050781],[118.573453398438,36.5694631171876],[118.556436796875,36.5816616035156],[118.57341921875,36.6084096503906],[118.570709257813,36.6221303535157]]]]}},{"type":"Feature","properties":{"name":"青州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.474928007813,36.9561501289063],[118.544639921875,36.9332216621094],[118.557345,36.9538430000001],[118.570357695313,36.9445143867188],[118.591690703125,36.9077260566407],[118.607554960938,36.9108608222656],[118.625611601563,36.8979177070313],[118.633331328125,36.858843],[118.623819609375,36.8107033515625],[118.653170195313,36.7896681953125],[118.666671171875,36.7708278632813],[118.703170195313,36.7496681953125],[118.717345,36.723843],[118.725045195313,36.6938430000001],[118.758424101563,36.7013271308594],[118.763468046875,36.678843],[118.761221953125,36.668843],[118.763468046875,36.6588430000001],[118.761221953125,36.648843],[118.765235625,36.6309572578125],[118.751124296875,36.6092897773438],[118.754215117188,36.5954921699219],[118.737345,36.5838430000001],[118.721519804688,36.5796681953125],[118.702779570313,36.56776878125],[118.685479765625,36.5711879707031],[118.663170195313,36.6096681953125],[118.647554960938,36.6208608222657],[118.622345,36.6158791328126],[118.602345,36.6198305488282],[118.592345,36.6178554511719],[118.570709257813,36.6221303535157],[118.57341921875,36.6084096503906],[118.556436796875,36.5816616035156],[118.573453398438,36.5694631171876],[118.570831328125,36.5561782050781],[118.552345,36.5598305488282],[118.530831328125,36.5555800605469],[118.503170195313,36.5380178046875],[118.440694609375,36.5254933906251],[118.412779570313,36.50776878125],[118.390484648438,36.5121742988281],[118.373170195313,36.4880178046876],[118.34080203125,36.4648183417969],[118.301519804688,36.4496681953125],[118.292965117188,36.4377321601563],[118.272965117188,36.441684796875],[118.263170195313,36.4280178046875],[118.251519804688,36.4196681953125],[118.247345,36.413843],[118.218516875,36.4067617011719],[118.224586210938,36.433843],[118.221221953125,36.448843],[118.223565703125,36.4592897773438],[118.204454375,36.4886403632813],[118.215709257813,36.5388430000001],[118.184151640625,36.5506508613282],[118.169913359375,36.5887099433594],[118.209127226563,36.6157875800782],[118.197345,36.643843],[118.214215117188,36.6554921699219],[118.209454375,36.6767287421875],[118.22326296875,36.6979274726562],[118.236573515625,36.7334999824219],[118.27431765625,36.7250380683594],[118.268980742188,36.748843],[118.293638945313,36.7580690742188],[118.289312773438,36.777368390625],[118.343682890625,36.7651796699219],[118.38142703125,36.7897585273438],[118.434678984375,36.8034242988282],[118.431124296875,36.8192897773438],[118.451256132813,36.8502077460938],[118.462345,36.8477223945313],[118.475308867188,36.8506276679688],[118.471221953125,36.868843],[118.475709257813,36.8888430000001],[118.47107546875,36.9095131660157],[118.48326296875,36.9179274726563],[118.49142703125,36.9376625800781],[118.467345,36.943843],[118.474928007813,36.9561501289063]]]]}},{"type":"Feature","properties":{"name":"寿光市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.927345,36.753843],[118.939537382813,36.7504201484376],[118.930767851563,36.7416506171875],[118.927345,36.753843]]],[[[119.087345,37.043843],[119.099537382813,37.0404201484375],[119.090767851563,37.0316506171875],[119.087345,37.043843]]],[[[119.087345,37.043843],[119.08170046875,37.0394863105469],[119.059879179688,37.0112172675781],[119.073560820313,36.988540265625],[119.04170046875,36.9694863105469],[118.999439726563,36.9134987617188],[119.003824492188,36.8838430000001],[119.001607695313,36.868843],[119.004561796875,36.8488430000001],[118.9990246875,36.8113881660157],[118.967345,36.823843],[118.951158476563,36.8200307441407],[118.9406653125,36.7892385078126],[118.943970976563,36.7786293769531],[118.937345,36.7638430000001],[118.927345,36.7638430000001],[118.927345,36.753843],[118.88142703125,36.7579274726563],[118.873013945313,36.7701137519531],[118.832271757813,36.7609804511719],[118.811676054688,36.7311464667969],[118.757017851563,36.7433998847657],[118.73326296875,36.7279274726563],[118.717345,36.723843],[118.703170195313,36.7496681953125],[118.666671171875,36.7708278632813],[118.653170195313,36.7896681953125],[118.623819609375,36.8107033515625],[118.633331328125,36.858843],[118.625611601563,36.8979177070313],[118.607554960938,36.9108608222656],[118.591690703125,36.9077260566407],[118.570357695313,36.9445143867188],[118.557345,36.9538430000001],[118.550562773438,36.9984352851563],[118.579132109375,37.011548078125],[118.536881132813,37.0309401679688],[118.562061796875,37.0591237617188],[118.650391875,37.0728884101563],[118.6670715625,37.1351540351563],[118.652061796875,37.1485622382813],[118.642628203125,37.1591237617188],[118.63115359375,37.1693752265626],[118.661798125,37.1967568183594],[118.675523710938,37.2266640449219],[118.783795195313,37.2854994941406],[118.912061796875,37.2991237617187],[118.987345,37.3038430000001],[118.980894804688,37.2881435371094],[119.063858671875,37.2715102363281],[119.059058867188,37.2472048164063],[119.094390898438,37.2541872382813],[119.091226835938,37.2381874824219],[119.123170195313,37.2196681953125],[119.131519804688,37.2080178046875],[119.137345,37.203843],[119.131929960938,37.1790151191406],[119.137901640625,37.1047109199219],[119.087345,37.043843]],[[119.047345,37.213843],[119.043922148438,37.2260353828125],[119.035152617188,37.2172658515625],[119.047345,37.213843]],[[119.047345,37.233843],[119.043922148438,37.2460353828126],[119.035152617188,37.2372658515625],[119.047345,37.233843]]]]}},{"type":"Feature","properties":{"name":"潍城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.971822539063,36.8077663398437],[119.018560820313,36.7731117988282],[119.072345,36.781059796875],[119.092345,36.7781044746094],[119.102955351563,36.7796718574219],[119.107345,36.753843],[119.101534453125,36.6839345527344],[119.102764921875,36.6686049628906],[119.091871367188,36.6389382148438],[119.097345,36.6138430000001],[119.07326296875,36.5979274726563],[119.057345,36.593843],[119.011881132813,36.5983803535157],[119.001954375,36.6103322578125],[118.972345,36.6073146796876],[118.940987578125,36.6105104804688],[118.9428528125,36.628843],[118.9418371875,36.638843],[118.9428528125,36.648843],[118.941803007813,36.659165265625],[118.952886992188,36.6785207343751],[118.9518371875,36.6888430000001],[118.952882109375,36.6991078925781],[118.941617460938,36.7290859199219],[118.971422148438,36.753843],[118.937345,36.7638430000001],[118.943970976563,36.7786293769531],[118.9406653125,36.7892385078126],[118.951158476563,36.8200307441407],[118.967345,36.823843],[118.971822539063,36.8077663398437]]]]}},{"type":"Feature","properties":{"name":"诸城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.48279421875,36.2980422187501],[119.432686796875,36.2033461738281],[119.522535429688,36.1890334296876],[119.5457434375,36.1530934882813],[119.562535429688,36.1686525703126],[119.576695585938,36.1986525703126],[119.602535429688,36.1890334296876],[119.632154570313,36.1486525703125],[119.647345,36.143843],[119.640719023438,36.1290566230469],[119.649381132813,36.1012587714844],[119.623531523438,36.0853322578125],[119.631485625,36.0668984199219],[119.662345,36.0572853828125],[119.672740507813,36.0605239082031],[119.703531523438,36.0500307441407],[119.707345,36.0438430000001],[119.672896757813,35.997407453125],[119.701793242188,35.9282900214844],[119.721241484375,35.9127150703125],[119.727779570313,35.8601406074219],[119.712345,35.8582216621094],[119.685479765625,35.8615627265625],[119.662896757813,35.8482900214844],[119.625357695313,35.8324697089844],[119.610650664063,35.80745628125],[119.613248320313,35.7865785957032],[119.586671171875,35.7652968574219],[119.621793242188,35.7172206855469],[119.561793242188,35.7182900214844],[119.517345,35.723843],[119.502896757813,35.7493959785156],[119.481441679688,35.7665785957031],[119.484156523438,35.7883901191406],[119.471793242188,35.7982900214844],[119.461890898438,35.8106520820313],[119.414049101563,35.8047011542969],[119.392896757813,35.7782900214844],[119.35681765625,35.7693959785157],[119.36814578125,35.8604701972657],[119.345025664063,35.8997988105469],[119.304610625,35.8947707343751],[119.292896757813,35.9093959785156],[119.278912382813,35.9182900214844],[119.262799101563,35.8981642890625],[119.252061796875,35.8994997382813],[119.1943371875,35.8773110175782],[119.162628203125,35.8894997382813],[119.142652617188,35.8870156074219],[119.132896757813,35.9014345527344],[119.17302859375,35.9183449531251],[119.171099882813,35.9338430000001],[119.175738554688,35.9711305976563],[119.081978789063,35.9594692207032],[119.067345,35.953843],[119.064166289063,35.9606642890625],[119.050523710938,35.9670217109376],[119.0412903125,35.9868373847657],[119.022345,35.9759767890626],[119.006060820313,35.9853127265625],[119.026353789063,36.0096450019532],[119.006612578125,36.018843],[119.017345,36.023843],[119.043658476563,36.0279897285157],[119.0377746875,36.0542287421876],[119.057345,36.0838430000001],[119.071373320313,36.1001259589844],[119.096236601563,36.0981288886719],[119.12197390625,36.1392153144532],[119.17271609375,36.1784706855469],[119.18197390625,36.1892153144531],[119.198624296875,36.2035610175782],[119.281920195313,36.1968679023438],[119.323326445313,36.2199697089844],[119.351715117188,36.2176882148438],[119.395167265625,36.2517153144532],[119.438853789063,36.2712099433594],[119.457345,36.3538430000001],[119.471646757813,36.3405922675782],[119.48279421875,36.2980422187501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"嘉祥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.497345,35.263843],[116.509537382813,35.2604201484376],[116.500767851563,35.2516506171875],[116.497345,35.263843]]],[[[116.497345,35.263843],[116.47271609375,35.2484706855469],[116.417345,35.223843],[116.394073515625,35.2325868964844],[116.3245715625,35.2255019355469],[116.30474734375,35.179790265625],[116.267345,35.193843],[116.278726835938,35.2215419746094],[116.268551054688,35.2730336738281],[116.224205351563,35.2642702460938],[116.213170195313,35.2796681953125],[116.201519804688,35.2880178046875],[116.183170195313,35.3195497871094],[116.227349882813,35.3730837226563],[116.211519804688,35.3980178046875],[116.19810671875,35.4649221015625],[116.161910429688,35.4577687812501],[116.127574492188,35.4795680976563],[116.117345,35.493843],[116.1120325,35.5790944648438],[116.12283328125,35.58874534375],[116.107808867188,35.6163893867188],[116.127345,35.633843],[116.201871367188,35.6265138984375],[116.302345,35.6184413886719],[116.312584257813,35.6192641425781],[116.327345,35.613843],[116.331641875,35.5865883613281],[116.353013945313,35.555630109375],[116.373116484375,35.5601369453125],[116.38142703125,35.5379274726563],[116.397345,35.5138430000001],[116.402271757813,35.4715859199219],[116.448404570313,35.4537929511719],[116.456329375,35.4136684394532],[116.442506132813,35.3447096992188],[116.413170195313,35.3236830878906],[116.451519804688,35.2880178046875],[116.490904570313,35.2728273750001],[116.497345,35.263843]]]]}},{"type":"Feature","properties":{"name":"金乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.433204375,35.1937734199219],[116.477135039063,35.178802716797],[116.491158476563,35.1376552558594],[116.507345,35.1338430000001],[116.502628203125,35.1285622382813],[116.413082304688,35.1165859199219],[116.432994414063,35.0987953925781],[116.3841028125,35.067700421875],[116.402061796875,35.0285622382813],[116.414268828125,35.0061037421875],[116.410933867188,34.9501784492188],[116.432628203125,34.9191237617188],[116.437345,34.893843],[116.41170046875,34.8594863105469],[116.407345,34.843843],[116.373170195313,34.8596681953125],[116.281519804688,34.8780178046875],[116.253170195313,34.8996681953125],[116.198316679688,34.9085353828125],[116.183170195313,34.9296681953125],[116.177345,34.9338430000001],[116.15080203125,34.9414321113282],[116.154898710938,34.9743886542969],[116.111793242188,35.0282900214844],[116.102896757813,35.0456484199219],[116.132896757813,35.0582900214845],[116.141793242188,35.0993959785156],[116.147345,35.113843],[116.185045195313,35.1184499335938],[116.214732695313,35.1676723457032],[116.210494414063,35.196352765625],[116.232379179688,35.1995864082032],[116.267345,35.193843],[116.30474734375,35.179790265625],[116.3245715625,35.2255019355469],[116.394073515625,35.2325868964844],[116.417345,35.223843],[116.433204375,35.1937734199219]]]]}},{"type":"Feature","properties":{"name":"梁山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.054483671875,35.9683315253906],[116.051529570313,35.9483315253907],[116.06298953125,35.9394863105469],[116.083516875,35.9051638007813],[116.142569609375,35.8879457832031],[116.16615359375,35.902173078125],[116.20478640625,35.88698753125],[116.22295046875,35.8896718574219],[116.237159453125,35.8223366523437],[116.293170195313,35.7994130683594],[116.291226835938,35.7862831855469],[116.307345,35.7738430000001],[116.325030546875,35.7509291816406],[116.358448515625,35.7372524238281],[116.340714140625,35.7078493476563],[116.321314726563,35.6584987617188],[116.34093875,35.6433498359375],[116.34459109375,35.6186452460938],[116.327345,35.613843],[116.312584257813,35.6192641425781],[116.302345,35.6184413886719],[116.201871367188,35.6265138984375],[116.127345,35.633843],[116.1058215625,35.6854323554688],[115.997222929688,35.7701357246094],[115.892061796875,35.8085622382813],[115.862628203125,35.8228224921876],[115.877345,35.863843],[115.885933867188,35.8867067695313],[115.853267851563,35.913843],[115.90388796875,35.9286977363281],[115.900386992188,35.9630373359375],[115.992345,35.9724098945313],[116.032608671875,35.968305890625],[116.047345,35.9738430000001],[116.054483671875,35.9683315253906]]]]}},{"type":"Feature","properties":{"name":"曲阜市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.996295195313,35.8151113105469],[117.0249621875,35.794985578125],[117.042345,35.8004006171875],[117.057345,35.795727765625],[117.089928007813,35.8058779121094],[117.101158476563,35.7876552558594],[117.123531523438,35.7800307441407],[117.127345,35.7738430000001],[117.104097929688,35.7552248359375],[117.091632109375,35.6695839667969],[117.092965117188,35.6588430000001],[117.091724882813,35.648843],[117.094000273438,35.6305165839844],[117.132896757813,35.6193959785157],[117.145211210938,35.590171125],[117.191807890625,35.5768483710938],[117.211793242188,35.5634194160157],[117.188546171875,35.523872296875],[117.222896757813,35.5093959785157],[117.231793242188,35.4982900214844],[117.237345,35.493843],[117.231783476563,35.4493959785156],[117.181793242188,35.4582900214844],[117.158428984375,35.4874648261719],[117.141983671875,35.4895095039063],[117.118892851563,35.4759352851563],[117.061793242188,35.4882900214844],[117.018580351563,35.5048989082032],[116.978785429688,35.4881288886719],[116.956143828125,35.4598537421876],[116.922896757813,35.4793959785156],[116.887345,35.483843],[116.844420195313,35.5484853339844],[116.853468046875,35.5888430000001],[116.847789335938,35.6141677070313],[116.86408328125,35.6391909003907],[116.85142703125,35.6479274726563],[116.84326296875,35.6620009589844],[116.862345,35.6577223945313],[116.876939726563,35.6609938789063],[116.867345,35.683843],[116.873531523438,35.6876552558595],[116.881158476563,35.7000307441406],[116.946070585938,35.7218752265626],[116.9386340625,35.7457619453126],[116.977135039063,35.7588832832032],[116.996295195313,35.8151113105469]]]]}},{"type":"Feature","properties":{"name":"任城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.497345,35.263843],[116.500767851563,35.2516506171875],[116.509537382813,35.2604201484376],[116.490904570313,35.2728273750001],[116.451519804688,35.2880178046875],[116.413170195313,35.3236830878906],[116.442506132813,35.3447096992188],[116.456329375,35.4136684394532],[116.448404570313,35.4537929511719],[116.402271757813,35.4715859199219],[116.397345,35.5138430000001],[116.42388796875,35.5214321113281],[116.420186796875,35.5511855292969],[116.528819609375,35.5358925605469],[116.567545195313,35.558657453125],[116.597345,35.563843],[116.609595976563,35.5460964179687],[116.65326296875,35.5297585273438],[116.66142703125,35.5079274726563],[116.68326296875,35.4797585273438],[116.69142703125,35.4479274726563],[116.70408328125,35.4284950996094],[116.68435671875,35.4148744941407],[116.74326296875,35.3997585273438],[116.747345,35.3938430000001],[116.756641875,35.3559828925781],[116.747345,35.333843],[116.74197390625,35.3292153144532],[116.6818371875,35.2514784980469],[116.633043242188,35.2860744453125],[116.613917265625,35.3289321113281],[116.573306914063,35.3384706855469],[116.56271609375,35.2650612617188],[116.58271609375,35.2292153144531],[116.597345,35.1638430000001],[116.5593371875,35.1726503730469],[116.507345,35.1338430000001],[116.491158476563,35.1376552558594],[116.477135039063,35.178802716797],[116.433204375,35.1937734199219],[116.417345,35.223843],[116.47271609375,35.2484706855469],[116.497345,35.263843]],[[116.631246367188,35.3927431464844],[116.619874296875,35.4323647285156],[116.602345,35.4274379707032],[116.574976835938,35.4351296210938],[116.55072390625,35.4196059394531],[116.55375125,35.408843],[116.546197539063,35.3819753242188],[116.562345,35.3774379707032],[116.584771757813,35.3837404609375],[116.607345,35.373843],[116.611246367188,35.3799404121094],[116.631246367188,35.3927431464844]]]]}},{"type":"Feature","properties":{"name":"市中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.574976835938,35.4351296210938],[116.602345,35.4274379707032],[116.619874296875,35.4323647285156],[116.631246367188,35.3927431464844],[116.611246367188,35.3799404121094],[116.607345,35.373843],[116.584771757813,35.3837404609375],[116.562345,35.3774379707032],[116.546197539063,35.3819753242188],[116.55375125,35.408843],[116.55072390625,35.4196059394531],[116.574976835938,35.4351296210938]]]]}},{"type":"Feature","properties":{"name":"微山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.247345,34.473843],[117.243922148438,34.4860353828125],[117.235152617188,34.4772658515625],[117.242896757813,34.4582900214844],[117.221793242188,34.4493959785157],[117.187769804688,34.4293959785157],[117.157027617188,34.4399221015625],[117.131651640625,34.5287795234375],[117.137345,34.5538430000001],[117.146168242188,34.5599355292969],[117.115513945313,34.6070119453125],[117.101573515625,34.6442739082032],[117.064146757813,34.635884015625],[117.05326296875,34.6841188789062],[117.074283476563,34.6986330390626],[117.008360625,34.7713124824219],[116.987345,34.7666017890626],[116.965933867188,34.7714003730469],[116.94654421875,34.7994826484375],[116.967345,34.813843],[116.970767851563,34.8016506171876],[116.979537382813,34.8104201484376],[116.967345,34.813843],[116.960904570313,34.8357949042969],[116.9232434375,34.8521279121094],[116.943541289063,34.8689882636719],[116.921881132813,34.8783803535156],[116.912808867188,34.8993056464844],[116.891881132813,34.9083803535156],[116.862691679688,34.9293886542969],[116.824298125,34.925473859375],[116.817345,34.9338430000001],[116.811812773438,34.965639875],[116.765948515625,34.984966046875],[116.709932890625,35.0297646308594],[116.641793242188,35.0682900214844],[116.625269804688,35.1074953437501],[116.604215117188,35.1243556953125],[116.597345,35.1638430000001],[116.58271609375,35.2292153144531],[116.56271609375,35.2650612617188],[116.573306914063,35.3384706855469],[116.613917265625,35.3289321113281],[116.633043242188,35.2860744453125],[116.6818371875,35.2514784980469],[116.74197390625,35.3292153144532],[116.747345,35.333843],[116.757906523438,35.3244057441407],[116.776783476563,35.3032802558594],[116.795484648438,35.2865724921875],[116.782628203125,35.2585622382813],[116.761822539063,35.2287783027344],[116.781929960938,35.2108119941407],[116.7826575,35.1986171699219],[116.762838164063,35.1621498847657],[116.807345,35.153843],[116.81298953125,35.1494863105469],[116.82677859375,35.1316237617188],[116.883780546875,35.0919802070313],[116.90170046875,35.0481996894532],[116.91298953125,35.0394863105469],[116.92170046875,35.0281996894532],[116.950484648438,35.0164174628907],[116.953140898438,34.998452375],[116.94088015625,34.9781276679688],[116.972857695313,34.9367018867188],[117.016832304688,34.9432009101563],[117.045889921875,34.9256728339844],[117.103331328125,34.9341616035156],[117.12568484375,34.853891828125],[117.165343046875,34.8299697089844],[117.187345,34.8238430000001],[117.182896757813,34.8182900214844],[117.163448515625,34.8027150703125],[117.16166140625,34.788344953125],[117.182896757813,34.7793959785157],[117.2476184375,34.7276332832032],[117.262706328125,34.7295095039063],[117.281983671875,34.7181764960938],[117.299249296875,34.7203237128907],[117.312896757813,34.7093959785157],[117.331793242188,34.6782900214845],[117.342896757813,34.6693959785157],[117.351793242188,34.6582900214844],[117.362896757813,34.6493959785156],[117.371846953125,34.62815940625],[117.390181914063,34.6304396796876],[117.407345,34.623843],[117.39142703125,34.5997585273438],[117.387345,34.573843],[117.359718046875,34.5851955390625],[117.298580351563,34.5666237617188],[117.2758215625,34.5711208320313],[117.257823515625,34.4813539863282],[117.247345,34.473843]]]]}},{"type":"Feature","properties":{"name":"鱼台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.811812773438,34.965639875],[116.817345,34.9338430000001],[116.781783476563,34.9396852851563],[116.771143828125,34.9136940742188],[116.727345,34.923843],[116.703170195313,34.9296681953125],[116.6318371875,34.9380178046875],[116.583170195313,34.9180178046875],[116.483370390625,34.8980361152344],[116.437345,34.893843],[116.432628203125,34.9191237617188],[116.410933867188,34.9501784492188],[116.414268828125,35.0061037421875],[116.402061796875,35.0285622382813],[116.3841028125,35.067700421875],[116.432994414063,35.0987953925781],[116.413082304688,35.1165859199219],[116.502628203125,35.1285622382813],[116.507345,35.1338430000001],[116.5593371875,35.1726503730469],[116.597345,35.1638430000001],[116.604215117188,35.1243556953125],[116.625269804688,35.1074953437501],[116.641793242188,35.0682900214844],[116.709932890625,35.0297646308594],[116.765948515625,34.984966046875],[116.811812773438,34.965639875]]]]}},{"type":"Feature","properties":{"name":"邹城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.061793242188,35.4882900214844],[117.118892851563,35.4759352851563],[117.141983671875,35.4895095039063],[117.158428984375,35.4874648261719],[117.181793242188,35.4582900214844],[117.231783476563,35.4493959785156],[117.237345,35.493843],[117.286475859375,35.4826821113282],[117.327345,35.4775991035157],[117.342564726563,35.4794924140626],[117.381793242188,35.4682900214844],[117.427345,35.453843],[117.443975859375,35.4410060859375],[117.467423125,35.4021315742188],[117.43298953125,35.3450429511719],[117.44170046875,35.3281996894532],[117.47170046875,35.3159206367187],[117.459327421875,35.2907521796875],[117.417345,35.273843],[117.405694609375,35.282192609375],[117.388155546875,35.3066640449219],[117.311890898438,35.3219533515625],[117.307345,35.293843],[117.262388945313,35.2883290839844],[117.250748320313,35.2895156074219],[117.252901640625,35.2683974433594],[117.201881132813,35.2593056464844],[117.192808867188,35.2483803535156],[117.1381653125,35.2323451972656],[117.01685671875,35.2187416816406],[116.949893828125,35.1765444160156],[116.917345,35.1798622871094],[116.901954375,35.1782936835938],[116.888721953125,35.1942263007813],[116.852398710938,35.1680849433594],[116.81740359375,35.1881264472656],[116.807345,35.153843],[116.762838164063,35.1621498847657],[116.7826575,35.1986171699219],[116.781929960938,35.2108119941407],[116.761822539063,35.2287783027344],[116.782628203125,35.2585622382813],[116.795484648438,35.2865724921875],[116.776783476563,35.3032802558594],[116.757906523438,35.3244057441407],[116.747345,35.333843],[116.756641875,35.3559828925781],[116.747345,35.3938430000001],[116.78763796875,35.3980873847657],[116.806300078125,35.42837425],[116.841949492188,35.4405239082032],[116.85287234375,35.4371218085938],[116.881871367188,35.460610578125],[116.887345,35.483843],[116.922896757813,35.4793959785156],[116.956143828125,35.4598537421876],[116.978785429688,35.4881288886719],[117.018580351563,35.5048989082032],[117.061793242188,35.4882900214844]]]]}},{"type":"Feature","properties":{"name":"兖州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.715318632813,35.7003395820313],[116.737345,35.6975991035157],[116.761890898438,35.7006520820313],[116.786920195313,35.6693959785157],[116.803018828125,35.6884316230469],[116.801241484375,35.7027260566407],[116.867345,35.683843],[116.876939726563,35.6609938789063],[116.862345,35.6577223945313],[116.84326296875,35.6620009589844],[116.85142703125,35.6479274726563],[116.86408328125,35.6391909003907],[116.847789335938,35.6141677070313],[116.853468046875,35.5888430000001],[116.844420195313,35.5484853339844],[116.887345,35.483843],[116.881871367188,35.460610578125],[116.85287234375,35.4371218085938],[116.841949492188,35.4405239082032],[116.806300078125,35.42837425],[116.78763796875,35.3980873847657],[116.747345,35.3938430000001],[116.74326296875,35.3997585273438],[116.68435671875,35.4148744941407],[116.70408328125,35.4284950996094],[116.69142703125,35.4479274726563],[116.68326296875,35.4797585273438],[116.66142703125,35.5079274726563],[116.65326296875,35.5297585273438],[116.609595976563,35.5460964179687],[116.597345,35.563843],[116.59084109375,35.5807656074219],[116.621793242188,35.6334194160156],[116.612896757813,35.6593959785157],[116.593355742188,35.6926406074219],[116.607345,35.7038430000001],[116.632896757813,35.7082900214844],[116.682589140625,35.7195778632813],[116.715318632813,35.7003395820313]]]]}},{"type":"Feature","properties":{"name":"汶上县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.681016875,35.8160927558595],[116.683082304688,35.7814577460937],[116.66259890625,35.7585305],[116.625094023438,35.7607656074219],[116.612061796875,35.7491237617188],[116.607345,35.7038430000001],[116.593355742188,35.6926406074219],[116.612896757813,35.6593959785157],[116.621793242188,35.6334194160156],[116.59084109375,35.5807656074219],[116.597345,35.563843],[116.567545195313,35.558657453125],[116.528819609375,35.5358925605469],[116.420186796875,35.5511855292969],[116.42388796875,35.5214321113281],[116.397345,35.5138430000001],[116.38142703125,35.5379274726563],[116.373116484375,35.5601369453125],[116.353013945313,35.555630109375],[116.331641875,35.5865883613281],[116.327345,35.613843],[116.34459109375,35.6186452460938],[116.34093875,35.6433498359375],[116.321314726563,35.6584987617188],[116.340714140625,35.7078493476563],[116.358448515625,35.7372524238281],[116.325030546875,35.7509291816406],[116.307345,35.7738430000001],[116.311519804688,35.7796681953125],[116.342393828125,35.8017971015625],[116.367345,35.7968666816407],[116.382345,35.7998305488281],[116.417056914063,35.7929714179688],[116.461519804688,35.8296681953126],[116.533980742188,35.8441957832032],[116.554678984375,35.8978639960937],[116.593170195313,35.9080178046875],[116.607603789063,35.9281581855469],[116.633170195313,35.9380178046875],[116.637345,35.943843],[116.667345,35.943843],[116.667345,35.9238430000001],[116.661265898438,35.9041493964844],[116.602857695313,35.8519655585938],[116.681016875,35.8160927558595]]]]}},{"type":"Feature","properties":{"name":"泗水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.332896757813,35.7893959785156],[117.365318632813,35.7703395820313],[117.382345,35.7682216621094],[117.40982546875,35.7716396308594],[117.446060820313,35.7451735664063],[117.491793242188,35.7182900214844],[117.52302859375,35.7093581367187],[117.520533476563,35.6892958808594],[117.532896757813,35.6793959785156],[117.541793242188,35.6682900214845],[117.587345,35.633843],[117.580753203125,35.6036305976563],[117.584849882813,35.5526601386719],[117.527345,35.5480397773438],[117.492906523438,35.5508071113281],[117.4919153125,35.5385195136719],[117.52197390625,35.5126247382813],[117.488834257813,35.5079201484375],[117.45986453125,35.5102480292969],[117.427345,35.453843],[117.381793242188,35.4682900214844],[117.342564726563,35.4794924140626],[117.327345,35.4775991035157],[117.286475859375,35.4826821113282],[117.237345,35.493843],[117.231793242188,35.4982900214844],[117.222896757813,35.5093959785157],[117.188546171875,35.523872296875],[117.211793242188,35.5634194160157],[117.191807890625,35.5768483710938],[117.145211210938,35.590171125],[117.132896757813,35.6193959785157],[117.094000273438,35.6305165839844],[117.091724882813,35.648843],[117.092965117188,35.6588430000001],[117.091632109375,35.6695839667969],[117.104097929688,35.7552248359375],[117.127345,35.7738430000001],[117.172345,35.7794655585938],[117.245382109375,35.7703798652344],[117.297345,35.793843],[117.332896757813,35.7893959785156]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"新泰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.529400664063,36.1141323066407],[117.554303007813,36.0818703437501],[117.61298953125,36.0694863105469],[117.66455203125,36.0469533515625],[117.68263796875,36.0496254707031],[117.697345,36.0438430000001],[117.711793242188,36.0382900214844],[117.742896757813,36.0293959785156],[117.754332304688,35.9893959785157],[117.772896757813,35.9982900214844],[117.788233671875,36.0174391914063],[117.862706328125,36.0081764960938],[117.892345,36.0255995917969],[117.921793242188,36.0082900214844],[117.937345,36.0038430000001],[117.937345,35.993843],[117.942115507813,35.9601784492188],[117.986295195313,35.9753517890625],[117.977486601563,35.9496889472657],[117.987345,35.943843],[117.997086210938,35.9184975410156],[117.966217070313,35.879946515625],[117.942345,35.876977765625],[117.887276640625,35.8838271308594],[117.829405546875,35.8374843574219],[117.835284453125,35.7902016425781],[117.821666289063,35.7792958808595],[117.827628203125,35.7313661933594],[117.802345,35.7282216621094],[117.792345,35.7294643378906],[117.782345,35.7282216621094],[117.77197390625,35.7295107246094],[117.747345,35.713843],[117.697974882813,35.7219533515626],[117.66298953125,35.7081996894532],[117.608233671875,35.6929518867188],[117.59298953125,35.6381996894532],[117.587345,35.633843],[117.541793242188,35.6682900214845],[117.532896757813,35.6793959785156],[117.520533476563,35.6892958808594],[117.52302859375,35.7093581367187],[117.491793242188,35.7182900214844],[117.446060820313,35.7451735664063],[117.40982546875,35.7716396308594],[117.382345,35.7682216621094],[117.365318632813,35.7703395820313],[117.332896757813,35.7893959785156],[117.297345,35.793843],[117.29326296875,35.7997585273438],[117.278038359375,35.8102700019531],[117.26326296875,35.8497585273438],[117.247345,35.873843],[117.251881132813,35.8793056464844],[117.282808867188,35.8883803535157],[117.291881132813,35.9093056464844],[117.30670046875,35.9216127753906],[117.331881132813,35.9634609199219],[117.300308867188,35.9896901679688],[117.322808867188,36.0083803535156],[117.344298125,36.0342507148438],[117.413311796875,36.0272158027344],[117.456651640625,36.0520375800781],[117.447345,36.093843],[117.487047148438,36.1003652167969],[117.502735625,36.0980458808594],[117.529400664063,36.1141323066407]]]]}},{"type":"Feature","properties":{"name":"东平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.657345,36.023843],[116.660767851563,36.0360353828125],[116.669537382813,36.0272658515626],[116.657345,36.023843]]],[[[116.657345,36.023843],[116.6245715625,35.9742507148438],[116.637345,35.943843],[116.633170195313,35.9380178046875],[116.607603789063,35.9281581855469],[116.593170195313,35.9080178046875],[116.554678984375,35.8978639960937],[116.533980742188,35.8441957832032],[116.461519804688,35.8296681953126],[116.417056914063,35.7929714179688],[116.382345,35.7998305488281],[116.367345,35.7968666816407],[116.342393828125,35.8017971015625],[116.311519804688,35.7796681953125],[116.307345,35.7738430000001],[116.291226835938,35.7862831855469],[116.293170195313,35.7994130683594],[116.237159453125,35.8223366523437],[116.22295046875,35.8896718574219],[116.20478640625,35.88698753125],[116.16615359375,35.902173078125],[116.142569609375,35.8879457832031],[116.083516875,35.9051638007813],[116.06298953125,35.9394863105469],[116.051529570313,35.9483315253907],[116.054483671875,35.9683315253906],[116.047345,35.9738430000001],[116.051793242188,36.0093959785157],[116.083624296875,36.06355003125],[116.081685820313,36.0791567207032],[116.097345,36.113843],[116.103170195313,36.1180178046875],[116.111519804688,36.1296681953126],[116.166905546875,36.1407717109376],[116.159893828125,36.1762429023438],[116.209386015625,36.1664638496094],[116.227345,36.173843],[116.241793242188,36.1482900214844],[116.263013945313,36.1192348457032],[116.259234648438,36.088843],[116.262965117188,36.058843],[116.260738554688,36.0409084296875],[116.291514921875,36.0370803046875],[116.342896757813,36.0682900214844],[116.35736453125,36.0863576484375],[116.387100859375,36.0900563789063],[116.421632109375,36.0624025703125],[116.432857695313,36.0357546210938],[116.456236601563,36.0649489570313],[116.527345,36.073843],[116.531519804688,36.0680178046876],[116.560386992188,36.0568849921875],[116.571636992188,36.0277150703125],[116.623150664063,36.0378945136719],[116.657345,36.023843]]]]}},{"type":"Feature","properties":{"name":"肥城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.657345,36.023843],[116.669537382813,36.0272658515626],[116.660767851563,36.0360353828125],[116.623150664063,36.0378945136719],[116.571636992188,36.0277150703125],[116.560386992188,36.0568849921875],[116.531519804688,36.0680178046876],[116.527345,36.073843],[116.541881132813,36.0993056464844],[116.552808867188,36.1083803535157],[116.561881132813,36.1413442207032],[116.527345,36.1378237128906],[116.510885039063,36.1395021796876],[116.514151640625,36.1715749335938],[116.463267851563,36.213843],[116.507799101563,36.2508351875001],[116.541158476563,36.2474355292969],[116.562022734375,36.2593849921875],[116.572735625,36.2582936835938],[116.581881132813,36.2693056464844],[116.598267851563,36.2829177070313],[116.607345,36.293843],[116.652808867188,36.2893056464844],[116.685855742188,36.2768874335938],[116.779610625,36.3168642402344],[116.815045195313,36.2965700507813],[116.842735625,36.2993923164063],[116.865494414063,36.2719924140625],[116.887345,36.253843],[116.877823515625,36.2196498847657],[116.838858671875,36.1895754218751],[116.85306765625,36.1548647285156],[116.873824492188,36.138843],[116.860865507813,36.128843],[116.876549101563,36.1167372871094],[116.894459257813,36.0870522285157],[116.870391875,36.0684755683594],[116.91298953125,36.0594863105469],[116.931954375,36.0480458808594],[116.960806914063,36.0523110175781],[116.97170046875,36.0381996894532],[116.983629179688,36.0289919257813],[116.9515246875,35.9892690253906],[116.957345,35.953843],[116.901793242188,35.9393959785156],[116.852711210938,35.9105458808594],[116.839176054688,35.8936403632813],[116.78373171875,35.9005361152344],[116.762896757813,35.8882900214844],[116.739752226563,35.8793959785157],[116.722896757813,35.9193959785157],[116.667345,35.9238430000001],[116.667345,35.943843],[116.637345,35.943843],[116.6245715625,35.9742507148438],[116.657345,36.023843]]]]}},{"type":"Feature","properties":{"name":"宁阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.957345,35.953843],[117.056744414063,35.94558128125],[117.137769804688,35.9520912910157],[117.15271609375,35.9392153144532],[117.167647734375,35.8896218085938],[117.187345,35.8880397773438],[117.202584257813,35.8892641425781],[117.23197390625,35.8784706855469],[117.247345,35.873843],[117.26326296875,35.8497585273438],[117.278038359375,35.8102700019531],[117.29326296875,35.7997585273438],[117.297345,35.793843],[117.245382109375,35.7703798652344],[117.172345,35.7794655585938],[117.127345,35.7738430000001],[117.123531523438,35.7800307441407],[117.101158476563,35.7876552558594],[117.089928007813,35.8058779121094],[117.057345,35.795727765625],[117.042345,35.8004006171875],[117.0249621875,35.794985578125],[116.996295195313,35.8151113105469],[116.977135039063,35.7588832832032],[116.9386340625,35.7457619453126],[116.946070585938,35.7218752265626],[116.881158476563,35.7000307441406],[116.873531523438,35.6876552558595],[116.867345,35.683843],[116.801241484375,35.7027260566407],[116.803018828125,35.6884316230469],[116.786920195313,35.6693959785157],[116.761890898438,35.7006520820313],[116.737345,35.6975991035157],[116.715318632813,35.7003395820313],[116.682589140625,35.7195778632813],[116.632896757813,35.7082900214844],[116.607345,35.7038430000001],[116.612061796875,35.7491237617188],[116.625094023438,35.7607656074219],[116.66259890625,35.7585305],[116.683082304688,35.7814577460937],[116.681016875,35.8160927558595],[116.602857695313,35.8519655585938],[116.661265898438,35.9041493964844],[116.667345,35.9238430000001],[116.722896757813,35.9193959785157],[116.739752226563,35.8793959785157],[116.762896757813,35.8882900214844],[116.78373171875,35.9005361152344],[116.839176054688,35.8936403632813],[116.852711210938,35.9105458808594],[116.901793242188,35.9393959785156],[116.957345,35.953843]]]]}},{"type":"Feature","properties":{"name":"泰山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.230933867188,36.2125221992187],[117.252345,36.2077223945313],[117.270230742188,36.2117311835937],[117.29142703125,36.1979274726563],[117.33142703125,36.1876625800782],[117.32326296875,36.1679274726563],[117.31142703125,36.1597585273438],[117.295694609375,36.1369704414062],[117.26435671875,36.1439968085938],[117.244508085938,36.1152529121095],[117.188492460938,36.0917250800782],[117.17142703125,36.1179274726563],[117.160797148438,36.1463417792969],[117.122345,36.1377223945312],[117.107345,36.1410842109376],[117.06326296875,36.1312026191407],[117.07142703125,36.1497585273438],[117.096827421875,36.1672951484376],[117.06326296875,36.1904714179688],[117.08142703125,36.2397585273438],[117.096866484375,36.263462140625],[117.06142703125,36.2879274726563],[117.057345,36.293843],[117.06298953125,36.2981996894531],[117.077345,36.333843],[117.08923953125,36.3481618476563],[117.127345,36.333843],[117.14326296875,36.3297585273438],[117.17142703125,36.2879274726563],[117.211217070313,36.2652162910157],[117.230933867188,36.2125221992187]]]]}},{"type":"Feature","properties":{"name":"岱岳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.297345,36.473843],[117.304996367188,36.4604201484375],[117.333228789063,36.4710610175782],[117.337345,36.4638430000001],[117.32486453125,36.4306313300781],[117.34375125,36.3976552558594],[117.34107546875,36.3713906074219],[117.351881132813,36.3583803535156],[117.383214140625,36.3323561835938],[117.379581328125,36.2967409492188],[117.391881132813,36.2683803535157],[117.407047148438,36.2557839179688],[117.383941679688,36.2154384589844],[117.432491484375,36.2203871894531],[117.443785429688,36.1818910957031],[117.4814465625,36.1655580878907],[117.443375273438,36.133930890625],[117.44181765625,36.1186708808594],[117.447345,36.093843],[117.456651640625,36.0520375800781],[117.413311796875,36.0272158027344],[117.344298125,36.0342507148438],[117.322808867188,36.0083803535156],[117.300308867188,35.9896901679688],[117.331881132813,35.9634609199219],[117.30670046875,35.9216127753906],[117.291881132813,35.9093056464844],[117.282808867188,35.8883803535157],[117.251881132813,35.8793056464844],[117.247345,35.873843],[117.23197390625,35.8784706855469],[117.202584257813,35.8892641425781],[117.187345,35.8880397773438],[117.167647734375,35.8896218085938],[117.15271609375,35.9392153144532],[117.137769804688,35.9520912910157],[117.056744414063,35.94558128125],[116.957345,35.953843],[116.9515246875,35.9892690253906],[116.983629179688,36.0289919257813],[116.97170046875,36.0381996894532],[116.960806914063,36.0523110175781],[116.931954375,36.0480458808594],[116.91298953125,36.0594863105469],[116.870391875,36.0684755683594],[116.894459257813,36.0870522285157],[116.876549101563,36.1167372871094],[116.860865507813,36.128843],[116.873824492188,36.138843],[116.85306765625,36.1548647285156],[116.838858671875,36.1895754218751],[116.877823515625,36.2196498847657],[116.887345,36.253843],[116.922388945313,36.2693984199219],[116.942066679688,36.2584194160157],[116.952667265625,36.2592702460938],[116.96709109375,36.2425319648438],[117.057345,36.293843],[117.06142703125,36.2879274726563],[117.096866484375,36.263462140625],[117.08142703125,36.2397585273438],[117.06326296875,36.1904714179688],[117.096827421875,36.1672951484376],[117.07142703125,36.1497585273438],[117.06326296875,36.1312026191407],[117.107345,36.1410842109376],[117.122345,36.1377223945312],[117.160797148438,36.1463417792969],[117.17142703125,36.1179274726563],[117.188492460938,36.0917250800782],[117.244508085938,36.1152529121095],[117.26435671875,36.1439968085938],[117.295694609375,36.1369704414062],[117.31142703125,36.1597585273438],[117.32326296875,36.1679274726563],[117.33142703125,36.1876625800782],[117.29142703125,36.1979274726563],[117.270230742188,36.2117311835937],[117.252345,36.2077223945313],[117.230933867188,36.2125221992187],[117.211217070313,36.2652162910157],[117.17142703125,36.2879274726563],[117.14326296875,36.3297585273438],[117.127345,36.333843],[117.13377078125,36.3431520820313],[117.17326296875,36.3579274726563],[117.20142703125,36.3997585273437],[117.23326296875,36.4179274726563],[117.249898710938,36.4420278144532],[117.297345,36.473843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"环翠区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.203922148438,37.4860353828125],[122.207345,37.473843],[122.195152617188,37.4772658515626],[122.203922148438,37.4860353828125]]],[[[122.188961210938,37.5176601386719],[122.207345,37.4938430000001],[122.17298953125,37.4996791816407],[122.188961210938,37.5176601386719]]],[[[122.124678984375,37.562671125],[122.157174101563,37.5356777167969],[122.142808867188,37.5183803535157],[122.126187773438,37.5045729804688],[122.147257109375,37.4559865546875],[122.176500273438,37.4207851386719],[122.205406523438,37.4555873847657],[122.248253203125,37.4599550605469],[122.272896757813,37.4492665839844],[122.27009890625,37.4218093085937],[122.391881132813,37.4083803535157],[122.397345,37.403843],[122.402779570313,37.3886977363282],[122.386783476563,37.3744057441407],[122.372628203125,37.3585622382813],[122.347471953125,37.3470156074219],[122.371871367188,37.302114484375],[122.312061796875,37.2791237617188],[122.30005984375,37.2656923652344],[122.277345,37.273843],[122.227740507813,37.2851113105469],[122.168472929688,37.277739484375],[122.152896757813,37.2582900214844],[122.109752226563,37.2493959785157],[122.092896757813,37.2893959785157],[122.080650664063,37.31022971875],[122.083013945313,37.3292348457032],[122.061676054688,37.3584511542969],[122.064791289063,37.3835012031251],[122.012345,37.376977765625],[121.982799101563,37.3806520820313],[121.972896757813,37.3682900214844],[121.941793242188,37.3593959785156],[121.927340117188,37.3413466621094],[121.867345,37.333843],[121.87334109375,37.3691432929688],[121.919195585938,37.4258815742188],[121.927345,37.473843],[121.962701445313,37.4682509589844],[121.971881132813,37.4793056464844],[122.012808867188,37.5083803535157],[122.02634890625,37.5246804023438],[122.052022734375,37.5393849921875],[122.074386015625,37.5371059394532],[122.112808867188,37.5483803535157],[122.124678984375,37.562671125]],[[121.954346953125,37.4394045234375],[121.967345,37.433843],[121.96334109375,37.4565688300782],[121.954346953125,37.4394045234375]]],[[[122.077345,37.5638430000001],[122.073922148438,37.5516506171876],[122.065152617188,37.5604201484375],[122.077345,37.5638430000001]]],[[[122.077345,37.5638430000001],[122.080767851563,37.5760353828125],[122.089537382813,37.5672658515625],[122.077345,37.5638430000001]]]]}},{"type":"Feature","properties":{"name":"荣成市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.263922148438,36.7560353828125],[122.267345,36.743843],[122.255152617188,36.7472658515626],[122.263922148438,36.7560353828125]]],[[[122.233922148438,36.8060353828125],[122.237345,36.793843],[122.225152617188,36.7972658515625],[122.233922148438,36.8060353828125]]],[[[122.563922148438,37.0460353828125],[122.567345,37.0338430000001],[122.555152617188,37.0372658515625],[122.563922148438,37.0460353828125]]],[[[122.567345,37.3038430000001],[122.56334109375,37.3265688300782],[122.554346953125,37.3094045234376],[122.561783476563,37.2879787421876],[122.562545195313,37.2688430000001],[122.562139921875,37.2586598945312],[122.59275515625,37.2442104316407],[122.592110625,37.2279579902344],[122.619268828125,37.2027968574219],[122.592511015625,37.188637921875],[122.57334109375,37.1893984199219],[122.556553984375,37.173843],[122.582154570313,37.1501210761719],[122.572315703125,37.1486183906251],[122.517237578125,37.160141828125],[122.47463015625,37.1466518378906],[122.461798125,37.0976699042969],[122.462940703125,37.0688430000001],[122.432769804688,37.0546059394531],[122.4317590625,37.0290639472656],[122.442345,37.0286452460938],[122.452345,37.0290407539063],[122.462345,37.0286452460938],[122.472345,37.0290407539063],[122.497345,37.0280507636719],[122.532965117188,37.0294618964844],[122.531949492188,37.003843],[122.532906523438,36.9797072578125],[122.521783476563,36.9479787421876],[122.52330203125,36.9096425605469],[122.487838164063,36.8908742500001],[122.508585234375,36.9300807929688],[122.472345,36.9286452460938],[122.454718046875,36.9293434882813],[122.40634890625,36.9140297675782],[122.432095976563,36.8901772285156],[122.432867460938,36.8706252265625],[122.372139921875,36.8590309882813],[122.372901640625,36.8398561835938],[122.342345,36.8386452460938],[122.332345,36.8390407539063],[122.312345,36.8382485175781],[122.292345,36.8390407539063],[122.282222929688,36.8386403632813],[122.220611601563,36.8493691230469],[122.182105742188,36.8478432441406],[122.182740507813,36.863843],[122.181773710938,36.8882497382813],[122.202154570313,36.8990334296875],[122.241124296875,36.9113710761719],[122.132613554688,36.9070705390625],[122.132042265625,36.9214333320312],[122.182154570313,36.9990334296875],[122.202916289063,37.0182717109376],[122.217345,37.0338430000001],[122.232535429688,37.0386525703126],[122.242154570313,37.0790334296875],[122.252535429688,37.0886525703125],[122.267545195313,37.1360561347657],[122.32185671875,37.1711305976563],[122.273385039063,37.2160414863282],[122.262535429688,37.2390334296875],[122.2519934375,37.2589577460938],[122.272535429688,37.2686525703126],[122.277345,37.273843],[122.30005984375,37.2656923652344],[122.312061796875,37.2791237617188],[122.371871367188,37.302114484375],[122.347471953125,37.3470156074219],[122.372628203125,37.3585622382813],[122.386783476563,37.3744057441407],[122.402779570313,37.3886977363282],[122.397345,37.403843],[122.477345,37.423843],[122.490728789063,37.4071291328125],[122.562652617188,37.3981825996094],[122.612037382813,37.4195034003907],[122.622345,37.4182216621094],[122.632345,37.4194643378906],[122.642345,37.4182216621094],[122.656065703125,37.419926984375],[122.701793242188,37.4068532539062],[122.682398710938,37.3775331855469],[122.672799101563,37.3895217109375],[122.662345,37.3882216621094],[122.637808867188,37.3912734199219],[122.572896757813,37.3518459296875],[122.581793242188,37.3382900214844],[122.59607546875,37.3268508125001],[122.567345,37.3038430000001]],[[122.497345,37.383843],[122.493922148438,37.3960353828126],[122.485152617188,37.3872658515625],[122.497345,37.383843]],[[122.253922148438,36.9160353828125],[122.245152617188,36.9072658515626],[122.257345,36.903843],[122.253922148438,36.9160353828125]]],[[[122.477345,37.423843],[122.480767851563,37.4360353828126],[122.489537382813,37.4272658515625],[122.477345,37.423843]]],[[[122.483922148438,37.4560353828125],[122.487345,37.443843],[122.475152617188,37.4472658515625],[122.483922148438,37.4560353828125]]]]}},{"type":"Feature","properties":{"name":"乳山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.627345,36.7338430000001],[121.623922148438,36.7216506171875],[121.615152617188,36.7304201484375],[121.627345,36.7338430000001]]],[[[121.483922148438,36.7360353828125],[121.487345,36.723843],[121.475152617188,36.7272658515625],[121.483922148438,36.7360353828125]]],[[[121.703922148438,36.8160353828125],[121.707345,36.8038430000001],[121.695152617188,36.8072658515625],[121.703922148438,36.8160353828125]]],[[[121.657345,36.823843],[121.651910429688,36.8365395332031],[121.634346953125,36.827895734375],[121.65298953125,36.8181996894532],[121.619840117188,36.7983730292969],[121.643443632813,36.7383266425782],[121.627345,36.7338430000001],[121.623443632813,36.7399404121094],[121.601246367188,36.7477455878907],[121.593443632813,36.7599404121095],[121.55843875,36.7677455878907],[121.566593046875,36.7387294746094],[121.53843875,36.7299404121094],[121.54400515625,36.7497426582032],[121.521246367188,36.7577455878906],[121.503443632813,36.7699404121094],[121.48068484375,36.7779433417969],[121.491021757813,36.8147255683594],[121.47209109375,36.8277455878906],[121.467345,36.783843],[121.430806914063,36.792309796875],[121.401807890625,36.7880239082031],[121.38298953125,36.8194863105469],[121.348023710938,36.8666481757813],[121.364742460938,36.8795546699219],[121.356143828125,36.9281996894532],[121.319312773438,36.9059804511719],[121.264156523438,36.9220619941406],[121.24298953125,36.9494863105469],[121.2260559375,36.9625551582032],[121.21298953125,36.9794863105469],[121.167828398438,37.0064968085938],[121.18298953125,37.0181996894531],[121.19400515625,37.0451100898438],[121.187345,37.0738430000001],[121.226265898438,37.0849709296876],[121.242896757813,37.0982900214844],[121.252711210938,37.1105458808594],[121.3022278125,37.139653546875],[121.3324621875,37.1280324531251],[121.35267703125,37.13991721875],[121.3690246875,37.1011220527344],[121.397486601563,37.0975820136719],[121.422896757813,37.1082900214844],[121.445421171875,37.1215309882813],[121.51033328125,37.1029958320313],[121.562345,37.1094643378906],[121.57834109375,37.1074758125001],[121.591846953125,37.13952659375],[121.612345,37.136977765625],[121.632799101563,37.1395217109375],[121.648912382813,37.1193959785156],[121.672896757813,37.1282900214844],[121.682144804688,37.1398378730469],[121.701793242188,37.1282900214844],[121.737345,37.123843],[121.74408328125,37.1191909003907],[121.72326296875,37.0872145820313],[121.731729765625,37.0775844550782],[121.746475859375,37.0808901191407],[121.777110625,37.0338430000001],[121.757193632813,37.0032546210937],[121.79326296875,36.9897585273438],[121.81142703125,36.9779274726563],[121.85326296875,36.9697585273438],[121.857345,36.913843],[121.811793242188,36.8993959785156],[121.757955351563,36.8840224433594],[121.742896757813,36.8482900214844],[121.711324492188,36.8291127753907],[121.657345,36.823843]],[[121.576646757813,36.8274013496094],[121.569639921875,36.8484706855469],[121.49271609375,36.8012575507813],[121.517345,36.793843],[121.52197390625,36.7992153144531],[121.54271609375,36.8084706855469],[121.576646757813,36.8274013496094]],[[121.615152617188,36.8172658515625],[121.627345,36.813843],[121.623922148438,36.8260353828126],[121.615152617188,36.8172658515625]],[[121.605152617188,36.8472658515625],[121.617345,36.8438430000001],[121.613922148438,36.8560353828126],[121.605152617188,36.8472658515625]]]]}},{"type":"Feature","properties":{"name":"文登市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.197345,37.043843],[122.193922148438,37.0560353828126],[122.185152617188,37.0472658515625],[122.191016875,37.0217116523438],[122.161793242188,37.0093959785156],[122.148453398438,36.9627370429688],[122.099210234375,36.9486574531251],[122.082896757813,36.9282900214844],[122.051793242188,36.9093959785157],[122.035855742188,36.8894985175781],[122.01900515625,36.9673928046875],[121.997203398438,36.9701039863282],[121.971793242188,36.9593959785157],[121.959923125,36.9445729804688],[121.902896757813,36.9282900214844],[121.857345,36.913843],[121.85326296875,36.9697585273438],[121.81142703125,36.9779274726563],[121.79326296875,36.9897585273438],[121.757193632813,37.0032546210937],[121.777110625,37.0338430000001],[121.746475859375,37.0808901191407],[121.731729765625,37.0775844550782],[121.72326296875,37.0872145820313],[121.74408328125,37.1191909003907],[121.737345,37.123843],[121.764234648438,37.1970717597656],[121.736187773438,37.2366323066406],[121.770972929688,37.2521559882813],[121.79197390625,37.2992153144531],[121.82271609375,37.3084706855469],[121.83197390625,37.3192153144532],[121.867345,37.333843],[121.927340117188,37.3413466621094],[121.941793242188,37.3593959785156],[121.972896757813,37.3682900214844],[121.982799101563,37.3806520820313],[122.012345,37.376977765625],[122.064791289063,37.3835012031251],[122.061676054688,37.3584511542969],[122.083013945313,37.3292348457032],[122.080650664063,37.31022971875],[122.092896757813,37.2893959785157],[122.109752226563,37.2493959785157],[122.152896757813,37.2582900214844],[122.168472929688,37.277739484375],[122.227740507813,37.2851113105469],[122.277345,37.273843],[122.272535429688,37.2686525703126],[122.2519934375,37.2589577460938],[122.262535429688,37.2390334296875],[122.273385039063,37.2160414863282],[122.32185671875,37.1711305976563],[122.267545195313,37.1360561347657],[122.252535429688,37.0886525703125],[122.242154570313,37.0790334296875],[122.232535429688,37.0386525703126],[122.217345,37.0338430000001],[122.197345,37.043843]],[[121.945152617188,36.9772658515626],[121.957345,36.973843],[121.953922148438,36.9860353828125],[121.945152617188,36.9772658515626]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.553922148438,35.3760353828126],[119.557345,35.3638430000001],[119.545152617188,35.3672658515625],[119.553922148438,35.3760353828126]]],[[[119.647345,35.563843],[119.643922148438,35.5760353828125],[119.635152617188,35.5672658515626],[119.621636992188,35.5226552558594],[119.622901640625,35.5069362617188],[119.576168242188,35.4410292792969],[119.55271609375,35.3884706855469],[119.523980742188,35.3637136054688],[119.51271609375,35.3384706855469],[119.48197390625,35.3292153144532],[119.472667265625,35.3184157539063],[119.462022734375,35.3192702460938],[119.45271609375,35.3084706855469],[119.44197390625,35.2992153144532],[119.43271609375,35.2884706855469],[119.412745390625,35.271264875],[119.387345,35.2038430000001],[119.351793242188,35.2082900214844],[119.322896757813,35.2293959785157],[119.296412382813,35.2405568671875],[119.31388796875,35.3017604804688],[119.360987578125,35.2959023261719],[119.371793242188,35.3093959785157],[119.390943632813,35.3247304511719],[119.381026640625,35.4044606757813],[119.341793242188,35.4282900214844],[119.326143828125,35.4478322578126],[119.292706328125,35.4281764960938],[119.262515898438,35.4319313789063],[119.252896757813,35.3982900214844],[119.190577421875,35.3874440742188],[119.172896757813,35.4293959785157],[119.124605742188,35.4497463203125],[119.10373171875,35.4471498847656],[119.068546171875,35.4678322578125],[119.057345,35.453843],[119.02795046875,35.4615981269532],[119.04134890625,35.5294057441406],[119.057345,35.5538430000001],[119.096617460938,35.5634889960938],[119.157867460938,35.5497585273438],[119.163492460938,35.5687148261719],[119.161041289063,35.5796584296875],[119.177345,35.5838430000001],[119.180767851563,35.5716506171876],[119.189537382813,35.5804201484375],[119.177345,35.5838430000001],[119.187340117188,35.5967897773438],[119.24146609375,35.5644179511719],[119.268424101563,35.5294863105469],[119.306905546875,35.5503212714844],[119.330719023438,35.5811696601563],[119.362276640625,35.5577712226563],[119.387857695313,35.5732009101563],[119.442857695313,35.56507346875],[119.4660559375,35.5951308417969],[119.517345,35.603843],[119.517345,35.593843],[119.537345,35.593843],[119.5923059375,35.5992482734375],[119.602345,35.5984413886719],[119.61982546875,35.5998451972657],[119.647345,35.593843],[119.6592590625,35.5698708320313],[119.647345,35.563843]]]]}},{"type":"Feature","properties":{"name":"五莲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.177345,35.5838430000001],[119.189537382813,35.5804201484375],[119.180767851563,35.5716506171876],[119.177345,35.5838430000001]]],[[[119.517345,35.603843],[119.537345,35.603843],[119.537345,35.593843],[119.517345,35.593843],[119.517345,35.603843]]],[[[119.517345,35.603843],[119.4660559375,35.5951308417969],[119.442857695313,35.56507346875],[119.387857695313,35.5732009101563],[119.362276640625,35.5577712226563],[119.330719023438,35.5811696601563],[119.306905546875,35.5503212714844],[119.268424101563,35.5294863105469],[119.24146609375,35.5644179511719],[119.187340117188,35.5967897773438],[119.177345,35.5838430000001],[119.161041289063,35.5796584296875],[119.163492460938,35.5687148261719],[119.157867460938,35.5497585273438],[119.096617460938,35.5634889960938],[119.057345,35.5538430000001],[119.049781523438,35.5864882636719],[119.053082304688,35.608843],[119.051519804688,35.6194130683594],[119.07298953125,35.6281996894532],[119.104195585938,35.6513344550782],[119.101549101563,35.669233625],[119.114488554688,35.6906874824219],[119.07170046875,35.7081996894532],[119.032857695313,35.7596584296875],[119.013922148438,35.7568593574219],[118.973516875,35.7812331367188],[118.933468046875,35.7753151679688],[118.91298953125,35.8087062812501],[118.959976835938,35.8668459296875],[118.971793242188,35.8379701972657],[119.034390898438,35.8500038886719],[119.028736601563,35.8882729316406],[119.054561796875,35.898843],[119.047261992188,35.9482497382812],[119.067345,35.953843],[119.081978789063,35.9594692207032],[119.175738554688,35.9711305976563],[119.171099882813,35.9338430000001],[119.17302859375,35.9183449531251],[119.132896757813,35.9014345527344],[119.142652617188,35.8870156074219],[119.162628203125,35.8894997382813],[119.1943371875,35.8773110175782],[119.252061796875,35.8994997382813],[119.262799101563,35.8981642890625],[119.278912382813,35.9182900214844],[119.292896757813,35.9093959785156],[119.304610625,35.8947707343751],[119.345025664063,35.8997988105469],[119.36814578125,35.8604701972657],[119.35681765625,35.7693959785157],[119.392896757813,35.7782900214844],[119.414049101563,35.8047011542969],[119.461890898438,35.8106520820313],[119.471793242188,35.7982900214844],[119.484156523438,35.7883901191406],[119.481441679688,35.7665785957031],[119.502896757813,35.7493959785156],[119.517345,35.723843],[119.512139921875,35.6989540839844],[119.517345,35.603843]]]]}},{"type":"Feature","properties":{"name":"莒县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.006612578125,36.018843],[119.026353789063,36.0096450019532],[119.006060820313,35.9853127265625],[119.022345,35.9759767890626],[119.0412903125,35.9868373847657],[119.050523710938,35.9670217109376],[119.064166289063,35.9606642890625],[119.067345,35.953843],[119.047261992188,35.9482497382812],[119.054561796875,35.898843],[119.028736601563,35.8882729316406],[119.034390898438,35.8500038886719],[118.971793242188,35.8379701972657],[118.959976835938,35.8668459296875],[118.91298953125,35.8087062812501],[118.933468046875,35.7753151679688],[118.973516875,35.7812331367188],[119.013922148438,35.7568593574219],[119.032857695313,35.7596584296875],[119.07170046875,35.7081996894532],[119.114488554688,35.6906874824219],[119.101549101563,35.669233625],[119.104195585938,35.6513344550782],[119.07298953125,35.6281996894532],[119.051519804688,35.6194130683594],[119.053082304688,35.608843],[119.049781523438,35.5864882636719],[119.057345,35.5538430000001],[119.04134890625,35.5294057441406],[119.02795046875,35.4615981269532],[119.057345,35.453843],[119.063077421875,35.4489052558594],[119.017345,35.3938430000001],[118.980318632813,35.3875527167969],[118.983824492188,35.3638430000001],[118.980694609375,35.3426625800782],[118.928424101563,35.3294863105469],[118.91298953125,35.3494863105469],[118.875035429688,35.3600563789063],[118.862735625,35.3901100898438],[118.838800078125,35.3756728339845],[118.811954375,35.3796401191407],[118.790767851563,35.3668593574219],[118.772345,35.3695815253907],[118.721793242188,35.3621120429687],[118.692345,35.3798744941407],[118.672735625,35.3680458808594],[118.652345,35.371059796875],[118.62978640625,35.3677260566406],[118.61298953125,35.3894863105469],[118.597345,35.3938430000001],[118.603673125,35.4159743476563],[118.63302859375,35.428344953125],[118.630533476563,35.4483901191406],[118.645440703125,35.4603237128906],[118.667345,35.4575991035157],[118.682345,35.4594643378907],[118.703702421875,35.4568080878907],[118.728077421875,35.4872426582032],[118.68361453125,35.5228469062501],[118.708453398438,35.5427370429688],[118.737086210938,35.5784975410156],[118.727345,35.603843],[118.74142703125,35.6297585273438],[118.78326296875,35.6779274726563],[118.798219023438,35.7179030585938],[118.764620390625,35.730473859375],[118.752345,35.7277223945313],[118.737345,35.7310842109375],[118.722345,35.7277223945313],[118.702379179688,35.7321974921875],[118.69326296875,35.7872145820313],[118.71326296875,35.8179274726563],[118.724151640625,35.8470351386719],[118.75326296875,35.8579274726563],[118.768883085938,35.9188063789063],[118.79326296875,35.9279274726563],[118.808995390625,35.9507155585938],[118.822388945313,35.9477126289063],[118.895865507813,35.9657607246094],[118.879454375,35.9909572578126],[118.884132109375,36.0118056464844],[118.91990359375,36.0037868476563],[118.972198515625,36.0199965644532],[118.983013945313,36.0175722480469],[118.99142703125,36.0297585273438],[119.0076184375,36.0379274726563],[119.017345,36.023843],[119.006612578125,36.018843]]]]}},{"type":"Feature","properties":{"name":"岚山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.367345,35.103843],[119.379537382813,35.1004201484375],[119.370767851563,35.0916506171875],[119.367345,35.103843]]],[[[119.367345,35.103843],[119.331021757813,35.0895644355469],[119.297345,35.083843],[119.291842070313,35.1071974921875],[119.238682890625,35.1253139472657],[119.212608671875,35.1070058417969],[119.197345,35.113843],[119.187086210938,35.1281581855469],[119.161519804688,35.1380178046875],[119.150797148438,35.1915016914062],[119.131788359375,35.1877455878907],[119.123170195313,35.1964479804688],[119.167896757813,35.213696515625],[119.181519804688,35.2765163398438],[119.151519804688,35.2980178046875],[119.140328398438,35.3136342597656],[119.143487578125,35.3296169257813],[119.088316679688,35.3385353828126],[119.073170195313,35.3596681953125],[119.051519804688,35.3680178046875],[119.0227746875,35.3862685371094],[119.017345,35.3938430000001],[119.063077421875,35.4489052558594],[119.057345,35.453843],[119.068546171875,35.4678322578125],[119.10373171875,35.4471498847656],[119.124605742188,35.4497463203125],[119.172896757813,35.4293959785157],[119.190577421875,35.3874440742188],[119.252896757813,35.3982900214844],[119.262515898438,35.4319313789063],[119.292706328125,35.4281764960938],[119.326143828125,35.4478322578126],[119.341793242188,35.4282900214844],[119.381026640625,35.4044606757813],[119.390943632813,35.3247304511719],[119.371793242188,35.3093959785157],[119.360987578125,35.2959023261719],[119.31388796875,35.3017604804688],[119.296412382813,35.2405568671875],[119.322896757813,35.2293959785157],[119.351793242188,35.2082900214844],[119.387345,35.2038430000001],[119.37170046875,35.1094863105469],[119.367345,35.103843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"钢城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.937345,36.0038430000001],[117.950152617188,35.9988430000001],[117.937345,35.993843],[117.937345,36.0038430000001]]],[[[117.937345,36.0038430000001],[117.921793242188,36.0082900214844],[117.892345,36.0255995917969],[117.862706328125,36.0081764960938],[117.788233671875,36.0174391914063],[117.772896757813,35.9982900214844],[117.754332304688,35.9893959785157],[117.742896757813,36.0293959785156],[117.711793242188,36.0382900214844],[117.697345,36.0438430000001],[117.70588015625,36.0628945136719],[117.6876965625,36.1181825996094],[117.706300078125,36.14837425],[117.733531523438,36.1576552558594],[117.747125273438,36.1975466132813],[117.77187625,36.2127968574219],[117.781158476563,36.2400307441407],[117.80420046875,36.2478835273438],[117.799937773438,36.2615663886719],[117.846026640625,36.282212140625],[117.861671171875,36.256821515625],[117.891158476563,36.2700307441406],[117.917345,36.2738430000001],[117.967345,36.2738430000001],[117.950987578125,36.2007424140625],[117.922345,36.198441388672],[117.903638945313,36.1999440742188],[117.901573515625,36.1742458320313],[117.919039335938,36.0973720527344],[117.946803007813,36.0996034980469],[117.93000125,36.053843],[117.9428528125,36.018843],[117.937345,36.0038430000001]]]]}},{"type":"Feature","properties":{"name":"莱城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.666148710938,36.5234535957032],[117.702379179688,36.5180995917969],[117.737345,36.523843],[117.744156523438,36.5183901191406],[117.741666289063,36.4983901191407],[117.753023710938,36.4892958808594],[117.751724882813,36.478843],[117.752965117188,36.468843],[117.750655546875,36.4502577949219],[117.786954375,36.4363063789063],[117.823214140625,36.4408168769531],[117.821441679688,36.4265785957032],[117.842896757813,36.4093959785157],[117.891890898438,36.3481642890626],[117.921353789063,36.3518288398438],[117.922965117188,36.338843],[117.919859648438,36.3138430000001],[117.923004179688,36.2885597968751],[117.917345,36.2738430000001],[117.891158476563,36.2700307441406],[117.861671171875,36.256821515625],[117.846026640625,36.282212140625],[117.799937773438,36.2615663886719],[117.80420046875,36.2478835273438],[117.781158476563,36.2400307441407],[117.77187625,36.2127968574219],[117.747125273438,36.1975466132813],[117.733531523438,36.1576552558594],[117.706300078125,36.14837425],[117.6876965625,36.1181825996094],[117.70588015625,36.0628945136719],[117.697345,36.0438430000001],[117.68263796875,36.0496254707031],[117.66455203125,36.0469533515625],[117.61298953125,36.0694863105469],[117.554303007813,36.0818703437501],[117.529400664063,36.1141323066407],[117.502735625,36.0980458808594],[117.487047148438,36.1003652167969],[117.447345,36.093843],[117.44181765625,36.1186708808594],[117.443375273438,36.133930890625],[117.4814465625,36.1655580878907],[117.443785429688,36.1818910957031],[117.432491484375,36.2203871894531],[117.383941679688,36.2154384589844],[117.407047148438,36.2557839179688],[117.391881132813,36.2683803535157],[117.379581328125,36.2967409492188],[117.383214140625,36.3323561835938],[117.351881132813,36.3583803535156],[117.34107546875,36.3713906074219],[117.34375125,36.3976552558594],[117.32486453125,36.4306313300781],[117.337345,36.4638430000001],[117.378863554688,36.4328542304688],[117.406578398438,36.4687587714844],[117.475553007813,36.4785634589844],[117.49170046875,36.4994863105469],[117.543516875,36.5104201484375],[117.603922148438,36.5468593574219],[117.622735625,36.5496401191407],[117.666148710938,36.5234535957032]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"苍山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.124801054688,35.0612990546875],[118.127345,35.033843],[118.12156375,35.0083864570313],[118.16400515625,34.9905019355469],[118.181793242188,34.9682900214844],[118.221378203125,34.9516091132813],[118.224156523438,34.9292958808594],[118.206886015625,34.9154665351563],[118.227345,34.843843],[118.194625273438,34.8567067695313],[118.180006132813,34.78065940625],[118.22384890625,34.7634242988282],[118.2486340625,34.7825551582031],[118.268424101563,34.8081996894531],[118.299166289063,34.7495021796875],[118.245235625,34.7381227851563],[118.231246367188,34.7039418769532],[118.18170046875,34.669486310547],[118.17298953125,34.6581996894531],[118.12625125,34.6483364082032],[118.107345,34.623843],[118.091441679688,34.6365785957032],[118.093033476563,34.6493764472657],[118.022042265625,34.6597084785156],[118.00634890625,34.6401113105469],[117.982896757813,34.6693959785157],[117.954869414063,34.68120628125],[117.93095828125,34.6671498847657],[117.910079375,34.6697463203125],[117.890987578125,34.6459023261719],[117.862345,34.6494643378907],[117.852345,34.6482216621094],[117.842345,34.6494643378907],[117.832345,34.6482216621094],[117.822345,34.6494643378907],[117.802799101563,34.6470339179688],[117.797345,34.653843],[117.803531523438,34.6576552558595],[117.811158476563,34.6800307441407],[117.826202421875,34.7014577460938],[117.819229765625,34.723843],[117.829835234375,34.7578835273438],[117.783638945313,34.7736244941406],[117.768414335938,34.7983388496094],[117.797769804688,34.8164272285156],[117.7907434375,34.8389809394531],[117.757345,34.843843],[117.695909453125,34.9155507636719],[117.717345,34.963843],[117.72142703125,34.9997585273438],[117.737345,35.023843],[117.75271609375,35.0284706855469],[117.763961210938,35.0415248847656],[117.812022734375,35.0376638007813],[117.823316679688,35.0507741523438],[117.882345,35.0460305000001],[117.922345,35.0492446113282],[117.934439726563,35.0482729316406],[117.973057890625,35.0698207832031],[118.06197390625,35.0892153144531],[118.107345,35.0938430000001],[118.109888945313,35.0763869453126],[118.124801054688,35.0612990546875]]]]}},{"type":"Feature","properties":{"name":"费县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.12937625,35.4113906074219],[118.174698515625,35.3923537421875],[118.20959109375,35.41507346875],[118.225513945313,35.3920119453126],[118.285826445313,35.3765346503907],[118.30326296875,35.3497585273438],[118.307345,35.3238430000001],[118.294390898438,35.3138430000001],[118.313160429688,35.2993544746094],[118.308404570313,35.2671779609376],[118.29170046875,35.239486310547],[118.282916289063,35.2180202460938],[118.257345,35.2217983222657],[118.220494414063,35.2163527656251],[118.224483671875,35.1893544746094],[118.20338015625,35.1730654121094],[118.177345,35.2067983222656],[118.16298953125,35.1881996894531],[118.15170046875,35.1794863105469],[118.122193632813,35.1412599921875],[118.11298953125,35.1081996894531],[118.107345,35.0938430000001],[118.06197390625,35.0892153144531],[117.973057890625,35.0698207832031],[117.934439726563,35.0482729316406],[117.922345,35.0492446113282],[117.882345,35.0460305000001],[117.823316679688,35.0507741523438],[117.812022734375,35.0376638007813],[117.763961210938,35.0415248847656],[117.75271609375,35.0284706855469],[117.737345,35.023843],[117.733013945313,35.0301137519531],[117.722345,35.0277223945313],[117.712345,35.0299636054688],[117.701573515625,35.0275490546875],[117.690538359375,35.0570351386719],[117.657257109375,35.0694887519532],[117.64326296875,35.0897585273438],[117.613360625,35.1104030585938],[117.607345,35.1338430000001],[117.6520325,35.1414345527344],[117.682003203125,35.214653546875],[117.697496367188,35.270298078125],[117.732345,35.2651491523438],[117.770767851563,35.2708266425782],[117.80170046875,35.2894863105469],[117.842945585938,35.3009706855469],[117.862857695313,35.2980287910156],[117.875260039063,35.3141005683594],[117.867550078125,35.3662831855469],[117.89427859375,35.3869118476563],[117.912511015625,35.4523928046876],[117.93298953125,35.4681996894532],[117.94341921875,35.5176284003906],[117.937345,35.5438430000001],[118.000460234375,35.5331215644532],[118.038370390625,35.4786061835937],[118.11802859375,35.468871076172],[118.137345,35.443843],[118.12937625,35.4113906074219]]]]}},{"type":"Feature","properties":{"name":"河东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.58091921875,35.2498342109376],[118.62213015625,35.2383119941407],[118.638189726563,35.2399489570313],[118.651881132813,35.2083803535156],[118.667047148438,35.1819020820313],[118.649810820313,35.167583234375],[118.624879179688,35.110102765625],[118.611881132813,35.0993056464844],[118.607345,35.0938430000001],[118.59326296875,35.0679274726563],[118.558756132813,35.0550160957031],[118.5307825,35.0189223457031],[118.55142703125,34.9872145820313],[118.538702421875,34.9415932441407],[118.48564578125,34.9058632636719],[118.477345,34.893843],[118.450704375,34.907202375],[118.44062625,34.9271242500001],[118.427345,34.9338430000001],[118.392061796875,34.9985622382813],[118.377345,35.033843],[118.361431914063,35.0687953925781],[118.384576445313,35.1276747871094],[118.410714140625,35.1710060859375],[118.440767851563,35.1942018867187],[118.48170046875,35.2678139472657],[118.447345,35.3138430000001],[118.460704375,35.320483625],[118.493985625,35.327202375],[118.501363554688,35.3417873359376],[118.530704375,35.327202375],[118.567345,35.3238430000001],[118.585401640625,35.308843],[118.5532434375,35.2821279121094],[118.582896757813,35.2692665839844],[118.58091921875,35.2498342109376]]]]}},{"type":"Feature","properties":{"name":"兰山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.48170046875,35.2678139472657],[118.440767851563,35.1942018867187],[118.410714140625,35.1710060859375],[118.384576445313,35.1276747871094],[118.361431914063,35.0687953925781],[118.377345,35.033843],[118.35435671875,35.0235451484375],[118.312838164063,35.0364772773437],[118.2887121875,35.0534145332032],[118.252081328125,35.0370058417969],[118.232803984375,35.0505434394531],[118.212345,35.0441713691407],[118.18623171875,35.0523036933594],[118.153531523438,35.0376552558594],[118.127345,35.033843],[118.124801054688,35.0612990546875],[118.109888945313,35.0763869453126],[118.107345,35.0938430000001],[118.11298953125,35.1081996894531],[118.122193632813,35.1412599921875],[118.15170046875,35.1794863105469],[118.16298953125,35.1881996894531],[118.177345,35.2067983222656],[118.20338015625,35.1730654121094],[118.224483671875,35.1893544746094],[118.220494414063,35.2163527656251],[118.257345,35.2217983222657],[118.282916289063,35.2180202460938],[118.29170046875,35.239486310547],[118.308404570313,35.2671779609376],[118.313160429688,35.2993544746094],[118.294390898438,35.3138430000001],[118.307345,35.3238430000001],[118.365186796875,35.3465810371094],[118.447345,35.3138430000001],[118.48170046875,35.2678139472657]]]]}},{"type":"Feature","properties":{"name":"临沭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.752896757813,35.0193959785157],[118.772003203125,35.0081642890625],[118.851793242188,35.0193959785157],[118.857345,35.023843],[118.85298953125,34.9481996894532],[118.80170046875,34.8794863105469],[118.79298953125,34.8481996894531],[118.771519804688,34.8394130683594],[118.773082304688,34.8288430000001],[118.771607695313,34.818843],[118.77312625,34.8085512519531],[118.767345,34.793843],[118.731202421875,34.7896303535157],[118.735631132813,34.7672048164063],[118.713858671875,34.7715077949219],[118.708155546875,34.7426357246094],[118.737345,34.7368666816406],[118.770455351563,34.7434096503906],[118.775382109375,34.7184694648438],[118.742896757813,34.6978444648438],[118.682345,34.6858791328125],[118.652345,34.6918068671875],[118.629386015625,34.687270734375],[118.601519804688,34.6980178046876],[118.589244414063,34.7151467109376],[118.546768828125,34.70675315625],[118.517345,34.7138430000001],[118.50041140625,34.7269118476563],[118.480811796875,34.797308576172],[118.44170046875,34.8081996894531],[118.43298953125,34.8359206367188],[118.470084257813,34.8511037421875],[118.477345,34.893843],[118.48564578125,34.9058632636719],[118.538702421875,34.9415932441407],[118.55142703125,34.9872145820313],[118.5307825,35.0189223457031],[118.558756132813,35.0550160957031],[118.59326296875,35.0679274726563],[118.607345,35.0938430000001],[118.650128203125,35.0816103339844],[118.691793242188,35.0482900214844],[118.712896757813,35.0393959785157],[118.731793242188,35.0282900214844],[118.752896757813,35.0193959785157]]]]}},{"type":"Feature","properties":{"name":"罗庄区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.2887121875,35.0534145332032],[118.312838164063,35.0364772773437],[118.35435671875,35.0235451484375],[118.377345,35.033843],[118.392061796875,34.9985622382813],[118.427345,34.9338430000001],[118.423170195313,34.9280178046876],[118.384146757813,34.9129677558594],[118.381358671875,34.8988430000001],[118.383858671875,34.8861757636719],[118.301519804688,34.8696681953125],[118.273170195313,34.8480178046876],[118.227345,34.843843],[118.206886015625,34.9154665351563],[118.224156523438,34.9292958808594],[118.221378203125,34.9516091132813],[118.181793242188,34.9682900214844],[118.16400515625,34.9905019355469],[118.12156375,35.0083864570313],[118.127345,35.033843],[118.153531523438,35.0376552558594],[118.18623171875,35.0523036933594],[118.212345,35.0441713691407],[118.232803984375,35.0505434394531],[118.252081328125,35.0370058417969],[118.2887121875,35.0534145332032]]]]}},{"type":"Feature","properties":{"name":"蒙阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.221163359375,35.9191213203125],[118.231138945313,35.8746169257813],[118.19047,35.859399640625],[118.20326296875,35.8397585273438],[118.21142703125,35.8179274726563],[118.240797148438,35.7800344062501],[118.217345,35.763843],[118.191793242188,35.7593959785156],[118.157139921875,35.7460768867188],[118.135479765625,35.7190273261719],[118.15322390625,35.688843],[118.140650664063,35.66745628125],[118.143013945313,35.6484828925782],[118.125279570313,35.6183193183594],[118.216344023438,35.5630068183594],[118.183883085938,35.5185720039063],[118.148057890625,35.5083278632813],[118.154381132813,35.4574843574219],[118.137345,35.443843],[118.11802859375,35.468871076172],[118.038370390625,35.4786061835937],[118.000460234375,35.5331215644532],[117.937345,35.5438430000001],[117.93326296875,35.5497585273438],[117.90142703125,35.5579274726563],[117.860181914063,35.5752529121094],[117.84326296875,35.5997585273438],[117.81142703125,35.6179274726563],[117.798370390625,35.6368422675782],[117.76142703125,35.6579274726563],[117.747345,35.713843],[117.77197390625,35.7295107246094],[117.782345,35.7282216621094],[117.792345,35.7294643378906],[117.802345,35.7282216621094],[117.827628203125,35.7313661933594],[117.821666289063,35.7792958808595],[117.835284453125,35.7902016425781],[117.829405546875,35.8374843574219],[117.887276640625,35.8838271308594],[117.942345,35.876977765625],[117.966217070313,35.879946515625],[117.997086210938,35.9184975410156],[117.987345,35.943843],[118.012896757813,35.9482900214844],[118.037921171875,35.9894850898438],[118.113048125,36.0336489082031],[118.19142703125,36.0112404609376],[118.194210234375,35.988843],[118.191441679688,35.9665785957032],[118.218453398438,35.9449489570313],[118.227345,35.9338430000001],[118.221163359375,35.9191213203125]]]]}},{"type":"Feature","properties":{"name":"平邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.93326296875,35.5497585273438],[117.937345,35.5438430000001],[117.94341921875,35.5176284003906],[117.93298953125,35.4681996894532],[117.912511015625,35.4523928046876],[117.89427859375,35.3869118476563],[117.867550078125,35.3662831855469],[117.875260039063,35.3141005683594],[117.862857695313,35.2980287910156],[117.842945585938,35.3009706855469],[117.80170046875,35.2894863105469],[117.770767851563,35.2708266425782],[117.732345,35.2651491523438],[117.697496367188,35.270298078125],[117.682003203125,35.214653546875],[117.6520325,35.1414345527344],[117.607345,35.1338430000001],[117.572896757813,35.1593959785157],[117.541793242188,35.1682900214844],[117.483453398438,35.2149489570312],[117.451793242188,35.2282900214844],[117.442896757813,35.2493959785157],[117.426236601563,35.2627370429688],[117.417345,35.273843],[117.459327421875,35.2907521796875],[117.47170046875,35.3159206367187],[117.44170046875,35.3281996894532],[117.43298953125,35.3450429511719],[117.467423125,35.4021315742188],[117.443975859375,35.4410060859375],[117.427345,35.453843],[117.45986453125,35.5102480292969],[117.488834257813,35.5079201484375],[117.52197390625,35.5126247382813],[117.4919153125,35.5385195136719],[117.492906523438,35.5508071113281],[117.527345,35.5480397773438],[117.584849882813,35.5526601386719],[117.580753203125,35.6036305976563],[117.587345,35.633843],[117.59298953125,35.6381996894532],[117.608233671875,35.6929518867188],[117.66298953125,35.7081996894532],[117.697974882813,35.7219533515626],[117.747345,35.713843],[117.76142703125,35.6579274726563],[117.798370390625,35.6368422675782],[117.81142703125,35.6179274726563],[117.84326296875,35.5997585273438],[117.860181914063,35.5752529121094],[117.90142703125,35.5579274726563],[117.93326296875,35.5497585273438]]]]}},{"type":"Feature","properties":{"name":"沂南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.236358671875,35.7302089667969],[118.252799101563,35.7281642890625],[118.268912382813,35.7482900214844],[118.335479765625,35.7390370917969],[118.3305871875,35.6996913886719],[118.426226835938,35.6877297187501],[118.442799101563,35.6670339179688],[118.47095828125,35.6705361152344],[118.503155546875,35.6516091132813],[118.5644153125,35.6376943183594],[118.581890898438,35.6595217109376],[118.609210234375,35.6561232734375],[118.632545195313,35.6698378730469],[118.648472929688,35.649946515625],[118.667345,35.6475991035157],[118.693902617188,35.6509023261719],[118.67767703125,35.6086916328125],[118.727345,35.603843],[118.737086210938,35.5784975410156],[118.708453398438,35.5427370429688],[118.68361453125,35.5228469062501],[118.728077421875,35.4872426582032],[118.703702421875,35.4568080878907],[118.682345,35.4594643378907],[118.667345,35.4575991035157],[118.645440703125,35.4603237128906],[118.630533476563,35.4483901191406],[118.63302859375,35.428344953125],[118.603673125,35.4159743476563],[118.597345,35.3938430000001],[118.57197390625,35.3492153144531],[118.567345,35.3238430000001],[118.530704375,35.327202375],[118.501363554688,35.3417873359376],[118.493985625,35.327202375],[118.460704375,35.320483625],[118.447345,35.3138430000001],[118.365186796875,35.3465810371094],[118.307345,35.3238430000001],[118.30326296875,35.3497585273438],[118.285826445313,35.3765346503907],[118.225513945313,35.3920119453126],[118.20959109375,35.41507346875],[118.174698515625,35.3923537421875],[118.12937625,35.4113906074219],[118.137345,35.443843],[118.154381132813,35.4574843574219],[118.148057890625,35.5083278632813],[118.183883085938,35.5185720039063],[118.216344023438,35.5630068183594],[118.125279570313,35.6183193183594],[118.143013945313,35.6484828925782],[118.140650664063,35.66745628125],[118.15322390625,35.688843],[118.135479765625,35.7190273261719],[118.157139921875,35.7460768867188],[118.191793242188,35.7593959785156],[118.217345,35.763843],[118.236358671875,35.7302089667969]]]]}},{"type":"Feature","properties":{"name":"沂水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.840894804688,36.2055043769531],[118.842965117188,36.188843],[118.841676054688,36.1784828925782],[118.852896757813,36.1593959785157],[118.864166289063,36.0819692207032],[118.902896757813,36.0982900214844],[118.93013796875,36.114301984375],[118.97939578125,36.0953664375],[119.015636015625,36.0998744941406],[119.057345,36.0838430000001],[119.0377746875,36.0542287421876],[119.043658476563,36.0279897285157],[119.017345,36.023843],[119.0076184375,36.0379274726563],[118.99142703125,36.0297585273438],[118.983013945313,36.0175722480469],[118.972198515625,36.0199965644532],[118.91990359375,36.0037868476563],[118.884132109375,36.0118056464844],[118.879454375,35.9909572578126],[118.895865507813,35.9657607246094],[118.822388945313,35.9477126289063],[118.808995390625,35.9507155585938],[118.79326296875,35.9279274726563],[118.768883085938,35.9188063789063],[118.75326296875,35.8579274726563],[118.724151640625,35.8470351386719],[118.71326296875,35.8179274726563],[118.69326296875,35.7872145820313],[118.702379179688,35.7321974921875],[118.722345,35.7277223945313],[118.737345,35.7310842109375],[118.752345,35.7277223945313],[118.764620390625,35.730473859375],[118.798219023438,35.7179030585938],[118.78326296875,35.6779274726563],[118.74142703125,35.6297585273438],[118.727345,35.603843],[118.67767703125,35.6086916328125],[118.693902617188,35.6509023261719],[118.667345,35.6475991035157],[118.648472929688,35.649946515625],[118.632545195313,35.6698378730469],[118.609210234375,35.6561232734375],[118.581890898438,35.6595217109376],[118.5644153125,35.6376943183594],[118.503155546875,35.6516091132813],[118.47095828125,35.6705361152344],[118.442799101563,35.6670339179688],[118.426226835938,35.6877297187501],[118.3305871875,35.6996913886719],[118.335479765625,35.7390370917969],[118.268912382813,35.7482900214844],[118.252799101563,35.7281642890625],[118.236358671875,35.7302089667969],[118.217345,35.763843],[118.240797148438,35.7800344062501],[118.21142703125,35.8179274726563],[118.20326296875,35.8397585273438],[118.19047,35.859399640625],[118.231138945313,35.8746169257813],[118.221163359375,35.9191213203125],[118.227345,35.9338430000001],[118.261959257813,35.9259804511719],[118.301983671875,35.9495095039063],[118.312345,35.9482216621094],[118.329371367188,35.9503395820313],[118.399737578125,35.9917031074219],[118.448013945313,35.9564382148437],[118.496939726563,35.9625234199219],[118.481793242188,35.9882900214844],[118.46400515625,36.0305019355469],[118.487345,36.0275991035156],[118.502345,36.0294643378907],[118.512764921875,36.0281691718751],[118.521793242188,36.0362587714844],[118.507345,36.073843],[118.516392851563,36.0968593574219],[118.500611601563,36.1090407539063],[118.54427859375,36.1269118476563],[118.56170046875,36.1494863105469],[118.609244414063,36.1689455390625],[118.651236601563,36.1781996894531],[118.6919153125,36.1480409980469],[118.707345,36.1503212714844],[118.722857695313,36.1480287910157],[118.744390898438,36.1759242988282],[118.737345,36.1938430000001],[118.756954375,36.2013796210938],[118.782345,36.1982216621094],[118.840894804688,36.2055043769531]]]]}},{"type":"Feature","properties":{"name":"郯城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.470084257813,34.8511037421875],[118.43298953125,34.8359206367188],[118.44170046875,34.8081996894531],[118.480811796875,34.797308576172],[118.50041140625,34.7269118476563],[118.517345,34.7138430000001],[118.509176054688,34.6820119453125],[118.456803007813,34.6685707832031],[118.465767851563,34.6285707832032],[118.425577421875,34.6182570625001],[118.4176965625,34.5831166816407],[118.434019804688,34.5166762519531],[118.42326296875,34.4879274726562],[118.41142703125,34.4697585273438],[118.407345,34.433843],[118.36455203125,34.4138600898438],[118.312174101563,34.4300954414062],[118.26326296875,34.4079274726563],[118.2178528125,34.3990602851563],[118.202691679688,34.3771047187501],[118.182789335938,34.390063703125],[118.163819609375,34.3858107734376],[118.17853640625,34.4514577460937],[118.137345,34.473843],[118.12982546875,34.4917470527344],[118.15326296875,34.5079274726563],[118.178267851563,34.5441445136719],[118.134620390625,34.5604738593751],[118.12232546875,34.5577175117188],[118.07326296875,34.5692189765625],[118.10326296875,34.6079274726563],[118.107345,34.623843],[118.12625125,34.6483364082032],[118.17298953125,34.6581996894531],[118.18170046875,34.669486310547],[118.231246367188,34.7039418769532],[118.245235625,34.7381227851563],[118.299166289063,34.7495021796875],[118.268424101563,34.8081996894531],[118.2486340625,34.7825551582031],[118.22384890625,34.7634242988282],[118.180006132813,34.78065940625],[118.194625273438,34.8567067695313],[118.227345,34.843843],[118.273170195313,34.8480178046876],[118.301519804688,34.8696681953125],[118.383858671875,34.8861757636719],[118.381358671875,34.8988430000001],[118.384146757813,34.9129677558594],[118.423170195313,34.9280178046876],[118.427345,34.9338430000001],[118.44062625,34.9271242500001],[118.450704375,34.907202375],[118.477345,34.893843],[118.470084257813,34.8511037421875]]]]}},{"type":"Feature","properties":{"name":"莒南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.143487578125,35.3296169257813],[119.140328398438,35.3136342597656],[119.151519804688,35.2980178046875],[119.181519804688,35.2765163398438],[119.167896757813,35.213696515625],[119.123170195313,35.1964479804688],[119.131788359375,35.1877455878907],[119.150797148438,35.1915016914062],[119.161519804688,35.1380178046875],[119.187086210938,35.1281581855469],[119.197345,35.113843],[119.14064578125,35.1039760566407],[119.106470976563,35.0477077460938],[119.032345,35.0569277167969],[118.947345,35.0463552070313],[118.914508085938,35.0504396796876],[118.8626965625,35.0305239082032],[118.857345,35.023843],[118.851793242188,35.0193959785157],[118.772003203125,35.0081642890625],[118.752896757813,35.0193959785157],[118.731793242188,35.0282900214844],[118.712896757813,35.0393959785157],[118.691793242188,35.0482900214844],[118.650128203125,35.0816103339844],[118.607345,35.0938430000001],[118.611881132813,35.0993056464844],[118.624879179688,35.110102765625],[118.649810820313,35.167583234375],[118.667047148438,35.1819020820313],[118.651881132813,35.2083803535156],[118.638189726563,35.2399489570313],[118.62213015625,35.2383119941407],[118.58091921875,35.2498342109376],[118.582896757813,35.2692665839844],[118.5532434375,35.2821279121094],[118.585401640625,35.308843],[118.567345,35.3238430000001],[118.57197390625,35.3492153144531],[118.597345,35.3938430000001],[118.61298953125,35.3894863105469],[118.62978640625,35.3677260566406],[118.652345,35.371059796875],[118.672735625,35.3680458808594],[118.692345,35.3798744941407],[118.721793242188,35.3621120429687],[118.772345,35.3695815253907],[118.790767851563,35.3668593574219],[118.811954375,35.3796401191407],[118.838800078125,35.3756728339845],[118.862735625,35.3901100898438],[118.875035429688,35.3600563789063],[118.91298953125,35.3494863105469],[118.928424101563,35.3294863105469],[118.980694609375,35.3426625800782],[118.983824492188,35.3638430000001],[118.980318632813,35.3875527167969],[119.017345,35.3938430000001],[119.0227746875,35.3862685371094],[119.051519804688,35.3680178046875],[119.073170195313,35.3596681953125],[119.088316679688,35.3385353828126],[119.143487578125,35.3296169257813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"德城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.257345,37.423843],[116.269537382813,37.4272658515625],[116.260767851563,37.4360353828126],[116.218272734375,37.4274245429688],[116.234986601563,37.4484658027344],[116.227345,37.463843],[116.215733671875,37.487202375],[116.253985625,37.480483625],[116.267345,37.473843],[116.270767851563,37.4616506171875],[116.279537382813,37.4704201484376],[116.267345,37.473843],[116.277174101563,37.498841779297],[116.283082304688,37.538843],[116.281529570313,37.5493581367188],[116.327345,37.583843],[116.340260039063,37.569389875],[116.362628203125,37.5591237617188],[116.372515898438,37.5270912910156],[116.397906523438,37.5044057441407],[116.428678007813,37.4699648261719],[116.444464140625,37.5043508125],[116.507345,37.543843],[116.553985625,37.5404836250001],[116.580704375,37.527202375],[116.597345,37.523843],[116.592808867188,37.5183803535157],[116.571793242188,37.5092665839844],[116.573834257813,37.4892336250001],[116.55302859375,37.4719521308594],[116.538873320313,37.4393056464844],[116.501881132813,37.4483803535157],[116.485269804688,37.4683803535156],[116.467857695313,37.421723859375],[116.4914465625,37.4021279121094],[116.459234648438,37.3881569648438],[116.428101835938,37.3506764960937],[116.393785429688,37.3357949042969],[116.387345,37.313843],[116.38271609375,37.3084706855469],[116.3719153125,37.2991664863282],[116.3727746875,37.2885195136719],[116.36197390625,37.2792153144532],[116.344742460938,37.2592153144531],[116.32197390625,37.2684706855469],[116.277345,37.293843],[116.2830871875,37.3288088203126],[116.28033328125,37.3474404121094],[116.24170046875,37.3581996894531],[116.237345,37.363843],[116.245152617188,37.3760366035156],[116.271041289063,37.3926113105469],[116.257345,37.423843]],[[116.297345,37.503843],[116.293922148438,37.5160353828126],[116.285152617188,37.5072658515626],[116.297345,37.503843]]]]}},{"type":"Feature","properties":{"name":"乐陵市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.947345,37.823843],[116.937345,37.823843],[116.937345,37.843843],[116.947345,37.843843],[116.947345,37.8338430000001],[116.947345,37.823843]]],[[[116.947345,37.823843],[116.957345,37.823843],[116.957345,37.8338430000001],[116.96281375,37.8401894355469],[117.027345,37.8338430000001],[117.06341921875,37.8473976875],[117.152345,37.8383339667969],[117.207345,37.8439394355469],[117.262608671875,37.838305890625],[117.291881132813,37.8493056464844],[117.307345,37.853843],[117.311890898438,37.8481642890625],[117.330504179688,37.8504799628907],[117.34341921875,37.8285097480469],[117.303311796875,37.8116091132813],[117.301632109375,37.7981020332032],[117.316373320313,37.6968080878906],[117.347345,37.703843],[117.333531523438,37.6776552558594],[117.30797,37.6619057441406],[117.30064578125,37.6383852363281],[117.314229765625,37.6190407539063],[117.303531523438,37.5876552558594],[117.28281375,37.5748891425781],[117.273531523438,37.5476552558594],[117.261158476563,37.5400307441407],[117.257345,37.523843],[117.231695585938,37.5301430488281],[117.22326296875,37.5179274726563],[117.205513945313,37.5056740546876],[117.19326296875,37.4879274726563],[117.1436340625,37.4751918769532],[117.122345,37.4799636054688],[117.090338164063,37.4727895332032],[117.0977746875,37.4396169257813],[117.060875273438,37.4258095527344],[117.035933867188,37.4314003730469],[117.027345,37.443843],[117.040103789063,37.4488430000001],[117.01755984375,37.4576772285156],[117.0263684375,37.469027326172],[117.0083215625,37.4886586738281],[117.0163684375,37.4990273261719],[116.996221953125,37.5209438300782],[116.937345,37.523843],[116.93287234375,37.5459865546876],[116.910704375,37.5572023750001],[116.907345,37.5738430000001],[116.93326296875,37.5779274726563],[116.996241484375,37.6064711738281],[116.99107546875,37.6295131660157],[117.00326296875,37.6379274726563],[117.014937773438,37.6691310859375],[116.991051054688,37.6780690742187],[116.993468046875,37.688843],[116.984835234375,37.7273403144531],[116.97142703125,37.7479274726563],[116.96326296875,37.7697585273438],[116.95142703125,37.7879274726563],[116.947345,37.823843]]]]}},{"type":"Feature","properties":{"name":"临邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.996221953125,37.5209438300782],[117.0163684375,37.4990273261719],[117.0083215625,37.4886586738281],[117.0263684375,37.469027326172],[117.01755984375,37.4576772285156],[117.040103789063,37.4488430000001],[117.027345,37.443843],[117.004307890625,37.4296486640625],[117.014151640625,37.3980373359375],[117.001158476563,37.3900307441407],[116.993531523438,37.3576552558594],[116.978385039063,37.3360829902344],[116.994156523438,37.2881301093751],[117.023531523438,37.2700307441407],[117.034229765625,37.2386452460938],[117.02064578125,37.2193007636719],[117.026490507813,37.2005300117188],[117.057769804688,37.1812587714845],[117.049229765625,37.1538430000001],[117.054151640625,37.1380373359375],[117.041158476563,37.1300307441407],[117.037345,37.123843],[117.022623320313,37.1176601386719],[117.001846953125,37.1223171210938],[116.910968046875,37.09999534375],[116.913468046875,37.088843],[116.910347929688,37.0749416328125],[116.939859648438,37.0296218085938],[116.90142703125,37.0197585273438],[116.89326296875,37.0079274726563],[116.88142703125,36.9997585273438],[116.877345,36.9938430000001],[116.852418242188,37.0092519355469],[116.79787234375,36.9896791816406],[116.762628203125,37.0291237617188],[116.737345,37.0338430000001],[116.730865507813,37.0388430000001],[116.745299101563,37.0499831367188],[116.700924101563,37.0842360664063],[116.710201445313,37.1469985175782],[116.72857546875,37.1774575019531],[116.707345,37.1938430000001],[116.707345,37.203843],[116.721607695313,37.2216518378906],[116.751793242188,37.2393959785156],[116.8010559375,37.2534816718751],[116.802965117188,37.2688430000001],[116.801676054688,37.2792031074219],[116.812896757813,37.2982900214844],[116.821793242188,37.3293959785157],[116.853629179688,37.3384987617188],[116.882896757813,37.3882900214844],[116.891793242188,37.4093959785157],[116.90334109375,37.4290419746094],[116.890533476563,37.4392958808594],[116.892965117188,37.4588430000001],[116.891724882813,37.468843],[116.892965117188,37.478843],[116.891724882813,37.4888430000001],[116.892965117188,37.4988430000001],[116.890738554688,37.5167775703125],[116.912345,37.5194643378907],[116.922628203125,37.5181862617188],[116.937345,37.523843],[116.996221953125,37.5209438300782]]]]}},{"type":"Feature","properties":{"name":"陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.892354765625,37.6110610175782],[116.907345,37.5738430000001],[116.910704375,37.5572023750001],[116.93287234375,37.5459865546876],[116.937345,37.523843],[116.922628203125,37.5181862617188],[116.912345,37.5194643378907],[116.890738554688,37.5167775703125],[116.892965117188,37.4988430000001],[116.891724882813,37.4888430000001],[116.892965117188,37.478843],[116.891724882813,37.468843],[116.892965117188,37.4588430000001],[116.890533476563,37.4392958808594],[116.90334109375,37.4290419746094],[116.891793242188,37.4093959785157],[116.882896757813,37.3882900214844],[116.853629179688,37.3384987617188],[116.821793242188,37.3293959785157],[116.812896757813,37.2982900214844],[116.801676054688,37.2792031074219],[116.802965117188,37.2688430000001],[116.8010559375,37.2534816718751],[116.751793242188,37.2393959785156],[116.721607695313,37.2216518378906],[116.707345,37.203843],[116.701793242188,37.2082900214844],[116.692799101563,37.2195217109375],[116.669176054688,37.2165834785157],[116.641890898438,37.2506520820313],[116.611690703125,37.2468959785156],[116.532896757813,37.2693959785157],[116.417535429688,37.2786305976563],[116.392896757813,37.3093959785156],[116.387345,37.313843],[116.393785429688,37.3357949042969],[116.428101835938,37.3506764960937],[116.459234648438,37.3881569648438],[116.4914465625,37.4021279121094],[116.467857695313,37.421723859375],[116.485269804688,37.4683803535156],[116.501881132813,37.4483803535157],[116.538873320313,37.4393056464844],[116.55302859375,37.4719521308594],[116.573834257813,37.4892336250001],[116.571793242188,37.5092665839844],[116.592808867188,37.5183803535157],[116.597345,37.523843],[116.60170046875,37.5294863105469],[116.61298953125,37.5381996894532],[116.621832304688,37.5496572089844],[116.637994414063,37.5472695136719],[116.67298953125,37.5681996894532],[116.688424101563,37.5881996894531],[116.725474882813,37.5750575996094],[116.763170195313,37.5471108222656],[116.82076296875,37.563149640625],[116.823082304688,37.578843],[116.819263945313,37.6046938300782],[116.857345,37.6103212714844],[116.872345,37.6081044746094],[116.892354765625,37.6110610175782]]]]}},{"type":"Feature","properties":{"name":"宁津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.947345,37.823843],[116.947345,37.8338430000001],[116.957345,37.8338430000001],[116.957345,37.823843],[116.947345,37.823843]]],[[[116.947345,37.823843],[116.95142703125,37.7879274726563],[116.96326296875,37.7697585273438],[116.97142703125,37.7479274726563],[116.984835234375,37.7273403144531],[116.993468046875,37.688843],[116.991051054688,37.6780690742187],[117.014937773438,37.6691310859375],[117.00326296875,37.6379274726563],[116.99107546875,37.6295131660157],[116.996241484375,37.6064711738281],[116.93326296875,37.5779274726563],[116.907345,37.5738430000001],[116.892354765625,37.6110610175782],[116.872345,37.6081044746094],[116.857345,37.6103212714844],[116.819263945313,37.6046938300782],[116.823082304688,37.578843],[116.82076296875,37.563149640625],[116.763170195313,37.5471108222656],[116.725474882813,37.5750575996094],[116.688424101563,37.5881996894531],[116.67298953125,37.5681996894532],[116.637994414063,37.5472695136719],[116.621832304688,37.5496572089844],[116.61298953125,37.5381996894532],[116.60170046875,37.5294863105469],[116.597345,37.523843],[116.580704375,37.527202375],[116.553985625,37.5404836250001],[116.507345,37.543843],[116.516236601563,37.5549489570313],[116.532896757813,37.5682900214844],[116.5601575,37.6023281074219],[116.610709257813,37.6330336738281],[116.662896757813,37.6982900214844],[116.671793242188,37.7193959785157],[116.697345,37.733843],[116.74326296875,37.7579274726563],[116.758053007813,37.8155666328125],[116.815343046875,37.8415334296875],[116.842843046875,37.8353688789063],[116.877345,37.843843],[116.937345,37.843843],[116.937345,37.823843],[116.947345,37.823843]]]]}},{"type":"Feature","properties":{"name":"平原县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.532896757813,37.2693959785157],[116.611690703125,37.2468959785156],[116.641890898438,37.2506520820313],[116.669176054688,37.2165834785157],[116.692799101563,37.2195217109375],[116.701793242188,37.2082900214844],[116.707345,37.203843],[116.707345,37.1938430000001],[116.687667265625,37.1887929511719],[116.67091921875,37.1645339179688],[116.624151640625,37.1470351386719],[116.61170046875,37.1137538886719],[116.59142703125,37.0997585273438],[116.566925078125,37.0642653632813],[116.51490359375,37.0283498359375],[116.48142703125,37.0197585273438],[116.47326296875,37.0079274726563],[116.46142703125,36.9997585273438],[116.450186796875,36.9834743476562],[116.453526640625,36.9685646796876],[116.447345,36.9538430000001],[116.43142703125,36.9579274726563],[116.421676054688,36.9720558906251],[116.402345,36.9677223945313],[116.387345,36.9710842109375],[116.367345,36.9666017890626],[116.32384890625,36.976352765625],[116.30326296875,36.9897585273438],[116.28142703125,36.9979274726563],[116.26326296875,37.0097585273437],[116.237257109375,37.0194887519532],[116.227345,37.0338430000001],[116.233985625,37.037202375],[116.24406375,37.05712425],[116.269185820313,37.0698329902344],[116.25994265625,37.088764875],[116.224918242188,37.0988722968751],[116.213985625,37.1204836250001],[116.200704375,37.127202375],[116.193985625,37.140483625],[116.187345,37.1438430000001],[116.19142703125,37.1597585273438],[116.22326296875,37.1779274726563],[116.23142703125,37.2097585273438],[116.249176054688,37.2220119453126],[116.273746367188,37.2575966621094],[116.269698515625,37.2756410957031],[116.277345,37.293843],[116.32197390625,37.2684706855469],[116.344742460938,37.2592153144531],[116.36197390625,37.2792153144532],[116.3727746875,37.2885195136719],[116.3719153125,37.2991664863282],[116.38271609375,37.3084706855469],[116.387345,37.313843],[116.392896757813,37.3093959785156],[116.417535429688,37.2786305976563],[116.532896757813,37.2693959785157]]]]}},{"type":"Feature","properties":{"name":"齐河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.527345,36.4238430000001],[116.537345,36.4238430000001],[116.537345,36.413843],[116.527345,36.413843],[116.527345,36.4238430000001]]],[[[116.537345,36.4238430000001],[116.532345,36.4366506171875],[116.527345,36.4238430000001],[116.51142703125,36.4279274726563],[116.49435671875,36.4526564765625],[116.4620715625,36.4454189277344],[116.451217070313,36.4877162910157],[116.397345,36.523843],[116.391143828125,36.5386025214844],[116.4058215625,36.5983449531251],[116.401221953125,36.6188430000001],[116.404991484375,36.6356410957032],[116.397345,36.6538430000001],[116.410152617188,36.6588430000001],[116.397345,36.663843],[116.403546171875,36.6786025214844],[116.397345,36.703843],[116.412628203125,36.6991237617188],[116.441773710938,36.6973867011719],[116.544366484375,36.6699098945313],[116.5420325,36.7090688300781],[116.5526575,36.7286171699219],[116.5520325,36.7390956855469],[116.5626575,36.7485903144531],[116.562047148438,36.758843],[116.562764921875,36.7709035468751],[116.60611453125,36.7683205390625],[116.633121367188,36.8107900214845],[116.631749296875,36.833843],[116.633287382813,36.8596804023438],[116.675440703125,36.8571681953126],[116.692061796875,36.8385622382813],[116.711627226563,36.8210829902344],[116.722061796875,36.8991237617188],[116.745025664063,36.9413759589844],[116.702760039063,37.0018788886719],[116.732628203125,37.0285622382813],[116.737345,37.0338430000001],[116.762628203125,37.0291237617188],[116.79787234375,36.9896791816406],[116.852418242188,37.0092519355469],[116.877345,36.9938430000001],[116.891339140625,36.9678371406251],[116.926197539063,36.9591384101563],[116.920181914063,36.9352553535157],[116.960982695313,36.9081252265625],[116.950904570313,36.8681252265625],[116.957345,36.863843],[116.95326296875,36.8479274726563],[116.93142703125,36.8397585273438],[116.918995390625,36.8217482734375],[116.878663359375,36.8307888007813],[116.8558215625,36.776411359375],[116.877345,36.743843],[116.802354765625,36.7104897285156],[116.797345,36.6938430000001],[116.78197390625,36.6892153144531],[116.77271609375,36.6684706855469],[116.746578398438,36.6216200996094],[116.69197390625,36.6092153144531],[116.68271609375,36.5884706855469],[116.66197390625,36.5792153144532],[116.64963015625,36.5515566230469],[116.62197390625,36.5392153144532],[116.611300078125,36.5268288398437],[116.613551054688,36.4988430000001],[116.591641875,36.4890663886719],[116.60271609375,36.4692153144532],[116.62197390625,36.4214553046875],[116.547345,36.413843],[116.547345,36.4238430000001],[116.537345,36.4238430000001]]]]}},{"type":"Feature","properties":{"name":"庆云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.600557890625,37.8424587226563],[117.560225859375,37.8077089667969],[117.54271609375,37.7684706855469],[117.521636992188,37.7590639472657],[117.547345,37.713843],[117.5409778125,37.7102114082032],[117.5286340625,37.6885659003907],[117.4860559375,37.6791200996094],[117.46994265625,37.6508583808594],[117.4437121875,37.6702114082032],[117.410816679688,37.6774745917969],[117.3837121875,37.6574745917969],[117.3437121875,37.6509450507813],[117.360767851563,37.6961891914063],[117.347345,37.703843],[117.316373320313,37.6968080878906],[117.301632109375,37.7981020332032],[117.303311796875,37.8116091132813],[117.34341921875,37.8285097480469],[117.330504179688,37.8504799628907],[117.311890898438,37.8481642890625],[117.307345,37.853843],[117.316046171875,37.8664430976563],[117.424346953125,37.8398415351563],[117.47922,37.9213295722656],[117.497345,37.933843],[117.503531523438,37.9376552558594],[117.522789335938,37.9948732734375],[117.537345,38.003843],[117.55966921875,37.9971205878907],[117.562877226563,37.9572243476562],[117.525616484375,37.9251235175781],[117.54197390625,37.8884706855469],[117.57271609375,37.8692153144531],[117.58197390625,37.8584706855469],[117.600557890625,37.8424587226563]]]]}},{"type":"Feature","properties":{"name":"武城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.18170046875,37.3681996894531],[116.237345,37.363843],[116.24170046875,37.3581996894531],[116.28033328125,37.3474404121094],[116.2830871875,37.3288088203126],[116.277345,37.293843],[116.269698515625,37.2756410957031],[116.273746367188,37.2575966621094],[116.249176054688,37.2220119453126],[116.23142703125,37.2097585273438],[116.22326296875,37.1779274726563],[116.19142703125,37.1597585273438],[116.187345,37.1438430000001],[116.171519804688,37.1480178046875],[116.143204375,37.1659938789063],[116.052027617188,37.1477895332032],[116.023170195313,37.0980178046876],[115.994674101563,37.0896681953126],[115.973170195313,37.1196681953126],[115.958038359375,37.1280178046875],[115.930435820313,37.050327375],[115.876568632813,37.0609719062501],[115.867345,37.0738430000001],[115.87974734375,37.1468508125],[115.90314578125,37.1784133125],[115.900670195313,37.1951918769532],[115.918365507813,37.2181215644531],[115.96341921875,37.2365615058594],[115.961363554688,37.2504921699219],[115.98041140625,37.3407741523438],[116.04298953125,37.3581996894531],[116.077515898438,37.3717726875001],[116.102486601563,37.3680825019531],[116.159854765625,37.3813759589844],[116.18170046875,37.3681996894531]]]]}},{"type":"Feature","properties":{"name":"夏津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.224918242188,37.0988722968751],[116.25994265625,37.088764875],[116.269185820313,37.0698329902344],[116.24406375,37.05712425],[116.233985625,37.037202375],[116.227345,37.0338430000001],[116.220206328125,37.0283315253907],[116.224483671875,36.9993544746094],[116.211529570313,36.9893544746094],[116.213990507813,36.9727028632813],[116.174605742188,36.9565822578126],[116.16162234375,36.9248647285156],[116.122906523438,36.8949806953126],[116.057345,36.8838430000001],[116.050079375,36.892915265625],[115.997345,36.8863552070313],[115.972345,36.8894643378907],[115.957345,36.8875991035157],[115.916334257813,36.892700421875],[115.872628203125,36.9094997382813],[115.862345,36.9082216621094],[115.837345,36.9113307929688],[115.812345,36.9082204414063],[115.767345,36.913843],[115.757345,36.933843],[115.761246367188,36.9399404121094],[115.79095828125,36.9589614082031],[115.768492460938,36.9917726875001],[115.799537382813,37.0116493964844],[115.811246367188,37.0299404121094],[115.835636015625,37.045551984375],[115.847345,37.063843],[115.867345,37.0738430000001],[115.876568632813,37.0609719062501],[115.930435820313,37.050327375],[115.958038359375,37.1280178046875],[115.973170195313,37.1196681953126],[115.994674101563,37.0896681953126],[116.023170195313,37.0980178046876],[116.052027617188,37.1477895332032],[116.143204375,37.1659938789063],[116.171519804688,37.1480178046875],[116.187345,37.1438430000001],[116.193985625,37.140483625],[116.200704375,37.127202375],[116.213985625,37.1204836250001],[116.224918242188,37.0988722968751]]]]}},{"type":"Feature","properties":{"name":"禹城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.397345,36.813843],[116.400767851563,36.8016506171875],[116.409537382813,36.8104201484375],[116.4089465625,36.8578249335937],[116.424322539063,36.868843],[116.411236601563,36.8782228828125],[116.414971953125,36.8971425605469],[116.443472929688,36.9081349921875],[116.439503203125,36.9282228828126],[116.461295195313,36.943843],[116.447345,36.9538430000001],[116.453526640625,36.9685646796876],[116.450186796875,36.9834743476562],[116.46142703125,36.9997585273438],[116.47326296875,37.0079274726563],[116.48142703125,37.0197585273438],[116.51490359375,37.0283498359375],[116.566925078125,37.0642653632813],[116.59142703125,37.0997585273438],[116.61170046875,37.1137538886719],[116.624151640625,37.1470351386719],[116.67091921875,37.1645339179688],[116.687667265625,37.1887929511719],[116.707345,37.1938430000001],[116.72857546875,37.1774575019531],[116.710201445313,37.1469985175782],[116.700924101563,37.0842360664063],[116.745299101563,37.0499831367188],[116.730865507813,37.0388430000001],[116.737345,37.0338430000001],[116.732628203125,37.0285622382813],[116.702760039063,37.0018788886719],[116.745025664063,36.9413759589844],[116.722061796875,36.8991237617188],[116.711627226563,36.8210829902344],[116.692061796875,36.8385622382813],[116.675440703125,36.8571681953126],[116.633287382813,36.8596804023438],[116.631749296875,36.833843],[116.633121367188,36.8107900214845],[116.60611453125,36.7683205390625],[116.562764921875,36.7709035468751],[116.562047148438,36.758843],[116.5626575,36.7485903144531],[116.5520325,36.7390956855469],[116.5526575,36.7286171699219],[116.5420325,36.7090688300781],[116.544366484375,36.6699098945313],[116.441773710938,36.6973867011719],[116.412628203125,36.6991237617188],[116.397345,36.703843],[116.387047148438,36.7268325019532],[116.400518828125,36.7700820136719],[116.378111601563,36.8019924140625],[116.397345,36.813843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东阿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.047345,36.1938430000001],[116.043922148438,36.1816506171876],[116.035152617188,36.1904201484375],[116.047345,36.1938430000001]]],[[[116.537345,36.413843],[116.537345,36.4238430000001],[116.547345,36.4238430000001],[116.547345,36.413843],[116.537345,36.413843]]],[[[116.537345,36.4238430000001],[116.527345,36.4238430000001],[116.532345,36.4366506171875],[116.537345,36.4238430000001]]],[[[116.527345,36.4238430000001],[116.527345,36.413843],[116.537345,36.413843],[116.530704375,36.4004836250001],[116.527345,36.3838430000001],[116.50197390625,36.3792153144531],[116.47267703125,36.3384145332032],[116.443316679688,36.3407741523438],[116.43271609375,36.3284706855469],[116.39197390625,36.3192153144532],[116.319210234375,36.2885720039063],[116.27271609375,36.2284706855469],[116.227345,36.173843],[116.209386015625,36.1664638496094],[116.159893828125,36.1762429023438],[116.166905546875,36.1407717109376],[116.111519804688,36.1296681953126],[116.103170195313,36.1180178046875],[116.097345,36.113843],[116.09326296875,36.1297585273438],[116.07142703125,36.1379274726563],[116.059176054688,36.1856740546875],[116.047345,36.1938430000001],[116.06068484375,36.2105019355469],[116.083155546875,36.2284963203125],[116.067345,36.283843],[116.070704375,36.2904836250001],[116.093985625,36.2972023750001],[116.104859648438,36.3186952949219],[116.096685820313,36.3354274726563],[116.114976835938,36.3584511542969],[116.109215117188,36.3702529121094],[116.153985625,36.3772023750001],[116.157345,36.3838430000001],[116.176553984375,36.3762905097656],[116.2476575,36.3912953925781],[116.265797148438,36.4147914863281],[116.328311796875,36.4403774238281],[116.354713164063,36.4845204902344],[116.38170046875,36.5194863105469],[116.397345,36.523843],[116.451217070313,36.4877162910157],[116.4620715625,36.4454189277344],[116.49435671875,36.4526564765625],[116.51142703125,36.4279274726563],[116.527345,36.4238430000001]]]]}},{"type":"Feature","properties":{"name":"东昌府区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.832896757813,36.6893959785157],[115.842144804688,36.6778481269531],[115.869342070313,36.6938356757813],[115.881793242188,36.6782900214844],[115.907345,36.673843],[115.901905546875,36.618529279297],[115.913150664063,36.6088430000001],[115.894752226563,36.592993390625],[115.93572390625,36.5673317695313],[115.968565703125,36.5292153144531],[116.00271609375,36.5384706855469],[116.023326445313,36.5499697089844],[116.062345,36.5468337226562],[116.094400664063,36.54940940625],[116.091300078125,36.5108571601563],[116.102022734375,36.4984157539063],[116.12779421875,36.5004860664063],[116.1327746875,36.4385195136719],[116.11271609375,36.4212404609375],[116.12197390625,36.4084706855469],[116.157345,36.3838430000001],[116.153985625,36.3772023750001],[116.109215117188,36.3702529121094],[116.114976835938,36.3584511542969],[116.096685820313,36.3354274726563],[116.104859648438,36.3186952949219],[116.093985625,36.2972023750001],[116.070704375,36.2904836250001],[116.067345,36.283843],[116.051519804688,36.2796681953126],[116.022095976563,36.2675771308595],[115.993170195313,36.2896681953126],[115.942413359375,36.2998439765625],[115.927345,36.2968666816406],[115.887935820313,36.3046547675781],[115.824635039063,36.2854262519531],[115.801910429688,36.2899172187501],[115.77802859375,36.2747548652344],[115.752345,36.2798305488282],[115.742056914063,36.2777980781251],[115.727345,36.283843],[115.721339140625,36.287837140625],[115.713350859375,36.3098488593751],[115.700904570313,36.3181252265626],[115.7107434375,36.3571681953126],[115.680875273438,36.3680055976563],[115.685943632813,36.3881252265626],[115.677345,36.393843],[115.68170046875,36.4294863105469],[115.70427859375,36.4469118476563],[115.72306765625,36.4928212714844],[115.78045046875,36.5371157050781],[115.761549101563,36.568452375],[115.767139921875,36.6062831855469],[115.751314726563,36.6184987617188],[115.763375273438,36.6491872382812],[115.742008085938,36.6656801582031],[115.737345,36.703843],[115.748546171875,36.7178322578125],[115.781793242188,36.6982900214844],[115.832896757813,36.6893959785157]]]]}},{"type":"Feature","properties":{"name":"高唐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.397345,36.813843],[116.409537382813,36.8104201484375],[116.400767851563,36.8016506171875],[116.397345,36.813843]]],[[[116.397345,36.813843],[116.378111601563,36.8019924140625],[116.400518828125,36.7700820136719],[116.387047148438,36.7268325019532],[116.397345,36.703843],[116.403546171875,36.6786025214844],[116.397345,36.663843],[116.397345,36.6538430000001],[116.36627078125,36.6470644355469],[116.282633085938,36.6992678046876],[116.252022734375,36.6968080878907],[116.232667265625,36.7192702460938],[116.222345,36.7184413886719],[116.212345,36.7192446113282],[116.187345,36.7172365546875],[116.1466809375,36.7205031562501],[116.094757109375,36.7062917304687],[116.05271609375,36.7392153144532],[116.0319153125,36.7484963203126],[116.0327746875,36.759204328125],[116.007345,36.7638430000001],[116.0120715625,36.8053847480469],[116.03326296875,36.8379274726563],[116.042393828125,36.8735207343751],[116.057345,36.8838430000001],[116.122906523438,36.8949806953126],[116.16162234375,36.9248647285156],[116.174605742188,36.9565822578126],[116.213990507813,36.9727028632813],[116.211529570313,36.9893544746094],[116.224483671875,36.9993544746094],[116.220206328125,37.0283315253907],[116.227345,37.0338430000001],[116.237257109375,37.0194887519532],[116.26326296875,37.0097585273437],[116.28142703125,36.9979274726563],[116.30326296875,36.9897585273438],[116.32384890625,36.976352765625],[116.367345,36.9666017890626],[116.387345,36.9710842109375],[116.402345,36.9677223945313],[116.421676054688,36.9720558906251],[116.43142703125,36.9579274726563],[116.447345,36.9538430000001],[116.461295195313,36.943843],[116.439503203125,36.9282228828126],[116.443472929688,36.9081349921875],[116.414971953125,36.8971425605469],[116.411236601563,36.8782228828125],[116.424322539063,36.868843],[116.4089465625,36.8578249335937],[116.397345,36.813843]]]]}},{"type":"Feature","properties":{"name":"冠县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.737345,36.703843],[115.742008085938,36.6656801582031],[115.763375273438,36.6491872382812],[115.751314726563,36.6184987617188],[115.767139921875,36.6062831855469],[115.761549101563,36.568452375],[115.78045046875,36.5371157050781],[115.72306765625,36.4928212714844],[115.70427859375,36.4469118476563],[115.68170046875,36.4294863105469],[115.677345,36.393843],[115.64595828125,36.4005483222657],[115.612345,36.3985451484375],[115.581954375,36.400356671875],[115.582652617188,36.3886464667969],[115.579429960938,36.3791237617188],[115.54224734375,36.3993300605469],[115.53209109375,36.3879640937501],[115.502345,36.3897365546875],[115.488521757813,36.3596181464844],[115.452628203125,36.3791237617188],[115.380357695313,36.3903859687501],[115.337345,36.3838430000001],[115.33326296875,36.3897585273438],[115.2979309375,36.4141518378906],[115.3067590625,36.4535341621094],[115.277345,36.473843],[115.27099734375,36.48929221875],[115.283170195313,36.4980178046875],[115.2916028125,36.5299782539063],[115.30947390625,36.5264455390626],[115.323170195313,36.5480178046875],[115.335186796875,36.6079616523438],[115.368995390625,36.6321926093751],[115.385694609375,36.655493390625],[115.403170195313,36.6680178046875],[115.411519804688,36.6796681953125],[115.437345,36.6938430000001],[115.447843046875,36.6606777167969],[115.5089075,36.6392751289063],[115.5657434375,36.6783827949219],[115.59216921875,36.6794301582031],[115.611011992188,36.6590944648438],[115.631812773438,36.6582692695313],[115.652178984375,36.669048078125],[115.662515898438,36.6686379218751],[115.704586210938,36.6975893378906],[115.737345,36.703843]]]]}},{"type":"Feature","properties":{"name":"临清市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.767345,36.913843],[115.812345,36.9082204414063],[115.837345,36.9113307929688],[115.862345,36.9082216621094],[115.872628203125,36.9094997382813],[115.916334257813,36.892700421875],[115.957345,36.8875991035157],[115.972345,36.8894643378907],[115.997345,36.8863552070313],[116.050079375,36.892915265625],[116.057345,36.8838430000001],[116.042393828125,36.8735207343751],[116.03326296875,36.8379274726563],[116.0120715625,36.8053847480469],[116.007345,36.7638430000001],[115.99306765625,36.7528212714844],[115.967349882813,36.6899831367188],[115.93673953125,36.6774550605469],[115.92205203125,36.6796254707032],[115.907345,36.673843],[115.881793242188,36.6782900214844],[115.869342070313,36.6938356757813],[115.842144804688,36.6778481269531],[115.832896757813,36.6893959785157],[115.781793242188,36.6982900214844],[115.748546171875,36.7178322578125],[115.737345,36.703843],[115.704586210938,36.6975893378906],[115.662515898438,36.6686379218751],[115.652178984375,36.669048078125],[115.631812773438,36.6582692695313],[115.611011992188,36.6590944648438],[115.59216921875,36.6794301582031],[115.5657434375,36.6783827949219],[115.5089075,36.6392751289063],[115.447843046875,36.6606777167969],[115.437345,36.6938430000001],[115.46271609375,36.7384706855469],[115.467345,36.753843],[115.502017851563,36.7696303535157],[115.512735625,36.7680458808594],[115.533922148438,36.7808266425781],[115.552345,36.7781044746094],[115.562345,36.7795815253907],[115.576304960938,36.7775185371094],[115.63298953125,36.7981996894531],[115.65170046875,36.8094863105469],[115.68298953125,36.8181996894532],[115.698839140625,36.8751235175782],[115.73170046875,36.8994863105469],[115.767345,36.913843]]]]}},{"type":"Feature","properties":{"name":"阳谷县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.047345,36.1938430000001],[116.035152617188,36.1904201484375],[116.043922148438,36.1816506171876],[116.059176054688,36.1856740546875],[116.07142703125,36.1379274726563],[116.09326296875,36.1297585273438],[116.097345,36.113843],[116.061441679688,36.1077443671875],[115.995201445313,36.0516005683594],[115.95170046875,36.0394863105469],[115.92298953125,36.0281996894531],[115.87170046875,36.0194863105469],[115.850767851563,36.0068593574219],[115.817345,36.0117983222656],[115.787838164063,36.0074379707032],[115.766324492188,35.9795644355469],[115.73673953125,35.9674550605469],[115.717345,35.9703212714844],[115.695264921875,35.9670571113282],[115.67298953125,35.9381996894532],[115.647345,35.9338430000001],[115.67177859375,35.9722475410157],[115.681793242188,36.0262587714844],[115.660748320313,36.0810048652344],[115.667315703125,36.1337978339844],[115.718453398438,36.1977370429688],[115.733604765625,36.2337026191407],[115.731724882813,36.248843],[115.732984648438,36.2590041328125],[115.727345,36.283843],[115.742056914063,36.2777980781251],[115.752345,36.2798305488282],[115.77802859375,36.2747548652344],[115.801910429688,36.2899172187501],[115.824635039063,36.2854262519531],[115.887935820313,36.3046547675781],[115.927345,36.2968666816406],[115.942413359375,36.2998439765625],[115.993170195313,36.2896681953126],[116.022095976563,36.2675771308595],[116.051519804688,36.2796681953126],[116.067345,36.283843],[116.083155546875,36.2284963203125],[116.06068484375,36.2105019355469],[116.047345,36.1938430000001]]]]}},{"type":"Feature","properties":{"name":"茌平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.397345,36.6538430000001],[116.397345,36.663843],[116.410152617188,36.6588430000001],[116.397345,36.6538430000001]]],[[[116.397345,36.6538430000001],[116.404991484375,36.6356410957032],[116.401221953125,36.6188430000001],[116.4058215625,36.5983449531251],[116.391143828125,36.5386025214844],[116.397345,36.523843],[116.38170046875,36.5194863105469],[116.354713164063,36.4845204902344],[116.328311796875,36.4403774238281],[116.265797148438,36.4147914863281],[116.2476575,36.3912953925781],[116.176553984375,36.3762905097656],[116.157345,36.3838430000001],[116.12197390625,36.4084706855469],[116.11271609375,36.4212404609375],[116.1327746875,36.4385195136719],[116.12779421875,36.5004860664063],[116.102022734375,36.4984157539063],[116.091300078125,36.5108571601563],[116.094400664063,36.54940940625],[116.062345,36.5468337226562],[116.023326445313,36.5499697089844],[116.00271609375,36.5384706855469],[115.968565703125,36.5292153144531],[115.93572390625,36.5673317695313],[115.894752226563,36.592993390625],[115.913150664063,36.6088430000001],[115.901905546875,36.618529279297],[115.907345,36.673843],[115.92205203125,36.6796254707032],[115.93673953125,36.6774550605469],[115.967349882813,36.6899831367188],[115.99306765625,36.7528212714844],[116.007345,36.7638430000001],[116.0327746875,36.759204328125],[116.0319153125,36.7484963203126],[116.05271609375,36.7392153144532],[116.094757109375,36.7062917304687],[116.1466809375,36.7205031562501],[116.187345,36.7172365546875],[116.212345,36.7192446113282],[116.222345,36.7184413886719],[116.232667265625,36.7192702460938],[116.252022734375,36.6968080878907],[116.282633085938,36.6992678046876],[116.36627078125,36.6470644355469],[116.397345,36.6538430000001]]]]}},{"type":"Feature","properties":{"name":"莘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.64595828125,36.4005483222657],[115.677345,36.393843],[115.685943632813,36.3881252265626],[115.680875273438,36.3680055976563],[115.7107434375,36.3571681953126],[115.700904570313,36.3181252265626],[115.713350859375,36.3098488593751],[115.721339140625,36.287837140625],[115.727345,36.283843],[115.732984648438,36.2590041328125],[115.731724882813,36.248843],[115.733604765625,36.2337026191407],[115.718453398438,36.1977370429688],[115.667315703125,36.1337978339844],[115.660748320313,36.0810048652344],[115.681793242188,36.0262587714844],[115.67177859375,35.9722475410157],[115.647345,35.9338430000001],[115.647345,35.9238430000001],[115.581158476563,35.9200307441406],[115.554718046875,35.9014675117188],[115.502511015625,35.883676984375],[115.493531523438,35.9100307441407],[115.478043242188,35.9176552558595],[115.4894934375,35.8808998847656],[115.451158476563,35.8600307441407],[115.383531523438,35.7976552558594],[115.357345,35.783843],[115.340704375,35.787202375],[115.327345,35.793843],[115.339605742188,35.8660109687501],[115.357891875,35.89632346875],[115.350865507813,35.943843],[115.354205351563,35.9664174628907],[115.38298953125,35.9781996894532],[115.387345,35.993843],[115.431422148438,36.0064443183594],[115.44490359375,36.0232802558594],[115.440611601563,36.0577797675782],[115.470435820313,36.0986098457032],[115.477345,36.1538430000001],[115.4700403125,36.1835732246094],[115.473468046875,36.1988430000001],[115.468980742188,36.218843],[115.473565703125,36.2392897773438],[115.453873320313,36.2695290351563],[115.423204375,36.2810048652344],[115.411651640625,36.3260268378906],[115.348443632813,36.3064333320313],[115.357496367188,36.3468325019532],[115.34142703125,36.3579274726563],[115.337345,36.3838430000001],[115.380357695313,36.3903859687501],[115.452628203125,36.3791237617188],[115.488521757813,36.3596181464844],[115.502345,36.3897365546875],[115.53209109375,36.3879640937501],[115.54224734375,36.3993300605469],[115.579429960938,36.3791237617188],[115.582652617188,36.3886464667969],[115.581954375,36.400356671875],[115.612345,36.3985451484375],[115.64595828125,36.4005483222657]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"滨城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.01298953125,37.5894863105469],[118.036143828125,37.5594863105469],[118.07298953125,37.5681996894532],[118.09170046875,37.5794863105469],[118.117345,37.583843],[118.12197390625,37.5784706855469],[118.1327746875,37.5691664863282],[118.131842070313,37.5575978828125],[118.171441679688,37.5607790351563],[118.111363554688,37.4760451484376],[118.112745390625,37.4588430000001],[118.11103640625,37.4375319648437],[118.140328398438,37.4398867011719],[118.167921171875,37.4161171699219],[118.15271609375,37.3984706855469],[118.130738554688,37.3795351386719],[118.14271609375,37.3692153144531],[118.147345,37.363843],[118.101514921875,37.3594692207031],[118.104483671875,37.3393544746094],[118.091095,37.3290175605469],[118.126666289063,37.2810378242188],[118.0962121875,37.2575319648438],[118.079967070313,37.2599330878907],[118.083140898438,37.238452375],[118.07170046875,37.2194863105469],[118.067345,37.203843],[118.041158476563,37.2076552558594],[118.02187625,37.2211940742188],[118.011539335938,37.2044216132813],[117.963648710938,37.2193386054687],[117.989595976563,37.2562929511719],[117.965240507813,37.2713014960938],[117.947345,37.2657277656251],[117.927345,37.271958234375],[117.89443484375,37.2617067695313],[117.853531523438,37.2800307441407],[117.817345,37.283843],[117.81298953125,37.3094863105469],[117.80170046875,37.3181996894531],[117.789928007813,37.3874965644532],[117.798756132813,37.4472121406251],[117.820299101563,37.463843],[117.7960559375,37.4825551582031],[117.787345,37.513843],[117.795943632813,37.5195607734376],[117.791085234375,37.538843],[117.797388945313,37.5638710761719],[117.85248171875,37.5499904609376],[117.857345,37.593843],[117.892310820313,37.5880995917969],[117.902735625,37.5896401191407],[117.943048125,37.5653224921875],[117.968424101563,37.5981996894531],[118.01298953125,37.5894863105469]]]]}},{"type":"Feature","properties":{"name":"博兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.217345,37.383843],[118.222003203125,37.3640639472656],[118.247965117188,37.3721511054688],[118.302921171875,37.3534230781251],[118.312066679688,37.3026052070313],[118.359307890625,37.2768862128907],[118.367345,37.2638430000001],[118.345553007813,37.2282485175782],[118.381715117188,37.1756911445313],[118.33341921875,37.1309401679688],[118.332144804688,37.098843],[118.332843046875,37.0812160468751],[118.317725859375,37.033462140625],[118.296964140625,37.014223859375],[118.287345,37.003843],[118.25170046875,36.9994863105469],[118.203331328125,36.9636269355469],[118.177345,36.973843],[118.173170195313,36.9796681953125],[118.151519804688,36.9880178046876],[118.126890898438,37.0223793769532],[118.148253203125,37.0560243964844],[118.131519804688,37.0680178046875],[118.120220976563,37.0973159003907],[118.051724882813,37.0837807441406],[118.037345,37.103843],[118.065089140625,37.1117751289063],[118.060474882813,37.1488661933594],[118.067345,37.203843],[118.07170046875,37.2194863105469],[118.083140898438,37.238452375],[118.079967070313,37.2599330878907],[118.0962121875,37.2575319648438],[118.126666289063,37.2810378242188],[118.091095,37.3290175605469],[118.104483671875,37.3393544746094],[118.101514921875,37.3594692207031],[118.147345,37.363843],[118.163985625,37.3672023750001],[118.190704375,37.380483625],[118.217345,37.383843]]]]}},{"type":"Feature","properties":{"name":"惠民县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.63423953125,37.5515419746094],[117.621109648438,37.5083132148437],[117.634322539063,37.4988430000001],[117.613170195313,37.4836830878907],[117.64423953125,37.4555568671875],[117.661519804688,37.4796681953125],[117.693170195313,37.4980178046875],[117.721861601563,37.5199269843751],[117.747345,37.5148903632813],[117.772633085938,37.5198879218751],[117.787345,37.513843],[117.7960559375,37.4825551582031],[117.820299101563,37.463843],[117.798756132813,37.4472121406251],[117.789928007813,37.3874965644532],[117.80170046875,37.3181996894531],[117.81298953125,37.3094863105469],[117.817345,37.283843],[117.803082304688,37.2660341621094],[117.757803984375,37.2394167304688],[117.691793242188,37.2582900214844],[117.647530546875,37.2753041816407],[117.610543242188,37.2144106269532],[117.591793242188,37.1993959785156],[117.581417265625,37.1631056953125],[117.547345,37.1438430000001],[117.50041140625,37.1307741523437],[117.457345,37.1138430000001],[117.45142703125,37.1179274726562],[117.44326296875,37.1497585273438],[117.43142703125,37.1679274726563],[117.42326296875,37.1897585273438],[117.405513945313,37.2020119453125],[117.397345,37.233843],[117.43408328125,37.2654946113281],[117.420484648438,37.3025221992188],[117.401163359375,37.3191664863282],[117.404586210938,37.3617568183594],[117.360416289063,37.3998146796876],[117.362745390625,37.428843],[117.360860625,37.45233909375],[117.302667265625,37.4476638007813],[117.29271609375,37.4592153144532],[117.272730742188,37.4764321113282],[117.31271609375,37.4884706855469],[117.317345,37.503843],[117.323170195313,37.5080178046875],[117.335391875,37.5250685859375],[117.41900515625,37.4996681953126],[117.424400664063,37.5234413886719],[117.420421171875,37.5435756660157],[117.463682890625,37.5710402656251],[117.497086210938,37.5581581855469],[117.517345,37.5298903632813],[117.5327746875,37.5514174628906],[117.571241484375,37.5758388496094],[117.63423953125,37.5515419746094]]]]}},{"type":"Feature","properties":{"name":"无棣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.799693632813,38.2754970527344],[117.839693632813,38.2604201484375],[117.847345,38.273843],[117.87326296875,38.2697585273437],[117.991768828125,38.2129726386719],[118.050181914063,38.1979824042969],[118.06142703125,38.1679274726563],[118.067345,38.163843],[118.04154421875,38.1292739082032],[118.043824492188,38.113843],[118.041607695313,38.0988430000001],[118.043824492188,38.083843],[118.041607695313,38.0688430000001],[118.045611601563,38.0417372871094],[118.019937773438,38.0071071601562],[118.068448515625,37.9872524238281],[118.05170046875,37.9594863105469],[118.04295046875,37.9180141425782],[118.0221496875,37.9210890937501],[118.01298953125,37.8881996894532],[118.00156375,37.8591347480469],[118.003160429688,37.8483315253907],[117.99170046875,37.8394863105469],[117.976265898438,37.8194863105469],[117.95170046875,37.8281996894532],[117.939879179688,37.8435170722656],[117.9160559375,37.8251308417969],[117.90298953125,37.7781996894531],[117.88041140625,37.7607741523438],[117.856851835938,37.730248029297],[117.842135039063,37.7280727363282],[117.802554960938,37.7396132636719],[117.782857695313,37.7367018867188],[117.766265898438,37.7581996894532],[117.75170046875,37.7494863105469],[117.737345,37.713843],[117.73142703125,37.7097585273438],[117.72326296875,37.6979274726563],[117.6845325,37.6834352851563],[117.673013945313,37.7001137519531],[117.652345,37.6954799628907],[117.627345,37.7010842109376],[117.611900664063,37.697622296875],[117.592789335938,37.7100637031251],[117.577076445313,37.7065407539063],[117.547345,37.713843],[117.521636992188,37.7590639472657],[117.54271609375,37.7684706855469],[117.560225859375,37.8077089667969],[117.600557890625,37.8424587226563],[117.58197390625,37.8584706855469],[117.57271609375,37.8692153144531],[117.54197390625,37.8884706855469],[117.525616484375,37.9251235175781],[117.562877226563,37.9572243476562],[117.55966921875,37.9971205878907],[117.537345,38.003843],[117.541519804688,38.0196681953125],[117.55341921875,38.0384096503907],[117.5507434375,38.0519448066406],[117.581456328125,38.0739589667969],[117.612349882813,38.0678542304688],[117.672340117188,38.0798317695313],[117.705445585938,38.0732900214844],[117.735694609375,38.115493390625],[117.765675078125,38.1369826484375],[117.761217070313,38.1595510078126],[117.783170195313,38.1680178046876],[117.791519804688,38.1996681953125],[117.807764921875,38.2392055488281],[117.787345,38.2538430000001],[117.799693632813,38.2754970527344]]]]}},{"type":"Feature","properties":{"name":"阳信县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.74552859375,37.6951772285156],[117.733912382813,37.653843],[117.773443632813,37.6399404121094],[117.804283476563,37.6153237128907],[117.837345,37.6060329414062],[117.85330203125,37.6105165839844],[117.857345,37.593843],[117.85248171875,37.5499904609376],[117.797388945313,37.5638710761719],[117.791085234375,37.538843],[117.795943632813,37.5195607734376],[117.787345,37.513843],[117.772633085938,37.5198879218751],[117.747345,37.5148903632813],[117.721861601563,37.5199269843751],[117.693170195313,37.4980178046875],[117.661519804688,37.4796681953125],[117.64423953125,37.4555568671875],[117.613170195313,37.4836830878907],[117.634322539063,37.4988430000001],[117.621109648438,37.5083132148437],[117.63423953125,37.5515419746094],[117.571241484375,37.5758388496094],[117.5327746875,37.5514174628906],[117.517345,37.5298903632813],[117.497086210938,37.5581581855469],[117.463682890625,37.5710402656251],[117.420421171875,37.5435756660157],[117.424400664063,37.5234413886719],[117.41900515625,37.4996681953126],[117.335391875,37.5250685859375],[117.323170195313,37.5080178046875],[117.317345,37.503843],[117.292388945313,37.5099733710938],[117.281676054688,37.5075722480469],[117.27326296875,37.5197585273438],[117.257345,37.523843],[117.261158476563,37.5400307441407],[117.273531523438,37.5476552558594],[117.28281375,37.5748891425781],[117.303531523438,37.5876552558594],[117.314229765625,37.6190407539063],[117.30064578125,37.6383852363281],[117.30797,37.6619057441406],[117.333531523438,37.6776552558594],[117.347345,37.703843],[117.360767851563,37.6961891914063],[117.3437121875,37.6509450507813],[117.3837121875,37.6574745917969],[117.410816679688,37.6774745917969],[117.4437121875,37.6702114082032],[117.46994265625,37.6508583808594],[117.4860559375,37.6791200996094],[117.5286340625,37.6885659003907],[117.5409778125,37.7102114082032],[117.547345,37.713843],[117.577076445313,37.7065407539063],[117.592789335938,37.7100637031251],[117.611900664063,37.697622296875],[117.627345,37.7010842109376],[117.652345,37.6954799628907],[117.673013945313,37.7001137519531],[117.6845325,37.6834352851563],[117.72326296875,37.6979274726563],[117.73142703125,37.7097585273438],[117.737345,37.713843],[117.74552859375,37.6951772285156]]]]}},{"type":"Feature","properties":{"name":"沾化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.211803007813,37.9485707832031],[118.243424101563,37.8744106269531],[118.240885039063,37.8495021796876],[118.252608671875,37.848305890625],[118.30603640625,37.8683803535157],[118.322808867188,37.8593056464844],[118.357345,37.7938430000001],[118.352896757813,37.7882900214844],[118.339405546875,37.7774843574219],[118.343023710938,37.7483901191407],[118.331793242188,37.7393959785156],[118.27724734375,37.6600746894531],[118.247345,37.6563552070312],[118.177379179688,37.6650575996094],[118.13818484375,37.600532453125],[118.117345,37.583843],[118.09170046875,37.5794863105469],[118.07298953125,37.5681996894532],[118.036143828125,37.5594863105469],[118.01298953125,37.5894863105469],[117.968424101563,37.5981996894531],[117.943048125,37.5653224921875],[117.902735625,37.5896401191407],[117.892310820313,37.5880995917969],[117.857345,37.593843],[117.85330203125,37.6105165839844],[117.837345,37.6060329414062],[117.804283476563,37.6153237128907],[117.773443632813,37.6399404121094],[117.733912382813,37.653843],[117.74552859375,37.6951772285156],[117.737345,37.713843],[117.75170046875,37.7494863105469],[117.766265898438,37.7581996894532],[117.782857695313,37.7367018867188],[117.802554960938,37.7396132636719],[117.842135039063,37.7280727363282],[117.856851835938,37.730248029297],[117.88041140625,37.7607741523438],[117.90298953125,37.7781996894531],[117.9160559375,37.8251308417969],[117.939879179688,37.8435170722656],[117.95170046875,37.8281996894532],[117.976265898438,37.8194863105469],[117.99170046875,37.8394863105469],[118.003160429688,37.8483315253907],[118.00156375,37.8591347480469],[118.01298953125,37.8881996894532],[118.0221496875,37.9210890937501],[118.04295046875,37.9180141425782],[118.05170046875,37.9594863105469],[118.068448515625,37.9872524238281],[118.019937773438,38.0071071601562],[118.045611601563,38.0417372871094],[118.041607695313,38.0688430000001],[118.043824492188,38.083843],[118.041607695313,38.0988430000001],[118.043824492188,38.113843],[118.04154421875,38.1292739082032],[118.067345,38.163843],[118.12052859375,38.1586513496094],[118.222896757813,38.1293959785157],[118.227345,38.123843],[118.221324492188,38.118843],[118.237047148438,38.1057839179688],[118.221803007813,38.0791652656251],[118.223917265625,38.0584316230469],[118.211803007813,37.9485707832031]]]]}},{"type":"Feature","properties":{"name":"邹平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.537345,36.933843],[117.525152617188,36.9372658515626],[117.533922148438,36.9460353828125],[117.537345,36.933843]]],[[[117.537345,36.933843],[117.56037234375,36.9459731269531],[117.543765898438,36.9829421210938],[117.5117590625,36.9554604316407],[117.501221953125,36.9754701972657],[117.463892851563,36.9572927070313],[117.389698515625,36.9503932929688],[117.35826296875,36.9747585273437],[117.36927859375,36.9992714667969],[117.330797148438,37.0072927070313],[117.304957304688,37.0273195625],[117.323892851563,37.0372927070313],[117.327345,37.0738430000001],[117.352584257813,37.0676430488281],[117.395513945313,37.0856740546876],[117.447022734375,37.0988930488282],[117.457345,37.1138430000001],[117.50041140625,37.1307741523437],[117.547345,37.1438430000001],[117.551793242188,37.1282900214844],[117.563023710938,37.1192958808594],[117.560865507813,37.1019362617188],[117.573702421875,37.0859023261719],[117.609527617188,37.0903578925782],[117.691690703125,37.0668959785157],[117.712345,37.0694643378906],[117.742345,37.0657338691406],[117.789351835938,37.0715798164063],[117.837345,37.063843],[117.84142703125,37.0279274726563],[117.864215117188,37.0121938300782],[117.859464140625,36.9909975410156],[117.90326296875,36.9797585273438],[117.912271757813,36.9556728339844],[117.93142703125,36.9279274726562],[117.954229765625,36.9193959785157],[117.937345,36.893843],[117.902608671875,36.8715322089844],[117.820318632813,36.8575527167969],[117.82312625,36.8385512519532],[117.80459109375,36.7914052558594],[117.842579375,36.7620839667969],[117.846143828125,36.7394863105469],[117.811954375,36.7601100898438],[117.80298953125,36.7381996894532],[117.779107695313,36.6986049628906],[117.707345,36.6938430000001],[117.743746367188,36.7493581367188],[117.689073515625,36.7586452460938],[117.6672278125,36.7869521308594],[117.6160559375,36.8175551582032],[117.563761015625,36.8563271308594],[117.583375273438,36.8888430000001],[117.565518828125,36.918452375],[117.54170046875,36.9281996894532],[117.537345,36.933843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鄄城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.647345,35.753843],[115.66197390625,35.728470685547],[115.6827746875,35.7191896796876],[115.679097929688,35.6734169746094],[115.700728789063,35.6483107734375],[115.73197390625,35.6508217597656],[115.72271609375,35.6284706855469],[115.705689726563,35.6138027167969],[115.69185671875,35.5890053535157],[115.705108671875,35.5282460761719],[115.701939726563,35.4888051582031],[115.707345,35.4338430000001],[115.682154570313,35.4290334296876],[115.632535429688,35.3886525703125],[115.4961340625,35.3790334296875],[115.452535429688,35.4090334296875],[115.430636015625,35.41937034375],[115.385240507813,35.4175710273437],[115.352535429688,35.4290334296876],[115.312569609375,35.4416872382813],[115.327345,35.483843],[115.353404570313,35.4984316230469],[115.333902617188,35.5480312324219],[115.401651640625,35.6003224921876],[115.407345,35.633843],[115.429478789063,35.6408498359376],[115.4933215625,35.7278908515626],[115.532345,35.7294374824219],[115.552486601563,35.7286391425781],[115.647345,35.753843]]]]}},{"type":"Feature","properties":{"name":"曹县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.173233671875,35.0574379707031],[115.2189075,35.0459291816407],[115.237345,35.0538430000001],[115.247037382813,35.0398061347656],[115.302843046875,35.0523171210938],[115.337345,35.043843],[115.371021757813,35.0381215644531],[115.42205203125,35.0180605292969],[115.454439726563,35.0228469062501],[115.521470976563,34.9964968085938],[115.560806914063,35.0023110175782],[115.577838164063,34.9802480292969],[115.597345,34.9773647285156],[115.634439726563,34.9828469062501],[115.67170046875,34.9681996894531],[115.767345,34.963843],[115.734761992188,34.9201882148438],[115.730206328125,34.8893544746094],[115.74298953125,34.8794863105469],[115.75170046875,34.8581996894532],[115.77298953125,34.8494863105469],[115.791954375,34.8380458808594],[115.82978640625,34.8436367011719],[115.84170046875,34.8281996894532],[115.857345,34.8238430000001],[115.85146609375,34.80855003125],[115.871793242188,34.7922743964844],[115.842896757813,34.7682900214844],[115.819488554688,34.7584255195313],[115.833985625,34.69460471875],[115.821632109375,34.6652834296875],[115.794830351563,34.6438210273438],[115.791724882813,34.6188417792969],[115.797345,34.573843],[115.787345,34.573843],[115.78271609375,34.5792153144532],[115.6932825,34.6035585761719],[115.679117460938,34.5565163398438],[115.63271609375,34.5692153144532],[115.52197390625,34.5784706855469],[115.457345,34.6338430000001],[115.44271609375,34.6992153144531],[115.431925078125,34.7286049628906],[115.433951445313,34.7538430000001],[115.430870390625,34.7921901679688],[115.41197390625,34.8084706855469],[115.394439726563,34.82882346875],[115.35197390625,34.8384706855469],[115.313179960938,34.8601149726563],[115.268253203125,34.8565053535157],[115.257345,34.843843],[115.23584109375,34.8498305488281],[115.244605742188,34.909145734375],[115.195660429688,34.9194741035157],[115.221568632813,34.9624221015625],[115.187345,34.9573647285157],[115.156549101563,34.9619155097657],[115.14298953125,34.9794863105469],[115.13170046875,34.9881996894532],[115.127345,34.993843],[115.133350859375,34.997837140625],[115.141339140625,35.0098488593751],[115.163350859375,35.0178371406251],[115.173233671875,35.0574379707031]]]]}},{"type":"Feature","properties":{"name":"成武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.882447539063,35.1289418769532],[115.8822278125,35.1181264472657],[115.95177859375,35.119546125],[116.147345,35.113843],[116.141793242188,35.0993959785156],[116.132896757813,35.0582900214845],[116.102896757813,35.0456484199219],[116.111793242188,35.0282900214844],[116.154898710938,34.9743886542969],[116.15080203125,34.9414321113282],[116.177345,34.9338430000001],[116.152393828125,34.9026833320313],[116.063570585938,34.9368239570313],[116.024215117188,34.9417201972657],[116.010748320313,34.9066811347657],[116.014156523438,34.8792958808594],[116.000533476563,34.8683901191407],[116.003023710938,34.8483901191407],[115.991666289063,34.8392958808594],[115.995386992188,34.8093959785156],[115.901793242188,34.8182900214844],[115.857345,34.8238430000001],[115.84170046875,34.8281996894532],[115.82978640625,34.8436367011719],[115.791954375,34.8380458808594],[115.77298953125,34.8494863105469],[115.75170046875,34.8581996894532],[115.74298953125,34.8794863105469],[115.730206328125,34.8893544746094],[115.734761992188,34.9201882148438],[115.767345,34.963843],[115.769888945313,34.9712990546875],[115.784801054688,34.9763869453125],[115.789888945313,34.9995632148438],[115.769888945313,35.0063869453125],[115.764801054688,35.0361525703125],[115.784801054688,35.0563869453125],[115.787345,35.1638430000001],[115.80224734375,35.1587429023438],[115.83244265625,35.1489430976563],[115.84224734375,35.1387429023437],[115.882447539063,35.1289418769532]]]]}},{"type":"Feature","properties":{"name":"单县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.063570585938,34.9368239570313],[116.152393828125,34.9026833320313],[116.177345,34.9338430000001],[116.183170195313,34.9296681953125],[116.198316679688,34.9085353828125],[116.253170195313,34.8996681953125],[116.281519804688,34.8780178046875],[116.373170195313,34.8596681953125],[116.407345,34.843843],[116.39298953125,34.7581996894532],[116.35298953125,34.7470607734376],[116.361754179688,34.7180165839844],[116.379854765625,34.7206911445313],[116.383140898438,34.698452375],[116.371549101563,34.679233625],[116.37420046875,34.6612831855469],[116.367345,34.643843],[116.359244414063,34.6290639472656],[116.330885039063,34.6203029609376],[116.323804960938,34.6073830390626],[116.280885039063,34.6003029609375],[116.273804960938,34.5873830390625],[116.254425078125,34.5767617011719],[116.240015898438,34.5504763007813],[116.213804960938,34.5703029609375],[116.187345,34.573843],[116.14427859375,34.5548879218751],[116.09681765625,34.6080068183594],[116.042252226563,34.5884279609375],[115.989483671875,34.6252895332032],[115.9723059375,34.5878615546875],[115.823082304688,34.5646083808595],[115.797345,34.573843],[115.791724882813,34.6188417792969],[115.794830351563,34.6438210273438],[115.821632109375,34.6652834296875],[115.833985625,34.69460471875],[115.819488554688,34.7584255195313],[115.842896757813,34.7682900214844],[115.871793242188,34.7922743964844],[115.85146609375,34.80855003125],[115.857345,34.8238430000001],[115.901793242188,34.8182900214844],[115.995386992188,34.8093959785156],[115.991666289063,34.8392958808594],[116.003023710938,34.8483901191407],[116.000533476563,34.8683901191407],[116.014156523438,34.8792958808594],[116.010748320313,34.9066811347657],[116.024215117188,34.9417201972657],[116.063570585938,34.9368239570313]]]]}},{"type":"Feature","properties":{"name":"定陶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.730260039063,35.2505886054688],[115.767345,35.233843],[115.781441679688,35.2216957832031],[115.787345,35.1638430000001],[115.784801054688,35.0563869453125],[115.764801054688,35.0361525703125],[115.769888945313,35.0063869453125],[115.789888945313,34.9995632148438],[115.784801054688,34.9763869453125],[115.769888945313,34.9712990546875],[115.767345,34.963843],[115.67170046875,34.9681996894531],[115.634439726563,34.9828469062501],[115.597345,34.9773647285156],[115.577838164063,34.9802480292969],[115.560806914063,35.0023110175782],[115.521470976563,34.9964968085938],[115.454439726563,35.0228469062501],[115.42205203125,35.0180605292969],[115.371021757813,35.0381215644531],[115.337345,35.043843],[115.358394804688,35.0956423164063],[115.387222929688,35.1125893378907],[115.440045195313,35.1060195136719],[115.495904570313,35.1295571113282],[115.525133085938,35.1660549140626],[115.552896757813,35.1882900214844],[115.580845976563,35.2343032050781],[115.627345,35.2400868964844],[115.642379179688,35.2382167792969],[115.730260039063,35.2505886054688]]]]}},{"type":"Feature","properties":{"name":"东明县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.24468875,35.073843],[115.237345,35.0538430000001],[115.2189075,35.0459291816407],[115.173233671875,35.0574379707031],[115.163350859375,35.0178371406251],[115.141339140625,35.0098488593751],[115.133350859375,34.997837140625],[115.127345,34.993843],[115.123804960938,35.0003029609375],[115.0854309375,35.0073830390625],[115.013604765625,34.9724196601563],[115.003804960938,34.9903029609375],[114.950250273438,34.9973830390625],[114.914674101563,34.9704763007813],[114.903804960938,34.9903029609375],[114.880885039063,34.9973830390625],[114.873428984375,35.0215163398438],[114.833565703125,35.0024977851563],[114.827345,35.0138430000001],[114.851221953125,35.0351784492188],[114.822061796875,35.0485622382813],[114.802628203125,35.0746022773438],[114.862628203125,35.0885622382813],[114.882061796875,35.1069460273438],[114.841480742188,35.1593166328125],[114.8429309375,35.1836867500001],[114.922628203125,35.1985622382813],[114.932061796875,35.2491237617188],[114.947906523438,35.2632802558594],[114.976221953125,35.2949684882813],[115.002628203125,35.3185622382813],[115.007345,35.333843],[115.01271609375,35.3384706855469],[115.02197390625,35.3692153144532],[115.068878203125,35.3798708320313],[115.084742460938,35.4154164863282],[115.167345,35.423843],[115.19197390625,35.3684706855469],[115.240499296875,35.3538613105469],[115.26197390625,35.2753932929688],[115.25271609375,35.1984706855469],[115.231925078125,35.1490956855469],[115.233150664063,35.1338430000001],[115.231265898438,35.1103993964844],[115.24468875,35.073843]]]]}},{"type":"Feature","properties":{"name":"巨野县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.127574492188,35.4795680976563],[116.161910429688,35.4577687812501],[116.19810671875,35.4649221015625],[116.211519804688,35.3980178046875],[116.227349882813,35.3730837226563],[116.183170195313,35.3195497871094],[116.201519804688,35.2880178046875],[116.213170195313,35.2796681953125],[116.224205351563,35.2642702460938],[116.268551054688,35.2730336738281],[116.278726835938,35.2215419746094],[116.267345,35.193843],[116.232379179688,35.1995864082032],[116.210494414063,35.196352765625],[116.214732695313,35.1676723457032],[116.185045195313,35.1184499335938],[116.147345,35.113843],[115.95177859375,35.119546125],[115.8822278125,35.1181264472657],[115.882447539063,35.1289418769532],[115.84224734375,35.1387429023437],[115.83244265625,35.1489430976563],[115.80224734375,35.1587429023438],[115.787345,35.1638430000001],[115.781441679688,35.2216957832031],[115.767345,35.233843],[115.77142703125,35.2397585273438],[115.793638945313,35.2480690742188],[115.791221953125,35.258843],[115.796827421875,35.2838430000001],[115.791124296875,35.3092897773437],[115.807110625,35.333843],[115.78931765625,35.3611672187501],[115.797345,35.3938430000001],[115.811519804688,35.3880178046876],[115.853170195313,35.3796681953125],[115.884361601563,35.3598647285156],[115.975982695313,35.3840358710938],[116.001519804688,35.4196681953125],[116.03443484375,35.4432607246094],[116.02968875,35.4672951484375],[116.083170195313,35.4780178046875],[116.101519804688,35.4896681953126],[116.117345,35.493843],[116.127574492188,35.4795680976563]]]]}},{"type":"Feature","properties":{"name":"牡丹区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.352535429688,35.4290334296876],[115.385240507813,35.4175710273437],[115.430636015625,35.41937034375],[115.452535429688,35.4090334296875],[115.4961340625,35.3790334296875],[115.632535429688,35.3886525703125],[115.682154570313,35.4290334296876],[115.707345,35.4338430000001],[115.713531523438,35.4300307441406],[115.72443484375,35.39804221875],[115.797345,35.3938430000001],[115.78931765625,35.3611672187501],[115.807110625,35.333843],[115.791124296875,35.3092897773437],[115.796827421875,35.2838430000001],[115.791221953125,35.258843],[115.793638945313,35.2480690742188],[115.77142703125,35.2397585273438],[115.767345,35.233843],[115.730260039063,35.2505886054688],[115.642379179688,35.2382167792969],[115.627345,35.2400868964844],[115.580845976563,35.2343032050781],[115.552896757813,35.1882900214844],[115.525133085938,35.1660549140626],[115.495904570313,35.1295571113282],[115.440045195313,35.1060195136719],[115.387222929688,35.1125893378907],[115.358394804688,35.0956423164063],[115.337345,35.043843],[115.302843046875,35.0523171210938],[115.247037382813,35.0398061347656],[115.237345,35.0538430000001],[115.24468875,35.073843],[115.231265898438,35.1103993964844],[115.233150664063,35.1338430000001],[115.231925078125,35.1490956855469],[115.25271609375,35.1984706855469],[115.26197390625,35.2753932929688],[115.240499296875,35.3538613105469],[115.19197390625,35.3684706855469],[115.167345,35.423843],[115.226431914063,35.4167299628906],[115.319117460938,35.4933950019532],[115.327345,35.483843],[115.312569609375,35.4416872382813],[115.352535429688,35.4290334296876]]]]}},{"type":"Feature","properties":{"name":"郓城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.727345,35.833843],[115.707345,35.833843],[115.707345,35.843843],[115.707345,35.8538430000001],[115.72062625,35.8471242500001],[115.727345,35.833843]]],[[[115.727345,35.833843],[115.75189578125,35.8228456855469],[115.762594023438,35.8542482734375],[115.787511015625,35.8620107246094],[115.839586210938,35.8448842597657],[115.861158476563,35.8600307441407],[115.877345,35.863843],[115.862628203125,35.8228224921876],[115.892061796875,35.8085622382813],[115.997222929688,35.7701357246094],[116.1058215625,35.6854323554688],[116.127345,35.633843],[116.107808867188,35.6163893867188],[116.12283328125,35.58874534375],[116.1120325,35.5790944648438],[116.117345,35.493843],[116.101519804688,35.4896681953126],[116.083170195313,35.4780178046875],[116.02968875,35.4672951484375],[116.03443484375,35.4432607246094],[116.001519804688,35.4196681953125],[115.975982695313,35.3840358710938],[115.884361601563,35.3598647285156],[115.853170195313,35.3796681953125],[115.811519804688,35.3880178046876],[115.797345,35.3938430000001],[115.72443484375,35.39804221875],[115.713531523438,35.4300307441406],[115.707345,35.4338430000001],[115.701939726563,35.4888051582031],[115.705108671875,35.5282460761719],[115.69185671875,35.5890053535157],[115.705689726563,35.6138027167969],[115.72271609375,35.6284706855469],[115.73197390625,35.6508217597656],[115.700728789063,35.6483107734375],[115.679097929688,35.6734169746094],[115.6827746875,35.7191896796876],[115.66197390625,35.728470685547],[115.647345,35.753843],[115.684898710938,35.75843284375],[115.70170046875,35.7994863105469],[115.727345,35.833843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"登封市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.172535429688,34.5890334296876],[113.184178496094,34.4796327949219],[113.207198515625,34.5044765449219],[113.282928496094,34.4749867988282],[113.312535429688,34.4190334296875],[113.317345,34.4038430000001],[113.31170046875,34.3894863105469],[113.30298953125,34.3581996894531],[113.27170046875,34.3494863105469],[113.250767851563,34.3368593574219],[113.230955839844,34.3397866035156],[113.186058378906,34.3051308417969],[113.167257109375,34.2807741523438],[113.11298953125,34.2681996894531],[113.077345,34.263843],[113.070941191406,34.2721388984376],[113.000826445313,34.3008351875],[112.977345,34.2973647285156],[112.952345,34.301059796875],[112.912345,34.2951491523438],[112.841136503906,34.3056716132813],[112.843990507813,34.3249831367188],[112.806737089844,34.3402309394532],[112.786097441406,34.3371804023438],[112.757345,34.343843],[112.753531523438,34.3500307441407],[112.731158476563,34.3576552558594],[112.720650664063,34.3884877753906],[112.733531523438,34.4276552558594],[112.737345,34.493843],[112.772659941406,34.499536359375],[112.802633085938,34.4819167304688],[112.832345,34.4782216621094],[112.842345,34.4794643378906],[112.911297636719,34.4708888984375],[112.923785429688,34.5286147285157],[112.977345,34.533843],[113.0082434375,34.5211452460937],[113.03502078125,34.5585036445313],[113.092345,34.5698305488282],[113.105303984375,34.5672707343751],[113.133170195313,34.5780178046876],[113.141519804688,34.5896681953125],[113.157345,34.5938430000001],[113.172535429688,34.5890334296876]]]]}},{"type":"Feature","properties":{"name":"二七区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.657345,34.763843],[113.668319121094,34.6970363593751],[113.651485625,34.6691298652344],[113.657345,34.643843],[113.619798613281,34.6413893867188],[113.613607207031,34.6223415351563],[113.600657988281,34.635786359375],[113.594891386719,34.6062966132813],[113.577345,34.603843],[113.570794707031,34.6072927070313],[113.562345,34.6355825019531],[113.529271269531,34.6207228828125],[113.49826296875,34.6447585273438],[113.50502078125,34.65980003125],[113.497345,34.663843],[113.501429472656,34.6997585273438],[113.507345,34.723843],[113.523260527344,34.7197585273438],[113.542345,34.7073305488281],[113.562147246094,34.7202260566406],[113.608819609375,34.7006227851563],[113.621429472656,34.7497585273438],[113.627345,34.763843],[113.657345,34.763843]]]]}},{"type":"Feature","properties":{"name":"巩义市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.167345,34.7538430000001],[113.155152617188,34.7504201484375],[113.163922148438,34.7416506171875],[113.185545683594,34.7614882636719],[113.222345,34.7532387519532],[113.269039335938,34.76370628125],[113.261224394531,34.728843],[113.263499785156,34.718696515625],[113.251190214844,34.678989484375],[113.2556653125,34.6590297675781],[113.223260527344,34.6379274726563],[113.201429472656,34.6297585273438],[113.197345,34.623843],[113.187345,34.623843],[113.187345,34.603843],[113.157345,34.603843],[113.157345,34.5938430000001],[113.141519804688,34.5896681953125],[113.133170195313,34.5780178046876],[113.105303984375,34.5672707343751],[113.092345,34.5698305488282],[113.03502078125,34.5585036445313],[113.0082434375,34.5211452460937],[112.977345,34.533843],[112.972899199219,34.5393959785156],[112.884036894531,34.5505104804688],[112.852899199219,34.5893959785157],[112.841790800781,34.5982900214844],[112.82634890625,34.6870290351563],[112.857074003906,34.7116347480469],[112.892474394531,34.6980275703125],[112.931790800781,34.7222743964844],[112.901441679688,34.7465785957032],[112.902967558594,34.758843],[112.900513945313,34.7785610175781],[112.811790800781,34.7882900214844],[112.807345,34.793843],[112.810704375,34.810483625],[112.817345,34.8238430000001],[112.839298125,34.8146230292969],[112.886395292969,34.8539003730469],[112.927345,34.843843],[112.937503691406,34.8296681953126],[112.963170195313,34.8480178046876],[112.977503691406,34.8680178046875],[113.013170195313,34.8596681953125],[113.048682890625,34.8371218085937],[113.128109160156,34.8529799628907],[113.157345,34.833843],[113.150042753906,34.8041127753907],[113.153465605469,34.7888430000001],[113.151121855469,34.7783913398438],[113.167345,34.7538430000001]]]]}},{"type":"Feature","properties":{"name":"管城回族区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.821429472656,34.7579274726562],[113.837345,34.7538430000001],[113.847349882813,34.7337136054687],[113.823985625,34.687202375],[113.810704375,34.6804836250001],[113.803985625,34.667202375],[113.790704375,34.660483625],[113.787345,34.623843],[113.752415800781,34.6182118964844],[113.727366972656,34.6213283515625],[113.69834109375,34.6575746894532],[113.680284453125,34.6350258613282],[113.657345,34.643843],[113.651485625,34.6691298652344],[113.668319121094,34.6970363593751],[113.657345,34.763843],[113.671429472656,34.7579274726562],[113.703260527344,34.7497585273438],[113.722345,34.7373305488281],[113.758443632813,34.7608388496094],[113.780230742188,34.7559548164062],[113.802345,34.7703554511719],[113.821429472656,34.7579274726562]]]]}},{"type":"Feature","properties":{"name":"惠济区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.643260527344,34.9297585273438],[113.674276152344,34.9057204414063],[113.744224882813,34.9229018378907],[113.775091582031,34.9015895820313],[113.787345,34.883843],[113.796412382813,34.8602516914063],[113.71373171875,34.8705361152344],[113.692899199219,34.8582900214844],[113.633648710938,34.8479787421876],[113.622899199219,34.7982900214844],[113.617345,34.793843],[113.602977324219,34.8062221503907],[113.584464140625,34.8477089667969],[113.570174589844,34.8600209785157],[113.507345,34.853843],[113.491754179688,34.8788222480469],[113.502769804688,34.8985671210938],[113.497345,34.963843],[113.553985625,34.9604836250001],[113.587345,34.9438430000001],[113.591429472656,34.9379274726563],[113.643260527344,34.9297585273438]]]]}},{"type":"Feature","properties":{"name":"金水区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.853079863281,34.8681081367188],[113.833331328125,34.8361989570313],[113.844461699219,34.7715480781251],[113.837345,34.7538430000001],[113.821429472656,34.7579274726562],[113.802345,34.7703554511719],[113.780230742188,34.7559548164062],[113.758443632813,34.7608388496094],[113.722345,34.7373305488281],[113.703260527344,34.7497585273438],[113.671429472656,34.7579274726562],[113.657345,34.763843],[113.627345,34.763843],[113.620704375,34.7772023750001],[113.617345,34.793843],[113.622899199219,34.7982900214844],[113.633648710938,34.8479787421876],[113.692899199219,34.8582900214844],[113.71373171875,34.8705361152344],[113.796412382813,34.8602516914063],[113.787345,34.883843],[113.857345,34.883843],[113.853079863281,34.8681081367188]]]]}},{"type":"Feature","properties":{"name":"上街区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.31312625,34.8085512519531],[113.307345,34.793843],[113.253577910156,34.8154982734375],[113.250223417969,34.8381996894532],[113.310208769531,34.8282949042969],[113.31312625,34.8085512519531]]]]}},{"type":"Feature","properties":{"name":"新密市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.567345,34.413843],[113.563922148438,34.4260353828126],[113.555152617188,34.4172658515625],[113.55970828125,34.3840810371094],[113.513206816406,34.3666811347657],[113.507345,34.343843],[113.454515410156,34.3372426582032],[113.422628203125,34.3494997382813],[113.411846953125,34.3481594062501],[113.402899199219,34.3693959785157],[113.371790800781,34.3782900214844],[113.356832304688,34.3969716621094],[113.317345,34.4038430000001],[113.312535429688,34.4190334296875],[113.282928496094,34.4749867988282],[113.207198515625,34.5044765449219],[113.184178496094,34.4796327949219],[113.172535429688,34.5890334296876],[113.157345,34.5938430000001],[113.157345,34.603843],[113.187345,34.603843],[113.187345,34.623843],[113.197345,34.623843],[113.204620390625,34.6147573066406],[113.322625761719,34.6295009589844],[113.354508085938,34.6172463203125],[113.381890898438,34.6206520820313],[113.396175566406,34.6028151679688],[113.45099734375,34.6259169746094],[113.476624785156,34.6579189277344],[113.497345,34.663843],[113.50502078125,34.65980003125],[113.49826296875,34.6447585273438],[113.529271269531,34.6207228828125],[113.562345,34.6355825019531],[113.570794707031,34.6072927070313],[113.577345,34.603843],[113.580704375,34.587202375],[113.593985625,34.580483625],[113.600704375,34.567202375],[113.648675566406,34.5597560859375],[113.668001738281,34.5354274726563],[113.659713164063,34.5184511542969],[113.678643828125,34.4946181464844],[113.650704375,34.480483625],[113.643985625,34.457202375],[113.610704375,34.440483625],[113.583985625,34.417202375],[113.567345,34.413843]]]]}},{"type":"Feature","properties":{"name":"新郑市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.567345,34.413843],[113.555152617188,34.4172658515625],[113.563922148438,34.4260353828126],[113.567345,34.413843]]],[[[113.567345,34.413843],[113.583985625,34.417202375],[113.610704375,34.440483625],[113.643985625,34.457202375],[113.650704375,34.480483625],[113.678643828125,34.4946181464844],[113.659713164063,34.5184511542969],[113.668001738281,34.5354274726563],[113.648675566406,34.5597560859375],[113.600704375,34.567202375],[113.593985625,34.580483625],[113.580704375,34.587202375],[113.577345,34.603843],[113.594891386719,34.6062966132813],[113.600657988281,34.635786359375],[113.613607207031,34.6223415351563],[113.619798613281,34.6413893867188],[113.657345,34.643843],[113.680284453125,34.6350258613282],[113.69834109375,34.6575746894532],[113.727366972656,34.6213283515625],[113.752415800781,34.6182118964844],[113.787345,34.623843],[113.833079863281,34.5995778632813],[113.841610136719,34.5881081367187],[113.853304472656,34.5794106269532],[113.844207792969,34.5265810371095],[113.891092558594,34.5346535468751],[113.879859648438,34.4694106269532],[113.893079863281,34.4595778632813],[113.897345,34.453843],[113.871785917969,34.4124977851563],[113.877345,34.3338430000001],[113.840804472656,34.3253762031251],[113.795889921875,34.3320131660156],[113.766832304688,34.3144850898438],[113.725689726563,34.3205654121094],[113.692857695313,34.2780287910157],[113.677345,34.2803212714844],[113.654783964844,34.2769875312501],[113.637345,34.283843],[113.623250761719,34.3067189765625],[113.573189726563,34.3237783027344],[113.542345,34.3141713691407],[113.512115507813,34.3235866523438],[113.507345,34.343843],[113.513206816406,34.3666811347657],[113.55970828125,34.3840810371094],[113.567345,34.413843]]]]}},{"type":"Feature","properties":{"name":"中牟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.126475859375,34.9644313789063],[114.201849394531,34.9335829902344],[114.207345,34.913843],[114.201600371094,34.8788771796875],[114.204007597656,34.8625942207032],[114.197345,34.833843],[114.178992949219,34.8271034980469],[114.152345,34.8292446113282],[114.1155090625,34.82628440625],[114.163074980469,34.7687807441406],[114.144046660156,34.7523867011719],[114.13271609375,34.7350612617188],[114.152769804688,34.6991213203125],[114.151942167969,34.688843],[114.153155546875,34.6737514472657],[114.147345,34.603843],[114.132000761719,34.6097414375001],[114.102078886719,34.5604775214844],[114.080941191406,34.4809291816407],[114.032230253906,34.4996535468751],[114.0002746875,34.4808693671875],[114.018131132813,34.4504946113282],[113.986187773438,34.4370351386719],[113.939527617188,34.4503578925782],[113.914508085938,34.4472463203126],[113.897345,34.453843],[113.893079863281,34.4595778632813],[113.879859648438,34.4694106269532],[113.891092558594,34.5346535468751],[113.844207792969,34.5265810371095],[113.853304472656,34.5794106269532],[113.841610136719,34.5881081367187],[113.833079863281,34.5995778632813],[113.787345,34.623843],[113.790704375,34.660483625],[113.803985625,34.667202375],[113.810704375,34.6804836250001],[113.823985625,34.687202375],[113.847349882813,34.7337136054687],[113.837345,34.7538430000001],[113.844461699219,34.7715480781251],[113.833331328125,34.8361989570313],[113.853079863281,34.8681081367188],[113.857345,34.883843],[113.89170046875,34.8994863105469],[113.96298953125,34.9081996894532],[113.990113554688,34.9433412910156],[114.048800078125,34.9520131660157],[114.077345,34.9347951484375],[114.126475859375,34.9644313789063]]]]}},{"type":"Feature","properties":{"name":"中原区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.584464140625,34.8477089667969],[113.602977324219,34.8062221503907],[113.617345,34.793843],[113.620704375,34.7772023750001],[113.627345,34.763843],[113.621429472656,34.7497585273438],[113.608819609375,34.7006227851563],[113.562147246094,34.7202260566406],[113.542345,34.7073305488281],[113.523260527344,34.7197585273438],[113.507345,34.723843],[113.470916777344,34.7285036445313],[113.484383574219,34.7396901679688],[113.453240996094,34.7655580878907],[113.482896757813,34.7784194160157],[113.480677519531,34.8002016425781],[113.451673613281,34.7972450996094],[113.452855253906,34.808843],[113.450816679688,34.8288430000001],[113.476436796875,34.8399550605469],[113.492735625,34.8382936835938],[113.501883574219,34.8493056464844],[113.507345,34.853843],[113.570174589844,34.8600209785157],[113.584464140625,34.8477089667969]]]]}},{"type":"Feature","properties":{"name":"荥阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.167345,34.7538430000001],[113.163922148438,34.7416506171875],[113.155152617188,34.7504201484375],[113.167345,34.7538430000001]]],[[[113.167345,34.7538430000001],[113.151121855469,34.7783913398438],[113.153465605469,34.7888430000001],[113.150042753906,34.8041127753907],[113.157345,34.833843],[113.164080839844,34.8471559882813],[113.210650664063,34.8705495429688],[113.227345,34.9038430000001],[113.255240507813,34.9522255683594],[113.333316679688,34.9459523750001],[113.378563261719,34.9984706855469],[113.458072539063,34.9746059394532],[113.47209109375,34.9583339667969],[113.497345,34.963843],[113.502769804688,34.8985671210938],[113.491754179688,34.8788222480469],[113.507345,34.853843],[113.501883574219,34.8493056464844],[113.492735625,34.8382936835938],[113.476436796875,34.8399550605469],[113.450816679688,34.8288430000001],[113.452855253906,34.808843],[113.451673613281,34.7972450996094],[113.480677519531,34.8002016425781],[113.482896757813,34.7784194160157],[113.453240996094,34.7655580878907],[113.484383574219,34.7396901679688],[113.470916777344,34.7285036445313],[113.507345,34.723843],[113.501429472656,34.6997585273438],[113.497345,34.663843],[113.476624785156,34.6579189277344],[113.45099734375,34.6259169746094],[113.396175566406,34.6028151679688],[113.381890898438,34.6206520820313],[113.354508085938,34.6172463203125],[113.322625761719,34.6295009589844],[113.204620390625,34.6147573066406],[113.197345,34.623843],[113.201429472656,34.6297585273438],[113.223260527344,34.6379274726563],[113.2556653125,34.6590297675781],[113.251190214844,34.678989484375],[113.263499785156,34.718696515625],[113.261224394531,34.728843],[113.269039335938,34.76370628125],[113.222345,34.7532387519532],[113.185545683594,34.7614882636719],[113.167345,34.7538430000001]],[[113.307345,34.793843],[113.31312625,34.8085512519531],[113.310208769531,34.8282949042969],[113.250223417969,34.8381996894532],[113.253577910156,34.8154982734375],[113.307345,34.793843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鼓楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.357345,34.7838430000001],[114.327345,34.7838430000001],[114.303861113281,34.7893740058594],[114.327345,34.803843],[114.340704375,34.797202375],[114.357345,34.793843],[114.357345,34.7838430000001]]]]}},{"type":"Feature","properties":{"name":"金明区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.402762480469,34.9149648261719],[114.417345,34.893843],[114.412899199219,34.8882900214844],[114.401666289063,34.8792958808594],[114.403587675781,34.8638430000001],[114.401090117188,34.8437514472656],[114.44263796875,34.8597206855469],[114.451793242188,34.8482900214844],[114.491793242188,34.8239943671876],[114.481363554688,34.8055788398438],[114.409244414063,34.7617751289063],[114.441793242188,34.7172206855469],[114.424041777344,34.6993959785157],[114.36732546875,34.7150368476563],[114.342899199219,34.7293959785156],[114.272862578125,34.7445497871094],[114.26156375,34.7840590644532],[114.20713015625,34.7996230292969],[114.197345,34.833843],[114.204007597656,34.8625942207032],[114.201600371094,34.8788771796875],[114.207345,34.913843],[114.220704375,34.907202375],[114.237345,34.9038430000001],[114.263001738281,34.8930678535157],[114.284595976563,34.9243434882813],[114.36154421875,34.9054433417969],[114.377069121094,34.9279274726563],[114.402762480469,34.9149648261719]],[[114.320736113281,34.7681056953125],[114.363084746094,34.7572377753906],[114.367345,34.773843],[114.393260527344,34.7779274726563],[114.401429472656,34.8025295234375],[114.357345,34.813843],[114.337415800781,34.8237490058594],[114.327345,34.803843],[114.303861113281,34.7893740058594],[114.327345,34.7838430000001],[114.320736113281,34.7681056953125]]]]}},{"type":"Feature","properties":{"name":"开封县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.687345,34.9038430000001],[114.69142703125,34.8779274726563],[114.73142703125,34.8503102851563],[114.71326296875,34.7779274726563],[114.70142703125,34.7597585273438],[114.697345,34.743843],[114.691832304688,34.7229409003906],[114.633697539063,34.7076039863281],[114.649010039063,34.6301174140625],[114.628995390625,34.602192609375],[114.611519804688,34.5896681953125],[114.607345,34.573843],[114.5094934375,34.5807595039063],[114.472345,34.5785451484375],[114.447076445313,34.5800514960938],[114.425777617188,34.5336403632813],[114.368912382813,34.5540456367188],[114.352345,34.5179494453125],[114.323568144531,34.5196645332031],[114.307345,34.5138430000001],[114.30298953125,34.5194863105469],[114.29170046875,34.5281996894532],[114.279657011719,34.5576296210938],[114.225418730469,34.5727333808594],[114.147345,34.603843],[114.153155546875,34.6737514472657],[114.151942167969,34.688843],[114.152769804688,34.6991213203125],[114.13271609375,34.7350612617188],[114.144046660156,34.7523867011719],[114.163074980469,34.7687807441406],[114.1155090625,34.82628440625],[114.152345,34.8292446113282],[114.178992949219,34.8271034980469],[114.197345,34.833843],[114.20713015625,34.7996230292969],[114.26156375,34.7840590644532],[114.272862578125,34.7445497871094],[114.342899199219,34.7293959785156],[114.36732546875,34.7150368476563],[114.424041777344,34.6993959785157],[114.441793242188,34.7172206855469],[114.409244414063,34.7617751289063],[114.481363554688,34.8055788398438],[114.491793242188,34.8239943671876],[114.451793242188,34.8482900214844],[114.44263796875,34.8597206855469],[114.401090117188,34.8437514472656],[114.403587675781,34.8638430000001],[114.401666289063,34.8792958808594],[114.412899199219,34.8882900214844],[114.417345,34.893843],[114.44326296875,34.8979274726563],[114.4791028125,34.9257057929688],[114.534698515625,34.9023537421875],[114.573912382813,34.92788596875],[114.62142703125,34.9079274726562],[114.687345,34.9038430000001]]]]}},{"type":"Feature","properties":{"name":"兰考县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.873428984375,35.0215163398438],[114.880885039063,34.9973830390625],[114.903804960938,34.9903029609375],[114.914674101563,34.9704763007813],[114.950250273438,34.9973830390625],[115.003804960938,34.9903029609375],[115.013604765625,34.9724196601563],[115.0854309375,35.0073830390625],[115.123804960938,35.0003029609375],[115.127345,34.993843],[115.13170046875,34.9881996894532],[115.14298953125,34.9794863105469],[115.156549101563,34.9619155097657],[115.187345,34.9573647285157],[115.221568632813,34.9624221015625],[115.195660429688,34.9194741035157],[115.244605742188,34.909145734375],[115.23584109375,34.8498305488281],[115.257345,34.843843],[115.251495390625,34.8094081855469],[115.18170046875,34.7994863105469],[115.162335234375,34.7878041816406],[115.042379179688,34.7680995917969],[115.009879179688,34.7729018378907],[114.96170046875,34.7594863105469],[114.930064726563,34.7470497871094],[114.86990359375,34.77069846875],[114.852345,34.7681044746094],[114.83599734375,34.7705202460938],[114.821314726563,34.7591872382813],[114.827345,34.743843],[114.810704375,34.747202375],[114.772345,34.7662697578125],[114.733985625,34.747202375],[114.697345,34.743843],[114.70142703125,34.7597585273438],[114.71326296875,34.7779274726563],[114.73142703125,34.8503102851563],[114.69142703125,34.8779274726563],[114.687345,34.9038430000001],[114.733502226563,34.8939809394532],[114.782061796875,34.9056130195313],[114.742760039063,34.9618788886719],[114.772628203125,34.9885622382813],[114.777345,34.993843],[114.80142703125,35.0097585273438],[114.827345,35.0138430000001],[114.833565703125,35.0024977851563],[114.873428984375,35.0215163398438]]]]}},{"type":"Feature","properties":{"name":"龙亭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.357345,34.813843],[114.357345,34.793843],[114.340704375,34.797202375],[114.327345,34.803843],[114.337415800781,34.8237490058594],[114.357345,34.813843]]]]}},{"type":"Feature","properties":{"name":"顺河回族区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.401429472656,34.8025295234375],[114.393260527344,34.7779274726563],[114.367345,34.773843],[114.367345,34.7838430000001],[114.357345,34.7838430000001],[114.357345,34.793843],[114.357345,34.813843],[114.401429472656,34.8025295234375]]]]}},{"type":"Feature","properties":{"name":"通许县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.5094934375,34.5807595039063],[114.607345,34.573843],[114.614483671875,34.5683315253907],[114.605382109375,34.5067226386719],[114.634381132813,34.4676113105469],[114.630128203125,34.4388430000001],[114.636202421875,34.3977516914063],[114.6216028125,34.3088771796875],[114.623082304688,34.298843],[114.62158328125,34.2887001777344],[114.627345,34.263843],[114.607345,34.263843],[114.601519804688,34.2680178046875],[114.533253203125,34.2816481757813],[114.513170195313,34.3096681953125],[114.491519804688,34.3180178046876],[114.473170195313,34.3296681953125],[114.437506132813,34.3380178046875],[114.423170195313,34.3180178046876],[114.417345,34.313843],[114.411519804688,34.3180178046876],[114.403170195313,34.3396681953126],[114.351519804688,34.3480178046875],[114.343170195313,34.4096681953125],[114.324920683594,34.4384133125],[114.311519804688,34.4480178046875],[114.301280546875,34.4990871406251],[114.307345,34.5138430000001],[114.323568144531,34.5196645332031],[114.352345,34.5179494453125],[114.368912382813,34.5540456367188],[114.425777617188,34.5336403632813],[114.447076445313,34.5800514960938],[114.472345,34.5785451484375],[114.5094934375,34.5807595039063]]]]}},{"type":"Feature","properties":{"name":"尉氏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.301280546875,34.4990871406251],[114.311519804688,34.4480178046875],[114.324920683594,34.4384133125],[114.343170195313,34.4096681953125],[114.351519804688,34.3480178046875],[114.403170195313,34.3396681953126],[114.411519804688,34.3180178046876],[114.417345,34.313843],[114.440553007813,34.2787233710938],[114.380716582031,34.2397585273438],[114.343306914063,34.2501930976563],[114.300716582031,34.2779274726563],[114.263421660156,34.2675258613281],[114.257345,34.243843],[114.20170046875,34.2394863105469],[114.191578398438,34.2147548652344],[114.127345,34.203843],[114.111610136719,34.2081081367187],[114.084835234375,34.2535756660157],[114.007454863281,34.2402541328126],[113.988326445313,34.2659682441406],[113.933897734375,34.3034145332031],[113.897669707031,34.2971779609375],[113.877345,34.3338430000001],[113.871785917969,34.4124977851563],[113.897345,34.453843],[113.914508085938,34.4472463203126],[113.939527617188,34.4503578925782],[113.986187773438,34.4370351386719],[114.018131132813,34.4504946113282],[114.0002746875,34.4808693671875],[114.032230253906,34.4996535468751],[114.080941191406,34.4809291816407],[114.102078886719,34.5604775214844],[114.132000761719,34.6097414375001],[114.147345,34.603843],[114.225418730469,34.5727333808594],[114.279657011719,34.5576296210938],[114.29170046875,34.5281996894532],[114.30298953125,34.5194863105469],[114.307345,34.5138430000001],[114.301280546875,34.4990871406251]]]]}},{"type":"Feature","properties":{"name":"禹王台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.367345,34.773843],[114.363084746094,34.7572377753906],[114.320736113281,34.7681056953125],[114.327345,34.7838430000001],[114.357345,34.7838430000001],[114.367345,34.7838430000001],[114.367345,34.773843]]]]}},{"type":"Feature","properties":{"name":"杞县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.837623320313,34.7127236152344],[114.865889921875,34.6956728339844],[114.907086210938,34.7017604804688],[114.931226835938,34.6831264472656],[114.8915246875,34.6593825507813],[114.895299101563,34.6338430000001],[114.891549101563,34.608452375],[114.90298953125,34.5894863105469],[114.907345,34.573843],[114.914381132813,34.5302040839844],[114.911099882813,34.503843],[114.913931914063,34.4810671210938],[114.853663359375,34.4444606757813],[114.850611601563,34.4199062324219],[114.876514921875,34.3844435859375],[114.852896757813,34.3442665839844],[114.875401640625,34.3014138007813],[114.897345,34.283843],[114.885201445313,34.266899640625],[114.835289335938,34.2820619941407],[114.813170195313,34.2680178046875],[114.768214140625,34.2590053535157],[114.749771757813,34.2332741523438],[114.721724882813,34.2277321601563],[114.713170195313,34.2396681953125],[114.660460234375,34.2502358222657],[114.627345,34.263843],[114.62158328125,34.2887001777344],[114.623082304688,34.298843],[114.6216028125,34.3088771796875],[114.636202421875,34.3977516914063],[114.630128203125,34.4388430000001],[114.634381132813,34.4676113105469],[114.605382109375,34.5067226386719],[114.614483671875,34.5683315253907],[114.607345,34.573843],[114.611519804688,34.5896681953125],[114.628995390625,34.602192609375],[114.649010039063,34.6301174140625],[114.633697539063,34.7076039863281],[114.691832304688,34.7229409003906],[114.697345,34.743843],[114.733985625,34.747202375],[114.772345,34.7662697578125],[114.810704375,34.747202375],[114.827345,34.743843],[114.85369265625,34.7393666816406],[114.837623320313,34.7127236152344]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"吉利区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.637345,34.893843],[112.637345,34.9038430000001],[112.650152617188,34.8988430000001],[112.637345,34.893843]]],[[[112.517345,34.9338430000001],[112.493924589844,34.9246352363282],[112.506263457031,34.9481996894532],[112.517345,34.9338430000001]]],[[[112.637345,34.9038430000001],[112.624537382813,34.8988430000001],[112.637345,34.893843],[112.637345,34.853843],[112.581429472656,34.8579274726563],[112.573260527344,34.8697585273438],[112.551429472656,34.8779274726563],[112.527345,34.893843],[112.519896269531,34.9088283515626],[112.524793730469,34.9188576484375],[112.517345,34.9338430000001],[112.533985625,34.937202375],[112.567345,34.953843],[112.580704375,34.9272023750001],[112.633985625,34.9204836250001],[112.637345,34.9038430000001]]]]}},{"type":"Feature","properties":{"name":"洛宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.819859648438,34.6138210273438],[111.82490359375,34.5732802558594],[111.812899199219,34.5582900214844],[111.775936308594,34.5427150703125],[111.771102324219,34.503843],[111.773607207031,34.4837026191407],[111.762899199219,34.4582900214844],[111.744857207031,34.4438430000001],[111.774324980469,34.4202443671876],[111.744837675781,34.3798744941406],[111.782899199219,34.3493959785156],[111.791790800781,34.3382900214844],[111.811334257813,34.3226406074219],[111.785870390625,34.2793202949219],[111.817345,34.273843],[111.795697050781,34.2424867988282],[111.761673613281,34.2501137519532],[111.753260527344,34.2379274726563],[111.741429472656,34.2297585273437],[111.733260527344,34.2179274726562],[111.712393828125,34.2035207343751],[111.707345,34.183843],[111.661790800781,34.1593959785157],[111.651441679688,34.146469953125],[111.582127714844,34.1595412421876],[111.523702421875,34.1343202949219],[111.482345,34.1394643378906],[111.446261015625,34.1349770332031],[111.41955203125,34.1016237617188],[111.357345,34.0938430000001],[111.352899199219,34.1093959785156],[111.309381132813,34.1188112617188],[111.292899199219,34.1393959785157],[111.279251738281,34.1503237128907],[111.261986113281,34.1481764960938],[111.212713652344,34.1771401191406],[111.196776152344,34.1970400214844],[111.161007109375,34.2187673164063],[111.172899199219,34.2282900214844],[111.181790800781,34.2893959785157],[111.19334109375,34.2986440253906],[111.177366972656,34.3258180976563],[111.161790800781,34.3382900214844],[111.152899199219,34.3493959785156],[111.141790800781,34.3582900214844],[111.137345,34.3638430000001],[111.141429472656,34.3897585273438],[111.181219511719,34.3999697089844],[111.187345,34.423843],[111.203260527344,34.4279274726563],[111.212074003906,34.4622670722657],[111.258992949219,34.4517482734375],[111.289249296875,34.4955678535157],[111.307037382813,34.4698061347656],[111.352345,34.4799636054688],[111.380103789063,34.4737404609375],[111.463260527344,34.5179274726563],[111.50181765625,34.5500820136719],[111.512345,34.5477223945313],[111.522345,34.5499636054688],[111.532791777344,34.547622296875],[111.554459257813,34.5617311835938],[111.573016386719,34.5575722480469],[111.58509890625,34.57507346875],[111.615538359375,34.5552529121094],[111.687747832031,34.5328688789063],[111.665235625,34.5674404121094],[111.693260527344,34.5779274726563],[111.701429472656,34.5897585273438],[111.727345,34.603843],[111.751317167969,34.5919277167969],[111.761353789063,34.6117690253906],[111.773336210938,34.6059169746094],[111.78406375,34.6271242500001],[111.797345,34.6338430000001],[111.801790800781,34.6282900214844],[111.819859648438,34.6138210273438]]]]}},{"type":"Feature","properties":{"name":"孟津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.637345,34.853843],[112.654212675781,34.8475051093751],[112.674823027344,34.84960471875],[112.738638945313,34.8130568671876],[112.80545046875,34.8381618476563],[112.817345,34.8238430000001],[112.810704375,34.810483625],[112.807345,34.793843],[112.79170046875,34.7894863105469],[112.773048125,34.7653224921875],[112.71740359375,34.7988881660157],[112.648785429688,34.8081996894531],[112.663294707031,34.7584352851563],[112.624761992188,34.7286928535156],[112.607345,34.723843],[112.603260527344,34.7297585273438],[112.555064726563,34.7421266914062],[112.532337675781,34.7273268867188],[112.507345,34.743843],[112.490704375,34.740483625],[112.477345,34.733843],[112.471429472656,34.7379274726563],[112.392615996094,34.7572853828125],[112.387345,34.723843],[112.362386503906,34.7299733710938],[112.325987578125,34.7218129707032],[112.297345,34.733843],[112.29271609375,34.7492153144532],[112.27197390625,34.7784706855469],[112.26271609375,34.7947939277344],[112.293326445313,34.7777162910157],[112.318023710938,34.7797011542969],[112.30197390625,34.8084706855469],[112.291107207031,34.8445583320313],[112.211549101563,34.88870628125],[112.257345,34.9438430000001],[112.268524199219,34.9578017402344],[112.332899199219,34.9393959785157],[112.361790800781,34.9282900214844],[112.462100859375,34.9157436347657],[112.491790800781,34.8982900214844],[112.527345,34.893843],[112.551429472656,34.8779274726563],[112.573260527344,34.8697585273438],[112.581429472656,34.8579274726563],[112.637345,34.853843]]]]}},{"type":"Feature","properties":{"name":"汝阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.607345,34.3338430000001],[112.598450957031,34.3227370429688],[112.576239042969,34.3049489570313],[112.562899199219,34.2882900214844],[112.54361453125,34.27284690625],[112.573407011719,34.2489882636719],[112.551282988281,34.2186977363281],[112.580365019531,34.1954091621094],[112.591790800781,34.1682900214844],[112.621170683594,34.1447634101563],[112.592899199219,34.0682900214845],[112.549859648438,34.0338246894532],[112.553023710938,34.0083901191406],[112.54146609375,33.99913596875],[112.547345,33.9838430000001],[112.542244902344,33.9789430976563],[112.522445097656,33.9487429023438],[112.483043242188,33.9229103828126],[112.536649199219,33.8969033027344],[112.521917753906,33.8683071113281],[112.462244902344,33.8489430976563],[112.422445097656,33.8187429023438],[112.40166140625,33.8089430976562],[112.381671171875,33.8297475410157],[112.311243925781,33.8283107734375],[112.292396269531,33.8086916328125],[112.277345,33.813843],[112.270985136719,33.8217836738282],[112.242345,33.8182216621095],[112.232345,33.8194643378907],[112.214935332031,33.8172988105469],[112.201261015625,33.8651235175782],[112.212562285156,33.9559902167969],[112.252899199219,33.9882900214844],[112.273975859375,34.022993390625],[112.317345,34.0175991035157],[112.3476184375,34.0213649726563],[112.331678496094,34.0484828925782],[112.333023710938,34.0592958808594],[112.321790800781,34.0682900214845],[112.298450957031,34.1067201972657],[112.318450957031,34.1227370429688],[112.331790800781,34.1393959785157],[112.343023710938,34.1483901191407],[112.338116484375,34.1878469062501],[112.362899199219,34.1982900214844],[112.367345,34.2138430000001],[112.371832304688,34.2196572089844],[112.386737089844,34.2174550605469],[112.413372832031,34.2283571601563],[112.40298953125,34.2894863105469],[112.385494414063,34.3184889960938],[112.40490359375,34.3436367011719],[112.487738066406,34.3313967109375],[112.505264921875,34.3541017890625],[112.545484648438,34.3600453925781],[112.58170046875,34.3381996894532],[112.607345,34.3338430000001]]]]}},{"type":"Feature","properties":{"name":"新安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.204176054688,34.9656740546875],[112.231429472656,34.9479274726563],[112.257345,34.9438430000001],[112.211549101563,34.88870628125],[112.291107207031,34.8445583320313],[112.30197390625,34.8084706855469],[112.318023710938,34.7797011542969],[112.293326445313,34.7777162910157],[112.26271609375,34.7947939277344],[112.27197390625,34.7784706855469],[112.29271609375,34.7492153144532],[112.297345,34.733843],[112.283392363281,34.723843],[112.303170195313,34.7096681953125],[112.307345,34.683843],[112.303985625,34.667202375],[112.287345,34.6338430000001],[112.277345,34.6338430000001],[112.267345,34.6338430000001],[112.267345,34.623843],[112.223299589844,34.6346608710938],[112.162274199219,34.6209804511719],[112.151673613281,34.605630109375],[112.125936308594,34.6114003730469],[112.113260527344,34.6297585273438],[112.094525175781,34.6426943183594],[112.071529570313,34.6375392890625],[112.063260527344,34.6697585273438],[112.046976347656,34.6810024238282],[112.032066679688,34.6776601386719],[112.003260527344,34.6897585273438],[111.987345,34.693843],[111.987345,34.7138430000001],[112.004383574219,34.7279958320313],[111.991441679688,34.7387477851563],[112.028023710938,34.7849721503907],[112.011795683594,34.798452375],[112.012889433594,34.8091909003906],[111.989107695313,34.8422365546875],[111.951883574219,34.8583803535157],[111.922806425781,34.8793056464844],[111.882718535156,34.8966909003906],[111.872806425781,34.9166957832031],[111.922806425781,34.9383803535157],[111.931954375,34.9493923164063],[111.945125761719,34.9480495429688],[111.981883574219,34.9617678046875],[111.955306425781,34.983843],[111.974383574219,34.9996901679688],[111.929288359375,35.0371498847657],[111.942806425781,35.0483803535157],[111.957345,35.073843],[112.017008085938,35.0588149238282],[112.027345,35.043843],[112.031429472656,35.0379274726563],[112.095389433594,35.0294777656251],[112.158167753906,35.0133669257813],[112.171429472656,34.9779274726563],[112.204176054688,34.9656740546875]]]]}},{"type":"Feature","properties":{"name":"伊川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.515936308594,34.5214003730469],[112.547345,34.5143593574219],[112.578294707031,34.5212978339844],[112.623260527344,34.5097585273438],[112.65408328125,34.4858705878906],[112.687345,34.4933266425781],[112.719144316406,34.4861977363281],[112.737345,34.493843],[112.733531523438,34.4276552558594],[112.720650664063,34.3884877753906],[112.731158476563,34.3576552558594],[112.753531523438,34.3500307441407],[112.757345,34.343843],[112.751749296875,34.3368532539063],[112.654610625,34.324770734375],[112.6379309375,34.3455995917969],[112.607345,34.3338430000001],[112.58170046875,34.3381996894532],[112.545484648438,34.3600453925781],[112.505264921875,34.3541017890625],[112.487738066406,34.3313967109375],[112.40490359375,34.3436367011719],[112.385494414063,34.3184889960938],[112.40298953125,34.2894863105469],[112.413372832031,34.2283571601563],[112.386737089844,34.2174550605469],[112.371832304688,34.2196572089844],[112.367345,34.2138430000001],[112.332899199219,34.2293959785156],[112.263084746094,34.2395571113281],[112.25193484375,34.2381703925782],[112.232899199219,34.2542665839844],[112.274136992188,34.2872890449219],[112.260504179688,34.3104799628907],[112.205516386719,34.3036403632813],[112.197345,34.313843],[112.211790800781,34.3693959785157],[112.237869902344,34.3803847480469],[112.251790800781,34.4022743964844],[112.223905058594,34.4246059394531],[112.293797636719,34.4670571113281],[112.278526640625,34.506782453125],[112.302159453125,34.5257070136719],[112.373424101563,34.5168434882813],[112.411790800781,34.5393959785156],[112.432899199219,34.5482900214844],[112.437345,34.5538430000001],[112.450704375,34.5472023750001],[112.497345,34.543843],[112.503260527344,34.5397585273438],[112.515936308594,34.5214003730469]]]]}},{"type":"Feature","properties":{"name":"宜阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.267345,34.623843],[112.267345,34.6338430000001],[112.277345,34.6338430000001],[112.277345,34.623843],[112.267345,34.623843]]],[[[112.267345,34.623843],[112.260860625,34.5719411445313],[112.280792265625,34.5470510078126],[112.342369414063,34.5832485175781],[112.407906523438,34.5914003730469],[112.423023710938,34.5792958808594],[112.421441679688,34.5665785957032],[112.437345,34.5538430000001],[112.432899199219,34.5482900214844],[112.411790800781,34.5393959785156],[112.373424101563,34.5168434882813],[112.302159453125,34.5257070136719],[112.278526640625,34.506782453125],[112.293797636719,34.4670571113281],[112.223905058594,34.4246059394531],[112.251790800781,34.4022743964844],[112.237869902344,34.3803847480469],[112.211790800781,34.3693959785157],[112.197345,34.313843],[112.147357207031,34.3200881171876],[112.127345,34.3175991035157],[112.112345,34.3194643378907],[112.067772246094,34.3139211250001],[112.031282988281,34.3405763984375],[112.001116972656,34.3368239570313],[111.934049101563,34.3110439277344],[111.887122832031,34.2767678046875],[111.842135039063,34.289614484375],[111.817345,34.273843],[111.785870390625,34.2793202949219],[111.811334257813,34.3226406074219],[111.791790800781,34.3382900214844],[111.782899199219,34.3493959785156],[111.744837675781,34.3798744941406],[111.774324980469,34.4202443671876],[111.744857207031,34.4438430000001],[111.762899199219,34.4582900214844],[111.773607207031,34.4837026191407],[111.771102324219,34.503843],[111.775936308594,34.5427150703125],[111.812899199219,34.5582900214844],[111.82490359375,34.5732802558594],[111.819859648438,34.6138210273438],[111.801790800781,34.6282900214844],[111.797345,34.6338430000001],[111.813260527344,34.6379274726563],[111.821429472656,34.6497585273437],[111.842720976563,34.6579274726563],[111.881429472656,34.6279274726563],[111.903260527344,34.6197585273438],[111.922764921875,34.6070583320313],[111.941429472656,34.6397585273438],[111.965806914063,34.6488796210937],[111.977345,34.693843],[111.987345,34.693843],[112.003260527344,34.6897585273438],[112.032066679688,34.6776601386719],[112.046976347656,34.6810024238282],[112.063260527344,34.6697585273438],[112.071529570313,34.6375392890625],[112.094525175781,34.6426943183594],[112.113260527344,34.6297585273438],[112.125936308594,34.6114003730469],[112.151673613281,34.605630109375],[112.162274199219,34.6209804511719],[112.223299589844,34.6346608710938],[112.267345,34.623843]]]]}},{"type":"Feature","properties":{"name":"偃师市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.71740359375,34.7988881660157],[112.773048125,34.7653224921875],[112.79170046875,34.7894863105469],[112.807345,34.793843],[112.811790800781,34.7882900214844],[112.900513945313,34.7785610175781],[112.902967558594,34.758843],[112.901441679688,34.7465785957032],[112.931790800781,34.7222743964844],[112.892474394531,34.6980275703125],[112.857074003906,34.7116347480469],[112.82634890625,34.6870290351563],[112.841790800781,34.5982900214844],[112.852899199219,34.5893959785157],[112.884036894531,34.5505104804688],[112.972899199219,34.5393959785156],[112.977345,34.533843],[112.923785429688,34.5286147285157],[112.911297636719,34.4708888984375],[112.842345,34.4794643378906],[112.832345,34.4782216621094],[112.802633085938,34.4819167304688],[112.772659941406,34.499536359375],[112.737345,34.493843],[112.719144316406,34.4861977363281],[112.687345,34.4933266425781],[112.65408328125,34.4858705878906],[112.623260527344,34.5097585273438],[112.578294707031,34.5212978339844],[112.547345,34.5143593574219],[112.515936308594,34.5214003730469],[112.503260527344,34.5397585273438],[112.497345,34.543843],[112.503260527344,34.5679274726563],[112.511429472656,34.6197585273438],[112.575589628906,34.6422487617187],[112.558031035156,34.6988869453125],[112.597022734375,34.7088930488282],[112.607345,34.723843],[112.624761992188,34.7286928535156],[112.663294707031,34.7584352851563],[112.648785429688,34.8081996894531],[112.71740359375,34.7988881660157]]]]}},{"type":"Feature","properties":{"name":"嵩县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.031282988281,34.3405763984375],[112.067772246094,34.3139211250001],[112.112345,34.3194643378907],[112.127345,34.3175991035157],[112.147357207031,34.3200881171876],[112.197345,34.313843],[112.205516386719,34.3036403632813],[112.260504179688,34.3104799628907],[112.274136992188,34.2872890449219],[112.232899199219,34.2542665839844],[112.25193484375,34.2381703925782],[112.263084746094,34.2395571113281],[112.332899199219,34.2293959785156],[112.367345,34.2138430000001],[112.362899199219,34.1982900214844],[112.338116484375,34.1878469062501],[112.343023710938,34.1483901191407],[112.331790800781,34.1393959785157],[112.318450957031,34.1227370429688],[112.298450957031,34.1067201972657],[112.321790800781,34.0682900214845],[112.333023710938,34.0592958808594],[112.331678496094,34.0484828925782],[112.3476184375,34.0213649726563],[112.317345,34.0175991035157],[112.273975859375,34.022993390625],[112.252899199219,33.9882900214844],[112.212562285156,33.9559902167969],[112.201261015625,33.8651235175782],[112.214935332031,33.8172988105469],[112.232345,33.8194643378907],[112.242345,33.8182216621095],[112.270985136719,33.8217836738282],[112.277345,33.813843],[112.263714628906,33.7874745917969],[112.250125761719,33.7797280097657],[112.260543242188,33.7520925117188],[112.247345,33.7238430000001],[112.232496367188,33.7186391425782],[112.212523222656,33.7194301582032],[112.202535429688,33.7086525703125],[112.191065703125,33.6990334296875],[112.169991484375,33.7217800117188],[112.131190214844,33.7081813789063],[112.109329863281,33.6618581367188],[112.069757109375,33.6431825996094],[112.088367949219,33.6080092597657],[112.062345,33.6090407539063],[112.052181425781,33.608637921875],[112.015079375,33.6282704902344],[112.002374296875,33.5881423164063],[111.922154570313,33.5690334296875],[111.907345,33.5638430000001],[111.900560332031,33.5863747382813],[111.827345,33.593843],[111.817025175781,33.5997280097656],[111.830887480469,33.6365041328125],[111.797345,33.653843],[111.806239042969,33.6649489570313],[111.828450957031,33.6827370429688],[111.858365507813,33.7200942207032],[111.837352324219,33.7558412910157],[111.852899199219,33.7682900214844],[111.863704863281,33.7817836738282],[111.961033964844,33.7696767402344],[111.974547148438,33.8321291328125],[112.019657011719,33.8511379218751],[112.031790800781,33.8779201484375],[111.956431914063,33.9236928535156],[111.900030546875,33.9474599433594],[111.831998320313,33.9280324531251],[111.821890898438,33.9406520820313],[111.790213652344,33.9367116523438],[111.802899199219,33.9582900214844],[111.811790800781,33.9822743964844],[111.791666289063,33.9983901191406],[111.792967558594,34.008843],[111.787742949219,34.0508339667969],[111.741790800781,34.1082900214844],[111.72400515625,34.1705019355469],[111.707345,34.183843],[111.712393828125,34.2035207343751],[111.733260527344,34.2179274726562],[111.741429472656,34.2297585273437],[111.753260527344,34.2379274726563],[111.761673613281,34.2501137519532],[111.795697050781,34.2424867988282],[111.817345,34.273843],[111.842135039063,34.289614484375],[111.887122832031,34.2767678046875],[111.934049101563,34.3110439277344],[112.001116972656,34.3368239570313],[112.031282988281,34.3405763984375]]]]}},{"type":"Feature","properties":{"name":"栾川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.72400515625,34.1705019355469],[111.741790800781,34.1082900214844],[111.787742949219,34.0508339667969],[111.792967558594,34.008843],[111.791666289063,33.9983901191406],[111.811790800781,33.9822743964844],[111.802899199219,33.9582900214844],[111.790213652344,33.9367116523438],[111.821890898438,33.9406520820313],[111.831998320313,33.9280324531251],[111.900030546875,33.9474599433594],[111.956431914063,33.9236928535156],[112.031790800781,33.8779201484375],[112.019657011719,33.8511379218751],[111.974547148438,33.8321291328125],[111.961033964844,33.7696767402344],[111.863704863281,33.7817836738282],[111.852899199219,33.7682900214844],[111.837352324219,33.7558412910157],[111.858365507813,33.7200942207032],[111.828450957031,33.6827370429688],[111.806239042969,33.6649489570313],[111.797345,33.653843],[111.749241972656,33.67556175],[111.661790800781,33.6882900214844],[111.639146757813,33.7165688300782],[111.5389075,33.7340126777344],[111.481497832031,33.7268715644531],[111.400179472656,33.7581288886719],[111.333917265625,33.7696608710938],[111.314508085938,33.7672463203126],[111.262042265625,33.7874123359376],[111.257345,33.803843],[111.25271609375,33.8192153144531],[111.201561308594,33.8890322089844],[111.223551054688,33.898843],[111.221942167969,33.918843],[111.223096953125,33.9332021308594],[111.292020292969,33.9276638007813],[111.345120878906,33.9892971015625],[111.339881621094,34.0545034003906],[111.357345,34.0938430000001],[111.41955203125,34.1016237617188],[111.446261015625,34.1349770332031],[111.482345,34.1394643378906],[111.523702421875,34.1343202949219],[111.582127714844,34.1595412421876],[111.651441679688,34.146469953125],[111.661790800781,34.1593959785157],[111.707345,34.183843],[111.72400515625,34.1705019355469]]]]}},{"type":"Feature","properties":{"name":"洛龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.507345,34.743843],[112.532337675781,34.7273268867188],[112.555064726563,34.7421266914062],[112.603260527344,34.7297585273438],[112.607345,34.723843],[112.597022734375,34.7088930488282],[112.558031035156,34.6988869453125],[112.575589628906,34.6422487617187],[112.511429472656,34.6197585273438],[112.503260527344,34.5679274726563],[112.497345,34.543843],[112.450704375,34.5472023750001],[112.437345,34.5538430000001],[112.421441679688,34.5665785957032],[112.423023710938,34.5792958808594],[112.407906523438,34.5914003730469],[112.342369414063,34.5832485175781],[112.280792265625,34.5470510078126],[112.260860625,34.5719411445313],[112.267345,34.623843],[112.277345,34.623843],[112.277345,34.6338430000001],[112.287345,34.6338430000001],[112.349080839844,34.630180890625],[112.360704375,34.607202375],[112.395601835938,34.600483625],[112.417345,34.643843],[112.45060671875,34.6605226875],[112.457345,34.6738430000001],[112.487345,34.6738430000001],[112.539471464844,34.6826979804688],[112.55170046875,34.7018276191406],[112.499263945313,34.7232888007812],[112.507345,34.743843]]]]}},{"type":"Feature","properties":{"name":"瀍河回族区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.539471464844,34.6826979804688],[112.487345,34.6738430000001],[112.471532011719,34.6984609199219],[112.477345,34.733843],[112.490704375,34.740483625],[112.507345,34.743843],[112.499263945313,34.7232888007812],[112.55170046875,34.7018276191406],[112.539471464844,34.6826979804688]]]]}},{"type":"Feature","properties":{"name":"老城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.477345,34.733843],[112.471532011719,34.6984609199219],[112.487345,34.6738430000001],[112.457345,34.6738430000001],[112.436839628906,34.7035439277344],[112.397345,34.693843],[112.393985625,34.710483625],[112.387345,34.723843],[112.392615996094,34.7572853828125],[112.471429472656,34.7379274726563],[112.477345,34.733843]]]]}},{"type":"Feature","properties":{"name":"西工区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.397345,34.693843],[112.436839628906,34.7035439277344],[112.457345,34.6738430000001],[112.45060671875,34.6605226875],[112.417345,34.643843],[112.411160917969,34.6585646796875],[112.413568144531,34.6692946601563],[112.397345,34.693843]]],[[[112.397345,34.693843],[112.382623320313,34.6876601386719],[112.367345,34.6910842109376],[112.352345,34.6877223945312],[112.337074003906,34.6911452460938],[112.307345,34.683843],[112.303170195313,34.7096681953125],[112.283392363281,34.723843],[112.297345,34.733843],[112.325987578125,34.7218129707032],[112.362386503906,34.7299733710938],[112.387345,34.723843],[112.393985625,34.710483625],[112.397345,34.693843]]]]}},{"type":"Feature","properties":{"name":"涧西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.397345,34.693843],[112.413568144531,34.6692946601563],[112.411160917969,34.6585646796875],[112.417345,34.643843],[112.395601835938,34.600483625],[112.360704375,34.607202375],[112.349080839844,34.630180890625],[112.287345,34.6338430000001],[112.303985625,34.667202375],[112.307345,34.683843],[112.337074003906,34.6911452460938],[112.352345,34.6877223945312],[112.367345,34.6910842109376],[112.382623320313,34.6876601386719],[112.397345,34.693843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宝丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.887345,33.9138430000001],[112.899537382813,33.9104201484375],[112.890767851563,33.9016506171875],[112.887345,33.9138430000001]]],[[[112.887345,33.9138430000001],[112.855426054688,33.9098183417969],[112.847345,33.893843],[112.814481230469,33.9155605292969],[112.75658328125,33.9372243476563],[112.742074003906,33.9162075019531],[112.733260527344,33.9397585273438],[112.717345,33.9438430000001],[112.723089628906,33.9788088203126],[112.721514921875,33.9894557929688],[112.842003203125,34.0097145820313],[112.899991484375,33.9962783027345],[112.922345,33.9995815253907],[112.932345,33.9981044746094],[112.985863066406,34.0060134101562],[113.007345,34.033843],[113.092154570313,33.9886525703126],[113.112535429688,33.9790334296876],[113.131009550781,33.9590944648438],[113.142345,33.9586452460938],[113.152523222656,33.959048078125],[113.17111453125,33.9389809394532],[113.222694121094,33.92265159375],[113.222139921875,33.9086598945313],[113.249959746094,33.8955300117188],[113.223240996094,33.8707753730469],[113.287489042969,33.8554714179688],[113.297345,33.803843],[113.297345,33.783843],[113.277345,33.783843],[113.261429472656,33.7879274726563],[113.230924101563,33.8077919746094],[113.182891875,33.8201186347656],[113.131868925781,33.8075856757812],[113.102066679688,33.8306825996094],[113.093260527344,33.8179274726563],[113.072393828125,33.803520734375],[113.067345,33.783843],[113.04197390625,33.7984706855469],[113.0078528125,33.8380751777344],[112.972271757813,33.8182228828125],[112.917345,33.863843],[112.907432890625,33.88378440625],[112.920028105469,33.9095766425781],[112.8941028125,33.9272023750001],[112.887345,33.9138430000001]]]]}},{"type":"Feature","properties":{"name":"鲁山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.571363554688,33.9917873359375],[112.612242460938,33.9714675117188],[112.633336210938,33.9817690253907],[112.647391386719,33.9539821601563],[112.668929472656,33.9645009589844],[112.690704375,33.947202375],[112.717345,33.9438430000001],[112.733260527344,33.9397585273438],[112.742074003906,33.9162075019531],[112.75658328125,33.9372243476563],[112.814481230469,33.9155605292969],[112.847345,33.893843],[112.849888945313,33.8763869453125],[112.87216921875,33.8538454414063],[112.882345,33.8636708808594],[112.892345,33.8540151191406],[112.902345,33.8636708808594],[112.913582792969,33.8528188300782],[112.917345,33.863843],[112.972271757813,33.8182228828125],[113.0078528125,33.8380751777344],[113.04197390625,33.7984706855469],[113.067345,33.783843],[113.08170046875,33.7481996894531],[113.09298953125,33.7394863105469],[113.10170046875,33.7281996894532],[113.12298953125,33.7194863105469],[113.127345,33.7138430000001],[113.154014921875,33.67929221875],[113.22298953125,33.6694863105469],[113.227345,33.653843],[113.215482207031,33.639028546875],[113.181409941406,33.6292861152344],[113.199454375,33.5823415351563],[113.162628203125,33.5681862617188],[113.142345,33.570708234375],[113.117345,33.5675991035157],[113.102345,33.5694643378906],[113.091890898438,33.5681642890626],[113.080831328125,33.5819777656251],[113.017345,33.5638430000001],[113.00170046875,33.5681996894532],[112.948807402344,33.5889931464844],[112.932857695313,33.6096572089844],[112.917345,33.6073647285156],[112.856402617188,33.6163710761719],[112.847345,33.583843],[112.825662871094,33.5747365546875],[112.802066679688,33.5800258613281],[112.767345,33.5654433417969],[112.733260527344,33.5797585273437],[112.691429472656,33.5879274726563],[112.644097929688,33.6025991035157],[112.621839628906,33.5976088691406],[112.592425566406,33.6204067207032],[112.562171660156,33.6007070136719],[112.527069121094,33.5897585273438],[112.494547148438,33.6368617988282],[112.451429472656,33.6479274726562],[112.416119414063,33.6752931953125],[112.367345,33.6643593574219],[112.320440703125,33.6748744941407],[112.303260527344,33.6997585273438],[112.251429472656,33.7179274726563],[112.247345,33.7238430000001],[112.260543242188,33.7520925117188],[112.250125761719,33.7797280097657],[112.263714628906,33.7874745917969],[112.277345,33.813843],[112.292396269531,33.8086916328125],[112.311243925781,33.8283107734375],[112.381671171875,33.8297475410157],[112.40166140625,33.8089430976562],[112.422445097656,33.8187429023438],[112.462244902344,33.8489430976563],[112.521917753906,33.8683071113281],[112.536649199219,33.8969033027344],[112.483043242188,33.9229103828126],[112.522445097656,33.9487429023438],[112.542244902344,33.9789430976563],[112.547345,33.9838430000001],[112.563326445313,33.9758986640625],[112.571363554688,33.9917873359375]]]]}},{"type":"Feature","properties":{"name":"汝州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6379309375,34.3455995917969],[112.654610625,34.324770734375],[112.751749296875,34.3368532539063],[112.757345,34.343843],[112.786097441406,34.3371804023438],[112.806737089844,34.3402309394532],[112.843990507813,34.3249831367188],[112.841136503906,34.3056716132813],[112.912345,34.2951491523438],[112.952345,34.301059796875],[112.977345,34.2973647285156],[113.000826445313,34.3008351875],[113.070941191406,34.2721388984376],[113.077345,34.263843],[113.071429472656,34.2597585273438],[113.060186796875,34.2434743476563],[113.063465605469,34.228843],[113.061041289063,34.2180275703126],[113.106773710938,34.2062905097657],[113.097345,34.183843],[113.085513945313,34.1756740546875],[113.0634778125,34.1437599921875],[113.021429472656,34.1197585273437],[112.994554472656,34.0726735664063],[113.013646269531,34.0594936347657],[113.007345,34.033843],[112.985863066406,34.0060134101562],[112.932345,33.9981044746094],[112.922345,33.9995815253907],[112.899991484375,33.9962783027345],[112.842003203125,34.0097145820313],[112.721514921875,33.9894557929688],[112.723089628906,33.9788088203126],[112.717345,33.9438430000001],[112.690704375,33.947202375],[112.668929472656,33.9645009589844],[112.647391386719,33.9539821601563],[112.633336210938,33.9817690253907],[112.612242460938,33.9714675117188],[112.571363554688,33.9917873359375],[112.563326445313,33.9758986640625],[112.547345,33.9838430000001],[112.54146609375,33.99913596875],[112.553023710938,34.0083901191406],[112.549859648438,34.0338246894532],[112.592899199219,34.0682900214845],[112.621170683594,34.1447634101563],[112.591790800781,34.1682900214844],[112.580365019531,34.1954091621094],[112.551282988281,34.2186977363281],[112.573407011719,34.2489882636719],[112.54361453125,34.27284690625],[112.562899199219,34.2882900214844],[112.576239042969,34.3049489570313],[112.598450957031,34.3227370429688],[112.607345,34.3338430000001],[112.6379309375,34.3455995917969]]]]}},{"type":"Feature","properties":{"name":"石龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.887345,33.9138430000001],[112.890767851563,33.9016506171875],[112.899537382813,33.9104201484375],[112.8941028125,33.9272023750001],[112.920028105469,33.9095766425781],[112.907432890625,33.88378440625],[112.917345,33.863843],[112.913582792969,33.8528188300782],[112.902345,33.8636708808594],[112.892345,33.8540151191406],[112.882345,33.8636708808594],[112.87216921875,33.8538454414063],[112.849888945313,33.8763869453125],[112.847345,33.893843],[112.855426054688,33.9098183417969],[112.887345,33.9138430000001]]]]}},{"type":"Feature","properties":{"name":"舞钢市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.677345,33.4138430000001],[113.672652617188,33.3848146796875],[113.64244265625,33.3631606269531],[113.633170195313,33.3280178046876],[113.612564726563,33.2955629707032],[113.600772734375,33.235884015625],[113.618973417969,33.1886891914063],[113.637345,33.1838430000001],[113.633985625,33.1672023750001],[113.627345,33.1538430000001],[113.592379179688,33.1595864082031],[113.577345,33.1573647285157],[113.561954375,33.1596401191407],[113.537345,33.1447951484375],[113.510767851563,33.1608266425781],[113.472345,33.1551491523438],[113.437345,33.1603212714844],[113.392889433594,33.1537514472657],[113.387345,33.133843],[113.381883574219,33.1383803535157],[113.371363554688,33.1742226386719],[113.374676542969,33.2067250800782],[113.401663847656,33.253843],[113.377642851563,33.2957839179687],[113.395936308594,33.3109792304687],[113.387345,33.3338430000001],[113.393985625,33.337202375],[113.410704375,33.370483625],[113.453316679688,33.3918898750001],[113.457345,33.423843],[113.483079863281,33.4195778632813],[113.512740507813,33.4076540351563],[113.527345,33.4272866035156],[113.541776152344,33.4078847480469],[113.557345,33.4105641914063],[113.578245878906,33.4069667792969],[113.666878691406,33.4279116035156],[113.677345,33.4138430000001]]]]}},{"type":"Feature","properties":{"name":"叶县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.567345,33.7538430000001],[113.58373171875,33.7290468574219],[113.577345,33.7138430000001],[113.581883574219,33.6583803535156],[113.630882597656,33.6235671210938],[113.550816679688,33.588843],[113.552886992188,33.568520734375],[113.541883574219,33.5493056464844],[113.52361453125,33.5071840644531],[113.494891386719,33.51011253125],[113.478719511719,33.4966774726563],[113.457345,33.423843],[113.453316679688,33.3918898750001],[113.410704375,33.370483625],[113.393985625,33.337202375],[113.387345,33.3338430000001],[113.381790800781,33.3382900214844],[113.328968535156,33.3502883125],[113.305162382813,33.3473281074219],[113.220799589844,33.3714174628907],[113.223023710938,33.3892958808594],[113.206239042969,33.4027370429688],[113.180985136719,33.4342714667969],[113.131986113281,33.4281764960937],[113.112899199219,33.4393959785157],[113.085206328125,33.4510646796875],[113.037530546875,33.4451345039063],[113.043587675781,33.4938430000001],[113.040848417969,33.5158705878907],[113.021790800781,33.5482900214844],[113.017345,33.5638430000001],[113.080831328125,33.5819777656251],[113.091890898438,33.5681642890626],[113.102345,33.5694643378906],[113.117345,33.5675991035157],[113.142345,33.570708234375],[113.162628203125,33.5681862617188],[113.199454375,33.5823415351563],[113.181409941406,33.6292861152344],[113.215482207031,33.639028546875],[113.227345,33.653843],[113.255594511719,33.6670412421875],[113.287345,33.65507346875],[113.311925078125,33.6643386054688],[113.320975371094,33.6802114082032],[113.343714628906,33.6874745917969],[113.354608183594,33.7065810371094],[113.373714628906,33.7174745917969],[113.377345,33.7238430000001],[113.467345,33.7238430000001],[113.467345,33.743843],[113.48271609375,33.7484706855469],[113.493592558594,33.7610951972656],[113.567345,33.7538430000001]]],[[[113.567345,33.7538430000001],[113.570767851563,33.7660353828125],[113.579537382813,33.7572658515625],[113.567345,33.7538430000001]]]]}},{"type":"Feature","properties":{"name":"郏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.103482695313,34.1618019843751],[113.14978640625,34.1018154121094],[113.202735625,34.1096401191407],[113.229403105469,34.0935536933594],[113.248426542969,34.1181996894531],[113.27298953125,34.0994863105469],[113.283748808594,34.0855471015625],[113.323167753906,34.0694130683594],[113.319427519531,34.0441005683594],[113.332345,34.0273647285156],[113.348426542969,34.0481996894531],[113.385233183594,34.038921125],[113.403519316406,34.0086086250001],[113.390867949219,33.998843],[113.40298953125,33.9894863105469],[113.407345,33.9838430000001],[113.415125761719,33.9664723945313],[113.403531523438,33.9476552558594],[113.380657988281,33.9335610175781],[113.360706816406,33.8890248847657],[113.373531523438,33.8500307441407],[113.377345,33.823843],[113.350704375,33.820483625],[113.328929472656,33.8031850410157],[113.312330351563,33.8112917304687],[113.297345,33.803843],[113.287489042969,33.8554714179688],[113.223240996094,33.8707753730469],[113.249959746094,33.8955300117188],[113.222139921875,33.9086598945313],[113.222694121094,33.92265159375],[113.17111453125,33.9389809394532],[113.152523222656,33.959048078125],[113.142345,33.9586452460938],[113.131009550781,33.9590944648438],[113.112535429688,33.9790334296876],[113.092154570313,33.9886525703126],[113.007345,34.033843],[113.013646269531,34.0594936347657],[112.994554472656,34.0726735664063],[113.021429472656,34.1197585273437],[113.0634778125,34.1437599921875],[113.085513945313,34.1756740546875],[113.097345,34.183843],[113.103482695313,34.1618019843751]]]]}},{"type":"Feature","properties":{"name":"湛河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.307345,33.733843],[113.317454863281,33.7202541328125],[113.372913847656,33.7298012519531],[113.377345,33.7238430000001],[113.373714628906,33.7174745917969],[113.354608183594,33.7065810371094],[113.343714628906,33.6874745917969],[113.320975371094,33.6802114082032],[113.311925078125,33.6643386054688],[113.287345,33.65507346875],[113.255594511719,33.6670412421875],[113.227345,33.653843],[113.22298953125,33.6694863105469],[113.154014921875,33.67929221875],[113.127345,33.7138430000001],[113.233077421875,33.7080544257813],[113.252154570313,33.7294301582032],[113.232159453125,33.7286379218751],[113.22435671875,33.7586525703126],[113.262154570313,33.7386525703125],[113.307345,33.733843]]]]}},{"type":"Feature","properties":{"name":"新华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.102066679688,33.8306825996094],[113.131868925781,33.8075856757812],[113.182891875,33.8201186347656],[113.230924101563,33.8077919746094],[113.261429472656,33.7879274726563],[113.277345,33.783843],[113.290704375,33.757202375],[113.303985625,33.750483625],[113.307345,33.733843],[113.262154570313,33.7386525703125],[113.22435671875,33.7586525703126],[113.232159453125,33.7286379218751],[113.252154570313,33.7294301582032],[113.233077421875,33.7080544257813],[113.127345,33.7138430000001],[113.12298953125,33.7194863105469],[113.10170046875,33.7281996894532],[113.09298953125,33.7394863105469],[113.08170046875,33.7481996894531],[113.067345,33.783843],[113.072393828125,33.803520734375],[113.093260527344,33.8179274726563],[113.102066679688,33.8306825996094]]]]}},{"type":"Feature","properties":{"name":"卫东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,33.823843],[113.383646269531,33.7981923652344],[113.366898222656,33.7866310859375],[113.411429472656,33.7679274726563],[113.443260527344,33.7597585273438],[113.451429472656,33.7479274726563],[113.467345,33.743843],[113.467345,33.7238430000001],[113.377345,33.7238430000001],[113.372913847656,33.7298012519531],[113.317454863281,33.7202541328125],[113.307345,33.733843],[113.303985625,33.750483625],[113.290704375,33.757202375],[113.277345,33.783843],[113.297345,33.783843],[113.297345,33.803843],[113.312330351563,33.8112917304687],[113.328929472656,33.8031850410157],[113.350704375,33.820483625],[113.377345,33.823843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.967345,36.3438430000001],[113.970704375,36.327202375],[113.977345,36.3138430000001],[113.953260527344,36.3197585273438],[113.927345,36.323843],[113.930704375,36.3304836250001],[113.943985625,36.3372023750001],[113.951363554688,36.3517873359375],[113.967345,36.3438430000001]]],[[[113.967345,36.3438430000001],[113.967345,36.3538430000001],[114.002310820313,36.3480995917969],[114.024945097656,36.3514443183594],[114.021253691406,36.3264650703126],[114.051302519531,36.3309059882813],[114.053140898438,36.3184523750001],[114.037620878906,36.2927236152344],[114.073761015625,36.2709242988282],[114.136214628906,36.2801540351563],[114.16298953125,36.2594863105469],[114.178426542969,36.2394863105469],[114.19298953125,36.2481996894532],[114.210553007813,36.2709560371094],[114.233922148438,36.2568593574219],[114.252554960938,36.2596132636719],[114.295496855469,36.2470925117188],[114.312345,36.2495815253907],[114.32263796875,36.2480605292969],[114.337345,36.253843],[114.355562773438,36.2293532539063],[114.403079863281,36.2195778632813],[114.411610136719,36.2081081367188],[114.453077421875,36.1995778632813],[114.484771757813,36.1799623847657],[114.523077421875,36.1695778632813],[114.541612578125,36.1581081367188],[114.563077421875,36.1495778632812],[114.602569609375,36.1198635078125],[114.655050078125,36.1409596992188],[114.6782434375,36.1369667792969],[114.731612578125,36.1495778632812],[114.737345,36.1538430000001],[114.757345,36.1238430000001],[114.741124296875,36.0992946601563],[114.745557890625,36.0795131660156],[114.727345,36.0669387031251],[114.70142703125,36.0097585273438],[114.697345,35.993843],[114.672476835938,35.9990468574219],[114.662345,35.9986452460938],[114.652345,35.9990407539063],[114.642345,35.9986452460938],[114.626514921875,35.9992726875001],[114.527345,35.993843],[114.523985625,36.030483625],[114.490704375,36.037202375],[114.4507825,36.057046125],[114.443985625,36.070483625],[114.430704375,36.077202375],[114.427345,36.103843],[114.42298953125,36.1194863105469],[114.40334109375,36.1694667792969],[114.327345,36.173843],[114.258529082031,36.1668239570313],[114.24271609375,36.148470685547],[114.23197390625,36.1392153144532],[114.21271609375,36.1164455390626],[114.227345,36.103843],[114.218138457031,36.0919155097657],[114.192310820313,36.0880995917969],[114.11298953125,36.1011293769531],[114.128304472656,36.0608217597657],[114.14298953125,36.0494863105469],[114.147345,36.0438430000001],[114.115206328125,36.0263771796875],[114.090345488281,35.9828188300782],[114.064224882813,35.9647841621094],[114.027345,35.9738430000001],[114.000924101563,35.9942360664063],[114.004327421875,36.0172658515625],[113.991549101563,36.038452375],[113.993084746094,36.0488430000001],[113.990362578125,36.0672658515626],[114.013548613281,36.1057045722657],[114.011131621094,36.1220619941406],[113.958043242188,36.1437892890625],[113.995740996094,36.2024843574219],[113.966920195313,36.2757973457032],[113.994066191406,36.2967482734376],[113.987345,36.3138430000001],[113.987345,36.3438430000001],[113.967345,36.3438430000001]]]]}},{"type":"Feature","properties":{"name":"北关区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.42298953125,36.1194863105469],[114.427345,36.103843],[114.376641875,36.1101784492188],[114.337345,36.103843],[114.331429472656,36.1279274726562],[114.327345,36.173843],[114.40334109375,36.1694667792969],[114.42298953125,36.1194863105469]]]]}},{"type":"Feature","properties":{"name":"滑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.727345,35.693843],[114.740806914063,35.6763991523438],[114.762345,35.6795815253906],[114.772345,35.6781044746094],[114.785953398438,35.6801149726563],[114.84170046875,35.6581996894532],[114.87298953125,35.6494863105469],[114.877345,35.643843],[114.869581328125,35.6231862617188],[114.897730742188,35.5893007636719],[114.959097929688,35.5756935859376],[114.964674101563,35.5209767890626],[114.933326445313,35.4774135566406],[114.965079375,35.4806508613282],[114.960855742188,35.439233625],[114.981881132813,35.4217678046875],[114.972808867188,35.4083803535156],[114.961881132813,35.3993056464844],[114.952808867188,35.3883803535157],[114.947345,35.383843],[114.864815703125,35.3919582343751],[114.8173840625,35.3654958320313],[114.80271609375,35.3484706855469],[114.70197390625,35.3392153144532],[114.68834109375,35.2939418769531],[114.622105742188,35.2992641425782],[114.5573840625,35.2754958320313],[114.527213164063,35.2404787421876],[114.493897734375,35.2256117988281],[114.487345,35.2038430000001],[114.459097929688,35.2170412421876],[114.431461210938,35.2066249824219],[114.423714628906,35.2202114082031],[114.387345,35.223843],[114.394285917969,35.238696515625],[114.38857546875,35.253843],[114.39611453125,35.273843],[114.390125761719,35.2897280097657],[114.407664824219,35.2997280097657],[114.40029421875,35.3192861152344],[114.416890898438,35.3417812324219],[114.40857546875,35.3638430000001],[114.416370878906,35.3845241523438],[114.397161894531,35.4256386542969],[114.430914335938,35.4661061835938],[114.410975371094,35.4774745917969],[114.407345,35.483843],[114.387913847656,35.51409690625],[114.436248808594,35.5531630683594],[114.47298953125,35.5681996894531],[114.48170046875,35.5794863105469],[114.493160429688,35.5883315253906],[114.491514921875,35.5994472480469],[114.569371367188,35.6158766914063],[114.62170046875,35.6494863105469],[114.66298953125,35.6581996894532],[114.68494265625,35.6866396308594],[114.727345,35.693843]]]]}},{"type":"Feature","properties":{"name":"林州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.753985625,36.3604836250001],[113.814185820313,36.3304836250001],[113.843985625,36.3372023750001],[113.8541028125,36.357202375],[113.889561796875,36.3492299628907],[113.907415800781,36.3139369941407],[113.927345,36.323843],[113.953260527344,36.3197585273438],[113.977345,36.3138430000001],[113.987345,36.3138430000001],[113.994066191406,36.2967482734376],[113.966920195313,36.2757973457032],[113.995740996094,36.2024843574219],[113.958043242188,36.1437892890625],[114.011131621094,36.1220619941406],[114.013548613281,36.1057045722657],[113.990362578125,36.0672658515626],[113.993084746094,36.0488430000001],[113.991549101563,36.038452375],[114.004327421875,36.0172658515625],[114.000924101563,35.9942360664063],[114.027345,35.9738430000001],[114.033353300781,35.9384706855469],[114.077345,35.913843],[114.062113066406,35.8760268378906],[114.009263945313,35.8543971992188],[114.02312625,35.8191347480469],[114.019967070313,35.7977529121094],[114.032345,35.7995815253906],[114.042486601563,35.7980825019532],[114.067345,35.803843],[114.062406035156,35.7604030585938],[114.013260527344,35.7279274726563],[113.991429472656,35.7197585273438],[113.987345,35.7038430000001],[113.967174101563,35.6959133125],[113.933922148438,35.7008266425782],[113.895401640625,35.6775917792969],[113.857345,35.683843],[113.833079863281,35.6781081367188],[113.773570585938,35.6695778632813],[113.801307402344,35.7385793281251],[113.761610136719,35.7681081367187],[113.733079863281,35.8195778632813],[113.685875273438,35.8323744941406],[113.657345,35.843843],[113.629381132813,35.8631508613282],[113.643499785156,35.908696515625],[113.641224394531,35.918843],[113.649439726563,35.9554921699219],[113.637345,35.9638430000001],[113.631807890625,35.9785781074219],[113.63310671875,35.991313703125],[113.672345,35.9873146796875],[113.693807402344,35.9895021796876],[113.691136503906,36.0156935859375],[113.661883574219,36.0283803535157],[113.652806425781,36.0417678046875],[113.681663847656,36.0657363105469],[113.657576933594,36.12983909375],[113.691800566406,36.1263503242188],[113.701883574219,36.1466957832032],[113.650816679688,36.168843],[113.675455351563,36.1795290351563],[113.698233671875,36.2069521308594],[113.671151152344,36.2186977363282],[113.699168730469,36.2419716621094],[113.711883574219,36.2993056464844],[113.722806425781,36.3083803535157],[113.727345,36.3538430000001],[113.737345,36.3538430000001],[113.737345,36.363843],[113.753985625,36.3604836250001]]]]}},{"type":"Feature","properties":{"name":"龙安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.227345,36.103843],[114.292337675781,36.0984401679688],[114.30982546875,36.0998451972656],[114.337345,36.093843],[114.34271609375,36.0392153144531],[114.347345,35.9638430000001],[114.323260527344,35.9697585273438],[114.277345,35.9738430000001],[114.241248808594,35.9777455878907],[114.196112089844,35.9975392890626],[114.187345,35.983843],[114.163885527344,35.9892067695313],[114.174061308594,36.018843],[114.170628691406,36.028843],[114.174061308594,36.038843],[114.168951445313,36.0537282539063],[114.147345,36.0438430000001],[114.14298953125,36.0494863105469],[114.128304472656,36.0608217597657],[114.11298953125,36.1011293769531],[114.192310820313,36.0880995917969],[114.218138457031,36.0919155097657],[114.227345,36.103843]]]]}},{"type":"Feature","properties":{"name":"内黄县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.907203398438,36.1394435859375],[114.8995325,36.1148171210938],[114.9241809375,36.0996303535157],[114.905972929688,36.0442690253907],[114.927345,36.053843],[114.936666289063,36.0387123847656],[114.977125273438,36.029184796875],[114.970777617188,36.0088112617188],[114.983922148438,35.9688430000001],[114.969176054688,35.9240114570312],[114.9740246875,35.9084474921876],[114.960220976563,35.8679384589844],[114.923531523438,35.8453322578125],[114.931158476563,35.8276552558594],[114.943531523438,35.8200307441407],[114.947345,35.8138430000001],[114.941881132813,35.8093056464844],[114.930538359375,35.7831496406251],[114.88302859375,35.753843],[114.902808867188,35.7193056464844],[114.911881132813,35.6983803535157],[114.917345,35.693843],[114.910416289063,35.653051984375],[114.877345,35.643843],[114.87298953125,35.6494863105469],[114.84170046875,35.6581996894532],[114.785953398438,35.6801149726563],[114.772345,35.6781044746094],[114.762345,35.6795815253906],[114.740806914063,35.6763991523438],[114.727345,35.693843],[114.73170046875,35.7094863105469],[114.7452746875,35.7440151191407],[114.740728789063,35.7747743964844],[114.621925078125,35.7949562812501],[114.60298953125,35.8194863105469],[114.59170046875,35.8281996894532],[114.587345,35.843843],[114.592022734375,35.8492702460938],[114.605343046875,35.8482009101563],[114.660914335938,35.9255947089844],[114.68197390625,35.9592153144531],[114.703043242188,35.9889333320313],[114.697345,35.993843],[114.70142703125,36.0097585273438],[114.727345,36.0669387031251],[114.745557890625,36.0795131660156],[114.741124296875,36.0992946601563],[114.757345,36.1238430000001],[114.78443484375,36.1359792304688],[114.817345,36.1257277656251],[114.832345,36.1304006171875],[114.843150664063,36.1270351386719],[114.855855742188,36.1476552558594],[114.907203398438,36.1394435859375]]]]}},{"type":"Feature","properties":{"name":"汤阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.626514921875,35.9992726875001],[114.642345,35.9986452460938],[114.652345,35.9990407539063],[114.662345,35.9986452460938],[114.672476835938,35.9990468574219],[114.697345,35.993843],[114.703043242188,35.9889333320313],[114.68197390625,35.9592153144531],[114.660914335938,35.9255947089844],[114.605343046875,35.8482009101563],[114.592022734375,35.8492702460938],[114.587345,35.843843],[114.572623320313,35.8376601386719],[114.561900664063,35.840063703125],[114.542789335938,35.827622296875],[114.497379179688,35.8378029609375],[114.432491484375,35.8176894355469],[114.40435671875,35.8239968085938],[114.397345,35.8138430000001],[114.362081328125,35.8196364570312],[114.287901640625,35.790473859375],[114.261204863281,35.7558876777344],[114.236947050781,35.7873122382813],[114.227345,35.843843],[114.232164335938,35.8655654121094],[114.274574003906,35.8879286933594],[114.263922148438,35.9161891914063],[114.283714628906,35.9274745917969],[114.295950957031,35.9489357734376],[114.280975371094,35.9574745917969],[114.277345,35.9738430000001],[114.323260527344,35.9697585273438],[114.347345,35.9638430000001],[114.361429472656,35.9697585273438],[114.413260527344,35.9779274726563],[114.476617460938,35.9934889960938],[114.502388945313,35.9877126289063],[114.527345,35.993843],[114.626514921875,35.9992726875001]]]]}},{"type":"Feature","properties":{"name":"文峰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.527345,35.993843],[114.502388945313,35.9877126289063],[114.476617460938,35.9934889960938],[114.413260527344,35.9779274726563],[114.361429472656,35.9697585273438],[114.347345,35.9638430000001],[114.34271609375,36.0392153144531],[114.337345,36.093843],[114.337345,36.103843],[114.376641875,36.1101784492188],[114.427345,36.103843],[114.430704375,36.077202375],[114.443985625,36.070483625],[114.4507825,36.057046125],[114.490704375,36.037202375],[114.523985625,36.030483625],[114.527345,35.993843]]]]}},{"type":"Feature","properties":{"name":"殷都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,36.103843],[114.337345,36.093843],[114.30982546875,36.0998451972656],[114.292337675781,36.0984401679688],[114.227345,36.103843],[114.21271609375,36.1164455390626],[114.23197390625,36.1392153144532],[114.24271609375,36.148470685547],[114.258529082031,36.1668239570313],[114.327345,36.173843],[114.331429472656,36.1279274726562],[114.337345,36.103843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"浚县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.587345,35.843843],[114.59170046875,35.8281996894532],[114.60298953125,35.8194863105469],[114.621925078125,35.7949562812501],[114.740728789063,35.7747743964844],[114.7452746875,35.7440151191407],[114.73170046875,35.7094863105469],[114.727345,35.693843],[114.68494265625,35.6866396308594],[114.66298953125,35.6581996894532],[114.62170046875,35.6494863105469],[114.569371367188,35.6158766914063],[114.491514921875,35.5994472480469],[114.493160429688,35.5883315253906],[114.48170046875,35.5794863105469],[114.47298953125,35.5681996894531],[114.436248808594,35.5531630683594],[114.387913847656,35.51409690625],[114.407345,35.483843],[114.39197390625,35.4792153144532],[114.37271609375,35.4684706855469],[114.317345,35.443843],[114.263619414063,35.4718630195313],[114.277345,35.503843],[114.284078398438,35.5090407539063],[114.258734160156,35.5194130683594],[114.263084746094,35.5488430000001],[114.259078398438,35.5759487128906],[114.295181914063,35.6246450019532],[114.290941191406,35.6533498359375],[114.27170046875,35.6681996894532],[114.26298953125,35.6794863105469],[114.248297148438,35.6908266425782],[114.257345,35.713843],[114.283260527344,35.7179274726563],[114.304459257813,35.7317311835938],[114.327345,35.7266017890625],[114.372979765625,35.73683128125],[114.385513945313,35.7856740546876],[114.403856230469,35.7983388496094],[114.397345,35.8138430000001],[114.40435671875,35.8239968085938],[114.432491484375,35.8176894355469],[114.497379179688,35.8378029609375],[114.542789335938,35.827622296875],[114.561900664063,35.840063703125],[114.572623320313,35.8376601386719],[114.587345,35.843843]]]]}},{"type":"Feature","properties":{"name":"淇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.067345,35.803843],[114.137254667969,35.7980324531251],[114.165809355469,35.8003261542969],[114.20271609375,35.7892153144532],[114.222008085938,35.7584145332031],[114.238861113281,35.7597682929688],[114.265714140625,35.7366323066407],[114.257345,35.713843],[114.248297148438,35.6908266425782],[114.26298953125,35.6794863105469],[114.27170046875,35.6681996894532],[114.290941191406,35.6533498359375],[114.295181914063,35.6246450019532],[114.259078398438,35.5759487128906],[114.263084746094,35.5488430000001],[114.258734160156,35.5194130683594],[114.284078398438,35.5090407539063],[114.277345,35.503843],[114.241519804688,35.5080178046875],[114.203170195313,35.5196681953126],[114.140694609375,35.532192609375],[114.113170195313,35.5496681953125],[114.078026152344,35.5589394355469],[114.05093875,35.5967311835938],[114.057283964844,35.6288430000001],[114.048880644531,35.6713808417969],[113.987345,35.7038430000001],[113.991429472656,35.7197585273438],[114.013260527344,35.7279274726563],[114.062406035156,35.7604030585938],[114.067345,35.803843]]]]}},{"type":"Feature","properties":{"name":"山城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.232164335938,35.8655654121094],[114.227345,35.843843],[114.191429472656,35.8479274726563],[114.1519153125,35.8736586738282],[114.147345,35.913843],[114.19298953125,35.9481996894531],[114.208121367188,35.9678054023438],[114.187345,35.983843],[114.196112089844,35.9975392890626],[114.241248808594,35.9777455878907],[114.277345,35.9738430000001],[114.280975371094,35.9574745917969],[114.295950957031,35.9489357734376],[114.283714628906,35.9274745917969],[114.263922148438,35.9161891914063],[114.274574003906,35.8879286933594],[114.232164335938,35.8655654121094]]]]}},{"type":"Feature","properties":{"name":"淇滨区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.227345,35.843843],[114.236947050781,35.7873122382813],[114.261204863281,35.7558876777344],[114.287901640625,35.790473859375],[114.362081328125,35.8196364570312],[114.397345,35.8138430000001],[114.403856230469,35.7983388496094],[114.385513945313,35.7856740546876],[114.372979765625,35.73683128125],[114.327345,35.7266017890625],[114.304459257813,35.7317311835938],[114.283260527344,35.7179274726563],[114.257345,35.713843],[114.265714140625,35.7366323066407],[114.238861113281,35.7597682929688],[114.222008085938,35.7584145332031],[114.20271609375,35.7892153144532],[114.165809355469,35.8003261542969],[114.137254667969,35.7980324531251],[114.067345,35.803843],[114.042486601563,35.7980825019532],[114.032345,35.7995815253906],[114.019967070313,35.7977529121094],[114.02312625,35.8191347480469],[114.009263945313,35.8543971992188],[114.062113066406,35.8760268378906],[114.077345,35.913843],[114.147345,35.913843],[114.1519153125,35.8736586738282],[114.191429472656,35.8479274726563],[114.227345,35.843843]]]]}},{"type":"Feature","properties":{"name":"鹤山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208121367188,35.9678054023438],[114.19298953125,35.9481996894531],[114.147345,35.913843],[114.077345,35.913843],[114.033353300781,35.9384706855469],[114.027345,35.9738430000001],[114.064224882813,35.9647841621094],[114.090345488281,35.9828188300782],[114.115206328125,36.0263771796875],[114.147345,36.0438430000001],[114.168951445313,36.0537282539063],[114.174061308594,36.038843],[114.170628691406,36.028843],[114.174061308594,36.018843],[114.163885527344,35.9892067695313],[114.187345,35.983843],[114.208121367188,35.9678054023438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"牧野区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.977345,35.3238430000001],[113.969488554688,35.3083132148438],[113.947345,35.303843],[113.917615996094,35.3111452460938],[113.902345,35.3077223945313],[113.892345,35.3099636054688],[113.882066679688,35.3076601386719],[113.867345,35.3138430000001],[113.83170046875,35.3181996894532],[113.797345,35.3238430000001],[113.787345,35.3238430000001],[113.787345,35.333843],[113.790704375,35.3404836250001],[113.835474882813,35.3474330878906],[113.829163847656,35.3603591132813],[113.913985625,35.367202375],[113.947345,35.383843],[113.956553984375,35.3296327949219],[113.977345,35.3238430000001]]]]}},{"type":"Feature","properties":{"name":"卫滨区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.897345,35.233843],[113.853267851563,35.2230165839844],[113.840184355469,35.2579824042969],[113.801429472656,35.2679274726563],[113.788441191406,35.3026418281251],[113.797345,35.3238430000001],[113.83170046875,35.3181996894532],[113.867345,35.3138430000001],[113.87170046875,35.2781996894532],[113.88298953125,35.2694863105469],[113.897345,35.233843]]]]}},{"type":"Feature","properties":{"name":"长垣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.976221953125,35.2949684882813],[114.947906523438,35.2632802558594],[114.932061796875,35.2491237617188],[114.922628203125,35.1985622382813],[114.8429309375,35.1836867500001],[114.841480742188,35.1593166328125],[114.882061796875,35.1069460273438],[114.862628203125,35.0885622382813],[114.802628203125,35.0746022773438],[114.822061796875,35.0485622382813],[114.851221953125,35.0351784492188],[114.827345,35.0138430000001],[114.80142703125,35.0097585273438],[114.777345,34.993843],[114.754019804688,35.0005117011719],[114.666534453125,35.0704799628907],[114.633023710938,35.1256520820313],[114.571793242188,35.1482900214844],[114.555152617188,35.1690676093751],[114.491793242188,35.1782900214844],[114.487345,35.2038430000001],[114.493897734375,35.2256117988281],[114.527213164063,35.2404787421876],[114.5573840625,35.2754958320313],[114.622105742188,35.2992641425782],[114.68834109375,35.2939418769531],[114.70197390625,35.3392153144532],[114.80271609375,35.3484706855469],[114.8173840625,35.3654958320313],[114.864815703125,35.3919582343751],[114.947345,35.383843],[114.96181765625,35.3572084785157],[114.99142703125,35.3379274726563],[115.007345,35.333843],[115.002628203125,35.3185622382813],[114.976221953125,35.2949684882813]]]]}},{"type":"Feature","properties":{"name":"封丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.423714628906,35.2202114082031],[114.431461210938,35.2066249824219],[114.459097929688,35.2170412421876],[114.487345,35.2038430000001],[114.491793242188,35.1782900214844],[114.555152617188,35.1690676093751],[114.571793242188,35.1482900214844],[114.633023710938,35.1256520820313],[114.666534453125,35.0704799628907],[114.754019804688,35.0005117011719],[114.777345,34.993843],[114.772628203125,34.9885622382813],[114.742760039063,34.9618788886719],[114.782061796875,34.9056130195313],[114.733502226563,34.8939809394532],[114.687345,34.9038430000001],[114.62142703125,34.9079274726562],[114.573912382813,34.92788596875],[114.534698515625,34.9023537421875],[114.4791028125,34.9257057929688],[114.44326296875,34.8979274726563],[114.417345,34.893843],[114.402762480469,34.9149648261719],[114.377069121094,34.9279274726563],[114.36154421875,34.9054433417969],[114.284595976563,34.9243434882813],[114.263001738281,34.8930678535157],[114.237345,34.9038430000001],[114.243529082031,34.9185646796875],[114.235618925781,34.953843],[114.245706816406,34.998843],[114.240103789063,35.023843],[114.243465605469,35.038843],[114.241073027344,35.0495131660156],[114.259945097656,35.0625429511719],[114.247345,35.113843],[114.259564238281,35.1232741523438],[114.29170046875,35.1694863105469],[114.314217558594,35.1868666816407],[114.364783964844,35.16698753125],[114.384407988281,35.1698867011719],[114.381600371094,35.1888771796875],[114.387345,35.223843],[114.423714628906,35.2202114082031]]]]}},{"type":"Feature","properties":{"name":"辉县市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.685875273438,35.8323744941406],[113.733079863281,35.8195778632813],[113.761610136719,35.7681081367187],[113.801307402344,35.7385793281251],[113.773570585938,35.6695778632813],[113.833079863281,35.6781081367188],[113.857345,35.683843],[113.87170046875,35.6481996894531],[113.893463164063,35.6314028144532],[113.88797,35.5942360664063],[113.940941191406,35.5533498359376],[113.943160429688,35.5383315253907],[113.931529570313,35.5293544746094],[113.936715117188,35.4942763496094],[113.927345,35.453843],[113.911429472656,35.4497585273437],[113.895697050781,35.4269704414063],[113.878992949219,35.4307155585938],[113.845697050781,35.3824867988282],[113.782345,35.3966896796875],[113.7329309375,35.3856117988281],[113.727345,35.3638430000001],[113.727345,35.343843],[113.707345,35.343843],[113.691429472656,35.3397585273438],[113.673260527344,35.3279274726563],[113.631429472656,35.3197585273438],[113.5983215625,35.2981996894531],[113.517345,35.293843],[113.48170046875,35.2981996894531],[113.47095828125,35.3244509101563],[113.473160429688,35.3393544746094],[113.454388457031,35.3538430000001],[113.473519316406,35.368608625],[113.461549101563,35.388452375],[113.463084746094,35.3988430000001],[113.460916777344,35.4135024238281],[113.393153105469,35.4646511054688],[113.38298953125,35.4894863105469],[113.377345,35.493843],[113.390484648438,35.5121742988281],[113.412349882813,35.5078542304688],[113.472340117188,35.5198317695313],[113.496038847656,35.5151491523438],[113.49127078125,35.5392763496094],[113.50341921875,35.5584096503907],[113.500252714844,35.5744252753907],[113.533170195313,35.5980178046875],[113.547459746094,35.6179555488281],[113.541322050781,35.6490236640626],[113.547186308594,35.6680178046875],[113.56818484375,35.6387197089844],[113.611214628906,35.6296681953125],[113.621519804688,35.6736830878906],[113.5907434375,35.6957411933594],[113.594925566406,35.7169020820313],[113.577821074219,35.7438430000001],[113.59369265625,35.768843],[113.580799589844,35.7891518378907],[113.594320097656,35.798843],[113.581519804688,35.8080178046876],[113.577345,35.823843],[113.617047148438,35.8303652167969],[113.643880644531,35.8263991523438],[113.657345,35.843843],[113.685875273438,35.8323744941406]]]]}},{"type":"Feature","properties":{"name":"获嘉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.731939726563,35.1488051582031],[113.737345,35.0938430000001],[113.733531523438,35.0876552558594],[113.720535917969,35.0796486640625],[113.726160917969,35.0615895820313],[113.712345,35.0572853828126],[113.702345,35.0604006171875],[113.692132597656,35.0572194648438],[113.655753203125,35.0735158515625],[113.643531523438,35.0376552558594],[113.637345,35.033843],[113.601429472656,35.0879274726563],[113.59318484375,35.13015159375],[113.56435671875,35.1236891914063],[113.553260527344,35.1397585273438],[113.532991972656,35.1537538886719],[113.523260527344,35.1797585273438],[113.517345,35.183843],[113.511666289063,35.1883901191406],[113.512967558594,35.198843],[113.511441679688,35.2111074042969],[113.54107546875,35.2348390937501],[113.509657011719,35.2599990058594],[113.517345,35.293843],[113.5983215625,35.2981996894531],[113.631429472656,35.3197585273438],[113.673260527344,35.3279274726563],[113.691429472656,35.3397585273438],[113.707345,35.343843],[113.701788359375,35.3287087226563],[113.736217070313,35.2847450996094],[113.721693144531,35.2587123847657],[113.734276152344,35.2478713203125],[113.731541777344,35.213843],[113.732772246094,35.198519513672],[113.721917753906,35.1891664863281],[113.722747832031,35.178843],[113.721917753906,35.1685195136719],[113.732772246094,35.1591664863281],[113.731939726563,35.1488051582031]]]]}},{"type":"Feature","properties":{"name":"卫辉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.987345,35.7038430000001],[114.048880644531,35.6713808417969],[114.057283964844,35.6288430000001],[114.05093875,35.5967311835938],[114.078026152344,35.5589394355469],[114.113170195313,35.5496681953125],[114.140694609375,35.532192609375],[114.203170195313,35.5196681953126],[114.241519804688,35.5080178046875],[114.277345,35.503843],[114.263619414063,35.4718630195313],[114.317345,35.443843],[114.325179472656,35.4251906562501],[114.313260527344,35.4079274726563],[114.280513945313,35.3956740546875],[114.232672148438,35.3645204902345],[114.182345,35.3532387519532],[114.117037382813,35.3678798652344],[114.103260527344,35.3479274726563],[114.011429472656,35.3397585273438],[113.993260527344,35.3279274726563],[113.977345,35.3238430000001],[113.956553984375,35.3296327949219],[113.947345,35.383843],[113.968958769531,35.3947768378906],[113.939676542969,35.4283803535157],[113.945269804688,35.4398329902344],[113.930704375,35.447202375],[113.927345,35.453843],[113.936715117188,35.4942763496094],[113.931529570313,35.5293544746094],[113.943160429688,35.5383315253907],[113.940941191406,35.5533498359376],[113.88797,35.5942360664063],[113.893463164063,35.6314028144532],[113.87170046875,35.6481996894531],[113.857345,35.683843],[113.895401640625,35.6775917792969],[113.933922148438,35.7008266425782],[113.967174101563,35.6959133125],[113.987345,35.7038430000001]]]]}},{"type":"Feature","properties":{"name":"延津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.40857546875,35.3638430000001],[114.416890898438,35.3417812324219],[114.40029421875,35.3192861152344],[114.407664824219,35.2997280097657],[114.390125761719,35.2897280097657],[114.39611453125,35.273843],[114.38857546875,35.253843],[114.394285917969,35.238696515625],[114.387345,35.223843],[114.381600371094,35.1888771796875],[114.384407988281,35.1698867011719],[114.364783964844,35.16698753125],[114.314217558594,35.1868666816407],[114.29170046875,35.1694863105469],[114.259564238281,35.1232741523438],[114.247345,35.113843],[114.157152128906,35.1203627753907],[114.122625761719,35.1391237617188],[114.102064238281,35.1485622382813],[114.08158328125,35.1596913886719],[114.062345,35.1585451484376],[114.00812625,35.1617763496094],[113.992625761719,35.1791237617188],[113.987345,35.183843],[114.0012121875,35.2039260078125],[114.060570097656,35.23780784375],[114.020819121094,35.2652529121094],[113.987345,35.273843],[113.95408328125,35.2905226875001],[113.947345,35.303843],[113.969488554688,35.3083132148438],[113.977345,35.3238430000001],[113.993260527344,35.3279274726563],[114.011429472656,35.3397585273438],[114.103260527344,35.3479274726563],[114.117037382813,35.3678798652344],[114.182345,35.3532387519532],[114.232672148438,35.3645204902345],[114.280513945313,35.3956740546875],[114.313260527344,35.4079274726563],[114.325179472656,35.4251906562501],[114.317345,35.443843],[114.37271609375,35.4684706855469],[114.39197390625,35.4792153144532],[114.407345,35.483843],[114.410975371094,35.4774745917969],[114.430914335938,35.4661061835938],[114.397161894531,35.4256386542969],[114.416370878906,35.3845241523438],[114.40857546875,35.3638430000001]]]]}},{"type":"Feature","properties":{"name":"原阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.946793242188,35.1873146796876],[113.972452421875,35.1767385078125],[113.987345,35.183843],[113.992625761719,35.1791237617188],[114.00812625,35.1617763496094],[114.062345,35.1585451484376],[114.08158328125,35.1596913886719],[114.102064238281,35.1485622382813],[114.122625761719,35.1391237617188],[114.157152128906,35.1203627753907],[114.247345,35.113843],[114.259945097656,35.0625429511719],[114.241073027344,35.0495131660156],[114.243465605469,35.038843],[114.240103789063,35.023843],[114.245706816406,34.998843],[114.235618925781,34.953843],[114.243529082031,34.9185646796875],[114.237345,34.9038430000001],[114.220704375,34.907202375],[114.207345,34.913843],[114.201849394531,34.9335829902344],[114.126475859375,34.9644313789063],[114.077345,34.9347951484375],[114.048800078125,34.9520131660157],[113.990113554688,34.9433412910156],[113.96298953125,34.9081996894532],[113.89170046875,34.8994863105469],[113.857345,34.883843],[113.787345,34.883843],[113.775091582031,34.9015895820313],[113.744224882813,34.9229018378907],[113.674276152344,34.9057204414063],[113.643260527344,34.9297585273438],[113.591429472656,34.9379274726563],[113.587345,34.9438430000001],[113.592523222656,34.9767055488282],[113.632713652344,35.0044533515625],[113.637345,35.033843],[113.643531523438,35.0376552558594],[113.655753203125,35.0735158515625],[113.692132597656,35.0572194648438],[113.702345,35.0604006171875],[113.712345,35.0572853828126],[113.726160917969,35.0615895820313],[113.720535917969,35.0796486640625],[113.733531523438,35.0876552558594],[113.737345,35.0938430000001],[113.823804960938,35.0973830390626],[113.840885039063,35.1303029609375],[113.898680449219,35.1380361152344],[113.919581328125,35.1761647773438],[113.957896757813,35.1603713203125],[113.946793242188,35.1873146796876]]]]}},{"type":"Feature","properties":{"name":"红旗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.867345,35.3138430000001],[113.882066679688,35.3076601386719],[113.892345,35.3099636054688],[113.902345,35.3077223945313],[113.917615996094,35.3111452460938],[113.947345,35.303843],[113.95408328125,35.2905226875001],[113.987345,35.273843],[113.982850371094,35.2123195625001],[113.961732207031,35.2075844550782],[113.921429472656,35.2179274726563],[113.913260527344,35.2297585273438],[113.897345,35.233843],[113.88298953125,35.2694863105469],[113.87170046875,35.2781996894532],[113.867345,35.3138430000001]]]]}},{"type":"Feature","properties":{"name":"凤泉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.939676542969,35.4283803535157],[113.968958769531,35.3947768378906],[113.947345,35.383843],[113.913985625,35.367202375],[113.829163847656,35.3603591132813],[113.835474882813,35.3474330878906],[113.790704375,35.3404836250001],[113.787345,35.333843],[113.781429472656,35.3379274726563],[113.765697050781,35.3607155585938],[113.752303496094,35.3577126289063],[113.727345,35.3638430000001],[113.7329309375,35.3856117988281],[113.782345,35.3966896796875],[113.845697050781,35.3824867988282],[113.878992949219,35.4307155585938],[113.895697050781,35.4269704414063],[113.911429472656,35.4497585273437],[113.927345,35.453843],[113.930704375,35.447202375],[113.945269804688,35.4398329902344],[113.939676542969,35.4283803535157]]]]}},{"type":"Feature","properties":{"name":"新乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.727345,35.3638430000001],[113.752303496094,35.3577126289063],[113.765697050781,35.3607155585938],[113.781429472656,35.3379274726563],[113.787345,35.333843],[113.787345,35.3238430000001],[113.797345,35.3238430000001],[113.788441191406,35.3026418281251],[113.801429472656,35.2679274726563],[113.840184355469,35.2579824042969],[113.853267851563,35.2230165839844],[113.897345,35.233843],[113.913260527344,35.2297585273438],[113.921429472656,35.2179274726563],[113.961732207031,35.2075844550782],[113.982850371094,35.2123195625001],[113.987345,35.273843],[114.020819121094,35.2652529121094],[114.060570097656,35.23780784375],[114.0012121875,35.2039260078125],[113.987345,35.183843],[113.972452421875,35.1767385078125],[113.946793242188,35.1873146796876],[113.957896757813,35.1603713203125],[113.919581328125,35.1761647773438],[113.898680449219,35.1380361152344],[113.840885039063,35.1303029609375],[113.823804960938,35.0973830390626],[113.737345,35.0938430000001],[113.731939726563,35.1488051582031],[113.732772246094,35.1591664863281],[113.721917753906,35.1685195136719],[113.722747832031,35.178843],[113.721917753906,35.1891664863281],[113.732772246094,35.198519513672],[113.731541777344,35.213843],[113.734276152344,35.2478713203125],[113.721693144531,35.2587123847657],[113.736217070313,35.2847450996094],[113.701788359375,35.3287087226563],[113.707345,35.343843],[113.727345,35.343843],[113.727345,35.3638430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"温县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.167547636719,35.0356728339844],[113.161441679688,34.9865785957032],[113.182899199219,34.9693959785157],[113.218328886719,34.9110622382813],[113.227345,34.9038430000001],[113.210650664063,34.8705495429688],[113.164080839844,34.8471559882813],[113.157345,34.833843],[113.128109160156,34.8529799628907],[113.048682890625,34.8371218085937],[113.013170195313,34.8596681953125],[112.977503691406,34.8680178046875],[112.963170195313,34.8480178046876],[112.937503691406,34.8296681953126],[112.927345,34.843843],[112.921690703125,34.9114833808594],[112.90197390625,34.9284706855469],[112.89271609375,34.9492153144532],[112.873558378906,34.9657204414063],[112.857345,34.993843],[112.86271609375,34.9984706855469],[112.879840117188,35.018344953125],[112.930362578125,34.9825234199219],[112.975907011719,35.0353884101563],[113.037940703125,35.0126076484375],[113.047345,35.043843],[113.157345,35.043843],[113.167547636719,35.0356728339844]]]]}},{"type":"Feature","properties":{"name":"博爱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.987345,35.2038430000001],[113.009659453125,35.2086428046875],[113.000247832031,35.2273830390625],[112.978333769531,35.2105458808594],[112.984066191406,35.2438430000001],[112.981385527344,35.2594106269531],[113.02150515625,35.28925315625],[112.997957792969,35.3181081367188],[112.987345,35.303843],[112.97298953125,35.3149245429688],[112.99000125,35.3628835273438],[113.022345,35.3581044746094],[113.035953398438,35.3601149726562],[113.09205203125,35.3380605292969],[113.102486601563,35.3396034980469],[113.127345,35.333843],[113.10896609375,35.2886110664063],[113.088292265625,35.253442609375],[113.126727324219,35.1901638007813],[113.147345,35.1875991035156],[113.162506132813,35.1894850898438],[113.187345,35.183843],[113.187345,35.1638430000001],[113.173922148438,35.1561891914063],[113.187664824219,35.1197280097657],[113.170975371094,35.1102114082031],[113.163714628906,35.0674745917969],[113.149967070313,35.0596364570312],[113.157345,35.043843],[113.047345,35.043843],[113.007340117188,35.0549831367188],[112.961033964844,35.1149745917969],[112.963160429688,35.1293544746094],[112.95170046875,35.1381996894532],[112.94298953125,35.1527614570313],[112.981370878906,35.182387921875],[112.987345,35.2038430000001]]]]}},{"type":"Feature","properties":{"name":"解放区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.241329375,35.1951308417969],[113.197345,35.183843],[113.203856230469,35.1993471503907],[113.181029082031,35.2151088691407],[113.169312773438,35.2673732734375],[113.181429472656,35.2997585273438],[113.207345,35.3138430000001],[113.221429472656,35.2879274726562],[113.237345,35.263843],[113.230550566406,35.2465615058594],[113.247345,35.2038430000001],[113.241329375,35.1951308417969]]]]}},{"type":"Feature","properties":{"name":"马村区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.441883574219,35.3366420722656],[113.432806425781,35.3083803535157],[113.416419707031,35.2947682929688],[113.402806425781,35.2783803535157],[113.386419707031,35.2647682929688],[113.372806425781,35.2483803535156],[113.351883574219,35.2393056464844],[113.331500273438,35.2147670722657],[113.307345,35.223843],[113.301600371094,35.2588088203125],[113.303748808594,35.2733498359375],[113.32677859375,35.2911244941407],[113.297345,35.3138430000001],[113.325650664063,35.3479201484375],[113.3422278125,35.32796409375],[113.379659453125,35.3549025703125],[113.441883574219,35.3366420722656]]]]}},{"type":"Feature","properties":{"name":"孟州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.637345,34.893843],[112.624537382813,34.8988430000001],[112.637345,34.9038430000001],[112.637345,34.893843]]],[[[112.637345,34.893843],[112.650152617188,34.8988430000001],[112.637345,34.9038430000001],[112.633985625,34.9204836250001],[112.580704375,34.9272023750001],[112.567345,34.953843],[112.571429472656,34.9697585273438],[112.671243925781,34.9950051093751],[112.693082304688,35.0266347480469],[112.723260527344,35.0379274726563],[112.727345,35.043843],[112.753416777344,35.0365822578125],[112.804227324219,34.9989125800782],[112.857345,34.993843],[112.873558378906,34.9657204414063],[112.89271609375,34.9492153144532],[112.90197390625,34.9284706855469],[112.921690703125,34.9114833808594],[112.927345,34.843843],[112.886395292969,34.8539003730469],[112.839298125,34.8146230292969],[112.817345,34.8238430000001],[112.80545046875,34.8381618476563],[112.738638945313,34.8130568671876],[112.674823027344,34.84960471875],[112.654212675781,34.8475051093751],[112.637345,34.853843],[112.637345,34.893843]]]]}},{"type":"Feature","properties":{"name":"沁阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.987345,35.2038430000001],[113.000247832031,35.2273830390625],[113.009659453125,35.2086428046875],[112.987345,35.2038430000001]]],[[[112.987345,35.2038430000001],[112.981370878906,35.182387921875],[112.94298953125,35.1527614570313],[112.95170046875,35.1381996894532],[112.963160429688,35.1293544746094],[112.961033964844,35.1149745917969],[113.007340117188,35.0549831367188],[113.047345,35.043843],[113.037940703125,35.0126076484375],[112.975907011719,35.0353884101563],[112.930362578125,34.9825234199219],[112.879840117188,35.018344953125],[112.86271609375,34.9984706855469],[112.857345,34.993843],[112.804227324219,34.9989125800782],[112.753416777344,35.0365822578125],[112.727345,35.043843],[112.731429472656,35.0597585273438],[112.743260527344,35.0779274726563],[112.759583769531,35.1215517402344],[112.751124296875,35.1592897773438],[112.763861113281,35.1788503242188],[112.747345,35.2038430000001],[112.773765898438,35.2242360664063],[112.771253691406,35.2412209296875],[112.801832304688,35.2367018867187],[112.815928984375,35.2549636054688],[112.915633574219,35.24022971875],[112.933748808594,35.28448753125],[112.98298953125,35.2981996894531],[112.987345,35.303843],[112.997957792969,35.3181081367188],[113.02150515625,35.28925315625],[112.981385527344,35.2594106269531],[112.984066191406,35.2438430000001],[112.978333769531,35.2105458808594],[112.987345,35.2038430000001]]]]}},{"type":"Feature","properties":{"name":"山阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.274801054688,35.2063869453125],[113.247345,35.2038430000001],[113.230550566406,35.2465615058594],[113.237345,35.263843],[113.243260527344,35.2679274726563],[113.270142851563,35.3068617988282],[113.297345,35.3138430000001],[113.32677859375,35.2911244941407],[113.303748808594,35.2733498359375],[113.301600371094,35.2588088203125],[113.307345,35.223843],[113.289888945313,35.2212990546876],[113.274801054688,35.2063869453125]]]]}},{"type":"Feature","properties":{"name":"武陟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.523260527344,35.1797585273438],[113.532991972656,35.1537538886719],[113.553260527344,35.1397585273438],[113.56435671875,35.1236891914063],[113.59318484375,35.13015159375],[113.601429472656,35.0879274726563],[113.637345,35.033843],[113.632713652344,35.0044533515625],[113.592523222656,34.9767055488282],[113.587345,34.9438430000001],[113.553985625,34.9604836250001],[113.497345,34.963843],[113.47209109375,34.9583339667969],[113.458072539063,34.9746059394532],[113.378563261719,34.9984706855469],[113.333316679688,34.9459523750001],[113.255240507813,34.9522255683594],[113.227345,34.9038430000001],[113.218328886719,34.9110622382813],[113.182899199219,34.9693959785157],[113.161441679688,34.9865785957032],[113.167547636719,35.0356728339844],[113.157345,35.043843],[113.149967070313,35.0596364570312],[113.163714628906,35.0674745917969],[113.170975371094,35.1102114082031],[113.187664824219,35.1197280097657],[113.173922148438,35.1561891914063],[113.187345,35.1638430000001],[113.210135527344,35.172212140625],[113.22197390625,35.1584706855469],[113.31271609375,35.1392153144532],[113.340574980469,35.1236721015625],[113.355638457031,35.1574306464844],[113.379381132813,35.1298720527344],[113.432066679688,35.1592665839844],[113.457345,35.1572365546875],[113.497178984375,35.1604372382813],[113.517345,35.183843],[113.523260527344,35.1797585273438]],[[113.425152617188,35.1372658515625],[113.437345,35.1338430000001],[113.433922148438,35.1460353828126],[113.425152617188,35.1372658515625]]]]}},{"type":"Feature","properties":{"name":"修武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.433922148438,35.1460353828126],[113.437345,35.1338430000001],[113.425152617188,35.1372658515625],[113.433922148438,35.1460353828126]]],[[[113.287345,35.4338430000001],[113.290767851563,35.4216506171876],[113.299537382813,35.4304201484375],[113.292760039063,35.4586708808594],[113.291180449219,35.4783473945313],[113.311363554688,35.4799697089844],[113.332347441406,35.4682619453125],[113.377345,35.493843],[113.38298953125,35.4894863105469],[113.393153105469,35.4646511054688],[113.460916777344,35.4135024238281],[113.463084746094,35.3988430000001],[113.461549101563,35.388452375],[113.473519316406,35.368608625],[113.454388457031,35.3538430000001],[113.473160429688,35.3393544746094],[113.47095828125,35.3244509101563],[113.48170046875,35.2981996894531],[113.517345,35.293843],[113.509657011719,35.2599990058594],[113.54107546875,35.2348390937501],[113.511441679688,35.2111074042969],[113.512967558594,35.198843],[113.511666289063,35.1883901191406],[113.517345,35.183843],[113.497178984375,35.1604372382813],[113.457345,35.1572365546875],[113.432066679688,35.1592665839844],[113.379381132813,35.1298720527344],[113.355638457031,35.1574306464844],[113.340574980469,35.1236721015625],[113.31271609375,35.1392153144532],[113.22197390625,35.1584706855469],[113.210135527344,35.172212140625],[113.187345,35.1638430000001],[113.187345,35.183843],[113.197345,35.183843],[113.241329375,35.1951308417969],[113.247345,35.2038430000001],[113.274801054688,35.2063869453125],[113.289888945313,35.2212990546876],[113.307345,35.223843],[113.331500273438,35.2147670722657],[113.351883574219,35.2393056464844],[113.372806425781,35.2483803535156],[113.386419707031,35.2647682929688],[113.402806425781,35.2783803535157],[113.416419707031,35.2947682929688],[113.432806425781,35.3083803535157],[113.441883574219,35.3366420722656],[113.379659453125,35.3549025703125],[113.3422278125,35.32796409375],[113.325650664063,35.3479201484375],[113.297345,35.3138430000001],[113.270142851563,35.3068617988282],[113.243260527344,35.2679274726563],[113.237345,35.263843],[113.221429472656,35.2879274726562],[113.207345,35.3138430000001],[113.197137480469,35.3477443671875],[113.137345,35.3538430000001],[113.142393828125,35.373520734375],[113.165557890625,35.3895131660157],[113.161073027344,35.4095131660157],[113.173260527344,35.4179274726563],[113.191636992188,35.450122296875],[113.202386503906,35.4477126289063],[113.227345,35.453843],[113.255513945313,35.4420119453125],[113.287345,35.4338430000001]],[[113.317345,35.453843],[113.313922148438,35.4660353828125],[113.305152617188,35.4572658515626],[113.317345,35.453843]]]]}},{"type":"Feature","properties":{"name":"中站区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.203856230469,35.1993471503907],[113.197345,35.183843],[113.187345,35.183843],[113.162506132813,35.1894850898438],[113.147345,35.1875991035156],[113.126727324219,35.1901638007813],[113.088292265625,35.253442609375],[113.10896609375,35.2886110664063],[113.127345,35.333843],[113.137345,35.333843],[113.137345,35.3538430000001],[113.197137480469,35.3477443671875],[113.207345,35.3138430000001],[113.181429472656,35.2997585273438],[113.169312773438,35.2673732734375],[113.181029082031,35.2151088691407],[113.203856230469,35.1993471503907]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"范县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.703638945313,35.8996169257813],[115.7000403125,35.8835732246094],[115.707345,35.8538430000001],[115.694537382813,35.8488430000001],[115.707345,35.843843],[115.707345,35.833843],[115.727345,35.833843],[115.70170046875,35.7994863105469],[115.684898710938,35.75843284375],[115.647345,35.753843],[115.552486601563,35.7286391425781],[115.532345,35.7294374824219],[115.4933215625,35.7278908515626],[115.429478789063,35.6408498359376],[115.407345,35.633843],[115.39142703125,35.6379274726563],[115.382691679688,35.6505812812501],[115.361690703125,35.6369057441407],[115.350758085938,35.6795082832031],[115.37498171875,35.6885707832032],[115.352115507813,35.7043569160157],[115.34326296875,35.7503102851563],[115.357345,35.783843],[115.383531523438,35.7976552558594],[115.451158476563,35.8600307441407],[115.4894934375,35.8808998847656],[115.478043242188,35.9176552558595],[115.493531523438,35.9100307441407],[115.502511015625,35.883676984375],[115.554718046875,35.9014675117188],[115.581158476563,35.9200307441406],[115.647345,35.9238430000001],[115.67326296875,35.9197585273438],[115.68142703125,35.9079274726563],[115.703638945313,35.8996169257813]]]]}},{"type":"Feature","properties":{"name":"华龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.221793242188,35.7693959785157],[115.202896757813,35.7582900214844],[115.16904421875,35.7440248847657],[115.132345,35.7655995917969],[115.09537234375,35.7438649726563],[115.080079375,35.724770734375],[114.993546171875,35.7355348945313],[114.979410429688,35.68608909375],[114.917345,35.693843],[114.911881132813,35.6983803535157],[114.902808867188,35.7193056464844],[114.88302859375,35.753843],[114.930538359375,35.7831496406251],[114.941881132813,35.8093056464844],[114.947345,35.8138430000001],[115.122960234375,35.8093947578125],[115.24513796875,35.7941127753907],[115.237345,35.7738430000001],[115.221793242188,35.7693959785157]]]]}},{"type":"Feature","properties":{"name":"南乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.207345,36.0038430000001],[115.216920195313,35.9794863105469],[115.193306914063,35.9930055976563],[115.207345,36.0038430000001]]],[[[115.207345,36.0038430000001],[115.201676054688,36.0120558906251],[115.17033328125,36.0050295234375],[115.148995390625,36.0359377265625],[115.111900664063,36.027622296875],[115.09326296875,36.0397585273438],[115.03142703125,36.0479274726562],[115.007345,36.0838430000001],[115.03013796875,36.0995790839844],[115.045377226563,36.1403127265625],[115.04107546875,36.1595131660156],[115.05326296875,36.1679274726563],[115.061676054688,36.1801137519532],[115.090406523438,36.1736733222657],[115.117345,36.213843],[115.14326296875,36.2097585273438],[115.1570715625,36.1897585273438],[115.18326296875,36.1979274726563],[115.192476835938,36.2112770820313],[115.24154421875,36.1929177070312],[115.27142703125,36.1379274726563],[115.295709257813,36.128843],[115.28970828125,36.1020729804688],[115.323975859375,36.0797585273438],[115.358678007813,36.1012868476563],[115.382271757813,36.13546409375],[115.402345,36.1399636054688],[115.414620390625,36.137212140625],[115.44326296875,36.1479274726563],[115.451793242188,36.1707289863281],[115.477345,36.1538430000001],[115.470435820313,36.0986098457032],[115.440611601563,36.0577797675782],[115.44490359375,36.0232802558594],[115.431422148438,36.0064443183594],[115.387345,35.993843],[115.38197390625,35.9984706855469],[115.312135039063,36.0093056464844],[115.288111601563,35.9959011054688],[115.207345,36.0038430000001]]]]}},{"type":"Feature","properties":{"name":"清丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.207345,36.0038430000001],[115.193306914063,35.9930055976563],[115.216920195313,35.9794863105469],[115.288111601563,35.9959011054688],[115.312135039063,36.0093056464844],[115.38197390625,35.9984706855469],[115.387345,35.993843],[115.38298953125,35.9781996894532],[115.354205351563,35.9664174628907],[115.350865507813,35.943843],[115.357891875,35.89632346875],[115.339605742188,35.8660109687501],[115.327345,35.793843],[115.302349882813,35.7773268867187],[115.282345,35.7903554511719],[115.26326296875,35.7779274726563],[115.237345,35.7738430000001],[115.24513796875,35.7941127753907],[115.122960234375,35.8093947578125],[114.947345,35.8138430000001],[114.943531523438,35.8200307441407],[114.931158476563,35.8276552558594],[114.923531523438,35.8453322578125],[114.960220976563,35.8679384589844],[114.9740246875,35.9084474921876],[114.969176054688,35.9240114570312],[114.983922148438,35.9688430000001],[114.970777617188,36.0088112617188],[114.977125273438,36.029184796875],[114.936666289063,36.0387123847656],[114.927345,36.053843],[114.962022734375,36.0700356269532],[114.980264921875,36.0659474921876],[115.007345,36.0838430000001],[115.03142703125,36.0479274726562],[115.09326296875,36.0397585273438],[115.111900664063,36.027622296875],[115.148995390625,36.0359377265625],[115.17033328125,36.0050295234375],[115.201676054688,36.0120558906251],[115.207345,36.0038430000001]]]]}},{"type":"Feature","properties":{"name":"台前县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.707345,35.8538430000001],[115.707345,35.843843],[115.694537382813,35.8488430000001],[115.707345,35.8538430000001]]],[[[115.707345,35.8538430000001],[115.7000403125,35.8835732246094],[115.703638945313,35.8996169257813],[115.68142703125,35.9079274726563],[115.67326296875,35.9197585273438],[115.647345,35.9238430000001],[115.647345,35.9338430000001],[115.67298953125,35.9381996894532],[115.695264921875,35.9670571113282],[115.717345,35.9703212714844],[115.73673953125,35.9674550605469],[115.766324492188,35.9795644355469],[115.787838164063,36.0074379707032],[115.817345,36.0117983222656],[115.850767851563,36.0068593574219],[115.87170046875,36.0194863105469],[115.92298953125,36.0281996894531],[115.95170046875,36.0394863105469],[115.995201445313,36.0516005683594],[116.061441679688,36.1077443671875],[116.097345,36.113843],[116.081685820313,36.0791567207032],[116.083624296875,36.06355003125],[116.051793242188,36.0093959785157],[116.047345,35.9738430000001],[116.032608671875,35.968305890625],[115.992345,35.9724098945313],[115.900386992188,35.9630373359375],[115.90388796875,35.9286977363281],[115.853267851563,35.913843],[115.885933867188,35.8867067695313],[115.877345,35.863843],[115.861158476563,35.8600307441407],[115.839586210938,35.8448842597657],[115.787511015625,35.8620107246094],[115.762594023438,35.8542482734375],[115.75189578125,35.8228456855469],[115.727345,35.833843],[115.72062625,35.8471242500001],[115.707345,35.8538430000001]]]]}},{"type":"Feature","properties":{"name":"濮阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.357345,35.783843],[115.34326296875,35.7503102851563],[115.352115507813,35.7043569160157],[115.37498171875,35.6885707832032],[115.350758085938,35.6795082832031],[115.361690703125,35.6369057441407],[115.382691679688,35.6505812812501],[115.39142703125,35.6379274726563],[115.407345,35.633843],[115.401651640625,35.6003224921876],[115.333902617188,35.5480312324219],[115.353404570313,35.4984316230469],[115.327345,35.483843],[115.319117460938,35.4933950019532],[115.226431914063,35.4167299628906],[115.167345,35.423843],[115.084742460938,35.4154164863282],[115.068878203125,35.3798708320313],[115.02197390625,35.3692153144532],[115.01271609375,35.3384706855469],[115.007345,35.333843],[114.99142703125,35.3379274726563],[114.96181765625,35.3572084785157],[114.947345,35.383843],[114.952808867188,35.3883803535157],[114.961881132813,35.3993056464844],[114.972808867188,35.4083803535156],[114.981881132813,35.4217678046875],[114.960855742188,35.439233625],[114.965079375,35.4806508613282],[114.933326445313,35.4774135566406],[114.964674101563,35.5209767890626],[114.959097929688,35.5756935859376],[114.897730742188,35.5893007636719],[114.869581328125,35.6231862617188],[114.877345,35.643843],[114.910416289063,35.653051984375],[114.917345,35.693843],[114.979410429688,35.68608909375],[114.993546171875,35.7355348945313],[115.080079375,35.724770734375],[115.09537234375,35.7438649726563],[115.132345,35.7655995917969],[115.16904421875,35.7440248847657],[115.202896757813,35.7582900214844],[115.221793242188,35.7693959785157],[115.237345,35.7738430000001],[115.26326296875,35.7779274726563],[115.282345,35.7903554511719],[115.302349882813,35.7773268867187],[115.327345,35.793843],[115.340704375,35.787202375],[115.357345,35.783843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长葛市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.877345,34.3338430000001],[113.897669707031,34.2971779609375],[113.933897734375,34.3034145332031],[113.988326445313,34.2659682441406],[114.007454863281,34.2402541328126],[114.084835234375,34.2535756660157],[114.111610136719,34.2081081367187],[114.127345,34.203843],[114.135413847656,34.1709889960938],[114.067345,34.153843],[114.024029570313,34.1617446113282],[113.992623320313,34.1792665839844],[113.966182890625,34.1771425605469],[113.920565214844,34.1516909003907],[113.922847929688,34.1800881171875],[113.902345,34.1784413886719],[113.892066679688,34.1792665839844],[113.872623320313,34.1684194160157],[113.837345,34.1712538886719],[113.722137480469,34.1619960761719],[113.669874296875,34.1476930976563],[113.647345,34.1738430000001],[113.643045683594,34.2033815742188],[113.575111113281,34.2265322089844],[113.595689726563,34.2724733710938],[113.612345,34.2672853828125],[113.630657988281,34.2729897285156],[113.637345,34.283843],[113.654783964844,34.2769875312501],[113.677345,34.2803212714844],[113.692857695313,34.2780287910157],[113.725689726563,34.3205654121094],[113.766832304688,34.3144850898438],[113.795889921875,34.3320131660156],[113.840804472656,34.3253762031251],[113.877345,34.3338430000001]]]]}},{"type":"Feature","properties":{"name":"魏都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.857855253906,34.0737026191407],[113.881790800781,34.0058022285156],[113.835277128906,34.0115883613282],[113.827345,33.9838430000001],[113.821790800781,33.9882900214844],[113.806143828125,34.0078322578126],[113.76697390625,33.9848073554688],[113.752899199219,33.9942665839844],[113.774476347656,34.0309743476563],[113.744205351563,34.0272084785157],[113.732899199219,34.0322743964844],[113.761187773438,34.0549269843751],[113.79302859375,34.068344953125],[113.789949980469,34.0930934882813],[113.857855253906,34.0737026191407]]]]}},{"type":"Feature","properties":{"name":"襄城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.717345,33.853843],[113.717345,33.8738430000001],[113.727345,33.8738430000001],[113.727345,33.853843],[113.717345,33.853843]]],[[[113.717345,33.853843],[113.726058378906,33.8425551582032],[113.754110136719,33.8209023261719],[113.74298953125,33.7681996894532],[113.723226347656,33.7529445625],[113.757345,33.733843],[113.747345,33.7138430000001],[113.722003203125,33.6970961738281],[113.712691679688,33.7105812812501],[113.687669707031,33.6942861152344],[113.657345,33.7010842109376],[113.642345,33.6977223945312],[113.632345,33.6999636054688],[113.599842558594,33.6926772285156],[113.603656035156,33.7096962714844],[113.577345,33.7138430000001],[113.58373171875,33.7290468574219],[113.567345,33.7538430000001],[113.579537382813,33.7572658515625],[113.570767851563,33.7660353828125],[113.567345,33.7538430000001],[113.493592558594,33.7610951972656],[113.48271609375,33.7484706855469],[113.467345,33.743843],[113.451429472656,33.7479274726563],[113.443260527344,33.7597585273438],[113.411429472656,33.7679274726563],[113.366898222656,33.7866310859375],[113.383646269531,33.7981923652344],[113.377345,33.823843],[113.373531523438,33.8500307441407],[113.360706816406,33.8890248847657],[113.380657988281,33.9335610175781],[113.403531523438,33.9476552558594],[113.415125761719,33.9664723945313],[113.407345,33.9838430000001],[113.468428984375,34.0219704414063],[113.531373320313,34.0169118476563],[113.542345,34.0296462226563],[113.55525515625,34.0146620917969],[113.597345,34.0238430000001],[113.613260527344,33.9997585273438],[113.624505644531,33.9697035957032],[113.672589140625,33.9573647285156],[113.684586210938,33.903843],[113.681073027344,33.8881728339844],[113.693616972656,33.8795131660156],[113.6888684375,33.8583315253907],[113.717345,33.853843]]]]}},{"type":"Feature","properties":{"name":"许昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.922847929688,34.1800881171875],[113.920565214844,34.1516909003907],[113.966182890625,34.1771425605469],[113.992623320313,34.1792665839844],[114.024029570313,34.1617446113282],[114.067345,34.153843],[114.061512480469,34.1183437324219],[114.086385527344,34.0991457343751],[114.044354277344,34.0874404121094],[114.041439238281,34.0677077460938],[114.06170046875,34.0181996894532],[114.074659453125,33.9967165351563],[114.06298953125,33.9681996894531],[114.047345,33.963843],[114.041143828125,33.9855348945313],[113.982345,33.9782216621094],[113.962345,33.980708234375],[113.936261015625,33.977464826172],[113.912799101563,33.9481642890626],[113.902345,33.9494643378906],[113.887345,33.9475991035157],[113.872345,33.9494643378906],[113.859359160156,33.9478493476563],[113.862994414063,33.9186257148438],[113.850457792969,33.8747243476562],[113.792298613281,33.881958234375],[113.727345,33.8738430000001],[113.717345,33.8738430000001],[113.717345,33.853843],[113.6888684375,33.8583315253907],[113.693616972656,33.8795131660156],[113.681073027344,33.8881728339844],[113.684586210938,33.903843],[113.672589140625,33.9573647285156],[113.624505644531,33.9697035957032],[113.613260527344,33.9997585273438],[113.597345,34.0238430000001],[113.591395292969,34.0389784980469],[113.604327421875,34.0604201484375],[113.601510039063,34.0794936347656],[113.613038359375,34.1473635078125],[113.647345,34.1738430000001],[113.669874296875,34.1476930976563],[113.722137480469,34.1619960761719],[113.837345,34.1712538886719],[113.872623320313,34.1684194160157],[113.892066679688,34.1792665839844],[113.902345,34.1784413886719],[113.922847929688,34.1800881171875]],[[113.732899199219,34.0322743964844],[113.744205351563,34.0272084785157],[113.774476347656,34.0309743476563],[113.752899199219,33.9942665839844],[113.76697390625,33.9848073554688],[113.806143828125,34.0078322578126],[113.821790800781,33.9882900214844],[113.827345,33.9838430000001],[113.835277128906,34.0115883613282],[113.881790800781,34.0058022285156],[113.857855253906,34.0737026191407],[113.789949980469,34.0930934882813],[113.79302859375,34.068344953125],[113.761187773438,34.0549269843751],[113.732899199219,34.0322743964844]]]]}},{"type":"Feature","properties":{"name":"禹州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.402899199219,34.3693959785157],[113.411846953125,34.3481594062501],[113.422628203125,34.3494997382813],[113.454515410156,34.3372426582032],[113.507345,34.343843],[113.512115507813,34.3235866523438],[113.542345,34.3141713691407],[113.573189726563,34.3237783027344],[113.623250761719,34.3067189765625],[113.637345,34.283843],[113.630657988281,34.2729897285156],[113.612345,34.2672853828125],[113.595689726563,34.2724733710938],[113.575111113281,34.2265322089844],[113.643045683594,34.2033815742188],[113.647345,34.1738430000001],[113.613038359375,34.1473635078125],[113.601510039063,34.0794936347656],[113.604327421875,34.0604201484375],[113.591395292969,34.0389784980469],[113.597345,34.0238430000001],[113.55525515625,34.0146620917969],[113.542345,34.0296462226563],[113.531373320313,34.0169118476563],[113.468428984375,34.0219704414063],[113.407345,33.9838430000001],[113.40298953125,33.9894863105469],[113.390867949219,33.998843],[113.403519316406,34.0086086250001],[113.385233183594,34.038921125],[113.348426542969,34.0481996894531],[113.332345,34.0273647285156],[113.319427519531,34.0441005683594],[113.323167753906,34.0694130683594],[113.283748808594,34.0855471015625],[113.27298953125,34.0994863105469],[113.248426542969,34.1181996894531],[113.229403105469,34.0935536933594],[113.202735625,34.1096401191407],[113.14978640625,34.1018154121094],[113.103482695313,34.1618019843751],[113.097345,34.183843],[113.106773710938,34.2062905097657],[113.061041289063,34.2180275703126],[113.063465605469,34.228843],[113.060186796875,34.2434743476563],[113.071429472656,34.2597585273438],[113.077345,34.263843],[113.11298953125,34.2681996894531],[113.167257109375,34.2807741523438],[113.186058378906,34.3051308417969],[113.230955839844,34.3397866035156],[113.250767851563,34.3368593574219],[113.27170046875,34.3494863105469],[113.30298953125,34.3581996894531],[113.31170046875,34.3894863105469],[113.317345,34.4038430000001],[113.356832304688,34.3969716621094],[113.371790800781,34.3782900214844],[113.402899199219,34.3693959785157]]]]}},{"type":"Feature","properties":{"name":"鄢陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.322064238281,33.8117568183594],[114.286805449219,33.7696840644531],[114.204373808594,33.7992617011719],[114.192252226563,33.7985390449219],[114.147345,33.803843],[114.158121367188,33.8294985175782],[114.107825957031,33.8642238593751],[114.123565703125,33.8883962226563],[114.117015410156,33.9176149726563],[114.081429472656,33.9379274726563],[114.073260527344,33.9497585273438],[114.051429472656,33.9579274726563],[114.047345,33.963843],[114.06298953125,33.9681996894531],[114.074659453125,33.9967165351563],[114.06170046875,34.0181996894532],[114.041439238281,34.0677077460938],[114.044354277344,34.0874404121094],[114.086385527344,34.0991457343751],[114.061512480469,34.1183437324219],[114.067345,34.153843],[114.135413847656,34.1709889960938],[114.127345,34.203843],[114.191578398438,34.2147548652344],[114.20170046875,34.2394863105469],[114.257345,34.243843],[114.261519804688,34.2380178046876],[114.275186796875,34.2282228828126],[114.267406035156,34.188843],[114.279447050781,34.1279042792969],[114.255347929688,34.0899477363282],[114.271519804688,34.0480178046876],[114.283170195313,34.0296681953125],[114.291519804688,34.0080178046876],[114.305186796875,33.9982228828126],[114.301356230469,33.978843],[114.303333769531,33.968843],[114.293741484375,33.9203017402344],[114.307345,33.863843],[114.301942167969,33.8487856269532],[114.322064238281,33.8117568183594]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"召陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.187345,33.4538430000001],[114.187345,33.433843],[114.173392363281,33.443843],[114.187345,33.4538430000001]]],[[[114.187345,33.4538430000001],[114.183260527344,33.4597585273438],[114.135513945313,33.4720119453125],[114.123260527344,33.4897585273438],[114.093206816406,33.5010048652344],[114.087345,33.523843],[114.099537382813,33.5272658515625],[114.090767851563,33.5360353828125],[114.087345,33.523843],[114.062386503906,33.5177126289063],[114.045936308594,33.5214003730469],[114.037345,33.5338430000001],[114.037345,33.583843],[114.066883574219,33.5881435371094],[114.084469023438,33.6397475410157],[114.107345,33.653843],[114.14298953125,33.6581996894531],[114.151832304688,33.6696572089844],[114.1627746875,33.6680409980469],[114.200282011719,33.6958486152344],[114.247345,33.703843],[114.25197390625,33.6884706855469],[114.263148222656,33.6788430000001],[114.250172148438,33.6676638007813],[114.26197390625,33.6284706855469],[114.272996855469,33.6189736152344],[114.255491972656,33.5876003242188],[114.27197390625,33.5684706855469],[114.285504179688,33.5568141914062],[114.277345,33.473843],[114.239014921875,33.458774640625],[114.187345,33.4538430000001]]]]}},{"type":"Feature","properties":{"name":"临颍县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.041143828125,33.9855348945313],[114.047345,33.963843],[114.051429472656,33.9579274726563],[114.073260527344,33.9497585273438],[114.081429472656,33.9379274726563],[114.117015410156,33.9176149726563],[114.123565703125,33.8883962226563],[114.107825957031,33.8642238593751],[114.158121367188,33.8294985175782],[114.147345,33.803843],[114.131517363281,33.7994362617187],[114.136234160156,33.7675295234375],[114.122345,33.7695815253907],[114.104718046875,33.7669765449219],[114.087345,33.7238430000001],[114.008492460938,33.7303969550782],[113.942489042969,33.7184291816407],[113.929742460938,33.7194533515625],[113.910079375,33.7422768378907],[113.852669707031,33.7376638007813],[113.833963652344,33.7593752265625],[113.819742460938,33.7582326484375],[113.80271609375,33.7384706855469],[113.757345,33.733843],[113.723226347656,33.7529445625],[113.74298953125,33.7681996894532],[113.754110136719,33.8209023261719],[113.726058378906,33.8425551582032],[113.717345,33.853843],[113.727345,33.853843],[113.727345,33.8738430000001],[113.792298613281,33.881958234375],[113.850457792969,33.8747243476562],[113.862994414063,33.9186257148438],[113.859359160156,33.9478493476563],[113.872345,33.9494643378906],[113.887345,33.9475991035157],[113.902345,33.9494643378906],[113.912799101563,33.9481642890626],[113.936261015625,33.977464826172],[113.962345,33.980708234375],[113.982345,33.9782216621094],[114.041143828125,33.9855348945313]]]]}},{"type":"Feature","properties":{"name":"舞阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.753260527344,33.7097585273438],[113.762127714844,33.6643495917969],[113.783260527344,33.6497585273438],[113.797767363281,33.6109902167969],[113.817615996094,33.6065407539063],[113.847345,33.613843],[113.853089628906,33.5788771796876],[113.850867949219,33.5638430000001],[113.857108183594,33.5216127753906],[113.82298953125,33.5081996894531],[113.78298953125,33.4970607734375],[113.79170046875,33.4581996894532],[113.797345,33.4538430000001],[113.793985625,33.4372023750001],[113.710704375,33.4304836250001],[113.703336210938,33.4159169746094],[113.692330351563,33.4212917304688],[113.677345,33.4138430000001],[113.666878691406,33.4279116035156],[113.578245878906,33.4069667792969],[113.557345,33.4105641914063],[113.541776152344,33.4078847480469],[113.527345,33.4272866035156],[113.512740507813,33.4076540351563],[113.483079863281,33.4195778632813],[113.457345,33.423843],[113.478719511719,33.4966774726563],[113.494891386719,33.51011253125],[113.52361453125,33.5071840644531],[113.541883574219,33.5493056464844],[113.552886992188,33.568520734375],[113.550816679688,33.588843],[113.630882597656,33.6235671210938],[113.581883574219,33.6583803535156],[113.577345,33.7138430000001],[113.603656035156,33.7096962714844],[113.599842558594,33.6926772285156],[113.632345,33.6999636054688],[113.642345,33.6977223945312],[113.657345,33.7010842109376],[113.687669707031,33.6942861152344],[113.712691679688,33.7105812812501],[113.722003203125,33.6970961738281],[113.747345,33.7138430000001],[113.753260527344,33.7097585273438]]]]}},{"type":"Feature","properties":{"name":"郾城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.897345,33.593843],[113.909537382813,33.5904201484376],[113.900767851563,33.5816506171876],[113.897345,33.593843]]],[[[113.897345,33.593843],[113.879888945313,33.5963869453125],[113.864801054688,33.6112990546875],[113.847345,33.613843],[113.817615996094,33.6065407539063],[113.797767363281,33.6109902167969],[113.783260527344,33.6497585273438],[113.762127714844,33.6643495917969],[113.753260527344,33.7097585273438],[113.747345,33.7138430000001],[113.757345,33.733843],[113.80271609375,33.7384706855469],[113.819742460938,33.7582326484375],[113.833963652344,33.7593752265625],[113.852669707031,33.7376638007813],[113.910079375,33.7422768378907],[113.929742460938,33.7194533515625],[113.942489042969,33.7184291816407],[114.008492460938,33.7303969550782],[114.087345,33.7238430000001],[114.093475371094,33.6988845039063],[114.091073027344,33.6881728339844],[114.103260527344,33.6797585273438],[114.107345,33.653843],[114.084469023438,33.6397475410157],[114.066883574219,33.5881435371094],[114.037345,33.583843],[113.981656523438,33.5793849921875],[113.983343535156,33.5658119941407],[113.960548125,33.5493959785157],[113.964210234375,33.578843],[113.941790800781,33.5882900214844],[113.908546171875,33.6078322578125],[113.897345,33.593843]]]]}},{"type":"Feature","properties":{"name":"源汇区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.897345,33.593843],[113.900767851563,33.5816506171876],[113.909537382813,33.5904201484376],[113.908546171875,33.6078322578125],[113.941790800781,33.5882900214844],[113.964210234375,33.578843],[113.960548125,33.5493959785157],[113.983343535156,33.5658119941407],[113.981656523438,33.5793849921875],[114.037345,33.583843],[114.037345,33.5338430000001],[114.022628203125,33.5281862617188],[114.011846953125,33.52952659375],[114.001890898438,33.5058998847657],[113.936800566406,33.4663649726563],[113.902899199219,33.4793959785157],[113.866922636719,33.4882900214844],[113.818717070313,33.4599538398438],[113.797345,33.4538430000001],[113.79170046875,33.4581996894532],[113.78298953125,33.4970607734375],[113.82298953125,33.5081996894531],[113.857108183594,33.5216127753906],[113.850867949219,33.5638430000001],[113.853089628906,33.5788771796876],[113.847345,33.613843],[113.864801054688,33.6112990546875],[113.879888945313,33.5963869453125],[113.897345,33.593843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"湖滨区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.397345,34.813843],[111.390203886719,34.7948403144531],[111.392901640625,34.7683913398438],[111.310186796875,34.7591152167969],[111.333538847656,34.7489882636719],[111.321326933594,34.738843],[111.341883574219,34.7217678046876],[111.305125761719,34.7080495429688],[111.271568632813,34.7114699531251],[111.27361453125,34.6913906074219],[111.258958769531,34.6737465644531],[111.212806425781,34.7293056464844],[111.191883574219,34.7383803535157],[111.182806425781,34.7493056464844],[111.161883574219,34.7583803535156],[111.148270292969,34.7747682929688],[111.137345,34.7838430000001],[111.14513796875,34.8142104316407],[111.230094023438,34.7933425117187],[111.248992949219,34.8207155585938],[111.288702421875,34.8118129707032],[111.337345,34.8322426582032],[111.371429472656,34.8179274726563],[111.397345,34.813843]]]]}},{"type":"Feature","properties":{"name":"灵宝市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.027345,34.283843],[111.039537382813,34.2804201484375],[111.030767851563,34.2716506171876],[111.027345,34.283843]]],[[[111.027345,34.283843],[110.989039335938,34.2771767402344],[110.912984648438,34.2554592109375],[110.902899199219,34.2793959785157],[110.886239042969,34.2927370429688],[110.862210722656,34.3227431464844],[110.84916140625,34.2184047675781],[110.8792590625,34.1943019843751],[110.821790800781,34.1593959785157],[110.812899199219,34.1482900214844],[110.791790800781,34.1393959785157],[110.778970976563,34.1233840156251],[110.722899199219,34.1393959785157],[110.671790800781,34.1482900214844],[110.637345,34.163843],[110.60170046875,34.1781996894532],[110.58298953125,34.1894863105469],[110.55170046875,34.1981996894531],[110.54298953125,34.2094863105469],[110.527088652344,34.2217604804688],[110.501954375,34.2180458808594],[110.473631621094,34.2351308417969],[110.44170046875,34.2481996894532],[110.417996855469,34.2789089179688],[110.469288359375,34.3184987617188],[110.49298953125,34.3281996894532],[110.50170046875,34.3427614570312],[110.48170046875,34.3581996894531],[110.462923613281,34.4096669746094],[110.437515898438,34.4059133125],[110.417345,34.413843],[110.407345,34.413843],[110.398641386719,34.4427480292969],[110.353114042969,34.5243508125],[110.393355742188,34.5590224433594],[110.3616809375,34.5685585761719],[110.377345,34.603843],[110.409342070313,34.5918202949219],[110.480931425781,34.6118349433594],[110.533890410156,34.5815029121094],[110.572806425781,34.5983803535156],[110.596553984375,34.6119814277344],[110.705228300781,34.6009047675781],[110.725494414063,34.6476357246094],[110.778138457031,34.6530007148438],[110.822323027344,34.6180312324219],[110.851883574219,34.6393056464844],[110.890692167969,34.6561367011719],[110.902806425781,34.6883803535156],[110.911883574219,34.7293056464844],[110.937345,34.733843],[110.941429472656,34.7279274726563],[110.953260527344,34.7197585273438],[110.96509890625,34.7026125312501],[111.003765898438,34.7277919746094],[111.027345,34.733843],[111.035096464844,34.7127358222657],[111.018878203125,34.6836696601563],[111.03197390625,34.6684706855469],[111.06271609375,34.6492153144532],[111.076600371094,34.6330995917969],[111.100980253906,34.612094953125],[111.113385039063,34.5667763496094],[111.109832792969,34.522563703125],[111.12197390625,34.508470685547],[111.163187285156,34.4788771796875],[111.142733183594,34.4612538886719],[111.18271609375,34.4492153144532],[111.187345,34.423843],[111.181219511719,34.3999697089844],[111.141429472656,34.3897585273438],[111.137345,34.3638430000001],[111.101846953125,34.3580117011719],[111.085928984375,34.3786342597657],[111.052940703125,34.3881996894531],[111.04298953125,34.3181996894531],[111.027345,34.283843]]]]}},{"type":"Feature","properties":{"name":"卢氏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.027345,34.283843],[111.030767851563,34.2716506171876],[111.039537382813,34.2804201484375],[111.04298953125,34.3181996894531],[111.052940703125,34.3881996894531],[111.085928984375,34.3786342597657],[111.101846953125,34.3580117011719],[111.137345,34.3638430000001],[111.141790800781,34.3582900214844],[111.152899199219,34.3493959785156],[111.161790800781,34.3382900214844],[111.177366972656,34.3258180976563],[111.19334109375,34.2986440253906],[111.181790800781,34.2893959785157],[111.172899199219,34.2282900214844],[111.161007109375,34.2187673164063],[111.196776152344,34.1970400214844],[111.212713652344,34.1771401191406],[111.261986113281,34.1481764960938],[111.279251738281,34.1503237128907],[111.292899199219,34.1393959785157],[111.309381132813,34.1188112617188],[111.352899199219,34.1093959785156],[111.357345,34.0938430000001],[111.339881621094,34.0545034003906],[111.345120878906,33.9892971015625],[111.292020292969,33.9276638007813],[111.223096953125,33.9332021308594],[111.221942167969,33.918843],[111.223551054688,33.898843],[111.201561308594,33.8890322089844],[111.25271609375,33.8192153144531],[111.257345,33.803843],[111.24263796875,33.7980605292969],[111.223922148438,33.8008266425782],[111.195845976563,33.783891828125],[111.179837675781,33.6896437812501],[111.125660429688,33.6782118964844],[111.143377714844,33.648843],[111.13170046875,33.6294863105469],[111.12298953125,33.6081996894532],[111.10406375,33.5768251777344],[111.060247832031,33.558891828125],[111.007345,33.553843],[111.002899199219,33.5693959785157],[110.970330839844,33.6101161933594],[110.869207792969,33.639028546875],[110.852899199219,33.6593959785156],[110.831790800781,33.6682900214844],[110.81978640625,33.6832802558594],[110.824053984375,33.7175795722656],[110.807345,33.743843],[110.780189238281,33.7909438300782],[110.72197390625,33.8084706855469],[110.70572390625,33.8273317695313],[110.668646269531,33.8505544257813],[110.642345,33.8484413886719],[110.632345,33.8492446113281],[110.620726347656,33.8483107734376],[110.60271609375,33.8692153144531],[110.597345,33.8738430000001],[110.592625761719,33.8791237617188],[110.577647734375,33.8925075507812],[110.612625761719,33.9085622382813],[110.629595976563,33.9275551582032],[110.666890898438,33.951274640625],[110.624195585938,34.029847638672],[110.592166777344,34.0279384589845],[110.582625761719,34.0856349921875],[110.637345,34.163843],[110.671790800781,34.1482900214844],[110.722899199219,34.1393959785157],[110.778970976563,34.1233840156251],[110.791790800781,34.1393959785157],[110.812899199219,34.1482900214844],[110.821790800781,34.1593959785157],[110.8792590625,34.1943019843751],[110.84916140625,34.2184047675781],[110.862210722656,34.3227431464844],[110.886239042969,34.2927370429688],[110.902899199219,34.2793959785157],[110.912984648438,34.2554592109375],[110.989039335938,34.2771767402344],[111.027345,34.283843]]]]}},{"type":"Feature","properties":{"name":"陕县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.557345,34.8238430000001],[111.545152617188,34.8204201484375],[111.553922148438,34.8116506171876],[111.567135039063,34.8170839667969],[111.573465605469,34.7888430000001],[111.567633085938,34.7628249335937],[111.595318632813,34.7271047187501],[111.589705839844,34.7020729804688],[111.614459257813,34.6859548164063],[111.643685332031,34.6925063300782],[111.684459257813,34.6659548164063],[111.710560332031,34.6718056464844],[111.716827421875,34.643843],[111.711073027344,34.6181728339844],[111.723260527344,34.6097585273438],[111.727345,34.603843],[111.701429472656,34.5897585273438],[111.693260527344,34.5779274726563],[111.665235625,34.5674404121094],[111.687747832031,34.5328688789063],[111.615538359375,34.5552529121094],[111.58509890625,34.57507346875],[111.573016386719,34.5575722480469],[111.554459257813,34.5617311835938],[111.532791777344,34.547622296875],[111.522345,34.5499636054688],[111.512345,34.5477223945313],[111.50181765625,34.5500820136719],[111.463260527344,34.5179274726563],[111.380103789063,34.4737404609375],[111.352345,34.4799636054688],[111.307037382813,34.4698061347656],[111.289249296875,34.4955678535157],[111.258992949219,34.4517482734375],[111.212074003906,34.4622670722657],[111.203260527344,34.4279274726563],[111.187345,34.423843],[111.18271609375,34.4492153144532],[111.142733183594,34.4612538886719],[111.163187285156,34.4788771796875],[111.12197390625,34.508470685547],[111.109832792969,34.522563703125],[111.113385039063,34.5667763496094],[111.100980253906,34.612094953125],[111.076600371094,34.6330995917969],[111.06271609375,34.6492153144532],[111.03197390625,34.6684706855469],[111.018878203125,34.6836696601563],[111.035096464844,34.7127358222657],[111.027345,34.733843],[111.035084257813,34.7438698554688],[111.10298953125,34.7581996894532],[111.137345,34.7838430000001],[111.148270292969,34.7747682929688],[111.161883574219,34.7583803535156],[111.182806425781,34.7493056464844],[111.191883574219,34.7383803535157],[111.212806425781,34.7293056464844],[111.258958769531,34.6737465644531],[111.27361453125,34.6913906074219],[111.271568632813,34.7114699531251],[111.305125761719,34.7080495429688],[111.341883574219,34.7217678046876],[111.321326933594,34.738843],[111.333538847656,34.7489882636719],[111.310186796875,34.7591152167969],[111.392901640625,34.7683913398438],[111.390203886719,34.7948403144531],[111.397345,34.813843],[111.410377226563,34.8284279609376],[111.437345,34.8300356269532],[111.471302519531,34.8280117011719],[111.544344511719,34.8583913398438],[111.557345,34.843843],[111.557345,34.8238430000001]]]]}},{"type":"Feature","properties":{"name":"义马市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.921942167969,34.758843],[111.923638945313,34.7377419257813],[111.952020292969,34.7400221992188],[111.96197390625,34.7284706855469],[111.98271609375,34.7192153144532],[111.987345,34.7138430000001],[111.987345,34.693843],[111.977345,34.693843],[111.922381621094,34.6992482734376],[111.91209109375,34.6984206367188],[111.86271609375,34.7192153144532],[111.829561796875,34.7291970039063],[111.835428496094,34.8022109199219],[111.886824980469,34.79808128125],[111.923453398438,34.7776454902344],[111.921942167969,34.758843]]]]}},{"type":"Feature","properties":{"name":"渑池县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.557345,34.8238430000001],[111.553922148438,34.8116506171876],[111.545152617188,34.8204201484375],[111.557345,34.8238430000001]]],[[[111.557345,34.8238430000001],[111.557345,34.843843],[111.580260039063,34.8615297675782],[111.59170046875,34.8894863105469],[111.61298953125,34.8981996894532],[111.627345,34.9338430000001],[111.633260527344,34.9379274726563],[111.676256132813,34.9475661445313],[111.667345,34.983843],[111.69170046875,34.9994863105469],[111.759605742188,35.0138161445313],[111.77170046875,35.0294863105469],[111.79298953125,35.0381996894531],[111.815150175781,35.0669118476563],[111.892310820313,35.0795864082032],[111.907345,35.0773647285157],[111.937174101563,35.0817726875001],[111.957345,35.073843],[111.942806425781,35.0483803535157],[111.929288359375,35.0371498847657],[111.974383574219,34.9996901679688],[111.955306425781,34.983843],[111.981883574219,34.9617678046875],[111.945125761719,34.9480495429688],[111.931954375,34.9493923164063],[111.922806425781,34.9383803535157],[111.872806425781,34.9166957832031],[111.882718535156,34.8966909003906],[111.922806425781,34.8793056464844],[111.951883574219,34.8583803535157],[111.989107695313,34.8422365546875],[112.012889433594,34.8091909003906],[112.011795683594,34.798452375],[112.028023710938,34.7849721503907],[111.991441679688,34.7387477851563],[112.004383574219,34.7279958320313],[111.987345,34.7138430000001],[111.98271609375,34.7192153144532],[111.96197390625,34.7284706855469],[111.952020292969,34.7400221992188],[111.923638945313,34.7377419257813],[111.921942167969,34.758843],[111.923453398438,34.7776454902344],[111.886824980469,34.79808128125],[111.835428496094,34.8022109199219],[111.829561796875,34.7291970039063],[111.86271609375,34.7192153144532],[111.91209109375,34.6984206367188],[111.922381621094,34.6992482734376],[111.977345,34.693843],[111.965806914063,34.6488796210937],[111.941429472656,34.6397585273438],[111.922764921875,34.6070583320313],[111.903260527344,34.6197585273438],[111.881429472656,34.6279274726563],[111.842720976563,34.6579274726563],[111.821429472656,34.6497585273437],[111.813260527344,34.6379274726563],[111.797345,34.6338430000001],[111.78406375,34.6271242500001],[111.773336210938,34.6059169746094],[111.761353789063,34.6117690253906],[111.751317167969,34.5919277167969],[111.727345,34.603843],[111.723260527344,34.6097585273438],[111.711073027344,34.6181728339844],[111.716827421875,34.643843],[111.710560332031,34.6718056464844],[111.684459257813,34.6659548164063],[111.643685332031,34.6925063300782],[111.614459257813,34.6859548164063],[111.589705839844,34.7020729804688],[111.595318632813,34.7271047187501],[111.567633085938,34.7628249335937],[111.573465605469,34.7888430000001],[111.567135039063,34.8170839667969],[111.557345,34.8238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"邓州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.980269804688,32.911782453125],[112.002345,32.9079811835938],[112.029117460938,32.9125905585938],[112.033206816406,32.888843],[112.030999785156,32.8760280585938],[112.097235136719,32.8874318671875],[112.111776152344,32.8678835273437],[112.130582304688,32.8711232734375],[112.165394316406,32.8495778632813],[112.223079863281,32.8581081367188],[112.272122832031,32.8798024726562],[112.297345,32.8738430000001],[112.300704375,32.8672023750001],[112.327205839844,32.8537966132813],[112.315504179688,32.8298342109375],[112.333985625,32.8204836250001],[112.337345,32.813843],[112.333260527344,32.7879274726563],[112.304029570313,32.7430373359375],[112.32408328125,32.7291896796875],[112.311429472656,32.7097585273438],[112.296654082031,32.6702712226563],[112.281429472656,32.6597585273438],[112.273260527344,32.6479274726563],[112.243260527344,32.6272145820313],[112.267840605469,32.5992702460938],[112.295921660156,32.5887624335938],[112.275355253906,32.5050270820313],[112.288099394531,32.4481716132813],[112.261429472656,32.4297585273438],[112.253260527344,32.4179274726563],[112.231429472656,32.4097585273438],[112.227345,32.3838430000001],[112.202183867188,32.3944118476563],[112.171571074219,32.3875490546876],[112.163260527344,32.4097585273438],[112.133260527344,32.4135671210938],[112.153616972656,32.3995143867188],[112.149796171875,32.3824782539062],[112.123260527344,32.3997585273437],[112.101429472656,32.4079274726563],[112.059830351563,32.4426198554688],[112.063863554688,32.4606130195313],[112.0437903125,32.4779274726563],[112.007345,32.453843],[111.975355253906,32.4714015937501],[111.94310671875,32.5270241523438],[111.913170195313,32.5080178046875],[111.874671660156,32.4996681953125],[111.853170195313,32.5296681953125],[111.781519804688,32.5480178046875],[111.772965117188,32.5599538398438],[111.756761503906,32.5567507148438],[111.733170195313,32.5896681953126],[111.693651152344,32.617993390625],[111.642345,32.6078542304688],[111.627843046875,32.6107204414063],[111.637345,32.633843],[111.672799101563,32.6418971992188],[111.704610625,32.6379396796875],[111.721790800781,32.6593971992187],[111.802318144531,32.669468],[111.827345,32.6663552070312],[111.860084257813,32.6704274726563],[111.871790800781,32.7031447578125],[111.821331816406,32.7386135078126],[111.837117949219,32.7654689765625],[111.831241484375,32.8127150703125],[111.80068484375,32.83718284375],[111.787345,32.8838430000001],[111.799176054688,32.8920119453125],[111.815513945313,32.9156740546875],[111.833616972656,32.9281716132813],[111.830553007813,32.9418361640626],[111.908428984375,32.9618190742188],[111.884918242188,32.9979274726563],[111.923260527344,32.9897585273438],[111.977345,32.963843],[111.985667753906,32.943139875],[111.980269804688,32.911782453125]]]]}},{"type":"Feature","properties":{"name":"方城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.856402617188,33.6163710761719],[112.917345,33.6073647285156],[112.932857695313,33.6096572089844],[112.948807402344,33.5889931464844],[113.00170046875,33.5681996894532],[113.017345,33.5638430000001],[113.021790800781,33.5482900214844],[113.040848417969,33.5158705878907],[113.043587675781,33.4938430000001],[113.037530546875,33.4451345039063],[113.085206328125,33.4510646796875],[113.112899199219,33.4393959785157],[113.131986113281,33.4281764960937],[113.180985136719,33.4342714667969],[113.206239042969,33.4027370429688],[113.223023710938,33.3892958808594],[113.220799589844,33.3714174628907],[113.305162382813,33.3473281074219],[113.328968535156,33.3502883125],[113.381790800781,33.3382900214844],[113.387345,33.3338430000001],[113.395936308594,33.3109792304687],[113.377642851563,33.2957839179687],[113.401663847656,33.253843],[113.374676542969,33.2067250800782],[113.371363554688,33.1742226386719],[113.381883574219,33.1383803535157],[113.387345,33.133843],[113.353980742188,33.0921779609376],[113.251790800781,33.0793971992187],[113.212264433594,33.0681081367188],[113.197345,33.0738430000001],[113.181207304688,33.1459609199219],[113.148563261719,33.1584706855469],[113.1073840625,33.1354958320312],[113.09271609375,33.1184706855469],[113.079947539063,33.1092153144531],[113.06271609375,33.1292153144532],[113.05197390625,33.1384706855469],[113.042474394531,33.1494948554688],[113.021363554688,33.1377162910157],[113.002020292969,33.1392702460938],[112.992474394531,33.1281911445313],[112.972623320313,33.1392665839844],[112.959742460938,33.1382326484376],[112.933409453125,33.1076686835938],[112.904483671875,33.1238088203125],[112.862579375,33.1084206367188],[112.797345,33.1138430000001],[112.787345,33.1277956367188],[112.770484648438,33.1042702460938],[112.724920683594,33.1132741523438],[112.713170195313,33.1296681953125],[112.697554960938,33.1408608222656],[112.663053007813,33.1340431953125],[112.652943144531,33.1602529121094],[112.637345,33.1538430000001],[112.637345,33.163843],[112.627345,33.163843],[112.633260527344,33.1879274726563],[112.637345,33.213843],[112.6600403125,33.2295131660156],[112.650103789063,33.273843],[112.653616972656,33.2895131660157],[112.641073027344,33.2981728339844],[112.649854765625,33.3373403144531],[112.665574980469,33.3614821601563],[112.682345,33.3577223945312],[112.697345,33.3610842109376],[112.716859160156,33.3567104316407],[112.741429472656,33.3997585273438],[112.782166777344,33.4150014472656],[112.791429472656,33.4397585273438],[112.803260527344,33.4579274726562],[112.811429472656,33.4797585273438],[112.836158476563,33.4968325019532],[112.831124296875,33.5192897773438],[112.843260527344,33.5379274726562],[112.847345,33.583843],[112.856402617188,33.6163710761719]]]]}},{"type":"Feature","properties":{"name":"南召县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.247345,33.7238430000001],[112.251429472656,33.7179274726563],[112.303260527344,33.6997585273438],[112.320440703125,33.6748744941407],[112.367345,33.6643593574219],[112.416119414063,33.6752931953125],[112.451429472656,33.6479274726562],[112.494547148438,33.6368617988282],[112.527069121094,33.5897585273438],[112.562171660156,33.6007070136719],[112.592425566406,33.6204067207032],[112.621839628906,33.5976088691406],[112.644097929688,33.6025991035157],[112.691429472656,33.5879274726563],[112.733260527344,33.5797585273437],[112.767345,33.5654433417969],[112.802066679688,33.5800258613281],[112.825662871094,33.5747365546875],[112.847345,33.583843],[112.843260527344,33.5379274726562],[112.831124296875,33.5192897773438],[112.836158476563,33.4968325019532],[112.811429472656,33.4797585273438],[112.803260527344,33.4579274726562],[112.791429472656,33.4397585273438],[112.782166777344,33.4150014472656],[112.741429472656,33.3997585273438],[112.716859160156,33.3567104316407],[112.697345,33.3610842109376],[112.682345,33.3577223945312],[112.665574980469,33.3614821601563],[112.649854765625,33.3373403144531],[112.641073027344,33.2981728339844],[112.653616972656,33.2895131660157],[112.650103789063,33.273843],[112.6600403125,33.2295131660156],[112.637345,33.213843],[112.600499296875,33.2228932929687],[112.582847929688,33.1973305488282],[112.552623320313,33.2100258613282],[112.541673613281,33.2075722480469],[112.533260527344,33.2197585273438],[112.521073027344,33.2281728339844],[112.525706816406,33.248843],[112.501051054688,33.2580690742187],[112.503616972656,33.2695131660156],[112.483802519531,33.2831935859376],[112.457647734375,33.2453151679688],[112.422623320313,33.2600258613282],[112.394105253906,33.2536330390626],[112.379176054688,33.2320119453125],[112.353802519531,33.2144924140625],[112.342345,33.2310842109375],[112.333260527344,33.2179274726563],[112.317345,33.213843],[112.281783476563,33.2080007148438],[112.27298953125,33.2294863105469],[112.24845828125,33.2484206367188],[112.237345,33.313843],[112.237345,33.323843],[112.231832304688,33.3309841132812],[112.212345,33.3281044746094],[112.201954375,33.3296401191406],[112.182713652344,33.3180324531251],[112.147345,33.323843],[112.111429472656,33.3479274726563],[112.103260527344,33.3597585273438],[112.081051054688,33.3680690742188],[112.086151152344,33.3908168769531],[112.069249296875,33.3870278144532],[112.053011503906,33.4304238105469],[112.010860625,33.412719953125],[111.986461210938,33.4779323554688],[111.946319609375,33.5008437324219],[111.930186796875,33.5242116523438],[111.933638945313,33.5396169257813],[111.911429472656,33.5479274726563],[111.907345,33.5638430000001],[111.922154570313,33.5690334296875],[112.002374296875,33.5881423164063],[112.015079375,33.6282704902344],[112.052181425781,33.608637921875],[112.062345,33.6090407539063],[112.088367949219,33.6080092597657],[112.069757109375,33.6431825996094],[112.109329863281,33.6618581367188],[112.131190214844,33.7081813789063],[112.169991484375,33.7217800117188],[112.191065703125,33.6990334296875],[112.202535429688,33.7086525703125],[112.212523222656,33.7194301582032],[112.232496367188,33.7186391425782],[112.247345,33.7238430000001]],[[112.385152617188,33.2772658515626],[112.397345,33.273843],[112.393922148438,33.2860353828125],[112.385152617188,33.2772658515626]]]]}},{"type":"Feature","properties":{"name":"内乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.946319609375,33.5008437324219],[111.986461210938,33.4779323554688],[112.010860625,33.412719953125],[112.053011503906,33.4304238105469],[112.069249296875,33.3870278144532],[112.086151152344,33.3908168769531],[112.081051054688,33.3680690742188],[112.103260527344,33.3597585273438],[112.111429472656,33.3479274726563],[112.147345,33.323843],[112.139522734375,33.2978639960938],[112.122020292969,33.2992702460938],[112.11271609375,33.288470685547],[112.0619153125,33.2691933417969],[112.064857207031,33.232563703125],[112.05271609375,33.2184706855469],[112.025858183594,33.1953310371094],[112.00271609375,33.1684706855469],[111.991165800781,33.1585195136719],[111.993424101563,33.1303993964844],[111.981265898438,33.0972866035157],[111.982772246094,33.0785182929687],[111.970738554688,33.068149640625],[111.993524199219,33.0485182929688],[111.991917753906,33.0285182929688],[112.00681765625,33.0156838203126],[111.977345,32.963843],[111.923260527344,32.9897585273438],[111.884918242188,32.9979274726563],[111.908428984375,32.9618190742188],[111.830553007813,32.9418361640626],[111.833616972656,32.9281716132813],[111.815513945313,32.9156740546875],[111.799176054688,32.8920119453125],[111.787345,32.8838430000001],[111.773463164063,32.9005568671876],[111.731009550781,32.8669557929688],[111.735855742188,32.8194069648437],[111.671561308594,32.8702931953125],[111.651998320313,32.8682985664062],[111.620994902344,32.8906081367188],[111.622886992188,32.909165265625],[111.611883574219,32.9283815742188],[111.601658964844,32.9519533515625],[111.577642851563,32.9719020820313],[111.598800078125,33.008843],[111.5815246875,33.0390065742188],[111.592894316406,33.048452375],[111.59150515625,33.0620803046875],[111.571795683594,33.0784523750001],[111.572855253906,33.088843],[111.571834746094,33.098843],[111.572855253906,33.1088430000001],[111.571834746094,33.118843],[111.573372832031,33.133930890625],[111.597345,33.1538430000001],[111.602625761719,33.1491237617188],[111.612064238281,33.1285622382813],[111.642625761719,33.1191237617188],[111.654188261719,33.1061855292969],[111.694193144531,33.0891237617188],[111.712064238281,33.1091237617187],[111.751419707031,33.1271865058594],[111.772064238281,33.1506923652344],[111.752064238281,33.1685622382813],[111.730640898438,33.2152394843751],[111.732655058594,33.2490444160157],[111.7215246875,33.2800661445313],[111.722940703125,33.3038430000001],[111.721749296875,33.323843],[111.722642851563,33.3388430000001],[111.721995878906,33.3497158027344],[111.6826575,33.3473720527344],[111.642625761719,33.3691237617188],[111.611717558594,33.3833107734375],[111.613238554688,33.4088430000001],[111.611195097656,33.4431154609376],[111.635260039063,33.4785622382813],[111.688521757813,33.4496181464844],[111.702064238281,33.4791237617188],[111.727701445313,33.5158278632813],[111.752064238281,33.4885622382813],[111.776624785156,33.4791237617188],[111.802064238281,33.5191237617188],[111.823819609375,33.5291091132813],[111.821011992188,33.5761952949219],[111.827345,33.593843],[111.900560332031,33.5863747382813],[111.907345,33.5638430000001],[111.911429472656,33.5479274726563],[111.933638945313,33.5396169257813],[111.930186796875,33.5242116523438],[111.946319609375,33.5008437324219]]]]}},{"type":"Feature","properties":{"name":"社旗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.181207304688,33.1459609199219],[113.197345,33.0738430000001],[113.191429472656,33.0697585273438],[113.183260527344,33.0579274726563],[113.148753691406,33.045014875],[113.11466921875,33.0010378242188],[113.088407011719,32.9430886054688],[113.122345,32.9354811835938],[113.146246367188,32.9408376289062],[113.181898222656,32.917622296875],[113.201429472656,32.9219997382813],[113.192882109375,32.8863454414062],[113.173260527344,32.8579274726563],[113.161429472656,32.8497585273438],[113.157345,32.833843],[113.14263796875,32.82806175],[113.132345,32.8295827460938],[113.106551542969,32.8257692695313],[113.0858215625,32.7989138007813],[113.048426542969,32.7894875312501],[113.030809355469,32.812309796875],[112.976900664063,32.8043434882813],[112.94216921875,32.830093],[112.931627226563,32.8164357734375],[112.832476835938,32.8554128242187],[112.822542753906,32.8910890937501],[112.792857695313,32.8867018867188],[112.78298953125,32.89948753125],[112.777345,32.903843],[112.76978640625,32.921841046875],[112.791429472656,32.9597585273438],[112.824932890625,32.9722951484375],[112.821224394531,32.988843],[112.823638945313,32.9996169257813],[112.787594023438,33.0131032539063],[112.767789335938,33.0435182929688],[112.773465605469,33.0688430000001],[112.770943632813,33.0800905585938],[112.791429472656,33.1097585273438],[112.797345,33.1138430000001],[112.862579375,33.1084206367188],[112.904483671875,33.1238088203125],[112.933409453125,33.1076686835938],[112.959742460938,33.1382326484376],[112.972623320313,33.1392665839844],[112.992474394531,33.1281911445313],[113.002020292969,33.1392702460938],[113.021363554688,33.1377162910157],[113.042474394531,33.1494948554688],[113.05197390625,33.1384706855469],[113.06271609375,33.1292153144532],[113.079947539063,33.1092153144531],[113.09271609375,33.1184706855469],[113.1073840625,33.1354958320312],[113.148563261719,33.1584706855469],[113.181207304688,33.1459609199219]]]]}},{"type":"Feature","properties":{"name":"唐河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.017345,32.513843],[113.017345,32.523843],[113.030152617188,32.518843],[113.017345,32.513843]]],[[[113.247345,32.673843],[113.260794707031,32.6667580390625],[113.251627226563,32.6408937812501],[113.247345,32.673843]]],[[[112.637345,32.673843],[112.625152617188,32.6772658515626],[112.633922148438,32.6860353828125],[112.637345,32.673843]]],[[[113.197345,32.713843],[113.200767851563,32.7260353828125],[113.209537382813,32.7172658515626],[113.197345,32.713843]]],[[[113.197345,32.713843],[113.200704375,32.7072023750001],[113.233985625,32.7004836250001],[113.247345,32.673843],[113.210499296875,32.6828932929687],[113.193260527344,32.6579274726562],[113.18060671875,32.6491896796875],[113.195233183594,32.6267287421876],[113.191214628906,32.6088014960938],[113.197345,32.583843],[113.171883574219,32.5883815742188],[113.152806425781,32.5993044257813],[113.055819121094,32.6083815742188],[113.03951296875,32.570786359375],[113.019058867188,32.6179470039063],[112.996683378906,32.5910060859375],[113.023363066406,32.568843],[113.011754179688,32.5591970039063],[113.017345,32.523843],[112.994100371094,32.518843],[113.017345,32.513843],[113.020704375,32.497202375],[113.034989042969,32.4792214179688],[113.01740359375,32.443843],[113.027345,32.4238430000001],[112.993829375,32.4184255195313],[112.983170195313,32.3780178046876],[112.967503691406,32.3696681953125],[112.952965117188,32.3899538398438],[112.937345,32.3868679023438],[112.907345,32.3927956367188],[112.877345,32.3868679023438],[112.844205351563,32.3934157539063],[112.833170195313,32.3780178046876],[112.801519804688,32.3696681953125],[112.782777128906,32.35776878125],[112.771724882813,32.3599538398438],[112.7582434375,32.3411452460938],[112.712633085938,32.359887921875],[112.695303984375,32.3564626289063],[112.663170195313,32.3696681953125],[112.571519804688,32.3880178046875],[112.545162382813,32.404751203125],[112.533170195313,32.3880178046875],[112.517345,32.3838430000001],[112.487345,32.3838430000001],[112.477345,32.3838430000001],[112.471265898438,32.3993093085938],[112.493167753906,32.4082717109376],[112.491605253906,32.4188430000001],[112.493387480469,32.4309059882813],[112.522542753906,32.42659690625],[112.533558378906,32.4661550117188],[112.563167753906,32.4782717109376],[112.559954863281,32.500014875],[112.58298953125,32.53819846875],[112.595611601563,32.5835256171876],[112.587345,32.633843],[112.596927519531,32.6711794257813],[112.63033328125,32.6636891914063],[112.637345,32.673843],[112.649100371094,32.6832570625],[112.628526640625,32.736782453125],[112.643023710938,32.7483888984375],[112.641666289063,32.7592971015626],[112.652899199219,32.7682888007813],[112.661790800781,32.8393971992188],[112.72525515625,32.8504396796875],[112.717686796875,32.9112966132813],[112.777345,32.903843],[112.78298953125,32.89948753125],[112.792857695313,32.8867018867188],[112.822542753906,32.8910890937501],[112.832476835938,32.8554128242187],[112.931627226563,32.8164357734375],[112.94216921875,32.830093],[112.976900664063,32.8043434882813],[113.030809355469,32.812309796875],[113.048426542969,32.7894875312501],[113.0858215625,32.7989138007813],[113.106551542969,32.8257692695313],[113.132345,32.8295827460938],[113.14263796875,32.82806175],[113.157345,32.833843],[113.173714628906,32.8302126289063],[113.180975371094,32.7674733710938],[113.197664824219,32.7579592109375],[113.183922148438,32.7214968085938],[113.197345,32.713843]]]]}},{"type":"Feature","properties":{"name":"桐柏县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.550501738281,32.3277809882813],[113.557345,32.303843],[113.532899199219,32.3108327460938],[113.550501738281,32.3277809882813]]],[[[113.017345,32.513843],[112.994100371094,32.518843],[113.017345,32.523843],[113.017345,32.513843]]],[[[113.597345,32.363843],[113.593922148438,32.3760353828125],[113.585152617188,32.3672658515626],[113.588250761719,32.3520607734375],[113.55298953125,32.33819846875],[113.52170046875,32.32948753125],[113.493631621094,32.3125563789063],[113.46170046875,32.2994875312501],[113.417345,32.27272971875],[113.372735625,32.2996388984376],[113.352564726563,32.2966579414063],[113.310867949219,32.328843],[113.329080839844,32.3429006171876],[113.29170046875,32.3581984687501],[113.277913847656,32.3760622382813],[113.23170046875,32.40819846875],[113.208546171875,32.4381984687501],[113.1595325,32.4186208320313],[113.142916289063,32.3780202460937],[113.132203398438,32.3796022773437],[113.107345,32.373843],[113.102576933594,32.4075075507812],[113.072345,32.3971266914063],[113.053397246094,32.4036330390625],[113.043624296875,32.420122296875],[113.027345,32.4238430000001],[113.01740359375,32.443843],[113.034989042969,32.4792214179688],[113.020704375,32.497202375],[113.017345,32.513843],[113.030152617188,32.518843],[113.017345,32.523843],[113.011754179688,32.5591970039063],[113.023363066406,32.568843],[112.996683378906,32.5910060859375],[113.019058867188,32.6179470039063],[113.03951296875,32.570786359375],[113.055819121094,32.6083815742188],[113.152806425781,32.5993044257813],[113.171883574219,32.5883815742188],[113.197345,32.583843],[113.202064238281,32.5785622382813],[113.224193144531,32.5691237617188],[113.244620390625,32.5919850898438],[113.302345,32.5885451484375],[113.312569609375,32.5891555],[113.332064238281,32.5785622382813],[113.355260039063,32.5691237617188],[113.399310332031,32.6184255195313],[113.442108183594,32.5885305],[113.452545195313,32.5891530585938],[113.494449492188,32.5741188789063],[113.522064238281,32.5891237617188],[113.546236601563,32.600219953125],[113.576783476563,32.6344045234375],[113.592625761719,32.6485622382813],[113.602078886719,32.6691579414063],[113.613858671875,32.6684548164063],[113.611429472656,32.7091945625],[113.63209109375,32.70796409375],[113.637345,32.713843],[113.661429472656,32.6979274726562],[113.703260527344,32.6897585273438],[113.740819121094,32.6606496406251],[113.783648710938,32.6496584296876],[113.779132109375,32.6295143867188],[113.793260527344,32.6197585273438],[113.797345,32.603843],[113.77271609375,32.56847190625],[113.761165800781,32.5585182929688],[113.763048125,32.535102765625],[113.75271609375,32.4784719062501],[113.736600371094,32.4645876289063],[113.707345,32.413843],[113.682183867188,32.4244118476562],[113.645804472656,32.416255109375],[113.613260527344,32.3679274726563],[113.597345,32.363843]]]]}},{"type":"Feature","properties":{"name":"西峡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.147345,33.343843],[111.141783476563,33.3308461738281],[111.124620390625,33.3398378730469],[111.147345,33.343843]]],[[[111.147345,33.343843],[111.1282434375,33.3779628730469],[111.112857695313,33.3580287910157],[111.102345,33.3595815253906],[111.092345,33.3581044746094],[111.063880644531,33.3623110175782],[111.045894804688,33.339009015625],[111.027345,33.3338430000001],[111.023260527344,33.3797585273438],[111.006434355469,33.4055959296875],[110.999132109375,33.4381728339844],[111.017135039063,33.4506020332032],[111.027674589844,33.4976222968751],[110.99611453125,33.54608909375],[111.007345,33.553843],[111.060247832031,33.558891828125],[111.10406375,33.5768251777344],[111.12298953125,33.6081996894532],[111.13170046875,33.6294863105469],[111.143377714844,33.648843],[111.125660429688,33.6782118964844],[111.179837675781,33.6896437812501],[111.195845976563,33.783891828125],[111.223922148438,33.8008266425782],[111.24263796875,33.7980605292969],[111.257345,33.803843],[111.262042265625,33.7874123359376],[111.314508085938,33.7672463203126],[111.333917265625,33.7696608710938],[111.400179472656,33.7581288886719],[111.481497832031,33.7268715644531],[111.5389075,33.7340126777344],[111.639146757813,33.7165688300782],[111.661790800781,33.6882900214844],[111.749241972656,33.67556175],[111.797345,33.653843],[111.830887480469,33.6365041328125],[111.817025175781,33.5997280097656],[111.827345,33.593843],[111.821011992188,33.5761952949219],[111.823819609375,33.5291091132813],[111.802064238281,33.5191237617188],[111.776624785156,33.4791237617188],[111.752064238281,33.4885622382813],[111.727701445313,33.5158278632813],[111.702064238281,33.4791237617188],[111.688521757813,33.4496181464844],[111.635260039063,33.4785622382813],[111.611195097656,33.4431154609376],[111.613238554688,33.4088430000001],[111.611717558594,33.3833107734375],[111.642625761719,33.3691237617188],[111.6826575,33.3473720527344],[111.721995878906,33.3497158027344],[111.722642851563,33.3388430000001],[111.721749296875,33.323843],[111.722940703125,33.3038430000001],[111.7215246875,33.2800661445313],[111.732655058594,33.2490444160157],[111.730640898438,33.2152394843751],[111.752064238281,33.1685622382813],[111.772064238281,33.1506923652344],[111.751419707031,33.1271865058594],[111.712064238281,33.1091237617187],[111.694193144531,33.0891237617188],[111.654188261719,33.1061855292969],[111.642625761719,33.1191237617188],[111.612064238281,33.1285622382813],[111.602625761719,33.1491237617188],[111.597345,33.1538430000001],[111.592899199219,33.1693959785156],[111.581790800781,33.1782900214844],[111.568450957031,33.1949489570312],[111.547906523438,33.2114003730469],[111.522345,33.2082216621095],[111.511986113281,33.2095095039063],[111.492144804688,33.1978481269532],[111.482899199219,33.2093959785157],[111.451790800781,33.2282900214845],[111.40181765625,33.2682582832031],[111.392545195313,33.2798378730469],[111.372345,33.2679653144531],[111.350792265625,33.2806349921876],[111.331890898438,33.2570339179688],[111.312345,33.2594643378906],[111.291265898438,33.2568434882813],[111.245369902344,33.2838210273438],[111.232899199219,33.2993959785157],[111.171656523438,33.3083095527344],[111.175467558594,33.3389492011719],[111.147345,33.343843]]]]}},{"type":"Feature","properties":{"name":"新野县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.437345,32.353843],[112.449537382813,32.3504201484375],[112.440767851563,32.3416506171875],[112.437345,32.353843]]],[[[112.477345,32.3838430000001],[112.487345,32.3838430000001],[112.482345,32.3710353828126],[112.477345,32.3838430000001]]],[[[112.477345,32.3838430000001],[112.441429472656,32.3597585273438],[112.437345,32.353843],[112.411790800781,32.3582888007813],[112.392703886719,32.3695095039063],[112.377345,32.3676003242188],[112.361986113281,32.3695095039063],[112.335369902344,32.3538649726563],[112.31388796875,32.3270388007813],[112.235267363281,32.3739479804688],[112.227345,32.3838430000001],[112.231429472656,32.4097585273438],[112.253260527344,32.4179274726563],[112.261429472656,32.4297585273438],[112.288099394531,32.4481716132813],[112.275355253906,32.5050270820313],[112.295921660156,32.5887624335938],[112.267840605469,32.5992702460938],[112.243260527344,32.6272145820313],[112.273260527344,32.6479274726563],[112.281429472656,32.6597585273438],[112.296654082031,32.6702712226563],[112.311429472656,32.7097585273438],[112.32408328125,32.7291896796875],[112.304029570313,32.7430373359375],[112.333260527344,32.7879274726563],[112.337345,32.813843],[112.372625761719,32.8091237617188],[112.382064238281,32.7785622382813],[112.432005644531,32.7669411445313],[112.402760039063,32.7408107734376],[112.401292753906,32.7161721015626],[112.467345,32.703843],[112.473631621094,32.6812697578126],[112.54298953125,32.66948753125],[112.552147246094,32.63659690625],[112.57263796875,32.6396242500001],[112.587345,32.633843],[112.595611601563,32.5835256171876],[112.58298953125,32.53819846875],[112.559954863281,32.500014875],[112.563167753906,32.4782717109376],[112.533558378906,32.4661550117188],[112.522542753906,32.42659690625],[112.493387480469,32.4309059882813],[112.491605253906,32.4188430000001],[112.493167753906,32.4082717109376],[112.471265898438,32.3993093085938],[112.477345,32.3838430000001]]]]}},{"type":"Feature","properties":{"name":"镇平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.231832304688,33.3309841132812],[112.237345,33.323843],[112.224537382813,33.318843],[112.237345,33.313843],[112.24845828125,33.2484206367188],[112.27298953125,33.2294863105469],[112.281783476563,33.2080007148438],[112.317345,33.213843],[112.321429472656,33.1879274726563],[112.345921660156,33.1787624335938],[112.331043730469,33.1181923652344],[112.343260527344,33.1097585273438],[112.351429472656,33.0879274726563],[112.385936308594,33.075014875],[112.4139075,33.0389235664063],[112.39611453125,33.01159690625],[112.417752714844,32.9966579414063],[112.396654082031,32.9402712226562],[112.381073027344,32.9295143867188],[112.385377226563,32.910317609375],[112.330164824219,32.9226955390625],[112.311429472656,32.9097585273438],[112.303260527344,32.8779274726563],[112.297345,32.8738430000001],[112.272122832031,32.8798024726562],[112.223079863281,32.8581081367188],[112.165394316406,32.8495778632813],[112.130582304688,32.8711232734375],[112.111776152344,32.8678835273437],[112.097235136719,32.8874318671875],[112.030999785156,32.8760280585938],[112.033206816406,32.888843],[112.029117460938,32.9125905585938],[112.002345,32.9079811835938],[111.980269804688,32.911782453125],[111.985667753906,32.943139875],[111.977345,32.963843],[112.00681765625,33.0156838203126],[111.991917753906,33.0285182929688],[111.993524199219,33.0485182929688],[111.970738554688,33.068149640625],[111.982772246094,33.0785182929687],[111.981265898438,33.0972866035157],[111.993424101563,33.1303993964844],[111.991165800781,33.1585195136719],[112.00271609375,33.1684706855469],[112.025858183594,33.1953310371094],[112.05271609375,33.2184706855469],[112.064857207031,33.232563703125],[112.0619153125,33.2691933417969],[112.11271609375,33.288470685547],[112.122020292969,33.2992702460938],[112.139522734375,33.2978639960938],[112.147345,33.323843],[112.182713652344,33.3180324531251],[112.201954375,33.3296401191406],[112.212345,33.3281044746094],[112.231832304688,33.3309841132812]]]]}},{"type":"Feature","properties":{"name":"淅川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.441910429688,32.7365407539063],[111.447345,32.7238430000001],[111.424346953125,32.727895734375],[111.441910429688,32.7365407539063]]],[[[111.057345,33.173843],[111.044442167969,33.1503029609375],[111.035030546875,33.1690431953125],[111.057345,33.173843]]],[[[111.023922148438,33.1860353828125],[111.027345,33.173843],[111.015152617188,33.1772658515625],[111.023922148438,33.1860353828125]]],[[[111.147345,33.343843],[111.124620390625,33.3398378730469],[111.141783476563,33.3308461738281],[111.175467558594,33.3389492011719],[111.171656523438,33.3083095527344],[111.232899199219,33.2993959785157],[111.245369902344,33.2838210273438],[111.291265898438,33.2568434882813],[111.312345,33.2594643378906],[111.331890898438,33.2570339179688],[111.350792265625,33.2806349921876],[111.372345,33.2679653144531],[111.392545195313,33.2798378730469],[111.40181765625,33.2682582832031],[111.451790800781,33.2282900214845],[111.482899199219,33.2093959785157],[111.492144804688,33.1978481269532],[111.511986113281,33.2095095039063],[111.522345,33.2082216621095],[111.547906523438,33.2114003730469],[111.568450957031,33.1949489570312],[111.581790800781,33.1782900214844],[111.592899199219,33.1693959785156],[111.597345,33.1538430000001],[111.573372832031,33.133930890625],[111.571834746094,33.118843],[111.572855253906,33.1088430000001],[111.571834746094,33.098843],[111.572855253906,33.088843],[111.571795683594,33.0784523750001],[111.59150515625,33.0620803046875],[111.592894316406,33.048452375],[111.5815246875,33.0390065742188],[111.598800078125,33.008843],[111.577642851563,32.9719020820313],[111.601658964844,32.9519533515625],[111.611883574219,32.9283815742188],[111.622886992188,32.909165265625],[111.620994902344,32.8906081367188],[111.651998320313,32.8682985664062],[111.671561308594,32.8702931953125],[111.735855742188,32.8194069648437],[111.731009550781,32.8669557929688],[111.773463164063,32.9005568671876],[111.787345,32.8838430000001],[111.80068484375,32.83718284375],[111.831241484375,32.8127150703125],[111.837117949219,32.7654689765625],[111.821331816406,32.7386135078126],[111.871790800781,32.7031447578125],[111.860084257813,32.6704274726563],[111.827345,32.6663552070312],[111.802318144531,32.669468],[111.721790800781,32.6593971992187],[111.704610625,32.6379396796875],[111.672799101563,32.6418971992188],[111.637345,32.633843],[111.62170046875,32.62948753125],[111.582323027344,32.6002907539063],[111.577345,32.593843],[111.551610136719,32.5981081367188],[111.543079863281,32.6095778632813],[111.531610136719,32.6181081367188],[111.52048953125,32.6330593085938],[111.523206816406,32.6488430000001],[111.520516386719,32.6644606757813],[111.471610136719,32.6981081367188],[111.459652128906,32.7282009101563],[111.467159453125,32.7718068671876],[111.415523710938,32.7510524726563],[111.373140898438,32.8275075507812],[111.321610136719,32.8381081367188],[111.313079863281,32.8495778632813],[111.291610136719,32.8581081367188],[111.279110136719,32.9042189765625],[111.239959746094,32.8799880195313],[111.244066191406,32.903843],[111.239022246094,32.933139875],[111.247345,32.9538430000001],[111.266634550781,32.9593581367188],[111.261241484375,33.0027150703125],[111.241790800781,33.0182888007813],[111.22935671875,33.0478005195313],[111.151878691406,33.0381618476563],[111.142899199219,33.0514357734376],[111.182899199219,33.0682888007813],[111.191790800781,33.0822731757812],[111.171790800781,33.0982900214844],[111.162899199219,33.1193959785156],[111.138785429688,33.1295571113281],[111.118450957031,33.1549489570313],[111.082691679688,33.1835854316406],[111.057345,33.173843],[111.052296171875,33.193520734375],[111.007767363281,33.2242653632813],[110.987345,33.253843],[110.980418730469,33.2703334785157],[111.001722441406,33.3272670722656],[111.027345,33.3338430000001],[111.045894804688,33.339009015625],[111.063880644531,33.3623110175782],[111.092345,33.3581044746094],[111.102345,33.3595815253906],[111.112857695313,33.3580287910157],[111.1282434375,33.3779628730469],[111.147345,33.343843]]]]}},{"type":"Feature","properties":{"name":"宛城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.637345,32.673843],[112.633922148438,32.6860353828125],[112.625152617188,32.6772658515626],[112.63033328125,32.6636891914063],[112.596927519531,32.6711794257813],[112.587345,32.633843],[112.57263796875,32.6396242500001],[112.552147246094,32.63659690625],[112.54298953125,32.66948753125],[112.473631621094,32.6812697578126],[112.467345,32.703843],[112.49728640625,32.7449611640625],[112.481749296875,32.758843],[112.492940703125,32.7688430000001],[112.4820325,32.7785890937501],[112.484019804688,32.8119362617188],[112.51353640625,32.8383107734375],[112.49162234375,32.8578908515625],[112.502779570313,32.8889870429688],[112.463768339844,32.9238430000001],[112.507906523438,32.9632814765625],[112.522064238281,32.9791237617188],[112.5326575,32.98858909375],[112.530443144531,33.0257546210938],[112.612659941406,33.0385671210938],[112.611947050781,33.0505080390626],[112.635496855469,33.093843],[112.619010039063,33.1241835761719],[112.637345,33.1538430000001],[112.652943144531,33.1602529121094],[112.663053007813,33.1340431953125],[112.697554960938,33.1408608222656],[112.713170195313,33.1296681953125],[112.724920683594,33.1132741523438],[112.770484648438,33.1042702460938],[112.787345,33.1277956367188],[112.797345,33.1138430000001],[112.791429472656,33.1097585273438],[112.770943632813,33.0800905585938],[112.773465605469,33.0688430000001],[112.767789335938,33.0435182929688],[112.787594023438,33.0131032539063],[112.823638945313,32.9996169257813],[112.821224394531,32.988843],[112.824932890625,32.9722951484375],[112.791429472656,32.9597585273438],[112.76978640625,32.921841046875],[112.777345,32.903843],[112.717686796875,32.9112966132813],[112.72525515625,32.8504396796875],[112.661790800781,32.8393971992188],[112.652899199219,32.7682888007813],[112.641666289063,32.7592971015626],[112.643023710938,32.7483888984375],[112.628526640625,32.736782453125],[112.649100371094,32.6832570625],[112.637345,32.673843]]],[[[112.637345,33.1538430000001],[112.627345,33.1538430000001],[112.627345,33.163843],[112.637345,33.163843],[112.637345,33.1538430000001]]]]}},{"type":"Feature","properties":{"name":"卧龙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.525706816406,33.248843],[112.521073027344,33.2281728339844],[112.533260527344,33.2197585273438],[112.541673613281,33.2075722480469],[112.552623320313,33.2100258613282],[112.582847929688,33.1973305488282],[112.600499296875,33.2228932929687],[112.637345,33.213843],[112.633260527344,33.1879274726563],[112.627345,33.163843],[112.627345,33.1538430000001],[112.637345,33.1538430000001],[112.619010039063,33.1241835761719],[112.635496855469,33.093843],[112.611947050781,33.0505080390626],[112.612659941406,33.0385671210938],[112.530443144531,33.0257546210938],[112.5326575,32.98858909375],[112.522064238281,32.9791237617188],[112.507906523438,32.9632814765625],[112.463768339844,32.9238430000001],[112.502779570313,32.8889870429688],[112.49162234375,32.8578908515625],[112.51353640625,32.8383107734375],[112.484019804688,32.8119362617188],[112.4820325,32.7785890937501],[112.492940703125,32.7688430000001],[112.481749296875,32.758843],[112.49728640625,32.7449611640625],[112.467345,32.703843],[112.401292753906,32.7161721015626],[112.402760039063,32.7408107734376],[112.432005644531,32.7669411445313],[112.382064238281,32.7785622382813],[112.372625761719,32.8091237617188],[112.337345,32.813843],[112.333985625,32.8204836250001],[112.315504179688,32.8298342109375],[112.327205839844,32.8537966132813],[112.300704375,32.8672023750001],[112.297345,32.8738430000001],[112.303260527344,32.8779274726563],[112.311429472656,32.9097585273438],[112.330164824219,32.9226955390625],[112.385377226563,32.910317609375],[112.381073027344,32.9295143867188],[112.396654082031,32.9402712226562],[112.417752714844,32.9966579414063],[112.39611453125,33.01159690625],[112.4139075,33.0389235664063],[112.385936308594,33.075014875],[112.351429472656,33.0879274726563],[112.343260527344,33.1097585273438],[112.331043730469,33.1181923652344],[112.345921660156,33.1787624335938],[112.321429472656,33.1879274726563],[112.317345,33.213843],[112.333260527344,33.2179274726563],[112.342345,33.2310842109375],[112.353802519531,33.2144924140625],[112.379176054688,33.2320119453125],[112.394105253906,33.2536330390626],[112.422623320313,33.2600258613282],[112.457647734375,33.2453151679688],[112.483802519531,33.2831935859376],[112.503616972656,33.2695131660156],[112.501051054688,33.2580690742187],[112.525706816406,33.248843]]],[[[112.393922148438,33.2860353828125],[112.397345,33.273843],[112.385152617188,33.2772658515626],[112.393922148438,33.2860353828125]]],[[[112.237345,33.323843],[112.237345,33.313843],[112.224537382813,33.318843],[112.237345,33.323843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"民权县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.430870390625,34.7921901679688],[115.433951445313,34.7538430000001],[115.431925078125,34.7286049628906],[115.44271609375,34.6992153144531],[115.457345,34.6338430000001],[115.453985625,34.6172023750001],[115.407345,34.5938430000001],[115.337647734375,34.6111525703125],[115.298985625,34.6024855781251],[115.242452421875,34.6200099921875],[115.158839140625,34.5994728828125],[115.163468046875,34.578843],[115.15435671875,34.5382082343751],[115.137345,34.533843],[115.114405546875,34.5250258613281],[115.102896757813,34.5393959785156],[115.064928007813,34.5682900214844],[115.00603640625,34.5456520820313],[114.907345,34.573843],[114.90298953125,34.5894863105469],[114.891549101563,34.608452375],[114.895299101563,34.6338430000001],[114.8915246875,34.6593825507813],[114.931226835938,34.6831264472656],[114.907086210938,34.7017604804688],[114.865889921875,34.6956728339844],[114.837623320313,34.7127236152344],[114.85369265625,34.7393666816406],[114.827345,34.743843],[114.821314726563,34.7591872382813],[114.83599734375,34.7705202460938],[114.852345,34.7681044746094],[114.86990359375,34.77069846875],[114.930064726563,34.7470497871094],[114.96170046875,34.7594863105469],[115.009879179688,34.7729018378907],[115.042379179688,34.7680995917969],[115.162335234375,34.7878041816406],[115.18170046875,34.7994863105469],[115.251495390625,34.8094081855469],[115.257345,34.843843],[115.268253203125,34.8565053535157],[115.313179960938,34.8601149726563],[115.35197390625,34.8384706855469],[115.394439726563,34.82882346875],[115.41197390625,34.8084706855469],[115.430870390625,34.7921901679688]]]]}},{"type":"Feature","properties":{"name":"宁陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.242452421875,34.6200099921875],[115.298985625,34.6024855781251],[115.337647734375,34.6111525703125],[115.407345,34.5938430000001],[115.441573515625,34.5400405097657],[115.447550078125,34.4920131660156],[115.42732546875,34.4758180976563],[115.403853789063,34.4358950019532],[115.397345,34.383843],[115.38666140625,34.3689394355469],[115.343697539063,34.3576039863282],[115.355299101563,34.2988930488281],[115.333170195313,34.2680178046875],[115.327345,34.263843],[115.29466921875,34.2718691230469],[115.27326296875,34.2579274726562],[115.157345,34.2538430000001],[115.17439578125,34.2981984687501],[115.158961210938,34.3105568671876],[115.193155546875,34.3687270332032],[115.181578398438,34.398843],[115.193004179688,34.4285597968751],[115.191676054688,34.4392031074219],[115.20322390625,34.458843],[115.186929960938,34.4865627265625],[115.141793242188,34.5182900214844],[115.137345,34.533843],[115.15435671875,34.5382082343751],[115.163468046875,34.578843],[115.158839140625,34.5994728828125],[115.242452421875,34.6200099921875]]]]}},{"type":"Feature","properties":{"name":"夏邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.366461210938,34.3116945625],[116.360225859375,34.2694863105469],[116.42298953125,34.2781996894531],[116.442579375,34.2900160957031],[116.45170046875,34.2781996894531],[116.457345,34.273843],[116.464722929688,34.1988149238281],[116.44197390625,34.1792153144532],[116.432667265625,34.1684157539063],[116.415655546875,34.1697817207031],[116.39197390625,34.1592153144531],[116.380728789063,34.1461611152344],[116.323316679688,34.1507741523438],[116.312667265625,34.1384157539063],[116.2866809375,34.14050315625],[116.25123171875,34.1099587226563],[116.232667265625,34.0884157539063],[116.215655546875,34.0897817207031],[116.19197390625,34.0792153144532],[116.16162234375,34.0576955390625],[116.126998320313,34.0604775214844],[116.11271609375,34.0284706855469],[116.08197390625,34.0192153144531],[116.064742460938,33.9992153144532],[116.05197390625,34.0084706855469],[116.035689726563,34.027368390625],[116.005655546875,34.0297817207032],[115.98197390625,34.0192153144531],[115.977345,33.993843],[115.945513945313,34.0020119453125],[115.917345,34.013843],[115.931793242188,34.0493959785157],[115.943590117188,34.0588430000001],[115.930533476563,34.0692958808594],[115.93392703125,34.0965431953126],[115.872896757813,34.1454116035157],[115.88771609375,34.1853713203125],[115.940714140625,34.2005239082031],[115.964156523438,34.2192958808594],[115.9587121875,34.2630605292969],[115.971793242188,34.2793959785157],[115.985284453125,34.2902016425782],[115.979351835938,34.3379091621094],[115.991793242188,34.4093959785157],[116.162896757813,34.4182900214844],[116.177345,34.423843],[116.199654570313,34.4176296210938],[116.21170046875,34.3881996894531],[116.25861453125,34.3782997871094],[116.28298953125,34.3594863105469],[116.298365507813,34.3395644355469],[116.366461210938,34.3116945625]]]]}},{"type":"Feature","properties":{"name":"永城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.043922148438,33.8360353828125],[116.047345,33.823843],[116.035152617188,33.8272658515625],[116.043922148438,33.8360353828125]]],[[[116.556744414063,34.1732631660157],[116.52298953125,34.1277358222656],[116.54170046875,34.0981996894532],[116.553795195313,34.0888661933594],[116.58298953125,34.0494863105469],[116.597345,34.0238430000001],[116.61170046875,33.9981996894532],[116.645089140625,33.9724269843751],[116.641607695313,33.9488430000001],[116.643326445313,33.9371938300781],[116.6325403125,33.8860756660157],[116.562579375,33.9135793281251],[116.542608671875,33.8877053046875],[116.49263796875,33.8680605292969],[116.476265898438,33.8704799628906],[116.43170046875,33.8394863105469],[116.42295046875,33.7980141425782],[116.400806914063,33.8012868476563],[116.387345,33.783843],[116.352379179688,33.7780995917969],[116.337345,33.7803212714844],[116.317838164063,33.7774379707032],[116.30298953125,33.7581996894532],[116.27170046875,33.7494863105469],[116.254136992188,33.7267299628907],[116.232345,33.7398744941407],[116.21298953125,33.7281996894532],[116.19170046875,33.7194863105469],[116.172735625,33.7080458808594],[116.155264921875,33.7106288886719],[116.1286340625,33.7451308417969],[116.1060559375,33.7625551582032],[116.09298953125,33.7794863105469],[116.067345,33.783843],[116.051124296875,33.8083913398438],[116.056827421875,33.8338430000001],[116.049586210938,33.8661476875],[116.01142703125,33.8879274726563],[116.00326296875,33.8997585273438],[115.965621367188,33.9257472968751],[115.98326296875,33.9379274726563],[115.999117460938,33.9608950019532],[115.977345,33.993843],[115.98197390625,34.0192153144531],[116.005655546875,34.0297817207032],[116.035689726563,34.027368390625],[116.05197390625,34.0084706855469],[116.064742460938,33.9992153144532],[116.08197390625,34.0192153144531],[116.11271609375,34.0284706855469],[116.126998320313,34.0604775214844],[116.16162234375,34.0576955390625],[116.19197390625,34.0792153144532],[116.215655546875,34.0897817207031],[116.232667265625,34.0884157539063],[116.25123171875,34.1099587226563],[116.2866809375,34.14050315625],[116.312667265625,34.1384157539063],[116.323316679688,34.1507741523438],[116.380728789063,34.1461611152344],[116.39197390625,34.1592153144531],[116.415655546875,34.1697817207031],[116.432667265625,34.1684157539063],[116.44197390625,34.1792153144532],[116.464722929688,34.1988149238281],[116.457345,34.273843],[116.473985625,34.2772023750001],[116.49916140625,34.297202375],[116.543985625,34.290483625],[116.577345,34.273843],[116.56427859375,34.2569118476563],[116.53298953125,34.2327614570313],[116.54170046875,34.1981996894531],[116.556744414063,34.1732631660157]]]]}},{"type":"Feature","properties":{"name":"虞城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.727345,34.5238430000001],[115.727345,34.533843],[115.747345,34.533843],[115.747345,34.5238430000001],[115.727345,34.5238430000001]]],[[[115.727345,34.5238430000001],[115.737828398438,34.5102602363281],[115.76170046875,34.5227614570313],[115.747345,34.533843],[115.752847929688,34.5571974921876],[115.783531523438,34.5676552558594],[115.787345,34.573843],[115.797345,34.573843],[115.823082304688,34.5646083808595],[115.9723059375,34.5878615546875],[115.989483671875,34.6252895332032],[116.042252226563,34.5884279609375],[116.09681765625,34.6080068183594],[116.14427859375,34.5548879218751],[116.187345,34.573843],[116.192652617188,34.5590444160157],[116.191749296875,34.543843],[116.193765898438,34.5100307441406],[116.152647734375,34.4569741035156],[116.172628203125,34.4391237617187],[116.177345,34.423843],[116.162896757813,34.4182900214844],[115.991793242188,34.4093959785157],[115.979351835938,34.3379091621094],[115.985284453125,34.2902016425782],[115.971793242188,34.2793959785157],[115.9587121875,34.2630605292969],[115.964156523438,34.2192958808594],[115.940714140625,34.2005239082031],[115.88771609375,34.1853713203125],[115.872896757813,34.1454116035157],[115.93392703125,34.0965431953126],[115.930533476563,34.0692958808594],[115.943590117188,34.0588430000001],[115.931793242188,34.0493959785157],[115.917345,34.013843],[115.909283476563,34.0041408515625],[115.875406523438,34.0235451484375],[115.855631132813,33.9997402167969],[115.842042265625,34.0310683417969],[115.802808867188,34.0593056464844],[115.787345,34.0638430000001],[115.771793242188,34.0882900214844],[115.75400515625,34.1305019355469],[115.7118371875,34.2022389960938],[115.690533476563,34.2192958808594],[115.699171171875,34.2887245917969],[115.681793242188,34.3182900214844],[115.677345,34.3338430000001],[115.713580351563,34.3571169257813],[115.801397734375,34.3225942207031],[115.787603789063,34.4159242988282],[115.762511015625,34.4352931953125],[115.7525403125,34.47108909375],[115.72900515625,34.4676100898438],[115.71298953125,34.5127614570313],[115.727345,34.5238430000001]]]]}},{"type":"Feature","properties":{"name":"柘城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.197345,33.9838430000001],[115.193922148438,33.9960353828125],[115.185152617188,33.9872658515625],[115.205211210938,33.9676869941406],[115.180797148438,33.9603932929688],[115.157345,33.9422158027344],[115.124991484375,33.9672927070313],[115.09775515625,33.9540566230469],[115.105230742188,33.9374196601563],[115.067345,33.933843],[115.062345,33.9466506171875],[115.057345,33.933843],[115.039859648438,33.94784690625],[115.052896757813,33.9582900214844],[115.061793242188,33.9793959785157],[115.074039335938,34.00022971875],[115.071656523438,34.0193666816407],[115.130679960938,34.0321376777344],[115.111651640625,34.0987795234376],[115.124600859375,34.1557790351563],[115.117345,34.2138430000001],[115.1524621875,34.2228542304688],[115.157345,34.2538430000001],[115.27326296875,34.2579274726562],[115.29466921875,34.2718691230469],[115.327345,34.263843],[115.34343875,34.2429933906251],[115.439185820313,34.2178603339844],[115.473463164063,34.1914028144532],[115.468834257813,34.1601003242188],[115.487345,34.1573647285157],[115.512354765625,34.1610610175782],[115.54170046875,34.0881996894531],[115.547345,34.083843],[115.540152617188,34.0263503242188],[115.461793242188,34.0093959785157],[115.441514921875,33.9840737128906],[115.385972929688,33.9999538398438],[115.352428007813,34.0196718574219],[115.293502226563,33.994233625],[115.279151640625,34.0282900214845],[115.251793242188,34.0193959785157],[115.242896757813,33.9882900214844],[115.197345,33.9838430000001]]]]}},{"type":"Feature","properties":{"name":"睢县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.907345,34.573843],[115.00603640625,34.5456520820313],[115.064928007813,34.5682900214844],[115.102896757813,34.5393959785156],[115.114405546875,34.5250258613281],[115.137345,34.533843],[115.141793242188,34.5182900214844],[115.186929960938,34.4865627265625],[115.20322390625,34.458843],[115.191676054688,34.4392031074219],[115.193004179688,34.4285597968751],[115.181578398438,34.398843],[115.193155546875,34.3687270332032],[115.158961210938,34.3105568671876],[115.17439578125,34.2981984687501],[115.157345,34.2538430000001],[115.1524621875,34.2228542304688],[115.117345,34.2138430000001],[115.057310820313,34.2240419746094],[115.02298953125,34.2494863105469],[114.9610559375,34.2625551582032],[114.93298953125,34.2794863105469],[114.897345,34.283843],[114.875401640625,34.3014138007813],[114.852896757813,34.3442665839844],[114.876514921875,34.3844435859375],[114.850611601563,34.4199062324219],[114.853663359375,34.4444606757813],[114.913931914063,34.4810671210938],[114.911099882813,34.503843],[114.914381132813,34.5302040839844],[114.907345,34.573843]]]]}},{"type":"Feature","properties":{"name":"梁园区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.727345,34.5238430000001],[115.747345,34.5238430000001],[115.747345,34.533843],[115.76170046875,34.5227614570313],[115.737828398438,34.5102602363281],[115.727345,34.5238430000001]]],[[[115.747345,34.533843],[115.727345,34.533843],[115.727345,34.5238430000001],[115.71298953125,34.5127614570313],[115.72900515625,34.4676100898438],[115.7525403125,34.47108909375],[115.762511015625,34.4352931953125],[115.787603789063,34.4159242988282],[115.801397734375,34.3225942207031],[115.713580351563,34.3571169257813],[115.677345,34.3338430000001],[115.670299101563,34.4146889472657],[115.581065703125,34.4286525703125],[115.562535429688,34.4086525703126],[115.542110625,34.3897280097657],[115.542550078125,34.3786659980469],[115.521065703125,34.3590334296876],[115.50252078125,34.379048078125],[115.492315703125,34.3786440253906],[115.397345,34.383843],[115.403853789063,34.4358950019532],[115.42732546875,34.4758180976563],[115.447550078125,34.4920131660156],[115.441573515625,34.5400405097657],[115.407345,34.5938430000001],[115.453985625,34.6172023750001],[115.457345,34.6338430000001],[115.52197390625,34.5784706855469],[115.63271609375,34.5692153144532],[115.679117460938,34.5565163398438],[115.6932825,34.6035585761719],[115.78271609375,34.5792153144532],[115.787345,34.573843],[115.783531523438,34.5676552558594],[115.752847929688,34.5571974921876],[115.747345,34.533843]]]]}},{"type":"Feature","properties":{"name":"睢阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.670299101563,34.4146889472657],[115.677345,34.3338430000001],[115.681793242188,34.3182900214844],[115.699171171875,34.2887245917969],[115.690533476563,34.2192958808594],[115.7118371875,34.2022389960938],[115.75400515625,34.1305019355469],[115.771793242188,34.0882900214844],[115.787345,34.0638430000001],[115.722828398438,34.0719033027344],[115.662203398438,34.0581313300781],[115.647345,34.0638430000001],[115.635152617188,34.079067609375],[115.5530871875,34.0910121894531],[115.547345,34.083843],[115.54170046875,34.0881996894531],[115.512354765625,34.1610610175782],[115.487345,34.1573647285157],[115.468834257813,34.1601003242188],[115.473463164063,34.1914028144532],[115.439185820313,34.2178603339844],[115.34343875,34.2429933906251],[115.327345,34.263843],[115.333170195313,34.2680178046875],[115.355299101563,34.2988930488281],[115.343697539063,34.3576039863282],[115.38666140625,34.3689394355469],[115.397345,34.383843],[115.492315703125,34.3786440253906],[115.50252078125,34.379048078125],[115.521065703125,34.3590334296876],[115.542550078125,34.3786659980469],[115.542110625,34.3897280097657],[115.562535429688,34.4086525703126],[115.581065703125,34.4286525703125],[115.670299101563,34.4146889472657]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"固始县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.769058867188,32.5079470039063],[115.782066679688,32.4779567695313],[115.816671171875,32.4977761054688],[115.837345,32.5038430000001],[115.875484648438,32.4990724921875],[115.871695585938,32.4686257148438],[115.893424101563,32.3925295234375],[115.891632109375,32.3781032539063],[115.901793242188,32.3082888007813],[115.913941679688,32.2766799140626],[115.907242460938,32.2228176093751],[115.921793242188,32.1882888007813],[115.933013945313,32.1692018867188],[115.931724882813,32.1588430000001],[115.932994414063,32.1486257148438],[115.921612578125,32.1087624335937],[115.936163359375,32.070903546875],[115.918272734375,32.0565773750001],[115.924879179688,32.0034499335938],[115.9079309375,31.9593459296875],[115.913316679688,31.9160158515625],[115.891676054688,31.8792018867187],[115.892965117188,31.868843],[115.889625273438,31.8419753242188],[115.902896757813,31.8193971992187],[115.907345,31.793843],[115.891246367188,31.7899391914063],[115.878531523438,31.7700783515625],[115.842105742188,31.7803151679687],[115.812315703125,31.7672512031251],[115.762613554688,31.7903249335937],[115.732471953125,31.7818532539063],[115.720767851563,31.7635720039063],[115.676007109375,31.7831984687501],[115.653443632813,31.7677468085938],[115.637345,31.763843],[115.6115246875,31.7782985664063],[115.614947539063,31.8014430976563],[115.582857695313,31.7967018867188],[115.559879179688,31.826469953125],[115.573140898438,31.8484523750001],[115.570865507813,31.863843],[115.574327421875,31.8872634101563],[115.593297148438,31.9187062812501],[115.579127226563,31.9547487617188],[115.560206328125,31.9693556953126],[115.564483671875,31.9983303046876],[115.55170046875,32.00819846875],[115.54298953125,32.0294875312501],[115.50170046875,32.03819846875],[115.490601835938,32.0908010078126],[115.471832304688,32.0880275703125],[115.462857695313,32.0996584296875],[115.428697539063,32.0946096015625],[115.408741484375,32.0229445625001],[115.367345,32.053843],[115.36326296875,32.0897585273438],[115.344742460938,32.1651442695313],[115.365557890625,32.1795143867188],[115.358121367188,32.2126784492188],[115.377345,32.253843],[115.502535429688,32.2886525703125],[115.529542265625,32.3178005195312],[115.552550078125,32.3286598945313],[115.551373320313,32.3583107734376],[115.570045195313,32.375610578125],[115.577345,32.413843],[115.587345,32.413843],[115.587345,32.4238430000001],[115.602808867188,32.4193044257813],[115.622345,32.4081154609375],[115.642022734375,32.4193849921876],[115.670572539063,32.4164748359375],[115.673873320313,32.448843],[115.671793242188,32.469233625],[115.682808867188,32.4783815742188],[115.692735625,32.4903322578125],[115.749610625,32.4845339179688],[115.769058867188,32.5079470039063]]],[[[115.867345,32.5438430000001],[115.863985625,32.5272023750001],[115.837345,32.513843],[115.840704375,32.530483625],[115.867345,32.5438430000001]]],[[[115.867345,32.5438430000001],[115.867345,32.553843],[115.877345,32.553843],[115.877345,32.5438430000001],[115.867345,32.5438430000001]]],[[[115.877345,32.553843],[115.885870390625,32.5870632148438],[115.917345,32.5738430000001],[115.909176054688,32.5620119453126],[115.877345,32.553843]]]]}},{"type":"Feature","properties":{"name":"光山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.78298953125,32.1494875312501],[114.801954375,32.1380471015625],[114.839425078125,32.1435842109376],[114.853746367188,32.1621388984375],[114.89298953125,32.17819846875],[114.897345,32.183843],[114.904483671875,32.1783303046875],[114.899840117188,32.1469045234375],[114.95170046875,32.07819846875],[115.005611601563,32.0690407539063],[114.99298953125,32.03819846875],[114.97298953125,32.0227614570313],[114.98170046875,32.00819846875],[114.994483671875,31.9983303046876],[114.987735625,31.9526540351563],[115.033140898438,31.9252663398438],[115.062857695313,31.9296584296876],[115.07170046875,31.91819846875],[115.08298953125,31.9094875312501],[115.105889921875,31.8798171210937],[115.127345,31.873843],[115.11009890625,31.8002687812501],[115.181842070313,31.7438503242188],[115.157345,31.7038430000001],[115.12142703125,31.7079274726562],[115.09201296875,31.7270827460938],[115.082847929688,31.7403542304688],[115.049439726563,31.7263234687501],[115.031676054688,31.7520558906251],[115.002345,31.7454811835938],[114.982345,31.7499636054688],[114.957345,31.744360578125],[114.90568484375,31.7559401679688],[114.83187625,31.7904055],[114.82326296875,31.7779274726563],[114.781861601563,31.7673024726563],[114.77326296875,31.7797585273438],[114.754522734375,31.7926955390626],[114.732066679688,31.7876589179688],[114.701842070313,31.8003542304688],[114.69326296875,31.7879274726563],[114.6670715625,31.7797585273438],[114.65326296875,31.7997585273438],[114.63697390625,31.811001203125],[114.60435671875,31.8036891914063],[114.593013945313,31.8201149726563],[114.581529570313,31.8175392890625],[114.577345,31.833843],[114.569830351563,31.8538430000001],[114.582808867188,31.8883815742187],[114.591881132813,31.9217678046875],[114.571881132813,31.9383815742188],[114.562808867188,31.9493044257812],[114.533267851563,31.973843],[114.562808867188,31.9983815742188],[114.571881132813,32.0193044257813],[114.592808867188,32.0283815742188],[114.61095828125,32.0702297187501],[114.63650515625,32.1148415351563],[114.652896757813,32.1284523750001],[114.651324492188,32.143843],[114.65318484375,32.1620803046876],[114.672808867188,32.1783815742188],[114.677345,32.1938430000001],[114.742764921875,32.1827297187501],[114.76170046875,32.15819846875],[114.78298953125,32.1494875312501]]]]}},{"type":"Feature","properties":{"name":"淮滨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.577345,32.413843],[115.577345,32.4238430000001],[115.587345,32.4238430000001],[115.587345,32.413843],[115.577345,32.413843]]],[[[115.567345,32.413843],[115.544620390625,32.4098366523438],[115.561783476563,32.400844953125],[115.577345,32.413843],[115.570045195313,32.375610578125],[115.551373320313,32.3583107734376],[115.552550078125,32.3286598945313],[115.529542265625,32.3178005195312],[115.502535429688,32.2886525703125],[115.377345,32.253843],[115.327359648438,32.2600881171876],[115.305318632813,32.2573464179688],[115.312965117188,32.318843],[115.311241484375,32.3327150703125],[115.291793242188,32.3482888007813],[115.282799101563,32.3595217109375],[115.267345,32.3576003242187],[115.250079375,32.3597463203125],[115.232799101563,32.3381642890625],[115.215318632813,32.3403395820313],[115.182896757813,32.3593971992188],[115.131793242188,32.3682888007813],[115.122896757813,32.3793971992188],[115.117345,32.3838430000001],[115.122652617188,32.3986428046875],[115.120328398438,32.4376540351563],[115.096710234375,32.503481671875],[115.033468046875,32.5325075507813],[115.062628203125,32.5585622382813],[115.072061796875,32.5769289375],[115.019674101563,32.5891188789062],[115.057906523438,32.6232814765625],[115.067345,32.633843],[115.093077421875,32.6295778632813],[115.107974882813,32.6095534492188],[115.133316679688,32.5994826484375],[115.1299621875,32.5799880195312],[115.161612578125,32.5995778632813],[115.187345,32.603843],[115.19170046875,32.59819846875],[115.270391875,32.5848317695313],[115.277345,32.593843],[115.291632109375,32.5824025703125],[115.302803984375,32.55589378125],[115.402799101563,32.5796340156251],[115.411793242188,32.5582888007813],[115.432896757813,32.5493971992188],[115.448785429688,32.529555890625],[115.475289335938,32.5183888984375],[115.514146757813,32.4544118476563],[115.532896757813,32.4393971992188],[115.541793242188,32.4282888007813],[115.562896757813,32.4193971992188],[115.567345,32.413843]]]]}},{"type":"Feature","properties":{"name":"罗山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,32.3138430000001],[114.603883085938,32.3053762031251],[114.637345,32.3103200507813],[114.657345,32.3073659492187],[114.672916289063,32.3096657539063],[114.682345,32.2866262031251],[114.71170046875,32.2909645820313],[114.70298953125,32.2781984687501],[114.691392851563,32.2692507148438],[114.703258085938,32.228559796875],[114.677345,32.1938430000001],[114.672808867188,32.1783815742188],[114.65318484375,32.1620803046876],[114.651324492188,32.143843],[114.652896757813,32.1284523750001],[114.63650515625,32.1148415351563],[114.61095828125,32.0702297187501],[114.592808867188,32.0283815742188],[114.571881132813,32.0193044257813],[114.562808867188,31.9983815742188],[114.533267851563,31.973843],[114.562808867188,31.9493044257812],[114.571881132813,31.9383815742188],[114.591881132813,31.9217678046875],[114.582808867188,31.8883815742187],[114.569830351563,31.8538430000001],[114.577345,31.833843],[114.560474882813,31.8221950507813],[114.564586210938,31.803843],[114.561217070313,31.7888014960938],[114.567345,31.763843],[114.552198515625,31.7692775703125],[114.532345,31.7470558906251],[114.51259890625,31.7691555],[114.501470976563,31.7684938789063],[114.5026575,31.7485890937501],[114.490845976563,31.7380373359376],[114.467345,31.739438703125],[114.430667753906,31.7372536445313],[114.288597441406,31.7588649726562],[114.231170683594,31.8231374335938],[114.187345,31.8538430000001],[114.21130984375,31.8901076484375],[114.171429472656,31.9379274726563],[114.163260527344,31.9841188789063],[114.201329375,32.0104030585937],[114.207345,32.033843],[114.23298953125,32.04819846875],[114.24170046875,32.05948753125],[114.25298953125,32.06819846875],[114.26170046875,32.07948753125],[114.27298953125,32.0881984687501],[114.28170046875,32.1094875312501],[114.313656035156,32.1490236640625],[114.271529570313,32.1783180976563],[114.274561796875,32.1988430000001],[114.271514921875,32.2194557929688],[114.32298953125,32.22819846875],[114.362943144531,32.2578200507812],[114.367345,32.293843],[114.417332792969,32.2875978828125],[114.432345,32.2894655585938],[114.447345,32.2876003242188],[114.467345,32.2900856757813],[114.482799101563,32.2881642890625],[114.498546171875,32.3078322578125],[114.531983671875,32.2881764960938],[114.548428984375,32.2902223945312],[114.567345,32.3138430000001]]]]}},{"type":"Feature","properties":{"name":"商城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.462857695313,32.0996584296875],[115.471832304688,32.0880275703125],[115.490601835938,32.0908010078126],[115.50170046875,32.03819846875],[115.54298953125,32.0294875312501],[115.55170046875,32.00819846875],[115.564483671875,31.9983303046876],[115.560206328125,31.9693556953126],[115.579127226563,31.9547487617188],[115.593297148438,31.9187062812501],[115.574327421875,31.8872634101563],[115.570865507813,31.863843],[115.573140898438,31.8484523750001],[115.559879179688,31.826469953125],[115.582857695313,31.7967018867188],[115.614947539063,31.8014430976563],[115.6115246875,31.7782985664063],[115.637345,31.763843],[115.6255871875,31.7501955390626],[115.542633085938,31.6984181953125],[115.524361601563,31.6998854804688],[115.480103789063,31.6617555976563],[115.483824492188,31.6154274726563],[115.433360625,31.5838185859376],[115.420465117188,31.5409938789063],[115.366187773438,31.4942287421875],[115.383360625,31.4474587226563],[115.367345,31.403843],[115.33142703125,31.3997585273438],[115.307345,31.3840749335938],[115.280230742188,31.4017311835938],[115.25037234375,31.3950368476563],[115.254932890625,31.4153908515625],[115.205621367188,31.4338430000001],[115.213468046875,31.4688430000001],[115.208590117188,31.4905959296876],[115.226378203125,31.5479811835938],[115.174010039063,31.5778688789062],[115.167345,31.603843],[115.175513945313,31.6356740546876],[115.19326296875,31.6479274726563],[115.21142703125,31.6781642890625],[115.16142703125,31.6879274726563],[115.157345,31.7038430000001],[115.181842070313,31.7438503242188],[115.11009890625,31.8002687812501],[115.127345,31.873843],[115.13271609375,31.87847190625],[115.160758085938,31.9110182929688],[115.21271609375,31.89921409375],[115.231651640625,31.8772365546875],[115.2466028125,31.8945876289063],[115.282979765625,31.9259304023438],[115.281573515625,31.9434401679687],[115.304029570313,32.0422927070313],[115.367345,32.053843],[115.408741484375,32.0229445625001],[115.428697539063,32.0946096015625],[115.462857695313,32.0996584296875]]]]}},{"type":"Feature","properties":{"name":"息县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.057906523438,32.6232814765625],[115.019674101563,32.5891188789062],[115.072061796875,32.5769289375],[115.062628203125,32.5585622382813],[115.033468046875,32.5325075507813],[115.096710234375,32.503481671875],[115.120328398438,32.4376540351563],[115.122652617188,32.3986428046875],[115.117345,32.3838430000001],[115.111793242188,32.3793971992188],[115.102896757813,32.3582888007813],[115.073595,32.3084401679688],[115.031656523438,32.2993679023438],[115.033248320313,32.2865773750001],[115.011793242188,32.2693971992188],[114.995904570313,32.249555890625],[114.968785429688,32.238130109375],[114.95099734375,32.2159157539063],[114.908785429688,32.198130109375],[114.897345,32.183843],[114.89298953125,32.17819846875],[114.853746367188,32.1621388984375],[114.839425078125,32.1435842109376],[114.801954375,32.1380471015625],[114.78298953125,32.1494875312501],[114.76170046875,32.15819846875],[114.742764921875,32.1827297187501],[114.677345,32.1938430000001],[114.703258085938,32.228559796875],[114.691392851563,32.2692507148438],[114.70298953125,32.2781984687501],[114.71170046875,32.2909645820313],[114.682345,32.2866262031251],[114.672916289063,32.3096657539063],[114.657345,32.3073659492187],[114.637345,32.3103200507813],[114.603883085938,32.3053762031251],[114.567345,32.3138430000001],[114.572061796875,32.3191237617188],[114.602628203125,32.3385622382813],[114.622061796875,32.3691237617188],[114.64904421875,32.3932302070313],[114.571451445313,32.4288430000001],[114.572940703125,32.453843],[114.569674101563,32.5086769843751],[114.622628203125,32.5185622382813],[114.647345,32.5319948554688],[114.688521757813,32.5096193671876],[114.70564578125,32.5469338203125],[114.722061796875,32.5285622382813],[114.783189726563,32.5096877265625],[114.7808996875,32.5480837226563],[114.80322390625,32.5680275703126],[114.784542265625,32.6024025703126],[114.807594023438,32.6230007148438],[114.886373320313,32.618305890625],[114.897345,32.6538430000001],[114.980264921875,32.661997296875],[115.02271609375,32.64921409375],[115.05197390625,32.6384719062501],[115.067345,32.633843],[115.057906523438,32.6232814765625]]]]}},{"type":"Feature","properties":{"name":"新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.577345,31.833843],[114.581529570313,31.8175392890625],[114.593013945313,31.8201149726563],[114.60435671875,31.8036891914063],[114.63697390625,31.811001203125],[114.65326296875,31.7997585273438],[114.6670715625,31.7797585273438],[114.69326296875,31.7879274726563],[114.701842070313,31.8003542304688],[114.732066679688,31.7876589179688],[114.754522734375,31.7926955390626],[114.77326296875,31.7797585273438],[114.781861601563,31.7673024726563],[114.82326296875,31.7779274726563],[114.83187625,31.7904055],[114.90568484375,31.7559401679688],[114.957345,31.744360578125],[114.982345,31.7499636054688],[115.002345,31.7454811835938],[115.031676054688,31.7520558906251],[115.049439726563,31.7263234687501],[115.082847929688,31.7403542304688],[115.09201296875,31.7270827460938],[115.12142703125,31.7079274726562],[115.157345,31.7038430000001],[115.16142703125,31.6879274726563],[115.21142703125,31.6781642890625],[115.19326296875,31.6479274726563],[115.175513945313,31.6356740546876],[115.167345,31.603843],[115.121026640625,31.59972190625],[115.124215117188,31.5854909492188],[115.097193632813,31.56683128125],[115.106690703125,31.5244631171875],[115.053975859375,31.5097585273438],[115.021998320313,31.5305812812501],[115.000943632813,31.5000905585938],[115.003468046875,31.488843],[114.999600859375,31.4715944648438],[114.962345,31.5004689765625],[114.932847929688,31.4776100898438],[114.917345,31.4810842109375],[114.887345,31.474360578125],[114.854425078125,31.4817385078125],[114.827345,31.463843],[114.803170195313,31.4796681953126],[114.781519804688,31.4880178046875],[114.763170195313,31.5196681953126],[114.712413359375,31.5298439765625],[114.690709257813,31.5255544257813],[114.693472929688,31.5395510078125],[114.671519804688,31.5480178046875],[114.633170195313,31.5796681953125],[114.597506132813,31.5880178046875],[114.5782434375,31.5611452460938],[114.547345,31.573843],[114.551065703125,31.650122296875],[114.563624296875,31.667563703125],[114.571065703125,31.690122296875],[114.584351835938,31.6979982734375],[114.573761015625,31.728843],[114.58443484375,31.7599343085938],[114.567345,31.763843],[114.561217070313,31.7888014960938],[114.564586210938,31.803843],[114.560474882813,31.8221950507813],[114.577345,31.833843]]]]}},{"type":"Feature","properties":{"name":"潢川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.215318632813,32.3403395820313],[115.232799101563,32.3381642890625],[115.250079375,32.3597463203125],[115.267345,32.3576003242187],[115.282799101563,32.3595217109375],[115.291793242188,32.3482888007813],[115.311241484375,32.3327150703125],[115.312965117188,32.318843],[115.305318632813,32.2573464179688],[115.327359648438,32.2600881171876],[115.377345,32.253843],[115.358121367188,32.2126784492188],[115.365557890625,32.1795143867188],[115.344742460938,32.1651442695313],[115.36326296875,32.0897585273438],[115.367345,32.053843],[115.304029570313,32.0422927070313],[115.281573515625,31.9434401679687],[115.282979765625,31.9259304023438],[115.2466028125,31.8945876289063],[115.231651640625,31.8772365546875],[115.21271609375,31.89921409375],[115.160758085938,31.9110182929688],[115.13271609375,31.87847190625],[115.127345,31.873843],[115.105889921875,31.8798171210937],[115.08298953125,31.9094875312501],[115.07170046875,31.91819846875],[115.062857695313,31.9296584296876],[115.033140898438,31.9252663398438],[114.987735625,31.9526540351563],[114.994483671875,31.9983303046876],[114.98170046875,32.00819846875],[114.97298953125,32.0227614570313],[114.99298953125,32.03819846875],[115.005611601563,32.0690407539063],[114.95170046875,32.07819846875],[114.899840117188,32.1469045234375],[114.904483671875,32.1783303046875],[114.897345,32.183843],[114.908785429688,32.198130109375],[114.95099734375,32.2159157539063],[114.968785429688,32.238130109375],[114.995904570313,32.249555890625],[115.011793242188,32.2693971992188],[115.033248320313,32.2865773750001],[115.031656523438,32.2993679023438],[115.073595,32.3084401679688],[115.102896757813,32.3582888007813],[115.111793242188,32.3793971992188],[115.117345,32.3838430000001],[115.122896757813,32.3793971992188],[115.131793242188,32.3682888007813],[115.182896757813,32.3593971992188],[115.215318632813,32.3403395820313]]]]}},{"type":"Feature","properties":{"name":"平桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.277345,32.413843],[114.280767851563,32.4260353828125],[114.289537382813,32.4172658515625],[114.277345,32.413843]]],[[[113.937345,32.553843],[113.937345,32.563843],[113.950152617188,32.558843],[113.937345,32.553843]]],[[[113.937345,32.563843],[113.924537382813,32.558843],[113.937345,32.553843],[113.949947539063,32.5097634101563],[113.977738066406,32.5063063789062],[114.011790800781,32.5193971992188],[114.042899199219,32.5282888007813],[114.056810332031,32.5456642890626],[114.084334746094,32.4493971992188],[114.151461210938,32.46487815625],[114.161790800781,32.4893971992188],[114.187345,32.493843],[114.205240507813,32.4667604804687],[114.200369902344,32.4450368476563],[114.244847441406,32.4550075507813],[114.239705839844,32.4320729804687],[114.261429472656,32.4179274726563],[114.277345,32.413843],[114.280704375,32.377202375],[114.334234648438,32.3704518867188],[114.34478640625,32.3488430000001],[114.339676542969,32.3383815742188],[114.363985625,32.310483625],[114.367345,32.293843],[114.362943144531,32.2578200507812],[114.32298953125,32.22819846875],[114.271514921875,32.2194557929688],[114.274561796875,32.1988430000001],[114.271529570313,32.1783180976563],[114.313656035156,32.1490236640625],[114.28170046875,32.1094875312501],[114.27298953125,32.0881984687501],[114.26170046875,32.07948753125],[114.25298953125,32.06819846875],[114.24170046875,32.05948753125],[114.23298953125,32.04819846875],[114.207345,32.033843],[114.17271609375,32.0592140937501],[114.111119414063,32.0686013007813],[114.112747832031,32.088843],[114.111615019531,32.102934796875],[114.058204375,32.148950421875],[114.074744902344,32.193989484375],[114.070159941406,32.2510329414063],[114.036102324219,32.2884719062501],[114.017345,32.2464333320313],[113.972345,32.2500490546875],[113.951998320313,32.2484133125],[113.94271609375,32.26921409375],[113.930330839844,32.2798854804687],[113.912345,32.2784401679688],[113.901180449219,32.2793386054688],[113.904107695313,32.3157863593751],[113.837642851563,32.3357961250001],[113.822667265625,32.3184133125001],[113.757345,32.323843],[113.743648710938,32.3326100898438],[113.757345,32.363843],[113.769537382813,32.3672658515626],[113.760767851563,32.3760353828125],[113.757345,32.363843],[113.738638945313,32.3673781562501],[113.750340605469,32.3877883125001],[113.730523710938,32.3970217109375],[113.724166289063,32.4106642890625],[113.707345,32.413843],[113.736600371094,32.4645876289063],[113.75271609375,32.4784719062501],[113.763048125,32.535102765625],[113.761165800781,32.5585182929688],[113.77271609375,32.56847190625],[113.797345,32.603843],[113.813804960938,32.6073830390625],[113.824766875,32.6273830390626],[113.863804960938,32.6203029609375],[113.888970976563,32.6012697578125],[113.920816679688,32.6143947578126],[113.90990359375,32.5879225898438],[113.930264921875,32.576762921875],[113.937345,32.563843]]]]}},{"type":"Feature","properties":{"name":"浉河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.757345,32.283843],[113.760767851563,32.2716506171875],[113.769537382813,32.2804201484375],[113.763543730469,32.3090822578126],[113.757345,32.323843],[113.822667265625,32.3184133125001],[113.837642851563,32.3357961250001],[113.904107695313,32.3157863593751],[113.901180449219,32.2793386054688],[113.912345,32.2784401679688],[113.930330839844,32.2798854804687],[113.94271609375,32.26921409375],[113.951998320313,32.2484133125],[113.972345,32.2500490546875],[114.017345,32.2464333320313],[114.036102324219,32.2884719062501],[114.070159941406,32.2510329414063],[114.074744902344,32.193989484375],[114.058204375,32.148950421875],[114.111615019531,32.102934796875],[114.112747832031,32.088843],[114.111119414063,32.0686013007813],[114.17271609375,32.0592140937501],[114.207345,32.033843],[114.201329375,32.0104030585937],[114.163260527344,31.9841188789063],[114.171429472656,31.9379274726563],[114.21130984375,31.8901076484375],[114.187345,31.8538430000001],[114.134964628906,31.8449440742188],[114.11298953125,31.80819846875],[114.107345,31.803843],[114.097345,31.803843],[114.097345,31.793843],[114.058685332031,31.7799709296876],[114.012064238281,31.7691237617188],[113.976168242188,31.7496193671876],[113.962625761719,31.7791237617188],[113.952064238281,31.7985622382812],[113.939881621094,31.8251076484376],[113.953221464844,31.8496584296876],[113.932064238281,31.8685622382813],[113.916812773438,31.8856301093751],[113.892625761719,31.8585622382813],[113.879598417969,31.8469216132813],[113.831507597656,31.8497878242188],[113.832642851563,31.868843],[113.831451445313,31.8888430000001],[113.832718535156,31.9101076484375],[113.801405058594,31.9380837226563],[113.803238554688,31.9688430000001],[113.748179960938,31.9941139960937],[113.783961210938,32.0402834296875],[113.722064238281,32.0885622382813],[113.717345,32.093843],[113.723455839844,32.0982228828126],[113.718651152344,32.1225368476563],[113.750797148438,32.1161843085937],[113.761519804688,32.1696681953126],[113.773170195313,32.1880178046876],[113.781519804688,32.2116432929687],[113.759244414063,32.2072414375],[113.737230253906,32.2379567695313],[113.743333769531,32.2688430000001],[113.7388684375,32.2914357734376],[113.757345,32.283843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"川汇区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.652896757813,33.7093959785157],[114.663673125,33.6717116523438],[114.693707304688,33.6590554023437],[114.722896757813,33.6093959785157],[114.727345,33.593843],[114.71142703125,33.5897585273438],[114.70326296875,33.5779274726563],[114.66142703125,33.5697585273438],[114.639859648438,33.5557143378907],[114.614830351563,33.5919716621094],[114.585323515625,33.5727577949219],[114.577345,33.6038430000001],[114.582213164063,33.6245204902344],[114.609595976563,33.6413930488282],[114.583531523438,33.6785158515626],[114.59156375,33.6906435371094],[114.623150664063,33.680805890625],[114.641158476563,33.7100307441406],[114.647345,33.7138430000001],[114.652896757813,33.7093959785157]]]]}},{"type":"Feature","properties":{"name":"郸城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.087345,33.813843],[115.1143371875,33.7969948554688],[115.142623320313,33.7992665839844],[115.162266875,33.7883058906251],[115.21654421875,33.8082375312501],[115.266182890625,33.7805434394532],[115.292345,33.7784413886719],[115.311363554688,33.7799697089844],[115.332066679688,33.7684194160157],[115.360103789063,33.7706716132813],[115.387100859375,33.7556093574219],[115.443316679688,33.7601259589844],[115.463048125,33.7372231269531],[115.57197390625,33.7284706855469],[115.587345,33.7238430000001],[115.593160429688,33.7193544746094],[115.591363554688,33.7071938300781],[115.60281375,33.6529360175782],[115.62298953125,33.6194863105469],[115.637345,33.583843],[115.56170046875,33.5794863105469],[115.55298953125,33.5681996894532],[115.503560820313,33.55776878125],[115.452271757813,33.569653546875],[115.406246367188,33.5562331367188],[115.397345,33.503843],[115.354986601563,33.5236220527344],[115.341085234375,33.4694557929688],[115.3466809375,33.4445082832032],[115.311832304688,33.4523207832032],[115.307345,33.423843],[115.292623320313,33.4300258613282],[115.282066679688,33.4276601386719],[115.25326296875,33.4397585273438],[115.194776640625,33.4489760566406],[115.18326296875,33.4797585273438],[115.17142703125,33.4879274726563],[115.1507825,33.5240969062501],[115.122296171875,33.5177114082032],[115.057345,33.5338430000001],[115.047047148438,33.5568325019532],[115.059381132813,33.5964272285156],[115.041158476563,33.6076552558594],[115.033531523438,33.6200307441407],[115.021158476563,33.6276552558594],[115.005748320313,33.6526638007813],[115.019976835938,33.6983522773438],[115.033531523438,33.7176552558594],[115.041158476563,33.7400307441407],[115.060386992188,33.751880109375],[115.082178984375,33.7919057441407],[115.087345,33.813843]]]]}},{"type":"Feature","properties":{"name":"扶沟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.607345,34.263843],[114.614010039063,34.1836354804688],[114.572584257813,34.1684218574219],[114.543702421875,34.1707424140626],[114.541138945313,34.1388430000001],[114.543150664063,34.113843],[114.5394153125,34.0674025703125],[114.579478789063,34.0706215644532],[114.60197390625,34.0512404609375],[114.59271609375,34.0384706855469],[114.5819153125,34.0291664863282],[114.582769804688,34.0185646796875],[114.567926054688,33.9919594550781],[114.5880871875,33.9745864082032],[114.597345,33.963843],[114.51170046875,33.9494863105469],[114.480377226563,33.9371718574219],[114.483824492188,33.9138430000001],[114.479215117188,33.8826552558594],[114.428736601563,33.8901149726563],[114.37298953125,33.8681996894532],[114.334635039063,33.8575197578125],[114.307345,33.863843],[114.293741484375,33.9203017402344],[114.303333769531,33.968843],[114.301356230469,33.978843],[114.305186796875,33.9982228828126],[114.291519804688,34.0080178046876],[114.283170195313,34.0296681953125],[114.271519804688,34.0480178046876],[114.255347929688,34.0899477363282],[114.279447050781,34.1279042792969],[114.267406035156,34.188843],[114.275186796875,34.2282228828126],[114.261519804688,34.2380178046876],[114.257345,34.243843],[114.263421660156,34.2675258613281],[114.300716582031,34.2779274726563],[114.343306914063,34.2501930976563],[114.380716582031,34.2397585273438],[114.440553007813,34.2787233710938],[114.417345,34.313843],[114.423170195313,34.3180178046876],[114.437506132813,34.3380178046875],[114.473170195313,34.3296681953125],[114.491519804688,34.3180178046876],[114.513170195313,34.3096681953125],[114.533253203125,34.2816481757813],[114.601519804688,34.2680178046875],[114.607345,34.263843]]]]}},{"type":"Feature","properties":{"name":"淮阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.012257109375,33.9198207832032],[115.047345,33.903843],[115.06326296875,33.8797585273438],[115.0786340625,33.819858625],[115.087345,33.813843],[115.082178984375,33.7919057441407],[115.060386992188,33.751880109375],[115.041158476563,33.7400307441407],[115.033531523438,33.7176552558594],[115.019976835938,33.6983522773438],[115.005748320313,33.6526638007813],[115.021158476563,33.6276552558594],[115.033531523438,33.6200307441407],[115.041158476563,33.6076552558594],[115.059381132813,33.5964272285156],[115.047047148438,33.5568325019532],[115.057345,33.5338430000001],[115.050240507813,33.5189492011719],[115.060885039063,33.4931227851563],[115.045133085938,33.4581117988282],[115.018385039063,33.4434499335938],[115.024449492188,33.4287367988282],[115.017345,33.4138430000001],[114.97666140625,33.4188149238282],[114.95298953125,33.4494863105469],[114.890318632813,33.4601332832032],[114.895616484375,33.4959706855469],[114.867345,33.503843],[114.86326296875,33.5297585273438],[114.839332304688,33.5606349921875],[114.73142703125,33.5879274726563],[114.727345,33.593843],[114.722896757813,33.6093959785157],[114.693707304688,33.6590554023437],[114.663673125,33.6717116523438],[114.652896757813,33.7093959785157],[114.647345,33.7138430000001],[114.651158476563,33.7600307441407],[114.714244414063,33.7677431464844],[114.707672148438,33.788843],[114.715460234375,33.813843],[114.710787382813,33.8288430000001],[114.713912382813,33.8388747382813],[114.699840117188,33.8816628242188],[114.714971953125,33.9062184882813],[114.727345,33.9138430000001],[114.758365507813,33.9016469550782],[114.782379179688,33.8980995917969],[114.857047148438,33.9103652167969],[114.872345,33.9081044746094],[114.917345,33.9147536445313],[114.986832304688,33.9044850898438],[115.012257109375,33.9198207832032]]]]}},{"type":"Feature","properties":{"name":"鹿邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.197345,33.9838430000001],[115.185152617188,33.9872658515625],[115.193922148438,33.9960353828125],[115.197345,33.9838430000001]]],[[[115.197345,33.9838430000001],[115.242896757813,33.9882900214844],[115.251793242188,34.0193959785157],[115.279151640625,34.0282900214845],[115.293502226563,33.994233625],[115.352428007813,34.0196718574219],[115.385972929688,33.9999538398438],[115.441514921875,33.9840737128906],[115.461793242188,34.0093959785157],[115.540152617188,34.0263503242188],[115.547345,34.083843],[115.5530871875,34.0910121894531],[115.635152617188,34.079067609375],[115.647345,34.0638430000001],[115.64244265625,34.0387429023438],[115.595362578125,34.0272646308594],[115.582242460938,33.9889321113282],[115.582447539063,33.9787465644532],[115.562877226563,33.9599428535157],[115.562139921875,33.923843],[115.562447539063,33.9087465644531],[115.5324621875,33.8799379707031],[115.63172,33.8678090644531],[115.609410429688,33.7762905097656],[115.56252078125,33.7923403144531],[115.5622278125,33.7781850410157],[115.58244265625,33.7389430976563],[115.587345,33.7238430000001],[115.57197390625,33.7284706855469],[115.463048125,33.7372231269531],[115.443316679688,33.7601259589844],[115.387100859375,33.7556093574219],[115.360103789063,33.7706716132813],[115.332066679688,33.7684194160157],[115.311363554688,33.7799697089844],[115.292345,33.7784413886719],[115.266182890625,33.7805434394532],[115.21654421875,33.8082375312501],[115.162266875,33.7883058906251],[115.142623320313,33.7992665839844],[115.1143371875,33.7969948554688],[115.087345,33.813843],[115.0786340625,33.819858625],[115.06326296875,33.8797585273438],[115.047345,33.903843],[115.053985625,33.917202375],[115.057345,33.933843],[115.067345,33.933843],[115.105230742188,33.9374196601563],[115.09775515625,33.9540566230469],[115.124991484375,33.9672927070313],[115.157345,33.9422158027344],[115.180797148438,33.9603932929688],[115.205211210938,33.9676869941406],[115.197345,33.9838430000001]]]]}},{"type":"Feature","properties":{"name":"商水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,33.423843],[114.483922148438,33.4116506171875],[114.475152617188,33.4204201484375],[114.487345,33.423843]]],[[[114.487345,33.423843],[114.48326296875,33.4397585273438],[114.46142703125,33.4479274726563],[114.45033328125,33.4639968085938],[114.422345,33.4577223945313],[114.407345,33.4610842109375],[114.358687773438,33.4501772285157],[114.304700957031,33.4853322578125],[114.277345,33.473843],[114.285504179688,33.5568141914062],[114.27197390625,33.5684706855469],[114.255491972656,33.5876003242188],[114.272996855469,33.6189736152344],[114.26197390625,33.6284706855469],[114.250172148438,33.6676638007813],[114.263148222656,33.6788430000001],[114.25197390625,33.6884706855469],[114.247345,33.703843],[114.255484648438,33.7484706855469],[114.31271609375,33.7192153144531],[114.330726347656,33.6983107734376],[114.349034453125,33.6997817207032],[114.37271609375,33.6892153144532],[114.38197390625,33.6784706855469],[114.50248171875,33.6510939765625],[114.536768828125,33.6113002753907],[114.57197390625,33.6084706855469],[114.577345,33.6038430000001],[114.585323515625,33.5727577949219],[114.614830351563,33.5919716621094],[114.639859648438,33.5557143378907],[114.66142703125,33.5697585273438],[114.70326296875,33.5779274726563],[114.71142703125,33.5897585273438],[114.727345,33.593843],[114.73142703125,33.5879274726563],[114.839332304688,33.5606349921875],[114.86326296875,33.5297585273438],[114.867345,33.503843],[114.863170195313,33.4980178046875],[114.851236601563,33.4894631171875],[114.855011015625,33.4703578925782],[114.842345,33.4678554511719],[114.819298125,33.4724098945313],[114.801519804688,33.4596681953126],[114.793170195313,33.4380178046876],[114.779752226563,33.4168813300782],[114.793463164063,33.348188703125],[114.761519804688,33.3296681953125],[114.748995390625,33.3121926093751],[114.717345,33.3038430000001],[114.692056914063,33.297983625],[114.661265898438,33.3165566230469],[114.664483671875,33.3383315253906],[114.64869265625,33.3505202460938],[114.623922148438,33.3468593574219],[114.60298953125,33.3594863105469],[114.57306765625,33.3717336250001],[114.562042265625,33.423969953125],[114.522310820313,33.4180995917969],[114.487345,33.423843]]]]}},{"type":"Feature","properties":{"name":"沈丘县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.057345,33.5338430000001],[115.122296171875,33.5177114082032],[115.1507825,33.5240969062501],[115.17142703125,33.4879274726563],[115.18326296875,33.4797585273438],[115.194776640625,33.4489760566406],[115.25326296875,33.4397585273438],[115.282066679688,33.4276601386719],[115.292623320313,33.4300258613282],[115.307345,33.423843],[115.321734648438,33.4114455390626],[115.3227746875,33.3985195136719],[115.30271609375,33.3812404609376],[115.31201296875,33.3684145332032],[115.335377226563,33.3702919746094],[115.36197390625,33.3226247382813],[115.3526965625,33.2984133125],[115.331842070313,33.3000881171876],[115.334176054688,33.2710829902344],[115.321920195313,33.2491213203125],[115.322745390625,33.238843],[115.321944609375,33.2288430000001],[115.3227746875,33.2185073066407],[115.289620390625,33.1977419257813],[115.294288359375,33.1396511054688],[115.237345,33.133843],[115.202672148438,33.1180556464844],[115.186485625,33.1204482246094],[115.14298953125,33.0881984687501],[115.1151965625,33.0768239570313],[115.07990359375,33.09069846875],[115.057345,33.0873659492188],[115.042345,33.0895827460938],[115.03205203125,33.08806175],[114.996436796875,33.1020619941407],[114.98298953125,33.1194863105469],[114.97170046875,33.1281996894531],[114.967345,33.1438430000001],[114.97298953125,33.1481996894532],[114.993375273438,33.1822890449219],[115.056783476563,33.1638014960938],[115.051607695313,33.198843],[115.060474882813,33.2588430000001],[115.048878203125,33.3373073554688],[115.06298953125,33.3481996894532],[115.07170046875,33.3734279609376],[115.02170046875,33.4081996894532],[115.017345,33.4138430000001],[115.024449492188,33.4287367988282],[115.018385039063,33.4434499335938],[115.045133085938,33.4581117988282],[115.060885039063,33.4931227851563],[115.050240507813,33.5189492011719],[115.057345,33.5338430000001]]]]}},{"type":"Feature","properties":{"name":"太康县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.057345,33.933843],[115.062345,33.9466506171875],[115.067345,33.933843],[115.057345,33.933843]]],[[[115.057345,33.933843],[115.053985625,33.917202375],[115.047345,33.903843],[115.012257109375,33.9198207832032],[114.986832304688,33.9044850898438],[114.917345,33.9147536445313],[114.872345,33.9081044746094],[114.857047148438,33.9103652167969],[114.782379179688,33.8980995917969],[114.758365507813,33.9016469550782],[114.727345,33.9138430000001],[114.72326296875,33.9197585273438],[114.689078398438,33.9392690253907],[114.69361453125,33.9595131660157],[114.67697390625,33.9710024238281],[114.647017851563,33.9642861152344],[114.622340117188,33.9803591132813],[114.597345,33.963843],[114.5880871875,33.9745864082032],[114.567926054688,33.9919594550781],[114.582769804688,34.0185646796875],[114.5819153125,34.0291664863282],[114.59271609375,34.0384706855469],[114.60197390625,34.0512404609375],[114.579478789063,34.0706215644532],[114.5394153125,34.0674025703125],[114.543150664063,34.113843],[114.541138945313,34.1388430000001],[114.543702421875,34.1707424140626],[114.572584257813,34.1684218574219],[114.614010039063,34.1836354804688],[114.607345,34.263843],[114.627345,34.263843],[114.660460234375,34.2502358222657],[114.713170195313,34.2396681953125],[114.721724882813,34.2277321601563],[114.749771757813,34.2332741523438],[114.768214140625,34.2590053535157],[114.813170195313,34.2680178046875],[114.835289335938,34.2820619941407],[114.885201445313,34.266899640625],[114.897345,34.283843],[114.93298953125,34.2794863105469],[114.9610559375,34.2625551582032],[115.02298953125,34.2494863105469],[115.057310820313,34.2240419746094],[115.117345,34.2138430000001],[115.124600859375,34.1557790351563],[115.111651640625,34.0987795234376],[115.130679960938,34.0321376777344],[115.071656523438,34.0193666816407],[115.074039335938,34.00022971875],[115.061793242188,33.9793959785157],[115.052896757813,33.9582900214844],[115.039859648438,33.94784690625],[115.057345,33.933843]]]]}},{"type":"Feature","properties":{"name":"西华县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.622340117188,33.9803591132813],[114.647017851563,33.9642861152344],[114.67697390625,33.9710024238281],[114.69361453125,33.9595131660157],[114.689078398438,33.9392690253907],[114.72326296875,33.9197585273438],[114.727345,33.9138430000001],[114.714971953125,33.9062184882813],[114.699840117188,33.8816628242188],[114.713912382813,33.8388747382813],[114.710787382813,33.8288430000001],[114.715460234375,33.813843],[114.707672148438,33.788843],[114.714244414063,33.7677431464844],[114.651158476563,33.7600307441407],[114.647345,33.7138430000001],[114.641158476563,33.7100307441406],[114.623150664063,33.680805890625],[114.59156375,33.6906435371094],[114.583531523438,33.6785158515626],[114.609595976563,33.6413930488282],[114.582213164063,33.6245204902344],[114.577345,33.6038430000001],[114.57197390625,33.6084706855469],[114.536768828125,33.6113002753907],[114.50248171875,33.6510939765625],[114.38197390625,33.6784706855469],[114.37271609375,33.6892153144532],[114.349034453125,33.6997817207032],[114.330726347656,33.6983107734376],[114.31271609375,33.7192153144531],[114.255484648438,33.7484706855469],[114.247345,33.703843],[114.200282011719,33.6958486152344],[114.1627746875,33.6680409980469],[114.151832304688,33.6696572089844],[114.14298953125,33.6581996894531],[114.107345,33.653843],[114.103260527344,33.6797585273438],[114.091073027344,33.6881728339844],[114.093475371094,33.6988845039063],[114.087345,33.7238430000001],[114.104718046875,33.7669765449219],[114.122345,33.7695815253907],[114.136234160156,33.7675295234375],[114.131517363281,33.7994362617187],[114.147345,33.803843],[114.192252226563,33.7985390449219],[114.204373808594,33.7992617011719],[114.286805449219,33.7696840644531],[114.322064238281,33.8117568183594],[114.301942167969,33.8487856269532],[114.307345,33.863843],[114.334635039063,33.8575197578125],[114.37298953125,33.8681996894532],[114.428736601563,33.8901149726563],[114.479215117188,33.8826552558594],[114.483824492188,33.9138430000001],[114.480377226563,33.9371718574219],[114.51170046875,33.9494863105469],[114.597345,33.963843],[114.622340117188,33.9803591132813]]]]}},{"type":"Feature","properties":{"name":"项城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.895616484375,33.4959706855469],[114.890318632813,33.4601332832032],[114.95298953125,33.4494863105469],[114.97666140625,33.4188149238282],[115.017345,33.4138430000001],[115.02170046875,33.4081996894532],[115.07170046875,33.3734279609376],[115.06298953125,33.3481996894532],[115.048878203125,33.3373073554688],[115.060474882813,33.2588430000001],[115.051607695313,33.198843],[115.056783476563,33.1638014960938],[114.993375273438,33.1822890449219],[114.97298953125,33.1481996894532],[114.967345,33.1438430000001],[114.942345,33.1562697578125],[114.901846953125,33.1361391425781],[114.893985625,33.0972023750001],[114.887345,33.083843],[114.85142703125,33.0797585273438],[114.842345,33.0554811835938],[114.817345,33.0610842109376],[114.801676054688,33.0575710273438],[114.79326296875,33.0697585273438],[114.77142703125,33.0779274726562],[114.75326296875,33.1097585273438],[114.727257109375,33.1194887519532],[114.701007109375,33.157505109375],[114.677345,33.173843],[114.70142703125,33.2097585273438],[114.71326296875,33.2179274726563],[114.724503203125,33.2342116523438],[114.721221953125,33.248843],[114.724586210938,33.2638430000001],[114.721221953125,33.278843],[114.723526640625,33.2891213203126],[114.717345,33.3038430000001],[114.748995390625,33.3121926093751],[114.761519804688,33.3296681953125],[114.793463164063,33.348188703125],[114.779752226563,33.4168813300782],[114.793170195313,33.4380178046876],[114.801519804688,33.4596681953126],[114.819298125,33.4724098945313],[114.842345,33.4678554511719],[114.855011015625,33.4703578925782],[114.851236601563,33.4894631171875],[114.863170195313,33.4980178046875],[114.867345,33.503843],[114.895616484375,33.4959706855469]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"上蔡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,33.423843],[114.475152617188,33.4204201484375],[114.483922148438,33.4116506171875],[114.522310820313,33.4180995917969],[114.562042265625,33.423969953125],[114.57306765625,33.3717336250001],[114.60298953125,33.3594863105469],[114.623922148438,33.3468593574219],[114.64869265625,33.3505202460938],[114.664483671875,33.3383315253906],[114.661265898438,33.3165566230469],[114.692056914063,33.297983625],[114.717345,33.3038430000001],[114.723526640625,33.2891213203126],[114.721221953125,33.278843],[114.724586210938,33.2638430000001],[114.721221953125,33.248843],[114.724503203125,33.2342116523438],[114.71326296875,33.2179274726563],[114.70142703125,33.2097585273438],[114.677345,33.173843],[114.5874621875,33.1682399726563],[114.572120390625,33.1691542792969],[114.548619414063,33.1563832832031],[114.502345,33.1591408515626],[114.482345,33.1579494453126],[114.46209109375,33.1591555],[114.457345,33.1538430000001],[114.451519804688,33.1580178046875],[114.442345,33.1708193183594],[114.432345,33.1568666816407],[114.417357207031,33.1777773261719],[114.394671660156,33.1880178046875],[114.357550078125,33.1644496894532],[114.285035429688,33.1453188300781],[114.19306765625,33.1636818671875],[114.183170195313,33.1380178046876],[114.167345,33.133843],[114.173590117188,33.1838307929688],[114.169053984375,33.2202992988282],[114.151890898438,33.2181642890625],[114.133704863281,33.2408779121094],[114.100985136719,33.2368080878906],[114.087345,33.253843],[114.0967590625,33.2905275703126],[114.156197539063,33.3127675605469],[114.139700957031,33.3520449042969],[114.145408964844,33.377505109375],[114.175706816406,33.388843],[114.171121855469,33.4092946601563],[114.187345,33.433843],[114.187345,33.4538430000001],[114.239014921875,33.458774640625],[114.277345,33.473843],[114.304700957031,33.4853322578125],[114.358687773438,33.4501772285157],[114.407345,33.4610842109375],[114.422345,33.4577223945313],[114.45033328125,33.4639968085938],[114.46142703125,33.4479274726563],[114.48326296875,33.4397585273438],[114.487345,33.423843]]]]}},{"type":"Feature","properties":{"name":"泌阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.247345,32.673843],[113.251627226563,32.6408937812501],[113.260794707031,32.6667580390625],[113.233985625,32.7004836250001],[113.200704375,32.7072023750001],[113.197345,32.713843],[113.209537382813,32.7172658515626],[113.200767851563,32.7260353828125],[113.197345,32.713843],[113.183922148438,32.7214968085938],[113.197664824219,32.7579592109375],[113.180975371094,32.7674733710938],[113.173714628906,32.8302126289063],[113.157345,32.833843],[113.161429472656,32.8497585273438],[113.173260527344,32.8579274726563],[113.192882109375,32.8863454414062],[113.201429472656,32.9219997382813],[113.181898222656,32.917622296875],[113.146246367188,32.9408376289062],[113.122345,32.9354811835938],[113.088407011719,32.9430886054688],[113.11466921875,33.0010378242188],[113.148753691406,33.045014875],[113.183260527344,33.0579274726563],[113.191429472656,33.0697585273438],[113.197345,33.0738430000001],[113.212264433594,33.0681081367188],[113.251790800781,33.0793971992187],[113.353980742188,33.0921779609376],[113.387345,33.133843],[113.392889433594,33.1537514472657],[113.437345,33.1603212714844],[113.472345,33.1551491523438],[113.510767851563,33.1608266425781],[113.537345,33.1447951484375],[113.561954375,33.1596401191407],[113.577345,33.1573647285157],[113.592379179688,33.1595864082031],[113.627345,33.1538430000001],[113.63170046875,33.1381996894531],[113.669657011719,33.1276296210938],[113.696397734375,33.0622927070313],[113.720455351563,33.0437233710938],[113.743428984375,33.0053078437501],[113.772857695313,33.0096584296875],[113.78170046875,32.99819846875],[113.787345,32.9938430000001],[113.796392851563,32.9708278632813],[113.767762480469,32.9487258125],[113.74298953125,32.8881984687501],[113.731549101563,32.869233625],[113.733658476563,32.8549538398438],[113.675911894531,32.8634889960937],[113.62298953125,32.8418288398438],[113.63170046875,32.7381984687501],[113.637345,32.713843],[113.63209109375,32.70796409375],[113.611429472656,32.7091945625],[113.613858671875,32.6684548164063],[113.602078886719,32.6691579414063],[113.592625761719,32.6485622382813],[113.576783476563,32.6344045234375],[113.546236601563,32.600219953125],[113.522064238281,32.5891237617188],[113.494449492188,32.5741188789063],[113.452545195313,32.5891530585938],[113.442108183594,32.5885305],[113.399310332031,32.6184255195313],[113.355260039063,32.5691237617188],[113.332064238281,32.5785622382813],[113.312569609375,32.5891555],[113.302345,32.5885451484375],[113.244620390625,32.5919850898438],[113.224193144531,32.5691237617188],[113.202064238281,32.5785622382813],[113.197345,32.583843],[113.191214628906,32.6088014960938],[113.195233183594,32.6267287421876],[113.18060671875,32.6491896796875],[113.193260527344,32.6579274726562],[113.210499296875,32.6828932929687],[113.247345,32.673843]]]]}},{"type":"Feature","properties":{"name":"平舆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.577345,32.813843],[114.589537382813,32.8172658515625],[114.580767851563,32.8260353828126],[114.57170046875,32.8181984687501],[114.561832304688,32.8309841132813],[114.53845828125,32.8275295234376],[114.543824492188,32.863843],[114.541300078125,32.8809059882812],[114.517345,32.8773659492188],[114.502345,32.8795827460938],[114.467345,32.8744094062501],[114.420863066406,32.8812795234376],[114.39298953125,32.9327614570312],[114.424276152344,32.9569118476562],[114.45365359375,32.9949733710938],[114.45048953125,33.0164040351563],[114.476124296875,33.0816188789062],[114.451832304688,33.0780275703125],[114.438878203125,33.094809796875],[114.45298953125,33.1181996894532],[114.457345,33.1538430000001],[114.46209109375,33.1591555],[114.482345,33.1579494453126],[114.502345,33.1591408515626],[114.548619414063,33.1563832832031],[114.572120390625,33.1691542792969],[114.5874621875,33.1682399726563],[114.677345,33.173843],[114.701007109375,33.157505109375],[114.727257109375,33.1194887519532],[114.75326296875,33.1097585273438],[114.77142703125,33.0779274726562],[114.79326296875,33.0697585273438],[114.801676054688,33.0575710273438],[114.817345,33.0610842109376],[114.842345,33.0554811835938],[114.85142703125,33.0797585273438],[114.887345,33.083843],[114.915225859375,33.0766872382813],[114.911163359375,33.0585646796875],[114.926939726563,33.0209938789063],[114.912345,33.0177223945313],[114.89037234375,33.0226491523438],[114.893565703125,33.0083913398438],[114.877345,32.983843],[114.861124296875,32.9592946601563],[114.86431765625,32.9450368476563],[114.841842070313,32.9500759101563],[114.81326296875,32.9279274726562],[114.78142703125,32.9197585273438],[114.758092070313,32.8788698554688],[114.71142703125,32.8697585273438],[114.70326296875,32.8379274726563],[114.691124296875,32.8192897773438],[114.69361453125,32.8081716132813],[114.68142703125,32.7997585273438],[114.67326296875,32.7879274726563],[114.65412234375,32.7747145820313],[114.637345,32.743843],[114.609996367188,32.7476100898438],[114.614561796875,32.7597267890625],[114.6009778125,32.7674733710938],[114.593228789063,32.7810622382813],[114.56670046875,32.7710622382813],[114.577345,32.793843],[114.577345,32.813843]]]]}},{"type":"Feature","properties":{"name":"确山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.937345,32.553843],[113.924537382813,32.558843],[113.937345,32.563843],[113.937345,32.553843]]],[[[113.937345,32.553843],[113.950152617188,32.558843],[113.937345,32.563843],[113.930264921875,32.576762921875],[113.90990359375,32.5879225898438],[113.920816679688,32.6143947578126],[113.888970976563,32.6012697578125],[113.863804960938,32.6203029609375],[113.824766875,32.6273830390626],[113.813804960938,32.6073830390625],[113.797345,32.603843],[113.793260527344,32.6197585273438],[113.779132109375,32.6295143867188],[113.783648710938,32.6496584296876],[113.740819121094,32.6606496406251],[113.703260527344,32.6897585273438],[113.661429472656,32.6979274726562],[113.637345,32.713843],[113.63170046875,32.7381984687501],[113.62298953125,32.8418288398438],[113.675911894531,32.8634889960937],[113.733658476563,32.8549538398438],[113.731549101563,32.869233625],[113.74298953125,32.8881984687501],[113.767762480469,32.9487258125],[113.796392851563,32.9708278632813],[113.787345,32.9938430000001],[113.819176054688,33.0020119453125],[113.873258085938,33.0247267890626],[113.913260527344,33.0097585273437],[113.917345,33.003843],[113.912535429688,32.9986525703126],[113.883155546875,32.9847878242188],[113.932535429688,32.9390334296875],[113.944444609375,32.8890334296875],[113.988353300781,32.900122296875],[114.032535429688,32.9286525703126],[114.042154570313,32.9390334296875],[114.067345,32.943843],[114.090887480469,32.9363893867188],[114.063460722656,32.9109792304688],[114.122345,32.9086452460938],[114.142122832031,32.9094289375],[114.142550078125,32.8986647773437],[114.129136992188,32.8862380195313],[114.145360136719,32.8518581367187],[114.181917753906,32.83460471875],[114.182960234375,32.8083107734375],[114.143211699219,32.7714821601563],[114.202154570313,32.7528224921875],[114.192535429688,32.7386525703126],[114.142535429688,32.7063649726563],[114.164937773438,32.6975588203126],[114.222154570313,32.6998268867188],[114.212535429688,32.6786525703125],[114.192535429688,32.6601222968751],[114.212154570313,32.6386525703125],[114.217345,32.633843],[114.22443484375,32.604419171875],[114.221356230469,32.5888381171876],[114.233475371094,32.5281349921875],[114.211519804688,32.5196681953125],[114.203170195313,32.5080178046875],[114.191519804688,32.4996681953125],[114.187345,32.493843],[114.161790800781,32.4893971992188],[114.151461210938,32.46487815625],[114.084334746094,32.4493971992188],[114.056810332031,32.5456642890626],[114.042899199219,32.5282888007813],[114.011790800781,32.5193971992188],[113.977738066406,32.5063063789062],[113.949947539063,32.5097634101563],[113.937345,32.553843]]]]}},{"type":"Feature","properties":{"name":"汝南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.577345,32.813843],[114.580767851563,32.8260353828126],[114.589537382813,32.8172658515625],[114.577345,32.813843]]],[[[114.577345,32.813843],[114.577345,32.793843],[114.532042265625,32.7992971015626],[114.5180871875,32.7830983710938],[114.438687773438,32.7686159492188],[114.408021269531,32.7330202460938],[114.3130871875,32.6515944648438],[114.263702421875,32.6367238593751],[114.232105742188,32.6392629218751],[114.217345,32.633843],[114.212154570313,32.6386525703125],[114.192535429688,32.6601222968751],[114.212535429688,32.6786525703125],[114.222154570313,32.6998268867188],[114.164937773438,32.6975588203126],[114.142535429688,32.7063649726563],[114.192535429688,32.7386525703126],[114.202154570313,32.7528224921875],[114.143211699219,32.7714821601563],[114.182960234375,32.8083107734375],[114.181917753906,32.83460471875],[114.145360136719,32.8518581367187],[114.129136992188,32.8862380195313],[114.142550078125,32.8986647773437],[114.142122832031,32.9094289375],[114.122345,32.9086452460938],[114.063460722656,32.9109792304688],[114.090887480469,32.9363893867188],[114.067345,32.943843],[114.071429472656,32.9697585273437],[114.093260527344,32.9779274726563],[114.101429472656,32.9897585273438],[114.149176054688,33.0020119453125],[114.167581816406,33.0286696601563],[114.107345,33.043843],[114.114166289063,33.1107057929688],[114.153656035156,33.1075319648438],[114.1519153125,33.1291970039063],[114.167345,33.133843],[114.183170195313,33.1380178046876],[114.19306765625,33.1636818671875],[114.285035429688,33.1453188300781],[114.357550078125,33.1644496894532],[114.394671660156,33.1880178046875],[114.417357207031,33.1777773261719],[114.432345,33.1568666816407],[114.442345,33.1708193183594],[114.451519804688,33.1580178046875],[114.457345,33.1538430000001],[114.45298953125,33.1181996894532],[114.438878203125,33.094809796875],[114.451832304688,33.0780275703125],[114.476124296875,33.0816188789062],[114.45048953125,33.0164040351563],[114.45365359375,32.9949733710938],[114.424276152344,32.9569118476562],[114.39298953125,32.9327614570312],[114.420863066406,32.8812795234376],[114.467345,32.8744094062501],[114.502345,32.8795827460938],[114.517345,32.8773659492188],[114.541300078125,32.8809059882812],[114.543824492188,32.863843],[114.53845828125,32.8275295234376],[114.561832304688,32.8309841132813],[114.57170046875,32.8181984687501],[114.577345,32.813843]]]]}},{"type":"Feature","properties":{"name":"遂平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.924046660156,33.3005458808594],[113.921060820313,33.2712343574219],[113.984212675781,33.2475051093751],[114.002611113281,33.249380109375],[114.0322278125,33.2382509589844],[114.081883574219,33.2493056464844],[114.087345,33.253843],[114.100985136719,33.2368080878906],[114.133704863281,33.2408779121094],[114.151890898438,33.2181642890625],[114.169053984375,33.2202992988282],[114.173590117188,33.1838307929688],[114.167345,33.133843],[114.1519153125,33.1291970039063],[114.153656035156,33.1075319648438],[114.114166289063,33.1107057929688],[114.107345,33.043843],[114.081429472656,33.0397585273438],[114.053260527344,33.0279274726563],[113.963494902344,33.0052223945313],[113.942303496094,33.0099733710937],[113.917345,33.003843],[113.913260527344,33.0097585273437],[113.873258085938,33.0247267890626],[113.819176054688,33.0020119453125],[113.787345,32.9938430000001],[113.78170046875,32.99819846875],[113.772857695313,33.0096584296875],[113.743428984375,33.0053078437501],[113.720455351563,33.0437233710938],[113.696397734375,33.0622927070313],[113.669657011719,33.1276296210938],[113.63170046875,33.1381996894531],[113.627345,33.1538430000001],[113.633985625,33.1672023750001],[113.637345,33.1838430000001],[113.642806425781,33.1883803535156],[113.651883574219,33.2193056464844],[113.688992949219,33.2421950507812],[113.716668730469,33.28706565625],[113.802667265625,33.2783010078125],[113.830133085938,33.2940309882813],[113.882345,33.2993520332031],[113.897345,33.2978237128907],[113.924046660156,33.3005458808594]]]]}},{"type":"Feature","properties":{"name":"西平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.087345,33.523843],[114.093206816406,33.5010048652344],[114.123260527344,33.4897585273438],[114.135513945313,33.4720119453125],[114.183260527344,33.4597585273438],[114.187345,33.4538430000001],[114.173392363281,33.443843],[114.187345,33.433843],[114.171121855469,33.4092946601563],[114.175706816406,33.388843],[114.145408964844,33.377505109375],[114.139700957031,33.3520449042969],[114.156197539063,33.3127675605469],[114.0967590625,33.2905275703126],[114.087345,33.253843],[114.081883574219,33.2493056464844],[114.0322278125,33.2382509589844],[114.002611113281,33.249380109375],[113.984212675781,33.2475051093751],[113.921060820313,33.2712343574219],[113.924046660156,33.3005458808594],[113.897345,33.2978237128907],[113.882345,33.2993520332031],[113.830133085938,33.2940309882813],[113.802667265625,33.2783010078125],[113.716668730469,33.28706565625],[113.688992949219,33.2421950507812],[113.651883574219,33.2193056464844],[113.642806425781,33.1883803535156],[113.637345,33.1838430000001],[113.618973417969,33.1886891914063],[113.600772734375,33.235884015625],[113.612564726563,33.2955629707032],[113.633170195313,33.3280178046876],[113.64244265625,33.3631606269531],[113.672652617188,33.3848146796875],[113.677345,33.4138430000001],[113.692330351563,33.4212917304688],[113.703336210938,33.4159169746094],[113.710704375,33.4304836250001],[113.793985625,33.4372023750001],[113.797345,33.4538430000001],[113.818717070313,33.4599538398438],[113.866922636719,33.4882900214844],[113.902899199219,33.4793959785157],[113.936800566406,33.4663649726563],[114.001890898438,33.5058998847657],[114.011846953125,33.52952659375],[114.022628203125,33.5281862617188],[114.037345,33.5338430000001],[114.045936308594,33.5214003730469],[114.062386503906,33.5177126289063],[114.087345,33.523843]]],[[[114.087345,33.523843],[114.090767851563,33.5360353828125],[114.099537382813,33.5272658515625],[114.087345,33.523843]]]]}},{"type":"Feature","properties":{"name":"新蔡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.207345,32.6538430000001],[115.210767851563,32.6660353828126],[115.219537382813,32.6572658515625],[115.207345,32.6538430000001]]],[[[115.207345,32.6538430000001],[115.207345,32.633843],[115.197345,32.633843],[115.193922148438,32.6460353828125],[115.185152617188,32.6372658515626],[115.197345,32.633843],[115.193985625,32.617202375],[115.187345,32.603843],[115.161612578125,32.5995778632813],[115.1299621875,32.5799880195312],[115.133316679688,32.5994826484375],[115.107974882813,32.6095534492188],[115.093077421875,32.6295778632813],[115.067345,32.633843],[115.05197390625,32.6384719062501],[115.02271609375,32.64921409375],[114.980264921875,32.661997296875],[114.897345,32.6538430000001],[114.848214140625,32.6853981757813],[114.832916289063,32.6480202460938],[114.822345,32.6495827460938],[114.802345,32.646626203125],[114.782345,32.6495827460938],[114.76478640625,32.64698753125],[114.73263796875,32.65962425],[114.722345,32.6581032539062],[114.710284453125,32.6598854804688],[114.714947539063,32.6914430976563],[114.69248171875,32.6778932929688],[114.642081328125,32.6977053046875],[114.626925078125,32.7173415351563],[114.637345,32.743843],[114.65412234375,32.7747145820313],[114.67326296875,32.7879274726563],[114.68142703125,32.7997585273438],[114.69361453125,32.8081716132813],[114.691124296875,32.8192897773438],[114.70326296875,32.8379274726563],[114.71142703125,32.8697585273438],[114.758092070313,32.8788698554688],[114.78142703125,32.9197585273438],[114.81326296875,32.9279274726562],[114.841842070313,32.9500759101563],[114.86431765625,32.9450368476563],[114.861124296875,32.9592946601563],[114.877345,32.983843],[114.917940703125,32.9671999335938],[114.941954375,32.9382936835938],[115.004332304688,32.9446511054688],[115.022808867188,32.9293044257813],[115.033643828125,32.9043166328125],[115.092345,32.8983327460938],[115.1309778125,32.902270734375],[115.157120390625,32.8598854804688],[115.172345,32.8583327460938],[115.191685820313,32.8603054023438],[115.1928528125,32.8488430000001],[115.189205351563,32.813051984375],[115.204049101563,32.7871413398438],[115.180748320313,32.7895143867188],[115.1828528125,32.7688430000001],[115.17353640625,32.67743675],[115.192769804688,32.6793947578125],[115.201881132813,32.6583815742188],[115.207345,32.6538430000001]]]]}},{"type":"Feature","properties":{"name":"正阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.277345,32.413843],[114.289537382813,32.4172658515625],[114.280767851563,32.4260353828125],[114.261429472656,32.4179274726563],[114.239705839844,32.4320729804687],[114.244847441406,32.4550075507813],[114.200369902344,32.4450368476563],[114.205240507813,32.4667604804687],[114.187345,32.493843],[114.191519804688,32.4996681953125],[114.203170195313,32.5080178046875],[114.211519804688,32.5196681953125],[114.233475371094,32.5281349921875],[114.221356230469,32.5888381171876],[114.22443484375,32.604419171875],[114.217345,32.633843],[114.232105742188,32.6392629218751],[114.263702421875,32.6367238593751],[114.3130871875,32.6515944648438],[114.408021269531,32.7330202460938],[114.438687773438,32.7686159492188],[114.5180871875,32.7830983710938],[114.532042265625,32.7992971015626],[114.577345,32.793843],[114.56670046875,32.7710622382813],[114.593228789063,32.7810622382813],[114.6009778125,32.7674733710938],[114.614561796875,32.7597267890625],[114.609996367188,32.7476100898438],[114.637345,32.743843],[114.626925078125,32.7173415351563],[114.642081328125,32.6977053046875],[114.69248171875,32.6778932929688],[114.714947539063,32.6914430976563],[114.710284453125,32.6598854804688],[114.722345,32.6581032539062],[114.73263796875,32.65962425],[114.76478640625,32.64698753125],[114.782345,32.6495827460938],[114.802345,32.646626203125],[114.822345,32.6495827460938],[114.832916289063,32.6480202460938],[114.848214140625,32.6853981757813],[114.897345,32.6538430000001],[114.886373320313,32.618305890625],[114.807594023438,32.6230007148438],[114.784542265625,32.6024025703126],[114.80322390625,32.5680275703126],[114.7808996875,32.5480837226563],[114.783189726563,32.5096877265625],[114.722061796875,32.5285622382813],[114.70564578125,32.5469338203125],[114.688521757813,32.5096193671876],[114.647345,32.5319948554688],[114.622628203125,32.5185622382813],[114.569674101563,32.5086769843751],[114.572940703125,32.453843],[114.571451445313,32.4288430000001],[114.64904421875,32.3932302070313],[114.622061796875,32.3691237617188],[114.602628203125,32.3385622382813],[114.572061796875,32.3191237617188],[114.567345,32.3138430000001],[114.548428984375,32.2902223945312],[114.531983671875,32.2881764960938],[114.498546171875,32.3078322578125],[114.482799101563,32.2881642890625],[114.467345,32.2900856757813],[114.447345,32.2876003242188],[114.432345,32.2894655585938],[114.417332792969,32.2875978828125],[114.367345,32.293843],[114.363985625,32.310483625],[114.339676542969,32.3383815742188],[114.34478640625,32.3488430000001],[114.334234648438,32.3704518867188],[114.280704375,32.377202375],[114.277345,32.413843]]]]}},{"type":"Feature","properties":{"name":"驿城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.167581816406,33.0286696601563],[114.149176054688,33.0020119453125],[114.101429472656,32.9897585273438],[114.093260527344,32.9779274726563],[114.071429472656,32.9697585273437],[114.067345,32.943843],[114.042154570313,32.9390334296875],[114.032535429688,32.9286525703126],[113.988353300781,32.900122296875],[113.944444609375,32.8890334296875],[113.932535429688,32.9390334296875],[113.883155546875,32.9847878242188],[113.912535429688,32.9986525703126],[113.917345,33.003843],[113.942303496094,33.0099733710937],[113.963494902344,33.0052223945313],[114.053260527344,33.0279274726563],[114.081429472656,33.0397585273438],[114.107345,33.043843],[114.167581816406,33.0286696601563]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"汉南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.09009890625,30.3486452460938],[114.107345,30.343843],[114.095513945313,30.3156740546875],[114.076954375,30.2433571601563],[114.053260527344,30.2279274726563],[114.037345,30.223843],[114.031429472656,30.2279274726563],[114.00451296875,30.2750856757813],[113.964525175781,30.3026955390626],[113.916331816406,30.291889875],[113.861678496094,30.2107277656251],[113.857345,30.193843],[113.843985625,30.187202375],[113.817345,30.183843],[113.813260527344,30.1997585273438],[113.764371367188,30.2180519843751],[113.746261015625,30.2458669257813],[113.777345,30.2538430000001],[113.81298953125,30.2681984687501],[113.832345,30.2798757148438],[113.857471953125,30.2647194648438],[113.87170046875,30.29948753125],[113.891624785156,30.3148635078126],[113.908482695313,30.3560549140625],[113.947345,30.3617995429687],[113.977345,30.3573659492188],[113.992857695313,30.3596584296875],[114.002110625,30.3476686835938],[114.024190703125,30.3609889960938],[114.093436308594,30.3712209296875],[114.09009890625,30.3486452460938]]]]}},{"type":"Feature","properties":{"name":"汉阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.251790800781,30.5682888007813],[114.277345,30.563843],[114.287345,30.563843],[114.28271609375,30.54847190625],[114.257345,30.503843],[114.227345,30.4838430000001],[114.201429472656,30.4879274726562],[114.177401152344,30.5035744453125],[114.19408328125,30.5291896796876],[114.172215605469,30.5442897773437],[114.128311796875,30.5258473945313],[114.133465605469,30.548843],[114.131224394531,30.5588430000001],[114.133568144531,30.5692946601562],[114.117345,30.5938430000001],[114.157345,30.5938430000001],[114.157345,30.603843],[114.181824980469,30.5882692695313],[114.251790800781,30.5682888007813]]]]}},{"type":"Feature","properties":{"name":"东西湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.172899199219,30.7393971992188],[114.182769804688,30.6937673164063],[114.242430449219,30.6680153632813],[114.276143828125,30.6878322578126],[114.287345,30.6738430000001],[114.28062625,30.66056175],[114.260704375,30.6504836250001],[114.257345,30.643843],[114.217345,30.623843],[114.146243925781,30.6327272773438],[114.157345,30.603843],[114.157345,30.5938430000001],[114.117345,30.5938430000001],[114.072386503906,30.5993581367188],[114.014888945313,30.5934963203125],[114.032806425781,30.6083815742188],[114.041883574219,30.6203249335938],[114.012345,30.6173146796876],[113.988643828125,30.6197292304687],[113.962806425781,30.6793044257813],[113.947345,30.683843],[113.935697050781,30.7007155585938],[113.921898222656,30.697622296875],[113.891861601563,30.7171804023438],[113.883260527344,30.7319997382813],[113.908509550781,30.7263405585937],[113.901160917969,30.7591213203125],[113.907345,30.773843],[113.992948027344,30.7893923164063],[114.124241972656,30.7759987617188],[114.157345,30.763843],[114.161790800781,30.7482888007813],[114.172899199219,30.7393971992188]]]]}},{"type":"Feature","properties":{"name":"蔡甸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.988643828125,30.6197292304687],[114.012345,30.6173146796876],[114.041883574219,30.6203249335938],[114.032806425781,30.6083815742188],[114.014888945313,30.5934963203125],[114.072386503906,30.5993581367188],[114.117345,30.5938430000001],[114.133568144531,30.5692946601562],[114.131224394531,30.5588430000001],[114.133465605469,30.548843],[114.128311796875,30.5258473945313],[114.172215605469,30.5442897773437],[114.19408328125,30.5291896796876],[114.177401152344,30.5035744453125],[114.201429472656,30.4879274726562],[114.227345,30.4838430000001],[114.191790800781,30.4393971992188],[114.167345,30.4038430000001],[114.161429472656,30.3997585273438],[114.141007109375,30.370180890625],[114.111429472656,30.3497585273438],[114.107345,30.343843],[114.09009890625,30.3486452460938],[114.093436308594,30.3712209296875],[114.024190703125,30.3609889960938],[114.002110625,30.3476686835938],[113.992857695313,30.3596584296875],[113.977345,30.3573659492188],[113.947345,30.3617995429687],[113.908482695313,30.3560549140625],[113.891624785156,30.3148635078126],[113.87170046875,30.29948753125],[113.857471953125,30.2647194648438],[113.832345,30.2798757148438],[113.81298953125,30.2681984687501],[113.777345,30.2538430000001],[113.786441679688,30.2908815742188],[113.761925078125,30.28538596875],[113.753260527344,30.3297585273438],[113.737191191406,30.34085471875],[113.743648710938,30.3696584296876],[113.707667265625,30.378891828125],[113.697345,30.393843],[113.715030546875,30.4167580390625],[113.767611113281,30.43827659375],[113.800413847656,30.4807741523438],[113.82298953125,30.49819846875],[113.847738066406,30.5302638984375],[113.872542753906,30.52659690625],[113.883878203125,30.567309796875],[113.937034941406,30.5821096015625],[113.930867949219,30.623843],[113.933160429688,30.6393556953126],[113.921092558594,30.6486696601563],[113.947345,30.683843],[113.962806425781,30.6793044257813],[113.988643828125,30.6197292304687]]]]}},{"type":"Feature","properties":{"name":"硚口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.233616972656,30.6095143867188],[114.228011503906,30.5845095039063],[114.258377714844,30.5913161445313],[114.277345,30.563843],[114.251790800781,30.5682888007813],[114.181824980469,30.5882692695313],[114.157345,30.603843],[114.146243925781,30.6327272773438],[114.217345,30.623843],[114.221429472656,30.6179274726563],[114.233616972656,30.6095143867188]]]]}},{"type":"Feature","properties":{"name":"洪山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.347345,30.573843],[114.343829375,30.5668923164063],[114.313985625,30.5523195625],[114.320704375,30.5704836250001],[114.347345,30.573843]]],[[[114.357345,30.613843],[114.347345,30.613843],[114.347345,30.623843],[114.357345,30.623843],[114.357345,30.613843]]],[[[114.347345,30.573843],[114.357345,30.613843],[114.416571074219,30.6272975898438],[114.431790800781,30.6082888007812],[114.4616028125,30.5893971992188],[114.4512903125,30.6723073554688],[114.372899199219,30.6482888007812],[114.347345,30.643843],[114.370142851563,30.6768630195313],[114.397345,30.683843],[114.438463164063,30.6982546210938],[114.507345,30.683843],[114.534249296875,30.676938703125],[114.59142703125,30.5679274726563],[114.617345,30.563843],[114.626119414063,30.5259841132813],[114.633160429688,30.4783303046876],[114.62170046875,30.4694875312501],[114.610362578125,30.4547951484376],[114.587345,30.463843],[114.5819153125,30.4685182929688],[114.583526640625,30.4885182929687],[114.571690703125,30.4987136054688],[114.58443484375,30.5215505195313],[114.558565703125,30.5384719062501],[114.511666289063,30.5123049140625],[114.513424101563,30.4904006171875],[114.501422148438,30.4577126289063],[114.479742460938,30.4594533515626],[114.455889921875,30.4871413398438],[114.438565703125,30.4984719062501],[114.402623320313,30.4784181953125],[114.373316679688,30.4807741523438],[114.361302519531,30.4668288398438],[114.363138457031,30.4439553046876],[114.346485625,30.4192140937501],[114.291280546875,30.4500173164063],[114.27271609375,30.4284719062501],[114.260330839844,30.4178005195313],[114.2322278125,30.4200588203125],[114.222611113281,30.3881154609375],[114.202623320313,30.3992678046875],[114.183902617188,30.3977638984376],[114.167345,30.4038430000001],[114.191790800781,30.4393971992188],[114.227345,30.4838430000001],[114.257345,30.503843],[114.272615996094,30.4974294257813],[114.301839628906,30.5200759101563],[114.320230742188,30.5159548164063],[114.341429472656,30.5297585273438],[114.390006132813,30.5422243476563],[114.414354277344,30.5848830390625],[114.410089140625,30.6039089179688],[114.347345,30.573843]]]]}},{"type":"Feature","properties":{"name":"黄陂区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,30.723843],[114.481910429688,30.7365407539063],[114.464346953125,30.7278957343751],[114.490704375,30.717202375],[114.517252226563,30.7037721992187],[114.507345,30.683843],[114.438463164063,30.6982546210938],[114.397345,30.683843],[114.393531523438,30.6900295234376],[114.362054472656,30.7007570625001],[114.33287234375,30.6771218085938],[114.31033328125,30.6841408515626],[114.287345,30.6738430000001],[114.276143828125,30.6878322578126],[114.242430449219,30.6680153632813],[114.182769804688,30.6937673164063],[114.172899199219,30.7393971992188],[114.161790800781,30.7482888007813],[114.157345,30.763843],[114.174232207031,30.7686721015626],[114.170479765625,30.798843],[114.172967558594,30.8188430000001],[114.170325957031,30.8400710273438],[114.151678496094,30.8885866523437],[114.166102324219,30.9910573554688],[114.151688261719,31.028559796875],[114.153448515625,31.0427150703126],[114.178450957031,31.0627370429687],[114.187345,31.073843],[114.174444609375,31.1026442695313],[114.233531523438,31.1676564765625],[114.241158476563,31.1974318671875],[114.20963015625,31.2081764960938],[114.173531523438,31.2455495429688],[114.18797,31.2919045234376],[114.227532988281,31.3162819648438],[114.247345,31.3538430000001],[114.282720976563,31.36140159375],[114.318563261719,31.3212892890625],[114.437345,31.3138430000001],[114.393179960938,31.2357228828125],[114.432064238281,31.2085622382813],[114.4626575,31.1891042304688],[114.46187625,31.1759572578125],[114.521832304688,31.1324440742188],[114.524351835938,31.090141828125],[114.492979765625,31.0324098945313],[114.601148710938,30.953911359375],[114.607345,30.9338430000001],[114.603170195313,30.8680178046875],[114.591519804688,30.8496681953125],[114.579771757813,30.8192018867188],[114.517345,30.8068679023438],[114.493858671875,30.8115065742188],[114.486417265625,30.773843],[114.495186796875,30.7294631171876],[114.487345,30.723843]]]]}},{"type":"Feature","properties":{"name":"江岸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.397345,30.683843],[114.370142851563,30.6768630195313],[114.347345,30.643843],[114.337345,30.643843],[114.337345,30.623843],[114.32406375,30.61712425],[114.31062625,30.59056175],[114.297345,30.583843],[114.269466582031,30.5909987617188],[114.273538847656,30.6091652656251],[114.257345,30.643843],[114.260704375,30.6504836250001],[114.28062625,30.66056175],[114.287345,30.6738430000001],[114.31033328125,30.6841408515626],[114.33287234375,30.6771218085938],[114.362054472656,30.7007570625001],[114.393531523438,30.6900295234376],[114.397345,30.683843]]]]}},{"type":"Feature","properties":{"name":"江汉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.273538847656,30.6091652656251],[114.269466582031,30.5909987617188],[114.297345,30.583843],[114.297345,30.563843],[114.287345,30.563843],[114.277345,30.563843],[114.258377714844,30.5913161445313],[114.228011503906,30.5845095039063],[114.233616972656,30.6095143867188],[114.221429472656,30.6179274726563],[114.217345,30.623843],[114.257345,30.643843],[114.273538847656,30.6091652656251]]]]}},{"type":"Feature","properties":{"name":"江夏区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.537345,30.0238430000001],[114.533922148438,30.0360353828125],[114.525152617188,30.0272658515625],[114.5300403125,29.9941139960938],[114.53361453125,29.9781716132813],[114.527345,29.973843],[114.512154570313,29.9786525703125],[114.349898710938,30.0384230781251],[114.302725859375,30.013462140625],[114.236627226563,29.9977175117188],[114.207345,30.003843],[114.20298953125,30.02948753125],[114.19170046875,30.04819846875],[114.18298953125,30.0894875312501],[114.15670046875,30.1002468085938],[114.14298953125,30.14948753125],[114.107196074219,30.1977663398438],[114.07408328125,30.2113161445313],[114.029849882813,30.2047805],[114.037345,30.223843],[114.053260527344,30.2279274726563],[114.076954375,30.2433571601563],[114.095513945313,30.3156740546875],[114.107345,30.343843],[114.111429472656,30.3497585273438],[114.141007109375,30.370180890625],[114.161429472656,30.3997585273438],[114.167345,30.4038430000001],[114.183902617188,30.3977638984376],[114.202623320313,30.3992678046875],[114.222611113281,30.3881154609375],[114.2322278125,30.4200588203125],[114.260330839844,30.4178005195313],[114.27271609375,30.4284719062501],[114.291280546875,30.4500173164063],[114.346485625,30.4192140937501],[114.363138457031,30.4439553046876],[114.361302519531,30.4668288398438],[114.373316679688,30.4807741523438],[114.402623320313,30.4784181953125],[114.438565703125,30.4984719062501],[114.455889921875,30.4871413398438],[114.479742460938,30.4594533515626],[114.501422148438,30.4577126289063],[114.513424101563,30.4904006171875],[114.511666289063,30.5123049140625],[114.558565703125,30.5384719062501],[114.58443484375,30.5215505195313],[114.571690703125,30.4987136054688],[114.583526640625,30.4885182929687],[114.5819153125,30.4685182929688],[114.587345,30.463843],[114.581217070313,30.4388845039063],[114.589068632813,30.4038430000001],[114.581124296875,30.3683913398438],[114.597345,30.343843],[114.59142703125,30.3297585273438],[114.58326296875,30.2879274726563],[114.57142703125,30.2797585273438],[114.56170046875,30.2537526679688],[114.54142703125,30.2397585273438],[114.53326296875,30.2079274726563],[114.508023710938,30.1691701484376],[114.499371367188,30.13058128125],[114.530538359375,30.0903688789062],[114.537345,30.0638430000001],[114.555494414063,30.0363747382813],[114.537345,30.0238430000001]]]]}},{"type":"Feature","properties":{"name":"青山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4512903125,30.6723073554688],[114.4616028125,30.5893971992188],[114.431790800781,30.6082888007812],[114.416571074219,30.6272975898438],[114.357345,30.613843],[114.357345,30.623843],[114.347345,30.623843],[114.337345,30.623843],[114.337345,30.643843],[114.347345,30.643843],[114.372899199219,30.6482888007812],[114.4512903125,30.6723073554688]]]]}},{"type":"Feature","properties":{"name":"武昌区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.347345,30.573843],[114.320704375,30.5704836250001],[114.313985625,30.5523195625],[114.343829375,30.5668923164063],[114.410089140625,30.6039089179688],[114.414354277344,30.5848830390625],[114.390006132813,30.5422243476563],[114.341429472656,30.5297585273438],[114.320230742188,30.5159548164063],[114.301839628906,30.5200759101563],[114.272615996094,30.4974294257813],[114.257345,30.503843],[114.28271609375,30.54847190625],[114.287345,30.563843],[114.297345,30.563843],[114.297345,30.583843],[114.31062625,30.59056175],[114.32406375,30.61712425],[114.337345,30.623843],[114.347345,30.623843],[114.347345,30.613843],[114.357345,30.613843],[114.347345,30.573843]]]]}},{"type":"Feature","properties":{"name":"新洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.487345,30.723843],[114.464346953125,30.7278957343751],[114.481910429688,30.7365407539063],[114.487345,30.723843]]],[[[114.487345,30.723843],[114.495186796875,30.7294631171876],[114.486417265625,30.773843],[114.493858671875,30.8115065742188],[114.517345,30.8068679023438],[114.579771757813,30.8192018867188],[114.591519804688,30.8496681953125],[114.603170195313,30.8680178046875],[114.607345,30.9338430000001],[114.642310820313,30.9395876289062],[114.65263796875,30.93806175],[114.68205203125,30.94962425],[114.692916289063,30.9480202460938],[114.707345,30.983843],[114.760592070313,30.9925905585938],[114.767345,30.983843],[114.7546496875,30.9784084296875],[114.763292265625,30.9608449531251],[114.767345,30.983843],[114.794913359375,31.0020632148438],[114.812764921875,30.9543532539063],[114.857843046875,30.9442482734375],[114.875474882813,30.9713259101563],[114.849718046875,30.9891091132813],[114.891695585938,31.0164430976563],[114.956392851563,30.9963893867187],[114.9866809375,31.0031764960938],[114.981221953125,30.9788430000001],[114.983468046875,30.9688430000001],[114.980186796875,30.9542116523438],[114.99142703125,30.9379274726563],[115.02326296875,30.9297585273438],[115.03142703125,30.9179274726563],[115.04326296875,30.9097585273438],[115.05142703125,30.8979274726563],[115.077345,30.8938430000001],[115.072349882813,30.8759108710938],[115.040767851563,30.8568605781251],[115.007603789063,30.8617604804687],[114.991529570313,30.8493556953125],[114.995386992188,30.8232717109375],[114.950699492188,30.8049831367187],[114.953433867188,30.7864650703125],[114.927345,30.7903200507813],[114.903922148438,30.786860578125],[114.881954375,30.8001100898437],[114.866519804688,30.7623928046876],[114.829346953125,30.7399684882813],[114.787701445313,30.7283718085938],[114.80312625,30.6891359687501],[114.800284453125,30.6698854804688],[114.812345,30.6681032539063],[114.82490359375,30.6699611640626],[114.84170046875,30.6481984687501],[114.859561796875,30.6344118476562],[114.797345,30.623843],[114.757261992188,30.6135573554688],[114.715094023438,30.5860964179688],[114.64593875,30.5683498359376],[114.617345,30.563843],[114.59142703125,30.5679274726563],[114.534249296875,30.676938703125],[114.507345,30.683843],[114.517252226563,30.7037721992187],[114.490704375,30.717202375],[114.487345,30.723843]]],[[[114.933922148438,31.0360353828126],[114.937345,31.023843],[114.925152617188,31.0272658515625],[114.933922148438,31.0360353828126]]],[[[114.97334109375,31.036567609375],[114.977345,31.0138430000001],[114.964346953125,31.0194045234375],[114.97334109375,31.036567609375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"下陆区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.027345,30.233843],[115.027345,30.2138430000001],[115.057345,30.2138430000001],[115.040206328125,30.1890212226563],[115.007345,30.183843],[114.973985625,30.167202375],[114.91916140625,30.160483625],[114.907345,30.183843],[114.907345,30.193843],[114.927345,30.193843],[114.927345,30.2138430000001],[114.952584257813,30.2076442695313],[114.982066679688,30.2200270820313],[114.995694609375,30.2169704414063],[115.007345,30.233843],[115.027345,30.233843]]]]}},{"type":"Feature","properties":{"name":"大冶市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.537345,30.0238430000001],[114.525152617188,30.0272658515625],[114.533922148438,30.0360353828125],[114.537345,30.0238430000001]]],[[[114.537345,30.0238430000001],[114.555494414063,30.0363747382813],[114.537345,30.0638430000001],[114.552896757813,30.0593971992188],[114.57373171875,30.0471486640625],[114.621890898438,30.053139875],[114.648912382813,30.0193971992188],[114.682896757813,30.0282888007813],[114.691846953125,30.0495265937501],[114.721353789063,30.0458571601563],[114.722965117188,30.0588430000001],[114.720479765625,30.078843],[114.725142851563,30.1163259101563],[114.698175078125,30.1532424140625],[114.71334109375,30.1790431953126],[114.652896757813,30.2274440742188],[114.668985625,30.2671462226562],[114.682896757813,30.2782888007813],[114.694014921875,30.317173078125],[114.717345,30.3238430000001],[114.732271757813,30.30222190625],[114.77033328125,30.2936891914063],[114.7870715625,30.3179274726563],[114.82326296875,30.3097585273438],[114.837257109375,30.2894899726563],[114.865924101563,30.2787624335937],[114.857345,30.243843],[114.86170046875,30.21819846875],[114.907345,30.183843],[114.91916140625,30.160483625],[114.973985625,30.167202375],[115.007345,30.183843],[115.01162234375,30.1778786445312],[115.062965117188,30.1677321601562],[115.073267851563,30.1821096015625],[115.115303984375,30.190415265625],[115.151363554688,30.1765065742188],[115.161519804688,30.1380178046875],[115.167345,30.1338430000001],[115.162511015625,30.1006374335938],[115.128292265625,30.08530784375],[115.060347929688,30.1076564765625],[115.034244414063,30.0972829414063],[115.051158476563,30.0476564765625],[115.07783328125,30.0147194648438],[115.0497278125,29.994985578125],[115.031383085938,30.0006984687501],[115.0232825,29.9769216132813],[114.992345,29.9672853828125],[114.969010039063,29.9745534492187],[114.9748059375,29.9559474921875],[114.959718046875,29.9314675117188],[114.941158476563,29.9200295234375],[114.93248171875,29.8604421210938],[114.901768828125,29.8508766914063],[114.842379179688,29.8704103828125],[114.832310820313,29.8672756171876],[114.793531523438,29.8800295234375],[114.751158476563,29.8876564765626],[114.721671171875,29.900864484375],[114.717345,29.893843],[114.691158476563,29.8976564765625],[114.601329375,29.9273757148438],[114.589928007813,29.9458766914063],[114.562345,29.9372853828125],[114.539410429688,29.9444289375],[114.544151640625,29.9596486640625],[114.531158476563,29.9676564765626],[114.527345,29.973843],[114.53361453125,29.9781716132813],[114.5300403125,29.9941139960938],[114.537345,30.0238430000001]]]]}},{"type":"Feature","properties":{"name":"黄石港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.08142703125,30.2379274726563],[115.097345,30.2138430000001],[115.057345,30.2138430000001],[115.027345,30.2138430000001],[115.027345,30.233843],[115.007345,30.233843],[115.017681914063,30.248813703125],[115.077345,30.263843],[115.08142703125,30.2379274726563]]]]}},{"type":"Feature","properties":{"name":"铁山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.907345,30.193843],[114.907345,30.183843],[114.86170046875,30.21819846875],[114.857345,30.243843],[114.87142703125,30.2379274726563],[114.919176054688,30.2256740546876],[114.927345,30.2138430000001],[114.927345,30.193843],[114.907345,30.193843]]]]}},{"type":"Feature","properties":{"name":"西塞山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.207345,30.2138430000001],[115.223682890625,30.1901808906251],[115.259176054688,30.1656740546875],[115.267345,30.153843],[115.250704375,30.1504836250001],[115.223985625,30.137202375],[115.167345,30.1338430000001],[115.161519804688,30.1380178046875],[115.151363554688,30.1765065742188],[115.115303984375,30.190415265625],[115.073267851563,30.1821096015625],[115.062965117188,30.1677321601562],[115.01162234375,30.1778786445312],[115.007345,30.183843],[115.040206328125,30.1890212226563],[115.057345,30.2138430000001],[115.097345,30.2138430000001],[115.207345,30.2138430000001]]]]}},{"type":"Feature","properties":{"name":"阳新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.31123171875,30.0989797187501],[115.323404570313,30.0290309882813],[115.367345,29.993843],[115.37170046875,29.97819846875],[115.403150664063,29.9392873359375],[115.400670195313,29.9224929023438],[115.41170046875,29.90819846875],[115.43427859375,29.8907741523437],[115.46494265625,29.8510475898438],[115.507345,29.843843],[115.499176054688,29.8320119453125],[115.471026640625,29.8125783515626],[115.460103789063,29.763843],[115.465562773438,29.7394802070312],[115.42142703125,29.7097585273438],[115.412164335938,29.6850002265625],[115.37142703125,29.6697585273438],[115.35326296875,29.6579274726563],[115.30142703125,29.6397585273438],[115.270714140625,29.6197585273437],[115.261143828125,29.6384865546875],[115.265308867188,29.6570583320313],[115.252345,29.6599636054688],[115.212345,29.6509963203125],[115.172345,29.6599636054688],[115.158443632813,29.6568483710938],[115.110714140625,29.6879274726563],[115.11142703125,29.6579274726563],[115.133673125,29.64960471875],[115.120264921875,29.5950148750001],[115.168389921875,29.6058034492188],[115.151124296875,29.5792897773438],[115.153468046875,29.5688430000001],[115.1476965625,29.5431154609375],[115.157345,29.503843],[115.15142703125,29.5079274726563],[115.078824492188,29.5257595039063],[115.093565703125,29.5483962226563],[115.090557890625,29.5618044257813],[115.047345,29.5521169257812],[114.99138796875,29.5646608710938],[114.947345,29.553843],[114.9360559375,29.5625563789063],[114.92298953125,29.57948753125],[114.901519804688,29.5882717109376],[114.903140898438,29.5992336250001],[114.89170046875,29.6181984687501],[114.873468046875,29.6836794257813],[114.84170046875,29.70819846875],[114.83298953125,29.72948753125],[114.815479765625,29.7430007148438],[114.782345,29.7381032539063],[114.772345,29.7395827460938],[114.76205203125,29.73806175],[114.719527617188,29.7547780585938],[114.731685820313,29.8370632148438],[114.707345,29.843843],[114.71142703125,29.8697585273438],[114.717345,29.893843],[114.721671171875,29.900864484375],[114.751158476563,29.8876564765626],[114.793531523438,29.8800295234375],[114.832310820313,29.8672756171876],[114.842379179688,29.8704103828125],[114.901768828125,29.8508766914063],[114.93248171875,29.8604421210938],[114.941158476563,29.9200295234375],[114.959718046875,29.9314675117188],[114.9748059375,29.9559474921875],[114.969010039063,29.9745534492187],[114.992345,29.9672853828125],[115.0232825,29.9769216132813],[115.031383085938,30.0006984687501],[115.0497278125,29.994985578125],[115.07783328125,30.0147194648438],[115.051158476563,30.0476564765625],[115.034244414063,30.0972829414063],[115.060347929688,30.1076564765625],[115.128292265625,30.08530784375],[115.162511015625,30.1006374335938],[115.167345,30.1338430000001],[115.223985625,30.137202375],[115.250704375,30.1504836250001],[115.267345,30.153843],[115.31123171875,30.0989797187501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丹江口市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.917345,32.6538430000001],[110.922779570313,32.6411452460938],[110.940343046875,32.649790265625],[110.93798953125,32.6859865546875],[110.959127226563,32.7376296210938],[110.972345,32.7395827460938],[110.982857695313,32.7380275703125],[111.005928984375,32.7679177070313],[111.078695097656,32.7571657539062],[111.097635527344,32.7717848945312],[111.078880644531,32.8028762031251],[111.09170046875,32.81948753125],[111.112178984375,32.8352931953125],[111.122511015625,32.8723928046875],[111.148631621094,32.8925563789063],[111.16170046875,32.9094875312501],[111.209454375,32.9195632148437],[111.229127226563,32.9676296210938],[111.242938261719,32.9696706367188],[111.247345,32.9538430000001],[111.239022246094,32.933139875],[111.244066191406,32.903843],[111.239959746094,32.8799880195313],[111.279110136719,32.9042189765625],[111.291610136719,32.8581081367188],[111.313079863281,32.8495778632813],[111.321610136719,32.8381081367188],[111.373140898438,32.8275075507812],[111.415523710938,32.7510524726563],[111.467159453125,32.7718068671876],[111.459652128906,32.7282009101563],[111.471610136719,32.6981081367188],[111.520516386719,32.6644606757813],[111.523206816406,32.6488430000001],[111.52048953125,32.6330593085938],[111.531610136719,32.6181081367188],[111.543079863281,32.6095778632813],[111.551610136719,32.5981081367188],[111.577345,32.593843],[111.573985625,32.5672023750001],[111.550704375,32.540483625],[111.527345,32.493843],[111.50170046875,32.4894875312501],[111.49298953125,32.4781984687501],[111.471522246094,32.4694142890625],[111.475638457031,32.4415627265626],[111.411431914063,32.4152834296875],[111.372857695313,32.4209841132812],[111.36298953125,32.40819846875],[111.327464628906,32.3869533515625],[111.296951933594,32.3474221015626],[111.279205351563,32.3500466132813],[111.232735625,32.3220143867188],[111.221624785156,32.2948635078126],[111.207345,32.283843],[111.200985136719,32.291782453125],[111.171951933594,32.2881716132813],[111.133487578125,32.3162697578125],[111.072713652344,32.2805471015626],[111.05400515625,32.25718284375],[111.029251738281,32.2373610664063],[111.005133085938,32.2403615546876],[110.992899199219,32.2693971992188],[110.974930449219,32.2982888007813],[110.912345,32.2742336250001],[110.870181914063,32.2904396796875],[110.852345,32.2882204414063],[110.826615019531,32.291421125],[110.811261015625,32.3451247382813],[110.812994414063,32.3590602851563],[110.801610136719,32.3989235664063],[110.807345,32.413843],[110.833260527344,32.4179274726563],[110.86267703125,32.4370827460938],[110.871429472656,32.4497585273438],[110.897428007813,32.4677101875001],[110.925963164063,32.5177028632813],[110.919700957031,32.5456423164063],[110.933529082031,32.5785646796876],[110.931224394531,32.588843],[110.933616972656,32.5995143867188],[110.909598417969,32.6160964179688],[110.897345,32.633843],[110.907345,32.633843],[110.907345,32.6538430000001],[110.917345,32.6538430000001]],[[111.447345,32.7238430000001],[111.441910429688,32.7365407539063],[111.424346953125,32.727895734375],[111.447345,32.7238430000001]]]]}},{"type":"Feature","properties":{"name":"房县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.093260527344,31.9597585273438],[111.097345,31.943843],[111.053260527344,31.9734059882813],[111.072877226563,31.9910622382812],[111.093260527344,31.9597585273438]]],[[[111.077345,32.013843],[111.09062625,32.02056175],[111.100704375,32.040483625],[111.123985625,32.047202375],[111.127345,32.053843],[111.14062625,32.04712425],[111.147345,32.033843],[111.120704375,32.030483625],[111.113985625,32.017202375],[111.08345828125,32.0017580390626],[111.077345,32.013843]]],[[[111.227345,32.2638430000001],[111.230767851563,32.2760353828125],[111.239537382813,32.2672658515625],[111.227345,32.2638430000001]]],[[[110.357345,32.3138430000001],[110.345152617188,32.3172658515625],[110.353922148438,32.3260353828126],[110.357345,32.3138430000001]]],[[[111.227345,32.2638430000001],[111.231883574219,32.2483815742188],[111.251663847656,32.213843],[111.231803007813,32.179165265625],[111.232894316406,32.168452375],[111.221883574219,32.1593044257813],[111.201473417969,32.1347365546875],[111.131883574219,32.1193044257813],[111.127345,32.103843],[111.06263796875,32.0928517890625],[111.057345,32.073843],[111.045152617188,32.0704201484375],[111.053922148438,32.0616506171876],[111.057345,32.073843],[111.079888945313,32.06929221875],[111.064969511719,32.0387404609375],[111.077345,32.013843],[111.048245878906,32.0069655585938],[110.996839628906,32.01581565625],[111.006649199219,31.958843],[111.000623808594,31.9238430000001],[111.003206816406,31.908843],[111.001451445313,31.8986476875],[111.014329863281,31.8553737617188],[111.0103528125,31.832270734375],[110.988167753906,31.8195778632813],[110.995465117188,31.8619631171875],[110.964107695313,31.8565627265625],[110.93623171875,31.8738161445313],[110.902345,31.8679811835938],[110.884107695313,31.8711232734376],[110.849700957031,31.849829328125],[110.782913847656,31.8613283515626],[110.773079863281,31.8481081367188],[110.761610136719,31.8395778632813],[110.757345,31.833843],[110.751610136719,31.8381081367188],[110.707667265625,31.8456740546875],[110.664251738281,31.8631252265626],[110.651776152344,31.8463576484376],[110.632345,31.8497048164063],[110.622345,31.8479811835937],[110.612345,31.8497048164063],[110.602345,31.8479811835937],[110.592345,31.8497048164063],[110.582345,31.8479811835937],[110.572345,31.8497048164063],[110.562345,31.8479811835937],[110.542345,31.8514260078125],[110.522345,31.8479811835937],[110.480389433594,31.8552053046875],[110.483304472656,31.8382741523438],[110.471610136719,31.8295778632813],[110.459505644531,31.813305890625],[110.404049101563,31.8228542304688],[110.393079863281,31.8081081367188],[110.371610136719,31.7995778632813],[110.359366484375,31.7687673164063],[110.271610136719,31.7595778632813],[110.263079863281,31.7481081367188],[110.234771757813,31.736860578125],[110.213079863281,31.6918923164063],[110.233577910156,31.6587721992187],[110.206077910156,31.6222243476563],[110.224830351563,31.6082741523437],[110.219117460938,31.5750954414063],[110.187203398438,31.5805886054688],[110.167235136719,31.6074318671875],[110.109144316406,31.5974318671876],[110.057345,31.563843],[110.05197390625,31.5684719062501],[110.04271609375,31.5826247382813],[110.062769804688,31.6185646796875],[110.061927519531,31.6290456367187],[110.075247832031,31.6777175117188],[110.07158328125,31.7233229804688],[110.051920195313,31.7585646796875],[110.054561796875,31.7914455390625],[110.09271609375,31.80847190625],[110.10197390625,31.81921409375],[110.121541777344,31.8360744453125],[110.173324003906,31.851665265625],[110.167418242188,31.9251638007813],[110.130992460938,31.9565456367188],[110.146002226563,31.99741721875],[110.185128203125,32.0091970039062],[110.181917753906,32.0491677070313],[110.19271609375,32.0584719062501],[110.202020292969,32.0692702460938],[110.231922636719,32.0668679023438],[110.27306765625,32.0376955390625],[110.296824980469,32.03960471875],[110.341536894531,32.0645510078126],[110.353829375,32.1053786445313],[110.351165800781,32.1385182929688],[110.368089628906,32.1530983710938],[110.38197390625,32.16921409375],[110.4027746875,32.1784963203126],[110.401165800781,32.1985182929687],[110.413284941406,32.2089601875],[110.383900175781,32.2220729804688],[110.369935332031,32.2684548164063],[110.35271609375,32.2484719062501],[110.336346464844,32.23921409375],[110.357345,32.3138430000001],[110.373260527344,32.3179274726562],[110.381429472656,32.3297585273438],[110.409281035156,32.340180890625],[110.413746367188,32.3600905585938],[110.381607695313,32.4066359687501],[110.333260527344,32.4247267890625],[110.341429472656,32.4497585273438],[110.347345,32.453843],[110.358253203125,32.4193874335937],[110.470719023438,32.4429177070313],[110.484359160156,32.4859987617187],[110.542535429688,32.5086525703126],[110.547345,32.513843],[110.56062625,32.50712425],[110.570704375,32.4872023750001],[110.587345,32.483843],[110.591851835938,32.46628440625],[110.613514433594,32.4349074531251],[110.676409941406,32.4544020820312],[110.703260527344,32.4197585273438],[110.714244414063,32.3904079414063],[110.771224394531,32.4379274726563],[110.803260527344,32.4197585273438],[110.807345,32.413843],[110.801610136719,32.3989235664063],[110.812994414063,32.3590602851563],[110.811261015625,32.3451247382813],[110.826615019531,32.291421125],[110.852345,32.2882204414063],[110.870181914063,32.2904396796875],[110.912345,32.2742336250001],[110.974930449219,32.2982888007813],[110.992899199219,32.2693971992188],[111.005133085938,32.2403615546876],[111.029251738281,32.2373610664063],[111.05400515625,32.25718284375],[111.072713652344,32.2805471015626],[111.133487578125,32.3162697578125],[111.171951933594,32.2881716132813],[111.200985136719,32.291782453125],[111.207345,32.283843],[111.21406375,32.27056175],[111.227345,32.2638430000001]],[[110.407345,32.253843],[110.430069609375,32.2578493476563],[110.412906523438,32.266841046875],[110.385030546875,32.2490431953125],[110.394442167969,32.2303029609375],[110.407345,32.253843]],[[110.974346953125,31.9294045234375],[110.987345,31.9238430000001],[110.983338652344,31.946567609375],[110.974346953125,31.9294045234375]]]]}},{"type":"Feature","properties":{"name":"茅箭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.797667265625,32.6478615546875],[110.817030058594,32.6198171210938],[110.843260527344,32.6379274726563],[110.851429472656,32.6497585273438],[110.857345,32.6538430000001],[110.881429472656,32.6379274726563],[110.897345,32.633843],[110.909598417969,32.6160964179688],[110.933616972656,32.5995143867188],[110.931224394531,32.588843],[110.933529082031,32.5785646796876],[110.919700957031,32.5456423164063],[110.925963164063,32.5177028632813],[110.897428007813,32.4677101875001],[110.871429472656,32.4497585273438],[110.86267703125,32.4370827460938],[110.833260527344,32.4179274726563],[110.807345,32.413843],[110.803260527344,32.4197585273438],[110.771224394531,32.4379274726563],[110.714244414063,32.3904079414063],[110.703260527344,32.4197585273438],[110.676409941406,32.4544020820312],[110.613514433594,32.4349074531251],[110.591851835938,32.46628440625],[110.587345,32.483843],[110.599176054688,32.4920119453126],[110.627652617188,32.5332570625],[110.653016386719,32.5275710273438],[110.663773222656,32.5431520820313],[110.705516386719,32.5587721992188],[110.733260527344,32.5779274726563],[110.741429472656,32.5897585273437],[110.753260527344,32.5979274726563],[110.774293242188,32.6579274726562],[110.797667265625,32.6478615546875]]],[[[110.773922148438,32.6860353828125],[110.777345,32.673843],[110.765152617188,32.6772658515626],[110.773922148438,32.6860353828125]]]]}},{"type":"Feature","properties":{"name":"郧西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.617345,32.903843],[110.629537382813,32.9004201484376],[110.620767851563,32.8916506171875],[110.617345,32.903843]]],[[[110.617345,32.903843],[110.582027617188,32.8990163398437],[110.59255984375,32.8689675117188],[110.591065703125,32.8490334296875],[110.572523222656,32.8690480781251],[110.562345,32.8686452460938],[110.552157011719,32.8690480781251],[110.542535429688,32.8286525703125],[110.503370390625,32.8033620429688],[110.457948027344,32.8652883125],[110.442345,32.8484474921875],[110.432523222656,32.859048078125],[110.4217590625,32.8586208320313],[110.422550078125,32.8386647773438],[110.401361113281,32.8190334296875],[110.402545195313,32.848921125],[110.4006653125,32.8686525703125],[110.342535429688,32.8286525703125],[110.312154570313,32.8190334296875],[110.302535429688,32.7986525703125],[110.267994414063,32.7823513007813],[110.2444153125,32.8077980781251],[110.137345,32.813843],[110.121429472656,32.8179274726563],[110.085091582031,32.8415895820313],[110.041429472656,32.8579274726563],[110.017428007813,32.8735573554688],[109.952957792969,32.8901003242187],[109.934459257813,32.8859548164062],[109.913260527344,32.8997585273437],[109.854871855469,32.9147438789063],[109.843260527344,32.8979274726563],[109.811429472656,32.8897585273438],[109.797345,32.8838430000001],[109.782064238281,32.8885622382813],[109.770423613281,32.9015895820313],[109.772642851563,32.938843],[109.7715246875,32.9576198554688],[109.782625761719,32.9885622382813],[109.795062285156,33.0683718085938],[109.762064238281,33.0785622382813],[109.742625761719,33.0891237617188],[109.712064238281,33.0985622382813],[109.684664335938,33.1134511542969],[109.602120390625,33.1085317207031],[109.582569609375,33.1191542792969],[109.572144804688,33.1185329414063],[109.517816191406,33.1380263496094],[109.437345,33.1438430000001],[109.45170046875,33.1694863105469],[109.468631621094,33.1825551582031],[109.48170046875,33.1994863105469],[109.503463164063,33.2162831855469],[109.501529570313,33.2293544746094],[109.515994902344,33.2405202460938],[109.532345,33.2381044746094],[109.542345,33.2395815253906],[109.600108671875,33.2310463691406],[109.617345,33.273843],[109.63298953125,33.2694863105469],[109.65170046875,33.2581996894532],[109.69298953125,33.2494863105469],[109.71170046875,33.2381996894532],[109.765389433594,33.2294863105469],[109.852345,33.2496364570313],[109.904576445313,33.237533185547],[109.977081328125,33.2058486152344],[110.010767851563,33.2108266425781],[110.038638945313,33.1940151191407],[110.092135039063,33.2096132636719],[110.122345,33.2051491523438],[110.161832304688,33.2109841132813],[110.17170046875,33.1981996894532],[110.2173840625,33.1629372382812],[110.282345,33.1725368476563],[110.327174101563,33.1659133125],[110.36205203125,33.1796254707032],[110.372345,33.1781044746094],[110.382345,33.1795815253907],[110.412345,33.1751491523438],[110.442345,33.1795815253907],[110.461954375,33.1766847968751],[110.487345,33.213843],[110.511893339844,33.2300649238281],[110.523118925781,33.2275490546876],[110.534486113281,33.2579274726563],[110.568109160156,33.2483815742188],[110.593565703125,33.2092897773438],[110.591224394531,33.198843],[110.595706816406,33.178843],[110.590340605469,33.1548964667969],[110.622791777344,33.147622296875],[110.644827910156,33.1619716621094],[110.661429472656,33.1379274726563],[110.673260527344,33.1297585273438],[110.677345,33.123843],[110.671883574219,33.1193056464844],[110.642806425781,33.0783815742188],[110.616588164063,33.0670095039063],[110.586683378906,33.0310060859376],[110.613834257813,33.008452375],[110.611793242188,32.9884206367188],[110.641449003906,32.9755568671876],[110.621795683594,32.9592336250001],[110.623363066406,32.943843],[110.621834746094,32.928843],[110.622882109375,32.9185768867188],[110.617345,32.903843]]]]}},{"type":"Feature","properties":{"name":"郧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.917345,32.6538430000001],[110.940343046875,32.649790265625],[110.922779570313,32.6411452460938],[110.917345,32.6538430000001]]],[[[111.057345,33.173843],[111.035030546875,33.1690431953125],[111.044442167969,33.1503029609375],[111.082691679688,33.1835854316406],[111.118450957031,33.1549489570313],[111.138785429688,33.1295571113281],[111.162899199219,33.1193959785156],[111.171790800781,33.0982900214844],[111.191790800781,33.0822731757812],[111.182899199219,33.0682888007813],[111.142899199219,33.0514357734376],[111.151878691406,33.0381618476563],[111.22935671875,33.0478005195313],[111.241790800781,33.0182888007813],[111.261241484375,33.0027150703125],[111.266634550781,32.9593581367188],[111.247345,32.9538430000001],[111.242938261719,32.9696706367188],[111.229127226563,32.9676296210938],[111.209454375,32.9195632148437],[111.16170046875,32.9094875312501],[111.148631621094,32.8925563789063],[111.122511015625,32.8723928046875],[111.112178984375,32.8352931953125],[111.09170046875,32.81948753125],[111.078880644531,32.8028762031251],[111.097635527344,32.7717848945312],[111.078695097656,32.7571657539062],[111.005928984375,32.7679177070313],[110.982857695313,32.7380275703125],[110.972345,32.7395827460938],[110.959127226563,32.7376296210938],[110.93798953125,32.6859865546875],[110.917345,32.6538430000001],[110.907345,32.6538430000001],[110.907345,32.633843],[110.897345,32.633843],[110.881429472656,32.6379274726563],[110.857345,32.6538430000001],[110.847545195313,32.6840431953125],[110.832244902344,32.6987429023437],[110.822445097656,32.7189430976563],[110.812244902344,32.7287429023438],[110.799505644531,32.7550026679688],[110.772283964844,32.7690261054688],[110.753446074219,32.7301930976563],[110.742249785156,32.7185378242188],[110.712345,32.7191481757813],[110.682440214844,32.7185378242188],[110.660338164063,32.7415431953125],[110.584261503906,32.761040265625],[110.571480742188,32.7477370429688],[110.478060332031,32.74964378125],[110.462240019531,32.7189357734376],[110.462447539063,32.708843],[110.462242460938,32.698843],[110.462645292969,32.6791310859375],[110.448216582031,32.6511208320312],[110.473394804688,32.638149640625],[110.521832304688,32.6391384101563],[110.545748320313,32.6161623359375],[110.532445097656,32.5887429023438],[110.492674589844,32.5758376289063],[110.542518339844,32.5388869453125],[110.532157011719,32.5187721992188],[110.547345,32.513843],[110.542535429688,32.5086525703126],[110.484359160156,32.4859987617187],[110.470719023438,32.4429177070313],[110.358253203125,32.4193874335937],[110.347345,32.453843],[110.341429472656,32.4679274726562],[110.333260527344,32.5097585273438],[110.292957792969,32.5201003242188],[110.278992949219,32.5169704414063],[110.263260527344,32.5397585273438],[110.233973417969,32.5579274726563],[110.203260527344,32.5379274726563],[110.173260527344,32.5317360664063],[110.2049621875,32.6016799140625],[110.187345,32.6138430000001],[110.196610136719,32.6359011054688],[110.150911894531,32.6885231757813],[110.164989042969,32.7220436835938],[110.157135039063,32.7570827460938],[110.123314238281,32.7804347968751],[110.137345,32.813843],[110.2444153125,32.8077980781251],[110.267994414063,32.7823513007813],[110.302535429688,32.7986525703125],[110.312154570313,32.8190334296875],[110.342535429688,32.8286525703125],[110.4006653125,32.8686525703125],[110.402545195313,32.848921125],[110.401361113281,32.8190334296875],[110.422550078125,32.8386647773438],[110.4217590625,32.8586208320313],[110.432523222656,32.859048078125],[110.442345,32.8484474921875],[110.457948027344,32.8652883125],[110.503370390625,32.8033620429688],[110.542535429688,32.8286525703125],[110.552157011719,32.8690480781251],[110.562345,32.8686452460938],[110.572523222656,32.8690480781251],[110.591065703125,32.8490334296875],[110.59255984375,32.8689675117188],[110.582027617188,32.8990163398437],[110.617345,32.903843],[110.620767851563,32.8916506171875],[110.629537382813,32.9004201484376],[110.617345,32.903843],[110.622882109375,32.9185768867188],[110.621834746094,32.928843],[110.623363066406,32.943843],[110.621795683594,32.9592336250001],[110.641449003906,32.9755568671876],[110.611793242188,32.9884206367188],[110.613834257813,33.008452375],[110.586683378906,33.0310060859376],[110.616588164063,33.0670095039063],[110.642806425781,33.0783815742188],[110.671883574219,33.1193056464844],[110.677345,33.123843],[110.692274199219,33.10222190625],[110.713160429688,33.0975392890626],[110.722349882813,33.1333449531251],[110.766702910156,33.1519741035156],[110.802345,33.1599636054688],[110.816151152344,33.1568691230469],[110.810186796875,33.1834743476563],[110.822274199219,33.2009804511719],[110.882345,33.2144472480469],[110.912884550781,33.2076015449219],[110.961429472656,33.2497585273438],[110.987345,33.253843],[111.007767363281,33.2242653632813],[111.052296171875,33.193520734375],[111.057345,33.173843]],[[111.015152617188,33.1772658515625],[111.027345,33.173843],[111.023922148438,33.1860353828125],[111.015152617188,33.1772658515625]]]]}},{"type":"Feature","properties":{"name":"张湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.822445097656,32.7189430976563],[110.832244902344,32.6987429023437],[110.847545195313,32.6840431953125],[110.857345,32.6538430000001],[110.851429472656,32.6497585273438],[110.843260527344,32.6379274726563],[110.817030058594,32.6198171210938],[110.797667265625,32.6478615546875],[110.774293242188,32.6579274726562],[110.753260527344,32.5979274726563],[110.741429472656,32.5897585273437],[110.733260527344,32.5779274726563],[110.705516386719,32.5587721992188],[110.663773222656,32.5431520820313],[110.653016386719,32.5275710273438],[110.627652617188,32.5332570625],[110.599176054688,32.4920119453126],[110.587345,32.483843],[110.570704375,32.4872023750001],[110.56062625,32.50712425],[110.547345,32.513843],[110.532157011719,32.5187721992188],[110.542518339844,32.5388869453125],[110.492674589844,32.5758376289063],[110.532445097656,32.5887429023438],[110.545748320313,32.6161623359375],[110.521832304688,32.6391384101563],[110.473394804688,32.638149640625],[110.448216582031,32.6511208320312],[110.462645292969,32.6791310859375],[110.462242460938,32.698843],[110.462447539063,32.708843],[110.462240019531,32.7189357734376],[110.478060332031,32.74964378125],[110.571480742188,32.7477370429688],[110.584261503906,32.761040265625],[110.660338164063,32.7415431953125],[110.682440214844,32.7185378242188],[110.712345,32.7191481757813],[110.742249785156,32.7185378242188],[110.753446074219,32.7301930976563],[110.772283964844,32.7690261054688],[110.799505644531,32.7550026679688],[110.812244902344,32.7287429023438],[110.822445097656,32.7189430976563]],[[110.765152617188,32.6772658515626],[110.777345,32.673843],[110.773922148438,32.6860353828125],[110.765152617188,32.6772658515626]]]]}},{"type":"Feature","properties":{"name":"竹山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.887345,31.723843],[109.883922148438,31.7116506171875],[109.875152617188,31.7204201484376],[109.887345,31.723843]]],[[[110.407345,32.253843],[110.394442167969,32.2303029609375],[110.385030546875,32.2490431953125],[110.407345,32.253843]]],[[[110.407345,32.253843],[110.412906523438,32.266841046875],[110.430069609375,32.2578493476563],[110.407345,32.253843]]],[[[109.937345,32.283843],[109.924754667969,32.2692311835938],[109.917345,32.293843],[109.927345,32.293843],[109.927345,32.283843],[109.937345,32.283843]]],[[[110.357345,32.3138430000001],[110.353922148438,32.3260353828126],[110.345152617188,32.3172658515625],[110.336346464844,32.23921409375],[110.35271609375,32.2484719062501],[110.369935332031,32.2684548164063],[110.383900175781,32.2220729804688],[110.413284941406,32.2089601875],[110.401165800781,32.1985182929687],[110.4027746875,32.1784963203126],[110.38197390625,32.16921409375],[110.368089628906,32.1530983710938],[110.351165800781,32.1385182929688],[110.353829375,32.1053786445313],[110.341536894531,32.0645510078126],[110.296824980469,32.03960471875],[110.27306765625,32.0376955390625],[110.231922636719,32.0668679023438],[110.202020292969,32.0692702460938],[110.19271609375,32.0584719062501],[110.181917753906,32.0491677070313],[110.185128203125,32.0091970039062],[110.146002226563,31.99741721875],[110.130992460938,31.9565456367188],[110.167418242188,31.9251638007813],[110.173324003906,31.851665265625],[110.121541777344,31.8360744453125],[110.10197390625,31.81921409375],[110.09271609375,31.80847190625],[110.054561796875,31.7914455390625],[110.051920195313,31.7585646796875],[110.07158328125,31.7233229804688],[110.075247832031,31.6777175117188],[110.061927519531,31.6290456367187],[110.062769804688,31.6185646796875],[110.04271609375,31.5826247382813],[110.05197390625,31.5684719062501],[110.057345,31.563843],[110.053116484375,31.5473708320313],[110.023260527344,31.5279274726563],[109.967345,31.5138430000001],[109.941925078125,31.5076003242188],[109.917345,31.523843],[109.921790800781,31.5393971992188],[109.934136992188,31.5603957343751],[109.909405546875,31.5802028632813],[109.915418730469,31.6285549140625],[109.950640898438,31.6884743476563],[109.96334109375,31.6986428046876],[109.951549101563,31.7187038398438],[109.887345,31.723843],[109.89170046875,31.7294875312501],[109.915303984375,31.7477053046875],[109.95298953125,31.75819846875],[109.992366972656,31.7873952460938],[110.009224882813,31.8092360664063],[109.971095,31.83866721875],[109.994378691406,31.8700759101563],[109.990867949219,31.8938430000001],[109.993585234375,31.9122414375001],[109.932486601563,31.8980837226563],[109.917391386719,31.9003151679688],[109.923748808594,31.9433498359376],[109.94298953125,31.95819846875],[109.97170046875,31.99948753125],[109.98298953125,32.00819846875],[109.993153105469,32.0330348945313],[110.05298953125,32.07819846875],[110.06978640625,32.0999611640625],[110.087779570313,32.09730003125],[110.066910429688,32.15038596875],[110.086851835938,32.1474391914063],[110.101832304688,32.1280275703125],[110.124193144531,32.131333234375],[110.119193144531,32.1651711250001],[110.04955203125,32.2136013007812],[110.007345,32.2073659492188],[109.973319121094,32.2123928046876],[109.96298953125,32.24948753125],[109.941522246094,32.2582717109375],[109.944486113281,32.2783303046875],[109.937345,32.283843],[109.937345,32.293843],[109.927345,32.293843],[109.922345,32.3066506171875],[109.917345,32.293843],[109.901790800781,32.2984084296876],[109.904007597656,32.3201491523437],[109.836964140625,32.3398244453126],[109.822345,32.3383327460938],[109.810882597656,32.3395021796875],[109.813873320313,32.368843],[109.790816679688,32.378843],[109.794046660156,32.4105446601563],[109.757406035156,32.3895583320313],[109.741236601563,32.4446633125001],[109.706724882813,32.4248952460938],[109.655560332031,32.4617189765626],[109.613533964844,32.4574343085938],[109.592806425781,32.4693044257813],[109.571883574219,32.4783815742188],[109.567345,32.483843],[109.575826445313,32.5120095039063],[109.641754179688,32.5414284492188],[109.61271609375,32.5664455390626],[109.622432890625,32.6008449531251],[109.652345,32.5984401679688],[109.667345,32.5996462226563],[109.689051542969,32.5979030585938],[109.727345,32.603843],[109.737630644531,32.5905178046875],[109.813336210938,32.575962140625],[109.908753691406,32.5980715156251],[109.94170046875,32.57819846875],[109.96298953125,32.5694875312501],[110.012723417969,32.53948753125],[110.084500761719,32.5892482734375],[110.080282011719,32.6178005195313],[110.109451933594,32.6221096015625],[110.146763945313,32.5944460273438],[110.17170046875,32.60948753125],[110.187345,32.6138430000001],[110.2049621875,32.6016799140625],[110.173260527344,32.5317360664063],[110.203260527344,32.5379274726563],[110.233973417969,32.5579274726563],[110.263260527344,32.5397585273438],[110.278992949219,32.5169704414063],[110.292957792969,32.5201003242188],[110.333260527344,32.5097585273438],[110.341429472656,32.4679274726562],[110.347345,32.453843],[110.341429472656,32.4497585273438],[110.333260527344,32.4247267890625],[110.381607695313,32.4066359687501],[110.413746367188,32.3600905585938],[110.409281035156,32.340180890625],[110.381429472656,32.3297585273438],[110.373260527344,32.3179274726562],[110.357345,32.3138430000001]]]]}},{"type":"Feature","properties":{"name":"竹溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.937345,32.283843],[109.927345,32.283843],[109.927345,32.293843],[109.937345,32.293843],[109.937345,32.283843]]],[[[109.927345,32.293843],[109.917345,32.293843],[109.922345,32.3066506171875],[109.927345,32.293843]]],[[[109.917345,32.293843],[109.924754667969,32.2692311835938],[109.937345,32.283843],[109.944486113281,32.2783303046875],[109.941522246094,32.2582717109375],[109.96298953125,32.24948753125],[109.973319121094,32.2123928046876],[110.007345,32.2073659492188],[110.04955203125,32.2136013007812],[110.119193144531,32.1651711250001],[110.124193144531,32.131333234375],[110.101832304688,32.1280275703125],[110.086851835938,32.1474391914063],[110.066910429688,32.15038596875],[110.087779570313,32.09730003125],[110.06978640625,32.0999611640625],[110.05298953125,32.07819846875],[109.993153105469,32.0330348945313],[109.98298953125,32.00819846875],[109.97170046875,31.99948753125],[109.94298953125,31.95819846875],[109.923748808594,31.9433498359376],[109.917391386719,31.9003151679688],[109.932486601563,31.8980837226563],[109.993585234375,31.9122414375001],[109.990867949219,31.8938430000001],[109.994378691406,31.8700759101563],[109.971095,31.83866721875],[110.009224882813,31.8092360664063],[109.992366972656,31.7873952460938],[109.95298953125,31.75819846875],[109.915303984375,31.7477053046875],[109.89170046875,31.7294875312501],[109.887345,31.723843],[109.875152617188,31.7204201484376],[109.883922148438,31.7116506171875],[109.887345,31.723843],[109.951549101563,31.7187038398438],[109.96334109375,31.6986428046876],[109.950640898438,31.6884743476563],[109.915418730469,31.6285549140625],[109.909405546875,31.5802028632813],[109.934136992188,31.5603957343751],[109.921790800781,31.5393971992188],[109.917345,31.523843],[109.876314726563,31.5286232734376],[109.835657988281,31.554438703125],[109.797345,31.5468679023438],[109.762345,31.5537819648437],[109.731829863281,31.5477541328125],[109.713170195313,31.5636843085938],[109.733170195313,31.5780178046876],[109.741519804688,31.5996681953126],[109.753890410156,31.6085329414063],[109.741519804688,31.6280178046875],[109.727489042969,31.6980031562501],[109.701519804688,31.7080178046875],[109.680404082031,31.7214235664063],[109.662345,31.7178542304688],[109.642345,31.7218068671875],[109.612345,31.7158791328125],[109.586571074219,31.7209719062501],[109.577345,31.7338430000001],[109.593463164063,31.74628440625],[109.590128203125,31.768843],[109.594354277344,31.7974416328126],[109.640584746094,31.8103151679688],[109.61170046875,31.8581984687501],[109.60298953125,31.8794875312501],[109.581226835938,31.89628440625],[109.584202910156,31.9164186835938],[109.62677859375,31.9338430000001],[109.620560332031,31.9759230781251],[109.584898710938,32.0034499335938],[109.593748808594,32.0633498359375],[109.613160429688,32.0783303046876],[109.611605253906,32.088843],[109.614378691406,32.1076100898438],[109.586615019531,32.1450612617188],[109.597008085938,32.2154055000001],[109.547345,32.223843],[109.518089628906,32.2745876289063],[109.491170683594,32.2977785468751],[109.51334109375,32.3375148750001],[109.50060671875,32.3721950507813],[109.502840605469,32.4000075507813],[109.524398222656,32.39827659375],[109.521920195313,32.4291213203125],[109.541358671875,32.4639601875],[109.547345,32.483843],[109.567345,32.483843],[109.571883574219,32.4783815742188],[109.592806425781,32.4693044257813],[109.613533964844,32.4574343085938],[109.655560332031,32.4617189765626],[109.706724882813,32.4248952460938],[109.741236601563,32.4446633125001],[109.757406035156,32.3895583320313],[109.794046660156,32.4105446601563],[109.790816679688,32.378843],[109.813873320313,32.368843],[109.810882597656,32.3395021796875],[109.822345,32.3383327460938],[109.836964140625,32.3398244453126],[109.904007597656,32.3201491523437],[109.901790800781,32.2984084296876],[109.917345,32.293843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"枝江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.697345,30.6338430000001],[111.703475371094,30.6088845039063],[111.696944609375,30.5797585273438],[111.713260527344,30.5879274726563],[111.721673613281,30.6001149726563],[111.739144316406,30.5961989570313],[111.772847929688,30.6103542304688],[111.781673613281,30.5975710273438],[111.792791777344,30.600063703125],[111.811898222656,30.587622296875],[111.822345,30.5899636054688],[111.852345,30.58323753125],[111.886151152344,30.5908180976563],[111.881102324219,30.5683034492188],[111.923260527344,30.5197585273438],[111.927345,30.503843],[111.911226835938,30.4914015937501],[111.913822050781,30.473843],[111.910282011719,30.4498854804688],[111.927345,30.4473659492188],[111.960125761719,30.4522096992187],[111.9752746875,30.4136721015625],[111.968187285156,30.365708234375],[112.008363066406,30.3136574531251],[112.043260527344,30.2993752265625],[112.037345,30.273843],[111.9810559375,30.280884015625],[111.932899199219,30.3493971992188],[111.91291140625,30.3582888007813],[111.891829863281,30.2845534492188],[111.842345,30.290708234375],[111.821890898438,30.2881642890626],[111.812899199219,30.2993971992188],[111.783270292969,30.3231227851563],[111.770726347656,30.3669924140625],[111.733934355469,30.3782888007812],[111.668717070313,30.3399538398438],[111.629639921875,30.3287819648438],[111.592899199219,30.2682888007812],[111.567345,30.2538430000001],[111.56271609375,30.25921409375],[111.496514921875,30.3162526679688],[111.524117460938,30.3817946601563],[111.521593046875,30.4132009101563],[111.434776640625,30.4062258125],[111.447345,30.463843],[111.453260527344,30.4679274726563],[111.471636992188,30.500122296875],[111.483016386719,30.4975710273438],[111.491673613281,30.5101149726563],[111.506441679688,30.5068044257813],[111.497345,30.543843],[111.5201575,30.5498610664063],[111.541519804688,30.5796681953125],[111.594232207031,30.5902346015625],[111.658519316406,30.6166530585937],[111.647345,30.643843],[111.66072390625,30.661176984375],[111.697345,30.6338430000001]]],[[[111.697345,30.6338430000001],[111.706092558594,30.6679274726563],[111.721417265625,30.65046409375],[111.697345,30.6338430000001]]]]}},{"type":"Feature","properties":{"name":"秭归县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.639444609375,31.1922438789063],[110.667020292969,31.1742873359375],[110.710885039063,31.1841213203125],[110.735233183594,31.1467287421875],[110.728538847656,31.1168679023438],[110.742850371094,31.1200759101563],[110.7755871875,31.0947048164063],[110.822345,31.1143434882813],[110.861429472656,31.0979274726562],[110.907345,31.0938430000001],[110.890784941406,31.0685451484375],[110.904320097656,31.058843],[110.885694609375,31.045493390625],[110.872965117188,31.0277321601563],[110.853858671875,31.0315065742188],[110.851097441406,31.0175270820312],[110.861519804688,30.9780178046875],[110.876868925781,30.940669171875],[110.853392363281,30.923843],[110.878995390625,30.905493390625],[110.891519804688,30.8880178046876],[110.97625125,30.8663185859375],[110.996431914063,30.8345290351563],[110.991356230469,30.808843],[110.996532011719,30.782661359375],[110.982681914063,30.7467555976563],[110.953170195313,30.7280178046875],[110.927345,30.723843],[110.91052859375,30.71737815625],[110.891890898438,30.7406520820313],[110.870584746094,30.7380031562501],[110.873016386719,30.7184377265626],[110.834937773438,30.6708254218751],[110.81834109375,30.7102101875001],[110.799578886719,30.7078762031251],[110.782899199219,30.6682888007813],[110.741790800781,30.6593971992188],[110.732345,30.636977765625],[110.650272246094,30.6471852851563],[110.65302859375,30.6693483710938],[110.601790800781,30.6882888007812],[110.591082792969,30.7137013984376],[110.593023710938,30.7292971015625],[110.580535917969,30.7392971015626],[110.584127226563,30.7681764960938],[110.573934355469,30.7782888007813],[110.506480742188,30.7386403632813],[110.457345,30.733843],[110.434539824219,30.7501882148438],[110.423170195313,30.7796681953125],[110.392454863281,30.7880178046875],[110.353170195313,30.7580178046875],[110.325289335938,30.7496681953125],[110.313170195313,30.7765163398438],[110.33341921875,30.8084108710937],[110.329381132813,30.828843],[110.353170195313,30.8380178046875],[110.391519804688,30.8696681953126],[110.434862089844,30.8811037421875],[110.425963164063,30.9261428046875],[110.443389921875,30.9685549140626],[110.433873320313,31.0167189765626],[110.474600859375,31.032426984375],[110.465574980469,31.0781008125],[110.503170195313,31.0880178046875],[110.511519804688,31.1096681953125],[110.528995390625,31.122192609375],[110.537345,31.133843],[110.586263457031,31.1218263984375],[110.603856230469,31.148843],[110.586319609375,31.1757765937501],[110.639444609375,31.1922438789063]]]]}},{"type":"Feature","properties":{"name":"猇亭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.497345,30.543843],[111.506441679688,30.5068044257813],[111.491673613281,30.5101149726563],[111.483016386719,30.4975710273438],[111.471636992188,30.500122296875],[111.453260527344,30.4679274726563],[111.447345,30.463843],[111.441429472656,30.4679274726563],[111.433260527344,30.4897585273438],[111.404151640625,30.5273171210938],[111.393260527344,30.5697585273438],[111.387345,30.583843],[111.377345,30.603843],[111.393985625,30.607202375],[111.447345,30.6338430000001],[111.482154570313,30.5586525703126],[111.492535429688,30.5490334296876],[111.497345,30.543843]]]]}},{"type":"Feature","properties":{"name":"长阳土家族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.287345,30.4838430000001],[111.275152617188,30.4804201484375],[111.283922148438,30.4716506171875],[111.341429472656,30.4971266914063],[111.333260527344,30.4579274726563],[111.321429472656,30.4397585273438],[111.313260527344,30.4179274726563],[111.29047,30.409399640625],[111.311429472656,30.3772145820313],[111.297730742188,30.3616408515625],[111.251429472656,30.3497585273438],[111.227345,30.3338430000001],[111.223922148438,30.3460353828126],[111.215152617188,30.3372658515625],[111.227345,30.3338430000001],[111.222147246094,30.3151784492188],[111.1657825,30.3235060859376],[111.152542753906,30.2455739570313],[111.13170046875,30.22948753125],[111.12298953125,30.20819846875],[111.107345,30.203843],[111.102899199219,30.2093971992188],[111.071790800781,30.2282888007812],[111.039693632813,30.2739528632812],[111.015516386719,30.2933156562501],[110.962562285156,30.2781935859376],[110.946561308594,30.2801833320313],[110.901282988281,30.2471096015626],[110.862633085938,30.2519167304688],[110.832459746094,30.2696535468751],[110.802899199219,30.2582888007813],[110.768914824219,30.2493971992188],[110.750985136719,30.271782453125],[110.722345,30.2682204414063],[110.692940703125,30.2718776679688],[110.662899199219,30.3093971992188],[110.651790800781,30.3182888007813],[110.636224394531,30.33772971875],[110.551185332031,30.348364484375],[110.567337675781,30.3758425117188],[110.5389465625,30.3985768867188],[110.473267851563,30.4182888007812],[110.439574003906,30.3628151679688],[110.367345,30.313843],[110.35009890625,30.3186452460938],[110.353084746094,30.338843],[110.349078398438,30.3659499335938],[110.373416777344,30.3987770820313],[110.361395292969,30.41870628125],[110.373294707031,30.4489797187501],[110.36103640625,30.469301984375],[110.39298953125,30.47819846875],[110.401832304688,30.4896584296876],[110.423880644531,30.4863991523438],[110.446058378906,30.5151296210937],[110.46298953125,30.5281984687501],[110.47170046875,30.5494875312501],[110.484078398438,30.5590407539063],[110.461522246094,30.5682717109375],[110.464788847656,30.5903786445313],[110.430233183594,30.6170510078126],[110.454735136719,30.657671125],[110.450045195313,30.6894045234375],[110.457345,30.733843],[110.506480742188,30.7386403632813],[110.573934355469,30.7782888007813],[110.584127226563,30.7681764960938],[110.580535917969,30.7392971015626],[110.593023710938,30.7292971015625],[110.591082792969,30.7137013984376],[110.601790800781,30.6882888007812],[110.65302859375,30.6693483710938],[110.650272246094,30.6471852851563],[110.732345,30.636977765625],[110.741790800781,30.6593971992188],[110.782899199219,30.6682888007813],[110.799578886719,30.7078762031251],[110.81834109375,30.7102101875001],[110.834937773438,30.6708254218751],[110.873016386719,30.7184377265626],[110.870584746094,30.7380031562501],[110.891890898438,30.7406520820313],[110.91052859375,30.71737815625],[110.927345,30.723843],[110.927345,30.7138430000001],[110.967345,30.7138430000001],[110.957576933594,30.6905861640625],[110.985091582031,30.6715895820313],[111.014779082031,30.6285915351563],[111.103260527344,30.6197585273438],[111.146395292969,30.6063893867188],[111.174525175781,30.6126955390625],[111.193260527344,30.5997585273438],[111.213717070313,30.5639186835937],[111.237345,30.573843],[111.273851347656,30.5154689765625],[111.292923613281,30.4990358710938],[111.287345,30.4838430000001]]]]}},{"type":"Feature","properties":{"name":"当阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.907345,31.073843],[111.903922148438,31.0860353828125],[111.895152617188,31.0772658515626],[111.913160429688,31.0511794257813],[111.960560332031,31.0618044257813],[111.963465605469,31.0488430000001],[111.960186796875,31.0342116523438],[111.971429472656,31.0179274726562],[112.002359648438,30.9965724921875],[112.011483183594,30.9275295234375],[112.031429472656,30.9319997382813],[112.023260527344,30.8979274726563],[112.010682402344,30.8679787421875],[112.031429472656,30.8379274726563],[112.037345,30.833843],[112.027437773438,30.8139138007813],[112.047345,30.803843],[112.036644316406,30.7823146796875],[112.053985625,30.7604836250001],[112.060845976563,30.685669171875],[112.073795195313,30.6919924140625],[112.077345,30.663843],[112.05740359375,30.653930890625],[112.042345,30.6612844062501],[112.020858183594,30.6507912421875],[112.003985625,30.6172023750001],[111.968345976563,30.5778835273438],[111.999771757813,30.5688137031251],[111.969312773438,30.5076906562501],[111.927345,30.503843],[111.923260527344,30.5197585273438],[111.881102324219,30.5683034492188],[111.886151152344,30.5908180976563],[111.852345,30.58323753125],[111.822345,30.5899636054688],[111.811898222656,30.587622296875],[111.792791777344,30.600063703125],[111.781673613281,30.5975710273438],[111.772847929688,30.6103542304688],[111.739144316406,30.5961989570313],[111.721673613281,30.6001149726563],[111.713260527344,30.5879274726563],[111.696944609375,30.5797585273438],[111.703475371094,30.6088845039063],[111.697345,30.6338430000001],[111.721417265625,30.65046409375],[111.706092558594,30.6679274726563],[111.697345,30.6338430000001],[111.66072390625,30.661176984375],[111.647345,30.643843],[111.632545195313,30.6385329414063],[111.620284453125,30.639262921875],[111.623260527344,30.6891945625],[111.612345,30.6885451484375],[111.60209109375,30.6891555],[111.58455203125,30.66952659375],[111.556951933594,30.7697194648438],[111.572625761719,30.7985622382813],[111.582064238281,30.8517580390625],[111.5520325,30.87858909375],[111.5526575,30.8890969062501],[111.541749296875,30.8988430000001],[111.547345,30.9038430000001],[111.563079863281,30.8995778632813],[111.574469023438,30.8842653632813],[111.593079863281,30.8981081367188],[111.601610136719,30.9095778632813],[111.671610136719,30.9239772773437],[111.663079863281,30.9495778632813],[111.650064726563,30.9592580390625],[111.694986601563,30.968501203125],[111.69048953125,30.9946266914063],[111.709505644531,31.0201930976563],[111.722913847656,31.0178835273438],[111.732074003906,31.030200421875],[111.764730253906,31.0099880195313],[111.761483183594,31.028843],[111.764066191406,31.043843],[111.76048953125,31.0646266914063],[111.771610136719,31.0795778632813],[111.812110625,31.0956716132813],[111.825946074219,31.1304860664063],[111.863304472656,31.1582741523438],[111.8613684375,31.1695119453125],[111.877345,31.173843],[111.897345,31.183843],[111.902345,31.1710353828125],[111.907345,31.183843],[111.921624785156,31.1728224921876],[111.939049101563,31.1302468085938],[111.954158964844,31.1185817695313],[111.92298953125,31.07819846875],[111.907345,31.073843]]],[[[111.907345,31.183843],[111.897345,31.183843],[111.902345,31.1966506171875],[111.907345,31.183843]]]]}},{"type":"Feature","properties":{"name":"点军区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.282064238281,30.6885622382813],[111.377345,30.603843],[111.387345,30.583843],[111.371248808594,30.5799391914063],[111.326112089844,30.5601467109376],[111.313441191406,30.5799391914063],[111.28650515625,30.5971828437501],[111.237345,30.573843],[111.213717070313,30.5639186835937],[111.193260527344,30.5997585273438],[111.174525175781,30.6126955390625],[111.146395292969,30.6063893867188],[111.103260527344,30.6197585273438],[111.014779082031,30.6285915351563],[110.985091582031,30.6715895820313],[110.957576933594,30.6905861640625],[110.967345,30.7138430000001],[111.014276152344,30.7269118476563],[111.07170046875,30.74948753125],[111.11298953125,30.7581984687501],[111.14170046875,30.7694875312501],[111.207345,30.773843],[111.244268828125,30.7704567695313],[111.277252226563,30.7537721992188],[111.259823027344,30.7187111640625],[111.270704375,30.6972023750001],[111.277345,30.693843],[111.282064238281,30.6885622382813]]]]}},{"type":"Feature","properties":{"name":"五峰土家族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.692940703125,30.2718776679688],[110.722345,30.2682204414063],[110.750985136719,30.271782453125],[110.768914824219,30.2493971992188],[110.802899199219,30.2582888007813],[110.832459746094,30.2696535468751],[110.862633085938,30.2519167304688],[110.901282988281,30.2471096015626],[110.946561308594,30.2801833320313],[110.962562285156,30.2781935859376],[111.015516386719,30.2933156562501],[111.039693632813,30.2739528632812],[111.071790800781,30.2282888007812],[111.102899199219,30.2093971992188],[111.107345,30.203843],[111.113155546875,30.1684743476563],[111.09298953125,30.135044171875],[111.13298953125,30.13819846875],[111.18052859375,30.1568874335938],[111.26298953125,30.13948753125],[111.272110625,30.1276686835937],[111.306143828125,30.1481984687501],[111.33298953125,30.1294875312501],[111.347345,30.1038430000001],[111.34298953125,30.09819846875],[111.323065214844,30.0828224921875],[111.309920683594,30.0507009101563],[111.292345,30.0481032539063],[111.277047148438,30.0503639960938],[111.237345,30.043843],[111.11197390625,30.0484719062501],[110.922642851563,30.0655275703125],[110.911690703125,30.1137306953125],[110.75318484375,30.12847190625],[110.74271609375,30.0484719062501],[110.708626738281,30.0332595039063],[110.654754667969,30.0754494453125],[110.592547636719,30.0584255195313],[110.577345,30.0596462226563],[110.562345,30.0584401679688],[110.527491484375,30.0612429023438],[110.491214628906,30.0479201484375],[110.492772246094,30.0285182929687],[110.487345,30.0238430000001],[110.447511015625,30.0019777656251],[110.423170195313,29.9680178046876],[110.379378691406,29.9564650703126],[110.361912871094,29.9599172187501],[110.338031035156,29.9447560859375],[110.300054960938,29.9522585273438],[110.305308867188,29.9788430000001],[110.300125761719,30.0050759101563],[110.313367949219,30.04866721875],[110.311234160156,30.0594631171875],[110.323455839844,30.0682228828126],[110.321234160156,30.0794631171875],[110.341297636719,30.0938430000001],[110.320369902344,30.108843],[110.346712675781,30.1277248359375],[110.291226835938,30.1581789375],[110.293455839844,30.1694631171875],[110.266417265625,30.188843],[110.300238066406,30.2130837226563],[110.261519804688,30.2280178046875],[110.257345,30.233843],[110.261829863281,30.2495290351563],[110.287345,30.2463552070313],[110.312345,30.2494655585938],[110.332117949219,30.2470046210938],[110.362569609375,30.2971388984375],[110.367345,30.313843],[110.439574003906,30.3628151679688],[110.473267851563,30.4182888007812],[110.5389465625,30.3985768867188],[110.567337675781,30.3758425117188],[110.551185332031,30.348364484375],[110.636224394531,30.33772971875],[110.651790800781,30.3182888007813],[110.662899199219,30.3093971992188],[110.692940703125,30.2718776679688]]]]}},{"type":"Feature","properties":{"name":"伍家岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.357345,30.693843],[111.404000273438,30.6750514960938],[111.400282011719,30.6498854804688],[111.416951933594,30.6474221015625],[111.444810820313,30.6835158515625],[111.463822050781,30.6688430000001],[111.45170046875,30.6594875312501],[111.447345,30.6338430000001],[111.393985625,30.607202375],[111.377345,30.603843],[111.282064238281,30.6885622382813],[111.277345,30.693843],[111.317345,30.6872731757813],[111.357345,30.693843]]]]}},{"type":"Feature","properties":{"name":"西陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.283260527344,30.7697585273438],[111.29435671875,30.7536891914063],[111.331673613281,30.762055890625],[111.341429472656,30.7479274726563],[111.363638945313,30.7396169257813],[111.361224394531,30.728843],[111.364989042969,30.7120436835938],[111.357345,30.693843],[111.317345,30.6872731757813],[111.277345,30.693843],[111.270704375,30.6972023750001],[111.259823027344,30.7187111640625],[111.277252226563,30.7537721992188],[111.244268828125,30.7704567695313],[111.207345,30.773843],[111.221781035156,30.8004030585938],[111.263260527344,30.7897585273438],[111.271429472656,30.7779274726563],[111.283260527344,30.7697585273438]]]]}},{"type":"Feature","properties":{"name":"兴山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.053565703125,31.5083962226563],[111.033260527344,31.4772145820313],[111.041429472656,31.4479274726563],[111.077022734375,31.438794171875],[111.087345,31.423843],[111.082064238281,31.4191237617188],[111.063778105469,31.3986598945313],[111.1126575,31.3390871406251],[111.111929960938,31.3268752265625],[111.09146609375,31.30858909375],[111.092655058594,31.2886428046875],[111.081597929688,31.2578224921876],[111.110147734375,31.2052834296875],[111.092064238281,31.1891237617188],[111.082625761719,31.1685622382813],[111.062064238281,31.1591237617188],[111.052625761719,31.1485622382813],[111.002030058594,31.1291115546875],[111.002650175781,31.1187136054688],[110.99783328125,31.0891237617187],[110.926168242188,31.1280666328125],[110.912625761719,31.0985622382813],[110.907345,31.0938430000001],[110.861429472656,31.0979274726562],[110.822345,31.1143434882813],[110.7755871875,31.0947048164063],[110.742850371094,31.1200759101563],[110.728538847656,31.1168679023438],[110.735233183594,31.1467287421875],[110.710885039063,31.1841213203125],[110.667020292969,31.1742873359375],[110.639444609375,31.1922438789063],[110.586319609375,31.1757765937501],[110.603856230469,31.148843],[110.586263457031,31.1218263984375],[110.537345,31.133843],[110.511429472656,31.1479274726563],[110.493260527344,31.1797585273438],[110.468983183594,31.188843],[110.476434355469,31.2220900703126],[110.49422,31.249399640625],[110.460513945313,31.2620119453125],[110.425328398438,31.2849245429688],[110.437345,31.333843],[110.47271609375,31.3384719062501],[110.494212675781,31.3727907539063],[110.527769804688,31.31921409375],[110.565135527344,31.3291115546875],[110.561917753906,31.3691677070313],[110.57271609375,31.3784719062501],[110.586766386719,31.4251369453125],[110.610845976563,31.4790993476563],[110.714320097656,31.4896535468751],[110.739742460938,31.546626203125],[110.795982695313,31.5511452460938],[110.82271609375,31.53921409375],[110.847769804688,31.49921409375],[110.87271609375,31.51847190625],[110.88197390625,31.5292140937501],[110.90271609375,31.53847190625],[110.920330839844,31.5589162421875],[110.947345,31.563843],[110.973892851563,31.5749929023437],[111.035767851563,31.5591139960938],[111.031073027344,31.5381716132812],[111.04978640625,31.5252516914063],[111.053565703125,31.5083962226563]],[[111.035152617188,31.4272658515625],[111.047345,31.423843],[111.043922148438,31.4360353828125],[111.035152617188,31.4272658515625]]]]}},{"type":"Feature","properties":{"name":"夷陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.268043242188,31.4492629218751],[111.255225859375,31.3920851875001],[111.303260527344,31.3797585273438],[111.315513945313,31.3620119453125],[111.327345,31.3538430000001],[111.334002714844,31.3361257148438],[111.284410429688,31.3411794257813],[111.271803007813,31.319165265625],[111.272886992188,31.3085207343751],[111.2615246875,31.2886794257813],[111.272806425781,31.2793044257813],[111.281883574219,31.2683815742188],[111.304078398438,31.2587526679687],[111.255467558594,31.2444899726563],[111.250257597656,31.1933766914063],[111.352896757813,31.1492678046875],[111.351790800781,31.1384133125001],[111.422240019531,31.1120265937501],[111.450394316406,31.0781349921875],[111.478704863281,31.0810207343751],[111.493072539063,31.0690846992188],[111.480687285156,31.0361257148437],[111.521685820313,31.0403054023438],[111.523363066406,31.023843],[111.521834746094,31.008843],[111.523873320313,30.988843],[111.521326933594,30.963843],[111.522855253906,30.948843],[111.521800566406,30.9384938789063],[111.547345,30.9038430000001],[111.541749296875,30.8988430000001],[111.5526575,30.8890969062501],[111.5520325,30.87858909375],[111.582064238281,30.8517580390625],[111.572625761719,30.7985622382813],[111.556951933594,30.7697194648438],[111.58455203125,30.66952659375],[111.60209109375,30.6891555],[111.612345,30.6885451484375],[111.623260527344,30.6891945625],[111.620284453125,30.639262921875],[111.632545195313,30.6385329414063],[111.647345,30.643843],[111.658519316406,30.6166530585937],[111.594232207031,30.5902346015625],[111.541519804688,30.5796681953125],[111.5201575,30.5498610664063],[111.497345,30.543843],[111.492535429688,30.5490334296876],[111.482154570313,30.5586525703126],[111.447345,30.6338430000001],[111.45170046875,30.6594875312501],[111.463822050781,30.6688430000001],[111.444810820313,30.6835158515625],[111.416951933594,30.6474221015625],[111.400282011719,30.6498854804688],[111.404000273438,30.6750514960938],[111.357345,30.693843],[111.364989042969,30.7120436835938],[111.361224394531,30.728843],[111.363638945313,30.7396169257813],[111.341429472656,30.7479274726563],[111.331673613281,30.762055890625],[111.29435671875,30.7536891914063],[111.283260527344,30.7697585273438],[111.271429472656,30.7779274726563],[111.263260527344,30.7897585273438],[111.221781035156,30.8004030585938],[111.207345,30.773843],[111.14170046875,30.7694875312501],[111.11298953125,30.7581984687501],[111.07170046875,30.74948753125],[111.014276152344,30.7269118476563],[110.967345,30.7138430000001],[110.927345,30.7138430000001],[110.927345,30.723843],[110.953170195313,30.7280178046875],[110.982681914063,30.7467555976563],[110.996532011719,30.782661359375],[110.991356230469,30.808843],[110.996431914063,30.8345290351563],[110.97625125,30.8663185859375],[110.891519804688,30.8880178046876],[110.878995390625,30.905493390625],[110.853392363281,30.923843],[110.876868925781,30.940669171875],[110.861519804688,30.9780178046875],[110.851097441406,31.0175270820312],[110.853858671875,31.0315065742188],[110.872965117188,31.0277321601563],[110.885694609375,31.045493390625],[110.904320097656,31.058843],[110.890784941406,31.0685451484375],[110.907345,31.0938430000001],[110.912625761719,31.0985622382813],[110.926168242188,31.1280666328125],[110.99783328125,31.0891237617187],[111.002650175781,31.1187136054688],[111.002030058594,31.1291115546875],[111.052625761719,31.1485622382813],[111.062064238281,31.1591237617188],[111.082625761719,31.1685622382813],[111.092064238281,31.1891237617188],[111.110147734375,31.2052834296875],[111.081597929688,31.2578224921876],[111.092655058594,31.2886428046875],[111.09146609375,31.30858909375],[111.111929960938,31.3268752265625],[111.1126575,31.3390871406251],[111.063778105469,31.3986598945313],[111.082064238281,31.4191237617188],[111.087345,31.423843],[111.102847929688,31.4173317695312],[111.118992949219,31.4407155585937],[111.140230742188,31.4359548164063],[111.161898222656,31.450063703125],[111.187669707031,31.4442873359375],[111.223973417969,31.4679274726563],[111.268043242188,31.4492629218751]]]]}},{"type":"Feature","properties":{"name":"宜都市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.593338652344,30.1765676093751],[111.597345,30.153843],[111.584346953125,30.1594045234375],[111.593338652344,30.1765676093751]]],[[[111.227345,30.3338430000001],[111.215152617188,30.3372658515625],[111.223922148438,30.3460353828126],[111.227345,30.3338430000001]]],[[[111.287345,30.4838430000001],[111.283922148438,30.4716506171875],[111.275152617188,30.4804201484375],[111.287345,30.4838430000001]]],[[[111.227345,30.3338430000001],[111.251429472656,30.3497585273438],[111.297730742188,30.3616408515625],[111.311429472656,30.3772145820313],[111.29047,30.409399640625],[111.313260527344,30.4179274726563],[111.321429472656,30.4397585273438],[111.333260527344,30.4579274726563],[111.341429472656,30.4971266914063],[111.287345,30.4838430000001],[111.292923613281,30.4990358710938],[111.273851347656,30.5154689765625],[111.237345,30.573843],[111.28650515625,30.5971828437501],[111.313441191406,30.5799391914063],[111.326112089844,30.5601467109376],[111.371248808594,30.5799391914063],[111.387345,30.583843],[111.393260527344,30.5697585273438],[111.404151640625,30.5273171210938],[111.433260527344,30.4897585273438],[111.441429472656,30.4679274726563],[111.447345,30.463843],[111.434776640625,30.4062258125],[111.521593046875,30.4132009101563],[111.524117460938,30.3817946601563],[111.496514921875,30.3162526679688],[111.56271609375,30.25921409375],[111.567345,30.2538430000001],[111.571429472656,30.2479274726563],[111.601185332031,30.2367946601563],[111.575513945313,30.1756740546875],[111.563116484375,30.1273708320313],[111.51343875,30.0950197578125],[111.501673613281,30.1120558906251],[111.466617460938,30.1041970039062],[111.387408476563,30.1236525703125],[111.363260527344,30.1079274726563],[111.347345,30.1038430000001],[111.33298953125,30.1294875312501],[111.306143828125,30.1481984687501],[111.272110625,30.1276686835937],[111.26298953125,30.13948753125],[111.18052859375,30.1568874335938],[111.13298953125,30.13819846875],[111.09298953125,30.135044171875],[111.113155546875,30.1684743476563],[111.107345,30.203843],[111.12298953125,30.20819846875],[111.13170046875,30.22948753125],[111.152542753906,30.2455739570313],[111.1657825,30.3235060859376],[111.222147246094,30.3151784492188],[111.227345,30.3338430000001]]]]}},{"type":"Feature","properties":{"name":"远安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.743096953125,31.3587599921875],[111.731478300781,31.2983327460938],[111.76298953125,31.27948753125],[111.771832304688,31.2680275703125],[111.7827746875,31.2696462226563],[111.823253203125,31.2396340156251],[111.857345,31.233843],[111.873568144531,31.2092946601563],[111.871214628906,31.1988014960938],[111.877345,31.173843],[111.8613684375,31.1695119453125],[111.863304472656,31.1582741523438],[111.825946074219,31.1304860664063],[111.812110625,31.0956716132813],[111.771610136719,31.0795778632813],[111.76048953125,31.0646266914063],[111.764066191406,31.043843],[111.761483183594,31.028843],[111.764730253906,31.0099880195313],[111.732074003906,31.030200421875],[111.722913847656,31.0178835273438],[111.709505644531,31.0201930976563],[111.69048953125,30.9946266914063],[111.694986601563,30.968501203125],[111.650064726563,30.9592580390625],[111.663079863281,30.9495778632813],[111.671610136719,30.9239772773437],[111.601610136719,30.9095778632813],[111.593079863281,30.8981081367188],[111.574469023438,30.8842653632813],[111.563079863281,30.8995778632813],[111.547345,30.9038430000001],[111.521800566406,30.9384938789063],[111.522855253906,30.948843],[111.521326933594,30.963843],[111.523873320313,30.988843],[111.521834746094,31.008843],[111.523363066406,31.023843],[111.521685820313,31.0403054023438],[111.480687285156,31.0361257148437],[111.493072539063,31.0690846992188],[111.478704863281,31.0810207343751],[111.450394316406,31.0781349921875],[111.422240019531,31.1120265937501],[111.351790800781,31.1384133125001],[111.352896757813,31.1492678046875],[111.250257597656,31.1933766914063],[111.255467558594,31.2444899726563],[111.304078398438,31.2587526679687],[111.281883574219,31.2683815742188],[111.272806425781,31.2793044257813],[111.2615246875,31.2886794257813],[111.272886992188,31.3085207343751],[111.271803007813,31.319165265625],[111.284410429688,31.3411794257813],[111.334002714844,31.3361257148438],[111.327345,31.3538430000001],[111.387337675781,31.3613478828125],[111.397345,31.373843],[111.429056425781,31.35608909375],[111.433084746094,31.328843],[111.430282011719,31.3098854804688],[111.442345,31.3081032539063],[111.474439726563,31.31284690625],[111.51248171875,31.2978932929688],[111.53170046875,31.3094875312501],[111.56298953125,31.31819846875],[111.616346464844,31.363423078125],[111.667345,31.3558864570313],[111.692345,31.3595827460938],[111.710767851563,31.356860578125],[111.740709257813,31.3749196601563],[111.743096953125,31.3587599921875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"保康县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.043922148438,31.4360353828125],[111.047345,31.423843],[111.035152617188,31.4272658515625],[111.043922148438,31.4360353828125]]],[[[110.983338652344,31.946567609375],[110.987345,31.9238430000001],[110.974346953125,31.9294045234375],[110.983338652344,31.946567609375]]],[[[111.077345,32.013843],[111.08345828125,32.0017580390626],[111.113985625,32.017202375],[111.120704375,32.030483625],[111.147345,32.033843],[111.15298953125,32.0294875312501],[111.167977324219,32.0100685859375],[111.280660429688,32.0267214179688],[111.303160429688,32.0093556953126],[111.300203886719,31.9893556953125],[111.31298953125,31.97948753125],[111.343980742188,31.9349196601563],[111.371954375,31.9180471015625],[111.386737089844,31.9202297187501],[111.41298953125,31.9094875312501],[111.426058378906,31.8925563789063],[111.457345,31.883843],[111.442806425781,31.8483815742188],[111.426871367188,31.8205544257813],[111.465201445313,31.803930890625],[111.482806425781,31.7893044257813],[111.491883574219,31.7783815742188],[111.550123320313,31.7300026679688],[111.492806425781,31.7172927070313],[111.501883574219,31.6983815742188],[111.540401640625,31.6816750312501],[111.511883574219,31.6693044257813],[111.502806425781,31.6083815742188],[111.485306425781,31.593843],[111.511883574219,31.5717678046875],[111.500462675781,31.5675051093751],[111.452806425781,31.5723635078126],[111.471883574219,31.5183815742188],[111.487047148438,31.4919020820313],[111.460697050781,31.470014875],[111.463450957031,31.4429958320313],[111.431793242188,31.4292653632813],[111.432896757813,31.4184206367188],[111.411793242188,31.4092653632813],[111.413834257813,31.3892336250001],[111.401883574219,31.3793044257813],[111.397345,31.373843],[111.387337675781,31.3613478828125],[111.327345,31.3538430000001],[111.315513945313,31.3620119453125],[111.303260527344,31.3797585273438],[111.255225859375,31.3920851875001],[111.268043242188,31.4492629218751],[111.223973417969,31.4679274726563],[111.187669707031,31.4442873359375],[111.161898222656,31.450063703125],[111.140230742188,31.4359548164063],[111.118992949219,31.4407155585937],[111.102847929688,31.4173317695312],[111.087345,31.423843],[111.077022734375,31.438794171875],[111.041429472656,31.4479274726563],[111.033260527344,31.4772145820313],[111.053565703125,31.5083962226563],[111.04978640625,31.5252516914063],[111.031073027344,31.5381716132812],[111.035767851563,31.5591139960938],[110.973892851563,31.5749929023437],[110.947345,31.563843],[110.934559355469,31.5963649726563],[110.97818484375,31.6552077460938],[110.888157988281,31.6705007148438],[110.861829863281,31.7426613593751],[110.84170046875,31.75819846875],[110.83298953125,31.76948753125],[110.801698027344,31.7822927070313],[110.768631621094,31.8251296210938],[110.757345,31.833843],[110.761610136719,31.8395778632813],[110.773079863281,31.8481081367188],[110.782913847656,31.8613283515626],[110.849700957031,31.849829328125],[110.884107695313,31.8711232734376],[110.902345,31.8679811835938],[110.93623171875,31.8738161445313],[110.964107695313,31.8565627265625],[110.995465117188,31.8619631171875],[110.988167753906,31.8195778632813],[111.0103528125,31.832270734375],[111.014329863281,31.8553737617188],[111.001451445313,31.8986476875],[111.003206816406,31.908843],[111.000623808594,31.9238430000001],[111.006649199219,31.958843],[110.996839628906,32.01581565625],[111.048245878906,32.0069655585938],[111.077345,32.013843]],[[111.053260527344,31.9734059882813],[111.097345,31.943843],[111.093260527344,31.9597585273438],[111.072877226563,31.9910622382812],[111.053260527344,31.9734059882813]]],[[[111.057345,32.073843],[111.053922148438,32.0616506171876],[111.045152617188,32.0704201484375],[111.057345,32.073843]]],[[[111.077345,32.013843],[111.064969511719,32.0387404609375],[111.079888945313,32.06929221875],[111.057345,32.073843],[111.06263796875,32.0928517890625],[111.127345,32.103843],[111.127345,32.053843],[111.123985625,32.047202375],[111.100704375,32.040483625],[111.09062625,32.02056175],[111.077345,32.013843]]]]}},{"type":"Feature","properties":{"name":"樊城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.874586210938,32.1686525703126],[111.899947539063,32.1392140937501],[111.90275515625,32.1587380195313],[111.901011992188,32.1804225898438],[111.936705351563,32.1551174140625],[111.962066679688,32.1692678046875],[111.972345,32.1684401679687],[111.982669707031,32.1692702460937],[111.9924621875,32.1579030585938],[112.002120390625,32.179546125],[112.022066679688,32.1684181953125],[112.032623320313,32.1692678046875],[112.053326445313,32.1577175117188],[112.072345,32.1592458320313],[112.082345,32.1584401679688],[112.102345,32.1600490546876],[112.11197390625,32.1384719062501],[112.14271609375,32.1292140937501],[112.167345,32.063843],[112.157706328125,32.0301320625],[112.122345,32.0257326484376],[112.082345,32.030708234375],[112.050985136719,32.0268093085938],[112.026217070313,32.057739484375],[112.012345,32.0594655585938],[112.002345,32.0582204414063],[111.927567167969,32.0675221992188],[111.867345,32.053843],[111.841429472656,32.0579274726563],[111.806173125,32.0852516914062],[111.793260527344,32.1197585273438],[111.770440703125,32.1548000312501],[111.751429472656,32.1679274726563],[111.747345,32.173843],[111.751883574219,32.1793044257812],[111.77150515625,32.1956056953125],[111.773834257813,32.218452375],[111.742908964844,32.2441432929688],[111.797345,32.253843],[111.80197390625,32.2484719062501],[111.824324980469,32.2384963203125],[111.821419707031,32.2023268867188],[111.84197390625,32.1784719062501],[111.874586210938,32.1686525703126]]]]}},{"type":"Feature","properties":{"name":"谷城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.227345,32.2638430000001],[111.239537382813,32.2672658515625],[111.230767851563,32.2760353828125],[111.21406375,32.27056175],[111.207345,32.283843],[111.221624785156,32.2948635078126],[111.232735625,32.3220143867188],[111.279205351563,32.3500466132813],[111.296951933594,32.3474221015626],[111.327464628906,32.3869533515625],[111.36298953125,32.40819846875],[111.372857695313,32.4209841132812],[111.411431914063,32.4152834296875],[111.475638457031,32.4415627265626],[111.471522246094,32.4694142890625],[111.49298953125,32.4781984687501],[111.50170046875,32.4894875312501],[111.527345,32.493843],[111.605108671875,32.4578420234375],[111.632154570313,32.4286525703126],[111.667860136719,32.4055959296876],[111.622535429688,32.346489484375],[111.632154570313,32.3186525703126],[111.680511503906,32.3033425117188],[111.692535429688,32.2690334296876],[111.704425078125,32.1820363593751],[111.747345,32.173843],[111.751429472656,32.1679274726563],[111.770440703125,32.1548000312501],[111.793260527344,32.1197585273438],[111.806173125,32.0852516914062],[111.841429472656,32.0579274726563],[111.867345,32.053843],[111.860189238281,32.0259645820313],[111.834823027344,32.0316506171875],[111.817135039063,31.9895339179688],[111.843260527344,31.9797585273437],[111.847345,31.9638430000001],[111.7435559375,31.9581618476563],[111.683817167969,31.9790993476563],[111.672345,31.9786452460938],[111.660152617188,31.9791286445313],[111.622535429688,31.9990334296876],[111.551412382813,32.0186525703125],[111.532535429688,31.9786525703125],[111.512154570313,31.9690334296875],[111.492535429688,31.9368312812501],[111.514771757813,31.8948073554688],[111.457345,31.883843],[111.426058378906,31.8925563789063],[111.41298953125,31.9094875312501],[111.386737089844,31.9202297187501],[111.371954375,31.9180471015625],[111.343980742188,31.9349196601563],[111.31298953125,31.97948753125],[111.300203886719,31.9893556953125],[111.303160429688,32.0093556953126],[111.280660429688,32.0267214179688],[111.167977324219,32.0100685859375],[111.15298953125,32.0294875312501],[111.147345,32.033843],[111.14062625,32.04712425],[111.127345,32.053843],[111.127345,32.103843],[111.131883574219,32.1193044257813],[111.201473417969,32.1347365546875],[111.221883574219,32.1593044257813],[111.232894316406,32.168452375],[111.231803007813,32.179165265625],[111.251663847656,32.213843],[111.231883574219,32.2483815742188],[111.227345,32.2638430000001]]]]}},{"type":"Feature","properties":{"name":"老河口市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.627843046875,32.6107204414063],[111.642345,32.6078542304688],[111.693651152344,32.617993390625],[111.733170195313,32.5896681953126],[111.756761503906,32.5567507148438],[111.772965117188,32.5599538398438],[111.781519804688,32.5480178046875],[111.853170195313,32.5296681953125],[111.874671660156,32.4996681953125],[111.913170195313,32.5080178046875],[111.94310671875,32.5270241523438],[111.975355253906,32.4714015937501],[112.007345,32.453843],[111.971219511719,32.3999684882813],[111.928922148438,32.3891139960938],[111.934354277344,32.3648830390625],[111.911917753906,32.3255763984375],[111.883814726563,32.3318752265626],[111.83687625,32.31431175],[111.823260527344,32.2779274726562],[111.811429472656,32.2697585273438],[111.803260527344,32.2579274726563],[111.797345,32.253843],[111.742908964844,32.2441432929688],[111.773834257813,32.218452375],[111.77150515625,32.1956056953125],[111.751883574219,32.1793044257812],[111.747345,32.173843],[111.704425078125,32.1820363593751],[111.692535429688,32.2690334296876],[111.680511503906,32.3033425117188],[111.632154570313,32.3186525703126],[111.622535429688,32.346489484375],[111.667860136719,32.4055959296876],[111.632154570313,32.4286525703126],[111.605108671875,32.4578420234375],[111.527345,32.493843],[111.550704375,32.540483625],[111.573985625,32.5672023750001],[111.577345,32.593843],[111.582323027344,32.6002907539063],[111.62170046875,32.62948753125],[111.637345,32.633843],[111.627843046875,32.6107204414063]]]]}},{"type":"Feature","properties":{"name":"南漳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.660152617188,31.9791286445313],[111.672345,31.9786452460938],[111.683817167969,31.9790993476563],[111.7435559375,31.9581618476563],[111.847345,31.9638430000001],[111.852913847656,31.9563576484376],[111.890640898438,31.9628542304687],[111.907454863281,31.9402541328125],[111.962913847656,31.9498024726563],[111.982493925781,31.9234767890625],[112.037672148438,31.8909841132813],[112.045220976563,31.8471388984375],[112.021385527344,31.8294118476563],[112.023304472656,31.8182741523438],[112.011610136719,31.8095778632812],[112.007345,31.803843],[112.000521269531,31.7981740546875],[112.041883574219,31.7483815742188],[112.058270292969,31.7347682929688],[112.071883574219,31.7183815742188],[112.092806425781,31.7093044257813],[112.101883574219,31.6783815742188],[112.112882109375,31.6491091132813],[112.110882597656,31.6295021796875],[112.122345,31.6283327460938],[112.134971953125,31.6296193671876],[112.131803007813,31.598520734375],[112.151883574219,31.5634596992188],[112.091556425781,31.5473952460938],[112.055042753906,31.5511159492188],[112.032806425781,31.5383815742188],[112.011883574219,31.5293044257812],[112.002806425781,31.5183815742188],[111.971793242188,31.4992507148438],[111.974774199219,31.470014875],[111.956419707031,31.4547682929688],[111.947345,31.443843],[111.940704375,31.430483625],[111.933985625,31.3472023750001],[111.916644316406,31.3253713203125],[111.940704375,31.276968],[111.925494414063,31.2548635078125],[111.905474882813,31.2646413398438],[111.873985625,31.237202375],[111.857345,31.233843],[111.823253203125,31.2396340156251],[111.7827746875,31.2696462226563],[111.771832304688,31.2680275703125],[111.76298953125,31.27948753125],[111.731478300781,31.2983327460938],[111.743096953125,31.3587599921875],[111.740709257813,31.3749196601563],[111.710767851563,31.356860578125],[111.692345,31.3595827460938],[111.667345,31.3558864570313],[111.616346464844,31.363423078125],[111.56298953125,31.31819846875],[111.53170046875,31.3094875312501],[111.51248171875,31.2978932929688],[111.474439726563,31.31284690625],[111.442345,31.3081032539063],[111.430282011719,31.3098854804688],[111.433084746094,31.328843],[111.429056425781,31.35608909375],[111.397345,31.373843],[111.401883574219,31.3793044257813],[111.413834257813,31.3892336250001],[111.411793242188,31.4092653632813],[111.432896757813,31.4184206367188],[111.431793242188,31.4292653632813],[111.463450957031,31.4429958320313],[111.460697050781,31.470014875],[111.487047148438,31.4919020820313],[111.471883574219,31.5183815742188],[111.452806425781,31.5723635078126],[111.500462675781,31.5675051093751],[111.511883574219,31.5717678046875],[111.485306425781,31.593843],[111.502806425781,31.6083815742188],[111.511883574219,31.6693044257813],[111.540401640625,31.6816750312501],[111.501883574219,31.6983815742188],[111.492806425781,31.7172927070313],[111.550123320313,31.7300026679688],[111.491883574219,31.7783815742188],[111.482806425781,31.7893044257813],[111.465201445313,31.803930890625],[111.426871367188,31.8205544257813],[111.442806425781,31.8483815742188],[111.457345,31.883843],[111.514771757813,31.8948073554688],[111.492535429688,31.9368312812501],[111.512154570313,31.9690334296875],[111.532535429688,31.9786525703125],[111.551412382813,32.0186525703125],[111.622535429688,31.9990334296876],[111.660152617188,31.9791286445313]]]]}},{"type":"Feature","properties":{"name":"襄城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.209598417969,32.0786525703125],[112.220980253906,32.0026369453126],[112.17287234375,31.9799343085937],[112.159898710938,31.9304274726563],[112.191964140625,31.913462140625],[112.222535429688,31.8990334296875],[112.227345,31.8938430000001],[112.221873808594,31.870610578125],[112.193531523438,31.8476564765625],[112.171158476563,31.8400295234376],[112.153250761719,31.8109670234376],[112.121158476563,31.8000295234376],[112.092672148438,31.7800295234375],[112.041158476563,31.7876564765626],[112.007345,31.803843],[112.011610136719,31.8095778632812],[112.023304472656,31.8182741523438],[112.021385527344,31.8294118476563],[112.045220976563,31.8471388984375],[112.037672148438,31.8909841132813],[111.982493925781,31.9234767890625],[111.962913847656,31.9498024726563],[111.907454863281,31.9402541328125],[111.890640898438,31.9628542304687],[111.852913847656,31.9563576484376],[111.847345,31.9638430000001],[111.843260527344,31.9797585273437],[111.817135039063,31.9895339179688],[111.834823027344,32.0316506171875],[111.860189238281,32.0259645820313],[111.867345,32.053843],[111.927567167969,32.0675221992188],[112.002345,32.0582204414063],[112.012345,32.0594655585938],[112.026217070313,32.057739484375],[112.050985136719,32.0268093085938],[112.082345,32.030708234375],[112.122345,32.0257326484376],[112.157706328125,32.0301320625],[112.167345,32.063843],[112.209598417969,32.0786525703125]]]]}},{"type":"Feature","properties":{"name":"襄州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.437345,32.353843],[112.440767851563,32.3416506171875],[112.449537382813,32.3504201484375],[112.441429472656,32.3597585273438],[112.477345,32.3838430000001],[112.482345,32.3710353828126],[112.487345,32.3838430000001],[112.517345,32.3838430000001],[112.51146609375,32.36855003125],[112.531790800781,32.3522731757813],[112.512899199219,32.3382888007813],[112.49166140625,32.3293410468751],[112.492967558594,32.318843],[112.491666289063,32.3083888984375],[112.50334109375,32.2990431953125],[112.489625273438,32.2757106757813],[112.493248320313,32.2465773750001],[112.462899199219,32.2222731757813],[112.471790800781,32.2082888007812],[112.483211699219,32.199145734375],[112.472899199219,32.1282888007813],[112.455076933594,32.097973859375],[112.531790800781,32.065649640625],[112.522899199219,32.0582888007812],[112.485091582031,32.0423586250001],[112.522899199219,32.0193971992188],[112.536239042969,32.0027370429688],[112.558016386719,31.985298078125],[112.515181914063,31.9266579414063],[112.511722441406,31.898843],[112.512987089844,31.8886818671876],[112.507345,31.863843],[112.461519804688,31.8596681953126],[112.443170195313,31.8480178046875],[112.391944609375,31.83774925],[112.363995390625,31.855493390625],[112.331519804688,31.8680178046875],[112.312777128906,31.87991721875],[112.298670683594,31.8771291328125],[112.259964628906,31.9017018867188],[112.227345,31.8938430000001],[112.222535429688,31.8990334296875],[112.191964140625,31.913462140625],[112.159898710938,31.9304274726563],[112.17287234375,31.9799343085937],[112.220980253906,32.0026369453126],[112.209598417969,32.0786525703125],[112.167345,32.063843],[112.14271609375,32.1292140937501],[112.11197390625,32.1384719062501],[112.102345,32.1600490546876],[112.082345,32.1584401679688],[112.072345,32.1592458320313],[112.053326445313,32.1577175117188],[112.032623320313,32.1692678046875],[112.022066679688,32.1684181953125],[112.002120390625,32.179546125],[111.9924621875,32.1579030585938],[111.982669707031,32.1692702460937],[111.972345,32.1684401679687],[111.962066679688,32.1692678046875],[111.936705351563,32.1551174140625],[111.901011992188,32.1804225898438],[111.90275515625,32.1587380195313],[111.899947539063,32.1392140937501],[111.874586210938,32.1686525703126],[111.84197390625,32.1784719062501],[111.821419707031,32.2023268867188],[111.824324980469,32.2384963203125],[111.80197390625,32.2484719062501],[111.797345,32.253843],[111.803260527344,32.2579274726563],[111.811429472656,32.2697585273438],[111.823260527344,32.2779274726562],[111.83687625,32.31431175],[111.883814726563,32.3318752265626],[111.911917753906,32.3255763984375],[111.934354277344,32.3648830390625],[111.928922148438,32.3891139960938],[111.971219511719,32.3999684882813],[112.007345,32.453843],[112.0437903125,32.4779274726563],[112.063863554688,32.4606130195313],[112.059830351563,32.4426198554688],[112.101429472656,32.4079274726563],[112.123260527344,32.3997585273437],[112.149796171875,32.3824782539062],[112.153616972656,32.3995143867188],[112.133260527344,32.4135671210938],[112.163260527344,32.4097585273438],[112.171571074219,32.3875490546876],[112.202183867188,32.3944118476563],[112.227345,32.3838430000001],[112.235267363281,32.3739479804688],[112.31388796875,32.3270388007813],[112.335369902344,32.3538649726563],[112.361986113281,32.3695095039063],[112.377345,32.3676003242188],[112.392703886719,32.3695095039063],[112.411790800781,32.3582888007813],[112.437345,32.353843]]]]}},{"type":"Feature","properties":{"name":"宜城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.637345,31.763843],[112.633292265625,31.740844953125],[112.624647246094,31.7584084296876],[112.637345,31.763843]]],[[[112.637345,31.763843],[112.640767851563,31.7760353828125],[112.649537382813,31.7672658515625],[112.637345,31.763843]]],[[[112.617345,31.783843],[112.620767851563,31.7960353828126],[112.629537382813,31.7872658515625],[112.617345,31.783843]]],[[[112.617345,31.783843],[112.613985625,31.7572023750001],[112.599617949219,31.7391164375],[112.610704375,31.717202375],[112.625269804688,31.7098342109376],[112.619830351563,31.698696515625],[112.63916140625,31.660483625],[112.665401640625,31.6675856757813],[112.6558215625,31.6872023750001],[112.680064726563,31.6782350898438],[112.690704375,31.657202375],[112.713985625,31.650483625],[112.720704375,31.637202375],[112.727345,31.633843],[112.731815214844,31.6116994453126],[112.747345,31.603843],[112.739398222656,31.5570607734375],[112.715994902344,31.5605202460938],[112.698297148438,31.5468581367188],[112.72170046875,31.4873244453125],[112.712608671875,31.4778029609375],[112.66298953125,31.4994875312501],[112.613150664063,31.5133644843751],[112.586324492188,31.5481227851563],[112.56170046875,31.5581984687501],[112.540218535156,31.5711574531251],[112.501058378906,31.5551296210938],[112.470767851563,31.5368605781251],[112.451805449219,31.5396608710938],[112.429075957031,31.5016579414063],[112.326937285156,31.519009015625],[112.286832304688,31.5432009101563],[112.252345,31.5381032539063],[112.23978640625,31.5399611640625],[112.222579375,31.5176686835938],[112.200648222656,31.5308986640625],[112.181549101563,31.499233625],[112.185169707031,31.4747316718751],[112.14978640625,31.4799611640625],[112.137345,31.463843],[112.082381621094,31.4584377265625],[112.072020292969,31.4592702460938],[112.053963652344,31.4383107734375],[112.037345,31.4396462226563],[112.022066679688,31.4384181953125],[112.000809355469,31.450278546875],[111.947345,31.443843],[111.956419707031,31.4547682929688],[111.974774199219,31.470014875],[111.971793242188,31.4992507148438],[112.002806425781,31.5183815742188],[112.011883574219,31.5293044257812],[112.032806425781,31.5383815742188],[112.055042753906,31.5511159492188],[112.091556425781,31.5473952460938],[112.151883574219,31.5634596992188],[112.131803007813,31.598520734375],[112.134971953125,31.6296193671876],[112.122345,31.6283327460938],[112.110882597656,31.6295021796875],[112.112882109375,31.6491091132813],[112.101883574219,31.6783815742188],[112.092806425781,31.7093044257813],[112.071883574219,31.7183815742188],[112.058270292969,31.7347682929688],[112.041883574219,31.7483815742188],[112.000521269531,31.7981740546875],[112.007345,31.803843],[112.041158476563,31.7876564765626],[112.092672148438,31.7800295234375],[112.121158476563,31.8000295234376],[112.153250761719,31.8109670234376],[112.171158476563,31.8400295234376],[112.193531523438,31.8476564765625],[112.221873808594,31.870610578125],[112.227345,31.8938430000001],[112.259964628906,31.9017018867188],[112.298670683594,31.8771291328125],[112.312777128906,31.87991721875],[112.331519804688,31.8680178046875],[112.363995390625,31.855493390625],[112.391944609375,31.83774925],[112.443170195313,31.8480178046875],[112.461519804688,31.8596681953126],[112.507345,31.863843],[112.558631621094,31.8551296210938],[112.57170046875,31.83819846875],[112.601131621094,31.8261550117188],[112.61170046875,31.7881984687501],[112.617345,31.783843]]]]}},{"type":"Feature","properties":{"name":"枣阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.617345,31.783843],[112.629537382813,31.7872658515625],[112.620767851563,31.7960353828126],[112.61170046875,31.7881984687501],[112.601131621094,31.8261550117188],[112.57170046875,31.83819846875],[112.558631621094,31.8551296210938],[112.507345,31.863843],[112.512987089844,31.8886818671876],[112.511722441406,31.898843],[112.515181914063,31.9266579414063],[112.558016386719,31.985298078125],[112.536239042969,32.0027370429688],[112.522899199219,32.0193971992188],[112.485091582031,32.0423586250001],[112.522899199219,32.0582888007812],[112.531790800781,32.065649640625],[112.455076933594,32.097973859375],[112.472899199219,32.1282888007813],[112.483211699219,32.199145734375],[112.471790800781,32.2082888007812],[112.462899199219,32.2222731757813],[112.493248320313,32.2465773750001],[112.489625273438,32.2757106757813],[112.50334109375,32.2990431953125],[112.491666289063,32.3083888984375],[112.492967558594,32.318843],[112.49166140625,32.3293410468751],[112.512899199219,32.3382888007813],[112.531790800781,32.3522731757813],[112.51146609375,32.36855003125],[112.517345,32.3838430000001],[112.533170195313,32.3880178046875],[112.545162382813,32.404751203125],[112.571519804688,32.3880178046875],[112.663170195313,32.3696681953125],[112.695303984375,32.3564626289063],[112.712633085938,32.359887921875],[112.7582434375,32.3411452460938],[112.771724882813,32.3599538398438],[112.782777128906,32.35776878125],[112.801519804688,32.3696681953125],[112.833170195313,32.3780178046876],[112.844205351563,32.3934157539063],[112.877345,32.3868679023438],[112.907345,32.3927956367188],[112.937345,32.3868679023438],[112.952965117188,32.3899538398438],[112.967503691406,32.3696681953125],[112.983170195313,32.3780178046876],[112.993829375,32.4184255195313],[113.027345,32.4238430000001],[113.043624296875,32.420122296875],[113.053397246094,32.4036330390625],[113.072345,32.3971266914063],[113.102576933594,32.4075075507812],[113.107345,32.373843],[113.102669707031,32.3684157539063],[113.075213652344,32.3706203437501],[113.050738554688,32.349536359375],[113.091363554688,32.314536359375],[113.06197390625,32.2892140937501],[113.05271609375,32.27847190625],[113.019774199219,32.2685524726563],[113.032818632813,32.2087477851563],[113.021925078125,32.1790822578125],[113.022747832031,32.168843],[113.021197539063,32.14956565625],[113.043004179688,32.1188088203125],[112.98537234375,32.0515065742187],[112.981942167969,32.0088430000001],[112.983148222656,31.993843],[112.9819153125,31.9784889960938],[113.03197390625,31.9634181953126],[113.012647734375,31.9484157539063],[113.001998320313,31.9492726875],[112.984058867188,31.9090700507813],[112.959588652344,31.8981496406251],[112.964530058594,31.8366579414063],[112.922669707031,31.8400221992188],[112.884422636719,31.795630109375],[112.864742460938,31.81847190625],[112.84197390625,31.7892140937501],[112.82271609375,31.7584719062501],[112.79197390625,31.74921409375],[112.782020292969,31.7376638007813],[112.752345,31.7400490546876],[112.74271609375,31.7184719062501],[112.73197390625,31.69921409375],[112.727345,31.633843],[112.720704375,31.637202375],[112.713985625,31.650483625],[112.690704375,31.657202375],[112.680064726563,31.6782350898438],[112.6558215625,31.6872023750001],[112.665401640625,31.6675856757813],[112.63916140625,31.660483625],[112.619830351563,31.698696515625],[112.625269804688,31.7098342109376],[112.610704375,31.717202375],[112.599617949219,31.7391164375],[112.613985625,31.7572023750001],[112.617345,31.783843]],[[112.637345,31.763843],[112.624647246094,31.7584084296876],[112.633292265625,31.740844953125],[112.649537382813,31.7672658515625],[112.640767851563,31.7760353828125],[112.637345,31.763843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鄂城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.051553984375,30.3984401679688],[115.077735625,30.3550417304688],[115.084644804688,30.3082814765625],[115.077345,30.263843],[115.017681914063,30.248813703125],[115.007345,30.233843],[114.995694609375,30.2169704414063],[114.982066679688,30.2200270820313],[114.952584257813,30.2076442695313],[114.927345,30.2138430000001],[114.919176054688,30.2256740546876],[114.87142703125,30.2379274726563],[114.857345,30.243843],[114.865924101563,30.2787624335937],[114.837257109375,30.2894899726563],[114.82326296875,30.3097585273438],[114.7870715625,30.3179274726563],[114.77033328125,30.2936891914063],[114.732271757813,30.30222190625],[114.717345,30.3238430000001],[114.724796171875,30.3388283515626],[114.71990359375,30.348843],[114.729888945313,30.3692922187501],[114.707345,30.373843],[114.719693632813,30.3954982734375],[114.751461210938,30.3835231757813],[114.761461210938,30.4010622382813],[114.789693632813,30.3904201484375],[114.8009778125,30.4102126289063],[114.8237121875,30.4174733710937],[114.8409778125,30.4302126289063],[114.857345,30.433843],[114.892437773438,30.4121486640625],[115.007345,30.4038430000001],[115.051553984375,30.3984401679688]]]]}},{"type":"Feature","properties":{"name":"华容区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.827574492188,30.4744753242188],[114.857345,30.433843],[114.8409778125,30.4302126289063],[114.8237121875,30.4174733710937],[114.8009778125,30.4102126289063],[114.789693632813,30.3904201484375],[114.761461210938,30.4010622382813],[114.751461210938,30.3835231757813],[114.719693632813,30.3954982734375],[114.707345,30.373843],[114.691065703125,30.377563703125],[114.6634778125,30.3974245429688],[114.653624296875,30.367563703125],[114.631065703125,30.360122296875],[114.613624296875,30.347563703125],[114.597345,30.343843],[114.581124296875,30.3683913398438],[114.589068632813,30.4038430000001],[114.581217070313,30.4388845039063],[114.587345,30.463843],[114.610362578125,30.4547951484376],[114.62170046875,30.4694875312501],[114.633160429688,30.4783303046876],[114.626119414063,30.5259841132813],[114.617345,30.563843],[114.64593875,30.5683498359376],[114.715094023438,30.5860964179688],[114.757261992188,30.6135573554688],[114.797345,30.623843],[114.800704375,30.6172023750001],[114.822315703125,30.6062697578125],[114.830704375,30.5772023750001],[114.837345,30.573843],[114.827574492188,30.4744753242188]]]]}},{"type":"Feature","properties":{"name":"梁子湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.722965117188,30.0588430000001],[114.721353789063,30.0458571601563],[114.691846953125,30.0495265937501],[114.682896757813,30.0282888007813],[114.648912382813,30.0193971992188],[114.621890898438,30.053139875],[114.57373171875,30.0471486640625],[114.552896757813,30.0593971992188],[114.537345,30.0638430000001],[114.530538359375,30.0903688789062],[114.499371367188,30.13058128125],[114.508023710938,30.1691701484376],[114.53326296875,30.2079274726563],[114.54142703125,30.2397585273438],[114.56170046875,30.2537526679688],[114.57142703125,30.2797585273438],[114.58326296875,30.2879274726563],[114.59142703125,30.3297585273438],[114.597345,30.343843],[114.613624296875,30.347563703125],[114.631065703125,30.360122296875],[114.653624296875,30.367563703125],[114.6634778125,30.3974245429688],[114.691065703125,30.377563703125],[114.707345,30.373843],[114.729888945313,30.3692922187501],[114.71990359375,30.348843],[114.724796171875,30.3388283515626],[114.717345,30.3238430000001],[114.694014921875,30.317173078125],[114.682896757813,30.2782888007813],[114.668985625,30.2671462226562],[114.652896757813,30.2274440742188],[114.71334109375,30.1790431953126],[114.698175078125,30.1532424140625],[114.725142851563,30.1163259101563],[114.720479765625,30.078843],[114.722965117188,30.0588430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东宝区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.197345,31.0138430000001],[112.209537382813,31.0104201484375],[112.200767851563,31.0016506171876],[112.197345,31.0138430000001]]],[[[111.907345,31.073843],[111.895152617188,31.0772658515626],[111.903922148438,31.0860353828125],[111.907345,31.073843]]],[[[111.897345,31.183843],[111.907345,31.183843],[111.902345,31.1710353828125],[111.897345,31.183843]]],[[[112.197345,31.0138430000001],[112.151500273438,31.0279982734376],[112.101058378906,31.0554103828126],[112.102642851563,31.028843],[112.102047148438,31.0188430000001],[112.103870878906,30.9882619453126],[112.141893339844,30.8968434882813],[112.118287382813,30.8757497382813],[112.082064238281,30.8591237617187],[112.066844511719,30.8259645820313],[112.04224734375,30.8393288398438],[112.037345,30.833843],[112.031429472656,30.8379274726563],[112.010682402344,30.8679787421875],[112.023260527344,30.8979274726563],[112.031429472656,30.9319997382813],[112.011483183594,30.9275295234375],[112.002359648438,30.9965724921875],[111.971429472656,31.0179274726562],[111.960186796875,31.0342116523438],[111.963465605469,31.0488430000001],[111.960560332031,31.0618044257813],[111.913160429688,31.0511794257813],[111.907345,31.073843],[111.92298953125,31.07819846875],[111.954158964844,31.1185817695313],[111.939049101563,31.1302468085938],[111.921624785156,31.1728224921876],[111.907345,31.183843],[111.902345,31.1966506171875],[111.897345,31.183843],[111.877345,31.173843],[111.871214628906,31.1988014960938],[111.873568144531,31.2092946601563],[111.857345,31.233843],[111.873985625,31.237202375],[111.905474882813,31.2646413398438],[111.925494414063,31.2548635078125],[111.940704375,31.276968],[111.916644316406,31.3253713203125],[111.933985625,31.3472023750001],[111.940704375,31.430483625],[111.947345,31.443843],[112.000809355469,31.450278546875],[112.022066679688,31.4384181953125],[112.037345,31.4396462226563],[112.053963652344,31.4383107734375],[112.072020292969,31.4592702460938],[112.082381621094,31.4584377265625],[112.137345,31.463843],[112.130689726563,31.3837599921876],[112.14197390625,31.35847190625],[112.1627746875,31.3491896796875],[112.16056765625,31.3217116523438],[112.182345,31.2964333320313],[112.21388796875,31.3330446601563],[112.211793242188,31.3069606757813],[112.25197390625,31.27847190625],[112.283023710938,31.2590212226563],[112.267530546875,31.2312526679688],[112.331768828125,31.1910182929688],[112.333204375,31.1731496406251],[112.283729277344,31.1510744453125],[112.281942167969,31.1288430000001],[112.282747832031,31.118843],[112.28072390625,31.0936794257813],[112.291998320313,31.0684133125],[112.340858183594,31.07233909375],[112.345101347656,31.019536359375],[112.313900175781,31.0056130195313],[112.307345,30.983843],[112.29170046875,30.97948753125],[112.282857695313,30.9680275703126],[112.267345,30.9703200507813],[112.242843046875,30.9666994453125],[112.22298953125,30.9927614570312],[112.254788847656,31.0173073554688],[112.251363554688,31.0404811835938],[112.215211210938,31.0581984687501],[112.197345,31.0138430000001]]]]}},{"type":"Feature","properties":{"name":"掇刀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.197345,31.0138430000001],[112.200767851563,31.0016506171876],[112.209537382813,31.0104201484375],[112.215211210938,31.0581984687501],[112.251363554688,31.0404811835938],[112.254788847656,31.0173073554688],[112.22298953125,30.9927614570312],[112.242843046875,30.9666994453125],[112.267345,30.9703200507813],[112.282857695313,30.9680275703126],[112.29170046875,30.97948753125],[112.307345,30.983843],[112.332496367188,30.9664772773438],[112.337345,30.923843],[112.331702910156,30.8990041328126],[112.333023710938,30.8883888984375],[112.30361453125,30.86483909375],[112.341790800781,30.8342653632813],[112.32271609375,30.7777468085938],[112.302144804688,30.78983909375],[112.286217070313,30.769946515625],[112.271890898438,30.7681642890625],[112.248428984375,30.7974636054688],[112.231986113281,30.7995095039063],[112.210792265625,30.7870510078125],[112.185775175781,30.8182888007813],[112.171790800781,30.7993971992188],[112.159556914063,30.7703615546875],[112.135438261719,30.7673610664063],[112.121790800781,30.7782888007813],[112.099976835938,30.8142067695313],[112.068507109375,30.795708234375],[112.047345,30.803843],[112.027437773438,30.8139138007813],[112.037345,30.833843],[112.04224734375,30.8393288398438],[112.066844511719,30.8259645820313],[112.082064238281,30.8591237617187],[112.118287382813,30.8757497382813],[112.141893339844,30.8968434882813],[112.103870878906,30.9882619453126],[112.102047148438,31.0188430000001],[112.102642851563,31.028843],[112.101058378906,31.0554103828126],[112.151500273438,31.0279982734376],[112.197345,31.0138430000001]]]]}},{"type":"Feature","properties":{"name":"京山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.827345,30.733843],[112.823922148438,30.7216506171876],[112.815152617188,30.7304201484376],[112.827345,30.733843]]],[[[112.827345,30.733843],[112.820169707031,30.8041774726563],[112.797345,30.8238430000001],[112.761790800781,30.8682888007813],[112.752899199219,30.8893971992188],[112.741790800781,30.9082888007813],[112.732899199219,30.9293971992188],[112.720589628906,30.950337140625],[112.747323027344,30.9958180976563],[112.762899199219,31.0082888007813],[112.779381132813,31.0288747382813],[112.822899199219,31.0382888007813],[112.843558378906,31.0640895820313],[112.841722441406,31.078843],[112.843587675781,31.0938430000001],[112.839405546875,31.1274831367188],[112.863248320313,31.146577375],[112.86166140625,31.159341046875],[112.889932890625,31.1712551093751],[112.903057890625,31.2024025703125],[112.923587675781,31.218843],[112.900076933594,31.237671125],[112.872899199219,31.30530784375],[112.933031035156,31.3183180976563],[112.931722441406,31.328843],[112.933436308594,31.3426100898438],[113.00318484375,31.3683962226563],[112.991790800781,31.4082888007812],[112.987345,31.4338430000001],[113.010250273438,31.4428469062501],[113.052345,31.436626203125],[113.096832304688,31.4432009101563],[113.121954375,31.4280471015625],[113.160091582031,31.4336818671875],[113.140611601563,31.4186452460938],[113.16298953125,31.40948753125],[113.181954375,31.3980471015625],[113.196951933594,31.4002638984375],[113.22978640625,31.3577248359376],[113.245213652344,31.360005109375],[113.28298953125,31.3494875312501],[113.294329863281,31.3347951484375],[113.317345,31.343843],[113.33068484375,31.3271828437501],[113.352899199219,31.3093971992188],[113.362345,31.286977765625],[113.405064726563,31.292290265625],[113.44248171875,31.2306911445313],[113.462345,31.2282204414063],[113.474154082031,31.2296901679688],[113.483587675781,31.153843],[113.480748320313,31.1310060859375],[113.487345,31.113843],[113.465194121094,31.1079982734375],[113.452506132813,31.0447096992188],[113.431519804688,31.0296681953126],[113.423170195313,31.0180178046875],[113.379490996094,30.9882863593751],[113.383472929688,30.9681349921875],[113.361519804688,30.9596681953125],[113.352345,30.9358791328126],[113.331636992188,30.9399709296876],[113.320382109375,30.9107888007813],[113.327345,30.8938430000001],[113.27908328125,30.8995436835938],[113.260377226563,30.8984279609376],[113.242625761719,30.8785622382813],[113.232064238281,30.8691237617188],[113.22259890625,30.8585305000001],[113.212078886719,30.8591579414063],[113.202625761719,30.8385622382813],[113.191141386719,30.8174245429688],[113.162120390625,30.8191555],[113.130472441406,30.8019557929687],[113.073116484375,30.8225368476563],[113.062625761719,30.7885622382813],[113.030660429688,30.7738893867188],[112.994798613281,30.7933766914063],[112.972625761719,30.7685622382812],[112.946646757813,30.7566384101563],[112.91209109375,30.71796409375],[112.89209109375,30.7191555],[112.874520292969,30.6994899726562],[112.827345,30.733843]]]]}},{"type":"Feature","properties":{"name":"沙洋县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.721158476563,30.6474318671876],[112.713531523438,30.6376564765625],[112.697345,30.6338430000001],[112.689691191406,30.6472658515626],[112.661461210938,30.6366237617188],[112.657345,30.643843],[112.664032011719,30.6546974921875],[112.682740507813,30.6605226875],[112.721158476563,30.6474318671876]]],[[[112.570904570313,30.9331471992188],[112.548316679688,30.892661359375],[112.59197390625,30.85847190625],[112.67197390625,30.8343849921875],[112.65271609375,30.81847190625],[112.627174101563,30.8070729804688],[112.642948027344,30.7787990546875],[112.615057402344,30.7394631171875],[112.607345,30.7138430000001],[112.597432890625,30.7077346015625],[112.583531523438,30.6685158515626],[112.616219511719,30.6483742500001],[112.647345,30.643843],[112.643260527344,30.6279274726563],[112.621051054688,30.6196169257812],[112.625377226563,30.6003127265625],[112.613260527344,30.5679274726563],[112.59611453125,30.55608909375],[112.621429472656,30.5172145820313],[112.608951445313,30.5030300117188],[112.574893828125,30.5252077460938],[112.568983183594,30.498843],[112.579464140625,30.4520851875],[112.519466582031,30.4366872382812],[112.523475371094,30.4188014960938],[112.517345,30.393843],[112.457750273438,30.4334181953126],[112.417345,30.424360578125],[112.39201296875,30.4300392890626],[112.337345,30.4038430000001],[112.299859648438,30.4338600898438],[112.302967558594,30.458843],[112.300826445313,30.4760549140626],[112.271790800781,30.4882888007813],[112.262899199219,30.4993971992188],[112.199303007813,30.5082888007813],[112.203370390625,30.4756056953125],[112.168133574219,30.4799880195313],[112.174632597656,30.5322365546875],[112.128951445313,30.5265554023438],[112.133023710938,30.5592971015625],[112.121790800781,30.5682888007813],[112.112899199219,30.5893971992188],[112.094857207031,30.603843],[112.113436308594,30.6187209296876],[112.077345,30.663843],[112.073795195313,30.6919924140625],[112.060845976563,30.685669171875],[112.053985625,30.7604836250001],[112.036644316406,30.7823146796875],[112.047345,30.803843],[112.068507109375,30.795708234375],[112.099976835938,30.8142067695313],[112.121790800781,30.7782888007813],[112.135438261719,30.7673610664063],[112.159556914063,30.7703615546875],[112.171790800781,30.7993971992188],[112.185775175781,30.8182888007813],[112.210792265625,30.7870510078125],[112.231986113281,30.7995095039063],[112.248428984375,30.7974636054688],[112.271890898438,30.7681642890625],[112.286217070313,30.769946515625],[112.302144804688,30.78983909375],[112.32271609375,30.7777468085938],[112.341790800781,30.8342653632813],[112.30361453125,30.86483909375],[112.333023710938,30.8883888984375],[112.331702910156,30.8990041328126],[112.337345,30.923843],[112.35271609375,30.9192140937501],[112.36197390625,30.90847190625],[112.38271609375,30.89921409375],[112.392120390625,30.878139875],[112.412269316406,30.889380109375],[112.442420683594,30.878305890625],[112.46197390625,30.88921409375],[112.491422148438,30.9023561835938],[112.492747832031,30.918843],[112.491842070313,30.9300881171876],[112.512345,30.9284401679688],[112.570904570313,30.9331471992188]]]]}},{"type":"Feature","properties":{"name":"钟祥市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.841248808594,31.5677468085937],[112.878172636719,31.5547585273438],[112.893441191406,31.5199391914063],[112.90173953125,31.464458234375],[112.948533964844,31.4776076484375],[112.969053984375,31.445551984375],[112.987345,31.4338430000001],[112.991790800781,31.4082888007812],[113.00318484375,31.3683962226563],[112.933436308594,31.3426100898438],[112.931722441406,31.328843],[112.933031035156,31.3183180976563],[112.872899199219,31.30530784375],[112.900076933594,31.237671125],[112.923587675781,31.218843],[112.903057890625,31.2024025703125],[112.889932890625,31.1712551093751],[112.86166140625,31.159341046875],[112.863248320313,31.146577375],[112.839405546875,31.1274831367188],[112.843587675781,31.0938430000001],[112.841722441406,31.078843],[112.843558378906,31.0640895820313],[112.822899199219,31.0382888007813],[112.779381132813,31.0288747382813],[112.762899199219,31.0082888007813],[112.747323027344,30.9958180976563],[112.720589628906,30.950337140625],[112.732899199219,30.9293971992188],[112.741790800781,30.9082888007813],[112.752899199219,30.8893971992188],[112.761790800781,30.8682888007813],[112.797345,30.8238430000001],[112.780103789063,30.8186525703125],[112.76271609375,30.79847190625],[112.694979277344,30.7682448554688],[112.616444121094,30.7032814765626],[112.607345,30.7138430000001],[112.615057402344,30.7394631171875],[112.642948027344,30.7787990546875],[112.627174101563,30.8070729804688],[112.65271609375,30.81847190625],[112.67197390625,30.8343849921875],[112.59197390625,30.85847190625],[112.548316679688,30.892661359375],[112.570904570313,30.9331471992188],[112.512345,30.9284401679688],[112.491842070313,30.9300881171876],[112.492747832031,30.918843],[112.491422148438,30.9023561835938],[112.46197390625,30.88921409375],[112.442420683594,30.878305890625],[112.412269316406,30.889380109375],[112.392120390625,30.878139875],[112.38271609375,30.89921409375],[112.36197390625,30.90847190625],[112.35271609375,30.9192140937501],[112.337345,30.923843],[112.332496367188,30.9664772773438],[112.307345,30.983843],[112.313900175781,31.0056130195313],[112.345101347656,31.019536359375],[112.340858183594,31.07233909375],[112.291998320313,31.0684133125],[112.28072390625,31.0936794257813],[112.282747832031,31.118843],[112.281942167969,31.1288430000001],[112.283729277344,31.1510744453125],[112.333204375,31.1731496406251],[112.331768828125,31.1910182929688],[112.267530546875,31.2312526679688],[112.283023710938,31.2590212226563],[112.25197390625,31.27847190625],[112.211793242188,31.3069606757813],[112.21388796875,31.3330446601563],[112.182345,31.2964333320313],[112.16056765625,31.3217116523438],[112.1627746875,31.3491896796875],[112.14197390625,31.35847190625],[112.130689726563,31.3837599921876],[112.137345,31.463843],[112.14978640625,31.4799611640625],[112.185169707031,31.4747316718751],[112.181549101563,31.499233625],[112.200648222656,31.5308986640625],[112.222579375,31.5176686835938],[112.23978640625,31.5399611640625],[112.252345,31.5381032539063],[112.286832304688,31.5432009101563],[112.326937285156,31.519009015625],[112.429075957031,31.5016579414063],[112.451805449219,31.5396608710938],[112.470767851563,31.5368605781251],[112.501058378906,31.5551296210938],[112.540218535156,31.5711574531251],[112.56170046875,31.5581984687501],[112.586324492188,31.5481227851563],[112.613150664063,31.5133644843751],[112.66298953125,31.4994875312501],[112.712608671875,31.4778029609375],[112.72170046875,31.4873244453125],[112.698297148438,31.5468581367188],[112.715994902344,31.5605202460938],[112.739398222656,31.5570607734375],[112.747345,31.603843],[112.754964628906,31.6157448554688],[112.781248808594,31.5977468085938],[112.827523222656,31.589184796875],[112.841248808594,31.5677468085937]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安陆市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.607345,31.0938430000001],[113.594537382813,31.098843],[113.607345,31.103843],[113.607345,31.0938430000001]]],[[[113.607345,31.0938430000001],[113.620152617188,31.098843],[113.607345,31.103843],[113.602625761719,31.1191237617188],[113.572064238281,31.1285622382813],[113.554212675781,31.148540265625],[113.502447539063,31.1084230781251],[113.487345,31.113843],[113.480748320313,31.1310060859375],[113.483587675781,31.153843],[113.474154082031,31.2296901679688],[113.462345,31.2282204414063],[113.44248171875,31.2306911445313],[113.405064726563,31.292290265625],[113.362345,31.286977765625],[113.352899199219,31.3093971992188],[113.33068484375,31.3271828437501],[113.317345,31.343843],[113.32298953125,31.3681984687501],[113.333182402344,31.42819846875],[113.36298953125,31.4194875312501],[113.382345,31.4078102851563],[113.404190703125,31.4209889960938],[113.471112089844,31.4308766914063],[113.522110625,31.3930666328125],[113.587345,31.423843],[113.598089628906,31.4145876289063],[113.619840117188,31.3893386054687],[113.66271609375,31.40847190625],[113.718616972656,31.47335471875],[113.77271609375,31.4492140937501],[113.792066679688,31.4384181953125],[113.802345,31.4392458320312],[113.820787382813,31.4377638984375],[113.853590117188,31.449809796875],[113.881651640625,31.4172365546875],[113.899947539063,31.43847190625],[113.943197050781,31.4088845039063],[113.93197390625,31.39921409375],[113.927345,31.3938430000001],[113.921429472656,31.3897585273438],[113.913016386719,31.3775710273437],[113.902345,31.3799636054688],[113.892345,31.3777223945313],[113.881793242188,31.3800881171875],[113.853260527344,31.3543654609375],[113.863565703125,31.3083962226563],[113.844105253906,31.27851096875],[113.820472441406,31.2621950507813],[113.824586210938,31.2438430000001],[113.821124296875,31.2283962226563],[113.833856230469,31.2088430000001],[113.814105253906,31.1785109687501],[113.807345,31.173843],[113.800990019531,31.1841555],[113.721461210938,31.2109181953125],[113.713531523438,31.1876564765626],[113.701158476563,31.1800295234375],[113.693531523438,31.1676564765625],[113.681158476563,31.1600295234375],[113.665748320313,31.1350221992188],[113.67420046875,31.1078835273438],[113.651158476563,31.1000295234375],[113.643531523438,31.0676564765626],[113.627345,31.063843],[113.620704375,31.0672023750001],[113.607345,31.0938430000001]]]]}},{"type":"Feature","properties":{"name":"大悟县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.288597441406,31.7588649726562],[114.430667753906,31.7372536445313],[114.467345,31.739438703125],[114.490845976563,31.7380373359376],[114.5026575,31.7485890937501],[114.501470976563,31.7684938789063],[114.51259890625,31.7691555],[114.532345,31.7470558906251],[114.552198515625,31.7692775703125],[114.567345,31.763843],[114.58443484375,31.7599343085938],[114.573761015625,31.728843],[114.584351835938,31.6979982734375],[114.571065703125,31.690122296875],[114.563624296875,31.667563703125],[114.551065703125,31.650122296875],[114.547345,31.573843],[114.54326296875,31.5579274726563],[114.506939726563,31.5443361640625],[114.497862578125,31.5038430000001],[114.5066809375,31.4645095039063],[114.4783996875,31.4708473945313],[114.470103789063,31.4338430000001],[114.4766809375,31.4045095039062],[114.451573515625,31.4101369453125],[114.44326296875,31.3879274726563],[114.42490359375,31.3752516914063],[114.421073027344,31.3581716132813],[114.433616972656,31.3495143867187],[114.431214628906,31.3388014960938],[114.437345,31.3138430000001],[114.318563261719,31.3212892890625],[114.282720976563,31.36140159375],[114.247345,31.3538430000001],[114.241610136719,31.3581081367188],[114.226878691406,31.3779128242188],[114.142345,31.357934796875],[114.077513457031,31.3732570625],[114.063079863281,31.4095778632813],[114.051610136719,31.4181081367188],[114.047345,31.4338430000001],[114.063765898438,31.4599025703126],[114.060855742188,31.488452375],[114.072894316406,31.498452375],[114.071795683594,31.5092336250001],[114.082806425781,31.5183815742188],[114.091883574219,31.5293044257812],[114.103363066406,31.538843],[114.083026152344,31.5557375312501],[114.103682890625,31.6107106757812],[114.101803007813,31.629165265625],[114.128033476563,31.6749636054688],[114.089193144531,31.7072267890625],[114.104334746094,31.7752419257812],[114.097345,31.793843],[114.107345,31.793843],[114.107345,31.803843],[114.11298953125,31.80819846875],[114.134964628906,31.8449440742188],[114.187345,31.8538430000001],[114.231170683594,31.8231374335938],[114.288597441406,31.7588649726562]]]]}},{"type":"Feature","properties":{"name":"汉川市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.383922148438,30.6860353828126],[113.387345,30.6738430000001],[113.375152617188,30.6772658515625],[113.383922148438,30.6860353828126]]],[[[113.445267363281,30.798403546875],[113.510902128906,30.7174587226563],[113.533326445313,30.7299684882813],[113.573702421875,30.726723859375],[113.621956816406,30.7412526679688],[113.599151640625,30.760903546875],[113.63197390625,30.77921409375],[113.673460722656,30.7977272773438],[113.701373320313,30.8301271796875],[113.722669707031,30.8284157539063],[113.73197390625,30.8392140937501],[113.737345,30.843843],[113.74298953125,30.83948753125],[113.75170046875,30.81819846875],[113.787181425781,30.8036794257813],[113.80170046875,30.76819846875],[113.815994902344,30.7571657539063],[113.832345,30.7595827460937],[113.853436308594,30.7564650703126],[113.851600371094,30.7688771796875],[113.857345,30.803843],[113.901058378906,30.7964162421876],[113.907345,30.773843],[113.901160917969,30.7591213203125],[113.908509550781,30.7263405585937],[113.883260527344,30.7319997382813],[113.891861601563,30.7171804023438],[113.921898222656,30.697622296875],[113.935697050781,30.7007155585938],[113.947345,30.683843],[113.921092558594,30.6486696601563],[113.933160429688,30.6393556953126],[113.930867949219,30.623843],[113.937034941406,30.5821096015625],[113.883878203125,30.567309796875],[113.872542753906,30.52659690625],[113.847738066406,30.5302638984375],[113.82298953125,30.49819846875],[113.800413847656,30.4807741523438],[113.767611113281,30.43827659375],[113.715030546875,30.4167580390625],[113.697345,30.393843],[113.665513945313,30.4020119453125],[113.651673613281,30.422055890625],[113.632345,30.4177223945313],[113.61724734375,30.4211061835938],[113.629845,30.4772951484375],[113.594622832031,30.4904738593751],[113.564105253906,30.4836330390625],[113.542274199219,30.4520143867188],[113.533260527344,30.4279274726563],[113.504151640625,30.417036359375],[113.492264433594,30.3852663398438],[113.457345,30.393843],[113.45298953125,30.45948753125],[113.430282011719,30.4971315742187],[113.446392851563,30.523843],[113.426307402344,30.5571413398438],[113.456092558594,30.6253005195313],[113.429078398438,30.6617360664063],[113.433084746094,30.688843],[113.430867949219,30.7038430000001],[113.433140898438,30.719233625],[113.421549101563,30.738452375],[113.4284778125,30.7853395820313],[113.377345,30.853843],[113.384422636719,30.862055890625],[113.42197390625,30.81847190625],[113.445267363281,30.798403546875]]]]}},{"type":"Feature","properties":{"name":"孝昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.047345,31.4338430000001],[114.051610136719,31.4181081367188],[114.063079863281,31.4095778632813],[114.077513457031,31.3732570625],[114.142345,31.357934796875],[114.226878691406,31.3779128242188],[114.241610136719,31.3581081367188],[114.247345,31.3538430000001],[114.227532988281,31.3162819648438],[114.18797,31.2919045234376],[114.173531523438,31.2455495429688],[114.20963015625,31.2081764960938],[114.241158476563,31.1974318671875],[114.233531523438,31.1676564765625],[114.174444609375,31.1026442695313],[114.187345,31.073843],[114.17170046875,31.07819846875],[114.15298953125,31.08948753125],[114.115926542969,31.1046559882813],[114.10298953125,31.0581984687501],[114.062652617188,31.046968],[114.04490359375,31.0699611640625],[114.032345,31.0681032539063],[114.0219153125,31.0696462226563],[113.989451933594,31.0455763984375],[113.956268339844,31.0504787421876],[113.97298953125,31.07819846875],[113.983385039063,31.1394020820313],[113.933995390625,31.1498244453125],[113.917838164063,31.1474391914063],[113.898631621094,31.1225563789063],[113.88170046875,31.10948753125],[113.87298953125,31.08819846875],[113.85170046875,31.0794875312501],[113.84298953125,31.0681984687501],[113.827345,31.063843],[113.817432890625,31.08378440625],[113.829671660156,31.108843],[113.8174621875,31.133843],[113.825269804688,31.1498342109375],[113.810704375,31.157202375],[113.807345,31.173843],[113.814105253906,31.1785109687501],[113.833856230469,31.2088430000001],[113.821124296875,31.2283962226563],[113.824586210938,31.2438430000001],[113.820472441406,31.2621950507813],[113.844105253906,31.27851096875],[113.863565703125,31.3083962226563],[113.853260527344,31.3543654609375],[113.881793242188,31.3800881171875],[113.892345,31.3777223945313],[113.902345,31.3799636054688],[113.913016386719,31.3775710273437],[113.921429472656,31.3897585273438],[113.927345,31.3938430000001],[113.931861601563,31.3873024726563],[113.975767851563,31.3985720039063],[113.968011503906,31.4331764960938],[114.01033328125,31.4236891914063],[114.024088164063,31.4436110664063],[114.047345,31.4338430000001]]]]}},{"type":"Feature","properties":{"name":"孝南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.956268339844,31.0504787421876],[113.989451933594,31.0455763984375],[114.0219153125,31.0696462226563],[114.032345,31.0681032539063],[114.04490359375,31.0699611640625],[114.062652617188,31.046968],[114.10298953125,31.0581984687501],[114.115926542969,31.1046559882813],[114.15298953125,31.08948753125],[114.17170046875,31.07819846875],[114.187345,31.073843],[114.178450957031,31.0627370429687],[114.153448515625,31.0427150703126],[114.151688261719,31.028559796875],[114.166102324219,30.9910573554688],[114.151678496094,30.8885866523437],[114.170325957031,30.8400710273438],[114.172967558594,30.8188430000001],[114.170479765625,30.798843],[114.174232207031,30.7686721015626],[114.157345,30.763843],[114.124241972656,30.7759987617188],[113.992948027344,30.7893923164063],[113.907345,30.773843],[113.901058378906,30.7964162421876],[113.857345,30.803843],[113.861883574219,30.8093044257812],[113.883873320313,30.8188430000001],[113.853240996094,30.8321291328125],[113.872806425781,30.8483815742188],[113.881883574219,30.8603249335938],[113.862020292969,30.8583010078125],[113.832806425781,30.8753688789063],[113.862806425781,30.8883815742188],[113.871883574219,30.8953688789063],[113.833240996094,30.9121291328126],[113.852894316406,30.928452375],[113.851834746094,30.9388430000001],[113.852882109375,30.9491091132813],[113.830736113281,31.0080471015625],[113.834486113281,31.0448415351562],[113.827345,31.063843],[113.84298953125,31.0681984687501],[113.85170046875,31.0794875312501],[113.87298953125,31.08819846875],[113.88170046875,31.10948753125],[113.898631621094,31.1225563789063],[113.917838164063,31.1474391914063],[113.933995390625,31.1498244453125],[113.983385039063,31.1394020820313],[113.97298953125,31.07819846875],[113.956268339844,31.0504787421876]]]]}},{"type":"Feature","properties":{"name":"应城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.607345,31.0938430000001],[113.607345,31.103843],[113.620152617188,31.098843],[113.607345,31.0938430000001]]],[[[113.607345,31.103843],[113.594537382813,31.098843],[113.607345,31.0938430000001],[113.620704375,31.0672023750001],[113.627345,31.063843],[113.633043242188,31.0433766914063],[113.680716582031,31.0148659492188],[113.683084746094,30.998843],[113.681529570313,30.9883303046875],[113.702178984375,30.9723928046875],[113.71170046875,30.93819846875],[113.770382109375,30.8939064765626],[113.746058378906,30.8751296210938],[113.737345,30.843843],[113.73197390625,30.8392140937501],[113.722669707031,30.8284157539063],[113.701373320313,30.8301271796875],[113.673460722656,30.7977272773438],[113.63197390625,30.77921409375],[113.599151640625,30.760903546875],[113.621956816406,30.7412526679688],[113.573702421875,30.726723859375],[113.533326445313,30.7299684882813],[113.510902128906,30.7174587226563],[113.445267363281,30.798403546875],[113.42197390625,30.81847190625],[113.384422636719,30.862055890625],[113.377345,30.853843],[113.357345,30.853843],[113.357345,30.873843],[113.337345,30.873843],[113.337345,30.8938430000001],[113.327345,30.8938430000001],[113.320382109375,30.9107888007813],[113.331636992188,30.9399709296876],[113.352345,30.9358791328126],[113.361519804688,30.9596681953125],[113.383472929688,30.9681349921875],[113.379490996094,30.9882863593751],[113.423170195313,31.0180178046875],[113.431519804688,31.0296681953126],[113.452506132813,31.0447096992188],[113.465194121094,31.1079982734375],[113.487345,31.113843],[113.502447539063,31.1084230781251],[113.554212675781,31.148540265625],[113.572064238281,31.1285622382813],[113.602625761719,31.1191237617188],[113.607345,31.103843]]]]}},{"type":"Feature","properties":{"name":"云梦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.832806425781,30.8753688789063],[113.862020292969,30.8583010078125],[113.881883574219,30.8603249335938],[113.872806425781,30.8483815742188],[113.853240996094,30.8321291328125],[113.883873320313,30.8188430000001],[113.861883574219,30.8093044257812],[113.857345,30.803843],[113.851600371094,30.7688771796875],[113.853436308594,30.7564650703126],[113.832345,30.7595827460937],[113.815994902344,30.7571657539063],[113.80170046875,30.76819846875],[113.787181425781,30.8036794257813],[113.75170046875,30.81819846875],[113.74298953125,30.83948753125],[113.737345,30.843843],[113.746058378906,30.8751296210938],[113.770382109375,30.8939064765626],[113.71170046875,30.93819846875],[113.702178984375,30.9723928046875],[113.681529570313,30.9883303046875],[113.683084746094,30.998843],[113.680716582031,31.0148659492188],[113.633043242188,31.0433766914063],[113.627345,31.063843],[113.643531523438,31.0676564765626],[113.651158476563,31.1000295234375],[113.67420046875,31.1078835273438],[113.665748320313,31.1350221992188],[113.681158476563,31.1600295234375],[113.693531523438,31.1676564765625],[113.701158476563,31.1800295234375],[113.713531523438,31.1876564765626],[113.721461210938,31.2109181953125],[113.800990019531,31.1841555],[113.807345,31.173843],[113.810704375,31.157202375],[113.825269804688,31.1498342109375],[113.8174621875,31.133843],[113.829671660156,31.108843],[113.817432890625,31.08378440625],[113.827345,31.063843],[113.834486113281,31.0448415351562],[113.830736113281,31.0080471015625],[113.852882109375,30.9491091132813],[113.851834746094,30.9388430000001],[113.852894316406,30.928452375],[113.833240996094,30.9121291328126],[113.871883574219,30.8953688789063],[113.862806425781,30.8883815742188],[113.832806425781,30.8753688789063]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"洪湖市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.887345,30.013843],[113.897345,30.013843],[113.892345,30.0010353828126],[113.887345,30.013843]]],[[[113.917345,30.0238430000001],[113.913922148438,30.0360353828125],[113.905152617188,30.0272658515625],[113.917345,30.013843],[113.897345,30.013843],[113.892345,30.0266506171875],[113.887345,30.013843],[113.873551054688,30.0005886054687],[113.817362089844,29.9297194648438],[113.667345,29.923843],[113.640704375,29.910483625],[113.593985625,29.867202375],[113.567345,29.853843],[113.532154570313,29.8290334296876],[113.472535429688,29.7786525703125],[113.422154570313,29.7490334296876],[113.307345,29.6438430000001],[113.302899199219,29.6493971992187],[113.265687285156,29.6719972968751],[113.294039335938,29.72022971875],[113.291673613281,29.7392360664063],[113.31312625,29.7686013007813],[113.291261015625,29.8451711250001],[113.262940703125,29.8933449531251],[113.227906523438,29.9214015937501],[113.19634890625,29.9174758125],[113.182899199219,29.9493971992188],[113.17146609375,29.968843],[113.183055449219,29.9885573554688],[113.171707792969,30.0487306953125],[113.173011503906,30.0592018867188],[113.161790800781,30.0782888007812],[113.157345,30.0938430000001],[113.169537382813,30.0972658515625],[113.160767851563,30.1060353828125],[113.157345,30.0938430000001],[113.147345,30.0938430000001],[113.147345,30.113843],[113.127345,30.113843],[113.127345,30.143843],[113.162445097656,30.1487429023438],[113.292772246094,30.1514015937501],[113.342244902344,30.1889430976562],[113.367987089844,30.1987429023438],[113.412244902344,30.1687429023438],[113.452645292969,30.1491432929688],[113.482044707031,30.1185427070313],[113.502445097656,30.0989430976563],[113.516846953125,30.0692604804688],[113.633336210938,30.0891286445313],[113.662345,30.0885378242188],[113.683446074219,30.0889675117188],[113.712244902344,30.1189430976563],[113.723065214844,30.1293386054687],[113.762623320313,30.1285305000001],[113.811458769531,30.1536891914063],[113.817345,30.183843],[113.843985625,30.187202375],[113.857345,30.193843],[113.876578398438,30.1869411445313],[113.956480742188,30.2083425117188],[114.042064238281,30.1485622382813],[114.092064238281,30.1167629218751],[114.075543242188,30.0849025703126],[113.933880644531,30.041157453125],[113.922625761719,30.0285622382813],[113.917345,30.0238430000001]]]]}},{"type":"Feature","properties":{"name":"江陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.383922148438,30.2260353828126],[112.387345,30.2138430000001],[112.375152617188,30.2172658515625],[112.383922148438,30.2260353828126]]],[[[112.562899199219,30.2293971992188],[112.571790800781,30.1782888007813],[112.59326296875,30.1692409492188],[112.573216582031,30.1170851875],[112.607345,30.1213307929688],[112.632345,30.1182204414063],[112.642799101563,30.1195217109375],[112.656239042969,30.1027370429688],[112.732899199219,30.0893971992188],[112.737345,30.083843],[112.732899199219,30.0682888007813],[112.691790800781,30.0393971992188],[112.668912382813,30.0108229804687],[112.640982695313,29.9990554023437],[112.611678496094,29.9492018867188],[112.613013945313,29.93847190625],[112.597345,29.913843],[112.570704375,29.9272023750001],[112.563985625,29.940483625],[112.52422,29.947202375],[112.482359648438,29.9263942695313],[112.467345,29.9337258125],[112.442242460938,29.9214675117187],[112.417345,29.933843],[112.412535429688,29.9990334296875],[112.399229765625,30.036997296875],[112.326761503906,30.0711989570313],[112.223782988281,30.0671169257813],[112.182535429688,30.1435036445313],[112.287345,30.233843],[112.291673613281,30.2275710273438],[112.311673613281,30.232055890625],[112.321429472656,30.2179274726562],[112.390382109375,30.2002321601562],[112.401571074219,30.2301369453125],[112.432345,30.2232375312501],[112.492445097656,30.2367116523438],[112.517345,30.273843],[112.540694609375,30.2671657539063],[112.562899199219,30.2293971992188]]]]}},{"type":"Feature","properties":{"name":"荆州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.077345,30.1338430000001],[112.073922148438,30.1216506171876],[112.065152617188,30.1304201484375],[112.077345,30.1338430000001]]],[[[112.077345,30.1338430000001],[112.083646269531,30.1594924140625],[112.071429472656,30.1679274726563],[112.058150664063,30.1871584296875],[112.012791777344,30.157622296875],[112.002345,30.1599636054688],[111.982074003906,30.1554201484376],[111.977345,30.1738430000001],[111.983170195313,30.1780178046875],[111.995694609375,30.1954933906251],[112.013170195313,30.2080178046876],[112.021519804688,30.2196681953126],[112.035186796875,30.2294631171875],[112.031234160156,30.2494631171875],[112.051297636719,30.263843],[112.037345,30.273843],[112.043260527344,30.2993752265625],[112.008363066406,30.3136574531251],[111.968187285156,30.365708234375],[111.9752746875,30.4136721015625],[111.960125761719,30.4522096992187],[111.927345,30.4473659492188],[111.910282011719,30.4498854804688],[111.913822050781,30.473843],[111.911226835938,30.4914015937501],[111.927345,30.503843],[111.969312773438,30.5076906562501],[111.999771757813,30.5688137031251],[111.968345976563,30.5778835273438],[112.003985625,30.6172023750001],[112.020858183594,30.6507912421875],[112.042345,30.6612844062501],[112.05740359375,30.653930890625],[112.077345,30.663843],[112.113436308594,30.6187209296876],[112.094857207031,30.603843],[112.112899199219,30.5893971992188],[112.121790800781,30.5682888007813],[112.133023710938,30.5592971015625],[112.128951445313,30.5265554023438],[112.174632597656,30.5322365546875],[112.168133574219,30.4799880195313],[112.203370390625,30.4756056953125],[112.199303007813,30.5082888007813],[112.262899199219,30.4993971992188],[112.271790800781,30.4882888007813],[112.300826445313,30.4760549140626],[112.302967558594,30.458843],[112.299859648438,30.4338600898438],[112.337345,30.4038430000001],[112.320716582031,30.3797585273437],[112.291429472656,30.3879274726563],[112.271998320313,30.40058128125],[112.263260527344,30.3879274726563],[112.244249296875,30.37480003125],[112.221429472656,30.3397585273438],[112.217345,30.313843],[112.125067167969,30.3044313789063],[112.132747832031,30.2088430000001],[112.131942167969,30.198843],[112.132747832031,30.188843],[112.130413847656,30.1598146796876],[112.143216582031,30.14878440625],[112.11197390625,30.12921409375],[112.102457304688,30.1181691718751],[112.077345,30.1338430000001]]]]}},{"type":"Feature","properties":{"name":"沙市区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457750273438,30.4334181953126],[112.517345,30.393843],[112.523802519531,30.3886721015626],[112.496558867188,30.3771901679688],[112.515064726563,30.3457106757813],[112.511722441406,30.3188405585938],[112.517345,30.273843],[112.492445097656,30.2367116523438],[112.432345,30.2232375312501],[112.401571074219,30.2301369453125],[112.390382109375,30.2002321601562],[112.321429472656,30.2179274726562],[112.311673613281,30.232055890625],[112.291673613281,30.2275710273438],[112.287345,30.233843],[112.283985625,30.2604836250001],[112.25312625,30.2959011054688],[112.217345,30.313843],[112.221429472656,30.3397585273438],[112.244249296875,30.37480003125],[112.263260527344,30.3879274726563],[112.271998320313,30.40058128125],[112.291429472656,30.3879274726563],[112.320716582031,30.3797585273437],[112.337345,30.4038430000001],[112.39201296875,30.4300392890626],[112.417345,30.424360578125],[112.457750273438,30.4334181953126]],[[112.375152617188,30.2172658515625],[112.387345,30.2138430000001],[112.383922148438,30.2260353828126],[112.375152617188,30.2172658515625]]]]}},{"type":"Feature","properties":{"name":"松滋市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.812899199219,30.2993971992188],[111.821890898438,30.2881642890626],[111.842345,30.290708234375],[111.891829863281,30.2845534492188],[111.91291140625,30.3582888007813],[111.932899199219,30.3493971992188],[111.9810559375,30.280884015625],[112.037345,30.273843],[112.051297636719,30.263843],[112.031234160156,30.2494631171875],[112.035186796875,30.2294631171875],[112.021519804688,30.2196681953126],[112.013170195313,30.2080178046876],[111.995694609375,30.1954933906251],[111.983170195313,30.1780178046875],[111.977345,30.1738430000001],[111.949078398438,30.1849562812501],[111.899100371094,30.1202077460938],[111.919144316406,30.1047341132813],[111.93170046875,30.0549245429688],[111.91170046875,30.03948753125],[111.889266386719,29.9846730781251],[111.897139921875,29.93140159375],[111.88170046875,29.91948753125],[111.87298953125,29.90819846875],[111.807345,29.9038430000001],[111.727581816406,29.9266286445312],[111.706900664063,29.9008010078125],[111.643294707031,29.8893971992188],[111.536261015625,29.9027101875],[111.514610625,29.9297463203125],[111.482345,29.9257326484376],[111.452345,29.9294655585938],[111.442345,29.9282204414063],[111.431986113281,29.9295095039063],[111.402345,29.9120876289062],[111.370709257813,29.9306838203126],[111.3741028125,29.9579714179688],[111.337345,29.9438430000001],[111.323985625,29.970483625],[111.297423125,29.983921125],[111.283985625,30.010483625],[111.260704375,30.017202375],[111.253985625,30.030483625],[111.240704375,30.037202375],[111.237345,30.043843],[111.277047148438,30.0503639960938],[111.292345,30.0481032539063],[111.309920683594,30.0507009101563],[111.323065214844,30.0828224921875],[111.34298953125,30.09819846875],[111.347345,30.1038430000001],[111.363260527344,30.1079274726563],[111.387408476563,30.1236525703125],[111.466617460938,30.1041970039062],[111.501673613281,30.1120558906251],[111.51343875,30.0950197578125],[111.563116484375,30.1273708320313],[111.575513945313,30.1756740546875],[111.601185332031,30.2367946601563],[111.571429472656,30.2479274726563],[111.567345,30.2538430000001],[111.592899199219,30.2682888007812],[111.629639921875,30.3287819648438],[111.668717070313,30.3399538398438],[111.733934355469,30.3782888007812],[111.770726347656,30.3669924140625],[111.783270292969,30.3231227851563],[111.812899199219,30.2993971992188]],[[111.584346953125,30.1594045234375],[111.597345,30.153843],[111.593338652344,30.1765676093751],[111.584346953125,30.1594045234375]]]]}},{"type":"Feature","properties":{"name":"公安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.077345,30.1338430000001],[112.065152617188,30.1304201484375],[112.073922148438,30.1216506171876],[112.102457304688,30.1181691718751],[112.11197390625,30.12921409375],[112.143216582031,30.14878440625],[112.130413847656,30.1598146796876],[112.132747832031,30.188843],[112.131942167969,30.198843],[112.132747832031,30.2088430000001],[112.125067167969,30.3044313789063],[112.217345,30.313843],[112.25312625,30.2959011054688],[112.283985625,30.2604836250001],[112.287345,30.233843],[112.182535429688,30.1435036445313],[112.223782988281,30.0671169257813],[112.326761503906,30.0711989570313],[112.399229765625,30.036997296875],[112.412535429688,29.9990334296875],[112.417345,29.933843],[112.405699492188,29.8951638007813],[112.375181914063,29.8464406562501],[112.318807402344,29.7978713203125],[112.323509550781,29.7393386054688],[112.307345,29.7380397773438],[112.276998320313,29.7404787421875],[112.26271609375,29.70847190625],[112.237345,29.663843],[112.227345,29.663843],[112.227345,29.653843],[112.221158476563,29.6500295234375],[112.213531523438,29.6376564765625],[112.186776152344,29.6211696601563],[112.171385527344,29.6663307929688],[112.142345,29.6572853828125],[112.112835722656,29.6664772773437],[112.093531523438,29.6800295234375],[112.054664335938,29.689184796875],[112.069412871094,29.7365309882813],[112.055855742188,29.7676564765626],[112.047345,29.7538430000001],[111.998631621094,29.7851296210938],[111.948680449219,29.7990407539063],[111.954945097656,29.8414430976563],[111.922857695313,29.8367018867188],[111.907659941406,29.856391828125],[111.85170046875,29.86819846875],[111.812323027344,29.8973952460938],[111.807345,29.9038430000001],[111.87298953125,29.90819846875],[111.88170046875,29.91948753125],[111.897139921875,29.93140159375],[111.889266386719,29.9846730781251],[111.91170046875,30.03948753125],[111.93170046875,30.0549245429688],[111.919144316406,30.1047341132813],[111.899100371094,30.1202077460938],[111.949078398438,30.1849562812501],[111.977345,30.1738430000001],[111.982074003906,30.1554201484376],[112.002345,30.1599636054688],[112.012791777344,30.157622296875],[112.058150664063,30.1871584296875],[112.071429472656,30.1679274726563],[112.083646269531,30.1594924140625],[112.077345,30.1338430000001]]]]}},{"type":"Feature","properties":{"name":"监利县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.907345,29.783843],[112.919537382813,29.7804201484375],[112.910767851563,29.7716506171876],[112.907345,29.783843]]],[[[112.907345,29.783843],[112.895152617188,29.7872658515625],[112.903922148438,29.7960353828125],[112.907345,29.783843]]],[[[112.717345,29.823843],[112.713922148438,29.8116506171876],[112.705152617188,29.8204201484375],[112.717345,29.823843]]],[[[113.157345,30.0938430000001],[113.160767851563,30.1060353828125],[113.169537382813,30.0972658515625],[113.157345,30.0938430000001]]],[[[112.797345,30.1038430000001],[112.785152617188,30.1072658515625],[112.793922148438,30.1160353828126],[112.797345,30.1038430000001]]],[[[113.157345,30.0938430000001],[113.161790800781,30.0782888007812],[113.173011503906,30.0592018867188],[113.171707792969,30.0487306953125],[113.183055449219,29.9885573554688],[113.17146609375,29.968843],[113.182899199219,29.9493971992188],[113.19634890625,29.9174758125],[113.227906523438,29.9214015937501],[113.262940703125,29.8933449531251],[113.291261015625,29.8451711250001],[113.31312625,29.7686013007813],[113.291673613281,29.7392360664063],[113.294039335938,29.72022971875],[113.265687285156,29.6719972968751],[113.302899199219,29.6493971992187],[113.307345,29.6438430000001],[113.307345,29.623843],[113.285133085938,29.6060549140626],[113.262899199219,29.5782888007813],[113.21591921875,29.5452687812501],[113.182899199219,29.4982888007813],[113.147345,29.4538430000001],[113.137345,29.4538430000001],[113.104735136719,29.4663771796876],[113.092899199219,29.4382888007813],[113.075079375,29.4293971992188],[113.0598059375,29.5171608710938],[113.025416289063,29.5282888007813],[112.962899199219,29.4782888007813],[112.947193632813,29.4693971992188],[112.914049101563,29.5853249335938],[112.907345,29.623843],[112.95271609375,29.6584719062501],[112.96197390625,29.66921409375],[113.001453886719,29.703227765625],[113.022252226563,29.7498415351562],[113.023792753906,29.7784719062501],[112.969410429688,29.7358815742188],[112.947691679688,29.6872072578126],[112.918917265625,29.6895192695313],[112.932806425781,29.7790529609375],[112.920289335938,29.8014894843751],[112.87404421875,29.7977736640626],[112.792786894531,29.7401589179688],[112.787345,29.733843],[112.731610136719,29.7381081367188],[112.723079863281,29.75618675],[112.770733671875,29.7751247382813],[112.760584746094,29.8340627265625],[112.717345,29.823843],[112.711776152344,29.8313283515625],[112.6498059375,29.82065940625],[112.598641386719,29.8523244453125],[112.603206816406,29.878843],[112.601483183594,29.888843],[112.603255644531,29.8991359687501],[112.597345,29.913843],[112.613013945313,29.93847190625],[112.611678496094,29.9492018867188],[112.640982695313,29.9990554023437],[112.668912382813,30.0108229804687],[112.691790800781,30.0393971992188],[112.732899199219,30.0682888007813],[112.737345,30.083843],[112.805577421875,30.0872829414063],[112.797345,30.1038430000001],[112.80298953125,30.1081984687501],[112.81170046875,30.1594875312501],[112.83298953125,30.16819846875],[112.860101347656,30.1845534492188],[112.90170046875,30.16819846875],[112.93298953125,30.1594875312501],[112.950809355469,30.1363991523438],[112.972345,30.1395827460938],[112.987345,30.1373659492188],[113.014193144531,30.141333234375],[113.011600371094,30.1588771796875],[113.017345,30.193843],[113.046734648438,30.1892116523438],[113.06201296875,30.1670827460938],[113.091898222656,30.1476222968751],[113.12033328125,30.1539968085938],[113.127345,30.143843],[113.127345,30.113843],[113.147345,30.113843],[113.147345,30.0938430000001],[113.157345,30.0938430000001]]]]}},{"type":"Feature","properties":{"name":"石首市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.717345,29.823843],[112.705152617188,29.8204201484375],[112.713922148438,29.8116506171876],[112.760584746094,29.8340627265625],[112.770733671875,29.7751247382813],[112.723079863281,29.75618675],[112.731610136719,29.7381081367188],[112.787345,29.733843],[112.794386015625,29.7295046210938],[112.78187625,29.6927980781251],[112.761158476563,29.6800295234375],[112.748021269531,29.6587136054688],[112.711158476563,29.6500295234375],[112.681785917969,29.5943459296875],[112.657345,29.6019582343751],[112.641539335938,29.5970339179688],[112.626370878906,29.6216530585938],[112.607345,29.615727765625],[112.57443484375,29.6259792304688],[112.524183378906,29.6034670234376],[112.501158476563,29.6176564765626],[112.488834257813,29.6376564765625],[112.424254179688,29.6291188789063],[112.410169707031,29.5877834296875],[112.363531523438,29.5476564765626],[112.311158476563,29.5400295234375],[112.307345,29.5238430000001],[112.290704375,29.520483625],[112.277345,29.513843],[112.28170046875,29.53948753125],[112.29298953125,29.55819846875],[112.30170046875,29.5895510078126],[112.23170046875,29.6181984687501],[112.227345,29.653843],[112.237345,29.653843],[112.237345,29.663843],[112.26271609375,29.70847190625],[112.276998320313,29.7404787421875],[112.307345,29.7380397773438],[112.323509550781,29.7393386054688],[112.318807402344,29.7978713203125],[112.375181914063,29.8464406562501],[112.405699492188,29.8951638007813],[112.417345,29.933843],[112.442242460938,29.9214675117187],[112.467345,29.9337258125],[112.482359648438,29.9263942695313],[112.52422,29.947202375],[112.563985625,29.940483625],[112.570704375,29.9272023750001],[112.597345,29.913843],[112.603255644531,29.8991359687501],[112.601483183594,29.888843],[112.603206816406,29.878843],[112.598641386719,29.8523244453125],[112.6498059375,29.82065940625],[112.711776152344,29.8313283515625],[112.717345,29.823843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"红安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.633170195313,31.5796681953125],[114.671519804688,31.5480178046875],[114.693472929688,31.5395510078125],[114.690709257813,31.5255544257813],[114.712413359375,31.5298439765625],[114.763170195313,31.5196681953126],[114.781519804688,31.4880178046875],[114.803170195313,31.4796681953126],[114.827345,31.463843],[114.82170046875,31.44948753125],[114.812276640625,31.3831862617188],[114.79298953125,31.35819846875],[114.771226835938,31.34140159375],[114.773082304688,31.328843],[114.771143828125,31.3157033515626],[114.800089140625,31.2677126289063],[114.734761992188,31.1801882148438],[114.731070585938,31.1552346015625],[114.756383085938,31.0908522773438],[114.712554960938,31.0780739570313],[114.683604765625,31.0823513007813],[114.68156375,31.0685500312501],[114.693297148438,31.03870628125],[114.678878203125,31.0148097968751],[114.6960559375,30.9925563789063],[114.707345,30.983843],[114.692916289063,30.9480202460938],[114.68205203125,30.94962425],[114.65263796875,30.93806175],[114.642310820313,30.9395876289062],[114.607345,30.9338430000001],[114.601148710938,30.953911359375],[114.492979765625,31.0324098945313],[114.524351835938,31.090141828125],[114.521832304688,31.1324440742188],[114.46187625,31.1759572578125],[114.4626575,31.1891042304688],[114.432064238281,31.2085622382813],[114.393179960938,31.2357228828125],[114.437345,31.3138430000001],[114.431214628906,31.3388014960938],[114.433616972656,31.3495143867187],[114.421073027344,31.3581716132813],[114.42490359375,31.3752516914063],[114.44326296875,31.3879274726563],[114.451573515625,31.4101369453125],[114.4766809375,31.4045095039062],[114.470103789063,31.4338430000001],[114.4783996875,31.4708473945313],[114.5066809375,31.4645095039063],[114.497862578125,31.5038430000001],[114.506939726563,31.5443361640625],[114.54326296875,31.5579274726563],[114.547345,31.573843],[114.5782434375,31.5611452460938],[114.597506132813,31.5880178046875],[114.633170195313,31.5796681953125]]]]}},{"type":"Feature","properties":{"name":"黄梅县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.962628203125,29.7285622382813],[115.927345,29.7238430000001],[115.90142703125,29.7279274726563],[115.824845,29.7524538398437],[115.736182890625,29.8110451484375],[115.727345,29.823843],[115.731793242188,29.8293971992188],[115.7445325,29.8395998359375],[115.721236601563,29.8792360664063],[115.76388796875,29.8914333320313],[115.761671171875,29.9092604804687],[115.826573515625,29.9824318671875],[115.78134890625,30.0186428046876],[115.820299101563,30.0849025703126],[115.779678984375,30.1095729804688],[115.762896757813,30.1493971992188],[115.751793242188,30.1682888007813],[115.747345,30.183843],[115.75170046875,30.18948753125],[115.78298953125,30.19819846875],[115.822867460938,30.2277663398438],[115.83170046875,30.25948753125],[115.85298953125,30.2681984687501],[115.8810559375,30.2851296210937],[115.91298953125,30.2981984687501],[115.917345,30.303843],[115.943834257813,30.3135695625001],[115.9827746875,30.2891799140625],[115.981300078125,30.2708571601563],[115.99197390625,30.25847190625],[116.05439578125,30.2193727851562],[116.051495390625,30.1832717109375],[116.062535429688,30.1466017890625],[116.0827746875,30.1291677070313],[116.081944609375,30.118843],[116.082745390625,30.108843],[116.079932890625,30.073843],[116.08275515625,30.0387258125001],[116.07187625,29.9686013007812],[116.122769804688,29.8991408515625],[116.121944609375,29.8888356757813],[116.127345,29.823843],[116.066871367188,29.7921218085938],[116.047345,29.763843],[115.962628203125,29.7285622382813]]]]}},{"type":"Feature","properties":{"name":"黄州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.06170046875,30.5894875312501],[115.05298953125,30.54819846875],[115.02170046875,30.5394875312501],[115.01298953125,30.49819846875],[115.00048953125,30.4664040351563],[115.003082304688,30.448843],[115.0016028125,30.4388088203125],[115.007345,30.4038430000001],[114.892437773438,30.4121486640625],[114.857345,30.433843],[114.827574492188,30.4744753242188],[114.837345,30.573843],[114.844644804688,30.5974904609375],[114.893609648438,30.6004079414063],[114.930494414063,30.5591237617188],[114.967882109375,30.5701052070313],[115.012628203125,30.5985622382813],[115.044327421875,30.6484108710938],[115.066783476563,30.6232814765626],[115.077345,30.613843],[115.06170046875,30.5894875312501]]]]}},{"type":"Feature","properties":{"name":"罗田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.554449492188,31.1646364570313],[115.584136992188,31.1467311835938],[115.6060559375,31.1751296210938],[115.6286340625,31.1925563789062],[115.648424101563,31.2181984687501],[115.70298953125,31.19948753125],[115.71170046875,31.18819846875],[115.72298953125,31.17948753125],[115.73170046875,31.15819846875],[115.751656523438,31.142798078125],[115.767345,31.103843],[115.762359648438,31.0722096992188],[115.737345,31.0666017890626],[115.708878203125,31.072983625],[115.70107546875,31.0381716132812],[115.72142703125,31.0241188789063],[115.707672148438,30.9968459296875],[115.654176054688,30.9620119453126],[115.62142703125,30.9497585273438],[115.61326296875,30.9379274726563],[115.597486601563,30.9270363593751],[115.571827421875,30.853843],[115.55142703125,30.8397585273437],[115.54326296875,30.8179274726563],[115.52326296875,30.8041188789063],[115.56326296875,30.8079274726563],[115.575933867188,30.82628440625],[115.600479765625,30.8317873359375],[115.613472929688,30.7788845039063],[115.611124296875,30.7683962226563],[115.627110625,30.7438430000001],[115.611124296875,30.7192897773438],[115.617003203125,30.6930690742188],[115.58142703125,30.6797585273438],[115.57326296875,30.6479274726563],[115.56142703125,30.6397585273438],[115.55326296875,30.6279274726563],[115.547345,30.623843],[115.502784453125,30.6310280585938],[115.482896757813,30.5982888007813],[115.457486601563,30.5875807929687],[115.434019804688,30.5905007148438],[115.422896757813,30.6293971992188],[115.40982546875,30.6516384101563],[115.372799101563,30.6470339179688],[115.362896757813,30.6593971992188],[115.331793242188,30.6682888007813],[115.30701296875,30.6828542304688],[115.332896757813,30.7182888007813],[115.344078398438,30.7573903632813],[115.312706328125,30.8107546210938],[115.2771496875,30.8063307929688],[115.227345,30.7838430000001],[115.21170046875,30.78819846875],[115.18298953125,30.8094875312501],[115.130386992188,30.8205861640625],[115.13314578125,30.8392751289063],[115.107345,30.873843],[115.143023710938,30.8983766914063],[115.141441679688,30.911108625],[115.180504179688,30.942387921875],[115.192144804688,30.92784690625],[115.212545195313,30.93983909375],[115.230079375,30.9179396796875],[115.253951445313,30.9209084296876],[115.250694609375,30.94712425],[115.265777617188,30.9782888007813],[115.281890898438,30.9581642890625],[115.292345,30.9594655585938],[115.302345,30.9582204414063],[115.331041289063,30.9617897773438],[115.353648710938,31.0408718085937],[115.403409453125,31.1089870429688],[115.391436796875,31.1185744453125],[115.413253203125,31.1691115546875],[115.397369414063,31.18183128125],[115.457711210938,31.2301540351563],[115.467345,31.263843],[115.4851965625,31.2708620429688],[115.531129179688,31.2520607734375],[115.535299101563,31.223843],[115.53103640625,31.1949733710938],[115.554449492188,31.1646364570313]]]]}},{"type":"Feature","properties":{"name":"麻城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.767345,30.983843],[114.763292265625,30.9608449531251],[114.7546496875,30.9784084296875],[114.767345,30.983843]]],[[[114.767345,30.983843],[114.760592070313,30.9925905585938],[114.707345,30.983843],[114.6960559375,30.9925563789063],[114.678878203125,31.0148097968751],[114.693297148438,31.03870628125],[114.68156375,31.0685500312501],[114.683604765625,31.0823513007813],[114.712554960938,31.0780739570313],[114.756383085938,31.0908522773438],[114.731070585938,31.1552346015625],[114.734761992188,31.1801882148438],[114.800089140625,31.2677126289063],[114.771143828125,31.3157033515626],[114.773082304688,31.328843],[114.771226835938,31.34140159375],[114.79298953125,31.35819846875],[114.812276640625,31.3831862617188],[114.82170046875,31.44948753125],[114.827345,31.463843],[114.854425078125,31.4817385078125],[114.887345,31.474360578125],[114.917345,31.4810842109375],[114.932847929688,31.4776100898438],[114.962345,31.5004689765625],[114.999600859375,31.4715944648438],[115.003468046875,31.488843],[115.000943632813,31.5000905585938],[115.021998320313,31.5305812812501],[115.053975859375,31.5097585273438],[115.106690703125,31.5244631171875],[115.097193632813,31.56683128125],[115.124215117188,31.5854909492188],[115.121026640625,31.59972190625],[115.167345,31.603843],[115.174010039063,31.5778688789062],[115.226378203125,31.5479811835938],[115.208590117188,31.4905959296876],[115.213468046875,31.4688430000001],[115.205621367188,31.4338430000001],[115.254932890625,31.4153908515625],[115.25037234375,31.3950368476563],[115.280230742188,31.4017311835938],[115.307345,31.3840749335938],[115.33142703125,31.3997585273438],[115.367345,31.403843],[115.3839465625,31.3919435859375],[115.374132109375,31.3422805],[115.412345,31.3498317695313],[115.422345,31.3478542304688],[115.433053007813,31.3499709296875],[115.441519804688,31.3280178046875],[115.454928007813,31.3069020820313],[115.45127078125,31.2884011054688],[115.467345,31.263843],[115.457711210938,31.2301540351563],[115.397369414063,31.18183128125],[115.413253203125,31.1691115546875],[115.391436796875,31.1185744453125],[115.403409453125,31.1089870429688],[115.353648710938,31.0408718085937],[115.331041289063,30.9617897773438],[115.302345,30.9582204414063],[115.292345,30.9594655585938],[115.281890898438,30.9581642890625],[115.265777617188,30.9782888007813],[115.250694609375,30.94712425],[115.253951445313,30.9209084296876],[115.230079375,30.9179396796875],[115.212545195313,30.93983909375],[115.192144804688,30.92784690625],[115.180504179688,30.942387921875],[115.141441679688,30.911108625],[115.143023710938,30.8983766914063],[115.107345,30.873843],[115.077345,30.8938430000001],[115.05142703125,30.8979274726563],[115.04326296875,30.9097585273438],[115.03142703125,30.9179274726563],[115.02326296875,30.9297585273438],[114.99142703125,30.9379274726563],[114.980186796875,30.9542116523438],[114.983468046875,30.9688430000001],[114.981221953125,30.9788430000001],[114.9866809375,31.0031764960938],[114.956392851563,30.9963893867187],[114.891695585938,31.0164430976563],[114.849718046875,30.9891091132813],[114.875474882813,30.9713259101563],[114.857843046875,30.9442482734375],[114.812764921875,30.9543532539063],[114.794913359375,31.0020632148438],[114.767345,30.983843]],[[114.964346953125,31.0194045234375],[114.977345,31.0138430000001],[114.97334109375,31.036567609375],[114.964346953125,31.0194045234375]],[[114.937345,31.023843],[114.933922148438,31.0360353828126],[114.925152617188,31.0272658515625],[114.937345,31.023843]]]]}},{"type":"Feature","properties":{"name":"团风县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.107345,30.873843],[115.13314578125,30.8392751289063],[115.130386992188,30.8205861640625],[115.18298953125,30.8094875312501],[115.21170046875,30.78819846875],[115.227345,30.7838430000001],[115.222740507813,30.7513259101563],[115.202799101563,30.7369704414063],[115.173360625,30.7470778632813],[115.163624296875,30.717563703125],[115.151065703125,30.700122296875],[115.14250125,30.6511550117188],[115.119566679688,30.6346462226563],[115.098116484375,30.6420119453125],[115.083624296875,30.617563703125],[115.077345,30.613843],[115.066783476563,30.6232814765626],[115.044327421875,30.6484108710938],[115.012628203125,30.5985622382813],[114.967882109375,30.5701052070313],[114.930494414063,30.5591237617188],[114.893609648438,30.6004079414063],[114.844644804688,30.5974904609375],[114.837345,30.573843],[114.830704375,30.5772023750001],[114.822315703125,30.6062697578125],[114.800704375,30.6172023750001],[114.797345,30.623843],[114.859561796875,30.6344118476562],[114.84170046875,30.6481984687501],[114.82490359375,30.6699611640626],[114.812345,30.6681032539063],[114.800284453125,30.6698854804688],[114.80312625,30.6891359687501],[114.787701445313,30.7283718085938],[114.829346953125,30.7399684882813],[114.866519804688,30.7623928046876],[114.881954375,30.8001100898437],[114.903922148438,30.786860578125],[114.927345,30.7903200507813],[114.953433867188,30.7864650703125],[114.950699492188,30.8049831367187],[114.995386992188,30.8232717109375],[114.991529570313,30.8493556953125],[115.007603789063,30.8617604804687],[115.040767851563,30.8568605781251],[115.072349882813,30.8759108710938],[115.077345,30.8938430000001],[115.107345,30.873843]]]]}},{"type":"Feature","properties":{"name":"武穴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.613204375,30.2237819648438],[115.661793242188,30.1882888007813],[115.747345,30.183843],[115.751793242188,30.1682888007813],[115.762896757813,30.1493971992188],[115.779678984375,30.1095729804688],[115.820299101563,30.0849025703126],[115.78134890625,30.0186428046876],[115.826573515625,29.9824318671875],[115.761671171875,29.9092604804687],[115.76388796875,29.8914333320313],[115.721236601563,29.8792360664063],[115.7445325,29.8395998359375],[115.731793242188,29.8293971992188],[115.727345,29.823843],[115.692608671875,29.8461550117188],[115.647345,29.853843],[115.633985625,29.847202375],[115.507345,29.843843],[115.46494265625,29.8510475898438],[115.43427859375,29.8907741523437],[115.41170046875,29.90819846875],[115.400670195313,29.9224929023438],[115.403150664063,29.9392873359375],[115.37170046875,29.97819846875],[115.367345,29.993843],[115.402896757813,29.9982888007812],[115.418472929688,30.0177394843751],[115.432706328125,30.0195095039063],[115.463756132813,30.0012575507813],[115.494293242188,30.1081911445313],[115.491685820313,30.129126203125],[115.502896757813,30.1582888007813],[115.516983671875,30.2075539375],[115.537345,30.2100856757813],[115.567735625,30.2063063789063],[115.613204375,30.2237819648438]]]]}},{"type":"Feature","properties":{"name":"英山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.933170195313,31.0696681953126],[115.941519804688,31.0480178046875],[115.998155546875,31.0366628242188],[116.011519804688,31.0180178046875],[116.037345,31.0138430000001],[116.057252226563,31.0082985664063],[116.063404570313,30.9666701484375],[115.99685671875,30.9481374335938],[115.932061796875,30.9000978828126],[115.865894804688,30.8730178046875],[115.848136015625,30.843579328125],[115.8632434375,30.7783937812501],[115.85170046875,30.7694875312501],[115.847345,30.753843],[115.83263796875,30.75962425],[115.817345,30.7573659492188],[115.782916289063,30.7624538398438],[115.757203398438,30.6996364570313],[115.767345,30.6738430000001],[115.76197390625,30.66921409375],[115.75271609375,30.65847190625],[115.7366028125,30.6445876289063],[115.72271609375,30.62847190625],[115.7119153125,30.6191677070313],[115.7127746875,30.6085182929688],[115.70197390625,30.59921409375],[115.69271609375,30.54847190625],[115.67197390625,30.5392140937501],[115.627345,30.5138430000001],[115.61271609375,30.5792140937501],[115.567100859375,30.5895778632812],[115.547345,30.623843],[115.55326296875,30.6279274726563],[115.56142703125,30.6397585273438],[115.57326296875,30.6479274726563],[115.58142703125,30.6797585273438],[115.617003203125,30.6930690742188],[115.611124296875,30.7192897773438],[115.627110625,30.7438430000001],[115.611124296875,30.7683962226563],[115.613472929688,30.7788845039063],[115.600479765625,30.8317873359375],[115.575933867188,30.82628440625],[115.56326296875,30.8079274726563],[115.52326296875,30.8041188789063],[115.54326296875,30.8179274726563],[115.55142703125,30.8397585273437],[115.571827421875,30.853843],[115.597486601563,30.9270363593751],[115.61326296875,30.9379274726563],[115.62142703125,30.9497585273438],[115.654176054688,30.9620119453126],[115.707672148438,30.9968459296875],[115.72142703125,31.0241188789063],[115.70107546875,31.0381716132812],[115.708878203125,31.072983625],[115.737345,31.0666017890626],[115.762359648438,31.0722096992188],[115.767345,31.103843],[115.77326296875,31.1079274726563],[115.78142703125,31.1197585273438],[115.83326296875,31.1279274726563],[115.87125125,31.1526662421876],[115.88142703125,31.1379274726563],[115.887345,31.133843],[115.891519804688,31.0980178046875],[115.913170195313,31.0896681953125],[115.921519804688,31.0780178046876],[115.933170195313,31.0696681953126]]]]}},{"type":"Feature","properties":{"name":"蕲春县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.91408328125,30.5191896796875],[115.899854765625,30.49733909375],[115.891070585938,30.4581667304688],[115.93326296875,30.4297585273438],[115.937345,30.423843],[115.920704375,30.4204836250001],[115.878326445313,30.3820729804688],[115.893599882813,30.3507961250001],[115.919185820313,30.3378517890625],[115.905504179688,30.3098342109375],[115.917345,30.303843],[115.91298953125,30.2981984687501],[115.8810559375,30.2851296210937],[115.85298953125,30.2681984687501],[115.83170046875,30.25948753125],[115.822867460938,30.2277663398438],[115.78298953125,30.19819846875],[115.75170046875,30.18948753125],[115.747345,30.183843],[115.661793242188,30.1882888007813],[115.613204375,30.2237819648438],[115.567735625,30.2063063789063],[115.537345,30.2100856757813],[115.516983671875,30.2075539375],[115.502896757813,30.1582888007813],[115.491685820313,30.129126203125],[115.494293242188,30.1081911445313],[115.463756132813,30.0012575507813],[115.432706328125,30.0195095039063],[115.418472929688,30.0177394843751],[115.402896757813,29.9982888007812],[115.367345,29.993843],[115.323404570313,30.0290309882813],[115.31123171875,30.0989797187501],[115.267345,30.153843],[115.259176054688,30.1656740546875],[115.223682890625,30.1901808906251],[115.207345,30.2138430000001],[115.214029570313,30.2372267890626],[115.251793242188,30.2993971992188],[115.263023710938,30.3083888984375],[115.260582304688,30.32800315625],[115.272345,30.3294655585938],[115.282706328125,30.3281764960938],[115.301983671875,30.3395095039063],[115.334410429688,30.3354763007813],[115.362896757813,30.3582888007813],[115.384263945313,30.3849709296875],[115.424508085938,30.4004396796876],[115.462174101563,30.3957546210938],[115.474049101563,30.4372878242188],[115.498360625,30.4949831367188],[115.55088015625,30.4747975898438],[115.584210234375,30.488843],[115.580865507813,30.5157497382813],[115.592345,30.5300856757813],[115.601890898438,30.5181642890626],[115.612628203125,30.5194997382812],[115.627345,30.5138430000001],[115.67197390625,30.5392140937501],[115.69271609375,30.54847190625],[115.70197390625,30.59921409375],[115.7127746875,30.6085182929688],[115.7119153125,30.6191677070313],[115.72271609375,30.62847190625],[115.7366028125,30.6445876289063],[115.75271609375,30.65847190625],[115.76197390625,30.66921409375],[115.767345,30.6738430000001],[115.798917265625,30.656684796875],[115.81142703125,30.6079274726563],[115.869879179688,30.5929274726563],[115.88142703125,30.5479274726563],[115.89326296875,30.5397585273438],[115.90142703125,30.5279274726563],[115.91408328125,30.5191896796875]]]]}},{"type":"Feature","properties":{"name":"浠水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.344078398438,30.7573903632813],[115.332896757813,30.7182888007813],[115.30701296875,30.6828542304688],[115.331793242188,30.6682888007813],[115.362896757813,30.6593971992188],[115.372799101563,30.6470339179688],[115.40982546875,30.6516384101563],[115.422896757813,30.6293971992188],[115.434019804688,30.5905007148438],[115.457486601563,30.5875807929687],[115.482896757813,30.5982888007813],[115.502784453125,30.6310280585938],[115.547345,30.623843],[115.567100859375,30.5895778632812],[115.61271609375,30.5792140937501],[115.627345,30.5138430000001],[115.612628203125,30.5194997382812],[115.601890898438,30.5181642890626],[115.592345,30.5300856757813],[115.580865507813,30.5157497382813],[115.584210234375,30.488843],[115.55088015625,30.4747975898438],[115.498360625,30.4949831367188],[115.474049101563,30.4372878242188],[115.462174101563,30.3957546210938],[115.424508085938,30.4004396796876],[115.384263945313,30.3849709296875],[115.362896757813,30.3582888007813],[115.334410429688,30.3354763007813],[115.301983671875,30.3395095039063],[115.282706328125,30.3281764960938],[115.272345,30.3294655585938],[115.260582304688,30.32800315625],[115.263023710938,30.3083888984375],[115.251793242188,30.2993971992188],[115.214029570313,30.2372267890626],[115.207345,30.2138430000001],[115.097345,30.2138430000001],[115.08142703125,30.2379274726563],[115.077345,30.263843],[115.084644804688,30.3082814765625],[115.077735625,30.3550417304688],[115.051553984375,30.3984401679688],[115.007345,30.4038430000001],[115.0016028125,30.4388088203125],[115.003082304688,30.448843],[115.00048953125,30.4664040351563],[115.01298953125,30.49819846875],[115.02170046875,30.5394875312501],[115.05298953125,30.54819846875],[115.06170046875,30.5894875312501],[115.077345,30.613843],[115.083624296875,30.617563703125],[115.098116484375,30.6420119453125],[115.119566679688,30.6346462226563],[115.14250125,30.6511550117188],[115.151065703125,30.700122296875],[115.163624296875,30.717563703125],[115.173360625,30.7470778632813],[115.202799101563,30.7369704414063],[115.222740507813,30.7513259101563],[115.227345,30.7838430000001],[115.2771496875,30.8063307929688],[115.312706328125,30.8107546210938],[115.344078398438,30.7573903632813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"通城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.792899199219,29.3193971992188],[113.801846953125,29.29815940625],[113.812506132813,29.2994850898438],[113.868082304688,29.2868605781251],[113.881790800781,29.3193971992188],[113.895284453125,29.3302028632813],[113.890584746094,29.3680031562501],[113.907345,29.3700856757813],[113.931890898438,29.3670339179688],[113.948233671875,29.3874391914063],[114.027345,29.3776003242188],[114.05150515625,29.3806032539062],[114.052967558594,29.368843],[114.051722441406,29.358843],[114.053026152344,29.3483669257813],[114.002899199219,29.3179201484376],[114.013209257813,29.2951638007813],[114.032899199219,29.2793971992188],[114.0432825,29.2314040351563],[114.061790800781,29.2082888007813],[114.067345,29.203843],[114.032291289063,29.1600685859376],[113.981790800781,29.1293971992188],[113.968450957031,29.1127370429688],[113.9462121875,29.0949269843751],[113.941790800781,29.0593971992188],[113.937345,29.053843],[113.885167265625,29.0298830390625],[113.863079863281,29.0595778632813],[113.834454375,29.0709523750001],[113.820423613281,29.1062599921875],[113.767203398438,29.0970973945313],[113.746287871094,29.0689772773438],[113.727345,29.063843],[113.721463652344,29.0887282539063],[113.724730253906,29.1076979804688],[113.679959746094,29.0799880195313],[113.685970488281,29.1149050117188],[113.671610136719,29.1381081367187],[113.659971953125,29.1673976875],[113.683079863281,29.1981081367188],[113.691610136719,29.2347414375],[113.649505644531,29.2274929023438],[113.633079863281,29.2495778632813],[113.601610136719,29.2581081367188],[113.597345,29.2638430000001],[113.613170195313,29.2880178046876],[113.624539824219,29.3174977851563],[113.653170195313,29.3380178046875],[113.663402128906,29.3890602851563],[113.727345,29.393843],[113.731790800781,29.3882888007812],[113.772899199219,29.3593971992188],[113.781790800781,29.3382888007813],[113.792899199219,29.3193971992188]]]]}},{"type":"Feature","properties":{"name":"嘉鱼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.897345,30.013843],[113.887345,30.013843],[113.892345,30.0266506171875],[113.897345,30.013843]]],[[[113.917345,30.0238430000001],[113.905152617188,30.0272658515625],[113.913922148438,30.0360353828125],[113.917345,30.0238430000001]]],[[[113.887345,30.013843],[113.892345,30.0010353828126],[113.897345,30.013843],[113.917345,30.013843],[113.917345,30.0238430000001],[113.922625761719,30.0285622382813],[113.933880644531,30.041157453125],[114.075543242188,30.0849025703126],[114.092064238281,30.1167629218751],[114.042064238281,30.1485622382813],[113.956480742188,30.2083425117188],[113.876578398438,30.1869411445313],[113.857345,30.193843],[113.861678496094,30.2107277656251],[113.916331816406,30.291889875],[113.964525175781,30.3026955390626],[114.00451296875,30.2750856757813],[114.031429472656,30.2279274726563],[114.037345,30.223843],[114.029849882813,30.2047805],[114.07408328125,30.2113161445313],[114.107196074219,30.1977663398438],[114.14298953125,30.14948753125],[114.15670046875,30.1002468085938],[114.18298953125,30.0894875312501],[114.19170046875,30.04819846875],[114.20298953125,30.02948753125],[114.207345,30.003843],[114.17298953125,29.97819846875],[114.107345,29.973843],[114.094205351563,29.9921755195313],[114.063204375,29.9860475898438],[114.053170195313,29.9480178046875],[114.041300078125,29.9191310859375],[114.043983183594,29.9055544257813],[114.021912871094,29.90991721875],[114.003170195313,29.8980178046876],[113.961207304688,29.88960471875],[113.963482695313,29.87808128125],[113.909686308594,29.8672951484375],[113.917144804688,29.8295510078125],[113.891519804688,29.8196681953125],[113.873170195313,29.8080178046875],[113.833660917969,29.7975954414063],[113.822345,29.7998317695313],[113.804285917969,29.7962624335938],[113.765101347656,29.8211403632813],[113.727518339844,29.8056960273438],[113.703170195313,29.8396681953125],[113.671519804688,29.8580178046876],[113.660328398438,29.8736330390625],[113.663333769531,29.888843],[113.661341582031,29.8989235664063],[113.667345,29.923843],[113.817362089844,29.9297194648438],[113.873551054688,30.0005886054687],[113.887345,30.013843]]]]}},{"type":"Feature","properties":{"name":"咸安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.349898710938,30.0384230781251],[114.512154570313,29.9786525703125],[114.527345,29.973843],[114.531158476563,29.9676564765626],[114.544151640625,29.9596486640625],[114.539410429688,29.9444289375],[114.562345,29.9372853828125],[114.589928007813,29.9458766914063],[114.601329375,29.9273757148438],[114.691158476563,29.8976564765625],[114.717345,29.893843],[114.71142703125,29.8697585273438],[114.707345,29.843843],[114.654835234375,29.8391725898438],[114.63326296875,29.8079274726563],[114.59037234375,29.7995510078125],[114.605474882813,29.7763600898438],[114.580406523438,29.7590529609375],[114.52142703125,29.7497585273438],[114.47326296875,29.7079274726563],[114.425513945313,29.6956740546876],[114.407435332031,29.6694899726563],[114.372476835938,29.6564089179688],[114.359176054688,29.6756740546875],[114.347345,29.6838430000001],[114.314315214844,29.67026878125],[114.261839628906,29.6596681953125],[114.227345,29.6738430000001],[114.222240019531,29.688755109375],[114.222550078125,29.703843],[114.222232695313,29.7193508125],[114.187345,29.718637921875],[114.148985625,29.7194216132813],[114.163219023438,29.7610060859375],[114.162242460938,29.808843],[114.163431425781,29.86706565625],[114.107345,29.973843],[114.17298953125,29.97819846875],[114.207345,30.003843],[114.236627226563,29.9977175117188],[114.302725859375,30.013462140625],[114.349898710938,30.0384230781251]]]]}},{"type":"Feature","properties":{"name":"赤壁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.107345,29.973843],[114.163431425781,29.86706565625],[114.162242460938,29.808843],[114.163219023438,29.7610060859375],[114.148985625,29.7194216132813],[114.187345,29.718637921875],[114.222232695313,29.7193508125],[114.222550078125,29.703843],[114.222240019531,29.688755109375],[114.227345,29.6738430000001],[114.191790800781,29.6693971992188],[114.162899199219,29.6582888007812],[114.101790800781,29.6493971992187],[114.06666140625,29.6358937812501],[113.962440214844,29.6526930976563],[113.936473417969,29.6202663398438],[113.861790800781,29.6093971992187],[113.830704375,29.5911208320313],[113.846942167969,29.5488771796875],[113.781790800781,29.5393971992188],[113.760709257813,29.5270021796875],[113.763023710938,29.5083888984375],[113.751790800781,29.4993971992187],[113.742899199219,29.4782888007813],[113.737345,29.473843],[113.705311308594,29.483735578125],[113.682625761719,29.5091237617188],[113.622811308594,29.5202883125],[113.662625761719,29.5385622382813],[113.682064238281,29.5491237617188],[113.702625761719,29.5585622382813],[113.712064238281,29.5691237617188],[113.734730253906,29.5893752265626],[113.702064238281,29.6185622382813],[113.683609648438,29.6392165351563],[113.672074003906,29.6385280585938],[113.659222441406,29.6801467109375],[113.552625761719,29.6737941718751],[113.532625761719,29.6828224921876],[113.5531653125,29.7400661445313],[113.551011992188,29.7761940742188],[113.573109160156,29.837778546875],[113.567345,29.853843],[113.593985625,29.867202375],[113.640704375,29.910483625],[113.667345,29.923843],[113.661341582031,29.8989235664063],[113.663333769531,29.888843],[113.660328398438,29.8736330390625],[113.671519804688,29.8580178046876],[113.703170195313,29.8396681953125],[113.727518339844,29.8056960273438],[113.765101347656,29.8211403632813],[113.804285917969,29.7962624335938],[113.822345,29.7998317695313],[113.833660917969,29.7975954414063],[113.873170195313,29.8080178046875],[113.891519804688,29.8196681953125],[113.917144804688,29.8295510078125],[113.909686308594,29.8672951484375],[113.963482695313,29.87808128125],[113.961207304688,29.88960471875],[114.003170195313,29.8980178046876],[114.021912871094,29.90991721875],[114.043983183594,29.9055544257813],[114.041300078125,29.9191310859375],[114.053170195313,29.9480178046875],[114.063204375,29.9860475898438],[114.094205351563,29.9921755195313],[114.107345,29.973843]]]]}},{"type":"Feature","properties":{"name":"崇阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.347345,29.6838430000001],[114.339696074219,29.638813703125],[114.30170046875,29.60948753125],[114.288631621094,29.5775563789063],[114.269173613281,29.545298078125],[114.273990507813,29.5127028632813],[114.240284453125,29.4989064765625],[114.28170046875,29.4681984687501],[114.31298953125,29.44948753125],[114.322042265625,29.4065822578126],[114.35170046875,29.4109645820313],[114.341749296875,29.3849611640625],[114.32170046875,29.3694875312501],[114.317345,29.363843],[114.265299101563,29.35718284375],[114.250408964844,29.32284690625],[114.252882109375,29.2985768867188],[114.241807890625,29.2691091132813],[114.245076933594,29.237036359375],[114.222022734375,29.2393849921875],[114.202806425781,29.2283815742188],[114.178253203125,29.2177321601563],[114.162345,29.2193532539063],[114.072633085938,29.2102077460937],[114.067345,29.203843],[114.061790800781,29.2082888007813],[114.0432825,29.2314040351563],[114.032899199219,29.2793971992188],[114.013209257813,29.2951638007813],[114.002899199219,29.3179201484376],[114.053026152344,29.3483669257813],[114.051722441406,29.358843],[114.052967558594,29.368843],[114.05150515625,29.3806032539062],[114.027345,29.3776003242188],[113.948233671875,29.3874391914063],[113.931890898438,29.3670339179688],[113.907345,29.3700856757813],[113.890584746094,29.3680031562501],[113.895284453125,29.3302028632813],[113.881790800781,29.3193971992188],[113.868082304688,29.2868605781251],[113.812506132813,29.2994850898438],[113.801846953125,29.29815940625],[113.792899199219,29.3193971992188],[113.781790800781,29.3382888007813],[113.772899199219,29.3593971992188],[113.731790800781,29.3882888007812],[113.727345,29.393843],[113.733475371094,29.4188014960938],[113.731124296875,29.4292897773438],[113.746280546875,29.4525661445313],[113.737345,29.473843],[113.742899199219,29.4782888007813],[113.751790800781,29.4993971992187],[113.763023710938,29.5083888984375],[113.760709257813,29.5270021796875],[113.781790800781,29.5393971992188],[113.846942167969,29.5488771796875],[113.830704375,29.5911208320313],[113.861790800781,29.6093971992187],[113.936473417969,29.6202663398438],[113.962440214844,29.6526930976563],[114.06666140625,29.6358937812501],[114.101790800781,29.6493971992187],[114.162899199219,29.6582888007812],[114.191790800781,29.6693971992188],[114.227345,29.6738430000001],[114.261839628906,29.6596681953125],[114.314315214844,29.67026878125],[114.347345,29.6838430000001]]]]}},{"type":"Feature","properties":{"name":"通山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.917345,29.4538430000001],[114.909405546875,29.4749782539063],[114.923824492188,29.5001540351563],[114.901881132813,29.5183815742188],[114.892198515625,29.5300368476563],[114.882808867188,29.5083815742188],[114.853326445313,29.4674147773438],[114.872769804688,29.4693947578125],[114.882843046875,29.4461623359375],[114.926339140625,29.4299123359375],[114.901881132813,29.4193044257813],[114.884298125,29.3981349921875],[114.848482695313,29.4017848945313],[114.812808867188,29.3883815742188],[114.771881132813,29.3793044257813],[114.744053984375,29.3633693671876],[114.728873320313,29.3983815742188],[114.616749296875,29.3851638007813],[114.597642851563,29.3621608710938],[114.521881132813,29.3293044257813],[114.517345,29.323843],[114.482843046875,29.3323171210938],[114.453013945313,29.3256301093751],[114.440094023438,29.3443434882813],[114.341151152344,29.3200392890625],[114.317345,29.363843],[114.32170046875,29.3694875312501],[114.341749296875,29.3849611640625],[114.35170046875,29.4109645820313],[114.322042265625,29.4065822578126],[114.31298953125,29.44948753125],[114.28170046875,29.4681984687501],[114.240284453125,29.4989064765625],[114.273990507813,29.5127028632813],[114.269173613281,29.545298078125],[114.288631621094,29.5775563789063],[114.30170046875,29.60948753125],[114.339696074219,29.638813703125],[114.347345,29.6838430000001],[114.359176054688,29.6756740546875],[114.372476835938,29.6564089179688],[114.407435332031,29.6694899726563],[114.425513945313,29.6956740546876],[114.47326296875,29.7079274726563],[114.52142703125,29.7497585273438],[114.580406523438,29.7590529609375],[114.605474882813,29.7763600898438],[114.59037234375,29.7995510078125],[114.63326296875,29.8079274726563],[114.654835234375,29.8391725898438],[114.707345,29.843843],[114.731685820313,29.8370632148438],[114.719527617188,29.7547780585938],[114.76205203125,29.73806175],[114.772345,29.7395827460938],[114.782345,29.7381032539063],[114.815479765625,29.7430007148438],[114.83298953125,29.72948753125],[114.84170046875,29.70819846875],[114.873468046875,29.6836794257813],[114.89170046875,29.6181984687501],[114.903140898438,29.5992336250001],[114.901519804688,29.5882717109376],[114.92298953125,29.57948753125],[114.9360559375,29.5625563789063],[114.947345,29.553843],[114.938072539063,29.5344069648438],[114.9705871875,29.5165846992188],[114.93861453125,29.49905784375],[114.930284453125,29.478843],[114.938697539063,29.4584352851563],[114.917345,29.4538430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"广水市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.097345,31.793843],[114.097345,31.803843],[114.107345,31.803843],[114.107345,31.793843],[114.097345,31.793843]]],[[[114.097345,31.793843],[114.104334746094,31.7752419257812],[114.089193144531,31.7072267890625],[114.128033476563,31.6749636054688],[114.101803007813,31.629165265625],[114.103682890625,31.6107106757812],[114.083026152344,31.5557375312501],[114.103363066406,31.538843],[114.091883574219,31.5293044257812],[114.082806425781,31.5183815742188],[114.071795683594,31.5092336250001],[114.072894316406,31.498452375],[114.060855742188,31.488452375],[114.063765898438,31.4599025703126],[114.047345,31.4338430000001],[114.024088164063,31.4436110664063],[114.01033328125,31.4236891914063],[113.968011503906,31.4331764960938],[113.975767851563,31.3985720039063],[113.931861601563,31.3873024726563],[113.927345,31.3938430000001],[113.93197390625,31.39921409375],[113.943197050781,31.4088845039063],[113.899947539063,31.43847190625],[113.881651640625,31.4172365546875],[113.853590117188,31.449809796875],[113.820787382813,31.4377638984375],[113.802345,31.4392458320312],[113.792066679688,31.4384181953125],[113.77271609375,31.4492140937501],[113.718616972656,31.47335471875],[113.66271609375,31.40847190625],[113.619840117188,31.3893386054687],[113.598089628906,31.4145876289063],[113.587345,31.423843],[113.569449492188,31.4509255195312],[113.576827421875,31.483843],[113.571224394531,31.5088430000001],[113.573746367188,31.5200905585938],[113.549176054688,31.5556740546876],[113.530103789063,31.568843],[113.543646269531,31.5781935859376],[113.531043730469,31.6294924140626],[113.544483671875,31.6387721992188],[113.553465605469,31.678843],[113.551160917969,31.6891213203126],[113.565179472656,31.72249534375],[113.549176054688,31.7456740546876],[113.529132109375,31.7595143867188],[113.533465605469,31.7788430000001],[113.527345,31.8061452460938],[113.573260527344,31.8179274726563],[113.582991972656,31.8439333320313],[113.604105253906,31.85851096875],[113.6239075,31.8889235664062],[113.601112089844,31.9183376289063],[113.603465605469,31.9288430000001],[113.600186796875,31.9434743476563],[113.619598417969,31.9715895820313],[113.661007109375,32.000180890625],[113.681429472656,32.0297585273438],[113.693260527344,32.0379274726563],[113.705513945313,32.0856740546876],[113.717345,32.093843],[113.722064238281,32.0885622382813],[113.783961210938,32.0402834296875],[113.748179960938,31.9941139960937],[113.803238554688,31.9688430000001],[113.801405058594,31.9380837226563],[113.832718535156,31.9101076484375],[113.831451445313,31.8888430000001],[113.832642851563,31.868843],[113.831507597656,31.8497878242188],[113.879598417969,31.8469216132813],[113.892625761719,31.8585622382813],[113.916812773438,31.8856301093751],[113.932064238281,31.8685622382813],[113.953221464844,31.8496584296876],[113.939881621094,31.8251076484376],[113.952064238281,31.7985622382812],[113.962625761719,31.7791237617188],[113.976168242188,31.7496193671876],[114.012064238281,31.7691237617188],[114.058685332031,31.7799709296876],[114.097345,31.793843]]]]}},{"type":"Feature","properties":{"name":"曾都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.757345,32.283843],[113.769537382813,32.2804201484375],[113.760767851563,32.2716506171875],[113.757345,32.283843]]],[[[113.597345,32.363843],[113.585152617188,32.3672658515626],[113.593922148438,32.3760353828125],[113.597345,32.363843]]],[[[113.757345,32.363843],[113.760767851563,32.3760353828125],[113.769537382813,32.3672658515626],[113.757345,32.363843]]],[[[113.597345,32.363843],[113.613260527344,32.3679274726563],[113.645804472656,32.416255109375],[113.682183867188,32.4244118476562],[113.707345,32.413843],[113.724166289063,32.4106642890625],[113.730523710938,32.3970217109375],[113.750340605469,32.3877883125001],[113.738638945313,32.3673781562501],[113.757345,32.363843],[113.743648710938,32.3326100898438],[113.757345,32.323843],[113.763543730469,32.3090822578126],[113.757345,32.283843],[113.7388684375,32.2914357734376],[113.743333769531,32.2688430000001],[113.737230253906,32.2379567695313],[113.759244414063,32.2072414375],[113.781519804688,32.2116432929687],[113.773170195313,32.1880178046876],[113.761519804688,32.1696681953126],[113.750797148438,32.1161843085937],[113.718651152344,32.1225368476563],[113.723455839844,32.0982228828126],[113.717345,32.093843],[113.705513945313,32.0856740546876],[113.693260527344,32.0379274726563],[113.681429472656,32.0297585273438],[113.661007109375,32.000180890625],[113.619598417969,31.9715895820313],[113.600186796875,31.9434743476563],[113.603465605469,31.9288430000001],[113.601112089844,31.9183376289063],[113.6239075,31.8889235664062],[113.604105253906,31.85851096875],[113.582991972656,31.8439333320313],[113.573260527344,31.8179274726563],[113.527345,31.8061452460938],[113.533465605469,31.7788430000001],[113.529132109375,31.7595143867188],[113.549176054688,31.7456740546876],[113.565179472656,31.72249534375],[113.551160917969,31.6891213203126],[113.553465605469,31.678843],[113.544483671875,31.6387721992188],[113.531043730469,31.6294924140626],[113.543646269531,31.5781935859376],[113.530103789063,31.568843],[113.549176054688,31.5556740546876],[113.573746367188,31.5200905585938],[113.571224394531,31.5088430000001],[113.576827421875,31.483843],[113.569449492188,31.4509255195312],[113.587345,31.423843],[113.522110625,31.3930666328125],[113.471112089844,31.4308766914063],[113.404190703125,31.4209889960938],[113.382345,31.4078102851563],[113.36298953125,31.4194875312501],[113.333182402344,31.42819846875],[113.32298953125,31.3681984687501],[113.317345,31.343843],[113.294329863281,31.3347951484375],[113.28298953125,31.3494875312501],[113.245213652344,31.360005109375],[113.22978640625,31.3577248359376],[113.196951933594,31.4002638984375],[113.181954375,31.3980471015625],[113.16298953125,31.40948753125],[113.140611601563,31.4186452460938],[113.160091582031,31.4336818671875],[113.121954375,31.4280471015625],[113.096832304688,31.4432009101563],[113.052345,31.436626203125],[113.010250273438,31.4428469062501],[112.987345,31.4338430000001],[112.969053984375,31.445551984375],[112.948533964844,31.4776076484375],[112.90173953125,31.464458234375],[112.893441191406,31.5199391914063],[112.878172636719,31.5547585273438],[112.841248808594,31.5677468085937],[112.827523222656,31.589184796875],[112.781248808594,31.5977468085938],[112.754964628906,31.6157448554688],[112.747345,31.603843],[112.731815214844,31.6116994453126],[112.727345,31.633843],[112.73197390625,31.69921409375],[112.74271609375,31.7184719062501],[112.752345,31.7400490546876],[112.782020292969,31.7376638007813],[112.79197390625,31.74921409375],[112.82271609375,31.7584719062501],[112.84197390625,31.7892140937501],[112.864742460938,31.81847190625],[112.884422636719,31.795630109375],[112.922669707031,31.8400221992188],[112.964530058594,31.8366579414063],[112.959588652344,31.8981496406251],[112.984058867188,31.9090700507813],[113.001998320313,31.9492726875],[113.012647734375,31.9484157539063],[113.03197390625,31.9634181953126],[112.9819153125,31.9784889960938],[112.983148222656,31.993843],[112.981942167969,32.0088430000001],[112.98537234375,32.0515065742187],[113.043004179688,32.1188088203125],[113.021197539063,32.14956565625],[113.022747832031,32.168843],[113.021925078125,32.1790822578125],[113.032818632813,32.2087477851563],[113.019774199219,32.2685524726563],[113.05271609375,32.27847190625],[113.06197390625,32.2892140937501],[113.091363554688,32.314536359375],[113.050738554688,32.349536359375],[113.075213652344,32.3706203437501],[113.102669707031,32.3684157539063],[113.107345,32.373843],[113.132203398438,32.3796022773437],[113.142916289063,32.3780202460937],[113.1595325,32.4186208320313],[113.208546171875,32.4381984687501],[113.23170046875,32.40819846875],[113.277913847656,32.3760622382813],[113.29170046875,32.3581984687501],[113.329080839844,32.3429006171876],[113.310867949219,32.328843],[113.352564726563,32.2966579414063],[113.372735625,32.2996388984376],[113.417345,32.27272971875],[113.46170046875,32.2994875312501],[113.493631621094,32.3125563789063],[113.52170046875,32.32948753125],[113.55298953125,32.33819846875],[113.588250761719,32.3520607734375],[113.597345,32.363843]],[[113.532899199219,32.3108327460938],[113.557345,32.303843],[113.550501738281,32.3277809882813],[113.532899199219,32.3108327460938]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"来凤县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.35271609375,29.62921409375],[109.364754667969,29.5892311835938],[109.388038359375,29.6162526679688],[109.41197390625,29.5884719062501],[109.422772246094,29.5791677070313],[109.421243925781,29.5601369453126],[109.442584257813,29.558423078125],[109.457345,29.5638430000001],[109.452847929688,29.51671409375],[109.436263457031,29.5381984687501],[109.429246855469,29.5248024726562],[109.433436308594,29.4964650703126],[109.406280546875,29.5004787421875],[109.401605253906,29.468843],[109.403765898438,29.4542360664063],[109.365282011719,29.4245314765626],[109.384222441406,29.3763478828125],[109.344173613281,29.3822658515625],[109.331485625,29.3387477851563],[109.35170046875,29.2873244453125],[109.31298953125,29.25819846875],[109.259051542969,29.2361232734376],[109.265301542969,29.193843],[109.260128203125,29.158843],[109.265640898438,29.1215456367188],[109.24205203125,29.1180617500001],[109.227345,29.123843],[109.21064578125,29.14714378125],[109.162296171875,29.1817971015626],[109.132965117188,29.176001203125],[109.109390898438,29.208891828125],[109.115609160156,29.2403566718751],[109.13857546875,29.2765334296875],[109.101226835938,29.2981887031251],[109.111278105469,29.3490505195313],[109.075008574219,29.3965456367188],[109.047345,29.403843],[109.056392851563,29.4268581367187],[109.035282011719,29.4431545234376],[109.053424101563,29.4893093085938],[109.02298953125,29.5017653632813],[109.03170046875,29.5194875312501],[109.05298953125,29.52819846875],[109.061832304688,29.5396584296875],[109.096951933594,29.5344680000001],[109.131832304688,29.5796584296875],[109.146214628906,29.5775319648438],[109.17298953125,29.59819846875],[109.181832304688,29.6096584296876],[109.203516875,29.6064528632813],[109.241954375,29.6296388984376],[109.2620715625,29.6266677070313],[109.29158328125,29.6760085273437],[109.31298953125,29.65948753125],[109.317345,29.653843],[109.32197390625,29.64847190625],[109.35271609375,29.62921409375]]]]}},{"type":"Feature","properties":{"name":"巴东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.437345,31.333843],[110.425328398438,31.2849245429688],[110.460513945313,31.2620119453125],[110.49422,31.249399640625],[110.476434355469,31.2220900703126],[110.468983183594,31.188843],[110.493260527344,31.1797585273438],[110.511429472656,31.1479274726563],[110.537345,31.133843],[110.528995390625,31.122192609375],[110.511519804688,31.1096681953125],[110.503170195313,31.0880178046875],[110.465574980469,31.0781008125],[110.474600859375,31.032426984375],[110.433873320313,31.0167189765626],[110.443389921875,30.9685549140626],[110.425963164063,30.9261428046875],[110.434862089844,30.8811037421875],[110.391519804688,30.8696681953126],[110.353170195313,30.8380178046875],[110.329381132813,30.828843],[110.33341921875,30.8084108710937],[110.313170195313,30.7765163398438],[110.325289335938,30.7496681953125],[110.353170195313,30.7580178046875],[110.392454863281,30.7880178046875],[110.423170195313,30.7796681953125],[110.434539824219,30.7501882148438],[110.457345,30.733843],[110.450045195313,30.6894045234375],[110.454735136719,30.657671125],[110.430233183594,30.6170510078126],[110.464788847656,30.5903786445313],[110.461522246094,30.5682717109375],[110.484078398438,30.5590407539063],[110.47170046875,30.5494875312501],[110.46298953125,30.5281984687501],[110.446058378906,30.5151296210937],[110.423880644531,30.4863991523438],[110.401832304688,30.4896584296876],[110.39298953125,30.47819846875],[110.36103640625,30.469301984375],[110.373294707031,30.4489797187501],[110.361395292969,30.41870628125],[110.373416777344,30.3987770820313],[110.349078398438,30.3659499335938],[110.353084746094,30.338843],[110.35009890625,30.3186452460938],[110.367345,30.313843],[110.362569609375,30.2971388984375],[110.332117949219,30.2470046210938],[110.312345,30.2494655585938],[110.287345,30.2463552070313],[110.261829863281,30.2495290351563],[110.257345,30.233843],[110.240174589844,30.2404421210938],[110.187345,30.233843],[110.18298953125,30.26948753125],[110.168426542969,30.32819846875],[110.15298953125,30.30819846875],[110.113734160156,30.2778981757813],[110.096163359375,30.2804958320312],[110.114095488281,30.3419948554687],[110.109781523438,30.371196515625],[110.124908476563,30.436489484375],[110.121549101563,30.459233625],[110.136392851563,30.4838430000001],[110.116800566406,30.51632346875],[110.123133574219,30.5591701484376],[110.091556425781,30.6285158515626],[110.093084746094,30.6388430000001],[110.089598417969,30.6624269843751],[110.131624785156,30.6948635078125],[110.149049101563,30.7374391914063],[110.185562773438,30.7656252265625],[110.215262480469,30.8040993476563],[110.211087675781,30.8323513007813],[110.173922148438,30.826860578125],[110.148800078125,30.8420143867188],[110.12205203125,30.83806175],[110.107345,30.843843],[110.143194609375,30.9096022773438],[110.142034941406,30.9290529609375],[110.166519804688,30.9879225898438],[110.132030058594,30.9985720039063],[110.1337903125,31.0280837226563],[110.12146609375,31.0390969062501],[110.122642851563,31.058843],[110.12095828125,31.0870925117188],[110.137620878906,31.1177516914063],[110.172625761719,31.1285622382813],[110.195389433594,31.1540383125],[110.171947050781,31.1971779609375],[110.172642851563,31.2088430000001],[110.1717590625,31.2236696601563],[110.150169707031,31.2838430000001],[110.157345,31.303843],[110.172061796875,31.2981862617188],[110.187345,31.3000856757813],[110.202762480469,31.298169171875],[110.273826933594,31.3612013984375],[110.336922636719,31.3982888007813],[110.372899199219,31.3893971992188],[110.381790800781,31.3782888007813],[110.432899199219,31.3593971992188],[110.437345,31.333843]]]]}},{"type":"Feature","properties":{"name":"建始县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.896070585938,30.9010329414063],[109.9466809375,30.88718284375],[109.990719023438,30.8907204414063],[110.008089628906,30.8595876289062],[110.02197390625,30.82847190625],[110.03271609375,30.81921409375],[110.049947539063,30.7992140937501],[110.074847441406,30.8093361640626],[110.096600371094,30.8345876289063],[110.107345,30.843843],[110.12205203125,30.83806175],[110.148800078125,30.8420143867188],[110.173922148438,30.826860578125],[110.211087675781,30.8323513007813],[110.215262480469,30.8040993476563],[110.185562773438,30.7656252265625],[110.149049101563,30.7374391914063],[110.131624785156,30.6948635078125],[110.089598417969,30.6624269843751],[110.093084746094,30.6388430000001],[110.091556425781,30.6285158515626],[110.123133574219,30.5591701484376],[110.116800566406,30.51632346875],[110.136392851563,30.4838430000001],[110.121549101563,30.459233625],[110.124908476563,30.436489484375],[110.109781523438,30.371196515625],[110.114095488281,30.3419948554687],[110.096163359375,30.2804958320312],[110.113734160156,30.2778981757813],[110.15298953125,30.30819846875],[110.168426542969,30.32819846875],[110.18298953125,30.26948753125],[110.187345,30.233843],[110.180035429688,30.2053639960938],[110.140924101563,30.1798952460938],[110.101429472656,30.1697585273438],[110.083260527344,30.1579274726563],[110.050513945313,30.1456740546876],[110.02084109375,30.126352765625],[109.983260527344,30.1179274726563],[109.977345,30.113843],[109.972899199219,30.1393971992188],[109.961790800781,30.1482888007813],[109.952899199219,30.1793971992187],[109.941666289063,30.1883888984375],[109.943011503906,30.1992018867188],[109.931790800781,30.2182888007813],[109.922899199219,30.2422731757813],[109.944774199219,30.2597927070313],[109.971790800781,30.3022731757813],[109.946239042969,30.3227370429688],[109.932899199219,30.3393971992188],[109.921790800781,30.3482888007813],[109.895553007813,30.4192604804688],[109.867142363281,30.4420143867188],[109.873707304688,30.4947975898438],[109.902659941406,30.4777809882813],[109.911790800781,30.49722190625],[109.880218535156,30.5404445625001],[109.847345,30.5363552070313],[109.810213652344,30.5409743476562],[109.813211699219,30.5168703437501],[109.792345,30.5194655585938],[109.767366972656,30.5163576484376],[109.743746367188,30.4868630195313],[109.712899199219,30.5093971992188],[109.655758085938,30.5217580390626],[109.628175078125,30.567173078125],[109.601790800781,30.5782888007813],[109.582899199219,30.5893971992188],[109.561790800781,30.5982888007813],[109.550267363281,30.6126808906251],[109.557345,30.643843],[109.584818144531,30.6628102851563],[109.581224394531,30.678843],[109.585574980469,30.6982570625001],[109.623260527344,30.7079274726563],[109.652049589844,30.730239484375],[109.657345,30.763843],[109.692086210938,30.7792653632813],[109.711849394531,30.7776784492188],[109.712747832031,30.7888430000001],[109.711243925781,30.8075514960938],[109.774686308594,30.8471486640625],[109.896070585938,30.9010329414063]]]]}},{"type":"Feature","properties":{"name":"恩施市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.317345,30.613843],[109.320767851563,30.6260353828125],[109.329537382813,30.6172658515626],[109.317345,30.613843]]],[[[109.317345,30.613843],[109.322064238281,30.5985622382813],[109.355999785156,30.554770734375],[109.332625761719,30.5117580390625],[109.348814726563,30.4891237617188],[109.416773710938,30.5658083320313],[109.432808867188,30.6007497382813],[109.526383085938,30.6661110664063],[109.542064238281,30.6485622382813],[109.557345,30.643843],[109.550267363281,30.6126808906251],[109.561790800781,30.5982888007813],[109.582899199219,30.5893971992188],[109.601790800781,30.5782888007813],[109.628175078125,30.567173078125],[109.655758085938,30.5217580390626],[109.712899199219,30.5093971992188],[109.743746367188,30.4868630195313],[109.767366972656,30.5163576484376],[109.792345,30.5194655585938],[109.813211699219,30.5168703437501],[109.810213652344,30.5409743476562],[109.847345,30.5363552070313],[109.880218535156,30.5404445625001],[109.911790800781,30.49722190625],[109.902659941406,30.4777809882813],[109.873707304688,30.4947975898438],[109.867142363281,30.4420143867188],[109.895553007813,30.4192604804688],[109.921790800781,30.3482888007813],[109.932899199219,30.3393971992188],[109.946239042969,30.3227370429688],[109.971790800781,30.3022731757813],[109.944774199219,30.2597927070313],[109.922899199219,30.2422731757813],[109.931790800781,30.2182888007813],[109.943011503906,30.1992018867188],[109.941666289063,30.1883888984375],[109.952899199219,30.1793971992187],[109.961790800781,30.1482888007813],[109.972899199219,30.1393971992188],[109.977345,30.113843],[109.949466582031,30.1066872382813],[109.954586210938,30.083843],[109.949781523438,30.062407453125],[109.917345,30.083843],[109.912613554688,30.1103981757813],[109.891998320313,30.1082985664063],[109.862589140625,30.1294631171875],[109.812515898438,30.11831565625],[109.796497832031,30.1199489570313],[109.772779570313,30.0652614570313],[109.736783476563,30.1085964179688],[109.681883574219,30.1183815742188],[109.672806425781,30.1293044257813],[109.661883574219,30.1383815742187],[109.652806425781,30.1493044257813],[109.628353300781,30.1599123359375],[109.651417265625,30.2212966132813],[109.602345,30.216294171875],[109.572022734375,30.2193849921875],[109.520699492188,30.1899904609375],[109.523707304688,30.1604885078125],[109.498443632813,30.1012380195313],[109.514537382813,30.0878688789063],[109.467479277344,30.0293044257813],[109.442806425781,30.0693044257813],[109.427728300781,30.0783815742188],[109.392667265625,30.0583010078125],[109.361954375,30.0614308906251],[109.312720976563,30.0021584296875],[109.302806425781,29.9683815742188],[109.291883574219,29.9593044257813],[109.252806425781,29.9083815742187],[109.241883574219,29.8993044257813],[109.225455351563,29.8795290351563],[109.201883574219,29.8693044257813],[109.187345,29.843843],[109.1725403125,29.8561403632813],[109.16060671875,29.896801984375],[109.171256132813,30.0012795234375],[109.137093535156,29.9977980781251],[109.147345,30.043843],[109.14271609375,30.04921409375],[109.129661894531,30.0604616523438],[109.134681425781,30.122934796875],[109.15271609375,30.13847190625],[109.158563261719,30.16847190625],[109.11435671875,30.1438063789062],[109.09271609375,30.1861598945313],[109.14271609375,30.20847190625],[109.180250273438,30.2294118476563],[109.193963652344,30.2283107734376],[109.21197390625,30.24921409375],[109.298912382813,30.3116408515625],[109.31197390625,30.3350856757813],[109.28197390625,30.3484719062501],[109.24451296875,30.3919509101563],[109.182039824219,30.3783229804688],[109.17271609375,30.39921409375],[109.134288359375,30.4107863593751],[109.12271609375,30.44921409375],[109.101573515625,30.4790358710938],[109.12271609375,30.48847190625],[109.137345,30.523843],[109.161429472656,30.5397585273438],[109.185516386719,30.5487721992188],[109.219176054688,30.5720119453125],[109.231429472656,30.5897585273438],[109.263260527344,30.6079274726563],[109.292271757813,30.6304128242188],[109.317345,30.613843]]]]}},{"type":"Feature","properties":{"name":"鹤峰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.867345,29.993843],[109.880042753906,29.9992775703126],[109.871397734375,30.016841046875],[109.851041289063,29.9980275703125],[109.860213652344,30.0389382148438],[109.909046660156,30.0718239570313],[109.917345,30.083843],[109.949781523438,30.062407453125],[109.954586210938,30.083843],[109.949466582031,30.1066872382813],[109.977345,30.113843],[109.983260527344,30.1179274726563],[110.02084109375,30.126352765625],[110.050513945313,30.1456740546876],[110.083260527344,30.1579274726563],[110.101429472656,30.1697585273438],[110.140924101563,30.1798952460938],[110.180035429688,30.2053639960938],[110.187345,30.233843],[110.240174589844,30.2404421210938],[110.257345,30.233843],[110.261519804688,30.2280178046875],[110.300238066406,30.2130837226563],[110.266417265625,30.188843],[110.293455839844,30.1694631171875],[110.291226835938,30.1581789375],[110.346712675781,30.1277248359375],[110.320369902344,30.108843],[110.341297636719,30.0938430000001],[110.321234160156,30.0794631171875],[110.323455839844,30.0682228828126],[110.311234160156,30.0594631171875],[110.313367949219,30.04866721875],[110.300125761719,30.0050759101563],[110.305308867188,29.9788430000001],[110.300054960938,29.9522585273438],[110.338031035156,29.9447560859375],[110.361912871094,29.9599172187501],[110.379378691406,29.9564650703126],[110.423170195313,29.9680178046876],[110.447511015625,30.0019777656251],[110.487345,30.0238430000001],[110.496600371094,30.0130983710938],[110.551956816406,29.9964333320313],[110.504920683594,29.9559084296875],[110.501485625,29.9131496406251],[110.53271609375,29.89921409375],[110.54810671875,29.8481008125],[110.569034453125,29.8497829414062],[110.618595,29.8276662421875],[110.638504667969,29.7734572578125],[110.627345,29.763843],[110.57197390625,29.72921409375],[110.56271609375,29.71847190625],[110.54197390625,29.70921409375],[110.522623320313,29.6984181953125],[110.512345,29.6992458320313],[110.502142363281,29.6984255195312],[110.457117949219,29.710747296875],[110.439632597656,29.6715554023438],[110.401600371094,29.6545876289063],[110.364525175781,29.63390159375],[110.332669707031,29.6708766914063],[110.296651640625,29.667983625],[110.28271609375,29.6992140937501],[110.227252226563,29.7469997382813],[110.15197390625,29.75847190625],[110.126073027344,29.7885329414063],[110.077178984375,29.79847190625],[110.013607207031,29.7751247382813],[109.947345,29.7804494453125],[109.902345,29.7768337226563],[109.867345,29.7796462226563],[109.820025664063,29.7758449531251],[109.787345,29.763843],[109.78298953125,29.76948753125],[109.771529570313,29.7783303046875],[109.77677859375,29.813843],[109.764193144531,29.8990138984375],[109.81298953125,29.92819846875],[109.823065214844,29.9528224921876],[109.843160429688,29.9683303046875],[109.841522246094,29.9794142890625],[109.86298953125,29.98819846875],[109.867345,29.993843]]]]}},{"type":"Feature","properties":{"name":"利川市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.517345,30.0638430000001],[108.513922148438,30.0516506171875],[108.505152617188,30.0604201484375],[108.517345,30.0638430000001]]],[[[108.507345,29.883843],[108.511351347656,29.8611183906251],[108.520343046875,29.8782814765625],[108.51298953125,29.89819846875],[108.52170046875,29.95948753125],[108.53420046875,29.9912819648437],[108.524268828125,30.0584987617188],[108.517345,30.0638430000001],[108.54271609375,30.10847190625],[108.564625273438,30.1575710273437],[108.551165800781,30.1691677070313],[108.553287382813,30.1955593085938],[108.576805449219,30.2596022773438],[108.556842070313,30.2579982734376],[108.51271609375,30.3092140937501],[108.454449492188,30.3594142890625],[108.433280058594,30.3577126289063],[108.39271609375,30.3812404609375],[108.41271609375,30.39847190625],[108.425811796875,30.4136696601563],[108.411219511719,30.4398244453126],[108.413148222656,30.463843],[108.411925078125,30.4790822578126],[108.417345,30.493843],[108.501470976563,30.4997902656251],[108.545438261719,30.4971681953126],[108.56224734375,30.4783571601562],[108.586204863281,30.4913747382813],[108.602064238281,30.5091237617188],[108.643404570313,30.5460622382813],[108.641453886719,30.5788039375],[108.679115019531,30.5985622382813],[108.719281035156,30.5110475898437],[108.735416289063,30.4966310859375],[108.7905871875,30.5114064765625],[108.808306914063,30.4915749335938],[108.867835722656,30.5331545234375],[108.897345,30.583843],[108.943985625,30.607202375],[108.971883574219,30.6315114570313],[108.982362089844,30.626391828125],[109.017345,30.643843],[109.033568144531,30.6496633125],[109.062345,30.6479494453125],[109.089830351563,30.6495876289063],[109.121224394531,30.6351784492188],[109.077532988281,30.5961428046876],[109.114261503906,30.545532453125],[109.132625761719,30.5291237617188],[109.137345,30.523843],[109.12271609375,30.48847190625],[109.101573515625,30.4790358710938],[109.12271609375,30.44921409375],[109.134288359375,30.4107863593751],[109.17271609375,30.39921409375],[109.182039824219,30.3783229804688],[109.24451296875,30.3919509101563],[109.28197390625,30.3484719062501],[109.31197390625,30.3350856757813],[109.298912382813,30.3116408515625],[109.21197390625,30.24921409375],[109.193963652344,30.2283107734376],[109.180250273438,30.2294118476563],[109.14271609375,30.20847190625],[109.09271609375,30.1861598945313],[109.11435671875,30.1438063789062],[109.158563261719,30.16847190625],[109.15271609375,30.13847190625],[109.134681425781,30.122934796875],[109.129661894531,30.0604616523438],[109.14271609375,30.04921409375],[109.147345,30.043843],[109.12197390625,30.02921409375],[109.108089628906,30.0130983710938],[109.085865507813,29.9939528632813],[109.064849882813,30.018344953125],[109.013819609375,29.9821633125],[108.99271609375,29.94847190625],[108.976102324219,29.93921409375],[108.959364042969,29.9767311835938],[108.962877226563,30.0204616523438],[108.939476347656,30.0406203437501],[108.905858183594,30.0379201484376],[108.89271609375,30.0084719062501],[108.872257109375,29.9908425117187],[108.852706328125,29.8784133125001],[108.835272246094,29.8798122382813],[108.772074003906,29.8683547187501],[108.762474394531,29.8794948554688],[108.740345488281,29.8671486640626],[108.71271609375,29.89921409375],[108.695865507813,29.9137331367188],[108.68271609375,29.89847190625],[108.66197390625,29.8892140937501],[108.64271609375,29.87847190625],[108.62197390625,29.86921409375],[108.617345,29.863843],[108.587955351563,29.8592116523438],[108.569176054688,29.8320119453125],[108.551429472656,29.8197585273438],[108.518082304688,29.7702370429687],[108.547166777344,29.7501564765625],[108.511429472656,29.7297585273438],[108.507345,29.7138430000001],[108.491790800781,29.7182888007813],[108.442000761719,29.7475588203125],[108.432860136719,29.7795290351563],[108.421820097656,29.7781569648438],[108.412899199219,29.8193971992188],[108.401790800781,29.8282888007813],[108.392083769531,29.840415265625],[108.387345,29.823843],[108.363441191406,29.8296388984375],[108.384644804688,29.8576174140626],[108.413441191406,29.8677468085938],[108.424964628906,29.8857448554688],[108.462345,29.8601467109375],[108.491248808594,29.8799391914063],[108.507345,29.883843]]]]}},{"type":"Feature","properties":{"name":"咸丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.777345,29.653843],[108.767345,29.653843],[108.767345,29.663843],[108.777345,29.663843],[108.777345,29.653843]]],[[[108.777345,29.653843],[108.790340605469,29.6598976875],[108.779478789063,29.6788430000001],[108.788599882813,29.6947536445313],[108.744166289063,29.6899831367188],[108.764166289063,29.6806642890626],[108.767345,29.663843],[108.744554472656,29.655473859375],[108.73271609375,29.66921409375],[108.711812773438,29.6872243476563],[108.712847929688,29.7000881171875],[108.681842070313,29.6975978828125],[108.682747832031,29.708843],[108.674827910156,29.8073952460938],[108.661917753906,29.8185182929688],[108.664007597656,29.844546125],[108.617345,29.863843],[108.62197390625,29.86921409375],[108.64271609375,29.87847190625],[108.66197390625,29.8892140937501],[108.68271609375,29.89847190625],[108.695865507813,29.9137331367188],[108.71271609375,29.89921409375],[108.740345488281,29.8671486640626],[108.762474394531,29.8794948554688],[108.772074003906,29.8683547187501],[108.835272246094,29.8798122382813],[108.852706328125,29.8784133125001],[108.872257109375,29.9908425117187],[108.89271609375,30.0084719062501],[108.905858183594,30.0379201484376],[108.939476347656,30.0406203437501],[108.962877226563,30.0204616523438],[108.959364042969,29.9767311835938],[108.976102324219,29.93921409375],[108.99271609375,29.94847190625],[109.013819609375,29.9821633125],[109.064849882813,30.018344953125],[109.085865507813,29.9939528632813],[109.108089628906,30.0130983710938],[109.12197390625,30.02921409375],[109.147345,30.043843],[109.137093535156,29.9977980781251],[109.171256132813,30.0012795234375],[109.16060671875,29.896801984375],[109.1725403125,29.8561403632813],[109.187345,29.843843],[109.201571074219,29.81687034375],[109.23287234375,29.8071218085937],[109.270572539063,29.8376564765625],[109.31064578125,29.828384015625],[109.328831816406,29.8024831367188],[109.313531523438,29.7776564765626],[109.299229765625,29.768843],[109.314154082031,29.7596486640625],[109.307672148438,29.738843],[109.313902617188,29.7188430000001],[109.308372832031,29.7010915351563],[109.336888457031,29.6658864570312],[109.317345,29.653843],[109.31298953125,29.65948753125],[109.29158328125,29.6760085273437],[109.2620715625,29.6266677070313],[109.241954375,29.6296388984376],[109.203516875,29.6064528632813],[109.181832304688,29.6096584296876],[109.17298953125,29.59819846875],[109.146214628906,29.5775319648438],[109.131832304688,29.5796584296875],[109.096951933594,29.5344680000001],[109.061832304688,29.5396584296875],[109.05298953125,29.52819846875],[109.03170046875,29.5194875312501],[109.02298953125,29.5017653632813],[109.053424101563,29.4893093085938],[109.035282011719,29.4431545234376],[109.056392851563,29.4268581367187],[109.047345,29.403843],[109.043985625,29.3972023750001],[109.030704375,29.3904836250001],[109.023985625,29.367202375],[108.985201445313,29.3593727851563],[108.973985625,29.337202375],[108.917345,29.3338430000001],[108.933592558594,29.4083278632813],[108.931566191406,29.433540265625],[108.877664824219,29.4497682929688],[108.86271609375,29.4726247382813],[108.884173613281,29.5110817695313],[108.881197539063,29.5481203437501],[108.906099882813,29.5832424140625],[108.867174101563,29.6006130195313],[108.885523710938,29.633501203125],[108.85197390625,29.64847190625],[108.842669707031,29.6592702460938],[108.832345,29.6584401679687],[108.821998320313,29.6592726875],[108.812691679688,29.6384133125],[108.797345,29.6396462226563],[108.781990996094,29.6384133125],[108.777345,29.653843]]]]}},{"type":"Feature","properties":{"name":"宣恩县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.867345,29.993843],[109.871397734375,30.016841046875],[109.880042753906,29.9992775703126],[109.867345,29.993843]]],[[[109.867345,29.993843],[109.86298953125,29.98819846875],[109.841522246094,29.9794142890625],[109.843160429688,29.9683303046875],[109.823065214844,29.9528224921876],[109.81298953125,29.92819846875],[109.764193144531,29.8990138984375],[109.77677859375,29.813843],[109.771529570313,29.7783303046875],[109.78298953125,29.76948753125],[109.787345,29.763843],[109.772860136719,29.7538430000001],[109.751380644531,29.6925612617187],[109.711065703125,29.6695510078126],[109.713565703125,29.6583962226563],[109.700828886719,29.6388356757812],[109.717345,29.613843],[109.655220976563,29.603637921875],[109.637452421875,29.6266579414063],[109.578426542969,29.63819846875],[109.55978640625,29.614048078125],[109.511253691406,29.6212209296875],[109.513160429688,29.6083303046875],[109.50170046875,29.59948753125],[109.482987089844,29.5537624335937],[109.457345,29.5638430000001],[109.442584257813,29.558423078125],[109.421243925781,29.5601369453126],[109.422772246094,29.5791677070313],[109.41197390625,29.5884719062501],[109.388038359375,29.6162526679688],[109.364754667969,29.5892311835938],[109.35271609375,29.62921409375],[109.32197390625,29.64847190625],[109.317345,29.653843],[109.336888457031,29.6658864570312],[109.308372832031,29.7010915351563],[109.313902617188,29.7188430000001],[109.307672148438,29.738843],[109.314154082031,29.7596486640625],[109.299229765625,29.768843],[109.313531523438,29.7776564765626],[109.328831816406,29.8024831367188],[109.31064578125,29.828384015625],[109.270572539063,29.8376564765625],[109.23287234375,29.8071218085937],[109.201571074219,29.81687034375],[109.187345,29.843843],[109.201883574219,29.8693044257813],[109.225455351563,29.8795290351563],[109.241883574219,29.8993044257813],[109.252806425781,29.9083815742187],[109.291883574219,29.9593044257813],[109.302806425781,29.9683815742188],[109.312720976563,30.0021584296875],[109.361954375,30.0614308906251],[109.392667265625,30.0583010078125],[109.427728300781,30.0783815742188],[109.442806425781,30.0693044257813],[109.467479277344,30.0293044257813],[109.514537382813,30.0878688789063],[109.498443632813,30.1012380195313],[109.523707304688,30.1604885078125],[109.520699492188,30.1899904609375],[109.572022734375,30.2193849921875],[109.602345,30.216294171875],[109.651417265625,30.2212966132813],[109.628353300781,30.1599123359375],[109.652806425781,30.1493044257813],[109.661883574219,30.1383815742187],[109.672806425781,30.1293044257813],[109.681883574219,30.1183815742188],[109.736783476563,30.1085964179688],[109.772779570313,30.0652614570313],[109.796497832031,30.1199489570313],[109.812515898438,30.11831565625],[109.862589140625,30.1294631171875],[109.891998320313,30.1082985664063],[109.912613554688,30.1103981757813],[109.917345,30.083843],[109.909046660156,30.0718239570313],[109.860213652344,30.0389382148438],[109.851041289063,29.9980275703125],[109.867345,29.993843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"潜江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.797345,30.1038430000001],[112.793922148438,30.1160353828126],[112.785152617188,30.1072658515625],[112.805577421875,30.0872829414063],[112.737345,30.083843],[112.732899199219,30.0893971992188],[112.656239042969,30.1027370429688],[112.642799101563,30.1195217109375],[112.632345,30.1182204414063],[112.607345,30.1213307929688],[112.573216582031,30.1170851875],[112.59326296875,30.1692409492188],[112.571790800781,30.1782888007813],[112.562899199219,30.2293971992188],[112.540694609375,30.2671657539063],[112.517345,30.273843],[112.511722441406,30.3188405585938],[112.515064726563,30.3457106757813],[112.496558867188,30.3771901679688],[112.523802519531,30.3886721015626],[112.517345,30.393843],[112.523475371094,30.4188014960938],[112.519466582031,30.4366872382812],[112.579464140625,30.4520851875],[112.568983183594,30.498843],[112.574893828125,30.5252077460938],[112.608951445313,30.5030300117188],[112.621429472656,30.5172145820313],[112.59611453125,30.55608909375],[112.613260527344,30.5679274726563],[112.625377226563,30.6003127265625],[112.621051054688,30.6196169257812],[112.643260527344,30.6279274726563],[112.647345,30.643843],[112.657345,30.643843],[112.661461210938,30.6366237617188],[112.689691191406,30.6472658515626],[112.697345,30.6338430000001],[112.674129667969,30.615923078125],[112.669427519531,30.5840993476563],[112.69373171875,30.5526149726563],[112.733924589844,30.576860578125],[112.756737089844,30.5802297187501],[112.791131621094,30.5661550117187],[112.806165800781,30.5121681953125],[112.863863554688,30.48948753125],[112.876536894531,30.5154763007813],[112.87045046875,30.5566677070313],[112.906143828125,30.57819846875],[112.93298953125,30.55948753125],[112.947345,30.523843],[112.933079863281,30.5132302070313],[112.951732207031,30.4778762031251],[112.966009550781,30.4803346992188],[112.99380984375,30.4692873359376],[112.981412382813,30.4492580390625],[112.983795195313,30.4354225898438],[112.953079863281,30.3857936835938],[112.961610136719,30.3581081367187],[112.973304472656,30.3494118476563],[112.969979277344,30.3301052070313],[113.003287382813,30.2893215156251],[113.001483183594,30.278843],[113.003206816406,30.268843],[112.994207792969,30.2165822578126],[113.013038359375,30.2198220039063],[113.017345,30.193843],[113.011600371094,30.1588771796875],[113.014193144531,30.141333234375],[112.987345,30.1373659492188],[112.972345,30.1395827460938],[112.950809355469,30.1363991523438],[112.93298953125,30.1594875312501],[112.90170046875,30.16819846875],[112.860101347656,30.1845534492188],[112.83298953125,30.16819846875],[112.81170046875,30.1594875312501],[112.80298953125,30.1081984687501],[112.797345,30.1038430000001]]]]}},{"type":"Feature","properties":{"name":"神农架林区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.664251738281,31.8631252265626],[110.707667265625,31.8456740546875],[110.751610136719,31.8381081367188],[110.757345,31.833843],[110.768631621094,31.8251296210938],[110.801698027344,31.7822927070313],[110.83298953125,31.76948753125],[110.84170046875,31.75819846875],[110.861829863281,31.7426613593751],[110.888157988281,31.6705007148438],[110.97818484375,31.6552077460938],[110.934559355469,31.5963649726563],[110.947345,31.563843],[110.920330839844,31.5589162421875],[110.90271609375,31.53847190625],[110.88197390625,31.5292140937501],[110.87271609375,31.51847190625],[110.847769804688,31.49921409375],[110.82271609375,31.53921409375],[110.795982695313,31.5511452460938],[110.739742460938,31.546626203125],[110.714320097656,31.4896535468751],[110.610845976563,31.4790993476563],[110.586766386719,31.4251369453125],[110.57271609375,31.3784719062501],[110.561917753906,31.3691677070313],[110.565135527344,31.3291115546875],[110.527769804688,31.31921409375],[110.494212675781,31.3727907539063],[110.47271609375,31.3384719062501],[110.437345,31.333843],[110.432899199219,31.3593971992188],[110.381790800781,31.3782888007813],[110.372899199219,31.3893971992188],[110.336922636719,31.3982888007813],[110.273826933594,31.3612013984375],[110.202762480469,31.298169171875],[110.187345,31.3000856757813],[110.172061796875,31.2981862617188],[110.157345,31.303843],[110.15298953125,31.3094875312501],[110.138414335938,31.3853005195313],[110.12170046875,31.39819846875],[110.11298953125,31.40948753125],[110.05170046875,31.41819846875],[110.006988554688,31.4513503242188],[109.99298953125,31.46948753125],[109.937345,31.4738430000001],[109.940704375,31.4904836250001],[109.96062625,31.50056175],[109.967345,31.5138430000001],[110.023260527344,31.5279274726563],[110.053116484375,31.5473708320313],[110.057345,31.563843],[110.109144316406,31.5974318671876],[110.167235136719,31.6074318671875],[110.187203398438,31.5805886054688],[110.219117460938,31.5750954414063],[110.224830351563,31.6082741523437],[110.206077910156,31.6222243476563],[110.233577910156,31.6587721992187],[110.213079863281,31.6918923164063],[110.234771757813,31.736860578125],[110.263079863281,31.7481081367188],[110.271610136719,31.7595778632813],[110.359366484375,31.7687673164063],[110.371610136719,31.7995778632813],[110.393079863281,31.8081081367188],[110.404049101563,31.8228542304688],[110.459505644531,31.813305890625],[110.471610136719,31.8295778632813],[110.483304472656,31.8382741523438],[110.480389433594,31.8552053046875],[110.522345,31.8479811835937],[110.542345,31.8514260078125],[110.562345,31.8479811835937],[110.572345,31.8497048164063],[110.582345,31.8479811835937],[110.592345,31.8497048164063],[110.602345,31.8479811835937],[110.612345,31.8497048164063],[110.622345,31.8479811835937],[110.632345,31.8497048164063],[110.651776152344,31.8463576484376],[110.664251738281,31.8631252265626]]]]}},{"type":"Feature","properties":{"name":"天门市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.827345,30.733843],[112.815152617188,30.7304201484376],[112.823922148438,30.7216506171876],[112.874520292969,30.6994899726562],[112.89209109375,30.7191555],[112.91209109375,30.71796409375],[112.946646757813,30.7566384101563],[112.972625761719,30.7685622382812],[112.994798613281,30.7933766914063],[113.030660429688,30.7738893867188],[113.062625761719,30.7885622382813],[113.073116484375,30.8225368476563],[113.130472441406,30.8019557929687],[113.162120390625,30.8191555],[113.191141386719,30.8174245429688],[113.202625761719,30.8385622382813],[113.212078886719,30.8591579414063],[113.22259890625,30.8585305000001],[113.232064238281,30.8691237617188],[113.242625761719,30.8785622382813],[113.260377226563,30.8984279609376],[113.27908328125,30.8995436835938],[113.327345,30.8938430000001],[113.337345,30.8938430000001],[113.337345,30.873843],[113.357345,30.873843],[113.357345,30.853843],[113.377345,30.853843],[113.4284778125,30.7853395820313],[113.421549101563,30.738452375],[113.433140898438,30.719233625],[113.430867949219,30.7038430000001],[113.433084746094,30.688843],[113.429078398438,30.6617360664063],[113.456092558594,30.6253005195313],[113.426307402344,30.5571413398438],[113.446392851563,30.523843],[113.430282011719,30.4971315742187],[113.45298953125,30.45948753125],[113.457345,30.393843],[113.449344511719,30.3838503242188],[113.422703886719,30.3995095039063],[113.412039824219,30.3981838203125],[113.358690214844,30.4212136054688],[113.257345,30.4338185859375],[113.203407011719,30.4271096015625],[113.172406035156,30.4497560859376],[113.147928496094,30.4353688789062],[113.131790800781,30.4482888007813],[113.111414824219,30.4818361640625],[113.063338652344,30.4758571601563],[113.061722441406,30.488843],[113.064210234375,30.508843],[113.041790800781,30.5182888007813],[113.00865359375,30.5377687812501],[112.947345,30.523843],[112.93298953125,30.55948753125],[112.906143828125,30.57819846875],[112.87045046875,30.5566677070313],[112.876536894531,30.5154763007813],[112.863863554688,30.48948753125],[112.806165800781,30.5121681953125],[112.791131621094,30.5661550117187],[112.756737089844,30.5802297187501],[112.733924589844,30.576860578125],[112.69373171875,30.5526149726563],[112.669427519531,30.5840993476563],[112.674129667969,30.615923078125],[112.697345,30.6338430000001],[112.713531523438,30.6376564765625],[112.721158476563,30.6474318671876],[112.682740507813,30.6605226875],[112.664032011719,30.6546974921875],[112.657345,30.643843],[112.647345,30.643843],[112.616219511719,30.6483742500001],[112.583531523438,30.6685158515626],[112.597432890625,30.7077346015625],[112.607345,30.7138430000001],[112.616444121094,30.7032814765626],[112.694979277344,30.7682448554688],[112.76271609375,30.79847190625],[112.780103789063,30.8186525703125],[112.797345,30.8238430000001],[112.820169707031,30.8041774726563],[112.827345,30.733843]],[[113.375152617188,30.6772658515625],[113.387345,30.6738430000001],[113.383922148438,30.6860353828126],[113.375152617188,30.6772658515625]]]]}},{"type":"Feature","properties":{"name":"仙桃市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.061722441406,30.488843],[113.063338652344,30.4758571601563],[113.111414824219,30.4818361640625],[113.131790800781,30.4482888007813],[113.147928496094,30.4353688789062],[113.172406035156,30.4497560859376],[113.203407011719,30.4271096015625],[113.257345,30.4338185859375],[113.358690214844,30.4212136054688],[113.412039824219,30.3981838203125],[113.422703886719,30.3995095039063],[113.449344511719,30.3838503242188],[113.457345,30.393843],[113.492264433594,30.3852663398438],[113.504151640625,30.417036359375],[113.533260527344,30.4279274726563],[113.542274199219,30.4520143867188],[113.564105253906,30.4836330390625],[113.594622832031,30.4904738593751],[113.629845,30.4772951484375],[113.61724734375,30.4211061835938],[113.632345,30.4177223945313],[113.651673613281,30.422055890625],[113.665513945313,30.4020119453125],[113.697345,30.393843],[113.707667265625,30.378891828125],[113.743648710938,30.3696584296876],[113.737191191406,30.34085471875],[113.753260527344,30.3297585273438],[113.761925078125,30.28538596875],[113.786441679688,30.2908815742188],[113.777345,30.2538430000001],[113.746261015625,30.2458669257813],[113.764371367188,30.2180519843751],[113.813260527344,30.1997585273438],[113.817345,30.183843],[113.811458769531,30.1536891914063],[113.762623320313,30.1285305000001],[113.723065214844,30.1293386054687],[113.712244902344,30.1189430976563],[113.683446074219,30.0889675117188],[113.662345,30.0885378242188],[113.633336210938,30.0891286445313],[113.516846953125,30.0692604804688],[113.502445097656,30.0989430976563],[113.482044707031,30.1185427070313],[113.452645292969,30.1491432929688],[113.412244902344,30.1687429023438],[113.367987089844,30.1987429023438],[113.342244902344,30.1889430976562],[113.292772246094,30.1514015937501],[113.162445097656,30.1487429023438],[113.127345,30.143843],[113.12033328125,30.1539968085938],[113.091898222656,30.1476222968751],[113.06201296875,30.1670827460938],[113.046734648438,30.1892116523438],[113.017345,30.193843],[113.013038359375,30.2198220039063],[112.994207792969,30.2165822578126],[113.003206816406,30.268843],[113.001483183594,30.278843],[113.003287382813,30.2893215156251],[112.969979277344,30.3301052070313],[112.973304472656,30.3494118476563],[112.961610136719,30.3581081367187],[112.953079863281,30.3857936835938],[112.983795195313,30.4354225898438],[112.981412382813,30.4492580390625],[112.99380984375,30.4692873359376],[112.966009550781,30.4803346992188],[112.951732207031,30.4778762031251],[112.933079863281,30.5132302070313],[112.947345,30.523843],[113.00865359375,30.5377687812501],[113.041790800781,30.5182888007813],[113.064210234375,30.508843],[113.061722441406,30.488843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长沙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297345,28.0438430000001],[113.320343046875,28.039790265625],[113.302779570313,28.0311452460938],[113.297345,28.0438430000001]]],[[[113.297345,28.0438430000001],[113.274774199219,28.0499611640625],[113.229959746094,28.0776979804688],[113.233690214844,28.0560280585937],[113.212345,28.0597048164063],[113.202345,28.0579811835938],[113.182122832031,28.0614626289063],[113.173079863281,28.0281081367188],[113.167345,28.013843],[113.152276640625,28.0022121406251],[113.14298953125,27.95819846875],[113.131549101563,27.939233625],[113.133140898438,27.9284499335938],[113.12158328125,27.9094875312501],[113.087345,27.953843],[113.071500273438,27.9789870429688],[113.089012480469,27.9935353828125],[113.047728300781,28.0183815742188],[113.015047636719,27.9790383125001],[112.997345,27.973843],[112.96408328125,27.9905226875],[112.957345,28.0038430000001],[112.957345,28.013843],[112.947345,28.013843],[112.943985625,28.030483625],[112.937345,28.0438430000001],[112.953985625,28.047202375],[112.971954375,28.0614748359376],[112.987298613281,28.0539821601563],[112.997345,28.0738430000001],[113.013985625,28.070483625],[113.031954375,28.0562111640626],[113.043336210938,28.0617678046875],[113.05279421875,28.043071515625],[113.060704375,28.070483625],[113.075269804688,28.0778517890626],[113.0674621875,28.093843],[113.079671660156,28.1188430000001],[113.064969511719,28.1489455390626],[113.077345,28.173843],[113.087345,28.173843],[113.110335722656,28.1780397773438],[113.097345,28.183843],[113.106246367188,28.2070021796875],[113.047345,28.223843],[113.053035917969,28.2389870429688],[113.026199980469,28.2762770820313],[113.052894316406,28.298452375],[113.051803007813,28.309165265625],[113.0810559375,28.360239484375],[113.059866972656,28.35808128125],[113.022806425781,28.3793044257813],[112.981883574219,28.3883815742188],[112.977345,28.393843],[112.984154082031,28.3980373359375],[112.98048953125,28.4098024726563],[113.011844511719,28.4204885078126],[113.022215605469,28.4645192695313],[113.044366484375,28.478169171875],[113.037345,28.4938430000001],[113.048631621094,28.5025563789063],[113.064329863281,28.5228908515626],[113.122821074219,28.4998976875001],[113.13170046875,28.4781984687501],[113.157144804688,28.46948753125],[113.193577910156,28.5585085273438],[113.181549101563,28.5784523750001],[113.183084746094,28.588843],[113.181226835938,28.60140159375],[113.20298953125,28.61819846875],[113.21170046875,28.6394875312501],[113.22298953125,28.64819846875],[113.227345,28.663843],[113.233170195313,28.6596681953126],[113.250484648438,28.6355104804687],[113.279386015625,28.6412233710938],[113.331839628906,28.6196681953126],[113.353170195313,28.6280178046875],[113.367503691406,28.6480178046875],[113.414124785156,28.6328493476563],[113.4057825,28.590630109375],[113.4589465625,28.6011354804688],[113.493170195313,28.5596681953125],[113.497345,28.543843],[113.49271609375,28.5184719062501],[113.4019153125,28.4791896796876],[113.403204375,28.4631496406251],[113.361229277344,28.4444216132813],[113.328912382813,28.416577375],[113.333116484375,28.3642458320313],[113.319500761719,28.3043166328125],[113.30197390625,28.2892140937501],[113.283460722656,28.2477272773438],[113.261693144531,28.2289723945313],[113.27271609375,28.2092140937501],[113.283038359375,28.1860866523438],[113.367860136719,28.1929030585938],[113.34271609375,28.1712404609375],[113.364215117188,28.1569850898438],[113.401146269531,28.1599513984375],[113.414461699219,28.13608909375],[113.33271609375,28.06847190625],[113.309722929688,28.0582106757813],[113.297345,28.0438430000001]]]]}},{"type":"Feature","properties":{"name":"开福区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.022806425781,28.3793044257813],[113.059866972656,28.35808128125],[113.0810559375,28.360239484375],[113.051803007813,28.309165265625],[113.052894316406,28.298452375],[113.026199980469,28.2762770820313],[113.053035917969,28.2389870429688],[113.047345,28.223843],[112.999888945313,28.2212990546875],[112.984801054688,28.2063869453125],[112.967345,28.203843],[112.963985625,28.260483625],[112.957345,28.2738430000001],[112.943531523438,28.3000295234375],[112.905191679688,28.3445900703125],[112.943531523438,28.3576564765626],[112.951158476563,28.3800295234375],[112.977345,28.393843],[112.981883574219,28.3883815742188],[113.022806425781,28.3793044257813]]]]}},{"type":"Feature","properties":{"name":"宁乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.704832792969,28.333843],[112.701678496094,28.3084841132813],[112.71334109375,28.2886428046875],[112.701790800781,28.2793971992188],[112.69072390625,28.2158010078125],[112.634547148438,28.1921291328125],[112.622899199219,28.1382888007813],[112.602899199219,28.1222731757813],[112.616378203125,28.116235578125],[112.642738066406,28.1195143867188],[112.693836699219,28.0821877265625],[112.759251738281,28.0903249335937],[112.772899199219,28.0793971992188],[112.777345,28.0738430000001],[112.769400664063,28.0698244453126],[112.777345,28.053843],[112.767345,28.053843],[112.767345,28.0438430000001],[112.767345,28.033843],[112.777345,28.033843],[112.761429472656,27.9997585273438],[112.752838164063,27.96628440625],[112.720716582031,27.9197585273438],[112.681429472656,27.9279274726563],[112.644495878906,27.9434401679688],[112.641224394531,27.9288430000001],[112.649439726563,27.8921950507813],[112.637345,27.8838430000001],[112.614769316406,27.9012673164062],[112.590667753906,27.9324929023438],[112.594244414063,27.9566945625],[112.54170046875,27.9781984687501],[112.512735625,27.9956716132813],[112.501624785156,28.0228224921875],[112.487345,28.033843],[112.472240019531,28.0600392890625],[112.452345,28.0584401679688],[112.442345,28.0592458320313],[112.414686308594,28.0570217109375],[112.400960722656,27.9669460273438],[112.362345,27.9700490546876],[112.327345,27.9672365546875],[112.292345,27.9700490546876],[112.252345,27.9668337226563],[112.222345,27.9692458320313],[112.207345,27.9680397773438],[112.192020292969,27.9692702460938],[112.173460722656,27.9477272773438],[112.151917753906,27.9291677070313],[112.1527746875,27.9184889960938],[112.12197390625,27.9092140937501],[112.095460234375,27.8944216132813],[112.08271609375,27.9092140937501],[112.069149199219,27.9209035468751],[111.997345,27.913843],[111.981656523438,27.952798078125],[111.96170046875,27.96819846875],[111.957345,27.973843],[111.94470828125,27.9968971992188],[111.900987578125,27.976040265625],[111.897345,28.023843],[111.904483671875,28.0287721992188],[111.913529082031,28.0691213203126],[111.898206816406,28.1056008125],[111.923260527344,28.1379274726563],[111.935513945313,28.1856740546875],[111.953260527344,28.1979274726563],[111.965513945313,28.2156740546875],[111.977345,28.223843],[111.993531523438,28.2276564765625],[112.006939726563,28.2494167304688],[112.063531523438,28.2576564765625],[112.091158476563,28.2700295234375],[112.128834257813,28.2776564765625],[112.141158476563,28.2576564765625],[112.163531523438,28.2500295234376],[112.184959746094,28.2349855781251],[112.211539335938,28.2432643867187],[112.229471464844,28.2141603828125],[112.271158476563,28.2500295234376],[112.31271609375,28.2641921210938],[112.317345,28.283843],[112.34279421875,28.2779470039063],[112.351832304688,28.2896584296875],[112.365213652344,28.2876808906251],[112.40298953125,28.29819846875],[112.439205351563,28.3200466132813],[112.481707792969,28.3137648750001],[112.52205203125,28.32962425],[112.551793242188,28.32522971875],[112.588878203125,28.417309796875],[112.605640898438,28.4302468085938],[112.62170046875,28.46948753125],[112.647345,28.483843],[112.673487578125,28.4792946601563],[112.653355742188,28.445044171875],[112.672899199219,28.4293971992187],[112.681790800781,28.4082888007813],[112.693023710938,28.3992971015625],[112.69166140625,28.388344953125],[112.71341921875,28.3791774726563],[112.701678496094,28.3592018867188],[112.704832792969,28.333843]]]]}},{"type":"Feature","properties":{"name":"天心区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.967345,28.203843],[112.967345,28.1938430000001],[112.977345,28.1938430000001],[112.98197390625,28.15847190625],[113.002782011719,28.1291237617188],[112.997345,28.0738430000001],[112.987298613281,28.0539821601563],[112.971954375,28.0614748359376],[112.953985625,28.047202375],[112.937345,28.0438430000001],[112.929888945313,28.0463869453125],[112.924801054688,28.0961525703125],[112.944801054688,28.1163869453125],[112.947345,28.133843],[112.96197390625,28.19921409375],[112.967345,28.203843]]]]}},{"type":"Feature","properties":{"name":"望城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.887345,27.983843],[112.883922148438,27.9716506171875],[112.875152617188,27.9804201484376],[112.887345,27.983843]]],[[[112.947345,28.013843],[112.957345,28.013843],[112.957345,28.0038430000001],[112.947345,28.0038430000001],[112.947345,28.013843]]],[[[112.811429472656,28.0450954414063],[112.7926965625,28.0273952460938],[112.777345,28.033843],[112.777345,28.0438430000001],[112.767345,28.0438430000001],[112.767345,28.053843],[112.777345,28.053843],[112.811429472656,28.0450954414063]]],[[[112.947345,28.013843],[112.923826933594,28.0241555],[112.934002714844,27.9879445625001],[112.902923613281,27.9770119453125],[112.887345,27.983843],[112.877298613281,28.0037038398438],[112.861353789063,27.9959181953126],[112.85062625,28.01712425],[112.830704375,28.0272023750001],[112.809298125,28.0698146796876],[112.777345,28.0738430000001],[112.772899199219,28.0793971992188],[112.759251738281,28.0903249335937],[112.693836699219,28.0821877265625],[112.642738066406,28.1195143867188],[112.616378203125,28.116235578125],[112.602899199219,28.1222731757813],[112.622899199219,28.1382888007813],[112.634547148438,28.1921291328125],[112.69072390625,28.2158010078125],[112.701790800781,28.2793971992188],[112.71334109375,28.2886428046875],[112.701678496094,28.3084841132813],[112.704832792969,28.333843],[112.701678496094,28.3592018867188],[112.71341921875,28.3791774726563],[112.69166140625,28.388344953125],[112.693023710938,28.3992971015625],[112.681790800781,28.4082888007813],[112.672899199219,28.4293971992187],[112.653355742188,28.445044171875],[112.673487578125,28.4792946601563],[112.647345,28.483843],[112.6640246875,28.5171047187501],[112.677345,28.523843],[112.726019316406,28.5118874335938],[112.771429472656,28.5497585273438],[112.787345,28.553843],[112.791978789063,28.5265724921876],[112.812857695313,28.5296584296875],[112.825264921875,28.5135842109375],[112.862857695313,28.5080275703125],[112.876951933594,28.5262892890625],[112.937642851563,28.5173220039063],[112.977345,28.523843],[112.956361113281,28.4704665351563],[112.992608671875,28.4651100898438],[113.037345,28.4938430000001],[113.044366484375,28.478169171875],[113.022215605469,28.4645192695313],[113.011844511719,28.4204885078126],[112.98048953125,28.4098024726563],[112.984154082031,28.3980373359375],[112.977345,28.393843],[112.951158476563,28.3800295234375],[112.943531523438,28.3576564765626],[112.905191679688,28.3445900703125],[112.943531523438,28.3000295234375],[112.957345,28.2738430000001],[112.877564726563,28.2657057929688],[112.86271609375,28.2484719062501],[112.838590117188,28.2276833320313],[112.852764921875,28.1890822578126],[112.850970488281,28.166723859375],[112.892847929688,28.1700881171875],[112.891781035156,28.1568215156251],[112.947345,28.133843],[112.944801054688,28.1163869453125],[112.924801054688,28.0961525703125],[112.929888945313,28.0463869453125],[112.937345,28.0438430000001],[112.943985625,28.030483625],[112.947345,28.013843]]],[[[112.787345,28.553843],[112.790767851563,28.5660353828125],[112.799537382813,28.5572658515626],[112.787345,28.553843]]]]}},{"type":"Feature","properties":{"name":"雨花区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.110335722656,28.1780397773438],[113.087345,28.173843],[113.087345,28.183843],[113.097345,28.183843],[113.110335722656,28.1780397773438]]],[[[113.032469511719,28.1962282539063],[113.077345,28.173843],[113.064969511719,28.1489455390626],[113.079671660156,28.1188430000001],[113.0674621875,28.093843],[113.075269804688,28.0778517890626],[113.060704375,28.070483625],[113.05279421875,28.043071515625],[113.043336210938,28.0617678046875],[113.031954375,28.0562111640626],[113.013985625,28.070483625],[112.997345,28.0738430000001],[113.002782011719,28.1291237617188],[112.98197390625,28.15847190625],[112.977345,28.1938430000001],[113.002242460938,28.1814675117188],[113.032469511719,28.1962282539063]]]]}},{"type":"Feature","properties":{"name":"岳麓区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.96197390625,28.19921409375],[112.947345,28.133843],[112.891781035156,28.1568215156251],[112.892847929688,28.1700881171875],[112.850970488281,28.166723859375],[112.852764921875,28.1890822578126],[112.838590117188,28.2276833320313],[112.86271609375,28.2484719062501],[112.877564726563,28.2657057929688],[112.957345,28.2738430000001],[112.963985625,28.260483625],[112.967345,28.203843],[112.96197390625,28.19921409375]]]]}},{"type":"Feature","properties":{"name":"芙蓉区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.106246367188,28.2070021796875],[113.097345,28.183843],[113.087345,28.183843],[113.087345,28.173843],[113.077345,28.173843],[113.032469511719,28.1962282539063],[113.002242460938,28.1814675117188],[112.977345,28.1938430000001],[112.967345,28.1938430000001],[112.967345,28.203843],[112.984801054688,28.2063869453125],[112.999888945313,28.2212990546875],[113.047345,28.223843],[113.106246367188,28.2070021796875]]]]}},{"type":"Feature","properties":{"name":"浏阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.257345,28.0038430000001],[113.257345,27.993843],[113.247345,27.993843],[113.247345,28.0038430000001],[113.257345,28.0038430000001]]],[[[113.257345,28.0038430000001],[113.257345,28.013843],[113.247345,28.013843],[113.242799101563,28.0195217109375],[113.227345,28.0176003242188],[113.212342558594,28.0194655585938],[113.167345,28.013843],[113.173079863281,28.0281081367188],[113.182122832031,28.0614626289063],[113.202345,28.0579811835938],[113.212345,28.0597048164063],[113.233690214844,28.0560280585937],[113.229959746094,28.0776979804688],[113.274774199219,28.0499611640625],[113.297345,28.0438430000001],[113.302779570313,28.0311452460938],[113.320343046875,28.039790265625],[113.297345,28.0438430000001],[113.309722929688,28.0582106757813],[113.33271609375,28.06847190625],[113.414461699219,28.13608909375],[113.401146269531,28.1599513984375],[113.364215117188,28.1569850898438],[113.34271609375,28.1712404609375],[113.367860136719,28.1929030585938],[113.283038359375,28.1860866523438],[113.27271609375,28.2092140937501],[113.261693144531,28.2289723945313],[113.283460722656,28.2477272773438],[113.30197390625,28.2892140937501],[113.319500761719,28.3043166328125],[113.333116484375,28.3642458320313],[113.328912382813,28.416577375],[113.361229277344,28.4444216132813],[113.403204375,28.4631496406251],[113.4019153125,28.4791896796876],[113.49271609375,28.5184719062501],[113.497345,28.543843],[113.513260527344,28.5397585273438],[113.542345,28.5275417304688],[113.572847929688,28.5403542304688],[113.593682890625,28.510180890625],[113.641007109375,28.4775051093751],[113.664539824219,28.4434206367188],[113.710601835938,28.4240749335938],[113.725513945313,28.4456740546875],[113.807113066406,28.4666139960938],[113.843629179688,28.5338039375],[113.882542753906,28.5174587226562],[113.901429472656,28.5297585273438],[113.943260527344,28.5379274726563],[113.981969023438,28.5679274726563],[114.003260527344,28.5597585273438],[114.013016386719,28.545630109375],[114.037345,28.5510842109375],[114.052386503906,28.5477126289062],[114.077345,28.553843],[114.09170046875,28.5481984687501],[114.12298953125,28.53948753125],[114.16170046875,28.5081984687501],[114.210765410156,28.4945363593751],[114.214066191406,28.4721877265625],[114.170611601563,28.4386452460938],[114.196324492188,28.4281227851563],[114.21170046875,28.40819846875],[114.24298953125,28.39948753125],[114.25170046875,28.38819846875],[114.257345,28.3838430000001],[114.251688261719,28.3691262031251],[114.253607207031,28.3537013984376],[114.235972929688,28.3118532539063],[114.212899199219,28.2982888007813],[114.19166140625,28.2893410468751],[114.193023710938,28.2783888984376],[114.181790800781,28.2693971992188],[114.172899199219,28.2582888007813],[114.141790800781,28.2493971992188],[114.086221953125,28.179946515625],[114.062345,28.1769777656251],[114.038626738281,28.1799269843751],[113.987640410156,28.1653493476563],[114.003011503906,28.1392018867188],[114.001004667969,28.1230593085938],[114.032899199219,28.0793971992188],[114.037345,28.063843],[114.017928496094,28.0367507148437],[113.964469023438,28.0473146796875],[113.952345,28.0158791328125],[113.926761503906,28.0209352851563],[113.907345,27.993843],[113.852347441406,28.0007131171875],[113.841846953125,27.975796125],[113.812345,27.9794655585938],[113.798472929688,27.977739484375],[113.782899199219,27.9582888007813],[113.758785429688,27.948130109375],[113.732908964844,27.91581565625],[113.727345,27.8838430000001],[113.684608183594,27.8770827460938],[113.656627226563,27.8799343085938],[113.596224394531,27.9145314765625],[113.575279570313,27.8893190742188],[113.562806425781,27.9593044257813],[113.529420195313,27.9683815742188],[113.512806425781,27.9483815742188],[113.481883574219,27.9393044257813],[113.472806425781,27.9283815742187],[113.455201445313,27.913755109375],[113.413787871094,27.8957936835938],[113.402806425781,27.8583815742188],[113.357345,27.8538430000001],[113.317261992188,27.8641286445313],[113.291998320313,27.8805812812501],[113.283260527344,27.8679274726563],[113.267345,27.863843],[113.274647246094,27.8935720039063],[113.271073027344,27.9095143867188],[113.284586210938,27.918843],[113.258531523438,27.9368312812501],[113.271380644531,27.9941506171875],[113.257345,28.0038430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"株洲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.35447390625,27.7994411445312],[113.340943632813,27.7508522773437],[113.321954375,27.7480471015626],[113.288765898438,27.7680666328126],[113.294896269531,27.7265822578125],[113.268138457031,27.6919167304688],[113.242345,27.6881032539063],[113.225994902344,27.6905202460937],[113.203748808594,27.6733498359376],[113.201605253906,27.6588430000001],[113.204022246094,27.6424929023438],[113.19298953125,27.6281984687501],[113.165750761719,27.607173078125],[113.189049101563,27.5502468085938],[113.203519316406,27.539077375],[113.175543242188,27.4926979804688],[113.22298953125,27.47948753125],[113.26170046875,27.4481984687501],[113.299918242188,27.4375563789063],[113.307345,27.3938430000001],[113.282984648438,27.3870583320313],[113.25298953125,27.34819846875],[113.200386992188,27.3370998359375],[113.203822050781,27.3138430000001],[113.200699492188,27.2927028632813],[113.233187285156,27.2794045234375],[113.227345,27.2438430000001],[113.162069121094,27.2384181953126],[113.137686796875,27.2520217109375],[113.116112089844,27.2036672187501],[113.098089628906,27.2245876289063],[113.08197390625,27.23847190625],[113.072154570313,27.2710842109375],[113.041060820313,27.2978713203126],[113.042769804688,27.3191213203125],[113.03197390625,27.3384719062501],[113.01271609375,27.38921409375],[112.991060820313,27.4078713203126],[112.993524199219,27.4385182929687],[112.987345,27.443843],[112.971556425781,27.4785158515625],[112.974327421875,27.4972658515625],[112.961395292969,27.51870628125],[112.97312625,27.54855003125],[112.970311308594,27.5676100898438],[112.994378691406,27.6000759101563],[112.991253691406,27.6212209296875],[113.012345,27.6181032539063],[113.037603789063,27.6218361640625],[113.021549101563,27.648452375],[113.023436308594,27.6612209296875],[113.001905546875,27.6580397773438],[112.98298953125,27.6727614570312],[113.00298953125,27.68819846875],[113.018389921875,27.7081545234375],[113.057345,27.723843],[113.061429472656,27.7179274726563],[113.080716582031,27.7097585273438],[113.111898222656,27.7300637031251],[113.126441679688,27.7268044257813],[113.117345,27.763843],[113.138743925781,27.7736330390625],[113.169866972656,27.7512306953125],[113.183189726563,27.7737038398438],[113.220189238281,27.7609987617187],[113.208909941406,27.793843],[113.217205839844,27.8179982734376],[113.201065703125,27.827563703125],[113.197345,27.833843],[113.24197390625,27.85921409375],[113.267345,27.863843],[113.283260527344,27.8679274726563],[113.291998320313,27.8805812812501],[113.317261992188,27.8641286445313],[113.357345,27.8538430000001],[113.351600371094,27.8188771796876],[113.35447390625,27.7994411445312]]]]}},{"type":"Feature","properties":{"name":"茶陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.767345,27.1238430000001],[113.771881132813,27.0957863593751],[113.800797148438,27.1015016914063],[113.811519804688,27.0480178046875],[113.853170195313,27.0196681953126],[113.861519804688,26.9980178046876],[113.873170195313,26.9896681953126],[113.888316679688,26.9685353828125],[113.917345,26.963843],[113.91298953125,26.9481984687501],[113.898643828125,26.924419171875],[113.88298953125,26.8681984687501],[113.864852324219,26.8541994453125],[113.831370878906,26.8090407539063],[113.837345,26.793843],[113.848089628906,26.7645876289063],[113.857345,26.653843],[113.85048953125,26.6364040351563],[113.854195585938,26.6113210273438],[113.805889921875,26.5978688789063],[113.764991484375,26.5448830390625],[113.69298953125,26.5281984687501],[113.633665800781,26.5181227851563],[113.597345,26.503843],[113.588450957031,26.5149489570313],[113.562313261719,26.5358791328125],[113.552899199219,26.5793971992188],[113.541790800781,26.5882888007813],[113.532799101563,26.5995217109375],[113.522345,26.5982204414063],[113.512345,26.5994655585938],[113.498472929688,26.597739484375],[113.479842558594,26.5744753242188],[113.414154082031,26.5593971992188],[113.402423125,26.6531911445313],[113.378175078125,26.6944435859375],[113.409344511719,26.737114484375],[113.421790800781,26.7762575507813],[113.387345,26.803843],[113.378631621094,26.8151296210937],[113.360203886719,26.8293556953126],[113.363084746094,26.848843],[113.360128203125,26.868843],[113.364561796875,26.8988430000001],[113.360667753906,26.9251930976563],[113.37170046875,26.93948753125],[113.41298953125,26.9481984687501],[113.425286894531,26.9641335273438],[113.465946074219,26.9396071601563],[113.50298953125,26.96819846875],[113.511903105469,26.9899806953126],[113.55170046875,27.01948753125],[113.60298953125,27.03819846875],[113.64170046875,27.06948753125],[113.673631621094,27.0825563789063],[113.703338652344,27.1004738593751],[113.75170046875,27.1194875312501],[113.767345,27.1238430000001]]]]}},{"type":"Feature","properties":{"name":"荷塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.257345,28.0038430000001],[113.271380644531,27.9941506171875],[113.258531523438,27.9368312812501],[113.284586210938,27.918843],[113.271073027344,27.9095143867188],[113.274647246094,27.8935720039063],[113.267345,27.863843],[113.24197390625,27.85921409375],[113.197345,27.833843],[113.147345,27.833843],[113.143985625,27.850483625],[113.137345,27.863843],[113.155301542969,27.8777028632813],[113.136434355469,27.8922658515625],[113.18298953125,27.92819846875],[113.192271757813,27.9615334296876],[113.236324492188,27.9795632148438],[113.247345,27.993843],[113.257345,27.993843],[113.257345,28.0038430000001]]],[[[113.257345,28.0038430000001],[113.247345,28.0038430000001],[113.247345,28.013843],[113.257345,28.013843],[113.257345,28.0038430000001]]]]}},{"type":"Feature","properties":{"name":"芦淞区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.147345,27.833843],[113.197345,27.833843],[113.201065703125,27.827563703125],[113.217205839844,27.8179982734376],[113.208909941406,27.793843],[113.220189238281,27.7609987617187],[113.183189726563,27.7737038398438],[113.169866972656,27.7512306953125],[113.138743925781,27.7736330390625],[113.117345,27.763843],[113.111429472656,27.7679274726563],[113.103260527344,27.7841188789063],[113.141329375,27.8104030585938],[113.147345,27.833843]]],[[[113.147345,27.833843],[113.13406375,27.84056175],[113.127345,27.8538430000001],[113.127345,27.863843],[113.137345,27.863843],[113.143985625,27.850483625],[113.147345,27.833843]]]]}},{"type":"Feature","properties":{"name":"石峰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.242799101563,28.0195217109375],[113.247345,28.013843],[113.247345,28.0038430000001],[113.247345,27.993843],[113.236324492188,27.9795632148438],[113.192271757813,27.9615334296876],[113.18298953125,27.92819846875],[113.136434355469,27.8922658515625],[113.155301542969,27.8777028632813],[113.137345,27.863843],[113.127345,27.863843],[113.127345,27.8538430000001],[113.037345,27.8538430000001],[113.0464075,27.9071974921875],[113.07170046875,27.9494875312501],[113.087345,27.953843],[113.12158328125,27.9094875312501],[113.133140898438,27.9284499335938],[113.131549101563,27.939233625],[113.14298953125,27.95819846875],[113.152276640625,28.0022121406251],[113.167345,28.013843],[113.212342558594,28.0194655585938],[113.227345,28.0176003242188],[113.242799101563,28.0195217109375]]]]}},{"type":"Feature","properties":{"name":"天元区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.117345,27.763843],[113.126441679688,27.7268044257813],[113.111898222656,27.7300637031251],[113.080716582031,27.7097585273438],[113.061429472656,27.7179274726563],[113.057345,27.723843],[113.053531523438,27.7300295234375],[113.018631621094,27.7419240546875],[113.027017851563,27.7688430000001],[113.018199492188,27.7971559882812],[113.001158476563,27.8076564765625],[112.997345,27.8138430000001],[113.00406375,27.82712425],[113.03062625,27.84056175],[113.037345,27.8538430000001],[113.127345,27.8538430000001],[113.13406375,27.84056175],[113.147345,27.833843],[113.141329375,27.8104030585938],[113.103260527344,27.7841188789063],[113.111429472656,27.7679274726563],[113.117345,27.763843]]]]}},{"type":"Feature","properties":{"name":"炎陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.883116484375,26.6351467109376],[113.917225371094,26.6150954414062],[113.972928496094,26.6220241523438],[114.002899199219,26.6093971992188],[114.018216582031,26.5902663398438],[114.100582304688,26.5782790351563],[114.074364042969,26.5100710273438],[114.07166140625,26.488344953125],[114.09312625,26.4792995429688],[114.081634550781,26.4287013984375],[114.087345,26.413843],[114.061158476563,26.4100295234375],[114.02666140625,26.3820900703126],[114.037113066406,26.3485378242187],[114.017576933594,26.2891481757812],[114.02420046875,26.2678835273438],[113.9823840625,26.2536330390625],[113.967562285156,26.2101393867188],[113.944969511719,26.1962184882813],[113.937345,26.183843],[113.911429472656,26.1697585273438],[113.891607695313,26.14105003125],[113.857254667969,26.1281960273437],[113.843260527344,26.1079274726563],[113.820357695313,26.092114484375],[113.792791777344,26.110063703125],[113.769862089844,26.1049245429687],[113.775557890625,26.0795143867188],[113.761429472656,26.0697585273438],[113.744813261719,26.0456911445313],[113.717345,26.0638430000001],[113.711429472656,26.0679274726563],[113.689251738281,26.1000466132813],[113.69490359375,26.1252516914063],[113.721698027344,26.1437526679688],[113.739227324219,26.1905959296876],[113.714000273438,26.2293361640625],[113.681429472656,26.2479274726563],[113.653260527344,26.2697585273438],[113.621429472656,26.2779274726563],[113.607345,26.2838430000001],[113.613375273438,26.3093581367188],[113.599652128906,26.31956565625],[113.573079863281,26.4057936835938],[113.606627226563,26.4307497382813],[113.587296171875,26.4788430000001],[113.597345,26.503843],[113.633665800781,26.5181227851563],[113.69298953125,26.5281984687501],[113.764991484375,26.5448830390625],[113.805889921875,26.5978688789063],[113.854195585938,26.6113210273438],[113.85048953125,26.6364040351563],[113.857345,26.653843],[113.872742949219,26.65976096875],[113.883116484375,26.6351467109376]]]]}},{"type":"Feature","properties":{"name":"攸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.592806425781,27.3834596992188],[113.60728640625,27.359399640625],[113.652806425781,27.3493044257813],[113.669420195313,27.3293044257813],[113.692806425781,27.3383815742188],[113.7262903125,27.3575563789063],[113.827635527344,27.368921125],[113.867345,27.383843],[113.86271609375,27.34847190625],[113.846185332031,27.3034572578126],[113.862996855469,27.2889723945313],[113.85197390625,27.26921409375],[113.809705839844,27.1744924140626],[113.79197390625,27.15921409375],[113.767345,27.1238430000001],[113.75170046875,27.1194875312501],[113.703338652344,27.1004738593751],[113.673631621094,27.0825563789063],[113.64170046875,27.06948753125],[113.60298953125,27.03819846875],[113.55170046875,27.01948753125],[113.511903105469,26.9899806953126],[113.50298953125,26.96819846875],[113.465946074219,26.9396071601563],[113.425286894531,26.9641335273438],[113.41298953125,26.9481984687501],[113.37170046875,26.93948753125],[113.360667753906,26.9251930976563],[113.364561796875,26.8988430000001],[113.360128203125,26.868843],[113.363084746094,26.848843],[113.360203886719,26.8293556953126],[113.378631621094,26.8151296210937],[113.387345,26.803843],[113.321536894531,26.8103151679688],[113.293316679688,26.7775588203125],[113.271180449219,26.7793386054687],[113.273148222656,26.803843],[113.271942167969,26.8188430000001],[113.2727746875,26.8291970039063],[113.257345,26.833843],[113.239869414063,26.8463674140625],[113.217874785156,26.877055890625],[113.233170195313,26.8880178046876],[113.251519804688,26.9196681953125],[113.277740507813,26.938462140625],[113.241519804688,26.9480178046875],[113.213170195313,26.9674123359376],[113.223455839844,27.0194631171875],[113.211519804688,27.0280178046875],[113.193270292969,27.053481671875],[113.183170195313,27.0796681953125],[113.161519804688,27.1080178046875],[113.153170195313,27.1264479804688],[113.189386015625,27.140415265625],[113.207345,27.1368679023438],[113.231419707031,27.1416237617188],[113.251519804688,27.1696681953125],[113.281278105469,27.1811452460938],[113.244315214844,27.2393654609375],[113.227345,27.2438430000001],[113.233187285156,27.2794045234375],[113.200699492188,27.2927028632813],[113.203822050781,27.3138430000001],[113.200386992188,27.3370998359375],[113.25298953125,27.34819846875],[113.282984648438,27.3870583320313],[113.307345,27.3938430000001],[113.312899199219,27.3893971992188],[113.328914824219,27.3693971992188],[113.355731230469,27.379341046875],[113.388831816406,27.4206740546875],[113.510242949219,27.382485578125],[113.542808867188,27.4231545234376],[113.617345,27.413843],[113.623363066406,27.408843],[113.592806425781,27.3834596992188]]]]}},{"type":"Feature","properties":{"name":"醴陵市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.562806425781,27.9593044257813],[113.575279570313,27.8893190742188],[113.596224394531,27.9145314765625],[113.656627226563,27.8799343085938],[113.684608183594,27.8770827460938],[113.727345,27.8838430000001],[113.731339140625,27.877837140625],[113.749310332031,27.8658864570313],[113.753604765625,27.8488430000001],[113.751085234375,27.838843],[113.760982695313,27.7995607734375],[113.72533328125,27.7758547187501],[113.713350859375,27.757837140625],[113.701339140625,27.749848859375],[113.697345,27.723843],[113.674769316406,27.7064186835937],[113.632991972656,27.6522927070313],[113.600128203125,27.638843],[113.603084746094,27.6188430000001],[113.600867949219,27.603843],[113.603148222656,27.5884133125001],[113.57298953125,27.5477346015625],[113.585064726563,27.5206569648438],[113.602345,27.5181032539063],[113.630872832031,27.5223195625001],[113.587257109375,27.4634914375001],[113.60170046875,27.42819846875],[113.61298953125,27.4194875312501],[113.617345,27.413843],[113.542808867188,27.4231545234376],[113.510242949219,27.382485578125],[113.388831816406,27.4206740546875],[113.355731230469,27.379341046875],[113.328914824219,27.3693971992188],[113.312899199219,27.3893971992188],[113.307345,27.3938430000001],[113.299918242188,27.4375563789063],[113.26170046875,27.4481984687501],[113.22298953125,27.47948753125],[113.175543242188,27.4926979804688],[113.203519316406,27.539077375],[113.189049101563,27.5502468085938],[113.165750761719,27.607173078125],[113.19298953125,27.6281984687501],[113.204022246094,27.6424929023438],[113.201605253906,27.6588430000001],[113.203748808594,27.6733498359376],[113.225994902344,27.6905202460937],[113.242345,27.6881032539063],[113.268138457031,27.6919167304688],[113.294896269531,27.7265822578125],[113.288765898438,27.7680666328126],[113.321954375,27.7480471015626],[113.340943632813,27.7508522773437],[113.35447390625,27.7994411445312],[113.351600371094,27.8188771796876],[113.357345,27.8538430000001],[113.402806425781,27.8583815742188],[113.413787871094,27.8957936835938],[113.455201445313,27.913755109375],[113.472806425781,27.9283815742187],[113.481883574219,27.9393044257813],[113.512806425781,27.9483815742188],[113.529420195313,27.9683815742188],[113.562806425781,27.9593044257813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"韶山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.590667753906,27.9324929023438],[112.614769316406,27.9012673164062],[112.637345,27.8838430000001],[112.630675078125,27.860512921875],[112.577345,27.8538430000001],[112.561429472656,27.8579274726562],[112.523260527344,27.8897585273438],[112.471969023438,27.8979274726563],[112.432066679688,27.8670021796876],[112.423260527344,27.8797585273438],[112.398038359375,27.8891970039063],[112.423260527344,27.9279274726563],[112.431429472656,27.9497585273438],[112.440203886719,27.9579274726563],[112.452074003906,27.9262062812501],[112.466197539063,27.9466628242188],[112.459371367188,27.9771047187501],[112.483260527344,28.0079274726562],[112.487345,28.033843],[112.501624785156,28.0228224921875],[112.512735625,27.9956716132813],[112.54170046875,27.9781984687501],[112.594244414063,27.9566945625],[112.590667753906,27.9324929023438]]]]}},{"type":"Feature","properties":{"name":"湘潭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.777345,28.033843],[112.767345,28.033843],[112.767345,28.0438430000001],[112.777345,28.0438430000001],[112.777345,28.033843]]],[[[112.887345,27.983843],[112.875152617188,27.9804201484376],[112.883922148438,27.9716506171875],[112.902923613281,27.9770119453125],[112.934002714844,27.9879445625001],[112.923826933594,28.0241555],[112.947345,28.013843],[112.947345,28.0038430000001],[112.957345,28.0038430000001],[112.96408328125,27.9905226875],[112.997345,27.973843],[113.010399199219,27.94647971875],[112.967967558594,27.9232204414063],[112.957345,27.903843],[112.929644804688,27.8924611640626],[112.892279082031,27.8998439765626],[112.813170195313,27.8839846015626],[112.821673613281,27.8677223945312],[112.846038847656,27.8725368476563],[112.841234160156,27.8482228828125],[112.853170195313,27.8396681953125],[112.871519804688,27.8080178046875],[112.887345,27.803843],[112.91931765625,27.7915529609376],[112.997345,27.8138430000001],[113.001158476563,27.8076564765625],[113.018199492188,27.7971559882812],[113.027017851563,27.7688430000001],[113.018631621094,27.7419240546875],[113.053531523438,27.7300295234375],[113.057345,27.723843],[113.018389921875,27.7081545234375],[113.00298953125,27.68819846875],[112.98298953125,27.6727614570312],[113.001905546875,27.6580397773438],[113.023436308594,27.6612209296875],[113.021549101563,27.648452375],[113.037603789063,27.6218361640625],[113.012345,27.6181032539063],[112.991253691406,27.6212209296875],[112.994378691406,27.6000759101563],[112.970311308594,27.5676100898438],[112.97312625,27.54855003125],[112.961395292969,27.51870628125],[112.974327421875,27.4972658515625],[112.971556425781,27.4785158515625],[112.987345,27.443843],[112.921986113281,27.4273805976563],[112.917345,27.363843],[112.871429472656,27.3597585273438],[112.804595976563,27.3433425117188],[112.793260527344,27.3597585273438],[112.772991972656,27.3737526679687],[112.760797148438,27.406343],[112.721898222656,27.3976222968751],[112.703260527344,27.4097585273437],[112.676912871094,27.4196169257812],[112.683648710938,27.4496584296875],[112.651429472656,27.4579274726563],[112.615391875,27.4730641914063],[112.57287234375,27.437602765625],[112.561898222656,27.440063703125],[112.538621855469,27.424907453125],[112.517345,27.4338430000001],[112.49298953125,27.44948753125],[112.464605742188,27.4611037421875],[112.45298953125,27.48948753125],[112.43170046875,27.49819846875],[112.417345,27.533843],[112.42271609375,27.53847190625],[112.435574980469,27.5672878242188],[112.47271609375,27.57847190625],[112.502105742188,27.589262921875],[112.536436796875,27.5865065742188],[112.552115507813,27.568305890625],[112.597686796875,27.5807790351563],[112.61197390625,27.6026247382813],[112.577244902344,27.6325441718751],[112.611846953125,27.6813478828126],[112.59197390625,27.69847190625],[112.58271609375,27.7108229804688],[112.624464140625,27.7074684882813],[112.619559355469,27.7685182929688],[112.647723417969,27.7927834296876],[112.619947539063,27.8284719062501],[112.60271609375,27.80847190625],[112.591170683594,27.79921409375],[112.592769804688,27.8191213203125],[112.58197390625,27.8384719062501],[112.577345,27.8538430000001],[112.630675078125,27.860512921875],[112.637345,27.8838430000001],[112.649439726563,27.8921950507813],[112.641224394531,27.9288430000001],[112.644495878906,27.9434401679688],[112.681429472656,27.9279274726563],[112.720716582031,27.9197585273438],[112.752838164063,27.96628440625],[112.761429472656,27.9997585273438],[112.777345,28.033843],[112.7926965625,28.0273952460938],[112.811429472656,28.0450954414063],[112.777345,28.053843],[112.769400664063,28.0698244453126],[112.777345,28.0738430000001],[112.809298125,28.0698146796876],[112.830704375,28.0272023750001],[112.85062625,28.01712425],[112.861353789063,27.9959181953126],[112.877298613281,28.0037038398438],[112.887345,27.983843]],[[112.84298953125,27.9549245429688],[112.857345,27.943843],[112.863167753906,27.9792946601562],[112.854791289063,27.98819846875],[112.84298953125,27.9549245429688]],[[112.703922148438,27.8660353828126],[112.695152617188,27.8572658515625],[112.707345,27.8538430000001],[112.703922148438,27.8660353828126]],[[112.667345,27.843843],[112.670767851563,27.8316506171876],[112.679537382813,27.8404201484375],[112.656263457031,27.8581984687501],[112.643924589844,27.8346364570313],[112.667345,27.843843]],[[112.645152617188,27.8172658515625],[112.657345,27.8138430000001],[112.653922148438,27.8260353828126],[112.645152617188,27.8172658515625]]]]}},{"type":"Feature","properties":{"name":"湘乡市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.077345,27.723843],[112.080767851563,27.7116506171875],[112.089537382813,27.7204201484376],[112.082735625,27.7303322578125],[112.102735625,27.7282936835938],[112.111883574219,27.7393044257813],[112.131449003906,27.7555568671876],[112.101883574219,27.7683815742188],[112.092122832031,27.8123879218751],[112.051937285156,27.8082912421876],[112.032161894531,27.8403542304688],[112.010748320313,27.8381716132813],[112.012877226563,27.8590602851563],[111.997345,27.913843],[112.069149199219,27.9209035468751],[112.08271609375,27.9092140937501],[112.095460234375,27.8944216132813],[112.12197390625,27.9092140937501],[112.1527746875,27.9184889960938],[112.151917753906,27.9291677070313],[112.173460722656,27.9477272773438],[112.192020292969,27.9692702460938],[112.207345,27.9680397773438],[112.222345,27.9692458320313],[112.252345,27.9668337226563],[112.292345,27.9700490546876],[112.327345,27.9672365546875],[112.362345,27.9700490546876],[112.400960722656,27.9669460273438],[112.414686308594,28.0570217109375],[112.442345,28.0592458320313],[112.452345,28.0584401679688],[112.472240019531,28.0600392890625],[112.487345,28.033843],[112.483260527344,28.0079274726562],[112.459371367188,27.9771047187501],[112.466197539063,27.9466628242188],[112.452074003906,27.9262062812501],[112.440203886719,27.9579274726563],[112.431429472656,27.9497585273438],[112.423260527344,27.9279274726563],[112.398038359375,27.8891970039063],[112.423260527344,27.8797585273438],[112.432066679688,27.8670021796876],[112.471969023438,27.8979274726563],[112.523260527344,27.8897585273438],[112.561429472656,27.8579274726562],[112.577345,27.8538430000001],[112.58197390625,27.8384719062501],[112.592769804688,27.8191213203125],[112.591170683594,27.79921409375],[112.60271609375,27.80847190625],[112.619947539063,27.8284719062501],[112.647723417969,27.7927834296876],[112.619559355469,27.7685182929688],[112.624464140625,27.7074684882813],[112.58271609375,27.7108229804688],[112.59197390625,27.69847190625],[112.611846953125,27.6813478828126],[112.577244902344,27.6325441718751],[112.61197390625,27.6026247382813],[112.597686796875,27.5807790351563],[112.552115507813,27.568305890625],[112.536436796875,27.5865065742188],[112.502105742188,27.589262921875],[112.47271609375,27.57847190625],[112.435574980469,27.5672878242188],[112.42271609375,27.53847190625],[112.417345,27.533843],[112.406239042969,27.5249489570313],[112.388450957031,27.5027370429688],[112.367906523438,27.48628440625],[112.303675566406,27.4942751289063],[112.292899199219,27.5172536445313],[112.322899199219,27.5682888007813],[112.331790800781,27.6114357734376],[112.2809778125,27.6328469062501],[112.28318484375,27.6506032539063],[112.302843046875,27.64815940625],[112.313607207031,27.6737013984376],[112.310894804688,27.6955031562501],[112.242513457031,27.7102980781251],[112.198233671875,27.6550002265626],[112.162345,27.6594655585938],[112.151986113281,27.6581764960938],[112.132144804688,27.66983909375],[112.114610625,27.6479396796875],[112.097345,27.6500856757813],[112.082061796875,27.6481862617188],[112.067345,27.653843],[112.060189238281,27.6817214179688],[112.038538847656,27.6768679023438],[112.043465605469,27.6988430000001],[112.040008574219,27.7142604804688],[112.077345,27.723843]]]]}},{"type":"Feature","properties":{"name":"雨湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.653922148438,27.8260353828126],[112.657345,27.8138430000001],[112.645152617188,27.8172658515625],[112.653922148438,27.8260353828126]]],[[[112.667345,27.843843],[112.679537382813,27.8404201484375],[112.670767851563,27.8316506171876],[112.667345,27.843843]]],[[[112.667345,27.843843],[112.643924589844,27.8346364570313],[112.656263457031,27.8581984687501],[112.667345,27.843843]]],[[[112.703922148438,27.8660353828126],[112.707345,27.8538430000001],[112.695152617188,27.8572658515625],[112.703922148438,27.8660353828126]]],[[[112.957345,27.903843],[112.948704863281,27.8728176093751],[112.884202910156,27.8464186835938],[112.88048953125,27.8212819648438],[112.887345,27.803843],[112.871519804688,27.8080178046875],[112.853170195313,27.8396681953125],[112.841234160156,27.8482228828125],[112.846038847656,27.8725368476563],[112.821673613281,27.8677223945312],[112.813170195313,27.8839846015626],[112.892279082031,27.8998439765626],[112.929644804688,27.8924611640626],[112.957345,27.903843]]],[[[112.863167753906,27.9792946601562],[112.857345,27.943843],[112.84298953125,27.9549245429688],[112.854791289063,27.98819846875],[112.863167753906,27.9792946601562]]]]}},{"type":"Feature","properties":{"name":"岳塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.997345,27.8138430000001],[112.91931765625,27.7915529609376],[112.887345,27.803843],[112.88048953125,27.8212819648438],[112.884202910156,27.8464186835938],[112.948704863281,27.8728176093751],[112.957345,27.903843],[112.967967558594,27.9232204414063],[113.010399199219,27.94647971875],[112.997345,27.973843],[113.015047636719,27.9790383125001],[113.047728300781,28.0183815742188],[113.089012480469,27.9935353828125],[113.071500273438,27.9789870429688],[113.087345,27.953843],[113.07170046875,27.9494875312501],[113.0464075,27.9071974921875],[113.037345,27.8538430000001],[113.03062625,27.84056175],[113.00406375,27.82712425],[112.997345,27.8138430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"石鼓区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.601671171875,27.0208644843751],[112.632345,27.0071242500001],[112.647345,27.0138430000001],[112.658214140625,26.9476711250001],[112.616058378906,26.9151296210938],[112.607345,26.9038430000001],[112.597345,26.9038430000001],[112.588433867188,26.9153884101563],[112.537345,26.953843],[112.543968535156,26.9686305976563],[112.534617949219,26.9986501289062],[112.577345,27.0119582343751],[112.593150664063,27.0070339179688],[112.601671171875,27.0208644843751]]]]}},{"type":"Feature","properties":{"name":"雁峰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.594481230469,26.8086647773438],[112.577345,26.7838430000001],[112.538167753906,26.7904982734376],[112.547345,26.813843],[112.551429472656,26.8297585273438],[112.570584746094,26.85917503125],[112.592713652344,26.8744533515626],[112.597345,26.9038430000001],[112.607345,26.9038430000001],[112.621429472656,26.8779274726563],[112.661429472656,26.8550954414063],[112.653260527344,26.8179274726563],[112.594481230469,26.8086647773438]]]]}},{"type":"Feature","properties":{"name":"蒸湘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.588433867188,26.9153884101563],[112.597345,26.9038430000001],[112.592713652344,26.8744533515626],[112.570584746094,26.85917503125],[112.551429472656,26.8297585273438],[112.547345,26.813843],[112.511065703125,26.8175637031251],[112.503624296875,26.8301222968751],[112.473885527344,26.8399343085938],[112.503624296875,26.8575637031251],[112.511065703125,26.895708234375],[112.497345,26.9038430000001],[112.497345,26.913843],[112.487345,26.913843],[112.490704375,26.920483625],[112.503985625,26.927202375],[112.515201445313,26.9493727851563],[112.537345,26.953843],[112.588433867188,26.9153884101563]]]]}},{"type":"Feature","properties":{"name":"珠晖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.707345,26.963843],[112.719537382813,26.9604201484375],[112.710767851563,26.9516506171876],[112.707345,26.963843]]],[[[112.707345,26.963843],[112.69298953125,26.9527614570313],[112.701727324219,26.888012921875],[112.73170046875,26.8924416328125],[112.72298953125,26.8681984687501],[112.699954863281,26.830014875],[112.705526152344,26.7923220039063],[112.647750273438,26.74948753125],[112.588629179688,26.7692263007813],[112.577345,26.7838430000001],[112.594481230469,26.8086647773438],[112.653260527344,26.8179274726563],[112.661429472656,26.8550954414063],[112.621429472656,26.8779274726563],[112.607345,26.9038430000001],[112.616058378906,26.9151296210938],[112.658214140625,26.9476711250001],[112.647345,27.0138430000001],[112.655936308594,27.02628440625],[112.687037382813,27.0332570625001],[112.715513945313,26.9920119453125],[112.727345,26.983843],[112.727345,26.9738430000001],[112.707345,26.9738430000001],[112.707345,26.963843]]]]}},{"type":"Feature","properties":{"name":"常宁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.657345,26.113843],[112.651783476563,26.100844953125],[112.634620390625,26.1098366523438],[112.657345,26.113843]]],[[[112.657345,26.113843],[112.660767851563,26.1260353828125],[112.669537382813,26.1172658515626],[112.657345,26.113843]]],[[[112.660985136719,26.601782453125],[112.667345,26.5938430000001],[112.657345,26.5938430000001],[112.657345,26.583843],[112.652806425781,26.5783815742188],[112.641151152344,26.5686989570313],[112.668753691406,26.5567263007813],[112.661326933594,26.4838430000001],[112.663973417969,26.4578737617187],[112.634676542969,26.4067263007813],[112.630816679688,26.3688430000001],[112.632882109375,26.3485768867188],[112.621654082031,26.3186989570312],[112.642889433594,26.2891896796875],[112.641654082031,26.277055890625],[112.651883574219,26.2083815742188],[112.691463652344,26.1455690742188],[112.677345,26.1338430000001],[112.634232207031,26.1391115546875],[112.62298953125,26.17948753125],[112.587633085938,26.227173078125],[112.568187285156,26.201977765625],[112.574722929688,26.1577516914063],[112.562135039063,26.1596120429688],[112.513775664063,26.145512921875],[112.501832304688,26.1609841132813],[112.481773710938,26.1580202460938],[112.47298953125,26.17948753125],[112.419876738281,26.1906935859375],[112.401954375,26.1880471015626],[112.374693632813,26.2044899726562],[112.3520715625,26.1666677070313],[112.332345,26.1695827460938],[112.317838164063,26.1674391914063],[112.29490359375,26.1377248359376],[112.271468535156,26.1411891914063],[112.227345,26.123843],[112.213170195313,26.1496681953126],[112.181253691406,26.1883400703125],[112.195321074219,26.2587868476563],[112.19127078125,26.2792751289063],[112.209505644531,26.3079958320313],[112.169332304688,26.3185964179688],[112.175308867188,26.348843],[112.147113066406,26.3597170234375],[112.140369902344,26.393843],[112.145308867188,26.418843],[112.14127078125,26.4392751289063],[112.15341921875,26.4584108710938],[112.150772734375,26.471801984375],[112.163114042969,26.5038014960938],[112.187345,26.493843],[112.192913847656,26.4743703437501],[112.256881132813,26.4664138007812],[112.316246367188,26.5024709296875],[112.309405546875,26.5574831367188],[112.317345,26.563843],[112.34031375,26.572671125],[112.382574492188,26.5478298164063],[112.417913847656,26.5981081367188],[112.456922636719,26.5493971992188],[112.482899199219,26.5582888007813],[112.492345,26.5807082343751],[112.529212675781,26.5761232734376],[112.565318632813,26.5973464179688],[112.597345,26.6013307929687],[112.627345,26.5976003242188],[112.660985136719,26.601782453125]]]]}},{"type":"Feature","properties":{"name":"衡东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.098089628906,27.2245876289063],[113.116112089844,27.2036672187501],[113.137686796875,27.2520217109375],[113.162069121094,27.2384181953126],[113.227345,27.2438430000001],[113.244315214844,27.2393654609375],[113.281278105469,27.1811452460938],[113.251519804688,27.1696681953125],[113.231419707031,27.1416237617188],[113.207345,27.1368679023438],[113.189386015625,27.140415265625],[113.153170195313,27.1264479804688],[113.161519804688,27.1080178046875],[113.183170195313,27.0796681953125],[113.193270292969,27.053481671875],[113.211519804688,27.0280178046875],[113.223455839844,27.0194631171875],[113.213170195313,26.9674123359376],[113.241519804688,26.9480178046875],[113.277740507813,26.938462140625],[113.251519804688,26.9196681953125],[113.233170195313,26.8880178046876],[113.217874785156,26.877055890625],[113.239869414063,26.8463674140625],[113.257345,26.833843],[113.250943632813,26.8108522773438],[113.231954375,26.8080471015625],[113.193516875,26.8312331367188],[113.17205203125,26.8280617500001],[113.136712675781,26.8419533515626],[113.143880644531,26.7934474921875],[113.087345,26.7838430000001],[113.08298953125,26.79948753125],[113.066800566406,26.82632346875],[113.074327421875,26.8772658515626],[113.059173613281,26.902387921875],[113.066058378906,26.9489650703126],[112.99369265625,26.9612575507813],[112.959390898438,26.9561891914062],[112.890728789063,26.9147731757813],[112.893084746094,26.8988430000001],[112.889459257813,26.8743141914063],[112.825267363281,26.85948753125],[112.811624785156,26.8928224921875],[112.79170046875,26.9081984687501],[112.770057402344,26.9675173164062],[112.747345,26.9738430000001],[112.751883574219,26.9793044257813],[112.770928984375,26.9951271796875],[112.751883574219,27.0283815742188],[112.739583769531,27.0567409492188],[112.743209257813,27.0923220039063],[112.825907011719,27.0838942695313],[112.803060332031,27.1237819648438],[112.871629667969,27.1439040351562],[112.843026152344,27.193843],[112.862982207031,27.22868675],[112.930770292969,27.2849953437501],[112.941883574219,27.3034596992188],[112.921883574219,27.3383815742188],[112.917345,27.363843],[112.921986113281,27.4273805976563],[112.987345,27.443843],[112.993524199219,27.4385182929687],[112.991060820313,27.4078713203126],[113.01271609375,27.38921409375],[113.03197390625,27.3384719062501],[113.042769804688,27.3191213203125],[113.041060820313,27.2978713203126],[113.072154570313,27.2710842109375],[113.08197390625,27.23847190625],[113.098089628906,27.2245876289063]]]]}},{"type":"Feature","properties":{"name":"衡南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.667345,26.5938430000001],[112.667345,26.583843],[112.657345,26.583843],[112.657345,26.5938430000001],[112.667345,26.5938430000001]]],[[[112.667345,26.5938430000001],[112.660985136719,26.601782453125],[112.627345,26.5976003242188],[112.597345,26.6013307929687],[112.565318632813,26.5973464179688],[112.529212675781,26.5761232734376],[112.492345,26.5807082343751],[112.482899199219,26.5582888007813],[112.456922636719,26.5493971992188],[112.417913847656,26.5981081367188],[112.382574492188,26.5478298164063],[112.34031375,26.572671125],[112.317345,26.563843],[112.32197390625,26.57921409375],[112.332996855469,26.5989723945313],[112.318519316406,26.6114455390625],[112.251365996094,26.631665265625],[112.254398222656,26.6694094062501],[112.237437773438,26.6680471015625],[112.19271609375,26.7271120429688],[112.261768828125,26.7428005195313],[112.231693144531,26.7687136054687],[112.251187773438,26.8036525703125],[112.20197390625,26.81847190625],[112.141851835938,26.8437892890625],[112.107345,26.883843],[112.123170195313,26.8880178046876],[112.152056914063,26.899887921875],[112.167345,26.8968679023438],[112.212345,26.9057595039063],[112.252345,26.8978542304687],[112.277425566406,26.9028102851563],[112.357315703125,26.8868605781251],[112.372965117188,26.8899538398438],[112.382760039063,26.8762892890626],[112.413472929688,26.8881349921875],[112.410328398438,26.9040529609376],[112.43380984375,26.9368166328125],[112.472098417969,26.9075783515625],[112.487345,26.913843],[112.487345,26.9038430000001],[112.497345,26.9038430000001],[112.511065703125,26.895708234375],[112.503624296875,26.8575637031251],[112.473885527344,26.8399343085938],[112.503624296875,26.8301222968751],[112.511065703125,26.8175637031251],[112.547345,26.813843],[112.538167753906,26.7904982734376],[112.577345,26.7838430000001],[112.588629179688,26.7692263007813],[112.647750273438,26.74948753125],[112.705526152344,26.7923220039063],[112.699954863281,26.830014875],[112.72298953125,26.8681984687501],[112.73170046875,26.8924416328125],[112.701727324219,26.888012921875],[112.69298953125,26.9527614570313],[112.707345,26.963843],[112.710767851563,26.9516506171876],[112.719537382813,26.9604201484375],[112.707345,26.963843],[112.707345,26.9738430000001],[112.727345,26.9738430000001],[112.727345,26.983843],[112.747345,26.9738430000001],[112.770057402344,26.9675173164062],[112.79170046875,26.9081984687501],[112.811624785156,26.8928224921875],[112.825267363281,26.85948753125],[112.889459257813,26.8743141914063],[112.893084746094,26.8988430000001],[112.890728789063,26.9147731757813],[112.959390898438,26.9561891914062],[112.99369265625,26.9612575507813],[113.066058378906,26.9489650703126],[113.059173613281,26.902387921875],[113.074327421875,26.8772658515626],[113.066800566406,26.82632346875],[113.08298953125,26.79948753125],[113.087345,26.7838430000001],[113.09170046875,26.7581984687501],[113.108890410156,26.7449318671875],[113.147345,26.693843],[113.112445097656,26.6993630195313],[113.093533964844,26.6974343085938],[113.072667265625,26.7093849921875],[113.044461699219,26.7065114570313],[113.012345,26.6881154609375],[112.977144804688,26.7082765937501],[112.932806425781,26.6925319648437],[112.972806425781,26.6593044257813],[112.981883574219,26.629858625],[112.957728300781,26.5993044257813],[112.922440214844,26.6195143867188],[112.870950957031,26.6001686835938],[112.876654082031,26.6561110664063],[112.858704863281,26.671020734375],[112.831954375,26.6682936835937],[112.817345,26.6858815742188],[112.802806425781,26.6683815742187],[112.791883574219,26.6593044257813],[112.782806425781,26.6283815742188],[112.766556425781,26.6000075507813],[112.741883574219,26.5893044257813],[112.730208769531,26.5752516914063],[112.692806425781,26.5893044257813],[112.667345,26.5938430000001]]]]}},{"type":"Feature","properties":{"name":"衡山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.683648710938,27.4496584296875],[112.676912871094,27.4196169257812],[112.703260527344,27.4097585273437],[112.721898222656,27.3976222968751],[112.760797148438,27.406343],[112.772991972656,27.3737526679687],[112.793260527344,27.3597585273438],[112.804595976563,27.3433425117188],[112.871429472656,27.3597585273438],[112.917345,27.363843],[112.921883574219,27.3383815742188],[112.941883574219,27.3034596992188],[112.930770292969,27.2849953437501],[112.862982207031,27.22868675],[112.843026152344,27.193843],[112.871629667969,27.1439040351562],[112.803060332031,27.1237819648438],[112.825907011719,27.0838942695313],[112.743209257813,27.0923220039063],[112.739583769531,27.0567409492188],[112.751883574219,27.0283815742188],[112.770928984375,26.9951271796875],[112.751883574219,26.9793044257813],[112.747345,26.9738430000001],[112.727345,26.983843],[112.731429472656,26.9897585273437],[112.743616972656,26.9981716132813],[112.738426542969,27.0213259101563],[112.713819609375,27.0158107734375],[112.725318632813,27.0671047187501],[112.701214628906,27.0982057929688],[112.651429472656,27.1079274726563],[112.643260527344,27.1241188789063],[112.663648710938,27.1381960273438],[112.647345,27.2038430000001],[112.665826445313,27.2114382148438],[112.735780058594,27.1945827460938],[112.766846953125,27.2007204414063],[112.751300078125,27.2385549140626],[112.755609160156,27.2603566718751],[112.780277128906,27.2992140937501],[112.731519804688,27.3180178046875],[112.721724882813,27.331684796875],[112.702345,27.3278542304688],[112.692345,27.3298317695313],[112.664920683594,27.3244118476563],[112.653170195313,27.3080178046876],[112.613448515625,27.2849880195312],[112.654666777344,27.2690895820313],[112.641519804688,27.2596681953125],[112.630484648438,27.2442702460938],[112.575445585938,27.2551467109376],[112.567345,27.2438430000001],[112.53170046875,27.2581984687501],[112.520667753906,27.2724929023438],[112.523548613281,27.2919826484375],[112.50170046875,27.3281984687501],[112.49298953125,27.3494875312501],[112.46170046875,27.35819846875],[112.457345,27.363843],[112.4633996875,27.3768386054688],[112.482608671875,27.3658254218751],[112.500523710938,27.3795778632813],[112.488875761719,27.3998976875001],[112.505814238281,27.4077883125],[112.498875761719,27.4198976875],[112.514166289063,27.4270217109376],[112.517345,27.4338430000001],[112.538621855469,27.424907453125],[112.561898222656,27.440063703125],[112.57287234375,27.437602765625],[112.615391875,27.4730641914063],[112.651429472656,27.4579274726563],[112.683648710938,27.4496584296875]]]]}},{"type":"Feature","properties":{"name":"衡阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.487345,26.913843],[112.497345,26.913843],[112.497345,26.9038430000001],[112.487345,26.9038430000001],[112.487345,26.913843]]],[[[112.487345,26.913843],[112.472098417969,26.9075783515625],[112.43380984375,26.9368166328125],[112.410328398438,26.9040529609376],[112.413472929688,26.8881349921875],[112.382760039063,26.8762892890626],[112.372965117188,26.8899538398438],[112.357315703125,26.8868605781251],[112.277425566406,26.9028102851563],[112.252345,26.8978542304687],[112.212345,26.9057595039063],[112.167345,26.8968679023438],[112.152056914063,26.899887921875],[112.123170195313,26.8880178046876],[112.107345,26.883843],[112.041429472656,26.8879274726563],[112.008101835938,26.9019240546875],[111.997345,26.943843],[112.01095828125,26.9602297187501],[112.032806425781,26.9783815742188],[112.044908476563,27.0062795234375],[112.084935332031,27.0236403632813],[112.068743925781,27.0667311835937],[112.041793242188,27.0784206367188],[112.051168242188,27.1704055],[112.078270292969,27.1929177070313],[112.087345,27.2038430000001],[112.091883574219,27.2093044257813],[112.122806425781,27.2283815742188],[112.131883574219,27.2393044257813],[112.152896757813,27.2484206367188],[112.151326933594,27.263843],[112.153363066406,27.2838430000001],[112.15107546875,27.3062966132813],[112.169039335938,27.3279201484375],[112.221329375,27.2649709296875],[112.231883574219,27.2893044257813],[112.242806425781,27.2983815742188],[112.251883574219,27.3093044257813],[112.272806425781,27.3183815742187],[112.289639921875,27.3571901679688],[112.326346464844,27.3709841132813],[112.352345,27.3683327460938],[112.365875273438,27.369712140625],[112.412806425781,27.3593044257813],[112.432366972656,27.3481032539063],[112.457345,27.363843],[112.46170046875,27.35819846875],[112.49298953125,27.3494875312501],[112.50170046875,27.3281984687501],[112.523548613281,27.2919826484375],[112.520667753906,27.2724929023438],[112.53170046875,27.2581984687501],[112.567345,27.2438430000001],[112.572154570313,27.2386525703125],[112.647345,27.2038430000001],[112.663648710938,27.1381960273438],[112.643260527344,27.1241188789063],[112.651429472656,27.1079274726563],[112.701214628906,27.0982057929688],[112.725318632813,27.0671047187501],[112.713819609375,27.0158107734375],[112.738426542969,27.0213259101563],[112.743616972656,26.9981716132813],[112.731429472656,26.9897585273437],[112.727345,26.983843],[112.715513945313,26.9920119453125],[112.687037382813,27.0332570625001],[112.655936308594,27.02628440625],[112.647345,27.0138430000001],[112.632345,27.0071242500001],[112.601671171875,27.0208644843751],[112.593150664063,27.0070339179688],[112.577345,27.0119582343751],[112.534617949219,26.9986501289062],[112.543968535156,26.9686305976563],[112.537345,26.953843],[112.515201445313,26.9493727851563],[112.503985625,26.927202375],[112.490704375,26.920483625],[112.487345,26.913843]]]]}},{"type":"Feature","properties":{"name":"南岳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.721724882813,27.331684796875],[112.731519804688,27.3180178046875],[112.780277128906,27.2992140937501],[112.755609160156,27.2603566718751],[112.751300078125,27.2385549140626],[112.766846953125,27.2007204414063],[112.735780058594,27.1945827460938],[112.665826445313,27.2114382148438],[112.647345,27.2038430000001],[112.572154570313,27.2386525703125],[112.567345,27.2438430000001],[112.575445585938,27.2551467109376],[112.630484648438,27.2442702460938],[112.641519804688,27.2596681953125],[112.654666777344,27.2690895820313],[112.613448515625,27.2849880195312],[112.653170195313,27.3080178046876],[112.664920683594,27.3244118476563],[112.692345,27.3298317695313],[112.702345,27.3278542304688],[112.721724882813,27.331684796875]]]]}},{"type":"Feature","properties":{"name":"祁东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.737345,26.833843],[111.749537382813,26.8372658515626],[111.740767851563,26.8460353828126],[111.721248808594,26.8377468085938],[111.712960234375,26.8506911445313],[111.682584257813,26.8373708320313],[111.647345,26.8472731757813],[111.630181914063,26.7984743476563],[111.587345,26.793843],[111.583985625,26.8004836250001],[111.537345,26.8238430000001],[111.537345,26.843843],[111.54298953125,26.84819846875],[111.56170046875,26.87948753125],[111.585828886719,26.898110578125],[111.57298953125,26.9294875312501],[111.559100371094,26.9402077460938],[111.581832304688,26.9696584296875],[111.641436796875,26.9608498359375],[111.654796171875,27.0241579414063],[111.667345,27.033843],[111.683170195313,27.0380178046876],[111.722428007813,27.0704177070313],[111.763170195313,27.0596681953126],[111.774920683594,27.0432741523438],[111.802345,27.0378542304688],[111.812965117188,27.0399538398438],[111.828026152344,27.0189406562501],[111.890650664063,27.00241721875],[111.893333769531,26.988843],[111.891344023438,26.9787770820313],[111.90173953125,26.9269240546876],[111.935223417969,26.9524953437501],[111.972965117188,26.9599538398438],[111.981519804688,26.9480178046875],[111.997345,26.943843],[112.008101835938,26.9019240546875],[112.041429472656,26.8879274726563],[112.107345,26.883843],[112.141851835938,26.8437892890625],[112.20197390625,26.81847190625],[112.251187773438,26.8036525703125],[112.231693144531,26.7687136054687],[112.261768828125,26.7428005195313],[112.19271609375,26.7271120429688],[112.237437773438,26.6680471015625],[112.254398222656,26.6694094062501],[112.251365996094,26.631665265625],[112.318519316406,26.6114455390625],[112.332996855469,26.5989723945313],[112.32197390625,26.57921409375],[112.317345,26.563843],[112.309405546875,26.5574831367188],[112.316246367188,26.5024709296875],[112.256881132813,26.4664138007812],[112.192913847656,26.4743703437501],[112.187345,26.493843],[112.226029082031,26.5098415351562],[112.24197390625,26.5304177070313],[112.213236113281,26.55847190625],[112.142225371094,26.5081227851563],[112.13271609375,26.5212404609376],[112.152772246094,26.5385182929688],[112.151099882813,26.5593459296876],[112.1626965625,26.5584133125001],[112.17197390625,26.5850856757813],[112.140365019531,26.5991896796875],[112.1427746875,26.6291799140625],[112.109783964844,26.6498415351563],[112.082345,26.6476369453125],[112.057345,26.6496462226563],[112.042345,26.6484401679688],[112.003665800781,26.6515480781251],[111.99271609375,26.6364455390625],[112.013084746094,26.6188967109376],[111.996102324219,26.59921409375],[111.98271609375,26.62921409375],[111.963558378906,26.6457204414063],[111.911690703125,26.7356862617188],[111.912772246094,26.7491677070313],[111.885858183594,26.7723561835938],[111.860135527344,26.802212140625],[111.811585722656,26.7843825507813],[111.812847929688,26.8000881171875],[111.773316679688,26.7969118476563],[111.76271609375,26.80921409375],[111.74197390625,26.81847190625],[111.737345,26.833843]]]]}},{"type":"Feature","properties":{"name":"耒阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.072667265625,26.7093849921875],[113.093533964844,26.6974343085938],[113.112445097656,26.6993630195313],[113.147345,26.693843],[113.180704375,26.6896364570313],[113.173985625,26.567202375],[113.153985625,26.5420265937501],[113.190704375,26.5072023750001],[113.219771757813,26.498813703125],[113.227345,26.4838430000001],[113.219176054688,26.4720119453126],[113.187862578125,26.4503908515625],[113.211429472656,26.4341188789063],[113.182904082031,26.4075954414063],[113.161011992188,26.412505109375],[113.151160917969,26.3685646796876],[113.163880644531,26.3382814765625],[113.131429472656,26.3197585273438],[113.117435332031,26.2994899726563],[113.085408964844,26.287505109375],[113.081224394531,26.268843],[113.083658476563,26.2579811835938],[113.020699492188,26.2496633125],[113.033529082031,26.2191213203125],[113.031224394531,26.2088430000001],[113.034503203125,26.1942116523438],[113.016080351563,26.1675270820313],[112.961004667969,26.1551808906251],[112.921998320313,26.18058128125],[112.90435671875,26.1550295234376],[112.882345,26.1599636054688],[112.872345,26.1577223945313],[112.862345,26.1599636054688],[112.850067167969,26.157212140625],[112.821429472656,26.1679274726563],[112.812345,26.1922048164063],[112.791673613281,26.1875710273438],[112.777620878906,26.2079274726563],[112.771019316406,26.1885573554688],[112.78572390625,26.1659767890625],[112.773016386719,26.1475710273438],[112.750369902344,26.1526491523438],[112.754320097656,26.1350368476563],[112.732066679688,26.1400270820313],[112.717345,26.1338430000001],[112.681004667969,26.1157155585938],[112.677345,26.1338430000001],[112.691463652344,26.1455690742188],[112.651883574219,26.2083815742188],[112.641654082031,26.277055890625],[112.642889433594,26.2891896796875],[112.621654082031,26.3186989570312],[112.632882109375,26.3485768867188],[112.630816679688,26.3688430000001],[112.634676542969,26.4067263007813],[112.663973417969,26.4578737617187],[112.661326933594,26.4838430000001],[112.668753691406,26.5567263007813],[112.641151152344,26.5686989570313],[112.652806425781,26.5783815742188],[112.657345,26.583843],[112.667345,26.583843],[112.667345,26.5938430000001],[112.692806425781,26.5893044257813],[112.730208769531,26.5752516914063],[112.741883574219,26.5893044257813],[112.766556425781,26.6000075507813],[112.782806425781,26.6283815742188],[112.791883574219,26.6593044257813],[112.802806425781,26.6683815742187],[112.817345,26.6858815742188],[112.831954375,26.6682936835937],[112.858704863281,26.671020734375],[112.876654082031,26.6561110664063],[112.870950957031,26.6001686835938],[112.922440214844,26.6195143867188],[112.957728300781,26.5993044257813],[112.981883574219,26.629858625],[112.972806425781,26.6593044257813],[112.932806425781,26.6925319648437],[112.977144804688,26.7082765937501],[113.012345,26.6881154609375],[113.044461699219,26.7065114570313],[113.072667265625,26.7093849921875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北塔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.431673613281,27.3001149726563],[111.447345,27.2966017890626],[111.462386503906,27.2999733710938],[111.487345,27.293843],[111.483133574219,27.2568166328126],[111.453900175781,27.2758547187501],[111.467345,27.2438430000001],[111.415155058594,27.2394240546875],[111.426014433594,27.200786359375],[111.388533964844,27.2113185859375],[111.377345,27.193843],[111.351903105469,27.20851096875],[111.357345,27.263843],[111.371429472656,27.2697585273438],[111.419176054688,27.2820119453125],[111.431673613281,27.3001149726563]]]]}},{"type":"Feature","properties":{"name":"城步苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.483631621094,26.6851296210938],[110.514332304688,26.6337990546875],[110.533160429688,26.6483303046875],[110.530223417969,26.66819846875],[110.54298953125,26.6594875312501],[110.55978640625,26.6377248359376],[110.572857695313,26.6396584296876],[110.582542753906,26.6271096015626],[110.599359160156,26.66819846875],[110.618026152344,26.628872296875],[110.607345,26.563843],[110.602686796875,26.5440651679688],[110.575426054688,26.5525563789063],[110.563531523438,26.5176564765625],[110.541158476563,26.4900295234375],[110.533531523438,26.4576564765626],[110.521158476563,26.4500295234375],[110.513150664063,26.4370339179688],[110.483531523438,26.4462599921875],[110.491278105469,26.3867311835938],[110.513663359375,26.3202101875],[110.548389921875,26.30837425],[110.557345,26.2938430000001],[110.552064238281,26.2891237617188],[110.542625761719,26.2285622382813],[110.532064238281,26.2191237617188],[110.512625761719,26.1885622382813],[110.500223417969,26.1774782539063],[110.46439578125,26.179614484375],[110.373094511719,26.1019460273438],[110.328800078125,25.9807253242188],[110.277345,25.973843],[110.256204863281,25.9653444648438],[110.231820097656,26.0330763984375],[110.211610136719,26.0481081367188],[110.203079863281,26.0595778632813],[110.185394316406,26.0681081367188],[110.151217070313,26.0221633125],[110.122345,26.0400319648438],[110.102345,26.0276540351563],[110.072335234375,26.0462282539063],[110.063079863281,26.0702931953125],[110.093260527344,26.138520734375],[110.090623808594,26.153843],[110.094605742188,26.1769802070313],[110.033746367188,26.1665016914063],[110.002806425781,26.1897829414062],[109.982913847656,26.1863576484375],[109.973079863281,26.1995778632813],[109.967345,26.203843],[109.983985625,26.2372023750001],[109.987345,26.273843],[110.012303496094,26.2677126289063],[110.025491972656,26.2706691718751],[110.017345,26.303843],[110.017345,26.313843],[110.088275175781,26.3581130195313],[110.110279570313,26.3598830390625],[110.157767363281,26.3468849921875],[110.162747832031,26.4088430000001],[110.159796171875,26.4455568671875],[110.187769804688,26.5384719062501],[110.21271609375,26.51921409375],[110.222152128906,26.5082643867188],[110.252669707031,26.5194704414063],[110.263660917969,26.4592140937501],[110.293787871094,26.4688112617188],[110.315719023438,26.5416530585937],[110.389100371094,26.6303664375],[110.416024199219,26.6907009101563],[110.43197390625,26.70921409375],[110.437345,26.7138430000001],[110.448365507813,26.6995632148438],[110.483631621094,26.6851296210938]]]]}},{"type":"Feature","properties":{"name":"大祥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.470589628906,27.2097219062501],[111.552381621094,27.1982057929688],[111.587345,27.2038430000001],[111.581214628906,27.1788845039063],[111.583565703125,27.1683962226563],[111.570833769531,27.148843],[111.586280546875,27.1251198554688],[111.577345,27.103843],[111.542762480469,27.0959865546875],[111.532899199219,27.1193971992188],[111.510218535156,27.1504445625001],[111.479510527344,27.1466237617188],[111.484227324219,27.108716046875],[111.410548125,27.0793971992188],[111.412967558594,27.098843],[111.411678496094,27.1092018867188],[111.42334109375,27.1290431953126],[111.411790800781,27.1382888007813],[111.398450957031,27.1549489570313],[111.381790800781,27.1682888007813],[111.377345,27.193843],[111.388533964844,27.2113185859375],[111.426014433594,27.200786359375],[111.415155058594,27.2394240546875],[111.467345,27.2438430000001],[111.473001738281,27.229126203125],[111.470589628906,27.2097219062501]]]]}},{"type":"Feature","properties":{"name":"武冈市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.997345,26.923843],[111.007345,26.923843],[111.007345,26.913843],[110.997345,26.913843],[110.997345,26.923843]]],[[[110.997345,26.923843],[110.9841028125,26.9136208320313],[110.972222929688,26.8436891914062],[110.929967070313,26.8499343085938],[110.933084746094,26.828843],[110.931605253906,26.8188430000001],[110.935301542969,26.793843],[110.930560332031,26.7617629218751],[110.898695097656,26.7371657539062],[110.858587675781,26.7430934882812],[110.84298953125,26.7349245429688],[110.867139921875,26.71628440625],[110.859642363281,26.6655471015625],[110.809520292969,26.672954328125],[110.813822050781,26.643843],[110.810128203125,26.618843],[110.813822050781,26.5938430000001],[110.811087675781,26.5753346992187],[110.772857695313,26.5809841132813],[110.760809355469,26.565376203125],[110.713880644531,26.572309796875],[110.693485136719,26.5458864570313],[110.68298953125,26.55948753125],[110.607345,26.563843],[110.618026152344,26.628872296875],[110.599359160156,26.66819846875],[110.582542753906,26.6271096015626],[110.572857695313,26.6396584296876],[110.55978640625,26.6377248359376],[110.54298953125,26.6594875312501],[110.530223417969,26.66819846875],[110.533160429688,26.6483303046875],[110.514332304688,26.6337990546875],[110.483631621094,26.6851296210938],[110.448365507813,26.6995632148438],[110.437345,26.7138430000001],[110.446058378906,26.7251296210938],[110.477921171875,26.7497243476562],[110.50170046875,26.78948753125],[110.52298953125,26.81819846875],[110.537345,26.8538430000001],[110.543092070313,26.8876686835937],[110.59298953125,26.89819846875],[110.608426542969,26.91819846875],[110.6488684375,26.9080055976563],[110.695924101563,26.8796193671875],[110.691517363281,26.90944846875],[110.735714140625,26.9187746406251],[110.756058378906,26.9451296210938],[110.77298953125,26.95819846875],[110.783775664063,26.9721730781251],[110.832135039063,26.9580739570313],[110.842857695313,26.9596584296875],[110.85170046875,26.9481984687501],[110.87298953125,26.93948753125],[110.885267363281,26.90948753125],[110.90298953125,26.91819846875],[110.91170046875,26.93948753125],[110.948817167969,26.9498220039062],[110.930714140625,26.9798366523437],[110.911312285156,27.0291872382813],[110.917345,27.033843],[110.93205203125,27.0279323554688],[110.987235136719,27.0374318671875],[111.005875273438,27.0123732734376],[111.017345,27.003843],[111.031419707031,26.9418801093751],[111.001790800781,26.9293971992188],[110.997345,26.923843]]]]}},{"type":"Feature","properties":{"name":"洞口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.277345,26.983843],[110.289537382813,26.9804201484375],[110.280767851563,26.9716506171875],[110.277345,26.983843]]],[[[110.357345,27.0838430000001],[110.345152617188,27.0872658515625],[110.353922148438,27.0960353828125],[110.357345,27.0838430000001]]],[[[110.357345,27.0838430000001],[110.401627226563,27.1088796210938],[110.368914824219,27.1482888007813],[110.352899199219,27.1282888007813],[110.337906523438,27.1162844062501],[110.311846953125,27.11952659375],[110.300123320313,27.0917043281251],[110.302967558594,27.068843],[110.301722441406,27.058843],[110.303011503906,27.0484841132813],[110.289022246094,27.0246852851563],[110.277345,26.983843],[110.271158476563,26.9800295234375],[110.263531523438,26.9676564765625],[110.225855742188,26.9600295234376],[110.211539335938,26.9832643867188],[110.187345,26.9757277656251],[110.151656523438,26.9868434882813],[110.147345,26.993843],[110.15420046875,27.0596266914063],[110.172345,27.0585451484375],[110.184312773438,27.0592580390625],[110.205025664063,27.0824391914063],[110.191898222656,27.11901878125],[110.231898222656,27.144458234375],[110.27060671875,27.1622243476563],[110.340186796875,27.1580763984375],[110.356566191406,27.2284743476562],[110.434364042969,27.2005593085938],[110.461024199219,27.2586476875001],[110.503189726563,27.2779982734375],[110.517345,27.293843],[110.542418242188,27.3104128242188],[110.576326933594,27.2841310859376],[110.60744265625,27.2911061835938],[110.599871855469,27.3248757148438],[110.642296171875,27.354165265625],[110.647345,27.373843],[110.69939578125,27.3349929023438],[110.770972929688,27.3631325507813],[110.77677859375,27.323843],[110.771541777344,27.2884133125001],[110.793148222656,27.2592726875],[110.790291777344,27.2399440742188],[110.831009550781,27.1895607734375],[110.766014433594,27.178520734375],[110.78170046875,27.15819846875],[110.80298953125,27.1494875312501],[110.81170046875,27.12819846875],[110.850045195313,27.1175221992188],[110.87298953125,27.0794875312501],[110.884605742188,27.0511037421876],[110.91298953125,27.0394875312501],[110.917345,27.033843],[110.911312285156,27.0291872382813],[110.930714140625,26.9798366523437],[110.948817167969,26.9498220039062],[110.91170046875,26.93948753125],[110.90298953125,26.91819846875],[110.885267363281,26.90948753125],[110.87298953125,26.93948753125],[110.85170046875,26.9481984687501],[110.842857695313,26.9596584296875],[110.832135039063,26.9580739570313],[110.783775664063,26.9721730781251],[110.77298953125,26.95819846875],[110.756058378906,26.9451296210938],[110.735714140625,26.9187746406251],[110.691517363281,26.90944846875],[110.695924101563,26.8796193671875],[110.6488684375,26.9080055976563],[110.608426542969,26.91819846875],[110.59298953125,26.89819846875],[110.543092070313,26.8876686835937],[110.537345,26.8538430000001],[110.512000761719,26.8687429023437],[110.522635527344,26.888843],[110.498018828125,26.9353639960938],[110.482252226563,26.9183449531251],[110.472535429688,26.9490334296875],[110.456964140625,26.963462140625],[110.442535429688,26.9790334296875],[110.432154570313,26.9886525703125],[110.422535429688,27.0090334296876],[110.411949492188,27.0188430000001],[110.431824980469,27.03726096875],[110.372139921875,27.0486550117188],[110.372550078125,27.0590114570313],[110.357345,27.0838430000001]]]]}},{"type":"Feature","properties":{"name":"隆回县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.99134890625,27.663071515625],[111.002345,27.6369777656251],[111.027486601563,27.6401052070313],[111.058912382813,27.6268630195313],[111.085804472656,27.5932790351563],[111.152183867188,27.5782009101563],[111.162799101563,27.5795217109376],[111.179207792969,27.5590285468751],[111.197345,27.553843],[111.192039824219,27.5189650703126],[111.192655058594,27.5086428046876],[111.182034941406,27.4790431953125],[111.182972441406,27.4633107734375],[111.151451445313,27.448843],[111.15322390625,27.4190969062501],[111.13615359375,27.403843],[111.182010527344,27.3628688789063],[111.142625761719,27.3447927070312],[111.152938261719,27.3379836250001],[111.175948515625,27.3393556953125],[111.222625761719,27.2791237617188],[111.227345,27.263843],[111.221429472656,27.2469631171875],[111.222940703125,27.2088430000001],[111.222147246094,27.188843],[111.222542753906,27.178843],[111.222147246094,27.1688430000001],[111.223314238281,27.1393752265625],[111.211756621094,27.1286647773438],[111.21287234375,27.1005544257813],[111.202535429688,27.0786525703125],[111.1441809375,27.0601784492188],[111.1217590625,27.0394020820313],[111.141392851563,27.0022951484375],[111.072476835938,27.0497170234375],[111.059940214844,27.0231545234375],[111.032535429688,27.0086525703125],[111.017345,27.003843],[111.005875273438,27.0123732734376],[110.987235136719,27.0374318671875],[110.93205203125,27.0279323554688],[110.917345,27.033843],[110.91298953125,27.0394875312501],[110.884605742188,27.0511037421876],[110.87298953125,27.0794875312501],[110.850045195313,27.1175221992188],[110.81170046875,27.12819846875],[110.80298953125,27.1494875312501],[110.78170046875,27.15819846875],[110.766014433594,27.178520734375],[110.831009550781,27.1895607734375],[110.790291777344,27.2399440742188],[110.793148222656,27.2592726875],[110.771541777344,27.2884133125001],[110.77677859375,27.323843],[110.770972929688,27.3631325507813],[110.69939578125,27.3349929023438],[110.647345,27.373843],[110.641170683594,27.3786086250001],[110.65298953125,27.39819846875],[110.662511015625,27.4323928046875],[110.688804960938,27.4526882148438],[110.67298953125,27.50948753125],[110.625462675781,27.5425368476563],[110.677738066406,27.6102638984375],[110.701832304688,27.6067018867188],[110.717838164063,27.6274391914063],[110.734722929688,27.6299343085938],[110.731522246094,27.6082717109376],[110.75298953125,27.59948753125],[110.764451933594,27.5846364570313],[110.795609160156,27.5658425117188],[110.845067167969,27.5954225898438],[110.841529570313,27.6193556953125],[110.853160429688,27.6283303046875],[110.851226835938,27.6414015937501],[110.867345,27.653843],[110.912342558594,27.6594655585938],[110.937345,27.6563552070313],[110.99134890625,27.663071515625]]]]}},{"type":"Feature","properties":{"name":"邵东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.901529570313,27.3983303046875],[111.91298953125,27.38948753125],[111.923748808594,27.3755471015625],[111.96298953125,27.35948753125],[111.97170046875,27.34819846875],[111.98298953125,27.3394875312501],[111.99170046875,27.3281984687501],[112.008631621094,27.3151296210938],[112.02170046875,27.29819846875],[112.05298953125,27.28948753125],[112.064549589844,27.2214382148438],[112.087345,27.2038430000001],[112.078270292969,27.1929177070313],[112.051168242188,27.1704055],[112.041793242188,27.0784206367188],[112.068743925781,27.0667311835937],[112.084935332031,27.0236403632813],[112.044908476563,27.0062795234375],[112.032806425781,26.9783815742188],[112.01095828125,26.9602297187501],[111.997345,26.943843],[111.981519804688,26.9480178046875],[111.972965117188,26.9599538398438],[111.935223417969,26.9524953437501],[111.90173953125,26.9269240546876],[111.891344023438,26.9787770820313],[111.893333769531,26.988843],[111.890650664063,27.00241721875],[111.828026152344,27.0189406562501],[111.812965117188,27.0399538398438],[111.802345,27.0378542304688],[111.774920683594,27.0432741523438],[111.763170195313,27.0596681953126],[111.722428007813,27.0704177070313],[111.683170195313,27.0380178046876],[111.667345,27.033843],[111.660721464844,27.0486305976563],[111.663902617188,27.058843],[111.657750273438,27.0785939765626],[111.621683378906,27.090884015625],[111.602874785156,27.0603591132813],[111.593531523438,27.1000295234375],[111.577345,27.103843],[111.586280546875,27.1251198554688],[111.570833769531,27.148843],[111.583565703125,27.1683962226563],[111.581214628906,27.1788845039063],[111.587345,27.2038430000001],[111.609134550781,27.1942873359376],[111.621248808594,27.2321388984376],[111.601248808594,27.2777468085938],[111.597345,27.293843],[111.591029082031,27.319555890625],[111.607620878906,27.3279274726563],[111.623016386719,27.3056301093751],[111.642345,27.3099636054688],[111.652345,27.3077223945313],[111.662791777344,27.3100637031251],[111.689305449219,27.2928005195313],[111.678983183594,27.338843],[111.711607695313,27.35105003125],[111.731429472656,27.3797585273438],[111.750164824219,27.3926955390625],[111.772791777344,27.387622296875],[111.794459257813,27.4017311835938],[111.812345,27.3977223945313],[111.841295195313,27.4042116523438],[111.810394316406,27.4255471015625],[111.817345,27.453843],[111.848895292969,27.4615920234375],[111.867345,27.453843],[111.87170046875,27.4481984687501],[111.886551542969,27.4367360664063],[111.903140898438,27.409233625],[111.901529570313,27.3983303046875]]]]}},{"type":"Feature","properties":{"name":"邵阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.357345,27.263843],[111.351903105469,27.20851096875],[111.377345,27.193843],[111.381790800781,27.1682888007813],[111.398450957031,27.1549489570313],[111.411790800781,27.1382888007813],[111.42334109375,27.1290431953126],[111.411678496094,27.1092018867188],[111.412967558594,27.098843],[111.410548125,27.0793971992188],[111.484227324219,27.108716046875],[111.479510527344,27.1466237617188],[111.510218535156,27.1504445625001],[111.532899199219,27.1193971992188],[111.542762480469,27.0959865546875],[111.577345,27.103843],[111.593531523438,27.1000295234375],[111.602874785156,27.0603591132813],[111.621683378906,27.090884015625],[111.657750273438,27.0785939765626],[111.663902617188,27.058843],[111.660721464844,27.0486305976563],[111.667345,27.033843],[111.654796171875,27.0241579414063],[111.641436796875,26.9608498359375],[111.581832304688,26.9696584296875],[111.559100371094,26.9402077460938],[111.57298953125,26.9294875312501],[111.585828886719,26.898110578125],[111.56170046875,26.87948753125],[111.54298953125,26.84819846875],[111.537345,26.843843],[111.531790800781,26.8482888007813],[111.522899199219,26.8593971992188],[111.441302519531,26.8712721992188],[111.417345,26.8413552070313],[111.402899199219,26.8593971992188],[111.356449003906,26.8726760078125],[111.310863066406,26.8157497382813],[111.316698027344,26.768843],[111.311722441406,26.728843],[111.313023710938,26.7183888984376],[111.293057890625,26.7024025703125],[111.282899199219,26.6782888007813],[111.277345,26.6738430000001],[111.26298953125,26.70948753125],[111.248695097656,26.7205202460938],[111.212345,26.7151491523438],[111.198895292969,26.7788845039063],[111.14408328125,26.8013161445312],[111.1219153125,26.7980397773438],[111.0927746875,26.8196462226563],[111.074185820313,26.8168971992188],[111.06298953125,26.8227614570313],[111.083822050781,26.838843],[111.068878203125,26.8503786445313],[111.073167753906,26.8794142890626],[111.033748808594,26.8955471015625],[111.02298953125,26.90948753125],[111.007345,26.913843],[111.007345,26.923843],[110.997345,26.923843],[111.001790800781,26.9293971992188],[111.031419707031,26.9418801093751],[111.017345,27.003843],[111.032535429688,27.0086525703125],[111.059940214844,27.0231545234375],[111.072476835938,27.0497170234375],[111.141392851563,27.0022951484375],[111.1217590625,27.0394020820313],[111.1441809375,27.0601784492188],[111.202535429688,27.0786525703125],[111.21287234375,27.1005544257813],[111.211756621094,27.1286647773438],[111.223314238281,27.1393752265625],[111.222147246094,27.1688430000001],[111.222542753906,27.178843],[111.222147246094,27.188843],[111.222940703125,27.2088430000001],[111.221429472656,27.2469631171875],[111.227345,27.263843],[111.325455351563,27.2515846992188],[111.357345,27.263843]]]]}},{"type":"Feature","properties":{"name":"双清区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.52420046875,27.2998024726563],[111.519007597656,27.2831325507813],[111.542345,27.2904006171875],[111.57025515625,27.2817067695313],[111.597345,27.293843],[111.601248808594,27.2777468085938],[111.621248808594,27.2321388984376],[111.609134550781,27.1942873359376],[111.587345,27.2038430000001],[111.552381621094,27.1982057929688],[111.470589628906,27.2097219062501],[111.473001738281,27.229126203125],[111.467345,27.2438430000001],[111.453900175781,27.2758547187501],[111.483133574219,27.2568166328126],[111.487345,27.293843],[111.491383085938,27.3109865546875],[111.52420046875,27.2998024726563]]]]}},{"type":"Feature","properties":{"name":"绥宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.025491972656,26.2706691718751],[110.012303496094,26.2677126289063],[109.987345,26.273843],[109.979288359375,26.2779177070313],[109.990704375,26.3004836250001],[110.017345,26.303843],[110.025491972656,26.2706691718751]]],[[[110.357345,27.0838430000001],[110.353922148438,27.0960353828125],[110.345152617188,27.0872658515625],[110.372550078125,27.0590114570313],[110.372139921875,27.0486550117188],[110.431824980469,27.03726096875],[110.411949492188,27.0188430000001],[110.422535429688,27.0090334296876],[110.432154570313,26.9886525703125],[110.442535429688,26.9790334296875],[110.456964140625,26.963462140625],[110.472535429688,26.9490334296875],[110.482252226563,26.9183449531251],[110.498018828125,26.9353639960938],[110.522635527344,26.888843],[110.512000761719,26.8687429023437],[110.537345,26.8538430000001],[110.52298953125,26.81819846875],[110.50170046875,26.78948753125],[110.477921171875,26.7497243476562],[110.446058378906,26.7251296210938],[110.437345,26.7138430000001],[110.43197390625,26.70921409375],[110.416024199219,26.6907009101563],[110.389100371094,26.6303664375],[110.315719023438,26.5416530585937],[110.293787871094,26.4688112617188],[110.263660917969,26.4592140937501],[110.252669707031,26.5194704414063],[110.222152128906,26.5082643867188],[110.21271609375,26.51921409375],[110.187769804688,26.5384719062501],[110.159796171875,26.4455568671875],[110.162747832031,26.4088430000001],[110.157767363281,26.3468849921875],[110.110279570313,26.3598830390625],[110.088275175781,26.3581130195313],[110.017345,26.313843],[110.011429472656,26.3179274726563],[110.003260527344,26.3797585273437],[109.974845,26.3903908515626],[109.983648710938,26.4296584296875],[109.951429472656,26.4379274726563],[109.930943632813,26.4675954414063],[109.933602324219,26.4794557929688],[109.923973417969,26.4879274726563],[109.892791777344,26.467622296875],[109.877345,26.4710842109375],[109.861673613281,26.4675710273438],[109.857345,26.4738430000001],[109.86170046875,26.48948753125],[109.885865507813,26.529546125],[109.860203886719,26.5493556953125],[109.864486113281,26.5783303046875],[109.85170046875,26.58819846875],[109.84298953125,26.59948753125],[109.819364042969,26.6177223945313],[109.876053496094,26.660512921875],[109.892916289063,26.6580202460938],[109.902345,26.681059796875],[109.922345,26.6781032539063],[109.936851835938,26.6802468085938],[109.947345,26.693843],[109.984703398438,26.6890627265626],[110.009039335938,26.6597658515625],[110.041883574219,26.6993044257813],[110.071449003906,26.7121291328125],[110.043761015625,26.7351271796876],[110.062886992188,26.7685207343751],[110.061834746094,26.7788430000001],[110.062884550781,26.789126203125],[110.041805449219,26.8385597968751],[110.04541140625,26.873930890625],[110.064891386719,26.8901125312501],[110.082552519531,26.8883132148438],[110.101883574219,26.8934596992188],[110.076986113281,26.9369313789063],[110.102806425781,26.9583815742188],[110.111883574219,26.9793044257813],[110.122806425781,26.9883815742188],[110.127345,26.993843],[110.147345,26.993843],[110.151656523438,26.9868434882813],[110.187345,26.9757277656251],[110.211539335938,26.9832643867188],[110.225855742188,26.9600295234376],[110.263531523438,26.9676564765625],[110.271158476563,26.9800295234375],[110.277345,26.983843],[110.280767851563,26.9716506171875],[110.289537382813,26.9804201484375],[110.277345,26.983843],[110.289022246094,27.0246852851563],[110.303011503906,27.0484841132813],[110.301722441406,27.058843],[110.302967558594,27.068843],[110.300123320313,27.0917043281251],[110.311846953125,27.11952659375],[110.337906523438,27.1162844062501],[110.352899199219,27.1282888007813],[110.368914824219,27.1482888007813],[110.401627226563,27.1088796210938],[110.357345,27.0838430000001]]]]}},{"type":"Feature","properties":{"name":"新宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.997345,26.923843],[110.997345,26.913843],[111.007345,26.913843],[111.02298953125,26.90948753125],[111.033748808594,26.8955471015625],[111.073167753906,26.8794142890626],[111.068878203125,26.8503786445313],[111.083822050781,26.838843],[111.06298953125,26.8227614570313],[111.074185820313,26.8168971992188],[111.0927746875,26.8196462226563],[111.1219153125,26.7980397773438],[111.14408328125,26.8013161445312],[111.198895292969,26.7788845039063],[111.212345,26.7151491523438],[111.248695097656,26.7205202460938],[111.26298953125,26.70948753125],[111.277345,26.6738430000001],[111.282154570313,26.6686525703125],[111.302154570313,26.650122296875],[111.281717558594,26.4982741523438],[111.262161894531,26.4990480781251],[111.252528105469,26.478637921875],[111.22357546875,26.4797853828126],[111.18435671875,26.4590334296875],[111.151712675781,26.4878786445313],[111.152923613281,26.5184670234376],[111.121561308594,26.564048078125],[111.123844023438,26.6216481757813],[111.102535429688,26.5986525703126],[111.052535429688,26.5828224921875],[111.062154570313,26.5486525703125],[111.072740507813,26.538843],[111.05341921875,26.5209401679688],[111.052147246094,26.488843],[111.052550078125,26.4786794257813],[111.042154570313,26.4590334296875],[111.032535429688,26.4386525703125],[111.022154570313,26.4190334296875],[111.012310820313,26.3777101875],[110.997345,26.3638430000001],[110.973260527344,26.3797585273437],[110.939188261719,26.3879274726563],[110.946451445313,26.3555251289063],[110.928238554688,26.3121608710938],[110.933465605469,26.2888430000001],[110.927135039063,26.2606032539063],[110.917345,26.2538430000001],[110.910081816406,26.2813771796875],[110.822452421875,26.2638820625],[110.784285917969,26.2714235664063],[110.762777128906,26.25776878125],[110.73625125,26.2630104804688],[110.748502226563,26.3250002265626],[110.712420683594,26.2974465156251],[110.676019316406,26.3205568671875],[110.648551054688,26.3151296210938],[110.604171171875,26.3333669257812],[110.5801575,26.2998610664063],[110.557345,26.2938430000001],[110.548389921875,26.30837425],[110.513663359375,26.3202101875],[110.491278105469,26.3867311835938],[110.483531523438,26.4462599921875],[110.513150664063,26.4370339179688],[110.521158476563,26.4500295234375],[110.533531523438,26.4576564765626],[110.541158476563,26.4900295234375],[110.563531523438,26.5176564765625],[110.575426054688,26.5525563789063],[110.602686796875,26.5440651679688],[110.607345,26.563843],[110.68298953125,26.55948753125],[110.693485136719,26.5458864570313],[110.713880644531,26.572309796875],[110.760809355469,26.565376203125],[110.772857695313,26.5809841132813],[110.811087675781,26.5753346992187],[110.813822050781,26.5938430000001],[110.810128203125,26.618843],[110.813822050781,26.643843],[110.809520292969,26.672954328125],[110.859642363281,26.6655471015625],[110.867139921875,26.71628440625],[110.84298953125,26.7349245429688],[110.858587675781,26.7430934882812],[110.898695097656,26.7371657539062],[110.930560332031,26.7617629218751],[110.935301542969,26.793843],[110.931605253906,26.8188430000001],[110.933084746094,26.828843],[110.929967070313,26.8499343085938],[110.972222929688,26.8436891914062],[110.9841028125,26.9136208320313],[110.997345,26.923843]]]]}},{"type":"Feature","properties":{"name":"新邵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.583260527344,27.6097585273438],[111.591429472656,27.5879274726563],[111.631732207031,27.5775856757813],[111.641925078125,27.52538596875],[111.667345,27.5310842109376],[111.682345,27.5277223945312],[111.692791777344,27.530063703125],[111.711898222656,27.5176222968751],[111.722850371094,27.5200759101563],[111.756326933594,27.4941310859375],[111.783118925781,27.5001369453125],[111.791571074219,27.4775490546875],[111.803062773438,27.4801247382812],[111.817345,27.453843],[111.810394316406,27.4255471015625],[111.841295195313,27.4042116523438],[111.812345,27.3977223945313],[111.794459257813,27.4017311835938],[111.772791777344,27.387622296875],[111.750164824219,27.3926955390625],[111.731429472656,27.3797585273438],[111.711607695313,27.35105003125],[111.678983183594,27.338843],[111.689305449219,27.2928005195313],[111.662791777344,27.3100637031251],[111.652345,27.3077223945313],[111.642345,27.3099636054688],[111.623016386719,27.3056301093751],[111.607620878906,27.3279274726563],[111.591029082031,27.319555890625],[111.597345,27.293843],[111.57025515625,27.2817067695313],[111.542345,27.2904006171875],[111.519007597656,27.2831325507813],[111.52420046875,27.2998024726563],[111.491383085938,27.3109865546875],[111.487345,27.293843],[111.462386503906,27.2999733710938],[111.447345,27.2966017890626],[111.431673613281,27.3001149726563],[111.419176054688,27.2820119453125],[111.371429472656,27.2697585273438],[111.357345,27.263843],[111.325455351563,27.2515846992188],[111.227345,27.263843],[111.222625761719,27.2791237617188],[111.175948515625,27.3393556953125],[111.152938261719,27.3379836250001],[111.142625761719,27.3447927070312],[111.182010527344,27.3628688789063],[111.13615359375,27.403843],[111.15322390625,27.4190969062501],[111.151451445313,27.448843],[111.182972441406,27.4633107734375],[111.182034941406,27.4790431953125],[111.192655058594,27.5086428046876],[111.192039824219,27.5189650703126],[111.197345,27.553843],[111.213714628906,27.5502126289063],[111.225115996094,27.5302126289063],[111.258778105469,27.5433571601562],[111.292261992188,27.5712844062501],[111.310975371094,27.5574733710937],[111.327345,27.553843],[111.33197390625,27.54847190625],[111.34271609375,27.53921409375],[111.357345,27.5222365546875],[111.373079863281,27.5405007148438],[111.435277128906,27.5919460273438],[111.472611113281,27.57823753125],[111.481998320313,27.5992726875],[111.496990996094,27.5980666328125],[111.54271609375,27.61847190625],[111.55197390625,27.62921409375],[111.557345,27.633843],[111.563260527344,27.6297585273438],[111.571429472656,27.6179274726563],[111.583260527344,27.6097585273438]],[[111.615152617188,27.5572658515625],[111.627345,27.553843],[111.623922148438,27.5660353828126],[111.615152617188,27.5572658515625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"君山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.914049101563,29.5853249335938],[112.947193632813,29.4693971992188],[112.962899199219,29.4782888007813],[113.025416289063,29.5282888007813],[113.0598059375,29.5171608710938],[113.075079375,29.4293971992188],[113.092899199219,29.4382888007813],[113.104735136719,29.4663771796876],[113.137345,29.4538430000001],[113.106182890625,29.414926984375],[113.062899199219,29.3982888007813],[113.025213652344,29.387514875],[113.009151640625,29.3493971992188],[113.001790800781,29.3582888007813],[112.978280058594,29.414087140625],[112.892899199219,29.4693971992188],[112.861790800781,29.4782888007813],[112.81177859375,29.5182888007813],[112.767056914063,29.4602858710938],[112.792899199219,29.4493971992188],[112.801790800781,29.4382888007813],[112.807345,29.433843],[112.794742460938,29.3897682929688],[112.771441679688,29.371108625],[112.775140410156,29.3413649726563],[112.720755644531,29.3093971992188],[112.710968046875,29.3627785468751],[112.713934355469,29.3866188789062],[112.633377714844,29.4355495429688],[112.630213652344,29.4609743476563],[112.663211699219,29.4568703437501],[112.661666289063,29.4692971015625],[112.672899199219,29.4782888007813],[112.691790800781,29.5093971992188],[112.754171171875,29.527231671875],[112.736258574219,29.5577028632813],[112.801790800781,29.5993971992188],[112.822899199219,29.6082888007813],[112.871143828125,29.6468752265625],[112.907345,29.623843],[112.914049101563,29.5853249335938]]]]}},{"type":"Feature","properties":{"name":"平江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.863079863281,29.0595778632813],[113.885167265625,29.0298830390625],[113.937345,29.053843],[113.941429472656,29.0179274726563],[113.953565703125,28.9992897773438],[113.949312773438,28.9803127265625],[113.962345,28.9454811835938],[114.004847441406,28.9550075507813],[113.999251738281,28.9300466132813],[114.021998320313,28.8971047187501],[114.049796171875,28.9152077460938],[114.055706816406,28.888843],[114.050943632813,28.8675954414063],[114.07435671875,28.8336891914063],[114.122074003906,28.8443874335938],[114.149439726563,28.8254909492188],[114.139132109375,28.7795143867188],[114.147345,28.773843],[114.14193484375,28.7389601875],[114.143387480469,28.7208571601563],[114.13271609375,28.7084719062501],[114.121165800781,28.6985182929688],[114.124354277344,28.658843],[114.121942167969,28.628843],[114.123504667969,28.609419171875],[114.077345,28.553843],[114.052386503906,28.5477126289062],[114.037345,28.5510842109375],[114.013016386719,28.545630109375],[114.003260527344,28.5597585273438],[113.981969023438,28.5679274726563],[113.943260527344,28.5379274726563],[113.901429472656,28.5297585273438],[113.882542753906,28.5174587226562],[113.843629179688,28.5338039375],[113.807113066406,28.4666139960938],[113.725513945313,28.4456740546875],[113.710601835938,28.4240749335938],[113.664539824219,28.4434206367188],[113.641007109375,28.4775051093751],[113.593682890625,28.510180890625],[113.572847929688,28.5403542304688],[113.542345,28.5275417304688],[113.513260527344,28.5397585273438],[113.497345,28.543843],[113.493170195313,28.5596681953125],[113.4589465625,28.6011354804688],[113.4057825,28.590630109375],[113.414124785156,28.6328493476563],[113.367503691406,28.6480178046875],[113.353170195313,28.6280178046875],[113.331839628906,28.6196681953126],[113.279386015625,28.6412233710938],[113.250484648438,28.6355104804687],[113.233170195313,28.6596681953126],[113.227345,28.663843],[113.221612578125,28.6700319648438],[113.181361113281,28.6890261054688],[113.183336210938,28.738843],[113.180218535156,28.8175099921875],[113.223265410156,28.7878884101563],[113.252345,28.7890407539063],[113.262523222656,28.788637921875],[113.283250761719,28.8110085273438],[113.282139921875,28.8390309882813],[113.349830351563,28.8519533515626],[113.365570097656,28.834966046875],[113.392154570313,28.8490334296875],[113.414056425781,28.85937034375],[113.432525664063,28.8586379218751],[113.442154570313,28.8728224921875],[113.395682402344,28.9028322578126],[113.387345,28.963843],[113.40298953125,28.9681984687501],[113.432345,28.9797389960938],[113.483863554688,28.95948753125],[113.54298953125,28.9681984687501],[113.561954375,28.9796388984376],[113.601204863281,28.9738405585937],[113.619705839844,29.0190456367188],[113.674783964844,29.0406984687501],[113.703880644531,29.0363991523438],[113.72170046875,29.0594875312501],[113.727345,29.063843],[113.746287871094,29.0689772773438],[113.767203398438,29.0970973945313],[113.820423613281,29.1062599921875],[113.834454375,29.0709523750001],[113.863079863281,29.0595778632813]]]]}},{"type":"Feature","properties":{"name":"湘阴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.787345,28.553843],[112.799537382813,28.5572658515626],[112.790767851563,28.5660353828125],[112.771429472656,28.5497585273438],[112.726019316406,28.5118874335938],[112.677345,28.523843],[112.683150664063,28.5441481757813],[112.730784941406,28.57308128125],[112.711666289063,28.5883888984375],[112.713026152344,28.5993239570313],[112.696922636719,28.6082888007813],[112.655369902344,28.5838649726563],[112.642899199219,28.5682888007813],[112.606861601563,28.5394313789063],[112.555907011719,28.5693849921876],[112.572899199219,28.5982888007813],[112.581790800781,28.6325563789063],[112.507345,28.6538430000001],[112.511429472656,28.6597585273438],[112.521029082031,28.7025783515625],[112.543260527344,28.7179274726563],[112.553773222656,28.7331520820313],[112.593260527344,28.7479274726563],[112.617345,28.783843],[112.622806425781,28.7883815742188],[112.665516386719,28.7927346015625],[112.660816679688,28.8388430000001],[112.664549589844,28.8754616523438],[112.722806425781,28.8883815742188],[112.823826933594,28.9314553046875],[112.867345,28.983843],[112.891585722656,28.96370628125],[112.863026152344,28.9138430000001],[112.882806425781,28.8793044257813],[112.891883574219,28.8383815742188],[112.990081816406,28.8208815742188],[113.013782988281,28.7879494453125],[113.010306425781,28.753843],[113.014815703125,28.7096047187501],[113.002345,28.7083327460938],[112.986436796875,28.7099538398438],[112.952806425781,28.6953688789063],[112.962803984375,28.6766555],[113.023839140625,28.6501833320313],[113.011883574219,28.6293044257813],[113.002806425781,28.6083815742188],[112.991803007813,28.5891652656251],[112.993953886719,28.5680471015625],[112.977345,28.523843],[112.937642851563,28.5173220039063],[112.876951933594,28.5262892890625],[112.862857695313,28.5080275703125],[112.825264921875,28.5135842109375],[112.812857695313,28.5296584296875],[112.791978789063,28.5265724921876],[112.787345,28.553843]]]]}},{"type":"Feature","properties":{"name":"岳阳楼区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.202838164063,29.4054201484375],[113.252640410156,29.3980593085938],[113.317345,29.423843],[113.324505644531,29.3802468085938],[113.301038847656,29.3485939765625],[113.340716582031,29.3248659492188],[113.346287871094,29.2871559882813],[113.32298953125,29.24819846875],[113.307345,29.243843],[113.261519804688,29.2480178046876],[113.248155546875,29.2666628242188],[113.191519804688,29.2780178046875],[113.181724882813,29.2916847968751],[113.148153105469,29.2850514960938],[113.1564465625,29.2430934882813],[113.122393828125,29.2498220039063],[113.103053007813,29.2999709296875],[113.081580839844,29.2957277656251],[113.063170195313,29.3365163398438],[113.083170195313,29.3680178046876],[113.093031035156,29.3935817695313],[113.140404082031,29.4275392890625],[113.147345,29.4538430000001],[113.187608671875,29.4426296210938],[113.202838164063,29.4054201484375]]]]}},{"type":"Feature","properties":{"name":"岳阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.892899199219,29.4693971992188],[112.978280058594,29.414087140625],[113.001790800781,29.3582888007813],[113.009151640625,29.3493971992188],[113.025213652344,29.387514875],[113.062899199219,29.3982888007813],[113.106182890625,29.414926984375],[113.137345,29.4538430000001],[113.147345,29.4538430000001],[113.140404082031,29.4275392890625],[113.093031035156,29.3935817695313],[113.083170195313,29.3680178046876],[113.063170195313,29.3365163398438],[113.081580839844,29.2957277656251],[113.103053007813,29.2999709296875],[113.122393828125,29.2498220039063],[113.1564465625,29.2430934882813],[113.148153105469,29.2850514960938],[113.181724882813,29.2916847968751],[113.191519804688,29.2780178046875],[113.248155546875,29.2666628242188],[113.261519804688,29.2480178046876],[113.307345,29.243843],[113.311790800781,29.2382888007812],[113.332899199219,29.2293971992187],[113.342921171875,29.2056130195313],[113.402791777344,29.1981642890625],[113.461632109375,29.2452834296875],[113.472843046875,29.271889875],[113.519212675781,29.2661232734375],[113.542100859375,29.2795778632813],[113.591790800781,29.2682888007813],[113.597345,29.2638430000001],[113.601610136719,29.2581081367188],[113.633079863281,29.2495778632813],[113.649505644531,29.2274929023438],[113.691610136719,29.2347414375],[113.683079863281,29.1981081367188],[113.659971953125,29.1673976875],[113.671610136719,29.1381081367187],[113.685970488281,29.1149050117188],[113.679959746094,29.0799880195313],[113.724730253906,29.1076979804688],[113.721463652344,29.0887282539063],[113.727345,29.063843],[113.72170046875,29.0594875312501],[113.703880644531,29.0363991523438],[113.674783964844,29.0406984687501],[113.619705839844,29.0190456367188],[113.601204863281,28.9738405585937],[113.561954375,28.9796388984376],[113.54298953125,28.9681984687501],[113.483863554688,28.95948753125],[113.432345,28.9797389960938],[113.40298953125,28.9681984687501],[113.387345,28.963843],[113.331883574219,28.9783815742188],[113.309647246094,28.9911159492188],[113.282345,28.9883327460938],[113.244295683594,28.9922121406251],[113.228270292969,28.9729177070313],[113.209798613281,28.9575734687501],[113.192345,28.9593532539063],[113.18213015625,28.9583107734375],[113.122957792969,28.9748561835938],[113.061156035156,29.0102516914063],[113.04213015625,29.0083107734376],[112.988409453125,29.0233303046876],[112.969058867188,29.0679470039063],[112.952806425781,29.0483815742188],[112.937345,29.043843],[112.932899199219,29.0793971992188],[112.912913847656,29.1493849921875],[112.891185332031,29.1667848945313],[112.803704863281,29.155903546875],[112.797345,29.163843],[112.811297636719,29.1977956367188],[112.777345,29.1838430000001],[112.811429472656,29.3197585273438],[112.839534941406,29.3817702460938],[112.823592558594,29.4528908515625],[112.813260527344,29.4379274726563],[112.807345,29.433843],[112.801790800781,29.4382888007813],[112.792899199219,29.4493971992188],[112.767056914063,29.4602858710938],[112.81177859375,29.5182888007813],[112.861790800781,29.4782888007813],[112.892899199219,29.4693971992188]]]]}},{"type":"Feature","properties":{"name":"汨罗市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.988409453125,29.0233303046876],[113.04213015625,29.0083107734376],[113.061156035156,29.0102516914063],[113.122957792969,28.9748561835938],[113.18213015625,28.9583107734375],[113.192345,28.9593532539063],[113.209798613281,28.9575734687501],[113.228270292969,28.9729177070313],[113.244295683594,28.9922121406251],[113.282345,28.9883327460938],[113.309647246094,28.9911159492188],[113.331883574219,28.9783815742188],[113.387345,28.963843],[113.395682402344,28.9028322578126],[113.442154570313,28.8728224921875],[113.432525664063,28.8586379218751],[113.414056425781,28.85937034375],[113.392154570313,28.8490334296875],[113.365570097656,28.834966046875],[113.349830351563,28.8519533515626],[113.282139921875,28.8390309882813],[113.283250761719,28.8110085273438],[113.262523222656,28.788637921875],[113.252345,28.7890407539063],[113.223265410156,28.7878884101563],[113.180218535156,28.8175099921875],[113.183336210938,28.738843],[113.181361113281,28.6890261054688],[113.221612578125,28.6700319648438],[113.227345,28.663843],[113.22298953125,28.64819846875],[113.21170046875,28.6394875312501],[113.20298953125,28.61819846875],[113.181226835938,28.60140159375],[113.183084746094,28.588843],[113.181549101563,28.5784523750001],[113.193577910156,28.5585085273438],[113.157144804688,28.46948753125],[113.13170046875,28.4781984687501],[113.122821074219,28.4998976875001],[113.064329863281,28.5228908515626],[113.048631621094,28.5025563789063],[113.037345,28.4938430000001],[112.992608671875,28.4651100898438],[112.956361113281,28.4704665351563],[112.977345,28.523843],[112.993953886719,28.5680471015625],[112.991803007813,28.5891652656251],[113.002806425781,28.6083815742188],[113.011883574219,28.6293044257813],[113.023839140625,28.6501833320313],[112.962803984375,28.6766555],[112.952806425781,28.6953688789063],[112.986436796875,28.7099538398438],[113.002345,28.7083327460938],[113.014815703125,28.7096047187501],[113.010306425781,28.753843],[113.013782988281,28.7879494453125],[112.990081816406,28.8208815742188],[112.891883574219,28.8383815742188],[112.882806425781,28.8793044257813],[112.863026152344,28.9138430000001],[112.891585722656,28.96370628125],[112.867345,28.983843],[112.891429472656,29.0197585273438],[112.923260527344,29.0279274726563],[112.931429472656,29.0397585273438],[112.937345,29.043843],[112.952806425781,29.0483815742188],[112.969058867188,29.0679470039063],[112.988409453125,29.0233303046876]]]]}},{"type":"Feature","properties":{"name":"华容县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.920289335938,29.8014894843751],[112.932806425781,29.7790529609375],[112.918917265625,29.6895192695313],[112.947691679688,29.6872072578126],[112.969410429688,29.7358815742188],[113.023792753906,29.7784719062501],[113.022252226563,29.7498415351562],[113.001453886719,29.703227765625],[112.96197390625,29.66921409375],[112.95271609375,29.6584719062501],[112.907345,29.623843],[112.871143828125,29.6468752265625],[112.822899199219,29.6082888007813],[112.801790800781,29.5993971992188],[112.736258574219,29.5577028632813],[112.754171171875,29.527231671875],[112.691790800781,29.5093971992188],[112.672899199219,29.4782888007813],[112.661666289063,29.4692971015625],[112.663211699219,29.4568703437501],[112.630213652344,29.4609743476563],[112.633377714844,29.4355495429688],[112.713934355469,29.3866188789062],[112.710968046875,29.3627785468751],[112.720755644531,29.3093971992188],[112.775140410156,29.3413649726563],[112.771441679688,29.371108625],[112.794742460938,29.3897682929688],[112.807345,29.433843],[112.813260527344,29.4379274726563],[112.823592558594,29.4528908515625],[112.839534941406,29.3817702460938],[112.811429472656,29.3197585273438],[112.777345,29.1838430000001],[112.745064726563,29.1711525703125],[112.670374785156,29.2005153632813],[112.673084746094,29.2188430000001],[112.67156375,29.22913596875],[112.68312625,29.25855003125],[112.680203886719,29.2783303046875],[112.693929472656,29.2889235664063],[112.657464628906,29.3107326484375],[112.64298953125,29.3294875312501],[112.622760039063,29.3451003242187],[112.567789335938,29.3043434882813],[112.492838164063,29.3154201484376],[112.480084257813,29.3465822578125],[112.439488554688,29.36319846875],[112.380462675781,29.4011086250001],[112.383148222656,29.4192726875],[112.352828398438,29.4601662421875],[112.332735625,29.4480471015625],[112.315943632813,29.4505275703126],[112.324788847656,29.5103786445313],[112.307345,29.5238430000001],[112.311158476563,29.5400295234375],[112.363531523438,29.5476564765626],[112.410169707031,29.5877834296875],[112.424254179688,29.6291188789063],[112.488834257813,29.6376564765625],[112.501158476563,29.6176564765626],[112.524183378906,29.6034670234376],[112.57443484375,29.6259792304688],[112.607345,29.615727765625],[112.626370878906,29.6216530585938],[112.641539335938,29.5970339179688],[112.657345,29.6019582343751],[112.681785917969,29.5943459296875],[112.711158476563,29.6500295234375],[112.748021269531,29.6587136054688],[112.761158476563,29.6800295234375],[112.78187625,29.6927980781251],[112.794386015625,29.7295046210938],[112.787345,29.733843],[112.792786894531,29.7401589179688],[112.87404421875,29.7977736640626],[112.920289335938,29.8014894843751]],[[112.907345,29.783843],[112.910767851563,29.7716506171876],[112.919537382813,29.7804201484375],[112.903922148438,29.7960353828125],[112.895152617188,29.7872658515625],[112.907345,29.783843]]]]}},{"type":"Feature","properties":{"name":"临湘市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.333922148438,29.4960353828125],[113.337345,29.4838430000001],[113.325152617188,29.4872658515625],[113.333922148438,29.4960353828125]]],[[[113.532625761719,29.6828224921876],[113.552625761719,29.6737941718751],[113.659222441406,29.6801467109375],[113.672074003906,29.6385280585938],[113.683609648438,29.6392165351563],[113.702064238281,29.6185622382813],[113.734730253906,29.5893752265626],[113.712064238281,29.5691237617188],[113.702625761719,29.5585622382813],[113.682064238281,29.5491237617188],[113.662625761719,29.5385622382813],[113.622811308594,29.5202883125],[113.682625761719,29.5091237617188],[113.705311308594,29.483735578125],[113.737345,29.473843],[113.746280546875,29.4525661445313],[113.731124296875,29.4292897773438],[113.733475371094,29.4188014960938],[113.727345,29.393843],[113.663402128906,29.3890602851563],[113.653170195313,29.3380178046875],[113.624539824219,29.3174977851563],[113.613170195313,29.2880178046876],[113.597345,29.2638430000001],[113.591790800781,29.2682888007813],[113.542100859375,29.2795778632813],[113.519212675781,29.2661232734375],[113.472843046875,29.271889875],[113.461632109375,29.2452834296875],[113.402791777344,29.1981642890625],[113.342921171875,29.2056130195313],[113.332899199219,29.2293971992187],[113.311790800781,29.2382888007812],[113.307345,29.243843],[113.32298953125,29.24819846875],[113.346287871094,29.2871559882813],[113.340716582031,29.3248659492188],[113.301038847656,29.3485939765625],[113.324505644531,29.3802468085938],[113.317345,29.423843],[113.332899199219,29.4282888007812],[113.341890898438,29.4395217109375],[113.352345,29.4382204414063],[113.362345,29.4394655585937],[113.372730742188,29.4381740546875],[113.391790800781,29.4514357734375],[113.35166140625,29.468344953125],[113.352967558594,29.478843],[113.351666289063,29.4892971015625],[113.362899199219,29.4982888007813],[113.373844023438,29.5242653632813],[113.428531523438,29.5399001289063],[113.381007109375,29.5687673164063],[113.430360136719,29.6082888007813],[113.398914824219,29.6282888007813],[113.379344511719,29.6038503242188],[113.352703886719,29.6195095039063],[113.342274199219,29.6182131171875],[113.307345,29.623843],[113.307345,29.6438430000001],[113.422154570313,29.7490334296876],[113.472535429688,29.7786525703125],[113.532154570313,29.8290334296876],[113.567345,29.853843],[113.573109160156,29.837778546875],[113.551011992188,29.7761940742188],[113.5531653125,29.7400661445313],[113.532625761719,29.6828224921876]]]]}},{"type":"Feature","properties":{"name":"云溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.430360136719,29.6082888007813],[113.381007109375,29.5687673164063],[113.428531523438,29.5399001289063],[113.373844023438,29.5242653632813],[113.362899199219,29.4982888007813],[113.351666289063,29.4892971015625],[113.352967558594,29.478843],[113.35166140625,29.468344953125],[113.391790800781,29.4514357734375],[113.372730742188,29.4381740546875],[113.362345,29.4394655585937],[113.352345,29.4382204414063],[113.341890898438,29.4395217109375],[113.332899199219,29.4282888007812],[113.317345,29.423843],[113.252640410156,29.3980593085938],[113.202838164063,29.4054201484375],[113.187608671875,29.4426296210938],[113.147345,29.4538430000001],[113.182899199219,29.4982888007813],[113.21591921875,29.5452687812501],[113.262899199219,29.5782888007813],[113.285133085938,29.6060549140626],[113.307345,29.623843],[113.342274199219,29.6182131171875],[113.352703886719,29.6195095039063],[113.379344511719,29.6038503242188],[113.398914824219,29.6282888007813],[113.430360136719,29.6082888007813]],[[113.325152617188,29.4872658515625],[113.337345,29.4838430000001],[113.333922148438,29.4960353828125],[113.325152617188,29.4872658515625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"鼎城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.654945097656,28.9358571601563],[111.676168242188,28.8896193671876],[111.712120390625,28.9091555],[111.727877226563,28.9082155585938],[111.75093875,28.958462140625],[111.778140898438,28.960083234375],[111.807345,28.9538430000001],[111.82197390625,28.9412404609375],[111.81271609375,28.92847190625],[111.776002226563,28.91741721875],[111.760465117188,28.8751076484375],[111.84912234375,28.823989484375],[111.815858183594,28.7953298164063],[111.779971953125,28.753676984375],[111.75271609375,28.73847190625],[111.69271609375,28.72483909375],[111.71197390625,28.7084719062501],[111.74271609375,28.69921409375],[111.747345,28.663843],[111.721519804688,28.6496681953125],[111.711356230469,28.5989723945313],[111.667345,28.593843],[111.652916289063,28.6296657539063],[111.642345,28.6281032539063],[111.632345,28.6295827460937],[111.607515898438,28.6259133125001],[111.565203886719,28.6425466132813],[111.50298953125,28.5881984687501],[111.487345,28.583843],[111.497764921875,28.630649640625],[111.470716582031,28.6778737617188],[111.472855253906,28.698843],[111.471803007813,28.709165265625],[111.501676054688,28.76132346875],[111.471922636719,28.7582912421876],[111.45373171875,28.80022971875],[111.488792753906,28.7966579414063],[111.531883574219,28.8151540351563],[111.511734648438,28.868774640625],[111.533931914063,28.9481691718751],[111.587345,28.963843],[111.64048953125,28.9693801093751],[111.6542590625,29.0285622382813],[111.702064238281,29.0168019843751],[111.685553007813,28.9499050117188],[111.654945097656,28.9358571601563]]],[[[112.052579375,29.380718],[112.06197390625,29.2784719062501],[112.099041777344,29.2552541328125],[112.1370325,29.1551369453125],[112.17271609375,29.13921409375],[112.177345,29.133843],[112.16170046875,29.1294875312501],[112.130928984375,29.1109255195313],[112.060809355469,29.1212868476563],[112.03978640625,29.0940480781251],[111.967786894531,29.1046877265626],[111.973148222656,29.0684133125],[111.929937773438,29.0101320625001],[111.933084746094,28.9888430000001],[111.930660429688,28.9724416328126],[111.850924101563,28.9842263007812],[111.853172636719,28.9994411445313],[111.818426542969,29.0081984687501],[111.807345,28.9938430000001],[111.773604765625,29.0032375312501],[111.79298953125,29.01819846875],[111.807017851563,29.0363771796875],[111.79170046875,29.0481984687501],[111.78298953125,29.06948753125],[111.768695097656,29.0805202460938],[111.742147246094,29.07659690625],[111.73298953125,29.10948753125],[111.718695097656,29.1205202460938],[111.678765898438,29.1146193671876],[111.694945097656,29.1414430976563],[111.672459746094,29.13812034375],[111.652891875,29.0678517890626],[111.606507597656,29.0813771796876],[111.587345,29.0738430000001],[111.563697539063,29.0800807929688],[111.573455839844,29.1294631171876],[111.556436796875,29.1416603828126],[111.577940703125,29.1755300117188],[111.57127078125,29.2092751289063],[111.587144804688,29.2342775703126],[111.551217070313,29.2481349921875],[111.553389921875,29.2591310859376],[111.547345,29.273843],[111.552689238281,29.280766828125],[111.612345,29.2895827460938],[111.642345,29.2851491523438],[111.677345,29.2903200507813],[111.692486601563,29.2880837226562],[111.74279421875,29.2997389960938],[111.757345,29.2808864570313],[111.77170046875,29.29948753125],[111.777345,29.3038430000001],[111.787345,29.3038430000001],[111.787345,29.323843],[111.812345,29.3135695625],[111.852059355469,29.3298903632813],[111.93310671875,29.3137087226563],[111.952725859375,29.2863356757813],[111.961519804688,29.3196681953125],[112.007586699219,29.3374343085938],[112.037345,29.393843],[112.052579375,29.380718]]]]}},{"type":"Feature","properties":{"name":"汉寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.203170195313,29.1296681953125],[112.211724882813,29.1177321601563],[112.230824003906,29.1215065742188],[112.243170195313,29.0596681953125],[112.247345,29.053843],[112.241138945313,28.9907399726563],[112.257381621094,28.9465138984375],[112.250853300781,28.8652809882813],[112.30197390625,28.8212404609375],[112.29271609375,28.7884719062501],[112.275545683594,28.7736769843751],[112.27197390625,28.72921409375],[112.267345,28.7238430000001],[112.243765898438,28.7177907539063],[112.20201296875,28.6906032539063],[112.19033328125,28.6736891914063],[112.158992949219,28.6807155585938],[112.143260527344,28.6579274726562],[112.101429472656,28.6497585273438],[112.087345,28.643843],[112.083170195313,28.6496681953125],[112.071519804688,28.6580178046875],[112.063170195313,28.6696681953125],[112.013170195313,28.6740016914063],[112.033455839844,28.6594631171875],[112.030079375,28.6423757148438],[111.986571074219,28.65097190625],[111.973170195313,28.6696681953125],[111.922410917969,28.6798439765625],[111.909681425781,28.677329328125],[111.914600859375,28.652426984375],[111.8719153125,28.6359645820313],[111.849244414063,28.6404445625],[111.832965117188,28.6177321601563],[111.816571074219,28.62097190625],[111.803170195313,28.6396681953125],[111.784132109375,28.6533132148438],[111.76951296875,28.632915265625],[111.747345,28.663843],[111.74271609375,28.69921409375],[111.71197390625,28.7084719062501],[111.69271609375,28.72483909375],[111.75271609375,28.73847190625],[111.779971953125,28.753676984375],[111.815858183594,28.7953298164063],[111.84912234375,28.823989484375],[111.760465117188,28.8751076484375],[111.776002226563,28.91741721875],[111.81271609375,28.92847190625],[111.82197390625,28.9412404609375],[111.807345,28.9538430000001],[111.813543730469,28.9686037421875],[111.807345,28.9938430000001],[111.818426542969,29.0081984687501],[111.853172636719,28.9994411445313],[111.850924101563,28.9842263007812],[111.930660429688,28.9724416328126],[111.933084746094,28.9888430000001],[111.929937773438,29.0101320625001],[111.973148222656,29.0684133125],[111.967786894531,29.1046877265626],[112.03978640625,29.0940480781251],[112.060809355469,29.1212868476563],[112.130928984375,29.1109255195313],[112.16170046875,29.1294875312501],[112.177345,29.133843],[112.182345,29.1210353828126],[112.187345,29.133843],[112.203170195313,29.1296681953125]]]]}},{"type":"Feature","properties":{"name":"桃源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.380284453125,29.2792629218751],[111.392352324219,29.2785451484375],[111.477345,29.283843],[111.515506621094,29.2660231757813],[111.547345,29.273843],[111.553389921875,29.2591310859376],[111.551217070313,29.2481349921875],[111.587144804688,29.2342775703126],[111.57127078125,29.2092751289063],[111.577940703125,29.1755300117188],[111.556436796875,29.1416603828126],[111.573455839844,29.1294631171876],[111.563697539063,29.0800807929688],[111.587345,29.0738430000001],[111.590433378906,29.0369313789063],[111.610164824219,29.013843],[111.590433378906,28.9907546210938],[111.587345,28.963843],[111.533931914063,28.9481691718751],[111.511734648438,28.868774640625],[111.531883574219,28.8151540351563],[111.488792753906,28.7966579414063],[111.45373171875,28.80022971875],[111.471922636719,28.7582912421876],[111.501676054688,28.76132346875],[111.471803007813,28.709165265625],[111.472855253906,28.698843],[111.470716582031,28.6778737617188],[111.497764921875,28.630649640625],[111.487345,28.583843],[111.473543730469,28.5666091132813],[111.392506132813,28.5482009101563],[111.374276152344,28.5504689765625],[111.309229765625,28.5223903632813],[111.247345,28.5300856757813],[111.222799101563,28.5270339179688],[111.212545195313,28.53983909375],[111.175172148438,28.5178688789063],[111.15634890625,28.5202101875],[111.135662871094,28.4711208320313],[111.112345,28.4682204414063],[111.101986113281,28.4695095039062],[111.077464628906,28.4550954414063],[111.042093535156,28.4594972968751],[110.94068484375,28.43050315625],[110.882486601563,28.4081325507813],[110.857345,28.413843],[110.9084778125,28.4731935859375],[110.944967070313,28.4894753242188],[110.96197390625,28.50921409375],[111.000711699219,28.5425905585938],[111.074530058594,28.5366579414063],[111.051920195313,28.5685475898437],[111.053148222656,28.583843],[111.051341582031,28.6063283515625],[111.002584257813,28.5884230781251],[110.983902617188,28.5899221015625],[110.947320585938,28.576489484375],[110.928533964844,28.6185866523438],[110.98271609375,28.6284719062501],[110.996600371094,28.6445876289063],[111.056409941406,28.662593],[111.041693144531,28.6889723945312],[111.054359160156,28.6998854804687],[111.072345,28.6984401679688],[111.084205351563,28.6993947578125],[111.103284941406,28.7421535468751],[111.100870390625,28.7721901679688],[111.08197390625,28.7884719062501],[111.069115019531,28.8172878242188],[111.03197390625,28.8284719062501],[111.013856230469,28.8494997382813],[110.98271609375,28.8992140937501],[110.96197390625,28.90847190625],[110.94271609375,28.9461598945313],[110.973116484375,28.9890358710938],[110.95197390625,28.99847190625],[110.94271609375,29.0092140937501],[110.91197390625,29.02847190625],[110.907345,29.0338430000001],[110.904801054688,29.0512990546876],[110.879888945313,29.0563869453126],[110.849925566406,29.0861428046875],[110.847345,29.1038430000001],[110.862066679688,29.1100270820312],[110.877345,29.1066017890625],[110.910584746094,29.1140529609376],[110.921429472656,29.1297585273438],[110.941732207031,29.1437770820313],[110.981898222656,29.1176222968751],[111.010584746094,29.1240529609376],[111.021429472656,29.1397585273438],[111.047625761719,29.1495607734375],[111.086278105469,29.206958234375],[111.150245390625,29.241723859375],[111.182142363281,29.2209523750001],[111.225306425781,29.2306276679687],[111.217633085938,29.2648610664063],[111.246483183594,29.3020851875001],[111.231043730469,29.3388430000001],[111.24888796875,29.38132346875],[111.293260527344,29.3979274726563],[111.297345,29.403843],[111.316160917969,29.3980324531251],[111.354261503906,29.345532453125],[111.382718535156,29.3201076484375],[111.380284453125,29.2792629218751]]]]}},{"type":"Feature","properties":{"name":"武陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.694945097656,29.1414430976563],[111.678765898438,29.1146193671876],[111.718695097656,29.1205202460938],[111.73298953125,29.10948753125],[111.742147246094,29.07659690625],[111.768695097656,29.0805202460938],[111.78298953125,29.06948753125],[111.79170046875,29.0481984687501],[111.807017851563,29.0363771796875],[111.79298953125,29.01819846875],[111.773604765625,29.0032375312501],[111.807345,28.9938430000001],[111.813543730469,28.9686037421875],[111.807345,28.9538430000001],[111.778140898438,28.960083234375],[111.75093875,28.958462140625],[111.727877226563,28.9082155585938],[111.712120390625,28.9091555],[111.676168242188,28.8896193671876],[111.654945097656,28.9358571601563],[111.685553007813,28.9499050117188],[111.702064238281,29.0168019843751],[111.6542590625,29.0285622382813],[111.64048953125,28.9693801093751],[111.587345,28.963843],[111.590433378906,28.9907546210938],[111.610164824219,29.013843],[111.590433378906,29.0369313789063],[111.587345,29.0738430000001],[111.606507597656,29.0813771796876],[111.652891875,29.0678517890626],[111.672459746094,29.13812034375],[111.694945097656,29.1414430976563]]]]}},{"type":"Feature","properties":{"name":"安乡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.227345,29.653843],[112.227345,29.663843],[112.237345,29.663843],[112.237345,29.653843],[112.227345,29.653843]]],[[[112.227345,29.653843],[112.23170046875,29.6181984687501],[112.30170046875,29.5895510078126],[112.29298953125,29.55819846875],[112.28170046875,29.53948753125],[112.277345,29.513843],[112.293685332031,29.4466164375],[112.28298953125,29.40819846875],[112.245811796875,29.3580544257813],[112.254945097656,29.2962429023438],[112.23205203125,29.29962425],[112.217345,29.2938430000001],[112.213922148438,29.3060353828125],[112.205152617188,29.2972658515625],[112.217345,29.2938430000001],[112.223590117188,29.2438552070313],[112.221722441406,29.2288430000001],[112.224378691406,29.2074831367188],[112.193448515625,29.1827150703126],[112.191102324219,29.163843],[112.193001738281,29.148559796875],[112.187345,29.133843],[112.182345,29.1210353828126],[112.177345,29.133843],[112.17271609375,29.13921409375],[112.1370325,29.1551369453125],[112.099041777344,29.2552541328125],[112.06197390625,29.2784719062501],[112.052579375,29.380718],[112.037345,29.393843],[112.03298953125,29.3994875312501],[111.984273710938,29.4130519843751],[111.977345,29.4538430000001],[111.99939578125,29.4623195625001],[112.032345,29.4582204414063],[112.046336699219,29.4599611640625],[112.071790800781,29.4922731757813],[112.038494902344,29.5189382148438],[112.052974882813,29.6087721992188],[112.050325957031,29.6300710273438],[112.028333769531,29.6872878242188],[112.047345,29.7538430000001],[112.055855742188,29.7676564765626],[112.069412871094,29.7365309882813],[112.054664335938,29.689184796875],[112.093531523438,29.6800295234375],[112.112835722656,29.6664772773437],[112.142345,29.6572853828125],[112.171385527344,29.6663307929688],[112.186776152344,29.6211696601563],[112.213531523438,29.6376564765625],[112.221158476563,29.6500295234375],[112.227345,29.653843]]]]}},{"type":"Feature","properties":{"name":"津市市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.787345,29.323843],[111.787345,29.3038430000001],[111.777345,29.3038430000001],[111.777345,29.323843],[111.787345,29.323843]]],[[[111.823922148438,29.4760353828125],[111.827345,29.463843],[111.815152617188,29.4672658515626],[111.823922148438,29.4760353828125]]],[[[111.937345,29.5238430000001],[111.917345,29.5238430000001],[111.921363554688,29.5557131171875],[111.937345,29.5238430000001]]],[[[111.917345,29.5238430000001],[111.927345,29.5098903632813],[111.937345,29.5238430000001],[111.942806425781,29.5193044257813],[111.951883574219,29.5083815742188],[111.963363066406,29.498843],[111.943267851563,29.4821486640626],[111.977345,29.4538430000001],[111.984273710938,29.4130519843751],[112.03298953125,29.3994875312501],[112.037345,29.393843],[112.007586699219,29.3374343085938],[111.961519804688,29.3196681953125],[111.952725859375,29.2863356757813],[111.93310671875,29.3137087226563],[111.852059355469,29.3298903632813],[111.812345,29.3135695625],[111.787345,29.323843],[111.820535917969,29.4475319648438],[111.832535429688,29.4586525703126],[111.842154570313,29.4752883125],[111.781004667969,29.4990993476563],[111.767345,29.513843],[111.79771609375,29.5672658515625],[111.81197390625,29.59921409375],[111.82271609375,29.60847190625],[111.83197390625,29.6192140937501],[111.86271609375,29.6284719062501],[111.877152128906,29.6920119453125],[111.917178984375,29.7384719062501],[111.94197390625,29.7077443671875],[111.93271609375,29.67847190625],[111.900345488281,29.6687258125],[111.905130644531,29.6091677070313],[111.869154082031,29.5781716132813],[111.91197390625,29.52847190625],[111.917345,29.5238430000001]]]]}},{"type":"Feature","properties":{"name":"临澧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.467345,29.363843],[111.433814726563,29.3289430976563],[111.427291289063,29.3696950507813],[111.467345,29.363843]]],[[[111.467345,29.363843],[111.50283328125,29.42894065625],[111.491910429688,29.4386989570312],[111.504908476563,29.4749245429688],[111.487552519531,29.5068630195313],[111.462030058594,29.5185768867188],[111.462940703125,29.533843],[111.462034941406,29.5490407539062],[111.465260039063,29.5585622382813],[111.493006621094,29.5275075507813],[111.522064238281,29.5306911445313],[111.491971464844,29.5575783515626],[111.492764921875,29.5709035468751],[111.532606230469,29.5685305],[111.542064238281,29.5847927070313],[111.511024199219,29.5990383125],[111.492625761719,29.6391237617187],[111.480875273438,29.6607472968751],[111.442064238281,29.6785622382813],[111.430448027344,29.6915627265625],[111.437345,29.7238430000001],[111.442806425781,29.7283815742188],[111.454290800781,29.7675124335938],[111.472691679688,29.7693874335938],[111.517889433594,29.736860578125],[111.542345,29.7393532539063],[111.552735625,29.7382936835938],[111.577728300781,29.7683815742188],[111.613526640625,29.7554274726563],[111.609915800781,29.720014875],[111.625714140625,29.7068923164063],[111.620936308594,29.6600319648438],[111.639510527344,29.6276027656251],[111.60310671875,29.631313703125],[111.600970488281,29.610356671875],[111.625042753906,29.5965700507813],[111.662161894531,29.6003542304688],[111.681883574219,29.5683815742188],[111.712899199219,29.5592775703125],[111.7092590625,29.5235768867188],[111.72923953125,29.4995241523438],[111.767345,29.513843],[111.781004667969,29.4990993476563],[111.842154570313,29.4752883125],[111.832535429688,29.4586525703126],[111.820535917969,29.4475319648438],[111.787345,29.323843],[111.777345,29.323843],[111.777345,29.3038430000001],[111.77170046875,29.29948753125],[111.757345,29.2808864570313],[111.74279421875,29.2997389960938],[111.692486601563,29.2880837226562],[111.677345,29.2903200507813],[111.642345,29.2851491523438],[111.612345,29.2895827460938],[111.552689238281,29.280766828125],[111.547345,29.273843],[111.515506621094,29.2660231757813],[111.477345,29.283843],[111.480704375,29.300483625],[111.513985625,29.307202375],[111.527418242188,29.3337551093751],[111.467345,29.363843]],[[111.827345,29.463843],[111.823922148438,29.4760353828125],[111.815152617188,29.4672658515626],[111.827345,29.463843]]]]}},{"type":"Feature","properties":{"name":"石门县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.467345,29.363843],[111.427291289063,29.3696950507813],[111.433814726563,29.3289430976563],[111.527418242188,29.3337551093751],[111.513985625,29.307202375],[111.480704375,29.300483625],[111.477345,29.283843],[111.392352324219,29.2785451484375],[111.380284453125,29.2792629218751],[111.382718535156,29.3201076484375],[111.354261503906,29.345532453125],[111.316160917969,29.3980324531251],[111.297345,29.403843],[111.291822539063,29.4087770820313],[111.313756132813,29.4401784492188],[111.3120325,29.469067609375],[111.32373171875,29.4905934882812],[111.321929960938,29.5208107734375],[111.302064238281,29.5385622382813],[111.292625761719,29.5491237617188],[111.282064238281,29.5585622382813],[111.241585722656,29.6038649726563],[111.152120390625,29.5985305000001],[111.132625761719,29.6091237617188],[111.052845488281,29.6276857734375],[111.042625761719,29.6391237617187],[111.0320325,29.6485890937501],[111.033111601563,29.6666847968751],[110.976060820313,29.6799587226563],[110.936549101563,29.677602765625],[110.882503691406,29.6891506171875],[110.872345,29.6885451484375],[110.846046171875,29.69011253125],[110.757345,29.6838430000001],[110.752308378906,29.717514875],[110.716983671875,29.6933229804688],[110.664666777344,29.7080275703125],[110.653441191406,29.7399391914063],[110.635150175781,29.7516481757813],[110.627345,29.763843],[110.638504667969,29.7734572578125],[110.618595,29.8276662421875],[110.569034453125,29.8497829414062],[110.54810671875,29.8481008125],[110.53271609375,29.89921409375],[110.501485625,29.9131496406251],[110.504920683594,29.9559084296875],[110.551956816406,29.9964333320313],[110.496600371094,30.0130983710938],[110.487345,30.0238430000001],[110.492772246094,30.0285182929687],[110.491214628906,30.0479201484375],[110.527491484375,30.0612429023438],[110.562345,30.0584401679688],[110.577345,30.0596462226563],[110.592547636719,30.0584255195313],[110.654754667969,30.0754494453125],[110.708626738281,30.0332595039063],[110.74271609375,30.0484719062501],[110.75318484375,30.12847190625],[110.911690703125,30.1137306953125],[110.922642851563,30.0655275703125],[111.11197390625,30.0484719062501],[111.237345,30.043843],[111.240704375,30.037202375],[111.253985625,30.030483625],[111.260704375,30.017202375],[111.283985625,30.010483625],[111.297423125,29.983921125],[111.323985625,29.970483625],[111.337345,29.9438430000001],[111.311429472656,29.9397585273438],[111.262386503906,29.9277126289063],[111.250067167969,29.930473859375],[111.213260527344,29.9167018867188],[111.223101835938,29.8699880195313],[111.247652617188,29.8344289375],[111.287259550781,29.8433083320313],[111.313758574219,29.8091139960938],[111.300736113281,29.7781056953126],[111.338289824219,29.7684670234375],[111.361783476563,29.7273073554688],[111.400601835938,29.7436110664063],[111.411429472656,29.7279274726563],[111.437345,29.7238430000001],[111.430448027344,29.6915627265625],[111.442064238281,29.6785622382813],[111.480875273438,29.6607472968751],[111.492625761719,29.6391237617187],[111.511024199219,29.5990383125],[111.542064238281,29.5847927070313],[111.532606230469,29.5685305],[111.492764921875,29.5709035468751],[111.491971464844,29.5575783515626],[111.522064238281,29.5306911445313],[111.493006621094,29.5275075507813],[111.465260039063,29.5585622382813],[111.462034941406,29.5490407539062],[111.462940703125,29.533843],[111.462030058594,29.5185768867188],[111.487552519531,29.5068630195313],[111.504908476563,29.4749245429688],[111.491910429688,29.4386989570312],[111.50283328125,29.42894065625],[111.467345,29.363843]]]]}},{"type":"Feature","properties":{"name":"澧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.917345,29.5238430000001],[111.937345,29.5238430000001],[111.927345,29.5098903632813],[111.917345,29.5238430000001]]],[[[111.937345,29.5238430000001],[111.921363554688,29.5557131171875],[111.917345,29.5238430000001],[111.91197390625,29.52847190625],[111.869154082031,29.5781716132813],[111.905130644531,29.6091677070313],[111.900345488281,29.6687258125],[111.93271609375,29.67847190625],[111.94197390625,29.7077443671875],[111.917178984375,29.7384719062501],[111.877152128906,29.6920119453125],[111.86271609375,29.6284719062501],[111.83197390625,29.6192140937501],[111.82271609375,29.60847190625],[111.81197390625,29.59921409375],[111.79771609375,29.5672658515625],[111.767345,29.513843],[111.72923953125,29.4995241523438],[111.7092590625,29.5235768867188],[111.712899199219,29.5592775703125],[111.681883574219,29.5683815742188],[111.662161894531,29.6003542304688],[111.625042753906,29.5965700507813],[111.600970488281,29.610356671875],[111.60310671875,29.631313703125],[111.639510527344,29.6276027656251],[111.620936308594,29.6600319648438],[111.625714140625,29.7068923164063],[111.609915800781,29.720014875],[111.613526640625,29.7554274726563],[111.577728300781,29.7683815742188],[111.552735625,29.7382936835938],[111.542345,29.7393532539063],[111.517889433594,29.736860578125],[111.472691679688,29.7693874335938],[111.454290800781,29.7675124335938],[111.442806425781,29.7283815742188],[111.437345,29.7238430000001],[111.411429472656,29.7279274726563],[111.400601835938,29.7436110664063],[111.361783476563,29.7273073554688],[111.338289824219,29.7684670234375],[111.300736113281,29.7781056953126],[111.313758574219,29.8091139960938],[111.287259550781,29.8433083320313],[111.247652617188,29.8344289375],[111.223101835938,29.8699880195313],[111.213260527344,29.9167018867188],[111.250067167969,29.930473859375],[111.262386503906,29.9277126289063],[111.311429472656,29.9397585273438],[111.337345,29.9438430000001],[111.3741028125,29.9579714179688],[111.370709257813,29.9306838203126],[111.402345,29.9120876289062],[111.431986113281,29.9295095039063],[111.442345,29.9282204414063],[111.452345,29.9294655585938],[111.482345,29.9257326484376],[111.514610625,29.9297463203125],[111.536261015625,29.9027101875],[111.643294707031,29.8893971992188],[111.706900664063,29.9008010078125],[111.727581816406,29.9266286445312],[111.807345,29.9038430000001],[111.812323027344,29.8973952460938],[111.85170046875,29.86819846875],[111.907659941406,29.856391828125],[111.922857695313,29.8367018867188],[111.954945097656,29.8414430976563],[111.948680449219,29.7990407539063],[111.998631621094,29.7851296210938],[112.047345,29.7538430000001],[112.028333769531,29.6872878242188],[112.050325957031,29.6300710273438],[112.052974882813,29.6087721992188],[112.038494902344,29.5189382148438],[112.071790800781,29.4922731757813],[112.046336699219,29.4599611640625],[112.032345,29.4582204414063],[111.99939578125,29.4623195625001],[111.977345,29.4538430000001],[111.943267851563,29.4821486640626],[111.963363066406,29.498843],[111.951883574219,29.5083815742188],[111.942806425781,29.5193044257813],[111.937345,29.5238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"慈利县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.846046171875,29.69011253125],[110.872345,29.6885451484375],[110.882503691406,29.6891506171875],[110.936549101563,29.677602765625],[110.976060820313,29.6799587226563],[111.033111601563,29.6666847968751],[111.0320325,29.6485890937501],[111.042625761719,29.6391237617187],[111.052845488281,29.6276857734375],[111.132625761719,29.6091237617188],[111.152120390625,29.5985305000001],[111.241585722656,29.6038649726563],[111.282064238281,29.5585622382813],[111.292625761719,29.5491237617188],[111.302064238281,29.5385622382813],[111.321929960938,29.5208107734375],[111.32373171875,29.4905934882812],[111.3120325,29.469067609375],[111.313756132813,29.4401784492188],[111.291822539063,29.4087770820313],[111.297345,29.403843],[111.293260527344,29.3979274726563],[111.24888796875,29.38132346875],[111.231043730469,29.3388430000001],[111.246483183594,29.3020851875001],[111.217633085938,29.2648610664063],[111.225306425781,29.2306276679687],[111.182142363281,29.2209523750001],[111.150245390625,29.241723859375],[111.086278105469,29.206958234375],[111.047625761719,29.1495607734375],[111.021429472656,29.1397585273438],[111.010584746094,29.1240529609376],[110.981898222656,29.1176222968751],[110.941732207031,29.1437770820313],[110.921429472656,29.1297585273438],[110.910584746094,29.1140529609376],[110.877345,29.1066017890625],[110.862066679688,29.1100270820312],[110.847345,29.1038430000001],[110.841585722656,29.1102883125001],[110.797345,29.1076515937501],[110.76923953125,29.1093263984375],[110.688951445313,29.0656960273438],[110.627865019531,29.0911037421875],[110.612625761719,29.1106911445313],[110.63322390625,29.12909690625],[110.630933867188,29.1675075507812],[110.652845488281,29.1988771796876],[110.572894316406,29.2888869453125],[110.567345,29.2938430000001],[110.571519804688,29.2996681953125],[110.603170195313,29.3080178046875],[110.621519804688,29.3196681953125],[110.673436308594,29.3381130195313],[110.691519804688,29.3565163398437],[110.657554960938,29.3808596015625],[110.642345,29.3778542304688],[110.591619902344,29.3878786445313],[110.578995390625,29.405493390625],[110.567345,29.4138430000001],[110.601082792969,29.4896950507813],[110.62728640625,29.5366628242188],[110.59716921875,29.5626100898438],[110.643089628906,29.5830983710938],[110.681600371094,29.6045876289062],[110.748319121094,29.6343581367188],[110.757345,29.6838430000001],[110.846046171875,29.69011253125]]]]}},{"type":"Feature","properties":{"name":"桑植县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.947345,29.323843],[109.924346953125,29.327895734375],[109.941910429688,29.3365407539063],[109.947345,29.323843]]],[[[109.947345,29.323843],[109.953260527344,29.3279274726563],[109.961429472656,29.3441188789063],[109.937191191406,29.36085471875],[109.943465605469,29.388843],[109.933629179688,29.4327223945312],[109.911224394531,29.4479274726563],[109.863260527344,29.4079274726563],[109.827345,29.383843],[109.786434355469,29.4154201484375],[109.804928007813,29.4296950507812],[109.78170046875,29.4681984687501],[109.771624785156,29.4928224921875],[109.750330839844,29.5092580390625],[109.73298953125,29.5473244453125],[109.773519316406,29.578608625],[109.752994414063,29.6126345039063],[109.721832304688,29.6080275703125],[109.717345,29.613843],[109.700828886719,29.6388356757812],[109.713565703125,29.6583962226563],[109.711065703125,29.6695510078126],[109.751380644531,29.6925612617187],[109.772860136719,29.7538430000001],[109.787345,29.763843],[109.820025664063,29.7758449531251],[109.867345,29.7796462226563],[109.902345,29.7768337226563],[109.947345,29.7804494453125],[110.013607207031,29.7751247382813],[110.077178984375,29.79847190625],[110.126073027344,29.7885329414063],[110.15197390625,29.75847190625],[110.227252226563,29.7469997382813],[110.28271609375,29.6992140937501],[110.296651640625,29.667983625],[110.332669707031,29.6708766914063],[110.364525175781,29.63390159375],[110.401600371094,29.6545876289063],[110.439632597656,29.6715554023438],[110.457117949219,29.710747296875],[110.502142363281,29.6984255195312],[110.512345,29.6992458320313],[110.522623320313,29.6984181953125],[110.54197390625,29.70921409375],[110.56271609375,29.71847190625],[110.57197390625,29.72921409375],[110.627345,29.763843],[110.635150175781,29.7516481757813],[110.653441191406,29.7399391914063],[110.664666777344,29.7080275703125],[110.716983671875,29.6933229804688],[110.752308378906,29.717514875],[110.757345,29.6838430000001],[110.748319121094,29.6343581367188],[110.681600371094,29.6045876289062],[110.643089628906,29.5830983710938],[110.59716921875,29.5626100898438],[110.62728640625,29.5366628242188],[110.601082792969,29.4896950507813],[110.567345,29.4138430000001],[110.551883574219,29.4093044257813],[110.527345,29.3797658515625],[110.512806425781,29.4293044257813],[110.501883574219,29.4383815742188],[110.492200957031,29.4500368476563],[110.481922636719,29.4263381171876],[110.452022734375,29.4293849921875],[110.42552859375,29.4142116523438],[110.326170683594,29.3965065742188],[110.307345,29.3738430000001],[110.292628203125,29.3681862617188],[110.266798125,29.3713991523438],[110.212369414063,29.3278664375001],[110.179068632813,29.3521926093751],[110.127213164063,29.3322609687501],[110.112899199219,29.2982888007813],[110.107345,29.2938430000001],[110.098675566406,29.3063991523438],[110.063973417969,29.3279274726563],[110.013685332031,29.295180890625],[109.958609648438,29.3075270820313],[109.947345,29.323843]]]]}},{"type":"Feature","properties":{"name":"武陵源区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,29.353843],[110.313922148438,29.3416506171875],[110.305152617188,29.3504201484376],[110.317345,29.353843]]],[[[110.317345,29.353843],[110.317345,29.3738430000001],[110.307345,29.3738430000001],[110.326170683594,29.3965065742188],[110.42552859375,29.4142116523438],[110.452022734375,29.4293849921875],[110.481922636719,29.4263381171876],[110.492200957031,29.4500368476563],[110.501883574219,29.4383815742188],[110.512806425781,29.4293044257813],[110.527345,29.3797658515625],[110.551883574219,29.4093044257813],[110.567345,29.4138430000001],[110.578995390625,29.405493390625],[110.591619902344,29.3878786445313],[110.642345,29.3778542304688],[110.657554960938,29.3808596015625],[110.691519804688,29.3565163398437],[110.673436308594,29.3381130195313],[110.621519804688,29.3196681953125],[110.603170195313,29.3080178046875],[110.571519804688,29.2996681953125],[110.567345,29.2938430000001],[110.522537871094,29.2875881171875],[110.553070097656,29.2283180976563],[110.521644316406,29.2289601875],[110.497545195313,29.2540431953125],[110.471224394531,29.27933128125],[110.432440214844,29.2785378242188],[110.422445097656,29.2889430976563],[110.412244902344,29.2987429023438],[110.402445097656,29.3189430976563],[110.3918371875,29.3395339179688],[110.343729277344,29.3628737617188],[110.317345,29.353843]]]]}},{"type":"Feature","properties":{"name":"永定区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,29.353843],[110.305152617188,29.3504201484376],[110.313922148438,29.3416506171875],[110.343729277344,29.3628737617188],[110.3918371875,29.3395339179688],[110.402445097656,29.3189430976563],[110.412244902344,29.2987429023438],[110.422445097656,29.2889430976563],[110.432440214844,29.2785378242188],[110.471224394531,29.27933128125],[110.497545195313,29.2540431953125],[110.521644316406,29.2289601875],[110.553070097656,29.2283180976563],[110.522537871094,29.2875881171875],[110.567345,29.2938430000001],[110.572894316406,29.2888869453125],[110.652845488281,29.1988771796876],[110.630933867188,29.1675075507812],[110.63322390625,29.12909690625],[110.612625761719,29.1106911445313],[110.627865019531,29.0911037421875],[110.688951445313,29.0656960273438],[110.76923953125,29.1093263984375],[110.797345,29.1076515937501],[110.841585722656,29.1102883125001],[110.847345,29.1038430000001],[110.849925566406,29.0861428046875],[110.879888945313,29.0563869453126],[110.904801054688,29.0512990546876],[110.907345,29.0338430000001],[110.899132109375,29.0281716132813],[110.903616972656,29.0081716132813],[110.886976347656,28.996684796875],[110.85435671875,29.0039968085938],[110.840186796875,28.9834743476563],[110.847738066406,28.9497878242188],[110.790369902344,28.9626491523438],[110.794586210938,28.943843],[110.78935671875,28.9205080390625],[110.763973417969,28.9097585273438],[110.72509890625,28.93507346875],[110.711673613281,28.915630109375],[110.692345,28.9199636054687],[110.659842558594,28.9126784492188],[110.663616972656,28.9295143867188],[110.645513945313,28.9420119453126],[110.627022734375,28.968794171875],[110.591429472656,28.9779274726563],[110.563260527344,28.9997585273438],[110.534703398438,29.0079274726563],[110.543616972656,28.9681716132813],[110.531429472656,28.9597585273438],[110.515616484375,28.9368556953125],[110.535233183594,28.9067287421875],[110.529598417969,28.8815944648438],[110.487345,28.9143434882813],[110.452850371094,28.8876100898438],[110.442345,28.8899636054688],[110.431898222656,28.8876222968751],[110.402962675781,28.9064650703125],[110.387345,28.8838430000001],[110.361790800781,28.8982888007813],[110.352386503906,28.9311843085938],[110.296151152344,28.9548805976563],[110.312899199219,28.9682888007813],[110.343074980469,29.017973859375],[110.340687285156,29.0371681953125],[110.301790800781,29.0482888007812],[110.292174101563,29.0819313789063],[110.248951445313,29.0765554023438],[110.254476347656,29.1209743476563],[110.222345,29.116977765625],[110.212899199219,29.1393971992188],[110.199823027344,29.1616384101563],[110.172345,29.1582204414063],[110.15373171875,29.1605373359375],[110.132899199219,29.1482888007813],[110.094334746094,29.1393971992188],[110.082899199219,29.1793971992188],[110.069808378906,29.2134499335938],[110.073448515625,29.2427150703125],[110.102496367188,29.2659743476563],[110.107345,29.2938430000001],[110.112899199219,29.2982888007813],[110.127213164063,29.3322609687501],[110.179068632813,29.3521926093751],[110.212369414063,29.3278664375001],[110.266798125,29.3713991523438],[110.292628203125,29.3681862617188],[110.307345,29.3738430000001],[110.317345,29.3738430000001],[110.317345,29.353843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"赫山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.422857695313,28.6539406562501],[112.467642851563,28.6473220039063],[112.507345,28.6538430000001],[112.581790800781,28.6325563789063],[112.572899199219,28.5982888007813],[112.555907011719,28.5693849921876],[112.606861601563,28.5394313789063],[112.642899199219,28.5682888007813],[112.655369902344,28.5838649726563],[112.696922636719,28.6082888007813],[112.713026152344,28.5993239570313],[112.711666289063,28.5883888984375],[112.730784941406,28.57308128125],[112.683150664063,28.5441481757813],[112.677345,28.523843],[112.6640246875,28.5171047187501],[112.647345,28.483843],[112.62170046875,28.46948753125],[112.605640898438,28.4302468085938],[112.588878203125,28.417309796875],[112.551793242188,28.32522971875],[112.52205203125,28.32962425],[112.481707792969,28.3137648750001],[112.439205351563,28.3200466132813],[112.40298953125,28.29819846875],[112.365213652344,28.2876808906251],[112.351832304688,28.2896584296875],[112.34279421875,28.2779470039063],[112.317345,28.283843],[112.311429472656,28.2879274726563],[112.303260527344,28.3397585273438],[112.271065703125,28.3581349921876],[112.273616972656,28.3695143867188],[112.243592558594,28.3902443671875],[112.232345,28.3877223945313],[112.200340605469,28.3948976875],[112.203465605469,28.408843],[112.197789335938,28.4341677070313],[112.213260527344,28.4579274726563],[112.231429472656,28.5297585273438],[112.243260527344,28.5379274726563],[112.253885527344,28.5793263984375],[112.247345,28.583843],[112.260181914063,28.600473859375],[112.294136992188,28.6209548164062],[112.321612578125,28.5853591132813],[112.3922278125,28.6142604804687],[112.422857695313,28.6539406562501]]]]}},{"type":"Feature","properties":{"name":"安化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.797345,28.393843],[111.800767851563,28.4060353828126],[111.809537382813,28.3972658515625],[111.797345,28.393843]]],[[[111.797345,28.393843],[111.808992949219,28.3769704414063],[111.857867460938,28.3879274726563],[111.895062285156,28.375962140625],[111.889383574219,28.3506276679688],[111.912345,28.3454811835938],[111.933592558594,28.3502443671875],[111.967498808594,28.32683128125],[111.954454375,28.2686403632813],[111.973260527344,28.2397585273438],[111.977345,28.223843],[111.965513945313,28.2156740546875],[111.953260527344,28.1979274726563],[111.935513945313,28.1856740546875],[111.923260527344,28.1379274726563],[111.898206816406,28.1056008125],[111.913529082031,28.0691213203126],[111.904483671875,28.0287721992188],[111.897345,28.023843],[111.865496855469,28.0372194648438],[111.795384550781,28.0154860664063],[111.782345,27.9966017890625],[111.768150664063,28.0171584296875],[111.722791777344,27.987622296875],[111.682274199219,27.996704328125],[111.677345,28.0038430000001],[111.683160429688,28.0083303046875],[111.678179960938,28.0420339179688],[111.634439726563,28.0248390937501],[111.574598417969,28.0336818671876],[111.593519316406,28.0190773750001],[111.577581816406,27.9926564765625],[111.52298953125,27.9827614570313],[111.54298953125,27.99819846875],[111.569127226563,28.0320607734376],[111.541773710938,28.0280202460938],[111.53298953125,28.04948753125],[111.517345,28.053843],[111.511910429688,28.0665407539063],[111.494346953125,28.0578957343751],[111.517345,28.053843],[111.510836210938,28.03222190625],[111.48271609375,28.0564455390625],[111.49197390625,28.07921409375],[111.503043242188,28.0887526679688],[111.480474882813,28.1205837226563],[111.486890898438,28.2004128242188],[111.443316679688,28.1969118476563],[111.432435332031,28.2095412421876],[111.389840117188,28.179341046875],[111.370726347656,28.2015261054688],[111.331998320313,28.1984133125001],[111.314124785156,28.23847190625],[111.28197390625,28.21921409375],[111.265120878906,28.1814455390625],[111.23162234375,28.1576955390625],[111.185162382813,28.1614284492188],[111.135511503906,28.1014040351563],[111.11197390625,28.0592140937501],[111.10271609375,28.03847190625],[111.091165800781,28.0285182929688],[111.093446074219,28.0001369453126],[111.072042265625,27.9984157539063],[111.03271609375,28.02921409375],[111.007345,28.033843],[111.002445097656,28.0489430976563],[110.972244902344,28.0587429023438],[110.960279570313,28.0711965156251],[110.932445097656,28.0287429023438],[110.922244902344,28.0189430976563],[110.907725859375,28.003833234375],[110.852445097656,28.0144850898438],[110.891866484375,28.072641828125],[110.831900664063,28.0920998359375],[110.832449980469,28.1189357734375],[110.8192590625,28.1445388007813],[110.860013457031,28.2046608710938],[110.791883574219,28.2212697578126],[110.792650175781,28.258843],[110.792237578125,28.279145734375],[110.767345,28.2786379218751],[110.741046171875,28.27917503125],[110.717345,28.3038430000001],[110.743743925781,28.3380446601562],[110.79298953125,28.3581984687501],[110.821954375,28.3756716132812],[110.83170046875,28.39948753125],[110.85298953125,28.40819846875],[110.857345,28.413843],[110.882486601563,28.4081325507813],[110.94068484375,28.43050315625],[111.042093535156,28.4594972968751],[111.077464628906,28.4550954414063],[111.101986113281,28.4695095039062],[111.112345,28.4682204414063],[111.135662871094,28.4711208320313],[111.15634890625,28.5202101875],[111.175172148438,28.5178688789063],[111.212545195313,28.53983909375],[111.222799101563,28.5270339179688],[111.247345,28.5300856757813],[111.309229765625,28.5223903632813],[111.374276152344,28.5504689765625],[111.392506132813,28.5482009101563],[111.473543730469,28.5666091132813],[111.487345,28.583843],[111.50298953125,28.5881984687501],[111.565203886719,28.6425466132813],[111.607515898438,28.6259133125001],[111.632345,28.6295827460937],[111.642345,28.6281032539063],[111.652916289063,28.6296657539063],[111.667345,28.593843],[111.673363066406,28.5688649726563],[111.663170195313,28.5180178046875],[111.644310332031,28.5044997382813],[111.653480253906,28.4581008125001],[111.603170195313,28.4448268867188],[111.611519804688,28.4080178046876],[111.665047636719,28.3993654609376],[111.647874785156,28.387055890625],[111.661727324219,28.3677297187501],[111.722340117188,28.3798317695313],[111.743643828125,28.3756227851563],[111.78216921875,28.4000807929688],[111.797345,28.393843]]]]}},{"type":"Feature","properties":{"name":"南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.217345,29.2938430000001],[112.205152617188,29.2972658515625],[112.213922148438,29.3060353828125],[112.217345,29.2938430000001]]],[[[112.217345,29.2938430000001],[112.23205203125,29.29962425],[112.254945097656,29.2962429023438],[112.245811796875,29.3580544257813],[112.28298953125,29.40819846875],[112.293685332031,29.4466164375],[112.277345,29.513843],[112.290704375,29.520483625],[112.307345,29.5238430000001],[112.324788847656,29.5103786445313],[112.315943632813,29.4505275703126],[112.332735625,29.4480471015625],[112.352828398438,29.4601662421875],[112.383148222656,29.4192726875],[112.380462675781,29.4011086250001],[112.439488554688,29.36319846875],[112.480084257813,29.3465822578125],[112.492838164063,29.3154201484376],[112.567789335938,29.3043434882813],[112.622760039063,29.3451003242187],[112.64298953125,29.3294875312501],[112.657464628906,29.3107326484375],[112.693929472656,29.2889235664063],[112.680203886719,29.2783303046875],[112.68312625,29.25855003125],[112.67156375,29.22913596875],[112.673084746094,29.2188430000001],[112.670374785156,29.2005153632813],[112.745064726563,29.1711525703125],[112.777345,29.1838430000001],[112.811297636719,29.1977956367188],[112.797345,29.163843],[112.79170046875,29.15948753125],[112.730113554688,29.1503859687501],[112.704276152344,29.1169118476563],[112.658179960938,29.0813307929687],[112.602345,29.0895827460938],[112.592345,29.0881032539063],[112.577345,29.0903200507813],[112.558455839844,29.0875295234376],[112.569129667969,29.159751203125],[112.457518339844,29.1833010078125],[112.412345,29.176626203125],[112.389967070313,29.1799343085938],[112.394561796875,29.1488430000001],[112.387222929688,29.0991872382813],[112.332125273438,29.0566579414063],[112.28490359375,29.063637921875],[112.27279421875,29.0479470039063],[112.247345,29.053843],[112.243170195313,29.0596681953125],[112.230824003906,29.1215065742188],[112.211724882813,29.1177321601563],[112.203170195313,29.1296681953125],[112.187345,29.133843],[112.193001738281,29.148559796875],[112.191102324219,29.163843],[112.193448515625,29.1827150703126],[112.224378691406,29.2074831367188],[112.221722441406,29.2288430000001],[112.223590117188,29.2438552070313],[112.217345,29.2938430000001]]]]}},{"type":"Feature","properties":{"name":"桃江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.797345,28.393843],[111.809537382813,28.3972658515625],[111.800767851563,28.4060353828126],[111.78216921875,28.4000807929688],[111.743643828125,28.3756227851563],[111.722340117188,28.3798317695313],[111.661727324219,28.3677297187501],[111.647874785156,28.387055890625],[111.665047636719,28.3993654609376],[111.611519804688,28.4080178046876],[111.603170195313,28.4448268867188],[111.653480253906,28.4581008125001],[111.644310332031,28.5044997382813],[111.663170195313,28.5180178046875],[111.673363066406,28.5688649726563],[111.667345,28.593843],[111.711356230469,28.5989723945313],[111.721519804688,28.6496681953125],[111.747345,28.663843],[111.76951296875,28.632915265625],[111.784132109375,28.6533132148438],[111.803170195313,28.6396681953125],[111.816571074219,28.62097190625],[111.832965117188,28.6177321601563],[111.849244414063,28.6404445625],[111.8719153125,28.6359645820313],[111.914600859375,28.652426984375],[111.909681425781,28.677329328125],[111.922410917969,28.6798439765625],[111.973170195313,28.6696681953125],[111.986571074219,28.65097190625],[112.030079375,28.6423757148438],[112.033455839844,28.6594631171875],[112.013170195313,28.6740016914063],[112.063170195313,28.6696681953125],[112.071519804688,28.6580178046875],[112.083170195313,28.6496681953125],[112.087345,28.643843],[112.09170046875,28.63819846875],[112.103160429688,28.6293556953125],[112.095943632813,28.5805275703125],[112.112996855469,28.5780080390625],[112.17298953125,28.5881984687501],[112.197345,28.6028908515626],[112.22170046875,28.5881984687501],[112.247345,28.583843],[112.253885527344,28.5793263984375],[112.243260527344,28.5379274726563],[112.231429472656,28.5297585273438],[112.213260527344,28.4579274726563],[112.197789335938,28.4341677070313],[112.203465605469,28.408843],[112.200340605469,28.3948976875],[112.232345,28.3877223945313],[112.243592558594,28.3902443671875],[112.273616972656,28.3695143867188],[112.271065703125,28.3581349921876],[112.303260527344,28.3397585273438],[112.311429472656,28.2879274726563],[112.317345,28.283843],[112.31271609375,28.2641921210938],[112.271158476563,28.2500295234376],[112.229471464844,28.2141603828125],[112.211539335938,28.2432643867187],[112.184959746094,28.2349855781251],[112.163531523438,28.2500295234376],[112.141158476563,28.2576564765625],[112.128834257813,28.2776564765625],[112.091158476563,28.2700295234375],[112.063531523438,28.2576564765625],[112.006939726563,28.2494167304688],[111.993531523438,28.2276564765625],[111.977345,28.223843],[111.973260527344,28.2397585273438],[111.954454375,28.2686403632813],[111.967498808594,28.32683128125],[111.933592558594,28.3502443671875],[111.912345,28.3454811835938],[111.889383574219,28.3506276679688],[111.895062285156,28.375962140625],[111.857867460938,28.3879274726563],[111.808992949219,28.3769704414063],[111.797345,28.393843]]]]}},{"type":"Feature","properties":{"name":"资阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.617345,28.783843],[112.593260527344,28.7479274726563],[112.553773222656,28.7331520820313],[112.543260527344,28.7179274726563],[112.521029082031,28.7025783515625],[112.511429472656,28.6597585273438],[112.507345,28.6538430000001],[112.467642851563,28.6473220039063],[112.422857695313,28.6539406562501],[112.3922278125,28.6142604804687],[112.321612578125,28.5853591132813],[112.294136992188,28.6209548164062],[112.260181914063,28.600473859375],[112.247345,28.583843],[112.22170046875,28.5881984687501],[112.197345,28.6028908515626],[112.17298953125,28.5881984687501],[112.112996855469,28.5780080390625],[112.095943632813,28.5805275703125],[112.103160429688,28.6293556953125],[112.09170046875,28.63819846875],[112.087345,28.643843],[112.101429472656,28.6497585273438],[112.143260527344,28.6579274726562],[112.158992949219,28.6807155585938],[112.19033328125,28.6736891914063],[112.20201296875,28.6906032539063],[112.243765898438,28.7177907539063],[112.267345,28.7238430000001],[112.29193484375,28.7077468085938],[112.364771757813,28.7223488593751],[112.404205351563,28.7773683906251],[112.468031035156,28.7647560859375],[112.496658964844,28.7829299140625],[112.527928496094,28.7767507148438],[112.55709109375,28.8174391914063],[112.607083769531,28.7981569648437],[112.617345,28.783843]]]]}},{"type":"Feature","properties":{"name":"沅江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.457518339844,29.1833010078125],[112.569129667969,29.159751203125],[112.558455839844,29.0875295234376],[112.577345,29.0903200507813],[112.592345,29.0881032539063],[112.602345,29.0895827460938],[112.658179960938,29.0813307929687],[112.704276152344,29.1169118476563],[112.730113554688,29.1503859687501],[112.79170046875,29.15948753125],[112.797345,29.163843],[112.803704863281,29.155903546875],[112.891185332031,29.1667848945313],[112.912913847656,29.1493849921875],[112.932899199219,29.0793971992188],[112.937345,29.043843],[112.931429472656,29.0397585273438],[112.923260527344,29.0279274726563],[112.891429472656,29.0197585273438],[112.867345,28.983843],[112.823826933594,28.9314553046875],[112.722806425781,28.8883815742188],[112.664549589844,28.8754616523438],[112.660816679688,28.8388430000001],[112.665516386719,28.7927346015625],[112.622806425781,28.7883815742188],[112.617345,28.783843],[112.607083769531,28.7981569648437],[112.55709109375,28.8174391914063],[112.527928496094,28.7767507148438],[112.496658964844,28.7829299140625],[112.468031035156,28.7647560859375],[112.404205351563,28.7773683906251],[112.364771757813,28.7223488593751],[112.29193484375,28.7077468085938],[112.267345,28.7238430000001],[112.27197390625,28.72921409375],[112.275545683594,28.7736769843751],[112.29271609375,28.7884719062501],[112.30197390625,28.8212404609375],[112.250853300781,28.8652809882813],[112.257381621094,28.9465138984375],[112.241138945313,28.9907399726563],[112.247345,29.053843],[112.27279421875,29.0479470039063],[112.28490359375,29.063637921875],[112.332125273438,29.0566579414063],[112.387222929688,29.0991872382813],[112.394561796875,29.1488430000001],[112.389967070313,29.1799343085938],[112.412345,29.176626203125],[112.457518339844,29.1833010078125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"永兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.292806425781,26.4393044257813],[113.321998320313,26.4182985664063],[113.347345,26.4208815742188],[113.377345,26.4178249335938],[113.392735625,26.4193923164063],[113.401883574219,26.4083815742188],[113.412894316406,26.3992336250001],[113.408992949219,26.3609474921875],[113.519654570313,26.3485378242187],[113.542806425781,26.3293044257813],[113.551883574219,26.3083815742188],[113.585047636719,26.2986476875],[113.597345,26.2838430000001],[113.581883574219,26.2793044257813],[113.569107695313,26.2639260078126],[113.545191679688,26.1824245429687],[113.486666289063,26.1570436835937],[113.425191679688,26.1742311835938],[113.41216921875,26.11550315625],[113.36255984375,26.1293752265625],[113.347345,26.1278249335938],[113.332022734375,26.1293849921876],[113.304056425781,26.1133693671875],[113.291658964844,26.1419533515625],[113.271883574219,26.1583815742188],[113.247345,26.1879201484376],[113.222806425781,26.1583815742188],[113.211883574219,26.1493044257813],[113.20107546875,26.1362966132812],[113.202886992188,26.1185207343751],[113.191883574219,26.0993044257813],[113.182806425781,26.0783815742188],[113.139107695313,26.0231642890626],[113.107345,26.013843],[113.0991028125,26.0459596992188],[113.049188261719,26.0579274726563],[113.053465605469,26.038843],[113.049603300781,26.0216115546875],[113.002345,26.0322048164063],[112.982345,26.0277223945313],[112.972345,26.0299636054688],[112.932244902344,26.0209743476563],[112.907345,25.9838430000001],[112.902037382813,25.976968],[112.861517363281,25.9882497382813],[112.863162871094,25.9993825507813],[112.830169707031,26.0191164375],[112.835206328125,26.05319846875],[112.80170046875,26.03948753125],[112.77673953125,26.0244289375],[112.730413847656,26.0869118476563],[112.717345,26.1338430000001],[112.732066679688,26.1400270820313],[112.754320097656,26.1350368476563],[112.750369902344,26.1526491523438],[112.773016386719,26.1475710273438],[112.78572390625,26.1659767890625],[112.771019316406,26.1885573554688],[112.777620878906,26.2079274726563],[112.791673613281,26.1875710273438],[112.812345,26.1922048164063],[112.821429472656,26.1679274726563],[112.850067167969,26.157212140625],[112.862345,26.1599636054688],[112.872345,26.1577223945313],[112.882345,26.1599636054688],[112.90435671875,26.1550295234376],[112.921998320313,26.18058128125],[112.961004667969,26.1551808906251],[113.016080351563,26.1675270820313],[113.034503203125,26.1942116523438],[113.031224394531,26.2088430000001],[113.033529082031,26.2191213203125],[113.020699492188,26.2496633125],[113.083658476563,26.2579811835938],[113.081224394531,26.268843],[113.085408964844,26.287505109375],[113.117435332031,26.2994899726563],[113.131429472656,26.3197585273438],[113.163880644531,26.3382814765625],[113.151160917969,26.3685646796876],[113.161011992188,26.412505109375],[113.182904082031,26.4075954414063],[113.211429472656,26.4341188789063],[113.187862578125,26.4503908515625],[113.219176054688,26.4720119453126],[113.227345,26.4838430000001],[113.253597441406,26.476137921875],[113.251092558594,26.451548078125],[113.292806425781,26.4393044257813]]]]}},{"type":"Feature","properties":{"name":"安仁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.136712675781,26.8419533515626],[113.17205203125,26.8280617500001],[113.193516875,26.8312331367188],[113.231954375,26.8080471015625],[113.250943632813,26.8108522773438],[113.257345,26.833843],[113.2727746875,26.8291970039063],[113.271942167969,26.8188430000001],[113.273148222656,26.803843],[113.271180449219,26.7793386054687],[113.293316679688,26.7775588203125],[113.321536894531,26.8103151679688],[113.387345,26.803843],[113.421790800781,26.7762575507813],[113.409344511719,26.737114484375],[113.378175078125,26.6944435859375],[113.402423125,26.6531911445313],[113.414154082031,26.5593971992188],[113.479842558594,26.5744753242188],[113.498472929688,26.597739484375],[113.512345,26.5994655585938],[113.522345,26.5982204414063],[113.532799101563,26.5995217109375],[113.541790800781,26.5882888007813],[113.552899199219,26.5793971992188],[113.562313261719,26.5358791328125],[113.588450957031,26.5149489570313],[113.597345,26.503843],[113.587296171875,26.4788430000001],[113.606627226563,26.4307497382813],[113.573079863281,26.4057936835938],[113.599652128906,26.31956565625],[113.613375273438,26.3093581367188],[113.607345,26.2838430000001],[113.597345,26.2838430000001],[113.585047636719,26.2986476875],[113.551883574219,26.3083815742188],[113.542806425781,26.3293044257813],[113.519654570313,26.3485378242187],[113.408992949219,26.3609474921875],[113.412894316406,26.3992336250001],[113.401883574219,26.4083815742188],[113.392735625,26.4193923164063],[113.377345,26.4178249335938],[113.347345,26.4208815742188],[113.321998320313,26.4182985664063],[113.292806425781,26.4393044257813],[113.251092558594,26.451548078125],[113.253597441406,26.476137921875],[113.227345,26.4838430000001],[113.219771757813,26.498813703125],[113.190704375,26.5072023750001],[113.153985625,26.5420265937501],[113.173985625,26.567202375],[113.180704375,26.6896364570313],[113.147345,26.693843],[113.108890410156,26.7449318671875],[113.09170046875,26.7581984687501],[113.087345,26.7838430000001],[113.143880644531,26.7934474921875],[113.136712675781,26.8419533515626]]]]}},{"type":"Feature","properties":{"name":"北湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.787345,25.543843],[112.792345,25.5310353828125],[112.797345,25.543843],[112.809537382813,25.5472658515626],[112.800767851563,25.5560353828125],[112.797345,25.543843],[112.794823027344,25.5706935859375],[112.812857695313,25.5680275703125],[112.825809355469,25.584809796875],[112.805169707031,25.6190261054688],[112.76170046875,25.62819846875],[112.75298953125,25.6661525703125],[112.784466582031,25.67819846875],[112.780203886719,25.6493556953126],[112.800987578125,25.6333107734375],[112.812345,25.6610597968751],[112.840504179688,25.6568971992188],[112.85170046875,25.6627614570313],[112.830867949219,25.6788430000001],[112.843822050781,25.688843],[112.814605742188,25.7113942695313],[112.791805449219,25.7080251289063],[112.78298953125,25.7227614570313],[112.80298953125,25.73819846875],[112.816204863281,25.7704885078125],[112.851568632813,25.7652638984375],[112.830282011719,25.8005544257813],[112.866844511719,25.8611696601563],[112.907345,25.883843],[112.912982207031,25.8688430000001],[112.899583769531,25.8331862617188],[112.919420195313,25.8093044257813],[112.942806425781,25.8183815742188],[112.951883574219,25.8293044257813],[112.972806425781,25.8383815742188],[112.985032988281,25.866567609375],[113.025076933594,25.8706496406251],[113.020777617188,25.828462140625],[113.031903105469,25.7782888007813],[113.050831328125,25.7802175117188],[113.0762121875,25.7359011054687],[113.025985136719,25.7410207343751],[112.993372832031,25.7139308906251],[112.990697050781,25.6876711250001],[113.021449003906,25.6621291328126],[112.991883574219,25.6493044257813],[112.962806425781,25.6283815742188],[112.930833769531,25.6086598945313],[112.932855253906,25.588843],[112.931834746094,25.578843],[112.932882109375,25.5685768867188],[112.921807890625,25.5391091132813],[112.922855253906,25.5288430000001],[112.921636992188,25.5168923164063],[112.937345,25.503843],[112.933531523438,25.4976564765625],[112.893641386719,25.4840602851563],[112.883531523438,25.4676564765626],[112.871158476563,25.4600295234375],[112.863531523438,25.4476564765625],[112.821158476563,25.4400295234375],[112.802606230469,25.4270070625],[112.787345,25.433843],[112.775311308594,25.4412575507813],[112.788873320313,25.4848024726562],[112.741683378906,25.500884015625],[112.737345,25.4938430000001],[112.718490019531,25.4985475898438],[112.725943632813,25.5281252265626],[112.693350859375,25.5497975898438],[112.7315246875,25.597837140625],[112.765277128906,25.5854836250001],[112.755279570313,25.5458034492188],[112.772606230469,25.5501686835938],[112.787345,25.543843]]]]}},{"type":"Feature","properties":{"name":"桂东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.221326933594,26.1738430000001],[114.223719511719,26.1503566718751],[114.188016386719,26.1299098945313],[114.139869414063,26.1157814765625],[114.101151152344,26.0989870429688],[114.121883574219,26.0817678046875],[114.091529570313,26.0763771796876],[114.041497832031,26.0814772773437],[114.022806425781,26.0383815742188],[114.003761015625,26.0051271796875],[114.022806425781,25.9893044257813],[114.027345,25.9838430000001],[114.017345,25.9838430000001],[114.017345,25.973843],[114.022974882813,25.9389138007813],[114.017345,25.893843],[114.011790800781,25.8893971992188],[113.969600859375,25.8367092109375],[113.952159453125,25.7757057929688],[113.926239042969,25.7549489570313],[113.912899199219,25.7382888007813],[113.907345,25.733843],[113.901883574219,25.7383815742188],[113.882161894531,25.7703542304688],[113.862345,25.7683327460938],[113.824295683594,25.772212140625],[113.812806425781,25.7583815742188],[113.794237089844,25.7429543281251],[113.782806425781,25.7693044257813],[113.766419707031,25.7829177070313],[113.752806425781,25.7993044257813],[113.740855742188,25.809233625],[113.743941679688,25.8395143867188],[113.727345,25.8378249335938],[113.689107695313,25.8417214179688],[113.669058867188,25.8879470039063],[113.650208769531,25.8652516914063],[113.627345,25.8738430000001],[113.612647734375,25.9148024726563],[113.644859648438,25.9295876289063],[113.662345,25.9285451484376],[113.673414335938,25.929204328125],[113.692303496094,26.0304030585938],[113.712625761719,26.0485622382813],[113.717345,26.0638430000001],[113.744813261719,26.0456911445313],[113.761429472656,26.0697585273438],[113.775557890625,26.0795143867188],[113.769862089844,26.1049245429687],[113.792791777344,26.110063703125],[113.820357695313,26.092114484375],[113.843260527344,26.1079274726563],[113.857254667969,26.1281960273437],[113.891607695313,26.14105003125],[113.911429472656,26.1697585273438],[113.937345,26.183843],[113.942894316406,26.179233625],[113.940882597656,26.1595021796876],[113.961156035156,26.1574343085938],[114.013538847656,26.18743675],[114.032667265625,26.1893849921875],[114.067345,26.1695241523438],[114.133538847656,26.2074367500001],[114.171807890625,26.2113356757813],[114.223597441406,26.196137921875],[114.221326933594,26.1738430000001]]]]}},{"type":"Feature","properties":{"name":"桂阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.787345,25.543843],[112.797345,25.543843],[112.792345,25.5310353828125],[112.787345,25.543843]]],[[[112.797345,25.543843],[112.800767851563,25.5560353828125],[112.809537382813,25.5472658515626],[112.797345,25.543843]]],[[[112.787345,25.543843],[112.772606230469,25.5501686835938],[112.755279570313,25.5458034492188],[112.765277128906,25.5854836250001],[112.7315246875,25.597837140625],[112.693350859375,25.5497975898438],[112.725943632813,25.5281252265626],[112.718490019531,25.4985475898438],[112.737345,25.4938430000001],[112.71713015625,25.4566481757813],[112.697345,25.4610842109375],[112.665042753906,25.4538430000001],[112.653260527344,25.4997585273438],[112.639132109375,25.5095143867188],[112.644847441406,25.5350075507813],[112.605797148438,25.5262551093751],[112.586922636719,25.5766970039063],[112.572066679688,25.5800270820313],[112.557345,25.573843],[112.516104765625,25.6369997382813],[112.542899199219,25.6482888007813],[112.561986113281,25.6595095039063],[112.57687625,25.6576564765626],[112.591790800781,25.6839943671875],[112.551790800781,25.7082888007813],[112.542799101563,25.7195217109376],[112.531983671875,25.7181764960938],[112.46201296875,25.7599245429688],[112.451829863281,25.7357546210938],[112.432799101563,25.7595217109376],[112.420079375,25.7579396796875],[112.402899199219,25.7793971992188],[112.391790800781,25.7882888007813],[112.387345,25.7938430000001],[112.382625761719,25.7991237617188],[112.364781523438,25.8150685859376],[112.352625761719,25.8306911445313],[112.375496855469,25.8511257148438],[112.35416140625,25.9105886054688],[112.321097441406,25.8874929023438],[112.262625761719,25.9006911445313],[112.282625761719,25.9185622382813],[112.304720488281,25.9432888007813],[112.292034941406,25.9786428046876],[112.293084746094,25.9962721992188],[112.324854765625,26.0417507148438],[112.321365996094,26.1002736640626],[112.292345,26.0985451484375],[112.282345,26.0991408515625],[112.232796660156,26.09618675],[112.227345,26.113843],[112.227345,26.123843],[112.271468535156,26.1411891914063],[112.29490359375,26.1377248359376],[112.317838164063,26.1674391914063],[112.332345,26.1695827460938],[112.3520715625,26.1666677070313],[112.374693632813,26.2044899726562],[112.401954375,26.1880471015626],[112.419876738281,26.1906935859375],[112.47298953125,26.17948753125],[112.481773710938,26.1580202460938],[112.501832304688,26.1609841132813],[112.513775664063,26.145512921875],[112.562135039063,26.1596120429688],[112.574722929688,26.1577516914063],[112.568187285156,26.201977765625],[112.587633085938,26.227173078125],[112.62298953125,26.17948753125],[112.634232207031,26.1391115546875],[112.677345,26.1338430000001],[112.681004667969,26.1157155585938],[112.717345,26.1338430000001],[112.730413847656,26.0869118476563],[112.77673953125,26.0244289375],[112.80170046875,26.03948753125],[112.835206328125,26.05319846875],[112.830169707031,26.0191164375],[112.863162871094,25.9993825507813],[112.861517363281,25.9882497382813],[112.902037382813,25.976968],[112.907345,25.9838430000001],[112.931197539063,25.9775514960938],[112.911519804688,25.9296681953125],[112.907345,25.883843],[112.866844511719,25.8611696601563],[112.830282011719,25.8005544257813],[112.851568632813,25.7652638984375],[112.816204863281,25.7704885078125],[112.80298953125,25.73819846875],[112.78298953125,25.7227614570313],[112.791805449219,25.7080251289063],[112.814605742188,25.7113942695313],[112.843822050781,25.688843],[112.830867949219,25.6788430000001],[112.85170046875,25.6627614570313],[112.840504179688,25.6568971992188],[112.812345,25.6610597968751],[112.800987578125,25.6333107734375],[112.780203886719,25.6493556953126],[112.784466582031,25.67819846875],[112.75298953125,25.6661525703125],[112.76170046875,25.62819846875],[112.805169707031,25.6190261054688],[112.825809355469,25.584809796875],[112.812857695313,25.5680275703125],[112.794823027344,25.5706935859375],[112.787345,25.543843]],[[112.657345,26.113843],[112.669537382813,26.1172658515626],[112.660767851563,26.1260353828125],[112.634620390625,26.1098366523438],[112.651783476563,26.100844953125],[112.657345,26.113843]]]]}},{"type":"Feature","properties":{"name":"嘉禾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.407345,25.4538430000001],[112.417345,25.4538430000001],[112.417345,25.4438430000001],[112.407345,25.4438430000001],[112.407345,25.4538430000001]]],[[[112.367345,25.513843],[112.363922148438,25.5016506171876],[112.355152617188,25.5104201484376],[112.367345,25.513843]]],[[[112.407345,25.4538430000001],[112.384801054688,25.45839378125],[112.39478640625,25.478843],[112.381090117188,25.5068898750001],[112.367345,25.513843],[112.362515898438,25.5444850898438],[112.324459257813,25.5359548164063],[112.303260527344,25.5497585273438],[112.250008574219,25.5634255195313],[112.253565703125,25.5792897773438],[112.241429472656,25.5979274726563],[112.237345,25.613843],[112.2544153125,25.6404201484375],[112.237345,25.6838430000001],[112.250152617188,25.688843],[112.237345,25.693843],[112.237345,25.703843],[112.27298953125,25.71819846875],[112.299403105469,25.7341335273438],[112.331204863281,25.6929323554688],[112.35170046875,25.71948753125],[112.384520292969,25.7391164375],[112.377550078125,25.7862844062501],[112.387345,25.7938430000001],[112.391790800781,25.7882888007813],[112.402899199219,25.7793971992188],[112.420079375,25.7579396796875],[112.432799101563,25.7595217109376],[112.451829863281,25.7357546210938],[112.46201296875,25.7599245429688],[112.531983671875,25.7181764960938],[112.542799101563,25.7195217109376],[112.551790800781,25.7082888007813],[112.591790800781,25.6839943671875],[112.57687625,25.6576564765626],[112.561986113281,25.6595095039063],[112.542899199219,25.6482888007813],[112.516104765625,25.6369997382813],[112.557345,25.573843],[112.55314578125,25.5472048164063],[112.503812285156,25.5679274726563],[112.469742460938,25.5454518867188],[112.477738066406,25.5097878242188],[112.424129667969,25.5218044257813],[112.421224394531,25.508843],[112.425557890625,25.4895143867188],[112.411429472656,25.4797585273438],[112.407345,25.4538430000001]]]]}},{"type":"Feature","properties":{"name":"临武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.586922636719,25.5766970039063],[112.605797148438,25.5262551093751],[112.644847441406,25.5350075507813],[112.639132109375,25.5095143867188],[112.653260527344,25.4997585273438],[112.665042753906,25.4538430000001],[112.697345,25.4610842109375],[112.71713015625,25.4566481757813],[112.737345,25.4938430000001],[112.741683378906,25.500884015625],[112.788873320313,25.4848024726562],[112.775311308594,25.4412575507813],[112.787345,25.433843],[112.781160917969,25.4191213203125],[112.783638945313,25.4080690742187],[112.758502226563,25.3986647773438],[112.743260527344,25.3579274726563],[112.731124296875,25.3392897773438],[112.739071074219,25.3038430000001],[112.689757109375,25.2853908515626],[112.696800566406,25.2539675117188],[112.623260527344,25.2350954414063],[112.634232207031,25.2120339179688],[112.679586210938,25.1861476875],[112.685557890625,25.1595143867188],[112.665513945313,25.1456740546875],[112.657345,25.133843],[112.627345,25.1401198554688],[112.570882597656,25.128305890625],[112.549222441406,25.129165265625],[112.492535429688,25.1490334296875],[112.452154570313,25.1586525703125],[112.438153105469,25.1883205390625],[112.412535429688,25.1486525703126],[112.399210234375,25.1390334296876],[112.362535429688,25.1890334296875],[112.357345,25.193843],[112.364334746094,25.2380373359375],[112.351795683594,25.248452375],[112.353753691406,25.2676540351563],[112.338861113281,25.2936574531251],[112.372806425781,25.3083815742188],[112.408717070313,25.3289479804688],[112.426497832031,25.3699489570313],[112.442699003906,25.368296125],[112.451883574219,25.3753688789063],[112.413240996094,25.3921291328126],[112.439383574219,25.4138430000001],[112.421883574219,25.4283815742188],[112.417345,25.4438430000001],[112.417345,25.4538430000001],[112.407345,25.4538430000001],[112.411429472656,25.4797585273438],[112.425557890625,25.4895143867188],[112.421224394531,25.508843],[112.424129667969,25.5218044257813],[112.477738066406,25.5097878242188],[112.469742460938,25.5454518867188],[112.503812285156,25.5679274726563],[112.55314578125,25.5472048164063],[112.557345,25.573843],[112.572066679688,25.5800270820313],[112.586922636719,25.5766970039063]]]]}},{"type":"Feature","properties":{"name":"汝城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.347345,25.613843],[113.335152617188,25.6104201484375],[113.343922148438,25.6016506171875],[113.38255984375,25.6084865546875],[113.418157988281,25.6483278632813],[113.434503203125,25.5780763984375],[113.45259890625,25.5791555],[113.470496855469,25.5591237617188],[113.531893339844,25.5962673164063],[113.532940703125,25.613843],[113.531607695313,25.6362282539063],[113.561080351563,25.6692165351563],[113.57259890625,25.6685305000001],[113.582064238281,25.6791237617188],[113.623287382813,25.6980446601563],[113.62146609375,25.7285890937501],[113.6337903125,25.7396022773438],[113.6320325,25.76909690625],[113.657811308594,25.7921291328125],[113.633189726563,25.8196877265626],[113.591646757813,25.8387526679688],[113.607906523438,25.8532814765626],[113.622064238281,25.8691237617188],[113.627345,25.8738430000001],[113.650208769531,25.8652516914063],[113.669058867188,25.8879470039063],[113.689107695313,25.8417214179688],[113.727345,25.8378249335938],[113.743941679688,25.8395143867188],[113.740855742188,25.809233625],[113.752806425781,25.7993044257813],[113.766419707031,25.7829177070313],[113.782806425781,25.7693044257813],[113.794237089844,25.7429543281251],[113.812806425781,25.7583815742188],[113.824295683594,25.772212140625],[113.862345,25.7683327460938],[113.882161894531,25.7703542304688],[113.901883574219,25.7383815742188],[113.907345,25.733843],[113.913529082031,25.7191213203125],[113.909456816406,25.7009572578126],[113.935091582031,25.6615895820313],[113.951429472656,25.6179274726563],[113.974388457031,25.6093361640625],[113.986197539063,25.5566628242187],[113.973260527344,25.5379274726563],[113.95490359375,25.5252516914063],[113.950103789063,25.503843],[113.953565703125,25.4883962226563],[113.941429472656,25.4697585273438],[113.937345,25.4438430000001],[113.879251738281,25.439497296875],[113.883333769531,25.418843],[113.877769804688,25.3906838203126],[113.836673613281,25.3668581367188],[113.816429472656,25.3386135078125],[113.767503691406,25.3296681953125],[113.745445585938,25.3604445625001],[113.727345,25.3568679023438],[113.712345,25.3598317695313],[113.684920683594,25.3544118476563],[113.672965117188,25.3377321601563],[113.662345,25.3398317695313],[113.611971464844,25.3298757148438],[113.577345,25.313843],[113.572652617188,25.3428713203126],[113.534456816406,25.3702492500001],[113.517345,25.3668679023438],[113.482345,25.3737819648438],[113.447345,25.3668679023438],[113.42404421875,25.3714699531251],[113.413170195313,25.3996681953125],[113.371519804688,25.4080178046875],[113.361658964844,25.4335817695313],[113.335391875,25.4524098945313],[113.31158328125,25.4477053046875],[113.297823515625,25.5163332343751],[113.287345,25.5238430000001],[113.27939578125,25.5874758125],[113.298450957031,25.6027370429688],[113.319207792969,25.6286574531251],[113.337345,25.633843],[113.347345,25.613843]]]]}},{"type":"Feature","properties":{"name":"苏仙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.0991028125,26.0459596992188],[113.107345,26.013843],[113.11170046875,25.9981984687501],[113.12298953125,25.98948753125],[113.137838164063,25.9702468085938],[113.157345,25.9673659492188],[113.193658476563,25.9727321601562],[113.191541777344,25.9584133125001],[113.238975859375,25.8944338203125],[113.27170046875,25.8195510078126],[113.26298953125,25.77819846875],[113.250362578125,25.7572658515625],[113.254486113281,25.7293556953126],[113.241449003906,25.71929221875],[113.247345,25.693843],[113.23170046875,25.68948753125],[113.215264921875,25.6681911445313],[113.192689238281,25.613032453125],[113.182410917969,25.5761257148438],[113.109234648438,25.6048928046875],[113.113167753906,25.5782717109376],[113.09170046875,25.56948753125],[113.08298953125,25.54819846875],[113.007410917969,25.5389626289063],[112.97298953125,25.51819846875],[112.94170046875,25.5094875312501],[112.937345,25.503843],[112.921636992188,25.5168923164063],[112.922855253906,25.5288430000001],[112.921807890625,25.5391091132813],[112.932882109375,25.5685768867188],[112.931834746094,25.578843],[112.932855253906,25.588843],[112.930833769531,25.6086598945313],[112.962806425781,25.6283815742188],[112.991883574219,25.6493044257813],[113.021449003906,25.6621291328126],[112.990697050781,25.6876711250001],[112.993372832031,25.7139308906251],[113.025985136719,25.7410207343751],[113.0762121875,25.7359011054687],[113.050831328125,25.7802175117188],[113.031903105469,25.7782888007813],[113.020777617188,25.828462140625],[113.025076933594,25.8706496406251],[112.985032988281,25.866567609375],[112.972806425781,25.8383815742188],[112.951883574219,25.8293044257813],[112.942806425781,25.8183815742188],[112.919420195313,25.8093044257813],[112.899583769531,25.8331862617188],[112.912982207031,25.8688430000001],[112.907345,25.883843],[112.911519804688,25.9296681953125],[112.931197539063,25.9775514960938],[112.907345,25.9838430000001],[112.932244902344,26.0209743476563],[112.972345,26.0299636054688],[112.982345,26.0277223945313],[113.002345,26.0322048164063],[113.049603300781,26.0216115546875],[113.053465605469,26.038843],[113.049188261719,26.0579274726563],[113.0991028125,26.0459596992188]]]]}},{"type":"Feature","properties":{"name":"宜章县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.27939578125,25.5874758125],[113.287345,25.5238430000001],[113.281910429688,25.5053200507813],[113.224268828125,25.5111940742188],[113.176217070313,25.4731642890625],[113.155269804688,25.4983815742188],[113.119976835938,25.457075421875],[113.123941679688,25.4181716132813],[113.092767363281,25.4213478828125],[113.079781523438,25.3914064765625],[113.033604765625,25.3713796210938],[113.022806425781,25.3583815742188],[112.954664335938,25.3482302070313],[112.931883574219,25.3293044257813],[112.918870878906,25.2993044257813],[112.901883574219,25.3083815742188],[112.888192167969,25.3399489570313],[112.867345,25.3378249335938],[112.850748320313,25.3395143867188],[112.852855253906,25.318843],[112.851807890625,25.3085768867188],[112.863682890625,25.2769753242188],[112.861087675781,25.25151878125],[112.897345,25.2478249335938],[112.912345,25.2493532539063],[112.922345,25.2483327460938],[112.947345,25.2508815742188],[112.972345,25.2483327460938],[112.985858183594,25.2497096992188],[113.011883574219,25.2183815742188],[113.031449003906,25.2021291328126],[112.989488554688,25.1839308906251],[112.962806425781,25.1617678046875],[112.971883574219,25.1383815742188],[113.006846953125,25.0828932929688],[112.977471953125,25.0316066718751],[112.991883574219,24.9983815742188],[113.002806425781,24.9793044257813],[113.007345,24.963843],[112.995330839844,24.9601271796875],[113.009359160156,24.9475588203125],[112.98970828125,24.94147971875],[112.987345,24.923843],[112.891610136719,24.9195778632813],[112.862806425781,24.8979030585938],[112.847345,24.9005641914063],[112.787454863281,24.8902541328125],[112.777345,24.903843],[112.77271609375,24.94921409375],[112.743900175781,24.9620729804687],[112.73271609375,24.99921409375],[112.711197539063,25.02956565625],[112.71423953125,25.0674367500001],[112.657345,25.133843],[112.665513945313,25.1456740546875],[112.685557890625,25.1595143867188],[112.679586210938,25.1861476875],[112.634232207031,25.2120339179688],[112.623260527344,25.2350954414063],[112.696800566406,25.2539675117188],[112.689757109375,25.2853908515626],[112.739071074219,25.3038430000001],[112.731124296875,25.3392897773438],[112.743260527344,25.3579274726563],[112.758502226563,25.3986647773438],[112.783638945313,25.4080690742187],[112.781160917969,25.4191213203125],[112.787345,25.433843],[112.802606230469,25.4270070625],[112.821158476563,25.4400295234375],[112.863531523438,25.4476564765625],[112.871158476563,25.4600295234375],[112.883531523438,25.4676564765626],[112.893641386719,25.4840602851563],[112.933531523438,25.4976564765625],[112.937345,25.503843],[112.94170046875,25.5094875312501],[112.97298953125,25.51819846875],[113.007410917969,25.5389626289063],[113.08298953125,25.54819846875],[113.09170046875,25.56948753125],[113.113167753906,25.5782717109376],[113.109234648438,25.6048928046875],[113.182410917969,25.5761257148438],[113.192689238281,25.613032453125],[113.215264921875,25.6681911445313],[113.23170046875,25.68948753125],[113.247345,25.693843],[113.26427859375,25.69042503125],[113.323985625,25.6604836250001],[113.337345,25.633843],[113.319207792969,25.6286574531251],[113.298450957031,25.6027370429688],[113.27939578125,25.5874758125]]]]}},{"type":"Feature","properties":{"name":"资兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.347345,25.613843],[113.343922148438,25.6016506171875],[113.335152617188,25.6104201484375],[113.347345,25.613843]]],[[[113.347345,25.613843],[113.337345,25.633843],[113.323985625,25.6604836250001],[113.26427859375,25.69042503125],[113.247345,25.693843],[113.241449003906,25.71929221875],[113.254486113281,25.7293556953126],[113.250362578125,25.7572658515625],[113.26298953125,25.77819846875],[113.27170046875,25.8195510078126],[113.238975859375,25.8944338203125],[113.191541777344,25.9584133125001],[113.193658476563,25.9727321601562],[113.157345,25.9673659492188],[113.137838164063,25.9702468085938],[113.12298953125,25.98948753125],[113.11170046875,25.9981984687501],[113.107345,26.013843],[113.139107695313,26.0231642890626],[113.182806425781,26.0783815742188],[113.191883574219,26.0993044257813],[113.202886992188,26.1185207343751],[113.20107546875,26.1362966132812],[113.211883574219,26.1493044257813],[113.222806425781,26.1583815742188],[113.247345,26.1879201484376],[113.271883574219,26.1583815742188],[113.291658964844,26.1419533515625],[113.304056425781,26.1133693671875],[113.332022734375,26.1293849921876],[113.347345,26.1278249335938],[113.36255984375,26.1293752265625],[113.41216921875,26.11550315625],[113.425191679688,26.1742311835938],[113.486666289063,26.1570436835937],[113.545191679688,26.1824245429687],[113.569107695313,26.2639260078126],[113.581883574219,26.2793044257813],[113.597345,26.2838430000001],[113.607345,26.2838430000001],[113.621429472656,26.2779274726563],[113.653260527344,26.2697585273438],[113.681429472656,26.2479274726563],[113.714000273438,26.2293361640625],[113.739227324219,26.1905959296876],[113.721698027344,26.1437526679688],[113.69490359375,26.1252516914063],[113.689251738281,26.1000466132813],[113.711429472656,26.0679274726563],[113.717345,26.0638430000001],[113.712625761719,26.0485622382813],[113.692303496094,26.0304030585938],[113.673414335938,25.929204328125],[113.662345,25.9285451484376],[113.644859648438,25.9295876289063],[113.612647734375,25.9148024726563],[113.627345,25.8738430000001],[113.622064238281,25.8691237617188],[113.607906523438,25.8532814765626],[113.591646757813,25.8387526679688],[113.633189726563,25.8196877265626],[113.657811308594,25.7921291328125],[113.6320325,25.76909690625],[113.6337903125,25.7396022773438],[113.62146609375,25.7285890937501],[113.623287382813,25.6980446601563],[113.582064238281,25.6791237617188],[113.57259890625,25.6685305000001],[113.561080351563,25.6692165351563],[113.531607695313,25.6362282539063],[113.532940703125,25.613843],[113.531893339844,25.5962673164063],[113.470496855469,25.5591237617188],[113.45259890625,25.5791555],[113.434503203125,25.5780763984375],[113.418157988281,25.6483278632813],[113.38255984375,25.6084865546875],[113.347345,25.613843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"道县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.527345,25.813843],[111.530767851563,25.8260353828125],[111.539537382813,25.8172658515626],[111.527345,25.813843]]],[[[111.527345,25.813843],[111.539234648438,25.7995290351563],[111.571136503906,25.7856935859376],[111.572855253906,25.768843],[111.568756132813,25.7286452460938],[111.584908476563,25.6914064765625],[111.616668730469,25.6776296210938],[111.662894316406,25.6392336250001],[111.66107546875,25.6213893867188],[111.679058867188,25.5997389960937],[111.695745878906,25.6382106757813],[111.727345,25.6438430000001],[111.731883574219,25.6283815742188],[111.742806425781,25.6193044257813],[111.753941679688,25.5936305976563],[111.797345,25.6458815742188],[111.811883574219,25.6283815742188],[111.822894316406,25.619233625],[111.821795683594,25.6084523750001],[111.84150515625,25.5920803046875],[111.8454309375,25.5535768867188],[111.825047636719,25.5290383125],[111.791883574219,25.5193044257813],[111.782806425781,25.4983815742188],[111.752806425781,25.446001203125],[111.771397734375,25.4303908515625],[111.830577421875,25.4642848945313],[111.846077910156,25.3602150703126],[111.878331328125,25.30792503125],[111.897418242188,25.3098708320313],[111.917345,25.233843],[111.909136992188,25.2051320625],[111.871790800781,25.1893971992187],[111.852703886719,25.1781764960938],[111.832799101563,25.1806520820313],[111.816217070313,25.159946515625],[111.801890898438,25.1581642890625],[111.786776152344,25.1770412421875],[111.741287871094,25.2046706367188],[111.703057890625,25.2352834296876],[111.692891875,25.2594142890625],[111.642899199219,25.2993971992188],[111.62166140625,25.308344953125],[111.624141875,25.3282888007813],[111.601790800781,25.3193971992188],[111.568546171875,25.2998537421875],[111.549344511719,25.3238356757813],[111.522899199219,25.3082888007813],[111.491790800781,25.2993971992188],[111.481632109375,25.2752834296876],[111.467345,25.2638430000001],[111.4610559375,25.327798078125],[111.462764921875,25.3490822578125],[111.451029082031,25.3810451484375],[111.405982695313,25.4011452460938],[111.368450957031,25.3981276679688],[111.326532011719,25.4650563789063],[111.297345,25.473843],[111.325882597656,25.5324855781251],[111.317576933594,25.5591481757813],[111.334088164063,25.6093434882813],[111.303873320313,25.6466481757813],[111.313902617188,25.6788430000001],[111.304344511719,25.7095314765625],[111.297345,25.7138430000001],[111.309075957031,25.7290407539063],[111.388631621094,25.7425563789062],[111.408365507813,25.7681227851563],[111.4401965625,25.7811501289063],[111.419937773438,25.8326882148438],[111.447345,25.853843],[111.449888945313,25.8463869453126],[111.474801054688,25.8412990546875],[111.499888945313,25.8163869453126],[111.527345,25.813843]]]]}},{"type":"Feature","properties":{"name":"东安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.467345,26.773843],[111.463922148438,26.7860353828125],[111.455152617188,26.7772658515625],[111.474461699219,26.7561379218751],[111.470228300781,26.7315480781251],[111.489722929688,26.6830495429688],[111.463079863281,26.6632302070313],[111.476395292969,26.6552370429688],[111.511776152344,26.6613283515625],[111.521610136719,26.6481081367188],[111.534066191406,26.638843],[111.503079863281,26.6157936835938],[111.536866484375,26.565317609375],[111.571610136719,26.5712990546876],[111.555357695313,26.4890138984376],[111.526243925781,26.4774440742188],[111.503079863281,26.4381081367188],[111.483079863281,26.4232302070313],[111.491610136719,26.3981081367188],[111.512210722656,26.3827858710937],[111.521610136719,26.3481081367188],[111.533277617188,26.3292580390626],[111.531434355469,26.31855003125],[111.537345,26.303843],[111.531429472656,26.2997585273438],[111.51959109375,26.2826125312501],[111.491788359375,26.300718],[111.483260527344,26.2779274726563],[111.455516386719,26.2587721992188],[111.427254667969,26.2481960273438],[111.398377714844,26.2063698554688],[111.373016386719,26.212055890625],[111.363260527344,26.1979274726563],[111.334622832031,26.187212140625],[111.322345,26.1899636054688],[111.309383574219,26.1870583320312],[111.313465605469,26.1688430000001],[111.310560332031,26.1558815742188],[111.291529570313,26.1601467109375],[111.283260527344,26.1279274726563],[111.267345,26.123843],[111.25834109375,26.1467482734375],[111.268753691406,26.217212140625],[111.287139921875,26.23140159375],[111.280872832031,26.2737966132813],[111.237345,26.2673659492188],[111.222345,26.2695827460938],[111.212345,26.2681032539063],[111.198836699219,26.2701003242188],[111.205838652344,26.3174880195313],[111.142345,26.3081032539063],[111.122345,26.3110597968751],[111.093922148438,26.306860578125],[111.07298953125,26.3194875312501],[111.04170046875,26.32819846875],[111.02298953125,26.33948753125],[111.00170046875,26.34819846875],[110.997345,26.3638430000001],[111.012310820313,26.3777101875],[111.022154570313,26.4190334296875],[111.032535429688,26.4386525703125],[111.042154570313,26.4590334296875],[111.052550078125,26.4786794257813],[111.052147246094,26.488843],[111.05341921875,26.5209401679688],[111.072740507813,26.538843],[111.062154570313,26.5486525703125],[111.052535429688,26.5828224921875],[111.102535429688,26.5986525703126],[111.123844023438,26.6216481757813],[111.121561308594,26.564048078125],[111.152923613281,26.5184670234376],[111.151712675781,26.4878786445313],[111.18435671875,26.4590334296875],[111.22357546875,26.4797853828126],[111.252528105469,26.478637921875],[111.262161894531,26.4990480781251],[111.281717558594,26.4982741523438],[111.302154570313,26.650122296875],[111.282154570313,26.6686525703125],[111.277345,26.6738430000001],[111.282899199219,26.6782888007813],[111.293057890625,26.7024025703125],[111.313023710938,26.7183888984376],[111.311722441406,26.728843],[111.316698027344,26.768843],[111.310863066406,26.8157497382813],[111.356449003906,26.8726760078125],[111.402899199219,26.8593971992188],[111.417345,26.8413552070313],[111.441302519531,26.8712721992188],[111.522899199219,26.8593971992188],[111.531790800781,26.8482888007813],[111.537345,26.843843],[111.537345,26.8238430000001],[111.514300566406,26.7666310859375],[111.492630644531,26.779702375],[111.467345,26.773843]]]]}},{"type":"Feature","properties":{"name":"江华瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.62166140625,25.308344953125],[111.642899199219,25.2993971992188],[111.692891875,25.2594142890625],[111.703057890625,25.2352834296876],[111.741287871094,25.2046706367188],[111.786776152344,25.1770412421875],[111.801890898438,25.1581642890625],[111.816217070313,25.159946515625],[111.832799101563,25.1806520820313],[111.852703886719,25.1781764960938],[111.871790800781,25.1893971992187],[111.909136992188,25.2051320625],[111.917345,25.233843],[111.952327910156,25.216391828125],[111.971353789063,25.2256838203125],[111.977345,25.213843],[111.971519804688,25.2096681953125],[111.963170195313,25.1680178046876],[111.951519804688,25.1596681953126],[111.943170195313,25.1380178046876],[111.921390410156,25.1296169257813],[111.908829375,25.0660475898438],[111.947203398438,25.0096681953126],[111.963170195313,25.0180178046876],[111.985797148438,25.057046125],[112.055343046875,25.0128932929688],[112.111903105469,25.0499196601563],[112.122425566406,25.0478395820313],[112.147345,25.053843],[112.143260527344,25.0179274726563],[112.113260527344,24.9792189765625],[112.121429472656,24.9579274726563],[112.163260527344,24.9297585273438],[112.167345,24.923843],[112.16170046875,24.88948753125],[112.157345,24.853843],[112.157345,24.8438430000001],[112.097352324219,24.8363381171875],[112.075904570313,24.8095558906251],[112.051790800781,24.7993971992188],[112.036261015625,24.7800002265625],[112.022899199219,24.7482888007813],[112.017345,24.743843],[111.99298953125,24.75948753125],[111.961431914063,24.7724025703125],[111.927345,24.7673659492188],[111.902345,24.771059796875],[111.872857695313,24.7667018867188],[111.862857695313,24.7796584296875],[111.852345,24.7781032539063],[111.832345,24.7810597968751],[111.81205203125,24.77806175],[111.779906035156,24.79069846875],[111.737345,24.78440940625],[111.696485625,24.7904470039063],[111.648839140625,24.7551247382813],[111.631751738281,24.6937575507813],[111.586204863281,24.7004885078125],[111.564056425781,24.6463747382813],[111.542203398438,24.6496022773438],[111.517345,24.6438430000001],[111.51062625,24.65712425],[111.497345,24.663843],[111.490079375,24.672915265625],[111.451890898438,24.6681642890625],[111.442899199219,24.6793971992188],[111.427352324219,24.6918434882813],[111.465548125,24.7568215156251],[111.481790800781,24.8042653632813],[111.44931765625,24.8595095039063],[111.452967558594,24.888843],[111.451102324219,24.903843],[111.455140410156,24.9363259101563],[111.425755644531,24.9765529609375],[111.458450957031,25.0027370429688],[111.467345,25.0338430000001],[111.471519804688,25.0496681953125],[111.504600859375,25.0624269843751],[111.499381132813,25.088843],[111.527083769531,25.0995290351563],[111.5464075,25.1264870429688],[111.534671660156,25.1380178046876],[111.502034941406,25.1172975898437],[111.490328398438,25.1336330390626],[111.501087675781,25.18808128125],[111.436087675781,25.2011110664063],[111.453170195313,25.2280178046875],[111.461519804688,25.2596681953125],[111.467345,25.2638430000001],[111.481632109375,25.2752834296876],[111.491790800781,25.2993971992188],[111.522899199219,25.3082888007813],[111.549344511719,25.3238356757813],[111.568546171875,25.2998537421875],[111.601790800781,25.3193971992188],[111.624141875,25.3282888007813],[111.62166140625,25.308344953125]]]]}},{"type":"Feature","properties":{"name":"江永县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.326532011719,25.4650563789063],[111.368450957031,25.3981276679688],[111.405982695313,25.4011452460938],[111.451029082031,25.3810451484375],[111.462764921875,25.3490822578125],[111.4610559375,25.327798078125],[111.467345,25.2638430000001],[111.461519804688,25.2596681953125],[111.453170195313,25.2280178046875],[111.436087675781,25.2011110664063],[111.501087675781,25.18808128125],[111.490328398438,25.1336330390626],[111.502034941406,25.1172975898437],[111.534671660156,25.1380178046876],[111.5464075,25.1264870429688],[111.527083769531,25.0995290351563],[111.499381132813,25.088843],[111.504600859375,25.0624269843751],[111.471519804688,25.0496681953125],[111.467345,25.0338430000001],[111.420335722656,25.0401296210938],[111.424456816406,25.1092678046876],[111.411080351563,25.1084694648437],[111.388568144531,25.13366721875],[111.339254179688,25.0992214179688],[111.298485136719,25.1213747382813],[111.273160429688,25.1497194648438],[111.244344511719,25.1340627265625],[111.196236601563,25.0802199531251],[111.172064238281,25.0691237617188],[111.142625761719,25.0485622382813],[111.099678984375,25.0385695625],[111.1026575,24.98858909375],[111.0920325,24.9790969062501],[111.0937903125,24.9496022773437],[111.087345,24.943843],[111.07170046875,24.9394875312501],[110.996246367188,24.9270925117188],[110.98298953125,24.95948753125],[110.97170046875,24.97819846875],[110.96298953125,24.99948753125],[110.95170046875,25.01819846875],[110.94298953125,25.0484645820313],[110.97298953125,25.09819846875],[110.98170046875,25.1294875312501],[110.996605253906,25.1674025703126],[111.051209746094,25.1897487617187],[111.062857695313,25.1880275703125],[111.07170046875,25.19948753125],[111.10298953125,25.21819846875],[111.116346464844,25.2355055976563],[111.097345,25.283843],[111.101429472656,25.2897585273438],[111.138565703125,25.3109548164063],[111.178831816406,25.3707521796876],[111.203685332031,25.365180890625],[111.253709746094,25.3977565742188],[111.250472441406,25.4121950507813],[111.292166777344,25.4409792304688],[111.297345,25.473843],[111.326532011719,25.4650563789063]]]]}},{"type":"Feature","properties":{"name":"蓝山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.367345,25.513843],[112.355152617188,25.5104201484376],[112.363922148438,25.5016506171876],[112.381090117188,25.5068898750001],[112.39478640625,25.478843],[112.384801054688,25.45839378125],[112.407345,25.4538430000001],[112.407345,25.4438430000001],[112.417345,25.4438430000001],[112.421883574219,25.4283815742188],[112.439383574219,25.4138430000001],[112.413240996094,25.3921291328126],[112.451883574219,25.3753688789063],[112.442699003906,25.368296125],[112.426497832031,25.3699489570313],[112.408717070313,25.3289479804688],[112.372806425781,25.3083815742188],[112.338861113281,25.2936574531251],[112.353753691406,25.2676540351563],[112.351795683594,25.248452375],[112.364334746094,25.2380373359375],[112.357345,25.193843],[112.302899199219,25.1682888007813],[112.258914824219,25.1593971992188],[112.233704863281,25.1908766914063],[112.207345,25.1876003242188],[112.18908328125,25.1898708320313],[112.158450957031,25.0827370429687],[112.147345,25.053843],[112.122425566406,25.0478395820313],[112.111903105469,25.0499196601563],[112.055343046875,25.0128932929688],[111.985797148438,25.057046125],[111.963170195313,25.0180178046876],[111.947203398438,25.0096681953126],[111.908829375,25.0660475898438],[111.921390410156,25.1296169257813],[111.943170195313,25.1380178046876],[111.951519804688,25.1596681953126],[111.963170195313,25.1680178046876],[111.971519804688,25.2096681953125],[111.977345,25.213843],[111.992615996094,25.2074294257813],[112.021429472656,25.2297585273438],[112.053260527344,25.2379274726563],[112.061429472656,25.2597585273438],[112.086158476563,25.27683128125],[112.078983183594,25.308843],[112.086451445313,25.3421608710937],[112.067576933594,25.3870998359375],[112.08408328125,25.3984963203126],[112.069456816406,25.4209572578125],[112.073638945313,25.4396169257812],[112.05047,25.448286359375],[112.064158964844,25.4693068671875],[112.047069121094,25.4779274726563],[112.032137480469,25.4563014960938],[112.023260527344,25.4767018867187],[112.053260527344,25.4879274726563],[112.061429472656,25.4997585273438],[112.080345488281,25.5128176093751],[112.104683867188,25.5554616523438],[112.153260527344,25.5679274726563],[112.173082304688,25.59663596875],[112.203260527344,25.6079274726562],[112.222147246094,25.6202272773438],[112.237345,25.613843],[112.241429472656,25.5979274726563],[112.253565703125,25.5792897773438],[112.250008574219,25.5634255195313],[112.303260527344,25.5497585273438],[112.324459257813,25.5359548164063],[112.362515898438,25.5444850898438],[112.367345,25.513843]]]]}},{"type":"Feature","properties":{"name":"冷水滩区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.577345,26.263843],[111.573922148438,26.2516506171875],[111.565152617188,26.2604201484375],[111.577345,26.263843]]],[[[111.467345,26.773843],[111.455152617188,26.7772658515625],[111.463922148438,26.7860353828125],[111.467345,26.773843]]],[[[111.577345,26.263843],[111.573531523438,26.2700295234376],[111.542845488281,26.2804885078125],[111.537345,26.303843],[111.531434355469,26.31855003125],[111.533277617188,26.3292580390626],[111.521610136719,26.3481081367188],[111.512210722656,26.3827858710937],[111.491610136719,26.3981081367188],[111.483079863281,26.4232302070313],[111.503079863281,26.4381081367188],[111.526243925781,26.4774440742188],[111.555357695313,26.4890138984376],[111.571610136719,26.5712990546876],[111.536866484375,26.565317609375],[111.503079863281,26.6157936835938],[111.534066191406,26.638843],[111.521610136719,26.6481081367188],[111.511776152344,26.6613283515625],[111.476395292969,26.6552370429688],[111.463079863281,26.6632302070313],[111.489722929688,26.6830495429688],[111.470228300781,26.7315480781251],[111.474461699219,26.7561379218751],[111.467345,26.773843],[111.492630644531,26.779702375],[111.514300566406,26.7666310859375],[111.537345,26.8238430000001],[111.583985625,26.8004836250001],[111.587345,26.793843],[111.592337675781,26.7759108710938],[111.640413847656,26.7469118476562],[111.703421660156,26.7211232734376],[111.700699492188,26.7027028632813],[111.733260527344,26.6893752265626],[111.721449003906,26.63839378125],[111.74388796875,26.6210744453125],[111.753822050781,26.5538430000001],[111.748878203125,26.5203786445312],[111.775555449219,26.4997878242188],[111.783084746094,26.448843],[111.781529570313,26.4383303046876],[111.793160429688,26.4293556953125],[111.791575957031,26.4186330390625],[111.80298953125,26.37948753125],[111.807345,26.353843],[111.781429472656,26.3497585273438],[111.741751738281,26.3374587226563],[111.73033328125,26.3539968085938],[111.668609648438,26.3401589179688],[111.653260527344,26.3179274726563],[111.624151640625,26.307036359375],[111.613260527344,26.2779274726563],[111.598345976563,26.2550221992188],[111.577345,26.263843]]]]}},{"type":"Feature","properties":{"name":"零陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.577345,26.263843],[111.565152617188,26.2604201484375],[111.573922148438,26.2516506171875],[111.598345976563,26.2550221992188],[111.613260527344,26.2779274726563],[111.624151640625,26.307036359375],[111.653260527344,26.3179274726563],[111.668609648438,26.3401589179688],[111.73033328125,26.3539968085938],[111.741751738281,26.3374587226563],[111.781429472656,26.3497585273438],[111.807345,26.353843],[111.83451296875,26.3605153632813],[111.874932890625,26.3453908515625],[111.870472441406,26.3254909492188],[111.895042753906,26.3085280585938],[111.915745878906,26.241743390625],[111.90047,26.2182863593751],[111.927777128906,26.2080690742187],[111.915990019531,26.1554909492188],[111.953260527344,26.1297585273438],[111.957345,26.123843],[111.952154570313,26.1190334296875],[111.8956653125,26.1167946601563],[111.868211699219,26.1313210273438],[111.842535429688,26.1590334296875],[111.80013796875,26.1686525703125],[111.752535429688,26.1431911445312],[111.791685820313,26.1247145820313],[111.731871367188,26.1057790351562],[111.732567167969,26.0882399726563],[111.712345,26.0890407539063],[111.702345,26.0886452460938],[111.692174101563,26.0890480781251],[111.662535429688,26.0686525703126],[111.641361113281,26.0590334296876],[111.642581816406,26.0898439765625],[111.608255644531,26.0884816718751],[111.580174589844,26.04499534375],[111.552154570313,26.0190334296876],[111.542535429688,26.0016970039063],[111.582550078125,25.9890285468751],[111.582139921875,25.9786647773438],[111.606751738281,25.9558620429688],[111.591065703125,25.9290334296875],[111.571812773438,25.9498122382812],[111.537345,25.9484474921875],[111.509866972656,25.949536359375],[111.482535429688,25.9790334296876],[111.438702421875,25.9929103828126],[111.422535429688,25.9586525703125],[111.402222929688,25.9398317695313],[111.397345,25.883843],[111.38197390625,25.8884719062501],[111.372020292969,25.9000221992188],[111.352345,25.8984401679688],[111.324583769531,25.9006716132813],[111.293909941406,25.8835573554688],[111.282691679688,25.8584133125],[111.257511015625,25.8604372382813],[111.221419707031,25.9023268867188],[111.222747832031,25.918843],[111.221615019531,25.932934796875],[111.188975859375,25.9610524726562],[111.219268828125,26.0435475898438],[111.253048125,26.0586183906251],[111.241763945313,26.0788454414063],[111.267345,26.123843],[111.283260527344,26.1279274726563],[111.291529570313,26.1601467109375],[111.310560332031,26.1558815742188],[111.313465605469,26.1688430000001],[111.309383574219,26.1870583320312],[111.322345,26.1899636054688],[111.334622832031,26.187212140625],[111.363260527344,26.1979274726563],[111.373016386719,26.212055890625],[111.398377714844,26.2063698554688],[111.427254667969,26.2481960273438],[111.455516386719,26.2587721992188],[111.483260527344,26.2779274726563],[111.491788359375,26.300718],[111.51959109375,26.2826125312501],[111.531429472656,26.2997585273438],[111.537345,26.303843],[111.542845488281,26.2804885078125],[111.573531523438,26.2700295234376],[111.577345,26.263843]]]]}},{"type":"Feature","properties":{"name":"宁远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.787345,25.743843],[111.775152617188,25.7472658515625],[111.783922148438,25.7560353828125],[111.787345,25.743843]]],[[[112.147345,25.743843],[112.150767851563,25.7560353828125],[112.159537382813,25.7472658515625],[112.147345,25.743843]]],[[[112.147345,25.743843],[112.137432890625,25.7239015937501],[112.145269804688,25.7078517890626],[112.123985625,25.6970851875],[112.131522246094,25.6859987617188],[112.151353789063,25.6956838203126],[112.1641028125,25.670483625],[112.189945097656,25.6792165351563],[112.201353789063,25.7017678046875],[112.21740359375,25.693930890625],[112.237345,25.703843],[112.237345,25.693843],[112.237345,25.6838430000001],[112.2544153125,25.6404201484375],[112.237345,25.613843],[112.222147246094,25.6202272773438],[112.203260527344,25.6079274726562],[112.173082304688,25.59663596875],[112.153260527344,25.5679274726563],[112.104683867188,25.5554616523438],[112.080345488281,25.5128176093751],[112.061429472656,25.4997585273438],[112.053260527344,25.4879274726563],[112.023260527344,25.4767018867187],[112.032137480469,25.4563014960938],[112.047069121094,25.4779274726563],[112.064158964844,25.4693068671875],[112.05047,25.448286359375],[112.073638945313,25.4396169257812],[112.069456816406,25.4209572578125],[112.08408328125,25.3984963203126],[112.067576933594,25.3870998359375],[112.086451445313,25.3421608710937],[112.078983183594,25.308843],[112.086158476563,25.27683128125],[112.061429472656,25.2597585273438],[112.053260527344,25.2379274726563],[112.021429472656,25.2297585273438],[111.992615996094,25.2074294257813],[111.977345,25.213843],[111.971353789063,25.2256838203125],[111.952327910156,25.216391828125],[111.917345,25.233843],[111.897418242188,25.3098708320313],[111.878331328125,25.30792503125],[111.846077910156,25.3602150703126],[111.830577421875,25.4642848945313],[111.771397734375,25.4303908515625],[111.752806425781,25.446001203125],[111.782806425781,25.4983815742188],[111.791883574219,25.5193044257813],[111.825047636719,25.5290383125],[111.8454309375,25.5535768867188],[111.84150515625,25.5920803046875],[111.821795683594,25.6084523750001],[111.822894316406,25.619233625],[111.811883574219,25.6283815742188],[111.797345,25.6458815742188],[111.753941679688,25.5936305976563],[111.742806425781,25.6193044257813],[111.731883574219,25.6283815742188],[111.727345,25.6438430000001],[111.75271609375,25.68847190625],[111.76197390625,25.70921409375],[111.787345,25.743843],[111.81271609375,25.75847190625],[111.8384778125,25.8162038398438],[111.85271609375,25.82847190625],[111.873270292969,25.8523268867188],[111.870738554688,25.883843],[111.873819609375,25.9221901679688],[111.89939578125,25.944223859375],[111.92197390625,26.01921409375],[111.973385039063,26.03089378125],[111.971939726563,26.0488796210938],[111.977345,26.1038430000001],[111.99728640625,26.0939308906251],[112.012345,26.10128440625],[112.023338652344,26.0959157539063],[112.044078398438,26.137202375],[112.070704375,26.1282155585938],[112.063231230469,26.1159670234375],[112.051148710938,26.12187034375],[112.039654570313,26.0983351875],[112.083985625,26.050483625],[112.087345,26.033843],[112.091429472656,26.0179274726563],[112.104989042969,25.9856423164062],[112.101224394531,25.968843],[112.103565703125,25.9583962226563],[112.09047,25.938286359375],[112.113638945313,25.9296169257813],[112.110103789063,25.913843],[112.114339628906,25.8949416328126],[112.09060671875,25.8584963203126],[112.111429472656,25.8441188789062],[112.103260527344,25.8179274726563],[112.08490359375,25.8052516914063],[112.076800566406,25.7691139960938],[112.099442167969,25.7363234687501],[112.132345,25.7501442695313],[112.147345,25.743843]],[[112.067345,25.803843],[112.05072390625,25.8279152656251],[112.033260527344,25.8125905585938],[112.067345,25.803843]],[[112.097345,25.913843],[112.091910429688,25.9265407539062],[112.074346953125,25.9178957343751],[112.097345,25.913843]]]]}},{"type":"Feature","properties":{"name":"祁阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.737345,26.833843],[111.740767851563,26.8460353828126],[111.749537382813,26.8372658515626],[111.737345,26.833843]]],[[[111.737345,26.833843],[111.74197390625,26.81847190625],[111.76271609375,26.80921409375],[111.773316679688,26.7969118476563],[111.812847929688,26.8000881171875],[111.811585722656,26.7843825507813],[111.860135527344,26.802212140625],[111.885858183594,26.7723561835938],[111.912772246094,26.7491677070313],[111.911690703125,26.7356862617188],[111.963558378906,26.6457204414063],[111.98271609375,26.62921409375],[111.996102324219,26.59921409375],[112.013084746094,26.6188967109376],[111.99271609375,26.6364455390625],[112.003665800781,26.6515480781251],[112.042345,26.6484401679688],[112.057345,26.6496462226563],[112.082345,26.6476369453125],[112.109783964844,26.6498415351563],[112.1427746875,26.6291799140625],[112.140365019531,26.5991896796875],[112.17197390625,26.5850856757813],[112.1626965625,26.5584133125001],[112.151099882813,26.5593459296876],[112.152772246094,26.5385182929688],[112.13271609375,26.5212404609376],[112.142225371094,26.5081227851563],[112.213236113281,26.55847190625],[112.24197390625,26.5304177070313],[112.226029082031,26.5098415351562],[112.187345,26.493843],[112.163114042969,26.5038014960938],[112.150772734375,26.471801984375],[112.15341921875,26.4584108710938],[112.14127078125,26.4392751289063],[112.145308867188,26.418843],[112.140369902344,26.393843],[112.147113066406,26.3597170234375],[112.175308867188,26.348843],[112.169332304688,26.3185964179688],[112.209505644531,26.3079958320313],[112.19127078125,26.2792751289063],[112.195321074219,26.2587868476563],[112.181253691406,26.1883400703125],[112.213170195313,26.1496681953126],[112.227345,26.123843],[112.227345,26.113843],[112.221790800781,26.1093971992188],[112.190081816406,26.1054518867187],[112.152899199219,26.0782888007813],[112.131790800781,26.0693971992188],[112.087345,26.033843],[112.083985625,26.050483625],[112.039654570313,26.0983351875],[112.051148710938,26.12187034375],[112.063231230469,26.1159670234375],[112.070704375,26.1282155585938],[112.044078398438,26.137202375],[112.023338652344,26.0959157539063],[112.012345,26.10128440625],[111.99728640625,26.0939308906251],[111.977345,26.1038430000001],[111.97062625,26.11712425],[111.957345,26.123843],[111.953260527344,26.1297585273438],[111.915990019531,26.1554909492188],[111.927777128906,26.2080690742187],[111.90047,26.2182863593751],[111.915745878906,26.241743390625],[111.895042753906,26.3085280585938],[111.870472441406,26.3254909492188],[111.874932890625,26.3453908515625],[111.83451296875,26.3605153632813],[111.807345,26.353843],[111.80298953125,26.37948753125],[111.791575957031,26.4186330390625],[111.793160429688,26.4293556953125],[111.781529570313,26.4383303046876],[111.783084746094,26.448843],[111.775555449219,26.4997878242188],[111.748878203125,26.5203786445312],[111.753822050781,26.5538430000001],[111.74388796875,26.6210744453125],[111.721449003906,26.63839378125],[111.733260527344,26.6893752265626],[111.700699492188,26.7027028632813],[111.703421660156,26.7211232734376],[111.640413847656,26.7469118476562],[111.592337675781,26.7759108710938],[111.587345,26.793843],[111.630181914063,26.7984743476563],[111.647345,26.8472731757813],[111.682584257813,26.8373708320313],[111.712960234375,26.8506911445313],[111.721248808594,26.8377468085938],[111.737345,26.833843]]]]}},{"type":"Feature","properties":{"name":"双牌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.787345,25.743843],[111.783922148438,25.7560353828125],[111.775152617188,25.7472658515625],[111.76197390625,25.70921409375],[111.75271609375,25.68847190625],[111.727345,25.6438430000001],[111.695745878906,25.6382106757813],[111.679058867188,25.5997389960937],[111.66107546875,25.6213893867188],[111.662894316406,25.6392336250001],[111.616668730469,25.6776296210938],[111.584908476563,25.6914064765625],[111.568756132813,25.7286452460938],[111.572855253906,25.768843],[111.571136503906,25.7856935859376],[111.539234648438,25.7995290351563],[111.527345,25.813843],[111.539537382813,25.8172658515626],[111.530767851563,25.8260353828125],[111.527345,25.813843],[111.499888945313,25.8163869453126],[111.474801054688,25.8412990546875],[111.449888945313,25.8463869453126],[111.447345,25.853843],[111.483167753906,25.8682717109375],[111.481302519531,25.8809059882813],[111.452857695313,25.8767018867188],[111.447345,25.883843],[111.459537382813,25.8872658515626],[111.450767851563,25.8960353828125],[111.447345,25.883843],[111.397345,25.883843],[111.402222929688,25.9398317695313],[111.422535429688,25.9586525703125],[111.438702421875,25.9929103828126],[111.482535429688,25.9790334296876],[111.509866972656,25.949536359375],[111.537345,25.9484474921875],[111.571812773438,25.9498122382812],[111.591065703125,25.9290334296875],[111.606751738281,25.9558620429688],[111.582139921875,25.9786647773438],[111.582550078125,25.9890285468751],[111.542535429688,26.0016970039063],[111.552154570313,26.0190334296876],[111.580174589844,26.04499534375],[111.608255644531,26.0884816718751],[111.642581816406,26.0898439765625],[111.641361113281,26.0590334296876],[111.662535429688,26.0686525703126],[111.692174101563,26.0890480781251],[111.702345,26.0886452460938],[111.712345,26.0890407539063],[111.732567167969,26.0882399726563],[111.731871367188,26.1057790351562],[111.791685820313,26.1247145820313],[111.752535429688,26.1431911445312],[111.80013796875,26.1686525703125],[111.842535429688,26.1590334296875],[111.868211699219,26.1313210273438],[111.8956653125,26.1167946601563],[111.952154570313,26.1190334296875],[111.957345,26.123843],[111.97062625,26.11712425],[111.977345,26.1038430000001],[111.971939726563,26.0488796210938],[111.973385039063,26.03089378125],[111.92197390625,26.01921409375],[111.89939578125,25.944223859375],[111.873819609375,25.9221901679688],[111.870738554688,25.883843],[111.873270292969,25.8523268867188],[111.85271609375,25.82847190625],[111.8384778125,25.8162038398438],[111.81271609375,25.75847190625],[111.787345,25.743843]]]]}},{"type":"Feature","properties":{"name":"新田县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.250152617188,25.688843],[112.237345,25.6838430000001],[112.237345,25.693843],[112.250152617188,25.688843]]],[[[112.05072390625,25.8279152656251],[112.067345,25.803843],[112.033260527344,25.8125905585938],[112.05072390625,25.8279152656251]]],[[[112.091910429688,25.9265407539062],[112.097345,25.913843],[112.074346953125,25.9178957343751],[112.091910429688,25.9265407539062]]],[[[112.147345,25.743843],[112.159537382813,25.7472658515625],[112.150767851563,25.7560353828125],[112.132345,25.7501442695313],[112.099442167969,25.7363234687501],[112.076800566406,25.7691139960938],[112.08490359375,25.8052516914063],[112.103260527344,25.8179274726563],[112.111429472656,25.8441188789062],[112.09060671875,25.8584963203126],[112.114339628906,25.8949416328126],[112.110103789063,25.913843],[112.113638945313,25.9296169257813],[112.09047,25.938286359375],[112.103565703125,25.9583962226563],[112.101224394531,25.968843],[112.104989042969,25.9856423164062],[112.091429472656,26.0179274726563],[112.087345,26.033843],[112.131790800781,26.0693971992188],[112.152899199219,26.0782888007813],[112.190081816406,26.1054518867187],[112.221790800781,26.1093971992188],[112.227345,26.113843],[112.232796660156,26.09618675],[112.282345,26.0991408515625],[112.292345,26.0985451484375],[112.321365996094,26.1002736640626],[112.324854765625,26.0417507148438],[112.293084746094,25.9962721992188],[112.292034941406,25.9786428046876],[112.304720488281,25.9432888007813],[112.282625761719,25.9185622382813],[112.262625761719,25.9006911445313],[112.321097441406,25.8874929023438],[112.35416140625,25.9105886054688],[112.375496855469,25.8511257148438],[112.352625761719,25.8306911445313],[112.364781523438,25.8150685859376],[112.382625761719,25.7991237617188],[112.387345,25.7938430000001],[112.377550078125,25.7862844062501],[112.384520292969,25.7391164375],[112.35170046875,25.71948753125],[112.331204863281,25.6929323554688],[112.299403105469,25.7341335273438],[112.27298953125,25.71819846875],[112.237345,25.703843],[112.21740359375,25.693930890625],[112.201353789063,25.7017678046875],[112.189945097656,25.6792165351563],[112.1641028125,25.670483625],[112.151353789063,25.6956838203126],[112.131522246094,25.6859987617188],[112.123985625,25.6970851875],[112.145269804688,25.7078517890626],[112.137432890625,25.7239015937501],[112.147345,25.743843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"辰溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,28.183843],[110.304647246094,28.1784084296876],[110.313292265625,28.160844953125],[110.3509778125,28.1648268867188],[110.354154082031,28.1392971015625],[110.337586699219,28.1260280585938],[110.358204375,28.1002809882813],[110.434188261719,28.0859523750001],[110.497345,28.093843],[110.482445097656,28.0587429023438],[110.462681914063,28.0203810859376],[110.462240019531,27.9987477851562],[110.472650175781,27.9887477851563],[110.472242460938,27.9688430000001],[110.472449980469,27.9587477851562],[110.462244902344,27.9489430976563],[110.439869414063,27.9148146796876],[110.405621367188,27.9324587226563],[110.382603789063,27.9084987617188],[110.337987089844,27.9387429023438],[110.311761503906,27.92241721875],[110.312447539063,27.8888430000001],[110.312242460938,27.878843],[110.312449980469,27.86874534375],[110.262445097656,27.8444850898438],[110.306917753906,27.8184255195313],[110.372225371094,27.8197585273438],[110.372447539063,27.8088430000001],[110.372042265625,27.7889504218751],[110.3914465625,27.7885549140625],[110.412445097656,27.7987429023438],[110.456702910156,27.8287429023438],[110.502449980469,27.7789382148438],[110.5020325,27.7585646796875],[110.52533328125,27.7133351875001],[110.472244902344,27.6289430976563],[110.457345,27.603843],[110.443704863281,27.5868093085938],[110.422345,27.5894655585938],[110.402345,27.586977765625],[110.372345,27.590708234375],[110.338951445313,27.5865554023438],[110.344039335938,27.62745628125],[110.329625273438,27.6519753242188],[110.334874296875,27.69417503125],[110.292345,27.6994655585938],[110.239227324219,27.6928591132813],[110.188128691406,27.7301833320313],[110.172342558594,27.7282204414063],[110.082899199219,27.7393971992188],[110.057345,27.743843],[110.002381621094,27.7384377265625],[109.977345,27.7404494453126],[109.942669707031,27.7376638007813],[109.923543730469,27.7598635078126],[109.917345,27.793843],[109.911178007813,27.818950421875],[109.920203886719,27.8479274726563],[109.932432890625,27.8152468085938],[110.041824980469,27.8423317695313],[110.052074003906,27.8822658515625],[110.091400175781,27.8734499335937],[110.073660917969,27.9525783515626],[110.057345,27.9638430000001],[110.062154570313,27.9690334296875],[110.093194609375,27.9788600898438],[110.112154570313,28.0190334296875],[110.122550078125,28.0286647773438],[110.122139921875,28.0390065742188],[110.132672148438,28.0589089179688],[110.102611113281,28.0867604804688],[110.166295195313,28.1019289375],[110.1519934375,28.1289577460938],[110.172940703125,28.138843],[110.171749296875,28.168843],[110.192940703125,28.178843],[110.192139921875,28.1990309882813],[110.237345,28.203843],[110.252066679688,28.2100270820313],[110.262345,28.2077223945313],[110.281141386719,28.2119362617188],[110.313260527344,28.1897585273438],[110.317345,28.183843]]]]}},{"type":"Feature","properties":{"name":"鹤城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.923543730469,27.7598635078126],[109.942669707031,27.7376638007813],[109.977345,27.7404494453126],[110.002381621094,27.7384377265625],[110.057345,27.743843],[110.05181765625,27.7190138984376],[110.0532434375,27.7050221992188],[110.015455351563,27.6595290351563],[109.982806425781,27.6453688789063],[110.0042590625,27.6375099921875],[110.037767363281,27.6409255195312],[110.054178496094,27.6030861640625],[110.084774199219,27.577671125],[110.081834746094,27.5488430000001],[110.085714140625,27.5107936835938],[110.071883574219,27.4993044257813],[110.047569609375,27.4700368476563],[109.941646757813,27.4581569648438],[109.877345,27.443843],[109.863260527344,27.4697585273438],[109.851073027344,27.4781716132813],[109.853465605469,27.488843],[109.849078398438,27.5084157539063],[109.883260527344,27.5279274726563],[109.891429472656,27.5397585273438],[109.913638945313,27.5480690742188],[109.909281035156,27.5675051093751],[109.878983183594,27.5788430000001],[109.883565703125,27.5992897773438],[109.863951445313,27.62940940625],[109.847069121094,27.6379274726563],[109.827843046875,27.6100783515626],[109.805867949219,27.5997585273437],[109.787345,27.633843],[109.803619414063,27.6468752265626],[109.784893828125,27.7124440742188],[109.821951933594,27.7395143867188],[109.847906523438,27.73628440625],[109.871241484375,27.7549709296875],[109.872967558594,27.7688430000001],[109.870584746094,27.787993390625],[109.917345,27.793843],[109.923543730469,27.7598635078126]]]]}},{"type":"Feature","properties":{"name":"洪江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.857345,27.143843],[109.869537382813,27.1472658515626],[109.860767851563,27.1560353828125],[109.840592070313,27.1386696601563],[109.822625761719,27.1185622382813],[109.798480253906,27.09698753125],[109.762144804688,27.0991530585938],[109.732545195313,27.0885329414062],[109.712345,27.0897365546876],[109.692345,27.0885451484375],[109.679058867188,27.0893361640625],[109.635692167969,27.0408010078125],[109.552625761719,27.0528224921875],[109.598844023438,27.0941164375001],[109.552064238281,27.1085622382813],[109.547345,27.113843],[109.540706816406,27.12964378125],[109.593260527344,27.1379274726563],[109.629935332031,27.1618093085938],[109.661627226563,27.2201247382813],[109.683865996094,27.2151393867188],[109.711429472656,27.2233205390626],[109.701073027344,27.2695143867188],[109.733548613281,27.2919362617188],[109.757345,27.2866017890625],[109.772345,27.2899636054688],[109.783160429688,27.2875392890625],[109.787345,27.303843],[109.829329863281,27.3128127265626],[109.85812625,27.2805837226563],[109.892569609375,27.2785305000001],[109.91228640625,27.2892458320312],[109.968365507813,27.2691237617188],[110.001593046875,27.2911135078126],[109.981749296875,27.308843],[109.992625761719,27.3185622382813],[110.002064238281,27.3291237617188],[110.042867460938,27.3550759101563],[110.039635039063,27.4093019843751],[110.058612089844,27.4081716132813],[110.112779570313,27.456567609375],[110.111507597656,27.4778981757813],[110.132615996094,27.4791579414062],[110.142064238281,27.4485622382813],[110.163284941406,27.4296022773438],[110.161170683594,27.3941237617188],[110.192625761719,27.4085622382813],[110.230679960938,27.4292409492188],[110.250323515625,27.4280690742187],[110.302467070313,27.4392116523438],[110.340679960938,27.4184450507813],[110.352345,27.4191408515625],[110.38259890625,27.4173366523438],[110.403409453125,27.440630109375],[110.427345,27.413843],[110.422899199219,27.3982888007813],[110.409554472656,27.3635720039063],[110.421890898438,27.3481642890625],[110.503294707031,27.3582888007813],[110.523104277344,27.3399440742187],[110.517345,27.293843],[110.503189726563,27.2779982734375],[110.461024199219,27.2586476875001],[110.434364042969,27.2005593085938],[110.356566191406,27.2284743476562],[110.340186796875,27.1580763984375],[110.27060671875,27.1622243476563],[110.231898222656,27.144458234375],[110.191898222656,27.11901878125],[110.205025664063,27.0824391914063],[110.184312773438,27.0592580390625],[110.172345,27.0585451484375],[110.15420046875,27.0596266914063],[110.147345,26.993843],[110.127345,26.993843],[110.114432402344,27.008296125],[110.091451445313,27.0188430000001],[110.0926575,27.0390969062501],[110.071500273438,27.0579982734376],[110.036009550781,27.0977223945313],[110.022625761719,27.0685622382813],[110.010496855469,27.0591237617188],[109.991585722656,27.0802883125],[109.958577910156,27.0783205390626],[109.924198027344,27.1323732734376],[109.865721464844,27.1167116523438],[109.857345,27.143843]]]]}},{"type":"Feature","properties":{"name":"会同县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.473922148438,26.8460353828126],[109.477345,26.833843],[109.465152617188,26.8372658515626],[109.473922148438,26.8460353828126]]],[[[109.487345,27.0838430000001],[109.483389921875,27.0566725898438],[109.447672148438,27.068843],[109.473531523438,27.0776564765625],[109.477345,27.0838430000001],[109.487345,27.0838430000001]]],[[[109.487345,27.0838430000001],[109.502345,27.1072731757813],[109.526246367188,27.0699391914063],[109.533804960938,27.0886452460937],[109.528040800781,27.1091628242188],[109.547345,27.113843],[109.552064238281,27.1085622382813],[109.598844023438,27.0941164375001],[109.552625761719,27.0528224921875],[109.635692167969,27.0408010078125],[109.679058867188,27.0893361640625],[109.692345,27.0885451484375],[109.712345,27.0897365546876],[109.732545195313,27.0885329414062],[109.762144804688,27.0991530585938],[109.798480253906,27.09698753125],[109.822625761719,27.1185622382813],[109.840592070313,27.1386696601563],[109.857345,27.143843],[109.865721464844,27.1167116523438],[109.924198027344,27.1323732734376],[109.958577910156,27.0783205390626],[109.991585722656,27.0802883125],[110.010496855469,27.0591237617188],[110.022625761719,27.0685622382813],[110.036009550781,27.0977223945313],[110.071500273438,27.0579982734376],[110.0926575,27.0390969062501],[110.091451445313,27.0188430000001],[110.114432402344,27.008296125],[110.127345,26.993843],[110.122806425781,26.9883815742188],[110.111883574219,26.9793044257813],[110.102806425781,26.9583815742188],[110.076986113281,26.9369313789063],[110.101883574219,26.8934596992188],[110.082552519531,26.8883132148438],[110.064891386719,26.8901125312501],[110.04541140625,26.873930890625],[110.041805449219,26.8385597968751],[110.062884550781,26.789126203125],[110.061834746094,26.7788430000001],[110.062886992188,26.7685207343751],[110.043761015625,26.7351271796876],[110.071449003906,26.7121291328125],[110.041883574219,26.6993044257813],[110.009039335938,26.6597658515625],[109.984703398438,26.6890627265626],[109.947345,26.693843],[109.936058378906,26.7025563789063],[109.922857695313,26.7196584296875],[109.903922148438,26.716860578125],[109.882345,26.7298757148438],[109.862735625,26.7180471015626],[109.844769316406,26.7207009101562],[109.83298953125,26.74948753125],[109.82170046875,26.7581984687501],[109.81298953125,26.77948753125],[109.778426542969,26.78819846875],[109.761832304688,26.7667018867188],[109.742345,26.7695827460938],[109.731832304688,26.7680275703125],[109.717738066406,26.7862892890625],[109.654769316406,26.7769850898438],[109.640030546875,26.7409694648438],[109.654488554688,26.7169997382813],[109.582281523438,26.687446515625],[109.568631621094,26.7051296210938],[109.52009890625,26.7186452460938],[109.524486113281,26.7483303046875],[109.517345,26.753843],[109.51298953125,26.78948753125],[109.496634550781,26.8165993476562],[109.51312625,26.85855003125],[109.511605253906,26.868843],[109.513167753906,26.8794142890626],[109.49170046875,26.88819846875],[109.476629667969,26.9077272773438],[109.45298953125,26.8681984687501],[109.437266875,26.85948753125],[109.443558378906,26.9020607734375],[109.48298953125,26.91819846875],[109.503922148438,26.930825421875],[109.533436308594,26.9264650703125],[109.531522246094,26.9394142890625],[109.554561796875,26.948843],[109.549854765625,26.9806911445312],[109.529967070313,26.9777516914063],[109.535811796875,27.0173073554688],[109.52170046875,27.0281984687501],[109.511370878906,27.065298078125],[109.487345,27.0838430000001]],[[109.577345,26.753843],[109.544224882813,26.7453444648438],[109.533260527344,26.723442609375],[109.5717590625,26.7320729804688],[109.590042753906,26.7592775703126],[109.581397734375,26.776841046875],[109.577345,26.753843]]],[[[109.857345,27.143843],[109.860767851563,27.1560353828125],[109.869537382813,27.1472658515626],[109.857345,27.143843]]]]}},{"type":"Feature","properties":{"name":"靖州苗族侗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.667345,26.383843],[109.663922148438,26.3716506171875],[109.655152617188,26.3804201484376],[109.667345,26.383843]]],[[[109.667345,26.383843],[109.655482207031,26.3986574531251],[109.613033476563,26.4107936835938],[109.589359160156,26.4078493476563],[109.592967558594,26.378843],[109.590965605469,26.362759015625],[109.554146757813,26.3332741523438],[109.523040800781,26.2820607734376],[109.457345,26.273843],[109.467191191406,26.3180739570313],[109.432806425781,26.2983815742188],[109.386419707031,26.2847682929688],[109.342200957031,26.2681520820313],[109.298040800781,26.2999343085938],[109.281922636719,26.2982912421875],[109.265360136719,26.3364772773438],[109.292806425781,26.3483815742188],[109.303294707031,26.3956789375001],[109.327345,26.433843],[109.377027617188,26.4671584296875],[109.360504179688,26.4785646796875],[109.383577910156,26.5083376289063],[109.378983183594,26.528843],[109.403924589844,26.5381764960938],[109.391429472656,26.5679274726563],[109.377059355469,26.6239260078125],[109.353431425781,26.6602077460938],[109.327345,26.654360578125],[109.298377714844,26.6608522773438],[109.287345,26.7038430000001],[109.306451445313,26.7125832343751],[109.342742949219,26.700122296875],[109.385284453125,26.7152858710938],[109.378392363281,26.7353517890625],[109.416297636719,26.7223342109375],[109.408472929688,26.7451174140625],[109.466331816406,26.7726247382813],[109.482345,26.7671266914063],[109.493189726563,26.7708498359375],[109.501065703125,26.757563703125],[109.517345,26.753843],[109.524486113281,26.7483303046875],[109.52009890625,26.7186452460938],[109.568631621094,26.7051296210938],[109.582281523438,26.687446515625],[109.654488554688,26.7169997382813],[109.640030546875,26.7409694648438],[109.654769316406,26.7769850898438],[109.717738066406,26.7862892890625],[109.731832304688,26.7680275703125],[109.742345,26.7695827460938],[109.761832304688,26.7667018867188],[109.778426542969,26.78819846875],[109.81298953125,26.77948753125],[109.82170046875,26.7581984687501],[109.83298953125,26.74948753125],[109.844769316406,26.7207009101562],[109.862735625,26.7180471015626],[109.882345,26.7298757148438],[109.903922148438,26.716860578125],[109.922857695313,26.7196584296875],[109.936058378906,26.7025563789063],[109.947345,26.693843],[109.936851835938,26.6802468085938],[109.922345,26.6781032539063],[109.902345,26.681059796875],[109.892916289063,26.6580202460938],[109.876053496094,26.660512921875],[109.819364042969,26.6177223945313],[109.84298953125,26.59948753125],[109.85170046875,26.58819846875],[109.864486113281,26.5783303046875],[109.860203886719,26.5493556953125],[109.885865507813,26.529546125],[109.86170046875,26.48948753125],[109.857345,26.4738430000001],[109.841158476563,26.4700295234375],[109.833531523438,26.4576564765626],[109.802740507813,26.4471633125],[109.791539335938,26.4506520820312],[109.778668242188,26.42976096875],[109.754928007813,26.4200295234376],[109.767017851563,26.458843],[109.72556765625,26.4729689765625],[109.713531523438,26.4376564765625],[109.701158476563,26.4300295234376],[109.693531523438,26.4176564765626],[109.67048953125,26.4098024726563],[109.676766386719,26.3896486640625],[109.667345,26.383843]]]]}},{"type":"Feature","properties":{"name":"麻阳苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.777345,28.023843],[109.783382597656,27.9755715156251],[109.832691679688,27.9896535468751],[109.843299589844,27.9764089179688],[109.891202421875,27.9414162421875],[109.925477324219,27.9615627265625],[109.952345,27.9582204414062],[109.962799101563,27.9595217109376],[109.971890898438,27.9481642890625],[109.984610625,27.9497463203125],[110.016922636719,27.9093971992188],[110.041390410156,27.9230178046875],[110.051790800781,27.9593971992188],[110.057345,27.9638430000001],[110.073660917969,27.9525783515626],[110.091400175781,27.8734499335937],[110.052074003906,27.8822658515625],[110.041824980469,27.8423317695313],[109.932432890625,27.8152468085938],[109.920203886719,27.8479274726563],[109.911178007813,27.818950421875],[109.917345,27.793843],[109.870584746094,27.787993390625],[109.872967558594,27.7688430000001],[109.871241484375,27.7549709296875],[109.847906523438,27.73628440625],[109.821951933594,27.7395143867188],[109.784893828125,27.7124440742188],[109.803619414063,27.6468752265626],[109.787345,27.633843],[109.70170046875,27.62948753125],[109.671671171875,27.6113722968751],[109.60170046875,27.59948753125],[109.58298953125,27.58819846875],[109.558734160156,27.5782717109375],[109.563162871094,27.5483156562501],[109.535264921875,27.5294875312501],[109.47298953125,27.5694875312501],[109.457345,27.573843],[109.443761015625,27.5851271796875],[109.471663847656,27.633843],[109.451803007813,27.668520734375],[109.453992949219,27.6900148750001],[109.426419707031,27.7129177070313],[109.417345,27.723843],[109.421790800781,27.7393971992188],[109.437366972656,27.7518679023438],[109.454039335938,27.78022971875],[109.451319609375,27.8020803046875],[109.482628203125,27.7981862617188],[109.520284453125,27.8126613593751],[109.538546171875,27.7898537421876],[109.57373171875,27.8105373359375],[109.599251738281,27.8073610664063],[109.612899199219,27.8182888007813],[109.621790800781,27.8293971992188],[109.641790800781,27.8454128242188],[109.632899199219,27.8693971992188],[109.615479765625,27.8990261054688],[109.632799101563,27.9206520820313],[109.654610625,27.9179396796876],[109.671790800781,27.9393971992188],[109.702899199219,27.9482888007813],[109.711790800781,27.9793971992188],[109.722899199219,27.9882888007813],[109.731820097656,28.0295314765625],[109.777345,28.023843]]],[[[109.777345,28.023843],[109.777345,28.033843],[109.787345,28.033843],[109.787345,28.023843],[109.777345,28.023843]]]]}},{"type":"Feature","properties":{"name":"通道侗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.667345,26.383843],[109.655152617188,26.3804201484376],[109.663922148438,26.3716506171875],[109.676766386719,26.3896486640625],[109.67048953125,26.4098024726563],[109.693531523438,26.4176564765626],[109.701158476563,26.4300295234376],[109.713531523438,26.4376564765625],[109.72556765625,26.4729689765625],[109.767017851563,26.458843],[109.754928007813,26.4200295234376],[109.778668242188,26.42976096875],[109.791539335938,26.4506520820312],[109.802740507813,26.4471633125],[109.833531523438,26.4576564765626],[109.841158476563,26.4700295234375],[109.857345,26.4738430000001],[109.861673613281,26.4675710273438],[109.877345,26.4710842109375],[109.892791777344,26.467622296875],[109.923973417969,26.4879274726563],[109.933602324219,26.4794557929688],[109.930943632813,26.4675954414063],[109.951429472656,26.4379274726563],[109.983648710938,26.4296584296875],[109.974845,26.3903908515626],[110.003260527344,26.3797585273437],[110.011429472656,26.3179274726563],[110.017345,26.313843],[110.017345,26.303843],[109.990704375,26.3004836250001],[109.979288359375,26.2779177070313],[109.987345,26.273843],[109.983985625,26.2372023750001],[109.967345,26.203843],[109.91812625,26.1644289375],[109.892921171875,26.1046096015625],[109.882899199219,26.0582888007813],[109.868460722656,26.0337282539063],[109.800252714844,26.042212140625],[109.782899199219,25.9954128242187],[109.802899199219,25.9793971992188],[109.811790800781,25.9482888007813],[109.825479765625,25.912680890625],[109.806243925781,25.8799587226563],[109.757345,25.8738430000001],[109.752147246094,25.8925075507812],[109.679073515625,25.8817092109375],[109.683084746094,25.9088430000001],[109.680128203125,25.928843],[109.684835234375,25.9606911445313],[109.702857695313,25.9580275703125],[109.724808378906,25.986469953125],[109.710169707031,26.01073753125],[109.692345,26.0081032539063],[109.652889433594,26.0139357734375],[109.64298953125,26.0494875312501],[109.633453398438,26.05819846875],[109.578204375,26.0172389960938],[109.552857695313,26.0209841132813],[109.531551542969,25.9933815742188],[109.477345,26.033843],[109.471234160156,26.0382228828126],[109.473472929688,26.0495510078126],[109.443170195313,26.0612380195313],[109.451519804688,26.0996681953125],[109.511519804688,26.1116970039063],[109.494032011719,26.1493361640625],[109.467113066406,26.1597170234375],[109.461356230469,26.188843],[109.465186796875,26.2082228828125],[109.446776152344,26.2214186835937],[109.440328398438,26.2540529609375],[109.451519804688,26.2696681953125],[109.457345,26.273843],[109.523040800781,26.2820607734376],[109.554146757813,26.3332741523438],[109.590965605469,26.362759015625],[109.592967558594,26.378843],[109.589359160156,26.4078493476563],[109.613033476563,26.4107936835938],[109.655482207031,26.3986574531251],[109.667345,26.383843]]]]}},{"type":"Feature","properties":{"name":"新晃侗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.397345,27.1638430000001],[109.407345,27.1638430000001],[109.407345,27.153843],[109.397345,27.153843],[109.397345,27.1638430000001]]],[[[109.117345,27.423843],[109.113922148438,27.4116506171876],[109.105152617188,27.4204201484375],[109.117345,27.423843]]],[[[109.117345,27.423843],[109.117345,27.4338430000001],[109.127345,27.4338430000001],[109.127345,27.423843],[109.117345,27.423843]]],[[[109.157345,27.423843],[109.145152617188,27.4204201484375],[109.153922148438,27.4116506171876],[109.207293730469,27.4522389960938],[109.250250273438,27.4282741523438],[109.2624621875,27.42925315625],[109.297345,27.423843],[109.328631621094,27.4151296210938],[109.342840605469,27.3641042304688],[109.437347441406,27.3254250312501],[109.421549101563,27.299233625],[109.423084746094,27.288843],[109.421522246094,27.2782717109375],[109.443721953125,27.2691872382813],[109.416378203125,27.2323073554688],[109.433160429688,27.2193556953125],[109.430867949219,27.2038430000001],[109.433990507813,27.1827028632813],[109.40170046875,27.16948753125],[109.397345,27.1638430000001],[109.39197390625,27.15921409375],[109.382669707031,27.1484157539063],[109.341219511719,27.1517458320313],[109.25974734375,27.12944846875],[109.240267363281,27.152055890625],[109.178768339844,27.0806716132813],[109.095235625,27.0692140937501],[109.123057890625,27.1190846992188],[109.098563261719,27.12847190625],[109.06271609375,27.1084719062501],[109.020252714844,27.09882346875],[109.00271609375,27.07847190625],[108.98197390625,27.0692140937501],[108.96271609375,27.05847190625],[108.941824980469,27.0491481757812],[108.947345,27.023843],[108.924481230469,27.0152516914063],[108.9124621875,27.02972190625],[108.870916777344,26.9998220039063],[108.872894316406,27.019233625],[108.853031035156,27.0357326484376],[108.842213164063,27.0606764960938],[108.797345,27.073843],[108.789832792969,27.0889553046876],[108.800228300781,27.1072023750001],[108.829215117188,27.0930446601563],[108.861883574219,27.1215114570312],[108.88279421875,27.1112990546876],[108.887345,27.133843],[108.899176054688,27.1420119453125],[108.911429472656,27.1597585273438],[108.923729277344,27.1682497382813],[108.908143339844,27.2185280585938],[108.933260527344,27.2279274726563],[108.96830203125,27.250747296875],[108.981673613281,27.2701149726563],[108.992791777344,27.267622296875],[109.011429472656,27.2797585273438],[109.041483183594,27.2910036445312],[109.051529570313,27.3301467109376],[109.062623320313,27.3276589179688],[109.097401152344,27.3422658515626],[109.115513945313,27.3906740546875],[109.13857546875,27.42608909375],[109.127345,27.4338430000001],[109.13406375,27.44712425],[109.147345,27.453843],[109.150704375,27.437202375],[109.157345,27.423843]]]]}},{"type":"Feature","properties":{"name":"中方县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.082899199219,27.7393971992188],[110.172342558594,27.7282204414063],[110.188128691406,27.7301833320313],[110.239227324219,27.6928591132813],[110.292345,27.6994655585938],[110.334874296875,27.69417503125],[110.329625273438,27.6519753242188],[110.344039335938,27.62745628125],[110.338951445313,27.5865554023438],[110.372345,27.590708234375],[110.402345,27.586977765625],[110.422345,27.5894655585938],[110.443704863281,27.5868093085938],[110.457345,27.603843],[110.462899199219,27.5993971992188],[110.471790800781,27.5882888007813],[110.491790800781,27.5722731757813],[110.482899199219,27.5482888007813],[110.450037871094,27.492387921875],[110.45869265625,27.4228054023438],[110.427345,27.413843],[110.403409453125,27.440630109375],[110.38259890625,27.4173366523438],[110.352345,27.4191408515625],[110.340679960938,27.4184450507813],[110.302467070313,27.4392116523438],[110.250323515625,27.4280690742187],[110.230679960938,27.4292409492188],[110.192625761719,27.4085622382813],[110.161170683594,27.3941237617188],[110.163284941406,27.4296022773438],[110.142064238281,27.4485622382813],[110.132615996094,27.4791579414062],[110.111507597656,27.4778981757813],[110.112779570313,27.456567609375],[110.058612089844,27.4081716132813],[110.039635039063,27.4093019843751],[110.042867460938,27.3550759101563],[110.002064238281,27.3291237617188],[109.992625761719,27.3185622382813],[109.981749296875,27.308843],[110.001593046875,27.2911135078126],[109.968365507813,27.2691237617188],[109.91228640625,27.2892458320312],[109.892569609375,27.2785305000001],[109.85812625,27.2805837226563],[109.829329863281,27.3128127265626],[109.787345,27.303843],[109.757916289063,27.3113942695313],[109.77466921875,27.3512819648438],[109.822615996094,27.3843874335938],[109.857345,27.3766017890626],[109.879576445313,27.3815846992188],[109.869700957031,27.4256423164063],[109.877345,27.443843],[109.941646757813,27.4581569648438],[110.047569609375,27.4700368476563],[110.071883574219,27.4993044257813],[110.085714140625,27.5107936835938],[110.081834746094,27.5488430000001],[110.084774199219,27.577671125],[110.054178496094,27.6030861640625],[110.037767363281,27.6409255195312],[110.0042590625,27.6375099921875],[109.982806425781,27.6453688789063],[110.015455351563,27.6595290351563],[110.0532434375,27.7050221992188],[110.05181765625,27.7190138984376],[110.057345,27.743843],[110.082899199219,27.7393971992188]]]]}},{"type":"Feature","properties":{"name":"芷江侗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.863951445313,27.62940940625],[109.883565703125,27.5992897773438],[109.878983183594,27.5788430000001],[109.909281035156,27.5675051093751],[109.913638945313,27.5480690742188],[109.891429472656,27.5397585273438],[109.883260527344,27.5279274726563],[109.849078398438,27.5084157539063],[109.853465605469,27.488843],[109.851073027344,27.4781716132813],[109.863260527344,27.4697585273438],[109.877345,27.443843],[109.869700957031,27.4256423164063],[109.879576445313,27.3815846992188],[109.857345,27.3766017890626],[109.822615996094,27.3843874335938],[109.77466921875,27.3512819648438],[109.757916289063,27.3113942695313],[109.787345,27.303843],[109.783160429688,27.2875392890625],[109.772345,27.2899636054688],[109.757345,27.2866017890625],[109.733548613281,27.2919362617188],[109.701073027344,27.2695143867188],[109.711429472656,27.2233205390626],[109.683865996094,27.2151393867188],[109.661627226563,27.2201247382813],[109.629935332031,27.1618093085938],[109.593260527344,27.1379274726563],[109.540706816406,27.12964378125],[109.547345,27.113843],[109.528040800781,27.1091628242188],[109.533804960938,27.0886452460937],[109.526246367188,27.0699391914063],[109.502345,27.1072731757813],[109.487345,27.0838430000001],[109.477345,27.0838430000001],[109.456119414063,27.0891384101563],[109.468074980469,27.1365846992188],[109.428758574219,27.1266799140625],[109.413350859375,27.149848859375],[109.407345,27.153843],[109.407345,27.1638430000001],[109.397345,27.1638430000001],[109.40170046875,27.16948753125],[109.433990507813,27.1827028632813],[109.430867949219,27.2038430000001],[109.433160429688,27.2193556953125],[109.416378203125,27.2323073554688],[109.443721953125,27.2691872382813],[109.421522246094,27.2782717109375],[109.423084746094,27.288843],[109.421549101563,27.299233625],[109.437347441406,27.3254250312501],[109.342840605469,27.3641042304688],[109.328631621094,27.4151296210938],[109.297345,27.423843],[109.304647246094,27.4535720039063],[109.299078398438,27.4784157539063],[109.333260527344,27.4979274726563],[109.341429472656,27.5097585273438],[109.377345,27.533843],[109.383531523438,27.5376564765625],[109.391158476563,27.5500295234375],[109.409449492188,27.5613014960938],[109.422345,27.5572853828125],[109.453033476563,27.5668434882813],[109.457345,27.573843],[109.47298953125,27.5694875312501],[109.535264921875,27.5294875312501],[109.563162871094,27.5483156562501],[109.558734160156,27.5782717109375],[109.58298953125,27.58819846875],[109.60170046875,27.59948753125],[109.671671171875,27.6113722968751],[109.70170046875,27.62948753125],[109.787345,27.633843],[109.805867949219,27.5997585273437],[109.827843046875,27.6100783515626],[109.847069121094,27.6379274726563],[109.863951445313,27.62940940625]]]]}},{"type":"Feature","properties":{"name":"沅陵县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.317345,28.183843],[110.313292265625,28.160844953125],[110.304647246094,28.1784084296876],[110.317345,28.183843]]],[[[110.317345,28.183843],[110.313260527344,28.1897585273438],[110.281141386719,28.2119362617188],[110.262345,28.2077223945313],[110.252066679688,28.2100270820313],[110.237345,28.203843],[110.232039824219,28.2336110664063],[110.171058378906,28.2712258125],[110.173873320313,28.298843],[110.171834746094,28.318843],[110.173553496094,28.3356935859376],[110.211449003906,28.3521291328125],[110.181861601563,28.376704328125],[110.115689726563,28.4054030585938],[110.102806425781,28.4493044257813],[110.097345,28.4638430000001],[110.132244902344,28.4583229804688],[110.153704863281,28.4605104804688],[110.147095976563,28.5253298164063],[110.162894316406,28.5384523750001],[110.160816679688,28.558843],[110.16455203125,28.5954885078125],[110.226832304688,28.5598171210938],[110.221834746094,28.6088430000001],[110.222894316406,28.619233625],[110.210855742188,28.629233625],[110.213004179688,28.6503054023438],[110.232735625,28.6482936835938],[110.246419707031,28.6647682929688],[110.262806425781,28.6783815742188],[110.267345,28.713843],[110.27170046875,28.7194875312501],[110.279173613281,28.7700514960937],[110.307345,28.7658864570313],[110.335853300781,28.7701003242188],[110.330311308594,28.8076100898438],[110.360897246094,28.8488649726563],[110.382178984375,28.8652931953126],[110.387345,28.8838430000001],[110.402962675781,28.9064650703125],[110.431898222656,28.8876222968751],[110.442345,28.8899636054688],[110.452850371094,28.8876100898438],[110.487345,28.9143434882813],[110.529598417969,28.8815944648438],[110.535233183594,28.9067287421875],[110.515616484375,28.9368556953125],[110.531429472656,28.9597585273438],[110.543616972656,28.9681716132813],[110.534703398438,29.0079274726563],[110.563260527344,28.9997585273438],[110.591429472656,28.9779274726563],[110.627022734375,28.968794171875],[110.645513945313,28.9420119453126],[110.663616972656,28.9295143867188],[110.659842558594,28.9126784492188],[110.692345,28.9199636054687],[110.711673613281,28.915630109375],[110.72509890625,28.93507346875],[110.763973417969,28.9097585273438],[110.78935671875,28.9205080390625],[110.794586210938,28.943843],[110.790369902344,28.9626491523438],[110.847738066406,28.9497878242188],[110.840186796875,28.9834743476563],[110.85435671875,29.0039968085938],[110.886976347656,28.996684796875],[110.903616972656,29.0081716132813],[110.899132109375,29.0281716132813],[110.907345,29.0338430000001],[110.91197390625,29.02847190625],[110.94271609375,29.0092140937501],[110.95197390625,28.99847190625],[110.973116484375,28.9890358710938],[110.94271609375,28.9461598945313],[110.96197390625,28.90847190625],[110.98271609375,28.8992140937501],[111.013856230469,28.8494997382813],[111.03197390625,28.8284719062501],[111.069115019531,28.8172878242188],[111.08197390625,28.7884719062501],[111.100870390625,28.7721901679688],[111.103284941406,28.7421535468751],[111.084205351563,28.6993947578125],[111.072345,28.6984401679688],[111.054359160156,28.6998854804687],[111.041693144531,28.6889723945312],[111.056409941406,28.662593],[110.996600371094,28.6445876289063],[110.98271609375,28.6284719062501],[110.928533964844,28.6185866523438],[110.947320585938,28.576489484375],[110.983902617188,28.5899221015625],[111.002584257813,28.5884230781251],[111.051341582031,28.6063283515625],[111.053148222656,28.583843],[111.051920195313,28.5685475898437],[111.074530058594,28.5366579414063],[111.000711699219,28.5425905585938],[110.96197390625,28.50921409375],[110.944967070313,28.4894753242188],[110.9084778125,28.4731935859375],[110.857345,28.413843],[110.85298953125,28.40819846875],[110.83170046875,28.39948753125],[110.821954375,28.3756716132812],[110.79298953125,28.3581984687501],[110.743743925781,28.3380446601562],[110.717345,28.3038430000001],[110.6580090625,28.2977907539063],[110.663084746094,28.2346340156251],[110.603460722656,28.1832643867188],[110.5584778125,28.1631935859375],[110.50271609375,28.0984719062501],[110.497345,28.093843],[110.434188261719,28.0859523750001],[110.358204375,28.1002809882813],[110.337586699219,28.1260280585938],[110.354154082031,28.1392971015625],[110.3509778125,28.1648268867188],[110.317345,28.183843]]]]}},{"type":"Feature","properties":{"name":"溆浦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.741046171875,28.27917503125],[110.767345,28.2786379218751],[110.792237578125,28.279145734375],[110.792650175781,28.258843],[110.791883574219,28.2212697578126],[110.860013457031,28.2046608710938],[110.8192590625,28.1445388007813],[110.832449980469,28.1189357734375],[110.831900664063,28.0920998359375],[110.891866484375,28.072641828125],[110.852445097656,28.0144850898438],[110.907725859375,28.003833234375],[110.922244902344,28.0189430976563],[110.932445097656,28.0287429023438],[110.960279570313,28.0711965156251],[110.972244902344,28.0587429023438],[111.002445097656,28.0489430976563],[111.007345,28.033843],[110.971790800781,28.0293971992188],[110.957586699219,28.0116579414062],[110.988133574219,27.9871950507813],[110.968597441406,27.9539626289063],[110.973026152344,27.9183669257813],[110.937913847656,27.8970412421875],[110.922899199219,27.8782888007813],[110.883294707031,27.8493971992188],[110.792345,27.860708234375],[110.782899199219,27.8382888007813],[110.764490996094,27.8069753242188],[110.816051054688,27.7456471992188],[110.839417753906,27.6901906562501],[110.862159453125,27.6719802070313],[110.867345,27.653843],[110.851226835938,27.6414015937501],[110.853160429688,27.6283303046875],[110.841529570313,27.6193556953125],[110.845067167969,27.5954225898438],[110.795609160156,27.5658425117188],[110.764451933594,27.5846364570313],[110.75298953125,27.59948753125],[110.731522246094,27.6082717109376],[110.734722929688,27.6299343085938],[110.717838164063,27.6274391914063],[110.701832304688,27.6067018867188],[110.677738066406,27.6102638984375],[110.625462675781,27.5425368476563],[110.67298953125,27.50948753125],[110.688804960938,27.4526882148438],[110.662511015625,27.4323928046875],[110.65298953125,27.39819846875],[110.641170683594,27.3786086250001],[110.647345,27.373843],[110.642296171875,27.354165265625],[110.599871855469,27.3248757148438],[110.60744265625,27.2911061835938],[110.576326933594,27.2841310859376],[110.542418242188,27.3104128242188],[110.517345,27.293843],[110.523104277344,27.3399440742187],[110.503294707031,27.3582888007813],[110.421890898438,27.3481642890625],[110.409554472656,27.3635720039063],[110.422899199219,27.3982888007813],[110.427345,27.413843],[110.45869265625,27.4228054023438],[110.450037871094,27.492387921875],[110.482899199219,27.5482888007813],[110.491790800781,27.5722731757813],[110.471790800781,27.5882888007813],[110.462899199219,27.5993971992188],[110.457345,27.603843],[110.472244902344,27.6289430976563],[110.52533328125,27.7133351875001],[110.5020325,27.7585646796875],[110.502449980469,27.7789382148438],[110.456702910156,27.8287429023438],[110.412445097656,27.7987429023438],[110.3914465625,27.7885549140625],[110.372042265625,27.7889504218751],[110.372447539063,27.8088430000001],[110.372225371094,27.8197585273438],[110.306917753906,27.8184255195313],[110.262445097656,27.8444850898438],[110.312449980469,27.86874534375],[110.312242460938,27.878843],[110.312447539063,27.8888430000001],[110.311761503906,27.92241721875],[110.337987089844,27.9387429023438],[110.382603789063,27.9084987617188],[110.405621367188,27.9324587226563],[110.439869414063,27.9148146796876],[110.462244902344,27.9489430976563],[110.472449980469,27.9587477851562],[110.472242460938,27.9688430000001],[110.472650175781,27.9887477851563],[110.462240019531,27.9987477851562],[110.462681914063,28.0203810859376],[110.482445097656,28.0587429023438],[110.497345,28.093843],[110.50271609375,28.0984719062501],[110.5584778125,28.1631935859375],[110.603460722656,28.1832643867188],[110.663084746094,28.2346340156251],[110.6580090625,28.2977907539063],[110.717345,28.3038430000001],[110.741046171875,28.27917503125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"冷水江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.54271609375,27.61847190625],[111.496990996094,27.5980666328125],[111.481998320313,27.5992726875],[111.472611113281,27.57823753125],[111.435277128906,27.5919460273438],[111.373079863281,27.5405007148438],[111.357345,27.5222365546875],[111.34271609375,27.53921409375],[111.33197390625,27.54847190625],[111.327345,27.553843],[111.33298953125,27.5581984687501],[111.345264921875,27.5881911445313],[111.36170046875,27.6094875312501],[111.373792753906,27.6188210273438],[111.41170046875,27.6699513984375],[111.40298953125,27.67948753125],[111.380968046875,27.6884987617188],[111.404378691406,27.7200759101563],[111.401517363281,27.73944846875],[111.44298953125,27.7481984687501],[111.45170046875,27.76948753125],[111.47298953125,27.77819846875],[111.488663359375,27.81649925],[111.543863554688,27.83819846875],[111.565787382813,27.8282106757813],[111.57298953125,27.77948753125],[111.577345,27.7738430000001],[111.581158476563,27.7276564765625],[111.605155058594,27.7128688789063],[111.599229765625,27.6938430000001],[111.608873320313,27.6628835273438],[111.566300078125,27.64837425],[111.557345,27.633843],[111.55197390625,27.62921409375],[111.54271609375,27.61847190625]]]]}},{"type":"Feature","properties":{"name":"涟源市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.623922148438,27.5660353828126],[111.627345,27.553843],[111.615152617188,27.5572658515625],[111.623922148438,27.5660353828126]]],[[[111.897345,27.713843],[111.885152617188,27.7104201484376],[111.893922148438,27.7016506171875],[111.946256132813,27.7012917304688],[111.939456816406,27.6709572578125],[111.955233183594,27.6467287421875],[111.949757109375,27.6222951484375],[111.983260527344,27.6097585273438],[111.987345,27.603843],[111.995675078125,27.5826540351562],[111.980201445313,27.5569997382813],[112.03170046875,27.5359206367188],[112.01298953125,27.5181984687501],[111.947567167969,27.5070851875001],[111.92490359375,27.4777248359375],[111.906695585938,27.4804177070313],[111.87170046875,27.4594875312501],[111.867345,27.453843],[111.848895292969,27.4615920234375],[111.817345,27.453843],[111.803062773438,27.4801247382812],[111.791571074219,27.4775490546875],[111.783118925781,27.5001369453125],[111.756326933594,27.4941310859375],[111.722850371094,27.5200759101563],[111.711898222656,27.5176222968751],[111.692791777344,27.530063703125],[111.682345,27.5277223945312],[111.667345,27.5310842109376],[111.641925078125,27.52538596875],[111.631732207031,27.5775856757813],[111.591429472656,27.5879274726563],[111.583260527344,27.6097585273438],[111.571429472656,27.6179274726563],[111.563260527344,27.6297585273438],[111.557345,27.633843],[111.566300078125,27.64837425],[111.608873320313,27.6628835273438],[111.599229765625,27.6938430000001],[111.605155058594,27.7128688789063],[111.581158476563,27.7276564765625],[111.577345,27.7738430000001],[111.603079863281,27.7881081367188],[111.668443632813,27.8455861640625],[111.648128691406,27.8606984687501],[111.631741972656,27.8578786445313],[111.603079863281,27.9082399726563],[111.641082792969,27.9587453437501],[111.593902617188,27.993843],[111.623240996094,28.0156667304688],[111.656126738281,27.9953127265625],[111.677345,28.0038430000001],[111.682274199219,27.996704328125],[111.722791777344,27.987622296875],[111.768150664063,28.0171584296875],[111.782345,27.9966017890625],[111.795384550781,28.0154860664063],[111.865496855469,28.0372194648438],[111.897345,28.023843],[111.900987578125,27.976040265625],[111.94470828125,27.9968971992188],[111.957345,27.973843],[111.9346496875,27.9581716132813],[111.943529082031,27.9185646796875],[111.923504667969,27.8708913398438],[111.953638945313,27.8596169257813],[111.951073027344,27.8481716132813],[111.963616972656,27.8395143867188],[111.960103789063,27.823843],[111.964847441406,27.8026784492188],[111.918011503906,27.8131764960938],[111.923616972656,27.7881716132813],[111.900472441406,27.7721950507813],[111.903616972656,27.7581716132813],[111.89060671875,27.7491896796876],[111.903729277344,27.7290407539063],[111.897345,27.713843]]]]}},{"type":"Feature","properties":{"name":"娄星区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.897345,27.713843],[111.893922148438,27.7016506171875],[111.885152617188,27.7104201484376],[111.897345,27.713843]]],[[[112.077345,27.723843],[112.089537382813,27.7204201484376],[112.080767851563,27.7116506171875],[112.077345,27.723843]]],[[[112.077345,27.723843],[112.040008574219,27.7142604804688],[112.043465605469,27.6988430000001],[112.038538847656,27.6768679023438],[112.060189238281,27.6817214179688],[112.067345,27.653843],[112.06298953125,27.64819846875],[112.041522246094,27.6394142890626],[112.043160429688,27.6283303046875],[112.031529570313,27.6193556953125],[112.034407988281,27.5998854804688],[112.022310820313,27.5980983710938],[111.987345,27.603843],[111.983260527344,27.6097585273438],[111.949757109375,27.6222951484375],[111.955233183594,27.6467287421875],[111.939456816406,27.6709572578125],[111.946256132813,27.7012917304688],[111.897345,27.713843],[111.903729277344,27.7290407539063],[111.89060671875,27.7491896796876],[111.903616972656,27.7581716132813],[111.900472441406,27.7721950507813],[111.923616972656,27.7881716132813],[111.918011503906,27.8131764960938],[111.964847441406,27.8026784492188],[111.960103789063,27.823843],[111.963616972656,27.8395143867188],[111.951073027344,27.8481716132813],[111.953638945313,27.8596169257813],[111.923504667969,27.8708913398438],[111.943529082031,27.9185646796875],[111.9346496875,27.9581716132813],[111.957345,27.973843],[111.96170046875,27.96819846875],[111.981656523438,27.952798078125],[111.997345,27.913843],[112.012877226563,27.8590602851563],[112.010748320313,27.8381716132813],[112.032161894531,27.8403542304688],[112.051937285156,27.8082912421876],[112.092122832031,27.8123879218751],[112.101883574219,27.7683815742188],[112.131449003906,27.7555568671876],[112.111883574219,27.7393044257813],[112.102735625,27.7282936835938],[112.082735625,27.7303322578125],[112.077345,27.723843]]]]}},{"type":"Feature","properties":{"name":"双峰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.313607207031,27.6737013984376],[112.302843046875,27.64815940625],[112.28318484375,27.6506032539063],[112.2809778125,27.6328469062501],[112.331790800781,27.6114357734376],[112.322899199219,27.5682888007813],[112.292899199219,27.5172536445313],[112.303675566406,27.4942751289063],[112.367906523438,27.48628440625],[112.388450957031,27.5027370429688],[112.406239042969,27.5249489570313],[112.417345,27.533843],[112.43170046875,27.49819846875],[112.45298953125,27.48948753125],[112.464605742188,27.4611037421875],[112.49298953125,27.44948753125],[112.517345,27.4338430000001],[112.514166289063,27.4270217109376],[112.498875761719,27.4198976875],[112.505814238281,27.4077883125],[112.488875761719,27.3998976875001],[112.500523710938,27.3795778632813],[112.482608671875,27.3658254218751],[112.4633996875,27.3768386054688],[112.457345,27.363843],[112.432366972656,27.3481032539063],[112.412806425781,27.3593044257813],[112.365875273438,27.369712140625],[112.352345,27.3683327460938],[112.326346464844,27.3709841132813],[112.289639921875,27.3571901679688],[112.272806425781,27.3183815742187],[112.251883574219,27.3093044257813],[112.242806425781,27.2983815742188],[112.231883574219,27.2893044257813],[112.221329375,27.2649709296875],[112.169039335938,27.3279201484375],[112.15107546875,27.3062966132813],[112.153363066406,27.2838430000001],[112.151326933594,27.263843],[112.152896757813,27.2484206367188],[112.131883574219,27.2393044257813],[112.122806425781,27.2283815742188],[112.091883574219,27.2093044257813],[112.087345,27.2038430000001],[112.064549589844,27.2214382148438],[112.05298953125,27.28948753125],[112.02170046875,27.29819846875],[112.008631621094,27.3151296210938],[111.99170046875,27.3281984687501],[111.98298953125,27.3394875312501],[111.97170046875,27.34819846875],[111.96298953125,27.35948753125],[111.923748808594,27.3755471015625],[111.91298953125,27.38948753125],[111.901529570313,27.3983303046875],[111.903140898438,27.409233625],[111.886551542969,27.4367360664063],[111.87170046875,27.4481984687501],[111.867345,27.453843],[111.87170046875,27.4594875312501],[111.906695585938,27.4804177070313],[111.92490359375,27.4777248359375],[111.947567167969,27.5070851875001],[112.01298953125,27.5181984687501],[112.03170046875,27.5359206367188],[111.980201445313,27.5569997382813],[111.995675078125,27.5826540351562],[111.987345,27.603843],[112.022310820313,27.5980983710938],[112.034407988281,27.5998854804688],[112.031529570313,27.6193556953125],[112.043160429688,27.6283303046875],[112.041522246094,27.6394142890626],[112.06298953125,27.64819846875],[112.067345,27.653843],[112.082061796875,27.6481862617188],[112.097345,27.6500856757813],[112.114610625,27.6479396796875],[112.132144804688,27.66983909375],[112.151986113281,27.6581764960938],[112.162345,27.6594655585938],[112.198233671875,27.6550002265626],[112.242513457031,27.7102980781251],[112.310894804688,27.6955031562501],[112.313607207031,27.6737013984376]]]]}},{"type":"Feature","properties":{"name":"新化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.517345,28.053843],[111.494346953125,28.0578957343751],[111.511910429688,28.0665407539063],[111.517345,28.053843]]],[[[111.517345,28.053843],[111.53298953125,28.04948753125],[111.541773710938,28.0280202460938],[111.569127226563,28.0320607734376],[111.54298953125,27.99819846875],[111.52298953125,27.9827614570313],[111.577581816406,27.9926564765625],[111.593519316406,28.0190773750001],[111.574598417969,28.0336818671876],[111.634439726563,28.0248390937501],[111.678179960938,28.0420339179688],[111.683160429688,28.0083303046875],[111.677345,28.0038430000001],[111.656126738281,27.9953127265625],[111.623240996094,28.0156667304688],[111.593902617188,27.993843],[111.641082792969,27.9587453437501],[111.603079863281,27.9082399726563],[111.631741972656,27.8578786445313],[111.648128691406,27.8606984687501],[111.668443632813,27.8455861640625],[111.603079863281,27.7881081367188],[111.577345,27.7738430000001],[111.57298953125,27.77948753125],[111.565787382813,27.8282106757813],[111.543863554688,27.83819846875],[111.488663359375,27.81649925],[111.47298953125,27.77819846875],[111.45170046875,27.76948753125],[111.44298953125,27.7481984687501],[111.401517363281,27.73944846875],[111.404378691406,27.7200759101563],[111.380968046875,27.6884987617188],[111.40298953125,27.67948753125],[111.41170046875,27.6699513984375],[111.373792753906,27.6188210273438],[111.36170046875,27.6094875312501],[111.345264921875,27.5881911445313],[111.33298953125,27.5581984687501],[111.327345,27.553843],[111.310975371094,27.5574733710937],[111.292261992188,27.5712844062501],[111.258778105469,27.5433571601562],[111.225115996094,27.5302126289063],[111.213714628906,27.5502126289063],[111.197345,27.553843],[111.179207792969,27.5590285468751],[111.162799101563,27.5795217109376],[111.152183867188,27.5782009101563],[111.085804472656,27.5932790351563],[111.058912382813,27.6268630195313],[111.027486601563,27.6401052070313],[111.002345,27.6369777656251],[110.99134890625,27.663071515625],[110.937345,27.6563552070313],[110.912342558594,27.6594655585938],[110.867345,27.653843],[110.862159453125,27.6719802070313],[110.839417753906,27.6901906562501],[110.816051054688,27.7456471992188],[110.764490996094,27.8069753242188],[110.782899199219,27.8382888007813],[110.792345,27.860708234375],[110.883294707031,27.8493971992188],[110.922899199219,27.8782888007813],[110.937913847656,27.8970412421875],[110.973026152344,27.9183669257813],[110.968597441406,27.9539626289063],[110.988133574219,27.9871950507813],[110.957586699219,28.0116579414062],[110.971790800781,28.0293971992188],[111.007345,28.033843],[111.03271609375,28.02921409375],[111.072042265625,27.9984157539063],[111.093446074219,28.0001369453126],[111.091165800781,28.0285182929688],[111.10271609375,28.03847190625],[111.11197390625,28.0592140937501],[111.135511503906,28.1014040351563],[111.185162382813,28.1614284492188],[111.23162234375,28.1576955390625],[111.265120878906,28.1814455390625],[111.28197390625,28.21921409375],[111.314124785156,28.23847190625],[111.331998320313,28.1984133125001],[111.370726347656,28.2015261054688],[111.389840117188,28.179341046875],[111.432435332031,28.2095412421876],[111.443316679688,28.1969118476563],[111.486890898438,28.2004128242188],[111.480474882813,28.1205837226563],[111.503043242188,28.0887526679688],[111.49197390625,28.07921409375],[111.48271609375,28.0564455390625],[111.510836210938,28.03222190625],[111.517345,28.053843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"永顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.947345,29.323843],[109.941910429688,29.3365407539063],[109.924346953125,29.327895734375],[109.958609648438,29.3075270820313],[110.013685332031,29.295180890625],[110.063973417969,29.3279274726563],[110.098675566406,29.3063991523438],[110.107345,29.2938430000001],[110.102496367188,29.2659743476563],[110.073448515625,29.2427150703125],[110.069808378906,29.2134499335938],[110.082899199219,29.1793971992188],[110.094334746094,29.1393971992188],[110.132899199219,29.1482888007813],[110.15373171875,29.1605373359375],[110.172345,29.1582204414063],[110.199823027344,29.1616384101563],[110.212899199219,29.1393971992188],[110.222345,29.116977765625],[110.254476347656,29.1209743476563],[110.248951445313,29.0765554023438],[110.292174101563,29.0819313789063],[110.301790800781,29.0482888007812],[110.340687285156,29.0371681953125],[110.343074980469,29.017973859375],[110.312899199219,28.9682888007813],[110.296151152344,28.9548805976563],[110.352386503906,28.9311843085938],[110.361790800781,28.8982888007813],[110.387345,28.8838430000001],[110.382178984375,28.8652931953126],[110.360897246094,28.8488649726563],[110.330311308594,28.8076100898438],[110.335853300781,28.7701003242188],[110.307345,28.7658864570313],[110.279173613281,28.7700514960937],[110.27170046875,28.7194875312501],[110.267345,28.713843],[110.232117949219,28.7081642890625],[110.202899199219,28.7193971992188],[110.131790800781,28.7282888007813],[110.076073027344,28.7610427070313],[110.022183867188,28.740327375],[110.012899199219,28.7182888007813],[109.98396609375,28.7093971992188],[109.928128691406,28.7501833320312],[109.895477324219,28.7461232734376],[109.872899199219,28.7593971992188],[109.844930449219,28.7682888007813],[109.787142363281,28.7460768867187],[109.777345,28.733843],[109.747615996094,28.7265407539063],[109.725936308594,28.73140159375],[109.70896609375,28.7559767890625],[109.730985136719,28.7897902656251],[109.701112089844,28.8283376289063],[109.703577910156,28.8393483710938],[109.681429472656,28.8679274726563],[109.673260527344,28.8897585273438],[109.644622832031,28.900473859375],[109.625267363281,28.8961354804688],[109.587345,28.9138430000001],[109.623104277344,28.9943971992188],[109.621942167969,29.008843],[109.629676542969,29.1051003242188],[109.64271609375,29.1284719062501],[109.663460722656,29.2421901679688],[109.749632597656,29.2748903632813],[109.77400515625,29.3031813789063],[109.771605253906,29.3330519843751],[109.818089628906,29.3730983710938],[109.827345,29.383843],[109.863260527344,29.4079274726563],[109.911224394531,29.4479274726563],[109.933629179688,29.4327223945312],[109.943465605469,29.388843],[109.937191191406,29.36085471875],[109.961429472656,29.3441188789063],[109.953260527344,29.3279274726563],[109.947345,29.323843]]]]}},{"type":"Feature","properties":{"name":"保靖县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.587345,28.9138430000001],[109.625267363281,28.8961354804688],[109.644622832031,28.900473859375],[109.673260527344,28.8897585273438],[109.681429472656,28.8679274726563],[109.703577910156,28.8393483710938],[109.701112089844,28.8283376289063],[109.730985136719,28.7897902656251],[109.70896609375,28.7559767890625],[109.725936308594,28.73140159375],[109.747615996094,28.7265407539063],[109.777345,28.733843],[109.773260527344,28.7179274726563],[109.749112578125,28.6808449531251],[109.763118925781,28.6434108710938],[109.807840605469,28.6534377265625],[109.826900664063,28.6241677070313],[109.821224394531,28.598843],[109.823616972656,28.5881716132813],[109.811429472656,28.5797585273438],[109.803260527344,28.5579274726563],[109.789132109375,28.5481716132813],[109.793465605469,28.528843],[109.791051054688,28.5180690742188],[109.82982546875,28.503559796875],[109.817345,28.473843],[109.78298953125,28.44819846875],[109.710018339844,28.4328005195312],[109.637345,28.403843],[109.621846953125,28.4087502265625],[109.650032988281,28.4348659492188],[109.565347929688,28.4550368476563],[109.542535429688,28.48085471875],[109.563287382813,28.52007346875],[109.562147246094,28.548843],[109.562581816406,28.5597951484375],[109.602535429688,28.5786525703126],[109.612154570313,28.5992580390625],[109.568128691406,28.6286525703125],[109.476400175781,28.5965016914063],[109.393155546875,28.5998024726563],[109.340191679688,28.559184796875],[109.317345,28.583843],[109.301883574219,28.6083815742188],[109.289058867188,28.6379470039062],[109.270394316406,28.6154738593751],[109.232078886719,28.6193801093751],[109.200477324219,28.607505109375],[109.180882597656,28.6095021796875],[109.183695097656,28.6370803046875],[109.269066191406,28.674106671875],[109.244334746094,28.6946511054688],[109.282806425781,28.7183815742188],[109.301883574219,28.7437087226563],[109.261883574219,28.7683815742188],[109.257345,28.773843],[109.273170195313,28.7780178046875],[109.305303984375,28.7912233710938],[109.362659941406,28.779887921875],[109.399095488281,28.8427321601563],[109.442655058594,28.8703884101563],[109.454205351563,28.8542702460938],[109.493643828125,28.8620632148438],[109.54271609375,28.8309108710937],[109.563270292969,28.8842043281251],[109.581519804688,28.9096681953125],[109.587345,28.9138430000001]]]]}},{"type":"Feature","properties":{"name":"凤凰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.51298953125,28.2027614570313],[109.538338652344,28.18948753125],[109.5926965625,28.2031545234375],[109.653453398438,28.2481984687501],[109.680035429688,28.223911359375],[109.693204375,28.1787477851563],[109.687345,28.163843],[109.665574980469,28.1582570625],[109.659312773438,28.1303127265625],[109.672345,28.0954811835938],[109.697345,28.1010842109376],[109.712345,28.0977223945312],[109.746239042969,28.1053200507812],[109.78978640625,28.0752516914063],[109.794989042969,28.0520436835938],[109.787345,28.033843],[109.777345,28.033843],[109.777345,28.023843],[109.731820097656,28.0295314765625],[109.722899199219,27.9882888007813],[109.711790800781,27.9793971992188],[109.702899199219,27.9482888007813],[109.671790800781,27.9393971992188],[109.654610625,27.9179396796876],[109.632799101563,27.9206520820313],[109.615479765625,27.8990261054688],[109.632899199219,27.8693971992188],[109.641790800781,27.8454128242188],[109.621790800781,27.8293971992188],[109.612899199219,27.8182888007813],[109.599251738281,27.8073610664063],[109.57373171875,27.8105373359375],[109.538546171875,27.7898537421876],[109.520284453125,27.8126613593751],[109.482628203125,27.7981862617188],[109.451319609375,27.8020803046875],[109.454039335938,27.78022971875],[109.437366972656,27.7518679023438],[109.421790800781,27.7393971992188],[109.417345,27.723843],[109.361512480469,27.7282131171875],[109.363949003906,27.744702375],[109.330311308594,27.7900759101563],[109.336038847656,27.828843],[109.330941191406,27.8633498359376],[109.317345,27.873843],[109.300286894531,27.9677614570313],[109.31271609375,27.97847190625],[109.337474394531,28.0072072578126],[109.36271609375,28.0184719062501],[109.377918730469,28.0361159492188],[109.342469511719,28.0666579414063],[109.298455839844,28.0354494453125],[109.30310671875,28.0933229804688],[109.332913847656,28.1467482734376],[109.331929960938,28.1590138984375],[109.337345,28.183843],[109.352330351563,28.1912917304688],[109.367345,28.1839601875001],[109.392345,28.1961696601562],[109.413690214844,28.1857448554688],[109.421815214844,28.2259865546875],[109.45062625,28.2405617500001],[109.46406375,28.2671242500001],[109.497345,28.2839601875],[109.517345,28.323843],[109.533446074219,28.319360578125],[109.516634550781,28.2765993476563],[109.533519316406,28.248608625],[109.514388457031,28.2338430000001],[109.533822050781,28.218843],[109.51298953125,28.2027614570313]]]]}},{"type":"Feature","properties":{"name":"古丈县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.872899199219,28.7593971992188],[109.895477324219,28.7461232734376],[109.928128691406,28.7501833320312],[109.98396609375,28.7093971992188],[110.012899199219,28.7182888007813],[110.022183867188,28.740327375],[110.076073027344,28.7610427070313],[110.131790800781,28.7282888007813],[110.202899199219,28.7193971992188],[110.232117949219,28.7081642890625],[110.267345,28.713843],[110.262806425781,28.6783815742188],[110.246419707031,28.6647682929688],[110.232735625,28.6482936835938],[110.213004179688,28.6503054023438],[110.210855742188,28.629233625],[110.222894316406,28.619233625],[110.221834746094,28.6088430000001],[110.226832304688,28.5598171210938],[110.16455203125,28.5954885078125],[110.160816679688,28.558843],[110.162894316406,28.5384523750001],[110.147095976563,28.5253298164063],[110.153704863281,28.4605104804688],[110.132244902344,28.4583229804688],[110.097345,28.4638430000001],[110.057345,28.443843],[110.018060332031,28.4375099921875],[109.990985136719,28.4408766914063],[109.966339140625,28.4100978828125],[109.88681765625,28.3993971992188],[109.893211699219,28.45081565625],[109.871846953125,28.44815940625],[109.862899199219,28.4693971992188],[109.817345,28.473843],[109.82982546875,28.503559796875],[109.791051054688,28.5180690742188],[109.793465605469,28.528843],[109.789132109375,28.5481716132813],[109.803260527344,28.5579274726563],[109.811429472656,28.5797585273438],[109.823616972656,28.5881716132813],[109.821224394531,28.598843],[109.826900664063,28.6241677070313],[109.807840605469,28.6534377265625],[109.763118925781,28.6434108710938],[109.749112578125,28.6808449531251],[109.773260527344,28.7179274726563],[109.777345,28.733843],[109.787142363281,28.7460768867187],[109.844930449219,28.7682888007813],[109.872899199219,28.7593971992188]]]]}},{"type":"Feature","properties":{"name":"花垣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.357345,28.2738430000001],[109.353922148438,28.2616506171875],[109.345152617188,28.2704201484375],[109.357345,28.2738430000001]]],[[[109.357345,28.2738430000001],[109.350574980469,28.295766828125],[109.301070585938,28.27800315625],[109.262625761719,28.3317580390625],[109.282799101563,28.3688771796875],[109.262064238281,28.3985622382813],[109.252625761719,28.4528224921875],[109.267345,28.4938430000001],[109.273475371094,28.5188014960938],[109.269132109375,28.5381716132813],[109.283260527344,28.5479274726563],[109.294505644531,28.5779811835938],[109.317345,28.583843],[109.340191679688,28.559184796875],[109.393155546875,28.5998024726563],[109.476400175781,28.5965016914063],[109.568128691406,28.6286525703125],[109.612154570313,28.5992580390625],[109.602535429688,28.5786525703126],[109.562581816406,28.5597951484375],[109.562147246094,28.548843],[109.563287382813,28.52007346875],[109.542535429688,28.48085471875],[109.565347929688,28.4550368476563],[109.650032988281,28.4348659492188],[109.621846953125,28.4087502265625],[109.637345,28.403843],[109.633531523438,28.3976564765626],[109.620535917969,28.3896486640625],[109.629000273438,28.3624733710938],[109.607345,28.355727765625],[109.591539335938,28.3606520820313],[109.582816191406,28.3464919257813],[109.561854277344,28.3612087226563],[109.515975371094,28.3754982734375],[109.509229765625,28.353843],[109.513902617188,28.338843],[109.510535917969,28.3280373359375],[109.517345,28.323843],[109.497345,28.2839601875],[109.46406375,28.2671242500001],[109.45062625,28.2405617500001],[109.421815214844,28.2259865546875],[109.413690214844,28.1857448554688],[109.392345,28.1961696601562],[109.367345,28.1839601875001],[109.352330351563,28.1912917304688],[109.337345,28.183843],[109.342064238281,28.2091237617188],[109.382049589844,28.2827077460938],[109.357345,28.2738430000001]]]]}},{"type":"Feature","properties":{"name":"吉首市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.862899199219,28.4693971992188],[109.871846953125,28.44815940625],[109.893211699219,28.45081565625],[109.88681765625,28.3993971992188],[109.966339140625,28.4100978828125],[109.990985136719,28.4408766914063],[110.018060332031,28.4375099921875],[110.057345,28.443843],[110.051651640625,28.4233962226563],[109.99298953125,28.4070607734375],[110.00170046875,28.37819846875],[110.014327421875,28.3572658515625],[110.011605253906,28.338843],[110.014896269531,28.3165822578125],[109.990360136719,28.2847951484375],[109.947469511719,28.3016579414063],[109.93170046875,28.28948753125],[109.922857695313,28.2780275703125],[109.902943144531,28.28097190625],[109.843924589844,28.2645363593751],[109.840867949219,28.243843],[109.84447390625,28.2194411445312],[109.828136015625,28.1607717109375],[109.76170046875,28.1494875312501],[109.742110625,28.1376686835938],[109.730809355469,28.1523097968751],[109.701832304688,28.1480275703126],[109.69298953125,28.15948753125],[109.687345,28.163843],[109.693204375,28.1787477851563],[109.680035429688,28.223911359375],[109.653453398438,28.2481984687501],[109.5926965625,28.2031545234375],[109.538338652344,28.18948753125],[109.51298953125,28.2027614570313],[109.533822050781,28.218843],[109.514388457031,28.2338430000001],[109.533519316406,28.248608625],[109.516634550781,28.2765993476563],[109.533446074219,28.319360578125],[109.517345,28.323843],[109.510535917969,28.3280373359375],[109.513902617188,28.338843],[109.509229765625,28.353843],[109.515975371094,28.3754982734375],[109.561854277344,28.3612087226563],[109.582816191406,28.3464919257813],[109.591539335938,28.3606520820313],[109.607345,28.355727765625],[109.629000273438,28.3624733710938],[109.620535917969,28.3896486640625],[109.633531523438,28.3976564765626],[109.637345,28.403843],[109.710018339844,28.4328005195312],[109.78298953125,28.44819846875],[109.817345,28.473843],[109.862899199219,28.4693971992188]]]]}},{"type":"Feature","properties":{"name":"龙山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.637452421875,29.6266579414063],[109.655220976563,29.603637921875],[109.717345,29.613843],[109.721832304688,29.6080275703125],[109.752994414063,29.6126345039063],[109.773519316406,29.578608625],[109.73298953125,29.5473244453125],[109.750330839844,29.5092580390625],[109.771624785156,29.4928224921875],[109.78170046875,29.4681984687501],[109.804928007813,29.4296950507812],[109.786434355469,29.4154201484375],[109.827345,29.383843],[109.818089628906,29.3730983710938],[109.771605253906,29.3330519843751],[109.77400515625,29.3031813789063],[109.749632597656,29.2748903632813],[109.663460722656,29.2421901679688],[109.64271609375,29.1284719062501],[109.629676542969,29.1051003242188],[109.621942167969,29.008843],[109.623104277344,28.9943971992188],[109.587345,28.9138430000001],[109.581519804688,28.9096681953125],[109.563270292969,28.8842043281251],[109.54271609375,28.8309108710937],[109.493643828125,28.8620632148438],[109.454205351563,28.8542702460938],[109.442655058594,28.8703884101563],[109.399095488281,28.8427321601563],[109.362659941406,28.779887921875],[109.305303984375,28.7912233710938],[109.273170195313,28.7780178046875],[109.257345,28.773843],[109.240704375,28.777202375],[109.233985625,28.870483625],[109.227345,28.8838430000001],[109.23298953125,28.8881984687501],[109.253656035156,28.9149733710938],[109.251605253906,28.928843],[109.255797148438,28.957212140625],[109.28298953125,28.97819846875],[109.29170046875,29.0194875312501],[109.30298953125,29.02819846875],[109.314022246094,29.0424929023438],[109.310479765625,29.0664699531251],[109.23170046875,29.09819846875],[109.227345,29.123843],[109.24205203125,29.1180617500001],[109.265640898438,29.1215456367188],[109.260128203125,29.158843],[109.265301542969,29.193843],[109.259051542969,29.2361232734376],[109.31298953125,29.25819846875],[109.35170046875,29.2873244453125],[109.331485625,29.3387477851563],[109.344173613281,29.3822658515625],[109.384222441406,29.3763478828125],[109.365282011719,29.4245314765626],[109.403765898438,29.4542360664063],[109.401605253906,29.468843],[109.406280546875,29.5004787421875],[109.433436308594,29.4964650703126],[109.429246855469,29.5248024726562],[109.436263457031,29.5381984687501],[109.452847929688,29.51671409375],[109.457345,29.5638430000001],[109.482987089844,29.5537624335937],[109.50170046875,29.59948753125],[109.513160429688,29.6083303046875],[109.511253691406,29.6212209296875],[109.55978640625,29.614048078125],[109.578426542969,29.63819846875],[109.637452421875,29.6266579414063]]]]}},{"type":"Feature","properties":{"name":"泸溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.173873320313,28.298843],[110.171058378906,28.2712258125],[110.232039824219,28.2336110664063],[110.237345,28.203843],[110.192139921875,28.1990309882813],[110.192940703125,28.178843],[110.171749296875,28.168843],[110.172940703125,28.138843],[110.1519934375,28.1289577460938],[110.166295195313,28.1019289375],[110.102611113281,28.0867604804688],[110.132672148438,28.0589089179688],[110.122139921875,28.0390065742188],[110.122550078125,28.0286647773438],[110.112154570313,28.0190334296875],[110.093194609375,27.9788600898438],[110.062154570313,27.9690334296875],[110.057345,27.9638430000001],[110.051790800781,27.9593971992188],[110.041390410156,27.9230178046875],[110.016922636719,27.9093971992188],[109.984610625,27.9497463203125],[109.971890898438,27.9481642890625],[109.962799101563,27.9595217109376],[109.952345,27.9582204414062],[109.925477324219,27.9615627265625],[109.891202421875,27.9414162421875],[109.843299589844,27.9764089179688],[109.832691679688,27.9896535468751],[109.783382597656,27.9755715156251],[109.777345,28.023843],[109.787345,28.023843],[109.787345,28.033843],[109.794989042969,28.0520436835938],[109.78978640625,28.0752516914063],[109.746239042969,28.1053200507812],[109.712345,28.0977223945312],[109.697345,28.1010842109376],[109.672345,28.0954811835938],[109.659312773438,28.1303127265625],[109.665574980469,28.1582570625],[109.687345,28.163843],[109.69298953125,28.15948753125],[109.701832304688,28.1480275703126],[109.730809355469,28.1523097968751],[109.742110625,28.1376686835938],[109.76170046875,28.1494875312501],[109.828136015625,28.1607717109375],[109.84447390625,28.2194411445312],[109.840867949219,28.243843],[109.843924589844,28.2645363593751],[109.902943144531,28.28097190625],[109.922857695313,28.2780275703125],[109.93170046875,28.28948753125],[109.947469511719,28.3016579414063],[109.990360136719,28.2847951484375],[110.014896269531,28.3165822578125],[110.011605253906,28.338843],[110.014327421875,28.3572658515625],[110.00170046875,28.37819846875],[109.99298953125,28.4070607734375],[110.051651640625,28.4233962226563],[110.057345,28.443843],[110.097345,28.4638430000001],[110.102806425781,28.4493044257813],[110.115689726563,28.4054030585938],[110.181861601563,28.376704328125],[110.211449003906,28.3521291328125],[110.173553496094,28.3356935859376],[110.171834746094,28.318843],[110.173873320313,28.298843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海珠区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.383260527344,23.1097585273438],[113.407345,23.103843],[113.407345,23.0838430000001],[113.397345,23.0838430000001],[113.351756621094,23.0478762031251],[113.267345,23.0538430000001],[113.23970828125,23.0956618476563],[113.247345,23.113843],[113.301888457031,23.1070290351563],[113.307345,23.113843],[113.383260527344,23.1097585273438]]]]}},{"type":"Feature","properties":{"name":"番禺区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.397345,23.0838430000001],[113.402074003906,23.0654201484376],[113.455223417969,23.0773342109375],[113.487345,23.063843],[113.50062625,23.05712425],[113.510704375,23.0372023750001],[113.517345,23.033843],[113.520704375,22.987202375],[113.563985625,22.900483625],[113.567345,22.8638430000001],[113.551790800781,22.8682888007813],[113.516182890625,22.8819777656251],[113.482110625,22.86194846875],[113.47166140625,22.7783962226562],[113.484832792969,22.76784690625],[113.456239042969,22.7449489570313],[113.447345,22.733843],[113.44197390625,22.73847190625],[113.415872832031,22.7405690742187],[113.357345,22.773843],[113.362535429688,22.7910842109375],[113.391810332031,22.8163063789063],[113.31197390625,22.82847190625],[113.291937285156,22.8812721992188],[113.271807890625,22.8986135078125],[113.285338164063,22.9480446601563],[113.253900175781,22.9620729804688],[113.247345,22.983843],[113.254793730469,22.9988283515625],[113.2474621875,23.0138430000001],[113.254793730469,23.0288576484375],[113.247345,23.0438430000001],[113.247345,23.0538430000001],[113.267345,23.0538430000001],[113.351756621094,23.0478762031251],[113.397345,23.0838430000001]]]]}},{"type":"Feature","properties":{"name":"白云区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.4620325,23.3991042304688],[113.462642851563,23.3888430000001],[113.462047148438,23.378843],[113.463238554688,23.3588430000001],[113.461470976563,23.3291921210938],[113.472345,23.3285451484375],[113.491453886719,23.32968284375],[113.502779570313,23.308843],[113.491859160156,23.28874534375],[113.508660917969,23.2737331367188],[113.459310332031,23.2392604804688],[113.432254667969,23.2695412421875],[113.422611113281,23.2485280585938],[113.41209109375,23.2491555000001],[113.402625761719,23.2385622382813],[113.397345,23.2338430000001],[113.391673613281,23.242055890625],[113.352320585938,23.2332326484375],[113.341329375,23.1904030585938],[113.311429472656,23.1697585273438],[113.307345,23.1638430000001],[113.267408476563,23.1540334296876],[113.241690703125,23.1707814765625],[113.237345,23.153843],[113.222359648438,23.1463942695313],[113.211353789063,23.1517678046875],[113.207345,23.143843],[113.173267851563,23.153843],[113.203834257813,23.179233625],[113.20150515625,23.2020803046875],[113.181883574219,23.2183815742188],[113.17107546875,23.2313893867188],[113.174681425781,23.2667629218751],[113.147345,23.303843],[113.155406523438,23.3682888007812],[113.202899199219,23.3593971992187],[113.215538359375,23.3293971992188],[113.25302859375,23.3483547187501],[113.251390410156,23.3615236640625],[113.295972929688,23.3877321601563],[113.332899199219,23.3982888007813],[113.3779309375,23.4155983710938],[113.396175566406,23.3928151679688],[113.432899199219,23.4082888007812],[113.441790800781,23.4193971992188],[113.467345,23.423843],[113.487345,23.423843],[113.487345,23.413843],[113.4620325,23.3991042304688]]]]}},{"type":"Feature","properties":{"name":"从化市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.006065703125,23.9335622382813],[114.02271609375,23.91921409375],[114.027345,23.903843],[114.050316191406,23.8520925117188],[114.031920195313,23.8191213203125],[114.032747832031,23.8088430000001],[114.031917753906,23.7985182929688],[114.05197390625,23.7812404609376],[114.021046171875,23.7677419257813],[113.995655546875,23.7697829414063],[113.97197390625,23.75921409375],[113.953963652344,23.7383107734375],[113.934827910156,23.739848859375],[113.87271609375,23.68847190625],[113.84197390625,23.6792140937501],[113.831712675781,23.6562209296875],[113.805738554688,23.633843],[113.817345,23.6238430000001],[113.81271609375,23.61847190625],[113.749664335938,23.60886253125],[113.72271609375,23.54847190625],[113.711920195313,23.5291213203125],[113.712801542969,23.5181716132813],[113.65271609375,23.46847190625],[113.624564238281,23.4559084296876],[113.575692167969,23.4138039375],[113.56197390625,23.38921409375],[113.557345,23.373843],[113.541429472656,23.3779274726563],[113.51201296875,23.3970827460938],[113.503260527344,23.4097585273438],[113.487345,23.413843],[113.487345,23.423843],[113.467345,23.423843],[113.452899199219,23.4793971992188],[113.430479765625,23.488843],[113.436553984375,23.5376882148438],[113.351790800781,23.5482888007813],[113.342899199219,23.5593971992188],[113.321441679688,23.576577375],[113.323214140625,23.5908351875],[113.281790800781,23.6082888007813],[113.277345,23.613843],[113.283260527344,23.6179274726563],[113.297254667969,23.6381960273438],[113.323260527344,23.6479274726563],[113.358865996094,23.7008010078126],[113.367345,23.7338430000001],[113.411783476563,23.7265431953125],[113.432857695313,23.7296584296875],[113.44170046875,23.71819846875],[113.458631621094,23.7051296210938],[113.478426542969,23.6794875312501],[113.51298953125,23.68819846875],[113.549295683594,23.7024709296876],[113.596514921875,23.6643093085937],[113.63170046875,23.7226418281251],[113.62298953125,23.7594875312501],[113.607054472656,23.7859011054688],[113.62298953125,23.79819846875],[113.640809355469,23.8212868476563],[113.667345,23.8173659492188],[113.687345,23.8203200507813],[113.711302519531,23.8167800117188],[113.713084746094,23.828843],[113.708455839844,23.8601564765625],[113.746951933594,23.8544680000001],[113.78170046875,23.89948753125],[113.797345,23.903843],[113.857291289063,23.930454328125],[113.882345,23.9284401679688],[113.892345,23.9292458320313],[113.907345,23.9280397773438],[113.922345,23.9292458320313],[113.937345,23.9280397773438],[114.006065703125,23.9335622382813]]]]}},{"type":"Feature","properties":{"name":"花都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.967345,23.443843],[112.963922148438,23.4316506171875],[112.955152617188,23.4404201484375],[112.967345,23.443843]]],[[[112.967345,23.443843],[112.967345,23.453843],[112.971790800781,23.4593971992188],[113.049276152344,23.4761598945313],[113.071790800781,23.4893971992188],[113.092899199219,23.4982888007813],[113.115477324219,23.5115627265625],[113.155206328125,23.5066213203126],[113.186041289063,23.519614484375],[113.203011503906,23.5484841132813],[113.199273710938,23.5785256171875],[113.251790800781,23.6093971992188],[113.277345,23.613843],[113.281790800781,23.6082888007813],[113.323214140625,23.5908351875],[113.321441679688,23.576577375],[113.342899199219,23.5593971992188],[113.351790800781,23.5482888007813],[113.436553984375,23.5376882148438],[113.430479765625,23.488843],[113.452899199219,23.4793971992188],[113.467345,23.423843],[113.441790800781,23.4193971992188],[113.432899199219,23.4082888007812],[113.396175566406,23.3928151679688],[113.3779309375,23.4155983710938],[113.332899199219,23.3982888007813],[113.295972929688,23.3877321601563],[113.251390410156,23.3615236640625],[113.25302859375,23.3483547187501],[113.215538359375,23.3293971992188],[113.202899199219,23.3593971992187],[113.155406523438,23.3682888007812],[113.147345,23.303843],[113.121929960938,23.3100856757813],[113.103260527344,23.2979274726563],[113.069757109375,23.2853908515625],[113.0758215625,23.2583303046875],[113.047345,23.253843],[113.04271609375,23.27921409375],[113.031219511719,23.2998244453125],[113.032772246094,23.3191677070313],[113.021693144531,23.3287136054688],[113.041756621094,23.364673078125],[113.012623320313,23.3484181953126],[112.989364042969,23.3502883125001],[112.97271609375,23.3912404609375],[112.992996855469,23.4087136054688],[112.978997832031,23.4338039375001],[112.967345,23.443843]]]]}},{"type":"Feature","properties":{"name":"黄埔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.547345,23.133843],[113.547345,23.1238430000001],[113.523985625,23.128559796875],[113.531422148438,23.1417580390625],[113.547345,23.133843]]],[[[113.471580839844,23.1522512031251],[113.504293242188,23.1036745429688],[113.532623320313,23.1100270820313],[113.547345,23.103843],[113.56062625,23.09712425],[113.567345,23.0838430000001],[113.547345,23.0838430000001],[113.496058378906,23.0751296210938],[113.487345,23.063843],[113.455223417969,23.0773342109375],[113.402074003906,23.0654201484376],[113.397345,23.0838430000001],[113.407345,23.0838430000001],[113.407345,23.103843],[113.431329375,23.1204030585938],[113.437345,23.143843],[113.471580839844,23.1522512031251]]]]}},{"type":"Feature","properties":{"name":"荔湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.243616972656,23.1495143867188],[113.241214628906,23.1388014960938],[113.247345,23.113843],[113.23970828125,23.0956618476563],[113.267345,23.0538430000001],[113.247345,23.0538430000001],[113.247345,23.0438430000001],[113.204989042969,23.0487795234376],[113.163170195313,23.0774660468751],[113.205357695313,23.0885964179688],[113.20025515625,23.114419171875],[113.207345,23.143843],[113.211353789063,23.1517678046875],[113.222359648438,23.1463942695313],[113.237345,23.153843],[113.243616972656,23.1495143867188]]]]}},{"type":"Feature","properties":{"name":"萝岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.533260527344,23.0579274726563],[113.517345,23.033843],[113.510704375,23.0372023750001],[113.50062625,23.05712425],[113.487345,23.063843],[113.496058378906,23.0751296210938],[113.547345,23.0838430000001],[113.533260527344,23.0579274726563]]],[[[113.417345,23.173843],[113.404537382813,23.178843],[113.417345,23.183843],[113.417345,23.173843]]],[[[113.417345,23.173843],[113.430152617188,23.178843],[113.417345,23.183843],[113.417345,23.2038430000001],[113.397345,23.2038430000001],[113.397345,23.2338430000001],[113.402625761719,23.2385622382813],[113.41209109375,23.2491555000001],[113.422611113281,23.2485280585938],[113.432254667969,23.2695412421875],[113.459310332031,23.2392604804688],[113.508660917969,23.2737331367188],[113.491859160156,23.28874534375],[113.502779570313,23.308843],[113.491453886719,23.32968284375],[113.472345,23.3285451484375],[113.461470976563,23.3291921210938],[113.463238554688,23.3588430000001],[113.462047148438,23.378843],[113.462642851563,23.3888430000001],[113.4620325,23.3991042304688],[113.487345,23.413843],[113.503260527344,23.4097585273438],[113.51201296875,23.3970827460938],[113.541429472656,23.3779274726563],[113.557345,23.373843],[113.584818144531,23.3548757148438],[113.581124296875,23.3383962226563],[113.593565703125,23.3192897773438],[113.590103789063,23.303843],[113.594586210938,23.2838430000001],[113.591224394531,23.268843],[113.595233183594,23.2509572578125],[113.576434355469,23.2220900703126],[113.571224394531,23.1988430000001],[113.575706816406,23.178843],[113.551429472656,23.1697585273438],[113.547345,23.133843],[113.531422148438,23.1417580390625],[113.523985625,23.128559796875],[113.547345,23.1238430000001],[113.547345,23.103843],[113.532623320313,23.1100270820313],[113.504293242188,23.1036745429688],[113.471580839844,23.1522512031251],[113.437345,23.143843],[113.430704375,23.1472023750001],[113.417345,23.173843]]]]}},{"type":"Feature","properties":{"name":"南沙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.652545195313,22.676157453125],[113.657345,22.653843],[113.633804960938,22.6667458320313],[113.652545195313,22.676157453125]]],[[[113.597345,22.693843],[113.597345,22.7038430000001],[113.587345,22.7038430000001],[113.592074003906,22.7222658515626],[113.612345,22.7177223945313],[113.641429472656,22.724243390625],[113.623060332031,22.6875270820313],[113.597345,22.693843]]],[[[113.587345,22.7038430000001],[113.587345,22.693843],[113.597345,22.693843],[113.643504667969,22.638266828125],[113.641541777344,22.613843],[113.644307890625,22.5794020820313],[113.632049589844,22.5784181953125],[113.60271609375,22.59921409375],[113.577345,22.603843],[113.552154570313,22.6186525703125],[113.531803007813,22.6501686835938],[113.532655058594,22.6716579414063],[113.447345,22.733843],[113.456239042969,22.7449489570313],[113.484832792969,22.76784690625],[113.47166140625,22.7783962226562],[113.482110625,22.86194846875],[113.516182890625,22.8819777656251],[113.551790800781,22.8682888007813],[113.567345,22.8638430000001],[113.571429472656,22.8479274726563],[113.613260527344,22.7997585273437],[113.637345,22.763843],[113.603441191406,22.7477468085938],[113.543914824219,22.7388430000001],[113.573441191406,22.7199391914063],[113.581248808594,22.7077468085938],[113.587345,22.7038430000001]]]]}},{"type":"Feature","properties":{"name":"天河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.417345,23.173843],[113.417345,23.183843],[113.430152617188,23.178843],[113.417345,23.173843]]],[[[113.417345,23.183843],[113.404537382813,23.178843],[113.417345,23.173843],[113.430704375,23.1472023750001],[113.437345,23.143843],[113.431329375,23.1204030585938],[113.407345,23.103843],[113.383260527344,23.1097585273438],[113.307345,23.113843],[113.301551542969,23.149106671875],[113.307345,23.1638430000001],[113.311429472656,23.1697585273438],[113.341329375,23.1904030585938],[113.352320585938,23.2332326484375],[113.391673613281,23.242055890625],[113.397345,23.2338430000001],[113.397345,23.2038430000001],[113.417345,23.2038430000001],[113.417345,23.183843]]]]}},{"type":"Feature","properties":{"name":"越秀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.241690703125,23.1707814765625],[113.267408476563,23.1540334296876],[113.307345,23.1638430000001],[113.301551542969,23.149106671875],[113.307345,23.113843],[113.301888457031,23.1070290351563],[113.247345,23.113843],[113.241214628906,23.1388014960938],[113.243616972656,23.1495143867188],[113.237345,23.153843],[113.241690703125,23.1707814765625]]]]}},{"type":"Feature","properties":{"name":"增城市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9783996875,23.3736232734376],[113.997345,23.343843],[113.992154570313,23.3390334296875],[113.979705839844,23.2997096992188],[113.943436308594,23.3388552070313],[113.893990507813,23.3486525703125],[113.882535429688,23.2886525703126],[113.872017851563,23.2687770820313],[113.882535429688,23.2590334296875],[113.897323027344,23.227700421875],[113.878468046875,23.1920680976563],[113.89658328125,23.1752834296876],[113.846085234375,23.151450421875],[113.837345,23.1238430000001],[113.821790800781,23.1282888007813],[113.716529570313,23.14144065625],[113.662650175781,23.1181838203125],[113.642799101563,23.1206520820313],[113.632899199219,23.1082888007813],[113.601790800781,23.0993971992188],[113.567345,23.0838430000001],[113.56062625,23.09712425],[113.547345,23.103843],[113.547345,23.1238430000001],[113.547345,23.133843],[113.551429472656,23.1697585273438],[113.575706816406,23.178843],[113.571224394531,23.1988430000001],[113.576434355469,23.2220900703126],[113.595233183594,23.2509572578125],[113.591224394531,23.268843],[113.594586210938,23.2838430000001],[113.590103789063,23.303843],[113.593565703125,23.3192897773438],[113.581124296875,23.3383962226563],[113.584818144531,23.3548757148438],[113.557345,23.373843],[113.56197390625,23.38921409375],[113.575692167969,23.4138039375],[113.624564238281,23.4559084296876],[113.65271609375,23.46847190625],[113.712801542969,23.5181716132813],[113.711920195313,23.5291213203125],[113.72271609375,23.54847190625],[113.749664335938,23.60886253125],[113.81271609375,23.61847190625],[113.817345,23.6238430000001],[113.856473417969,23.6170339179688],[113.850863066406,23.5719362617188],[113.896551542969,23.5148830390626],[113.941790800781,23.4882888007813],[113.975748320313,23.4785817695313],[113.94361453125,23.45284690625],[113.972899199219,23.4293971992188],[113.981790800781,23.4082888007812],[113.99334109375,23.3990431953126],[113.9783996875,23.3736232734376]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"乐昌市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.297823515625,25.5163332343751],[113.31158328125,25.4477053046875],[113.335391875,25.4524098945313],[113.361658964844,25.4335817695313],[113.371519804688,25.4080178046875],[113.413170195313,25.3996681953125],[113.42404421875,25.3714699531251],[113.447345,25.3668679023438],[113.482345,25.3737819648438],[113.517345,25.3668679023438],[113.534456816406,25.3702492500001],[113.572652617188,25.3428713203126],[113.577345,25.313843],[113.556116972656,25.3074513984375],[113.531219511719,25.1978591132813],[113.532769804688,25.1785475898438],[113.510867949219,25.1476564765625],[113.517345,25.093843],[113.454525175781,25.0758815742188],[113.441632109375,25.0452834296876],[113.427345,25.0338430000001],[113.423016386719,25.0401149726563],[113.407345,25.0366017890625],[113.392066679688,25.0400270820313],[113.352183867188,25.0232741523438],[113.312345,25.0322048164063],[113.292345,25.0277223945313],[113.277767363281,25.0309889960938],[113.262345,25.0722048164063],[113.207037382813,25.0598073554688],[113.190186796875,25.0842116523438],[113.199439726563,25.1254909492188],[113.181429472656,25.1379274726563],[113.172345,25.1510842109375],[113.163260527344,25.1379274726563],[113.151429472656,25.1297585273438],[113.136654082031,25.0902712226562],[113.114525175781,25.0749904609375],[113.092218046875,25.0799929023438],[113.073260527344,25.0743654609375],[113.086900664063,25.0135182929688],[113.067840605469,24.9842482734376],[113.041673613281,24.9901149726563],[113.027022734375,24.968891828125],[113.007345,24.963843],[113.002806425781,24.9793044257813],[112.991883574219,24.9983815742188],[112.977471953125,25.0316066718751],[113.006846953125,25.0828932929688],[112.971883574219,25.1383815742188],[112.962806425781,25.1617678046875],[112.989488554688,25.1839308906251],[113.031449003906,25.2021291328126],[113.011883574219,25.2183815742188],[112.985858183594,25.2497096992188],[112.972345,25.2483327460938],[112.947345,25.2508815742188],[112.922345,25.2483327460938],[112.912345,25.2493532539063],[112.897345,25.2478249335938],[112.861087675781,25.25151878125],[112.863682890625,25.2769753242188],[112.851807890625,25.3085768867188],[112.852855253906,25.318843],[112.850748320313,25.3395143867188],[112.867345,25.3378249335938],[112.888192167969,25.3399489570313],[112.901883574219,25.3083815742188],[112.918870878906,25.2993044257813],[112.931883574219,25.3293044257813],[112.954664335938,25.3482302070313],[113.022806425781,25.3583815742188],[113.033604765625,25.3713796210938],[113.079781523438,25.3914064765625],[113.092767363281,25.4213478828125],[113.123941679688,25.4181716132813],[113.119976835938,25.457075421875],[113.155269804688,25.4983815742188],[113.176217070313,25.4731642890625],[113.224268828125,25.5111940742188],[113.281910429688,25.5053200507813],[113.287345,25.5238430000001],[113.297823515625,25.5163332343751]]]]}},{"type":"Feature","properties":{"name":"南雄市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.567345,25.403843],[114.571529570313,25.3875392890625],[114.592345,25.3922048164063],[114.602271757813,25.3656716132813],[114.628995390625,25.3269704414063],[114.650230742188,25.3317311835938],[114.674459257813,25.3159548164063],[114.698375273438,25.3213161445313],[114.72142703125,25.2879274726563],[114.74142703125,25.2741188789063],[114.733189726563,25.2275319648438],[114.707428007813,25.2333083320313],[114.681109648438,25.1993483710938],[114.683468046875,25.1888430000001],[114.68052859375,25.175747296875],[114.72326296875,25.1597585273437],[114.727345,25.133843],[114.715406523438,25.1144680000001],[114.687345,25.1057277656251],[114.6683215625,25.1116530585938],[114.650655546875,25.0829885078125],[114.627345,25.075727765625],[114.607345,25.081958234375],[114.592345,25.0772853828125],[114.560504179688,25.0872023750001],[114.530386992188,25.031880109375],[114.511158476563,25.0200295234376],[114.503531523438,25.0076564765626],[114.45045046875,24.999926984375],[114.4560559375,24.9819240546876],[114.421158476563,24.9700295234376],[114.413531523438,24.9576564765625],[114.387345,24.9538430000001],[114.328699980469,24.9634767890626],[114.277345,24.9558864570313],[114.252345,24.9595827460938],[114.236910429688,24.95730003125],[114.25298953125,24.9981984687501],[114.26170046875,25.0395510078125],[114.19170046875,25.06819846875],[114.17298953125,25.0994875312501],[114.139222441406,25.1450319648438],[114.077345,25.1358864570313],[114.051937285156,25.1396413398438],[113.997345,25.1038430000001],[113.990975371094,25.1074733710938],[113.983714628906,25.1302126289063],[113.955721464844,25.1391530585938],[113.943714628906,25.1602126289063],[113.929027128906,25.1685866523438],[113.950975371094,25.2102126289063],[113.970767851563,25.2214968085937],[113.959796171875,25.2506032539063],[113.970975371094,25.2702126289062],[114.007345,25.273843],[114.023170195313,25.2696681953126],[114.032345,25.2568679023438],[114.049244414063,25.2804445625001],[114.06267703125,25.2777883125],[114.13201296875,25.3098976875],[114.142345,25.3078542304688],[114.157345,25.3108180976563],[114.172345,25.3078542304688],[114.189386015625,25.3112233710938],[114.222056914063,25.297798078125],[114.237345,25.3008180976562],[114.253660917969,25.2975954414063],[114.293170195313,25.3080178046875],[114.305933867188,25.3411135078126],[114.393182402344,25.3236916328125],[114.421658964844,25.3441042304688],[114.438219023438,25.3870388007813],[114.452779570313,25.3899172187501],[114.473682890625,25.376645734375],[114.503472929688,25.3881349921876],[114.501060820313,25.4003322578125],[114.532218046875,25.4201100898438],[114.567345,25.403843]]]]}},{"type":"Feature","properties":{"name":"曲江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.667345,24.473843],[113.677345,24.473843],[113.677345,24.4638430000001],[113.667345,24.4638430000001],[113.667345,24.473843]]],[[[113.667345,24.473843],[113.64170046875,24.47819846875],[113.63298953125,24.4894875312501],[113.61170046875,24.49819846875],[113.59298953125,24.50948753125],[113.546143828125,24.51819846875],[113.51490359375,24.4777248359375],[113.502345,24.4795827460938],[113.487345,24.4773659492188],[113.471832304688,24.4796584296875],[113.46298953125,24.4681984687501],[113.436737089844,24.45745628125],[113.417838164063,24.4602468085938],[113.40298953125,24.4794875312501],[113.3751965625,24.4908620429688],[113.325289335938,24.4712404609376],[113.277760039063,24.45948753125],[113.242857695313,24.5096755195313],[113.207345,24.503843],[113.207345,24.523843],[113.21298953125,24.52819846875],[113.22170046875,24.54948753125],[113.25298953125,24.56819846875],[113.262916289063,24.5924538398438],[113.31978640625,24.584048078125],[113.33170046875,24.5994875312501],[113.39298953125,24.60819846875],[113.40170046875,24.61948753125],[113.42298953125,24.6281984687501],[113.438826933594,24.6668947578125],[113.477684355469,24.7172389960938],[113.507345,24.733843],[113.517667265625,24.718891828125],[113.561732207031,24.7075856757813],[113.581007109375,24.7119069648438],[113.600023222656,24.7627272773438],[113.622345,24.7577223945313],[113.632345,24.7599636054688],[113.642491484375,24.7576882148438],[113.698433867188,24.7750295234375],[113.720726347656,24.83460471875],[113.701429472656,24.8479274726562],[113.697345,24.853843],[113.705264921875,24.8641017890625],[113.742735625,24.8696388984376],[113.76170046875,24.8581984687501],[113.78298953125,24.84948753125],[113.80982546875,24.8332985664063],[113.859906035156,24.84069846875],[113.899095488281,24.8252931953126],[113.937345,24.853843],[113.969967070313,24.8286623359375],[113.952017851563,24.7435988593751],[113.908721953125,24.7177053046875],[113.891170683594,24.688608625],[113.910301542969,24.673843],[113.89170046875,24.65948753125],[113.877345,24.623843],[113.786282988281,24.61726096875],[113.770037871094,24.54743675],[113.746395292969,24.5191237617188],[113.732611113281,24.5491579414063],[113.72209109375,24.5485305],[113.71209109375,24.55972190625],[113.67593875,24.5575661445313],[113.654256621094,24.5103224921876],[113.667345,24.473843]]]]}},{"type":"Feature","properties":{"name":"仁化县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.023392363281,25.3338430000001],[114.044320097656,25.318843],[114.02408328125,25.3043386054688],[114.007345,25.273843],[113.970975371094,25.2702126289062],[113.959796171875,25.2506032539063],[113.970767851563,25.2214968085937],[113.950975371094,25.2102126289063],[113.929027128906,25.1685866523438],[113.943714628906,25.1602126289063],[113.955721464844,25.1391530585938],[113.983714628906,25.1302126289063],[113.990975371094,25.1074733710938],[113.997345,25.1038430000001],[113.991832304688,25.0967018867187],[113.971954375,25.0996388984376],[113.95298953125,25.08819846875],[113.93170046875,25.07948753125],[113.92298953125,25.0381984687501],[113.900611601563,25.0290407539063],[113.919271269531,25.0146364570313],[113.930765410156,24.936860578125],[113.906280546875,24.9404787421875],[113.900728789063,24.9029006171875],[113.937345,24.853843],[113.899095488281,24.8252931953126],[113.859906035156,24.84069846875],[113.80982546875,24.8332985664063],[113.78298953125,24.84948753125],[113.76170046875,24.8581984687501],[113.742735625,24.8696388984376],[113.705264921875,24.8641017890625],[113.697345,24.853843],[113.67170046875,24.877602765625],[113.67341921875,24.9209401679688],[113.692535429688,24.9386525703125],[113.722154570313,24.9798268867188],[113.688963652344,24.97851096875],[113.631812773438,24.9482692695313],[113.611009550781,24.9490944648438],[113.571849394531,24.9913576484376],[113.572869902344,25.0171144843751],[113.517345,25.093843],[113.510867949219,25.1476564765625],[113.532769804688,25.1785475898438],[113.531219511719,25.1978591132813],[113.556116972656,25.3074513984375],[113.577345,25.313843],[113.611971464844,25.3298757148438],[113.662345,25.3398317695313],[113.672965117188,25.3377321601563],[113.684920683594,25.3544118476563],[113.712345,25.3598317695313],[113.727345,25.3568679023438],[113.745445585938,25.3604445625001],[113.767503691406,25.3296681953125],[113.816429472656,25.3386135078125],[113.836673613281,25.3668581367188],[113.877769804688,25.3906838203126],[113.883333769531,25.418843],[113.879251738281,25.439497296875],[113.937345,25.4438430000001],[113.967017851563,25.4568556953126],[113.994486113281,25.4392702460938],[113.973673125,25.4088796210938],[114.007345,25.403843],[114.011519804688,25.3980178046876],[114.034666777344,25.3890895820313],[114.020023222656,25.3785964179688],[114.043472929688,25.3695510078125],[114.041356230469,25.358843],[114.043455839844,25.3482228828126],[114.023392363281,25.3338430000001]]]]}},{"type":"Feature","properties":{"name":"乳源瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.177345,24.563843],[113.180767851563,24.5760353828125],[113.189537382813,24.5672658515625],[113.177345,24.563843]]],[[[113.177345,24.563843],[113.177345,24.553843],[113.197345,24.553843],[113.197345,24.523843],[113.207345,24.523843],[113.207345,24.503843],[113.199403105469,24.4781252265625],[113.172345,24.4797365546875],[113.150679960938,24.4784450507813],[113.096168242188,24.5080666328125],[113.078294707031,24.4691237617188],[113.035299101563,24.4803224921875],[112.992625761719,24.5391237617188],[112.967345,24.553843],[112.959176054688,24.5856740546876],[112.927171660156,24.6077712226563],[112.881732207031,24.5975856757813],[112.873260527344,24.6072145820312],[112.893260527344,24.6379274726563],[112.906781035156,24.67405784375],[112.896912871094,24.7180690742188],[112.934932890625,24.7322951484376],[112.929456816406,24.7567287421875],[112.954339628906,24.7949416328125],[112.948531523438,24.82085471875],[112.989173613281,24.8489138007813],[113.016546660156,24.8591579414063],[112.998988066406,24.9158034492188],[112.987345,24.923843],[112.98970828125,24.94147971875],[113.009359160156,24.9475588203125],[112.995330839844,24.9601271796875],[113.007345,24.963843],[113.027022734375,24.968891828125],[113.041673613281,24.9901149726563],[113.067840605469,24.9842482734376],[113.086900664063,25.0135182929688],[113.073260527344,25.0743654609375],[113.092218046875,25.0799929023438],[113.114525175781,25.0749904609375],[113.136654082031,25.0902712226562],[113.151429472656,25.1297585273438],[113.163260527344,25.1379274726563],[113.172345,25.1510842109375],[113.181429472656,25.1379274726563],[113.199439726563,25.1254909492188],[113.190186796875,25.0842116523438],[113.207037382813,25.0598073554688],[113.262345,25.0722048164063],[113.277767363281,25.0309889960938],[113.292345,25.0277223945313],[113.312345,25.0322048164063],[113.352183867188,25.0232741523438],[113.392066679688,25.0400270820313],[113.407345,25.0366017890625],[113.423016386719,25.0401149726563],[113.427345,25.0338430000001],[113.431429472656,25.0179274726563],[113.448255644531,24.9920900703125],[113.456990996094,24.9531154609376],[113.447345,24.9138430000001],[113.415592070313,24.8884157539062],[113.399820585938,24.8509865546876],[113.424078398438,24.8177809882813],[113.420618925781,24.7899611640625],[113.370057402344,24.7790212226563],[113.394210234375,24.7688430000001],[113.389307890625,24.7294191718751],[113.341790800781,24.7093971992188],[113.325152617188,24.6886183906251],[113.252042265625,24.6779763007813],[113.241890898438,24.6906520820313],[113.222345,24.6882204414063],[113.194862089844,24.6916384101563],[113.162738066406,24.6681716132813],[113.151820097656,24.6695290351563],[113.142899199219,24.6282888007812],[113.13134890625,24.6086428046876],[113.142899199219,24.5993971992188],[113.153826933594,24.5857497382813],[113.151656523438,24.5683132148438],[113.177345,24.563843]]]]}},{"type":"Feature","properties":{"name":"始兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.177345,24.663843],[114.187345,24.663843],[114.187345,24.6538430000001],[114.177345,24.6538430000001],[114.177345,24.663843]]],[[[114.177345,24.663843],[114.167345,24.663843],[114.167345,24.6538430000001],[114.161922636719,24.6327175117188],[114.111429472656,24.6197585273438],[114.082345,24.6075417304687],[114.0476575,24.6221120429688],[114.029891386719,24.5647927070313],[114.034984160156,24.5420729804687],[114.000716582031,24.5197585273438],[113.940728789063,24.5418727851563],[113.913260527344,24.5597585273438],[113.888983183594,24.5688430000001],[113.896197539063,24.6010231757812],[113.883260527344,24.6197585273438],[113.877345,24.623843],[113.89170046875,24.65948753125],[113.910301542969,24.673843],[113.891170683594,24.688608625],[113.908721953125,24.7177053046875],[113.952017851563,24.7435988593751],[113.969967070313,24.8286623359375],[113.937345,24.853843],[113.900728789063,24.9029006171875],[113.906280546875,24.9404787421875],[113.930765410156,24.936860578125],[113.919271269531,25.0146364570313],[113.900611601563,25.0290407539063],[113.92298953125,25.0381984687501],[113.93170046875,25.07948753125],[113.95298953125,25.08819846875],[113.971954375,25.0996388984376],[113.991832304688,25.0967018867187],[113.997345,25.1038430000001],[114.051937285156,25.1396413398438],[114.077345,25.1358864570313],[114.139222441406,25.1450319648438],[114.17298953125,25.0994875312501],[114.19170046875,25.06819846875],[114.26170046875,25.0395510078125],[114.25298953125,24.9981984687501],[114.236910429688,24.95730003125],[114.252345,24.9595827460938],[114.277345,24.9558864570313],[114.328699980469,24.9634767890626],[114.387345,24.9538430000001],[114.393104277344,24.9289846015625],[114.390867949219,24.9138430000001],[114.39611453125,24.8783303046875],[114.35750125,24.8485256171876],[114.330455351563,24.7866335273438],[114.335638457031,24.7515627265626],[114.28170046875,24.72948753125],[114.27298953125,24.70819846875],[114.166986113281,24.6901930976563],[114.177345,24.663843]]]]}},{"type":"Feature","properties":{"name":"翁源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.276129179688,24.6339748359376],[114.300225859375,24.5799758125],[114.307345,24.5738430000001],[114.302899199219,24.5582888007813],[114.266536894531,24.5291725898438],[114.303407011719,24.4786989570313],[114.239046660156,24.4271999335938],[114.251790800781,24.3682888007813],[114.288487578125,24.3577980781251],[114.271678496094,24.3292018867188],[114.27490359375,24.3032814765625],[114.262899199219,24.2882888007813],[114.257345,24.283843],[114.251541777344,24.2968337226563],[114.247345,24.2738430000001],[114.210975371094,24.2702126289063],[114.182491484375,24.2569020820313],[114.172198515625,24.2607839179687],[114.143714628906,24.2474733710938],[114.110975371094,24.2402126289062],[114.078182402344,24.2248903632813],[114.084229765625,24.208843],[114.080460234375,24.198843],[114.086370878906,24.1831618476563],[114.070404082031,24.148989484375],[114.075924101563,24.1343508125001],[114.050819121094,24.1202126289063],[114.033228789063,24.1510622382813],[114.004998808594,24.1404201484375],[113.993714628906,24.1602126289063],[113.972655058594,24.1722194648437],[113.963714628906,24.2002126289063],[113.917345,24.203843],[113.895394316406,24.2102858710937],[113.882806425781,24.2393044257813],[113.871883574219,24.2483815742188],[113.862735625,24.2593923164063],[113.852345,24.2583327460938],[113.840882597656,24.2595021796875],[113.842855253906,24.278843],[113.840816679688,24.298843],[113.844427519531,24.3342653632813],[113.811883574219,24.3483815742188],[113.791886015625,24.4017629218751],[113.753690214844,24.4334938789063],[113.725819121094,24.4483815742188],[113.709058867188,24.4097389960938],[113.684569121094,24.4392214179688],[113.677345,24.4638430000001],[113.677345,24.473843],[113.667345,24.473843],[113.654256621094,24.5103224921876],[113.67593875,24.5575661445313],[113.71209109375,24.55972190625],[113.72209109375,24.5485305],[113.732611113281,24.5491579414063],[113.746395292969,24.5191237617188],[113.770037871094,24.54743675],[113.786282988281,24.61726096875],[113.877345,24.623843],[113.883260527344,24.6197585273438],[113.896197539063,24.6010231757812],[113.888983183594,24.5688430000001],[113.913260527344,24.5597585273438],[113.940728789063,24.5418727851563],[114.000716582031,24.5197585273438],[114.034984160156,24.5420729804687],[114.029891386719,24.5647927070313],[114.0476575,24.6221120429688],[114.082345,24.6075417304687],[114.111429472656,24.6197585273438],[114.161922636719,24.6327175117188],[114.167345,24.6538430000001],[114.177345,24.6538430000001],[114.187345,24.6538430000001],[114.276129179688,24.6339748359376]]]]}},{"type":"Feature","properties":{"name":"武江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.497345,24.8738430000001],[113.485152617188,24.8704201484375],[113.493922148438,24.8616506171876],[113.512899199219,24.8782888007813],[113.527183867188,24.89612815625],[113.543011503906,24.8692018867187],[113.537530546875,24.8251345039063],[113.58150515625,24.8306032539063],[113.586341582031,24.791704328125],[113.562408476563,24.7269631171875],[113.507345,24.733843],[113.477684355469,24.7172389960938],[113.438826933594,24.6668947578125],[113.42298953125,24.6281984687501],[113.40170046875,24.61948753125],[113.39298953125,24.60819846875],[113.33170046875,24.5994875312501],[113.31978640625,24.584048078125],[113.262916289063,24.5924538398438],[113.25298953125,24.56819846875],[113.22170046875,24.54948753125],[113.21298953125,24.52819846875],[113.207345,24.523843],[113.197345,24.523843],[113.197345,24.553843],[113.177345,24.553843],[113.177345,24.563843],[113.189537382813,24.5672658515625],[113.180767851563,24.5760353828125],[113.177345,24.563843],[113.151656523438,24.5683132148438],[113.153826933594,24.5857497382813],[113.142899199219,24.5993971992188],[113.13134890625,24.6086428046876],[113.142899199219,24.6282888007812],[113.151820097656,24.6695290351563],[113.162738066406,24.6681716132813],[113.194862089844,24.6916384101563],[113.222345,24.6882204414063],[113.241890898438,24.6906520820313],[113.252042265625,24.6779763007813],[113.325152617188,24.6886183906251],[113.341790800781,24.7093971992188],[113.389307890625,24.7294191718751],[113.394210234375,24.7688430000001],[113.370057402344,24.7790212226563],[113.420618925781,24.7899611640625],[113.424078398438,24.8177809882813],[113.399820585938,24.8509865546876],[113.415592070313,24.8884157539062],[113.447345,24.9138430000001],[113.493985625,24.8904836250001],[113.497345,24.8738430000001]]]]}},{"type":"Feature","properties":{"name":"新丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.247345,24.2738430000001],[114.25197390625,24.25847190625],[114.26271609375,24.23921409375],[114.27197390625,24.2184719062501],[114.292877226563,24.2004616523438],[114.290921660156,24.1761208320313],[114.332345,24.1280397773438],[114.342669707031,24.1400221992188],[114.367345,24.1380397773438],[114.410726347656,24.1415261054687],[114.428253203125,24.1211794257813],[114.473072539063,24.1175783515625],[114.4618371875,24.1690993476563],[114.537691679688,24.2326369453126],[114.552345,24.2496462226563],[114.56197390625,24.23847190625],[114.588922148438,24.2264455390626],[114.593204375,24.173149640625],[114.56197390625,24.15921409375],[114.557345,24.133843],[114.552857695313,24.1280275703125],[114.542345,24.1295827460937],[114.532345,24.1281032539063],[114.521954375,24.1296388984375],[114.502735625,24.1180471015625],[114.491807890625,24.1196608710938],[114.47298953125,24.0881984687501],[114.44170046875,24.0694875312501],[114.430943632813,24.0308522773438],[114.412345,24.0281032539063],[114.401832304688,24.0296584296875],[114.39298953125,24.0181984687501],[114.381529570313,24.0093556953126],[114.383179960938,23.9981911445313],[114.369920683594,23.9201345039063],[114.35298953125,23.8981984687501],[114.347345,23.8938430000001],[114.322515898438,23.8992580390625],[114.307345,23.8980397773438],[114.278792753906,23.9003346992188],[114.23271609375,23.9226247382813],[114.26271609375,23.9484719062501],[114.27197390625,23.96288596875],[114.20814578125,23.93944846875],[114.172345,23.9594216132813],[114.15271609375,23.9484719062501],[114.12197390625,23.9392140937501],[114.102623320313,23.9284181953125],[114.092345,23.9292458320313],[114.077345,23.9280397773438],[114.051373320313,23.9301271796875],[114.03271609375,23.9084719062501],[114.027345,23.903843],[114.02271609375,23.91921409375],[114.006065703125,23.9335622382813],[113.937345,23.9280397773438],[113.922345,23.9292458320313],[113.907345,23.9280397773438],[113.892345,23.9292458320313],[113.882345,23.9284401679688],[113.857291289063,23.930454328125],[113.797345,23.903843],[113.792493925781,23.9212599921875],[113.76298953125,23.95948753125],[113.723558378906,23.9756252265625],[113.719598417969,24.002426984375],[113.747345,24.023843],[113.772303496094,24.0299733710938],[113.783016386719,24.0275710273438],[113.795513945313,24.0456740546876],[113.8367590625,24.0741506171875],[113.831224394531,24.098843],[113.833465605469,24.108843],[113.831065703125,24.1195510078125],[113.865611601563,24.1392702460938],[113.859132109375,24.1681716132813],[113.891097441406,24.1902443671875],[113.905697050781,24.1869704414063],[113.917345,24.203843],[113.963714628906,24.2002126289063],[113.972655058594,24.1722194648437],[113.993714628906,24.1602126289063],[114.004998808594,24.1404201484375],[114.033228789063,24.1510622382813],[114.050819121094,24.1202126289063],[114.075924101563,24.1343508125001],[114.070404082031,24.148989484375],[114.086370878906,24.1831618476563],[114.080460234375,24.198843],[114.084229765625,24.208843],[114.078182402344,24.2248903632813],[114.110975371094,24.2402126289062],[114.143714628906,24.2474733710938],[114.172198515625,24.2607839179687],[114.182491484375,24.2569020820313],[114.210975371094,24.2702126289063],[114.247345,24.2738430000001]]],[[[114.247345,24.2738430000001],[114.251541777344,24.2968337226563],[114.257345,24.283843],[114.257345,24.2738430000001],[114.247345,24.2738430000001]]]]}},{"type":"Feature","properties":{"name":"浈江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.497345,24.8738430000001],[113.493922148438,24.8616506171876],[113.485152617188,24.8704201484375],[113.497345,24.8738430000001]]],[[[113.497345,24.8738430000001],[113.493985625,24.8904836250001],[113.447345,24.9138430000001],[113.456990996094,24.9531154609376],[113.448255644531,24.9920900703125],[113.431429472656,25.0179274726563],[113.427345,25.0338430000001],[113.441632109375,25.0452834296876],[113.454525175781,25.0758815742188],[113.517345,25.093843],[113.572869902344,25.0171144843751],[113.571849394531,24.9913576484376],[113.611009550781,24.9490944648438],[113.631812773438,24.9482692695313],[113.688963652344,24.97851096875],[113.722154570313,24.9798268867188],[113.692535429688,24.9386525703125],[113.67341921875,24.9209401679688],[113.67170046875,24.877602765625],[113.697345,24.853843],[113.701429472656,24.8479274726562],[113.720726347656,24.83460471875],[113.698433867188,24.7750295234375],[113.642491484375,24.7576882148438],[113.632345,24.7599636054688],[113.622345,24.7577223945313],[113.600023222656,24.7627272773438],[113.581007109375,24.7119069648438],[113.561732207031,24.7075856757813],[113.517667265625,24.718891828125],[113.507345,24.733843],[113.562408476563,24.7269631171875],[113.586341582031,24.791704328125],[113.58150515625,24.8306032539063],[113.537530546875,24.8251345039063],[113.543011503906,24.8692018867187],[113.527183867188,24.89612815625],[113.512899199219,24.8782888007813],[113.497345,24.8738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.987345,22.533843],[113.952379179688,22.5280983710938],[113.934823027344,22.5306935859375],[113.92298953125,22.4881984687501],[113.91170046875,22.47948753125],[113.893485136719,22.4558864570313],[113.88298953125,22.4694875312501],[113.87170046875,22.47819846875],[113.86298953125,22.5059206367188],[113.89298953125,22.51819846875],[113.897345,22.543843],[113.911429472656,22.5697585273437],[113.923616972656,22.5781716132813],[113.919888945313,22.5947927070313],[113.936092558594,22.6579274726563],[113.965089140625,22.6492092109375],[114.008211699219,22.6194362617188],[114.017345,22.583843],[113.99896609375,22.579126203125],[113.987345,22.533843]]]]}},{"type":"Feature","properties":{"name":"盐田区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,22.603843],[114.347345,22.603843],[114.342345,22.5910353828125],[114.337345,22.603843]]],[[[114.337345,22.603843],[114.32263796875,22.5980617500001],[114.311954375,22.5996388984375],[114.292735625,22.5880471015625],[114.2819153125,22.5896462226563],[114.242323027344,22.5602907539063],[114.237345,22.5538430000001],[114.227345,22.5538430000001],[114.197345,22.5538430000001],[114.197345,22.573843],[114.217345,22.573843],[114.217345,22.5938430000001],[114.223531523438,22.5976564765625],[114.234969511719,22.6162184882813],[114.253531523438,22.6276564765625],[114.261671171875,22.6515383125001],[114.29181765625,22.6271218085938],[114.302740507813,22.6305226875],[114.333531523438,22.6200295234375],[114.337345,22.603843]]]]}},{"type":"Feature","properties":{"name":"宝安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.983895292969,22.8003932929688],[114.003238554688,22.7625051093751],[114.022345,22.77108909375],[114.032345,22.76659690625],[114.04330203125,22.77151878125],[114.051495390625,22.7559645820313],[114.072345,22.74659690625],[114.092345,22.75558128125],[114.100794707031,22.7272927070313],[114.107345,22.723843],[114.089752226563,22.6969655585937],[114.095008574219,22.670356671875],[114.082345,22.6678542304687],[114.054234648438,22.6734084296875],[114.043819609375,22.6207033515626],[114.067345,22.603843],[114.067345,22.5938430000001],[114.057345,22.5938430000001],[114.043985625,22.587202375],[114.017345,22.583843],[114.008211699219,22.6194362617188],[113.965089140625,22.6492092109375],[113.936092558594,22.6579274726563],[113.919888945313,22.5947927070313],[113.923616972656,22.5781716132813],[113.911429472656,22.5697585273437],[113.897345,22.543843],[113.881429472656,22.5479274726563],[113.873016386719,22.5601149726563],[113.853016386719,22.555630109375],[113.832274199219,22.5856716132813],[113.819176054688,22.6206740546875],[113.794105253906,22.65917503125],[113.781429472656,22.6679274726563],[113.761534453125,22.6967409492188],[113.757345,22.7438430000001],[113.783895292969,22.7572927070313],[113.797694121094,22.7834938789062],[113.840374785156,22.8059719062501],[113.829566679688,22.8300270820313],[113.853895292969,22.8372927070313],[113.877345,22.8554714179688],[113.900794707031,22.8372927070313],[113.943895292969,22.8303932929688],[113.950794707031,22.8172927070313],[113.983895292969,22.8003932929688]]]]}},{"type":"Feature","properties":{"name":"福田区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.061429472656,22.5097585273438],[114.037345,22.503843],[114.022938261719,22.5247096992188],[113.987345,22.533843],[113.99896609375,22.579126203125],[114.017345,22.583843],[114.043985625,22.587202375],[114.057345,22.5938430000001],[114.06406375,22.58056175],[114.093319121094,22.5657619453126],[114.097345,22.533843],[114.079222441406,22.5301833320313],[114.087345,22.5138430000001],[114.061429472656,22.5097585273438]]]]}},{"type":"Feature","properties":{"name":"龙岗区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.233746367188,22.7908522773438],[114.2527746875,22.7880397773438],[114.2819153125,22.8096462226563],[114.307345,22.8058864570312],[114.344945097656,22.8114430976563],[114.340667753906,22.7824929023438],[114.358426542969,22.75948753125],[114.38298953125,22.76819846875],[114.410709257813,22.7849196601563],[114.413822050781,22.763843],[114.40724734375,22.7193556953126],[114.434486113281,22.6983303046876],[114.429744902344,22.6662429023438],[114.457345,22.6703200507813],[114.472379179688,22.6680983710938],[114.507345,22.6738430000001],[114.497784453125,22.6478029609375],[114.59197390625,22.660571515625],[114.573053007813,22.615395734375],[114.54271609375,22.59847190625],[114.49271609375,22.5834181953126],[114.503673125,22.5420583320313],[114.542432890625,22.5695412421876],[114.5566028125,22.5530983710938],[114.611319609375,22.5366262031251],[114.614185820313,22.5009548164063],[114.54197390625,22.47921409375],[114.499664335938,22.44921409375],[114.48025515625,22.4978200507813],[114.483629179688,22.5398146796876],[114.46197390625,22.55847190625],[114.45271609375,22.5692140937501],[114.44197390625,22.5784719062501],[114.412020292969,22.6132350898438],[114.35271609375,22.6084719062501],[114.347345,22.603843],[114.337345,22.603843],[114.333531523438,22.6200295234375],[114.302740507813,22.6305226875],[114.29181765625,22.6271218085938],[114.261671171875,22.6515383125001],[114.253531523438,22.6276564765625],[114.234969511719,22.6162184882813],[114.223531523438,22.5976564765625],[114.217345,22.5938430000001],[114.181109648438,22.6171169257812],[114.123768339844,22.594575421875],[114.067345,22.603843],[114.043819609375,22.6207033515626],[114.054234648438,22.6734084296875],[114.082345,22.6678542304687],[114.095008574219,22.670356671875],[114.089752226563,22.6969655585937],[114.107345,22.723843],[114.13634890625,22.7185524726563],[114.153470488281,22.6878615546875],[114.151243925781,22.6601369453125],[114.180433378906,22.6577907539063],[114.211678496094,22.7428786445313],[114.174935332031,22.7745363593751],[114.20271609375,22.7984719062501],[114.21197390625,22.80921409375],[114.227345,22.813843],[114.233746367188,22.7908522773438]]]]}},{"type":"Feature","properties":{"name":"罗湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.181109648438,22.6171169257812],[114.217345,22.5938430000001],[114.217345,22.573843],[114.197345,22.573843],[114.197345,22.5538430000001],[114.16466921875,22.5618679023438],[114.129386015625,22.538891828125],[114.097345,22.533843],[114.093319121094,22.5657619453126],[114.06406375,22.58056175],[114.057345,22.5938430000001],[114.067345,22.5938430000001],[114.067345,22.603843],[114.123768339844,22.594575421875],[114.181109648438,22.6171169257812]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"斗门区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.377345,22.193843],[113.389537382813,22.1972658515626],[113.380767851563,22.2060353828125],[113.362623320313,22.2000270820313],[113.349383574219,22.1970583320313],[113.356229277344,22.1665212226563],[113.311429472656,22.1497585273437],[113.27076296875,22.12327659375],[113.253260527344,22.0979274726563],[113.237345,22.0938430000001],[113.233922148438,22.1060353828125],[113.225152617188,22.0972658515625],[113.237345,22.0938430000001],[113.227620878906,22.0797585273438],[113.203260527344,22.1070949531251],[113.21166140625,22.1201174140626],[113.2262903125,22.1168386054688],[113.235501738281,22.1579274726563],[113.201429472656,22.1497585273437],[113.19267703125,22.1370827460938],[113.138587675781,22.101860578125],[113.107345,22.0938430000001],[113.118162871094,22.1378884101563],[113.106776152344,22.1886818671875],[113.117345,22.2138430000001],[113.127345,22.2138430000001],[113.127345,22.223843],[113.158470488281,22.2327419257813],[113.191336699219,22.3478444648438],[113.152899199219,22.4004640937501],[113.172899199219,22.3993971992188],[113.192345,22.38796409375],[113.21373171875,22.4005373359376],[113.232628203125,22.3981862617188],[113.247345,22.4038430000001],[113.278533964844,22.382309796875],[113.313260527344,22.3297585273438],[113.340513945313,22.2520119453125],[113.3857825,22.23507346875],[113.407345,22.203843],[113.413985625,22.1904836250001],[113.417345,22.163843],[113.41267703125,22.1570827460938],[113.382542753906,22.1374587226563],[113.367345,22.143843],[113.370704375,22.180483625],[113.377345,22.193843]]]]}},{"type":"Feature","properties":{"name":"金湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.167345,21.8638430000001],[113.187345,21.8638430000001],[113.177345,21.8498903632813],[113.167345,21.8638430000001]]],[[[113.187345,21.8638430000001],[113.190767851563,21.8760353828125],[113.199537382813,21.8672658515625],[113.187345,21.8638430000001]]],[[[113.157345,21.8638430000001],[113.135260039063,21.8391237617188],[113.122679472656,21.8762819648438],[113.157345,21.8638430000001]]],[[[113.167345,21.8638430000001],[113.157345,21.8638430000001],[113.162345,21.8766506171875],[113.167345,21.8638430000001]]],[[[113.127345,21.913843],[113.123922148438,21.9016506171875],[113.115152617188,21.9104201484375],[113.127345,21.913843]]],[[[113.127345,21.913843],[113.134334746094,21.9382888007813],[113.151282988281,21.9206862617188],[113.127345,21.913843]]],[[[113.237252226563,21.9537721992188],[113.252345,21.94640159375],[113.267298613281,21.9537038398438],[113.280704375,21.9272023750001],[113.2972278125,21.918843],[113.279420195313,21.9098342109376],[113.285269804688,21.8978517890626],[113.270704375,21.890483625],[113.267345,21.883843],[113.252359648438,21.8912917304688],[113.241353789063,21.8859181953125],[113.233985625,21.900483625],[113.215428496094,21.9098708320313],[113.237252226563,21.9537721992188]]],[[[113.163922148438,21.9560353828125],[113.167345,21.9438430000001],[113.155152617188,21.9472658515625],[113.163922148438,21.9560353828125]]],[[[113.437345,22.073843],[113.449537382813,22.0704201484376],[113.440767851563,22.0616506171875],[113.437345,22.073843]]],[[[113.437345,22.073843],[113.425152617188,22.0772658515626],[113.433922148438,22.0860353828125],[113.437345,22.073843]]],[[[113.237345,22.0938430000001],[113.225152617188,22.0972658515625],[113.233922148438,22.1060353828125],[113.237345,22.0938430000001]]],[[[113.377345,22.193843],[113.370704375,22.180483625],[113.367345,22.143843],[113.377508574219,22.0840065742188],[113.413612089844,22.0692311835938],[113.390282011719,22.0305544257813],[113.406785917969,22.0031935859376],[113.364813261719,21.9969924140626],[113.305235625,22.0095632148438],[113.289920683594,22.0469850898438],[113.251031523438,22.0527321601563],[113.253084746094,22.038843],[113.250867949219,22.0238430000001],[113.253167753906,22.0082717109375],[113.212594023438,21.9916652656251],[113.199422636719,21.95948753125],[113.1815246875,21.968286359375],[113.18447390625,21.9882448554688],[113.17298953125,22.02948753125],[113.113804960938,22.0706447578125],[113.107345,22.0938430000001],[113.138587675781,22.101860578125],[113.19267703125,22.1370827460938],[113.201429472656,22.1497585273437],[113.235501738281,22.1579274726563],[113.2262903125,22.1168386054688],[113.21166140625,22.1201174140626],[113.203260527344,22.1070949531251],[113.227620878906,22.0797585273438],[113.237345,22.0938430000001],[113.253260527344,22.0979274726563],[113.27076296875,22.12327659375],[113.311429472656,22.1497585273437],[113.356229277344,22.1665212226563],[113.349383574219,22.1970583320313],[113.362623320313,22.2000270820313],[113.377345,22.193843]]],[[[113.377345,22.193843],[113.380767851563,22.2060353828125],[113.389537382813,22.1972658515626],[113.377345,22.193843]]]]}},{"type":"Feature","properties":{"name":"香洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.963922148438,21.8360353828125],[113.967345,21.8238430000001],[113.955152617188,21.8272658515625],[113.963922148438,21.8360353828125]]],[[[114.013922148438,21.8760353828125],[114.017345,21.8638430000001],[114.005152617188,21.8672658515625],[114.013922148438,21.8760353828125]]],[[[114.033922148438,21.8960353828125],[114.037345,21.883843],[114.025152617188,21.8872658515626],[114.033922148438,21.8960353828125]]],[[[114.061910429688,21.9065407539063],[114.067345,21.893843],[114.044346953125,21.897895734375],[114.061910429688,21.9065407539063]]],[[[113.743748808594,21.939087140625],[113.737345,21.923843],[113.703260527344,21.9325905585938],[113.730074492188,21.9579274726563],[113.743748808594,21.939087140625]]],[[[113.694195585938,21.9654567695313],[113.697345,21.9438430000001],[113.675159941406,21.947075421875],[113.694195585938,21.9654567695313]]],[[[114.133922148438,21.9760353828125],[114.137345,21.963843],[114.125152617188,21.9672658515626],[114.133922148438,21.9760353828125]]],[[[114.157345,21.993843],[114.150260039063,21.9803932929688],[114.12439578125,21.9895607734375],[114.157345,21.993843]]],[[[113.773475371094,21.9888014960938],[113.767345,21.963843],[113.733260527344,21.9873757148438],[113.7701575,22.0035964179688],[113.773475371094,21.9888014960938]]],[[[114.157345,21.993843],[114.160767851563,22.0060353828126],[114.169537382813,21.9972658515626],[114.157345,21.993843]]],[[[113.831910429688,22.0065407539063],[113.837345,21.993843],[113.814346953125,21.9978957343751],[113.831910429688,22.0065407539063]]],[[[114.217345,21.993843],[114.177345,21.993843],[114.177345,22.013843],[114.217345,22.013843],[114.217345,21.993843]]],[[[114.247345,22.033843],[114.241783476563,22.020844953125],[114.224620390625,22.0298366523438],[114.247345,22.033843]]],[[[113.716678496094,22.034926984375],[113.727345,22.013843],[113.693985625,22.0180495429688],[113.716678496094,22.034926984375]]],[[[113.663922148438,22.0460353828125],[113.667345,22.033843],[113.655152617188,22.0372658515626],[113.663922148438,22.0460353828125]]],[[[113.921910429688,22.0465407539063],[113.927345,22.033843],[113.904346953125,22.0378957343751],[113.921910429688,22.0465407539063]]],[[[114.247345,22.033843],[114.258465605469,22.0477297187501],[114.307345,22.0538430000001],[114.29490359375,22.0377248359375],[114.282310820313,22.0395876289063],[114.247345,22.033843]]],[[[113.993922148438,22.0560353828125],[113.997345,22.043843],[113.985152617188,22.0472658515625],[113.993922148438,22.0560353828125]]],[[[114.307345,22.0538430000001],[114.310767851563,22.0660353828125],[114.319537382813,22.0572658515625],[114.307345,22.0538430000001]]],[[[113.497345,22.073843],[113.493922148438,22.0616506171875],[113.485152617188,22.0704201484376],[113.497345,22.073843]]],[[[113.703922148438,22.1060353828125],[113.707345,22.0938430000001],[113.695152617188,22.0972658515625],[113.703922148438,22.1060353828125]]],[[[114.040501738281,22.1177809882813],[114.047345,22.0938430000001],[114.022899199219,22.1008327460938],[114.040501738281,22.1177809882813]]],[[[113.873922148438,22.1260353828125],[113.877345,22.113843],[113.865152617188,22.1172658515626],[113.873922148438,22.1260353828125]]],[[[113.893922148438,22.1260353828125],[113.897345,22.113843],[113.885152617188,22.1172658515626],[113.893922148438,22.1260353828125]]],[[[113.823338652344,22.146567609375],[113.827345,22.123843],[113.814346953125,22.1294045234375],[113.823338652344,22.146567609375]]],[[[113.803922148438,22.1760353828125],[113.807345,22.163843],[113.795152617188,22.1672658515625],[113.803922148438,22.1760353828125]]],[[[113.607345,22.3238430000001],[113.610767851563,22.3360353828125],[113.619537382813,22.3272658515625],[113.607345,22.3238430000001]]],[[[113.607345,22.3238430000001],[113.603624296875,22.3175637031251],[113.574110136719,22.3078249335938],[113.584061308594,22.278843],[113.580628691406,22.268843],[113.590579863281,22.2398610664063],[113.556004667969,22.2284499335938],[113.547345,22.2138430000001],[113.537345,22.2138430000001],[113.527345,22.2138430000001],[113.527345,22.193843],[113.527345,22.183843],[113.527345,22.163843],[113.537345,22.163843],[113.543985625,22.1504836250001],[113.547345,22.113843],[113.540833769531,22.0983400703126],[113.561429472656,22.0841188789063],[113.552843046875,22.0776100898438],[113.531846953125,22.0823171210938],[113.497345,22.073843],[113.493260527344,22.0797585273438],[113.468983183594,22.088843],[113.474586210938,22.113843],[113.467135039063,22.1470827460938],[113.433209257813,22.1705055976562],[113.417345,22.163843],[113.413985625,22.1904836250001],[113.407345,22.203843],[113.452093535156,22.2116310859376],[113.472899199219,22.2282888007813],[113.481790800781,22.2393971992188],[113.51107546875,22.2628469062501],[113.487323027344,22.2818679023438],[113.470553007813,22.310395734375],[113.493079863281,22.3284352851563],[113.480477324219,22.3952663398438],[113.491790800781,22.4093971992187],[113.547345,22.413843],[113.562625761719,22.4091237617188],[113.572435332031,22.377358625],[113.611995878906,22.3797170234376],[113.613238554688,22.3588430000001],[113.583465605469,22.3451784492188],[113.607345,22.3238430000001]]],[[[113.799737578125,22.4275124335938],[113.817345,22.4038430000001],[113.773079863281,22.4158425117188],[113.799737578125,22.4275124335938]]],[[[113.631339140625,22.389848859375],[113.627345,22.383843],[113.603350859375,22.3997975898438],[113.61353640625,22.4253639960938],[113.661339140625,22.437407453125],[113.645872832031,22.3995143867188],[113.631339140625,22.389848859375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南澳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.283922148438,23.2660353828125],[117.287345,23.253843],[117.275152617188,23.2572658515626],[117.283922148438,23.2660353828125]]],[[[117.303922148438,23.2860353828125],[117.307345,23.2738430000001],[117.295152617188,23.2772658515625],[117.303922148438,23.2860353828125]]],[[[117.119229765625,23.4832643867187],[117.146441679688,23.4516799140625],[117.1319153125,23.4391677070313],[117.13408328125,23.4121950507813],[117.127345,23.3938430000001],[117.112584257813,23.399262921875],[117.102022734375,23.3984157539063],[117.090728789063,23.4115261054688],[117.035699492188,23.4071047187501],[117.000787382813,23.4199221015625],[116.974166289063,23.4177834296875],[116.93271609375,23.4307570625],[116.984742460938,23.46847190625],[117.00197390625,23.4484719062501],[117.02041140625,23.432583234375],[117.053316679688,23.4707741523438],[117.091363554688,23.4677175117188],[117.119229765625,23.4832643867187]]]]}},{"type":"Feature","properties":{"name":"濠江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.707345,23.343843],[116.747125273438,23.3370851875],[116.757345,23.323843],[116.76197390625,23.30847190625],[116.772764921875,23.2790822578126],[116.770709257813,23.2534963203125],[116.808404570313,23.2366774726563],[116.787345,23.2122365546875],[116.772667265625,23.2292702460938],[116.756651640625,23.227983625],[116.738585234375,23.26847190625],[116.7214465625,23.2589235664063],[116.733287382813,23.2487233710938],[116.677345,23.223843],[116.660704375,23.2272023750001],[116.65062625,23.24712425],[116.630704375,23.2572023750001],[116.617345,23.283608625],[116.629185820313,23.3078517890626],[116.610704375,23.317202375],[116.607345,23.343843],[116.634937773438,23.3378249335938],[116.707345,23.343843]]],[[[116.597345,23.343843],[116.592628203125,23.320483625],[116.564976835938,23.3289577460938],[116.577345,23.3538430000001],[116.597345,23.343843]]]]}},{"type":"Feature","properties":{"name":"金平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.627345,23.4338430000001],[116.632022734375,23.4284133125],[116.697345,23.4338430000001],[116.70197390625,23.4084719062501],[116.712784453125,23.3991579414062],[116.707345,23.343843],[116.634937773438,23.3378249335938],[116.607345,23.343843],[116.597345,23.343843],[116.577345,23.3538430000001],[116.573985625,23.3704836250001],[116.567345,23.383843],[116.571158476563,23.4100295234376],[116.586202421875,23.4314577460938],[116.575201445313,23.4667775703125],[116.611158476563,23.4376564765625],[116.627345,23.4338430000001]]]]}},{"type":"Feature","properties":{"name":"龙湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.767345,23.323843],[116.757345,23.323843],[116.747125273438,23.3370851875],[116.707345,23.343843],[116.712784453125,23.3991579414062],[116.70197390625,23.4084719062501],[116.697345,23.4338430000001],[116.697345,23.4638430000001],[116.707345,23.4638430000001],[116.734840117188,23.4238576484376],[116.76123171875,23.4027223945313],[116.767345,23.3538430000001],[116.767345,23.323843]]]]}},{"type":"Feature","properties":{"name":"澄海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.898878203125,23.6183180976563],[116.91326296875,23.5597585273437],[116.917345,23.553843],[116.879151640625,23.5494997382813],[116.89408328125,23.5391896796875],[116.8741028125,23.50851096875],[116.86107546875,23.4995143867187],[116.863468046875,23.488843],[116.86107546875,23.4781716132813],[116.8751965625,23.468423078125],[116.8394934375,23.459262921875],[116.85326296875,23.4497585273438],[116.86142703125,23.4156862617188],[116.827652617188,23.4232570625],[116.791007109375,23.3701808906251],[116.767345,23.3538430000001],[116.76123171875,23.4027223945313],[116.734840117188,23.4238576484376],[116.707345,23.4638430000001],[116.700240507813,23.5361061835938],[116.712926054688,23.558843],[116.701920195313,23.5785646796875],[116.703116484375,23.5934206367188],[116.726124296875,23.6084719062501],[116.752022734375,23.5784157539063],[116.779205351563,23.5805983710938],[116.79197390625,23.60921409375],[116.822867460938,23.6185158515626],[116.817345,23.643843],[116.85326296875,23.6397585273438],[116.86142703125,23.6279274726562],[116.898878203125,23.6183180976563]]]]}},{"type":"Feature","properties":{"name":"潮阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.347345,23.453843],[116.350767851563,23.4416506171875],[116.359537382813,23.4504201484376],[116.355728789063,23.4865041328125],[116.402066679688,23.5129518867187],[116.413121367188,23.4834084296875],[116.43380984375,23.4697585273438],[116.457345,23.5038430000001],[116.491900664063,23.4970973945313],[116.467574492188,23.4498805976563],[116.532545195313,23.4340431953126],[116.56224734375,23.3887429023438],[116.567345,23.383843],[116.573985625,23.3704836250001],[116.577345,23.3538430000001],[116.564976835938,23.3289577460938],[116.592628203125,23.320483625],[116.597345,23.343843],[116.607345,23.343843],[116.610704375,23.317202375],[116.629185820313,23.3078517890626],[116.617345,23.283608625],[116.630704375,23.2572023750001],[116.65062625,23.24712425],[116.660704375,23.2272023750001],[116.677345,23.223843],[116.66197390625,23.19921409375],[116.649932890625,23.1592311835938],[116.63271609375,23.1792140937501],[116.61197390625,23.1884719062501],[116.607345,23.193843],[116.619703398438,23.2259987617187],[116.558912382813,23.2382888007813],[116.542799101563,23.2181642890625],[116.531890898438,23.2195217109375],[116.520987578125,23.2059035468751],[116.467354765625,23.21257346875],[116.452896757813,23.2793971992188],[116.361060820313,23.2908815742188],[116.327345,23.303843],[116.32158328125,23.3287013984376],[116.323389921875,23.3409059882813],[116.350767851563,23.336860578125],[116.341607695313,23.398843],[116.343463164063,23.41140159375],[116.32170046875,23.42819846875],[116.317345,23.443843],[116.333985625,23.4472023750001],[116.347345,23.453843]]]]}},{"type":"Feature","properties":{"name":"潮南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.467354765625,23.21257346875],[116.520987578125,23.2059035468751],[116.531890898438,23.2195217109375],[116.542799101563,23.2181642890625],[116.558912382813,23.2382888007813],[116.619703398438,23.2259987617187],[116.607345,23.193843],[116.59142703125,23.1897585273438],[116.56201296875,23.1706032539062],[116.541568632813,23.1409963203125],[116.537345,23.103843],[116.512388945313,23.0977126289062],[116.482345,23.10444846875],[116.442271757813,23.09546409375],[116.42326296875,23.0679274726563],[116.376178007813,23.0410524726563],[116.36326296875,23.0597585273438],[116.34142703125,23.0679274726563],[116.330181914063,23.0979811835938],[116.29142703125,23.1079274726563],[116.252349882813,23.124341046875],[116.247345,23.143843],[116.2530871875,23.1788088203125],[116.251549101563,23.189233625],[116.263140898438,23.2084523750001],[116.260128203125,23.228843],[116.285167265625,23.2390920234375],[116.309654570313,23.2989162421875],[116.327345,23.303843],[116.361060820313,23.2908815742188],[116.452896757813,23.2793971992188],[116.467354765625,23.21257346875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"高明区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.467345,22.713843],[112.477345,22.713843],[112.477345,22.7038430000001],[112.467345,22.7038430000001],[112.467345,22.713843]]],[[[112.697345,22.713843],[112.693292265625,22.6908449531251],[112.684647246094,22.7084084296875],[112.697345,22.713843]]],[[[112.907345,22.873843],[112.917345,22.873843],[112.917345,22.8538430000001],[112.907345,22.8538430000001],[112.907345,22.873843]]],[[[112.697345,22.9338430000001],[112.672899199219,22.9408327460938],[112.690501738281,22.9577809882813],[112.697345,22.9338430000001]]],[[[112.907345,22.873843],[112.859971953125,22.8854787421876],[112.837345,22.843843],[112.848812285156,22.8146755195313],[112.811522246094,22.7994142890626],[112.815811796875,22.7703786445313],[112.801529570313,22.7593556953125],[112.804022246094,22.7424929023438],[112.792366972656,22.7273952460937],[112.741236601563,22.6894875312501],[112.71170046875,22.69819846875],[112.70298953125,22.70948753125],[112.697345,22.713843],[112.703389921875,22.7285549140625],[112.697027617188,22.7607570625],[112.679681425781,22.7573293281251],[112.68341921875,22.7384108710938],[112.666268339844,22.7113942695313],[112.647345,22.7377956367188],[112.633170195313,22.7180178046875],[112.617554960938,22.7068263984375],[112.602345,22.7098317695313],[112.589681425781,22.707329328125],[112.593455839844,22.6882228828125],[112.581519804688,22.6796681953126],[112.568995390625,22.662192609375],[112.543187285156,22.643696515625],[112.529791289063,22.6784279609375],[112.546868925781,22.6906691718751],[112.530142851563,22.7313722968751],[112.471619902344,22.7198073554688],[112.467345,22.713843],[112.440704375,22.710483625],[112.421031523438,22.6713210273438],[112.393985625,22.6867263007813],[112.404793730469,22.7088576484375],[112.390704375,22.737202375],[112.387345,22.773843],[112.472899199219,22.7982888007812],[112.511939726563,22.8295143867188],[112.532345,22.826977765625],[112.565179472656,22.8310622382813],[112.56037234375,22.8697096992187],[112.583192167969,22.8668727851563],[112.680662871094,22.9043386054688],[112.697345,22.9338430000001],[112.718104277344,22.9377638984375],[112.735404082031,22.9585060859375],[112.724166289063,22.9781081367188],[112.742081328125,22.991860578125],[112.7612903125,22.9808473945313],[112.7733996875,23.0068386054688],[112.792681914063,22.9957839179688],[112.810523710938,23.0106642890626],[112.827345,23.0138430000001],[112.83298953125,23.00948753125],[112.867345,22.963843],[112.869888945313,22.9263869453125],[112.904801054688,22.8912990546875],[112.907345,22.873843]]]]}},{"type":"Feature","properties":{"name":"南海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.907345,22.873843],[112.907345,22.8538430000001],[112.871429472656,22.8497585273438],[112.862994414063,22.8375417304688],[112.837345,22.843843],[112.859971953125,22.8854787421876],[112.907345,22.873843]]],[[[112.907345,22.873843],[112.904801054688,22.8912990546875],[112.869888945313,22.9263869453125],[112.867345,22.963843],[112.90170046875,22.9696804023438],[112.89298953125,22.9994875312501],[112.875728789063,23.0128102851563],[112.861224394531,23.1011061835938],[112.903612089844,23.1184548164063],[112.891170683594,23.1390773750001],[112.920260039063,23.161528546875],[112.93170046875,23.1894875312501],[112.943140898438,23.2084523750001],[112.940496855469,23.226352765625],[112.962735625,23.2296388984376],[112.983922148438,23.216860578125],[113.002345,23.2195827460938],[113.027088652344,23.2159255195313],[113.044486113281,23.2293556953125],[113.041529570313,23.2493556953126],[113.047345,23.253843],[113.0758215625,23.2583303046875],[113.069757109375,23.2853908515625],[113.103260527344,23.2979274726563],[113.121929960938,23.3100856757813],[113.147345,23.303843],[113.174681425781,23.2667629218751],[113.17107546875,23.2313893867188],[113.181883574219,23.2183815742188],[113.20150515625,23.2020803046875],[113.203834257813,23.179233625],[113.173267851563,23.153843],[113.207345,23.143843],[113.20025515625,23.114419171875],[113.205357695313,23.0885964179688],[113.163170195313,23.0774660468751],[113.204989042969,23.0487795234376],[113.247345,23.0438430000001],[113.254793730469,23.0288576484375],[113.2474621875,23.0138430000001],[113.254793730469,22.9988283515625],[113.247345,22.983843],[113.231429472656,22.9879274726563],[113.194666777344,23.0118679023438],[113.173260527344,22.9979274726563],[113.157345,22.993843],[113.15298953125,22.9994875312501],[113.141529570313,23.0083303046876],[113.143148222656,23.0192726875],[113.112183867188,23.0610353828125],[113.053975859375,23.0524343085938],[113.04298953125,23.03819846875],[112.993995390625,23.0278615546875],[112.979967070313,23.0299343085938],[112.983084746094,23.0088430000001],[112.979173613281,22.982387921875],[113.009874296875,22.9314919257813],[113.037345,22.923843],[113.045557890625,22.9181716132813],[113.041224394531,22.8988430000001],[113.043648710938,22.8880275703126],[113.003260527344,22.877661359375],[113.01322390625,22.8535939765626],[113.051329375,22.8272829414063],[113.057345,22.803843],[113.047345,22.803843],[113.041776152344,22.8113283515625],[112.977454863281,22.8002541328125],[112.951795683594,22.8347438789063],[112.917345,22.8538430000001],[112.917345,22.873843],[112.907345,22.873843]]]]}},{"type":"Feature","properties":{"name":"三水区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.967345,23.443843],[112.955152617188,23.4404201484375],[112.963922148438,23.4316506171875],[112.978997832031,23.4338039375001],[112.992996855469,23.4087136054688],[112.97271609375,23.3912404609375],[112.989364042969,23.3502883125001],[113.012623320313,23.3484181953126],[113.041756621094,23.364673078125],[113.021693144531,23.3287136054688],[113.032772246094,23.3191677070313],[113.031219511719,23.2998244453125],[113.04271609375,23.27921409375],[113.047345,23.253843],[113.041529570313,23.2493556953126],[113.044486113281,23.2293556953125],[113.027088652344,23.2159255195313],[113.002345,23.2195827460938],[112.983922148438,23.216860578125],[112.962735625,23.2296388984376],[112.940496855469,23.226352765625],[112.943140898438,23.2084523750001],[112.93170046875,23.1894875312501],[112.920260039063,23.161528546875],[112.891170683594,23.1390773750001],[112.903612089844,23.1184548164063],[112.861224394531,23.1011061835938],[112.875728789063,23.0128102851563],[112.89298953125,22.9994875312501],[112.90170046875,22.9696804023438],[112.867345,22.963843],[112.83298953125,23.00948753125],[112.827345,23.0138430000001],[112.813170195313,23.0696681953125],[112.801519804688,23.0980178046875],[112.789495878906,23.1579982734375],[112.767345,23.1638430000001],[112.761688261719,23.2091237617188],[112.767345,23.223843],[112.77298953125,23.21948753125],[112.782542753906,23.2071096015625],[112.792345,23.231059796875],[112.802147246094,23.2071096015625],[112.811832304688,23.2196584296875],[112.822784453125,23.2180397773438],[112.84170046875,23.2327614570313],[112.821095,23.24866721875],[112.850897246094,23.2888649726563],[112.86298953125,23.29819846875],[112.876512480469,23.3467653632813],[112.86170046875,23.35819846875],[112.839271269531,23.3872585273438],[112.808426542969,23.3981984687501],[112.79298953125,23.37819846875],[112.77298953125,23.3696047187501],[112.793219023438,23.4389919257813],[112.83298953125,23.48819846875],[112.848231230469,23.5254396796875],[112.83170046875,23.53819846875],[112.82298953125,23.54948753125],[112.817345,23.553843],[112.821529570313,23.5701467109375],[112.832345,23.5677223945313],[112.8536340625,23.57249534375],[112.903260527344,23.5597585273437],[112.907345,23.553843],[112.883260527344,23.5173976875],[112.901651640625,23.4875661445313],[112.915697050781,23.4907155585938],[112.937955351563,23.4584743476563],[112.967345,23.453843],[112.967345,23.443843]]]]}},{"type":"Feature","properties":{"name":"顺德区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.247345,22.983843],[113.253900175781,22.9620729804688],[113.285338164063,22.9480446601563],[113.271807890625,22.8986135078125],[113.291937285156,22.8812721992188],[113.31197390625,22.82847190625],[113.391810332031,22.8163063789063],[113.362535429688,22.7910842109375],[113.357345,22.773843],[113.350238066406,22.7646364570313],[113.32298953125,22.74819846875],[113.28170046875,22.73948753125],[113.262110625,22.7276686835938],[113.246263457031,22.74819846875],[113.231082792969,22.7391164375],[113.20170046875,22.6994875312501],[113.192010527344,22.6758107734376],[113.157345,22.683843],[113.14170046875,22.68819846875],[113.085477324219,22.7103029609375],[113.07298953125,22.7694875312501],[113.057345,22.803843],[113.051329375,22.8272829414063],[113.01322390625,22.8535939765626],[113.003260527344,22.877661359375],[113.043648710938,22.8880275703126],[113.041224394531,22.8988430000001],[113.045557890625,22.9181716132813],[113.037345,22.923843],[113.041610136719,22.9295778632813],[113.056356230469,22.9405471015625],[113.048309355469,22.9872853828125],[113.112345,22.9762599921875],[113.148953886719,22.982563703125],[113.157345,22.993843],[113.173260527344,22.9979274726563],[113.194666777344,23.0118679023438],[113.231429472656,22.9879274726563],[113.247345,22.983843]]]]}},{"type":"Feature","properties":{"name":"禅城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.112183867188,23.0610353828125],[113.143148222656,23.0192726875],[113.141529570313,23.0083303046876],[113.15298953125,22.9994875312501],[113.157345,22.993843],[113.148953886719,22.982563703125],[113.112345,22.9762599921875],[113.048309355469,22.9872853828125],[113.056356230469,22.9405471015625],[113.041610136719,22.9295778632813],[113.037345,22.923843],[113.009874296875,22.9314919257813],[112.979173613281,22.982387921875],[112.983084746094,23.0088430000001],[112.979967070313,23.0299343085938],[112.993995390625,23.0278615546875],[113.04298953125,23.03819846875],[113.053975859375,23.0524343085938],[113.112183867188,23.0610353828125]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"江海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.148250761719,22.5120607734376],[113.07906375,22.4848635078125],[113.067345,22.5538430000001],[113.10170046875,22.59948753125],[113.157345,22.603843],[113.17123171875,22.5927223945313],[113.177345,22.543843],[113.17298953125,22.53819846875],[113.16170046875,22.52948753125],[113.148250761719,22.5120607734376]]]]}},{"type":"Feature","properties":{"name":"蓬江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.148944121094,22.6238430000001],[113.157345,22.603843],[113.10170046875,22.59948753125],[113.067345,22.5538430000001],[113.050885039063,22.5573830390626],[113.043265410156,22.57128440625],[113.032345,22.566782453125],[113.017345,22.57296409375],[113.002345,22.566782453125],[112.9919153125,22.5710817695313],[112.964671660156,22.5504763007813],[112.957345,22.563843],[112.961519804688,22.5696681953126],[112.978253203125,22.5816603828126],[112.95947390625,22.6112404609375],[112.93638796875,22.6066774726563],[112.923170195313,22.637466046875],[112.963170195313,22.6480178046875],[112.984742460938,22.66171409375],[112.979332304688,22.6890895820313],[113.013170195313,22.6980178046876],[113.023345976563,22.7487770820313],[113.020369902344,22.763843],[113.025125761719,22.7879177070313],[113.047345,22.803843],[113.057345,22.803843],[113.07298953125,22.7694875312501],[113.085477324219,22.7103029609375],[113.14170046875,22.68819846875],[113.157345,22.683843],[113.163543730469,22.6586037421875],[113.148944121094,22.6238430000001]]]]}},{"type":"Feature","properties":{"name":"台山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.787345,21.573843],[112.799537382813,21.5704201484375],[112.790767851563,21.5616506171875],[112.787345,21.573843]]],[[[112.807345,21.583843],[112.819537382813,21.5804201484376],[112.810767851563,21.5716506171875],[112.807345,21.583843]]],[[[112.757345,21.593843],[112.753922148438,21.5816506171876],[112.745152617188,21.5904201484375],[112.757345,21.593843]]],[[[112.653922148438,21.6060353828125],[112.657345,21.593843],[112.645152617188,21.5972658515625],[112.653922148438,21.6060353828125]]],[[[112.591910429688,21.6065407539063],[112.597345,21.593843],[112.574346953125,21.597895734375],[112.591910429688,21.6065407539063]]],[[[112.896886015625,21.6151442695313],[112.887345,21.593843],[112.863531523438,21.6085158515626],[112.896886015625,21.6151442695313]]],[[[112.663922148438,21.6260353828125],[112.667345,21.613843],[112.655152617188,21.6172658515626],[112.663922148438,21.6260353828125]]],[[[112.673922148438,21.6560353828126],[112.677345,21.6438430000001],[112.665152617188,21.6472658515625],[112.673922148438,21.6560353828126]]],[[[112.453001738281,21.692036359375],[112.457345,21.653843],[112.429644804688,21.6582082343751],[112.453001738281,21.692036359375]]],[[[112.683922148438,21.7160353828125],[112.687345,21.703843],[112.675152617188,21.7072658515625],[112.683922148438,21.7160353828125]]],[[[112.631883574219,21.6293044257813],[112.608136015625,21.6157057929688],[112.555985136719,21.6210207343751],[112.541617460938,21.6090846992188],[112.547345,21.593843],[112.522806425781,21.6010427070313],[112.533316679688,21.6221901679688],[112.561658964844,21.6457326484375],[112.571883574219,21.6693044257813],[112.592896757813,21.6784206367188],[112.590916777344,21.6978517890625],[112.660960722656,21.7174343085938],[112.663053007813,21.6968923164062],[112.623267851563,21.663843],[112.653538847656,21.6386989570313],[112.631883574219,21.6293044257813]]],[[[112.807345,21.583843],[112.787345,21.583843],[112.787345,21.573843],[112.767345,21.573843],[112.767345,21.593843],[112.757345,21.593843],[112.752647734375,21.6195925117188],[112.722933378906,21.6030129218751],[112.748883085938,21.6495217109375],[112.772249785156,21.6476442695313],[112.79197390625,21.6824294257813],[112.737345,21.6780397773438],[112.722345,21.6792458320313],[112.711099882813,21.6783400703126],[112.714100371094,21.7157033515626],[112.745655546875,21.7297829414063],[112.768038359375,21.7279836250001],[112.781998320313,21.7592726875],[112.792669707031,21.7584157539063],[112.802020292969,21.7692702460938],[112.812345,21.7684401679687],[112.861097441406,21.772358625],[112.87197390625,21.7512575507813],[112.828233671875,21.7380886054688],[112.797044707031,21.701889875],[112.812896757813,21.6587258125],[112.789039335938,21.6250783515626],[112.807345,21.583843]]],[[[113.047017851563,21.87370628125],[113.037345,21.853843],[113.003895292969,21.858188703125],[113.020350371094,21.8872927070313],[113.047017851563,21.87370628125]]],[[[112.387345,21.933843],[112.393407011719,21.9054665351563],[112.413460722656,21.7736452460938],[112.402625761719,21.7385622382812],[112.372064238281,21.7291237617188],[112.342545195313,21.7185329414063],[112.332113066406,21.7191555000001],[112.307345,21.703843],[112.301092558594,21.7418996406251],[112.32298953125,21.77819846875],[112.358150664063,21.8655007148438],[112.341529570313,21.8783303046875],[112.343822050781,21.893843],[112.34156375,21.90913596875],[112.347345,21.923843],[112.363326445313,21.9158986640626],[112.370704375,21.930483625],[112.387345,21.933843]]],[[[112.627345,21.783843],[112.623922148438,21.7960353828125],[112.615152617188,21.7872658515625],[112.614312773438,21.7692580390625],[112.558255644531,21.7659181953125],[112.423031035156,21.822329328125],[112.421749296875,21.843843],[112.423238554688,21.8688430000001],[112.422047148438,21.888843],[112.4226575,21.8990969062501],[112.408414335938,21.911821515625],[112.49197390625,21.9376247382813],[112.493519316406,21.9635622382813],[112.462064238281,21.9491237617188],[112.442569609375,21.9385305000001],[112.432345,21.9391408515625],[112.413841582031,21.9380373359375],[112.402064238281,21.9485622382813],[112.382625761719,21.9791237617187],[112.377345,21.9838430000001],[112.380704375,22.0004836250001],[112.408116484375,22.0083937812501],[112.3874621875,22.0188430000001],[112.405289335938,22.0278615546876],[112.397345,22.043843],[112.393260527344,22.0497585273438],[112.370301542969,22.0583498359375],[112.360714140625,22.1011208320313],[112.371429472656,22.1297585273438],[112.397345,22.1338430000001],[112.412891875,22.1068776679688],[112.470289335938,22.1114894843751],[112.483470488281,22.0878615546875],[112.477987089844,22.0195949531251],[112.497345,22.0180397773438],[112.518070097656,22.0197048164063],[112.604398222656,21.9715383125],[112.622899199219,22.0391335273438],[112.58271609375,22.0570632148437],[112.59197390625,22.08921409375],[112.620750761719,22.114009015625],[112.623551054688,22.148843],[112.60197390625,22.1584719062501],[112.59271609375,22.17921409375],[112.581165800781,22.1891677070312],[112.584876738281,22.2353444648438],[112.56271609375,22.2750612617188],[112.593502226563,22.28995628125],[112.619034453125,22.2879030585938],[112.645877714844,22.2998805976563],[112.641180449219,22.3583473945313],[112.659522734375,22.3598220039063],[112.672166777344,22.3178322578125],[112.68197390625,22.32921409375],[112.716793242188,22.344751203125],[112.735113554688,22.3605373359375],[112.753424101563,22.4104006171875],[112.750836210938,22.4426100898438],[112.807345,22.4338430000001],[112.81298953125,22.4294875312501],[112.82170046875,22.4081984687501],[112.857225371094,22.3869533515625],[112.87170046875,22.36819846875],[112.898311796875,22.357309796875],[112.924234648438,22.3139626289062],[112.949127226563,22.2947487617187],[112.963138457031,22.259106671875],[112.94814578125,22.1678395820313],[112.999659453125,22.1467580390625],[113.017345,22.123843],[113.00298953125,22.08819846875],[112.97298953125,22.0759206367188],[113.00170046875,22.03819846875],[113.013160429688,22.0293556953126],[113.00834109375,21.9967482734375],[113.027081328125,21.949077375],[112.980924101563,21.9134499335938],[112.984244414063,21.8909914375],[112.93170046875,21.86948753125],[112.916263457031,21.84948753125],[112.892513457031,21.863696515625],[112.871549101563,21.898452375],[112.875596953125,21.9258498359375],[112.835484648438,21.9500466132813],[112.822345,21.9481032539063],[112.80060671875,21.9513161445313],[112.757508574219,21.9336794257813],[112.742345,21.896626203125],[112.717738066406,21.9002638984376],[112.679659453125,21.8509279609375],[112.651522246094,21.8394142890625],[112.653507109375,21.8259743476563],[112.64298953125,21.78819846875],[112.627345,21.783843]]]]}},{"type":"Feature","properties":{"name":"开平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.597345,22.563843],[112.600767851563,22.5516506171875],[112.609537382813,22.5604201484375],[112.60205203125,22.6042360664063],[112.658292265625,22.5811257148438],[112.702965117188,22.5899538398438],[112.711519804688,22.5780178046876],[112.723455839844,22.5694631171875],[112.721234160156,22.5582228828125],[112.750870390625,22.5369826484375],[112.739681425781,22.480356671875],[112.762345,22.4758791328126],[112.782633085938,22.479887921875],[112.797345,22.4738430000001],[112.803985625,22.4604836250001],[112.807345,22.4338430000001],[112.750836210938,22.4426100898438],[112.753424101563,22.4104006171875],[112.735113554688,22.3605373359375],[112.716793242188,22.344751203125],[112.68197390625,22.32921409375],[112.672166777344,22.3178322578125],[112.659522734375,22.3598220039063],[112.641180449219,22.3583473945313],[112.645877714844,22.2998805976563],[112.619034453125,22.2879030585938],[112.593502226563,22.28995628125],[112.56271609375,22.2750612617188],[112.584876738281,22.2353444648438],[112.581165800781,22.1891677070312],[112.59271609375,22.17921409375],[112.60197390625,22.1584719062501],[112.623551054688,22.148843],[112.620750761719,22.114009015625],[112.59197390625,22.08921409375],[112.58271609375,22.0570632148437],[112.622899199219,22.0391335273438],[112.604398222656,21.9715383125],[112.518070097656,22.0197048164063],[112.497345,22.0180397773438],[112.477987089844,22.0195949531251],[112.483470488281,22.0878615546875],[112.470289335938,22.1114894843751],[112.412891875,22.1068776679688],[112.397345,22.1338430000001],[112.406600371094,22.1645876289063],[112.424205351563,22.2125221992188],[112.483189726563,22.2633400703125],[112.481942167969,22.278843],[112.483951445313,22.303843],[112.480345488281,22.3487258125],[112.51271609375,22.35847190625],[112.53197390625,22.40483909375],[112.47197390625,22.4184719062501],[112.45271609375,22.44921409375],[112.44197390625,22.4584719062501],[112.428949003906,22.4735866523438],[112.387178984375,22.4984719062501],[112.348089628906,22.4530983710938],[112.323856230469,22.43222190625],[112.30271609375,22.39847190625],[112.292823515625,22.38921409375],[112.237345,22.413843],[112.231529570313,22.4293190742188],[112.264908476563,22.5062795234375],[112.292806425781,22.5183815742188],[112.303499785156,22.5783815742188],[112.322896757813,22.569262921875],[112.320882597656,22.5495021796875],[112.337982207031,22.547759015625],[112.373053007813,22.5768923164062],[112.371795683594,22.5892336250001],[112.382806425781,22.5983815742188],[112.4131653125,22.6683815742187],[112.428514433594,22.6539333320313],[112.444290800781,22.6001735664063],[112.474608183594,22.5970827460938],[112.517345,22.603843],[112.522198515625,22.5849318671875],[112.591429472656,22.5679274726563],[112.597345,22.563843]]]]}},{"type":"Feature","properties":{"name":"恩平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.177345,22.373843],[112.180767851563,22.3616506171875],[112.189537382813,22.3704201484375],[112.192882109375,22.4024318671875],[112.237345,22.413843],[112.292823515625,22.38921409375],[112.30271609375,22.39847190625],[112.323856230469,22.43222190625],[112.348089628906,22.4530983710938],[112.387178984375,22.4984719062501],[112.428949003906,22.4735866523438],[112.44197390625,22.4584719062501],[112.45271609375,22.44921409375],[112.47197390625,22.4184719062501],[112.53197390625,22.40483909375],[112.51271609375,22.35847190625],[112.480345488281,22.3487258125],[112.483951445313,22.303843],[112.481942167969,22.278843],[112.483189726563,22.2633400703125],[112.424205351563,22.2125221992188],[112.406600371094,22.1645876289063],[112.397345,22.1338430000001],[112.371429472656,22.1297585273438],[112.360714140625,22.1011208320313],[112.370301542969,22.0583498359375],[112.393260527344,22.0497585273438],[112.397345,22.043843],[112.381158476563,22.0400295234376],[112.364671660156,21.9916530585938],[112.377345,21.9838430000001],[112.369700957031,21.9684645820313],[112.383985625,21.950483625],[112.387345,21.933843],[112.370704375,21.930483625],[112.363326445313,21.9158986640626],[112.347345,21.923843],[112.341429472656,21.9279274726563],[112.333260527344,21.9497585273438],[112.313792753906,21.979653546875],[112.271429472656,21.9879274726562],[112.263260527344,21.9997585273438],[112.214324980469,22.0180690742188],[112.223465605469,22.0588430000001],[112.220081816406,22.07394065625],[112.191898222656,22.0676222968751],[112.164176054688,22.0856740546875],[112.127254667969,22.0994899726563],[112.113260527344,22.1197585273438],[112.090303984375,22.1356081367188],[112.032301054688,22.1176296210938],[112.013260527344,22.1241188789063],[112.045474882813,22.1463600898438],[112.030960722656,22.1686452460938],[112.044989042969,22.2020436835938],[112.039752226563,22.2254055],[111.997345,22.2538430000001],[112.005301542969,22.2658083320313],[112.022345,22.270102765625],[112.038363066406,22.2660671210938],[112.063734160156,22.2983254218751],[112.061085234375,22.308843],[112.063604765625,22.3188430000001],[112.059471464844,22.3352468085938],[112.092847929688,22.35753440625],[112.144705839844,22.344468],[112.140064726563,22.3628932929688],[112.151339140625,22.379848859375],[112.157345,22.383843],[112.177345,22.373843]]]]}},{"type":"Feature","properties":{"name":"鹤山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.597345,22.563843],[112.609537382813,22.5604201484375],[112.600767851563,22.5516506171875],[112.597345,22.563843]]],[[[112.597345,22.563843],[112.591429472656,22.5679274726563],[112.522198515625,22.5849318671875],[112.517345,22.603843],[112.508216582031,22.6394191718751],[112.477345,22.7038430000001],[112.477345,22.713843],[112.467345,22.713843],[112.471619902344,22.7198073554688],[112.530142851563,22.7313722968751],[112.546868925781,22.6906691718751],[112.529791289063,22.6784279609375],[112.543187285156,22.643696515625],[112.568995390625,22.662192609375],[112.581519804688,22.6796681953126],[112.593455839844,22.6882228828125],[112.589681425781,22.707329328125],[112.602345,22.7098317695313],[112.617554960938,22.7068263984375],[112.633170195313,22.7180178046875],[112.647345,22.7377956367188],[112.666268339844,22.7113942695313],[112.68341921875,22.7384108710938],[112.679681425781,22.7573293281251],[112.697027617188,22.7607570625],[112.703389921875,22.7285549140625],[112.697345,22.713843],[112.684647246094,22.7084084296875],[112.693292265625,22.6908449531251],[112.697345,22.713843],[112.70298953125,22.70948753125],[112.71170046875,22.69819846875],[112.741236601563,22.6894875312501],[112.792366972656,22.7273952460937],[112.804022246094,22.7424929023438],[112.801529570313,22.7593556953125],[112.815811796875,22.7703786445313],[112.811522246094,22.7994142890626],[112.848812285156,22.8146755195313],[112.837345,22.843843],[112.862994414063,22.8375417304688],[112.871429472656,22.8497585273438],[112.907345,22.8538430000001],[112.917345,22.8538430000001],[112.951795683594,22.8347438789063],[112.977454863281,22.8002541328125],[113.041776152344,22.8113283515625],[113.047345,22.803843],[113.025125761719,22.7879177070313],[113.020369902344,22.763843],[113.023345976563,22.7487770820313],[113.013170195313,22.6980178046876],[112.979332304688,22.6890895820313],[112.984742460938,22.66171409375],[112.963170195313,22.6480178046875],[112.923170195313,22.637466046875],[112.93638796875,22.6066774726563],[112.95947390625,22.6112404609375],[112.978253203125,22.5816603828126],[112.961519804688,22.5696681953126],[112.957345,22.563843],[112.932100859375,22.5581081367188],[112.91095828125,22.5705373359375],[112.885318632813,22.5673464179687],[112.849212675781,22.5461232734375],[112.791163359375,22.5533425117188],[112.793587675781,22.533843],[112.791722441406,22.5188405585938],[112.797345,22.4738430000001],[112.782633085938,22.479887921875],[112.762345,22.4758791328126],[112.739681425781,22.480356671875],[112.750870390625,22.5369826484375],[112.721234160156,22.5582228828125],[112.723455839844,22.5694631171875],[112.711519804688,22.5780178046876],[112.702965117188,22.5899538398438],[112.658292265625,22.5811257148438],[112.60205203125,22.6042360664063],[112.597345,22.563843]]]]}},{"type":"Feature","properties":{"name":"新会区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.017345,22.57296409375],[113.032345,22.566782453125],[113.043265410156,22.57128440625],[113.050885039063,22.5573830390626],[113.067345,22.5538430000001],[113.07906375,22.4848635078125],[113.148250761719,22.5120607734376],[113.16170046875,22.52948753125],[113.17298953125,22.53819846875],[113.177345,22.543843],[113.214534941406,22.511801984375],[113.241209746094,22.4639943671875],[113.247345,22.4038430000001],[113.232628203125,22.3981862617188],[113.21373171875,22.4005373359376],[113.192345,22.38796409375],[113.172899199219,22.3993971992188],[113.152899199219,22.4004640937501],[113.191336699219,22.3478444648438],[113.158470488281,22.2327419257813],[113.127345,22.223843],[113.117345,22.223843],[113.117345,22.2138430000001],[113.09158328125,22.2201711250001],[113.080714140625,22.1911208320313],[113.084586210938,22.1738430000001],[113.080560332031,22.1558815742188],[113.047652617188,22.1632570625001],[113.023260527344,22.1279274726563],[113.017345,22.123843],[112.999659453125,22.1467580390625],[112.94814578125,22.1678395820313],[112.963138457031,22.259106671875],[112.949127226563,22.2947487617187],[112.924234648438,22.3139626289062],[112.898311796875,22.357309796875],[112.87170046875,22.36819846875],[112.857225371094,22.3869533515625],[112.82170046875,22.4081984687501],[112.81298953125,22.4294875312501],[112.807345,22.4338430000001],[112.803985625,22.4604836250001],[112.797345,22.4738430000001],[112.791722441406,22.5188405585938],[112.793587675781,22.533843],[112.791163359375,22.5533425117188],[112.849212675781,22.5461232734375],[112.885318632813,22.5673464179687],[112.91095828125,22.5705373359375],[112.932100859375,22.5581081367188],[112.957345,22.563843],[112.964671660156,22.5504763007813],[112.9919153125,22.5710817695313],[113.002345,22.566782453125],[113.017345,22.57296409375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"赤坎区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.362345,21.3237258125],[110.383563261719,21.3027565742188],[110.387345,21.313843],[110.42041140625,21.309673078125],[110.403336210938,21.2759181953125],[110.383985625,21.2853664375001],[110.390704375,21.267202375],[110.403985625,21.260483625],[110.407345,21.243843],[110.389144316406,21.2361989570313],[110.367074003906,21.2411452460938],[110.337345,21.233843],[110.343587675781,21.2592580390626],[110.331124296875,21.2783962226563],[110.333616972656,21.2895143867187],[110.321429472656,21.2979274726563],[110.317345,21.303843],[110.344801054688,21.3063869453125],[110.362345,21.3237258125]]]]}},{"type":"Feature","properties":{"name":"雷州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.937345,20.4638430000001],[109.924442167969,20.4403029609375],[109.915030546875,20.4590431953126],[109.937345,20.4638430000001]]],[[[110.377345,20.813843],[110.380767851563,20.8260353828125],[110.389537382813,20.8172658515626],[110.377345,20.813843]]],[[[110.377345,20.813843],[110.383529082031,20.7991213203126],[110.381224394531,20.788843],[110.391429472656,20.7433205390626],[110.377415800781,20.6997585273438],[110.351429472656,20.7279274726563],[110.336676054688,20.7673561835938],[110.323260527344,20.7479274726563],[110.307345,20.743843],[110.303922148438,20.7560353828125],[110.295152617188,20.7472658515626],[110.307345,20.743843],[110.311319609375,20.7269655585938],[110.323919707031,20.7308913398438],[110.33420046875,20.6978835273438],[110.297672148438,20.685434796875],[110.307345,20.663843],[110.284620390625,20.6598366523438],[110.301783476563,20.650844953125],[110.307345,20.663843],[110.323841582031,20.6720436835938],[110.327345,20.633843],[110.311607695313,20.61105003125],[110.277254667969,20.5981960273438],[110.261329375,20.5751296210938],[110.201429472656,20.5597585273438],[110.162720976563,20.5297585273438],[110.131429472656,20.5379274726562],[110.120203886719,20.5679274726563],[110.093707304688,20.5432595039063],[110.115194121094,20.528423078125],[110.078031035156,20.5188869453126],[110.094832792969,20.4646877265625],[110.083260527344,20.4479274726563],[110.071429472656,20.4397585273438],[110.062691679688,20.42710471875],[110.034700957031,20.4453322578125],[110.007345,20.433843],[109.981519804688,20.4480178046876],[109.967345,20.4677956367188],[109.952345,20.4468679023438],[109.943170195313,20.4596681953125],[109.937345,20.4638430000001],[109.9330871875,20.4799782539063],[109.912965117188,20.476001203125],[109.899835234375,20.4943215156251],[109.831519804688,20.5080178046875],[109.813170195313,20.5336843085938],[109.833455839844,20.5482228828126],[109.8262121875,20.5848757148438],[109.801619902344,20.6236110664063],[109.777554960938,20.6408596015625],[109.752345,20.6358791328125],[109.739791289063,20.6684279609375],[109.768204375,20.688794171875],[109.787345,20.693843],[109.790704375,20.687202375],[109.81552859375,20.680483625],[109.827345,20.703843],[109.839537382813,20.7072658515626],[109.830767851563,20.7160353828125],[109.827345,20.703843],[109.803372832031,20.7157595039063],[109.793985625,20.697202375],[109.787345,20.693843],[109.78298953125,20.69948753125],[109.77170046875,20.70819846875],[109.7476965625,20.7392995429688],[109.764295683594,20.7815261054688],[109.757345,20.823843],[109.769537382813,20.8272658515626],[109.760767851563,20.8360353828125],[109.757345,20.823843],[109.75197390625,20.82847190625],[109.742166777344,20.8398537421875],[109.729935332031,20.7992311835938],[109.717345,20.813843],[109.729537382813,20.8172658515626],[109.720767851563,20.8260353828125],[109.717345,20.813843],[109.71170046875,20.8181984687501],[109.6728528125,20.8696681953125],[109.66298953125,20.9427614570313],[109.683160429688,20.9583303046875],[109.678455839844,20.9901564765625],[109.69490359375,20.9877248359376],[109.707345,21.003843],[109.734700957031,21.0153322578125],[109.762904082031,20.9969680000001],[109.793260527344,21.0179274726563],[109.812274199219,21.04546409375],[109.832850371094,21.0500759101563],[109.871969023438,21.0197585273438],[109.874620390625,21.0365236640625],[109.860833769531,21.0693459296876],[109.873616972656,21.0781716132813],[109.867191191406,21.1068312812501],[109.886654082031,21.1202712226563],[109.903682890625,21.1657790351563],[109.937345,21.173325421875],[109.962623320313,21.1676589179688],[110.002215605469,21.1842897773438],[110.05002078125,21.1512819648438],[110.067845488281,21.1088430000001],[110.043260527344,21.0503102851562],[110.055531035156,21.0317116523438],[110.101673613281,21.0420558906251],[110.111429472656,21.0279274726563],[110.117345,21.0238430000001],[110.124918242188,21.008872296875],[110.153985625,21.000483625],[110.157345,20.983843],[110.164881621094,20.9642360664063],[110.161261015625,20.9351247382813],[110.171790800781,20.8982888007813],[110.183941679688,20.8666799140625],[110.180887480469,20.8421340156251],[110.222345,20.836977765625],[110.305907011719,20.8473708320313],[110.377345,20.813843]],[[109.835152617188,20.5772658515625],[109.847345,20.5738430000001],[109.843922148438,20.5860353828126],[109.835152617188,20.5772658515625]],[[109.925152617188,20.4972658515625],[109.937345,20.4938430000001],[109.933922148438,20.5060353828125],[109.925152617188,20.4972658515625]]]]}},{"type":"Feature","properties":{"name":"廉江市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.197345,21.433843],[110.209537382813,21.4304201484376],[110.200767851563,21.4216506171875],[110.197345,21.433843]]],[[[110.417345,21.583843],[110.420577421875,21.6060280585938],[110.438958769531,21.5869924140625],[110.417345,21.583843]]],[[[110.403338652344,21.696567609375],[110.407345,21.6738430000001],[110.394346953125,21.6794045234375],[110.403338652344,21.696567609375]]],[[[110.377345,21.783843],[110.390343046875,21.7782814765626],[110.381351347656,21.761118390625],[110.377345,21.783843]]],[[[110.377345,21.783843],[110.371883574219,21.7793044257813],[110.360167265625,21.7652028632813],[110.363834257813,21.729233625],[110.343267851563,21.7121486640626],[110.382894316406,21.6792336250001],[110.381636992188,21.6668923164063],[110.402894316406,21.649233625],[110.400816679688,21.628843],[110.404298125,21.5946804023438],[110.417345,21.583843],[110.433905058594,21.559858625],[110.473260527344,21.5497585273438],[110.481529570313,21.5175392890626],[110.500189238281,21.5217214179688],[110.507345,21.493843],[110.49406375,21.48712425],[110.487345,21.473843],[110.480704375,21.4604836250001],[110.477345,21.4438430000001],[110.435804472656,21.4391188789063],[110.403260527344,21.4179274726562],[110.387345,21.4138430000001],[110.377345,21.4138430000001],[110.37170046875,21.4181984687501],[110.36298953125,21.42948753125],[110.318975859375,21.438774640625],[110.30298953125,21.45948753125],[110.270699492188,21.4727028632813],[110.274127226563,21.4958962226563],[110.191981230469,21.5098513007813],[110.179530058594,21.4937184882812],[110.19298953125,21.45948753125],[110.197345,21.433843],[110.16422,21.45491721875],[110.136143828125,21.4198537421875],[110.10095828125,21.4405373359375],[110.077345,21.4376003242188],[110.062183867188,21.4394850898438],[109.982345,21.4213503242188],[109.927345,21.433843],[109.92170046875,21.43819846875],[109.912803984375,21.47015159375],[109.878961210938,21.4497365546876],[109.803746367188,21.4608522773437],[109.79021609375,21.5094411445313],[109.793160429688,21.5293556953126],[109.773065214844,21.5448635078125],[109.76298953125,21.56948753125],[109.747345,21.573843],[109.747345,21.583843],[109.739595976563,21.6153932929688],[109.753260527344,21.6479274726563],[109.757345,21.663843],[109.769058867188,21.6779470039063],[109.786724882813,21.6372145820312],[109.904788847656,21.6598635078125],[109.901803007813,21.6891652656251],[109.912806425781,21.7083815742188],[109.921883574219,21.7293044257813],[109.932894316406,21.738452375],[109.931326933594,21.7538430000001],[109.933873320313,21.778843],[109.931807890625,21.7991091132813],[109.943682890625,21.8307106757813],[109.941793242188,21.8492507148438],[109.991126738281,21.8796804023438],[110.064151640625,21.863423078125],[110.092022734375,21.8793849921875],[110.102735625,21.8782936835938],[110.120394316406,21.8995510078125],[110.137345,21.8978249335938],[110.152345,21.8993532539063],[110.162345,21.8983327460938],[110.17255984375,21.8993752265625],[110.222816191406,21.8853224921875],[110.267432890625,21.8898708320313],[110.287345,21.913843],[110.304801054688,21.9112990546875],[110.319888945313,21.8963869453125],[110.387345,21.893843],[110.395394316406,21.860434796875],[110.382345,21.8578542304688],[110.346512480469,21.8649367500001],[110.334132109375,21.8022805000001],[110.373118925781,21.8099831367187],[110.377345,21.783843]]],[[[110.427345,21.9438430000001],[110.439537382813,21.9404201484375],[110.430767851563,21.9316506171876],[110.427345,21.9438430000001]]],[[[110.417345,21.9438430000001],[110.397345,21.913843],[110.390885039063,21.9173830390626],[110.383804960938,21.9303029609376],[110.364100371094,21.9411013007813],[110.387345,21.953843],[110.403985625,21.950483625],[110.417345,21.9438430000001]]],[[[110.427345,21.9438430000001],[110.417345,21.9438430000001],[110.422345,21.9566506171875],[110.427345,21.9438430000001]]]]}},{"type":"Feature","properties":{"name":"麻章区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.503922148438,20.9160353828125],[110.507345,20.903843],[110.495152617188,20.9072658515625],[110.503922148438,20.9160353828125]]],[[[110.612899199219,20.8882888007813],[110.597345,20.863843],[110.561143828125,20.8741921210938],[110.563023710938,20.8892971015625],[110.551229277344,20.8987404609375],[110.594469023438,20.9527370429688],[110.640784941406,20.9246047187501],[110.621790800781,20.9093971992188],[110.612899199219,20.8882888007813]]],[[[110.247345,20.963843],[110.257345,20.963843],[110.252345,20.9510353828125],[110.247345,20.963843]]],[[[110.247345,20.963843],[110.197083769531,20.9403737617188],[110.203468046875,20.968852765625],[110.247345,20.973843],[110.247345,20.963843]]],[[[110.257345,20.963843],[110.257345,20.973843],[110.247345,20.973843],[110.251883574219,20.9793044257813],[110.268270292969,20.9929177070313],[110.298831816406,21.0297096992188],[110.327928496094,21.0267458320313],[110.301326933594,21.048843],[110.312806425781,21.0583815742188],[110.321883574219,21.0693044257813],[110.362806425781,21.0783815742188],[110.397345,21.0981618476563],[110.427479277344,21.0493044257812],[110.472806425781,21.0583815742188],[110.526033964844,21.0783815742188],[110.549368925781,21.0518459296875],[110.531883574219,20.9893044257813],[110.521456328125,20.9193044257813],[110.502266875,20.9374977851563],[110.487432890625,20.9716994453126],[110.469283476563,20.99355003125],[110.403387480469,21.0002663398438],[110.341883574219,20.9893044257813],[110.289249296875,20.9695290351563],[110.257345,20.963843]]],[[[110.411910429688,21.1165407539063],[110.417345,21.1038430000001],[110.394346953125,21.107895734375],[110.411910429688,21.1165407539063]]],[[[110.207345,21.1038430000001],[110.203260527344,21.0679274726563],[110.191429472656,21.0397585273438],[110.181329375,21.0004030585938],[110.157345,20.983843],[110.153985625,21.000483625],[110.124918242188,21.008872296875],[110.117345,21.0238430000001],[110.133280058594,21.0484157539063],[110.123316679688,21.1062819648438],[110.153079863281,21.1181081367188],[110.163626738281,21.1322853828125],[110.181949492188,21.1076540351563],[110.197345,21.113843],[110.197345,21.1038430000001],[110.207345,21.1038430000001]]],[[[110.207345,21.1038430000001],[110.207345,21.113843],[110.219720488281,21.1387404609375],[110.209896269531,21.1588576484375],[110.217345,21.173843],[110.229537382813,21.1772658515625],[110.220767851563,21.1860353828125],[110.217345,21.173843],[110.18107546875,21.1884499335938],[110.193140898438,21.208452375],[110.189427519531,21.2335866523438],[110.20170046875,21.2494875312501],[110.213822050781,21.2588430000001],[110.200611601563,21.2690407539063],[110.22298953125,21.27819846875],[110.231773710938,21.2996657539063],[110.265479765625,21.2946852851563],[110.28298953125,21.3081984687501],[110.294810820313,21.3235158515625],[110.31298953125,21.30948753125],[110.317345,21.303843],[110.321429472656,21.2979274726563],[110.333616972656,21.2895143867187],[110.331124296875,21.2783962226563],[110.343587675781,21.2592580390626],[110.337345,21.233843],[110.316168242188,21.1869411445313],[110.351790800781,21.1282888007813],[110.357345,21.123843],[110.343680449219,21.1090944648438],[110.332345,21.1086452460937],[110.313209257813,21.1094020820313],[110.282535429688,21.0986525703125],[110.251495390625,21.0888259101563],[110.223582792969,21.0296828437501],[110.212535429688,21.0990334296876],[110.207345,21.1038430000001]],[[110.237345,21.123843],[110.233922148438,21.1360353828125],[110.225152617188,21.1272658515626],[110.237345,21.123843]],[[110.237345,21.153843],[110.233922148438,21.1660353828126],[110.225152617188,21.1572658515626],[110.237345,21.153843]]]]}},{"type":"Feature","properties":{"name":"坡头区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.457345,21.193843],[110.483985625,21.2072023750001],[110.487345,21.2138430000001],[110.507345,21.203843],[110.512579375,21.183442609375],[110.552542753906,21.2002272773438],[110.580357695313,21.182114484375],[110.603260527344,21.1979274726563],[110.617069121094,21.2179274726563],[110.613260527344,21.1879274726562],[110.601429472656,21.1697585273438],[110.573387480469,21.0897585273438],[110.53103640625,21.0980031562501],[110.534801054688,21.1147927070313],[110.522110625,21.164243390625],[110.478775664063,21.1460451484375],[110.429681425781,21.1791042304688],[110.453260527344,21.1879274726562],[110.457345,21.193843]]],[[[110.507345,21.203843],[110.499935332031,21.2284548164063],[110.487345,21.2138430000001],[110.457345,21.2138430000001],[110.457345,21.193843],[110.4310559375,21.1982009101562],[110.445875273438,21.2350612617188],[110.428814726563,21.2626247382813],[110.443533964844,21.2992385078125],[110.423756132813,21.3139528632813],[110.435159941406,21.3801882148437],[110.414017363281,21.376548078125],[110.387345,21.393843],[110.387345,21.4138430000001],[110.403260527344,21.4179274726562],[110.435804472656,21.4391188789063],[110.477345,21.4438430000001],[110.503778105469,21.4396779609375],[110.523260527344,21.4097585273438],[110.532991972656,21.3837526679688],[110.561429472656,21.3641188789063],[110.5495715625,21.3261013007813],[110.524129667969,21.3318044257813],[110.518450957031,21.306469953125],[110.588404570313,21.2747658515626],[110.623973417969,21.2979274726563],[110.633260527344,21.2897585273438],[110.637345,21.243843],[110.632098417969,21.2239528632813],[110.602279082031,21.2298439765626],[110.551519804688,21.2196681953125],[110.532777128906,21.20776878125],[110.522056914063,21.2098879218751],[110.507345,21.203843]]]]}},{"type":"Feature","properties":{"name":"遂溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.233922148438,21.1360353828125],[110.237345,21.123843],[110.225152617188,21.1272658515626],[110.233922148438,21.1360353828125]]],[[[110.233922148438,21.1660353828126],[110.237345,21.153843],[110.225152617188,21.1572658515626],[110.233922148438,21.1660353828126]]],[[[110.217345,21.173843],[110.220767851563,21.1860353828125],[110.229537382813,21.1772658515625],[110.217345,21.173843]]],[[[110.217345,21.173843],[110.209896269531,21.1588576484375],[110.219720488281,21.1387404609375],[110.207345,21.113843],[110.197345,21.113843],[110.181949492188,21.1076540351563],[110.163626738281,21.1322853828125],[110.153079863281,21.1181081367188],[110.123316679688,21.1062819648438],[110.133280058594,21.0484157539063],[110.117345,21.0238430000001],[110.111429472656,21.0279274726563],[110.101673613281,21.0420558906251],[110.055531035156,21.0317116523438],[110.043260527344,21.0503102851562],[110.067845488281,21.1088430000001],[110.05002078125,21.1512819648438],[110.002215605469,21.1842897773438],[109.962623320313,21.1676589179688],[109.937345,21.173325421875],[109.903682890625,21.1657790351563],[109.886654082031,21.1202712226563],[109.867191191406,21.1068312812501],[109.873616972656,21.0781716132813],[109.860833769531,21.0693459296876],[109.874620390625,21.0365236640625],[109.871969023438,21.0197585273438],[109.832850371094,21.0500759101563],[109.812274199219,21.04546409375],[109.793260527344,21.0179274726563],[109.762904082031,20.9969680000001],[109.734700957031,21.0153322578125],[109.707345,21.003843],[109.700535917969,21.0092971015625],[109.708328886719,21.0719606757812],[109.674918242188,21.117700421875],[109.699534941406,21.1595803046876],[109.722899199219,21.1782888007813],[109.731890898438,21.1895217109375],[109.746422148438,21.1877150703125],[109.777056914063,21.2259694648438],[109.771102324219,21.273843],[109.774832792969,21.303843],[109.769107695313,21.3498683906251],[109.787345,21.3476003242188],[109.812345,21.3507082343751],[109.832345,21.3482204414063],[109.913531523438,21.3583205390626],[109.901678496094,21.3784841132813],[109.904830351563,21.4038210273438],[109.922899199219,21.4182888007813],[109.927345,21.433843],[109.982345,21.4213503242188],[110.062183867188,21.4394850898438],[110.077345,21.4376003242188],[110.10095828125,21.4405373359375],[110.136143828125,21.4198537421875],[110.16422,21.45491721875],[110.197345,21.433843],[110.200767851563,21.4216506171875],[110.209537382813,21.4304201484376],[110.197345,21.433843],[110.19298953125,21.45948753125],[110.179530058594,21.4937184882812],[110.191981230469,21.5098513007813],[110.274127226563,21.4958962226563],[110.270699492188,21.4727028632813],[110.30298953125,21.45948753125],[110.318975859375,21.438774640625],[110.36298953125,21.42948753125],[110.37170046875,21.4181984687501],[110.377345,21.4138430000001],[110.377345,21.393843],[110.387345,21.393843],[110.391790800781,21.3682888007813],[110.411334257813,21.335044171875],[110.391790800781,21.3193971992188],[110.387345,21.313843],[110.383563261719,21.3027565742188],[110.362345,21.3237258125],[110.344801054688,21.3063869453125],[110.317345,21.303843],[110.31298953125,21.30948753125],[110.294810820313,21.3235158515625],[110.28298953125,21.3081984687501],[110.265479765625,21.2946852851563],[110.231773710938,21.2996657539063],[110.22298953125,21.27819846875],[110.200611601563,21.2690407539063],[110.213822050781,21.2588430000001],[110.20170046875,21.2494875312501],[110.189427519531,21.2335866523438],[110.193140898438,21.208452375],[110.18107546875,21.1884499335938],[110.217345,21.173843]],[[109.735152617188,21.1672658515626],[109.747345,21.163843],[109.743922148438,21.1760353828125],[109.735152617188,21.1672658515626]],[[109.763922148438,21.1660353828126],[109.755152617188,21.1572658515626],[109.767345,21.153843],[109.763922148438,21.1660353828126]]]]}},{"type":"Feature","properties":{"name":"吴川市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.707345,21.513843],[110.712779570313,21.5011452460938],[110.730343046875,21.5097902656251],[110.711248808594,21.5199391914063],[110.731109648438,21.5326540351563],[110.720792265625,21.5693679023438],[110.743897734375,21.5983180976563],[110.735963164063,21.6265554023438],[110.747345,21.6338430000001],[110.753531523438,21.6376564765625],[110.762847929688,21.6527761054688],[110.800382109375,21.6296486640626],[110.787672148438,21.588843],[110.813531523438,21.5800295234376],[110.822215605469,21.5431667304688],[110.849378691406,21.5264284492188],[110.838292265625,21.4908278632813],[110.867345,21.503843],[110.873160429688,21.4993556953126],[110.870203886719,21.4793556953125],[110.893463164063,21.4614015937501],[110.888765898438,21.4296193671875],[110.921954375,21.4496388984375],[110.937345,21.4473659492188],[110.952957792969,21.4496730781251],[110.957345,21.423843],[110.952857695313,21.4180275703125],[110.933812285156,21.4208425117188],[110.879007597656,21.3856423164063],[110.847345,21.3903200507813],[110.832135039063,21.3880739570313],[110.780990019531,21.4029860664063],[110.723116484375,21.3683718085938],[110.68861453125,21.3218361640626],[110.650740996094,21.2541823554688],[110.637345,21.243843],[110.633260527344,21.2897585273438],[110.623973417969,21.2979274726563],[110.588404570313,21.2747658515626],[110.518450957031,21.306469953125],[110.524129667969,21.3318044257813],[110.5495715625,21.3261013007813],[110.561429472656,21.3641188789063],[110.532991972656,21.3837526679688],[110.523260527344,21.4097585273438],[110.503778105469,21.4396779609375],[110.477345,21.4438430000001],[110.480704375,21.4604836250001],[110.487345,21.473843],[110.507345,21.473843],[110.507345,21.493843],[110.532896757813,21.476958234375],[110.541429472656,21.4997585273438],[110.553260527344,21.5079274726563],[110.561998320313,21.52058128125],[110.581429472656,21.5079274726563],[110.603260527344,21.4997585273438],[110.617069121094,21.4797585273438],[110.633260527344,21.4879274726563],[110.64435671875,21.5039968085938],[110.686678496094,21.4945095039062],[110.667757597656,21.5235671210938],[110.707345,21.513843]]]]}},{"type":"Feature","properties":{"name":"霞山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.377345,21.1438430000001],[110.389537382813,21.1404201484375],[110.380767851563,21.1316506171875],[110.377345,21.1438430000001]]],[[[110.431910429688,21.1665407539063],[110.437345,21.153843],[110.414346953125,21.1578957343751],[110.431910429688,21.1665407539063]]],[[[110.377345,21.1438430000001],[110.36406375,21.1371242500001],[110.357345,21.123843],[110.351790800781,21.1282888007813],[110.316168242188,21.1869411445313],[110.337345,21.233843],[110.367074003906,21.2411452460938],[110.389144316406,21.2361989570313],[110.407345,21.243843],[110.424559355469,21.231958234375],[110.408211699219,21.1682497382813],[110.381429472656,21.1497585273438],[110.377345,21.1438430000001]]]]}},{"type":"Feature","properties":{"name":"徐闻县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.567345,20.3438430000001],[110.563922148438,20.3316506171875],[110.555152617188,20.3404201484375],[110.567345,20.3438430000001]]],[[[110.567345,20.3438430000001],[110.570767851563,20.3560353828125],[110.579537382813,20.3472658515625],[110.567345,20.3438430000001]]],[[[110.583922148438,20.3760353828125],[110.587345,20.363843],[110.575152617188,20.3672658515626],[110.583922148438,20.3760353828125]]],[[[110.413922148438,20.6160353828125],[110.417345,20.6038430000001],[110.405152617188,20.6072658515625],[110.413922148438,20.6160353828125]]],[[[110.3932825,20.6655251289063],[110.390042753906,20.6252053046876],[110.406536894531,20.5882424140625],[110.443326445313,20.5677175117187],[110.480719023438,20.5707204414063],[110.53197390625,20.4788552070313],[110.511927519531,20.4264064765625],[110.483856230469,20.40222190625],[110.450833769531,20.3494997382813],[110.4273059375,20.3221901679688],[110.401363554688,20.3077175117188],[110.374359160156,20.3098854804688],[110.36197390625,20.29921409375],[110.35271609375,20.2884719062501],[110.34197390625,20.2792140937501],[110.33271609375,20.26847190625],[110.29197390625,20.25921409375],[110.282345,20.2480397773438],[110.270650664063,20.2616115546875],[110.21814578125,20.28089378125],[110.19197390625,20.26921409375],[110.178587675781,20.23921409375],[110.12197390625,20.2484719062501],[110.11271609375,20.25921409375],[110.0734778125,20.276723859375],[110.057730742188,20.2950026679688],[110.006236601563,20.2760915351563],[109.982205839844,20.2894997382813],[109.925211210938,20.21921409375],[109.919581328125,20.252700421875],[109.938424101563,20.3040138984375],[109.916546660156,20.3530446601563],[109.87271609375,20.3726003242188],[109.88197390625,20.3992140937501],[109.89271609375,20.40847190625],[109.902020292969,20.4192702460938],[109.917345,20.4180397773438],[109.932669707031,20.4192702460938],[109.94197390625,20.40847190625],[109.9727746875,20.3991970039063],[109.97072390625,20.3736794257813],[109.982418242188,20.3474758125],[109.99197390625,20.37921409375],[110.00271609375,20.3984719062501],[110.007345,20.433843],[110.034700957031,20.4453322578125],[110.062691679688,20.42710471875],[110.071429472656,20.4397585273438],[110.083260527344,20.4479274726563],[110.094832792969,20.4646877265625],[110.078031035156,20.5188869453126],[110.115194121094,20.528423078125],[110.093707304688,20.5432595039063],[110.120203886719,20.5679274726563],[110.131429472656,20.5379274726562],[110.162720976563,20.5297585273438],[110.201429472656,20.5597585273438],[110.261329375,20.5751296210938],[110.277254667969,20.5981960273438],[110.311607695313,20.61105003125],[110.327345,20.633843],[110.33271609375,20.63847190625],[110.342120390625,20.659546125],[110.362345,20.6482643867188],[110.3932825,20.6655251289063]]],[[[110.472806425781,20.6493044257813],[110.487345,20.583843],[110.450477324219,20.5885597968751],[110.432806425781,20.6293044257812],[110.402806425781,20.6542263007813],[110.422137480469,20.6593727851563],[110.432345,20.6583327460938],[110.442735625,20.6593923164063],[110.452345,20.6478249335938],[110.469420195313,20.6683815742188],[110.472806425781,20.6493044257813]]],[[[110.363922148438,20.6860353828125],[110.367345,20.673843],[110.355152617188,20.6772658515625],[110.363922148438,20.6860353828125]]],[[[110.424871855469,20.6989846015625],[110.417345,20.6838430000001],[110.399090605469,20.6875270820312],[110.4141028125,20.717202375],[110.424871855469,20.6989846015625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"电白县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.373922148438,21.4460353828125],[111.377345,21.433843],[111.365152617188,21.4372658515626],[111.373922148438,21.4460353828125]]],[[[111.264837675781,21.4466603828125],[111.277345,21.423843],[111.253804960938,21.4289064765625],[111.264837675781,21.4466603828125]]],[[[111.043922148438,21.5060353828126],[111.047345,21.493843],[111.035152617188,21.4972658515625],[111.043922148438,21.5060353828126]]],[[[111.037345,21.533843],[111.030704375,21.530483625],[111.019488554688,21.5083132148438],[110.997345,21.503843],[110.984407988281,21.5382692695313],[111.009039335938,21.5679201484375],[111.037345,21.533843]]],[[[111.397345,21.533843],[111.393922148438,21.5460353828126],[111.385152617188,21.5372658515625],[111.39187625,21.5156789375001],[111.299437285156,21.43921409375],[111.281715117188,21.458755109375],[111.295811796875,21.4840163398438],[111.282647734375,21.4992971015625],[111.237345,21.493843],[111.237345,21.503843],[111.217345,21.503843],[111.212345,21.5270876289062],[111.207345,21.503843],[111.183924589844,21.5130495429688],[111.196263457031,21.48948753125],[111.207345,21.503843],[111.217345,21.503843],[111.217345,21.493843],[111.237345,21.493843],[111.233531523438,21.4876564765625],[111.191158476563,21.4800295234375],[111.147513457031,21.4656764960938],[111.127345,21.471958234375],[111.103150664063,21.4644216132813],[111.093531523438,21.4800295234375],[111.081158476563,21.4876564765625],[111.073531523438,21.5100295234376],[111.041158476563,21.5276564765625],[111.037345,21.533843],[111.063079863281,21.5381081367188],[111.081610136719,21.5732302070313],[111.061610136719,21.5881081367188],[111.053079863281,21.6095778632813],[111.023365507813,21.6316823554688],[111.039283476563,21.7241432929688],[111.027345,21.7538430000001],[111.03197390625,21.7692140937501],[111.05271609375,21.7784719062501],[111.072066679688,21.7892678046875],[111.101785917969,21.786880109375],[111.102913847656,21.8009377265626],[111.07271609375,21.8550612617188],[111.104566679688,21.87847190625],[111.125186796875,21.867954328125],[111.149947539063,21.83921409375],[111.170902128906,21.8544045234375],[111.18197390625,21.8792140937501],[111.1940246875,21.8895973945313],[111.21810671875,21.9695851875],[111.232625761719,21.9684181953125],[111.277345,21.993843],[111.281553984375,21.9577321601563],[111.293892851563,21.8961843085938],[111.312965117188,21.8999538398437],[111.330484648438,21.8755104804688],[111.352777128906,21.87991721875],[111.377139921875,21.8644509101562],[111.417345,21.853843],[111.413260527344,21.8179274726563],[111.379339628906,21.7772512031251],[111.383465605469,21.7588430000001],[111.377345,21.7315407539063],[111.429115019531,21.7182570625],[111.43353640625,21.6985329414063],[111.409654570313,21.6458425117188],[111.415706816406,21.618843],[111.410472441406,21.5954909492188],[111.427345,21.583843],[111.441429472656,21.5503102851563],[111.43228640625,21.5252614570313],[111.397345,21.533843]],[[111.197345,21.8338430000001],[111.191910429688,21.8465407539063],[111.174346953125,21.837895734375],[111.197345,21.8338430000001]],[[111.354346953125,21.527895734375],[111.377345,21.5238430000001],[111.371910429688,21.5365407539063],[111.354346953125,21.527895734375]]]]}},{"type":"Feature","properties":{"name":"高州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.191910429688,21.8465407539063],[111.197345,21.8338430000001],[111.174346953125,21.837895734375],[111.191910429688,21.8465407539063]]],[[[111.361712675781,22.2814650703125],[111.37197390625,22.25847190625],[111.377345,22.2538430000001],[111.372899199219,22.2482888007813],[111.352313261719,22.2318068671875],[111.342899199219,22.1882888007812],[111.327142363281,22.1756716132813],[111.333016386719,22.1284499335938],[111.308675566406,22.0951296210938],[111.280553007813,22.0472902656251],[111.307103300781,22.0260280585938],[111.292899199219,22.0082888007813],[111.281790800781,21.9993971992188],[111.277345,21.993843],[111.232625761719,21.9684181953125],[111.21810671875,21.9695851875],[111.1940246875,21.8895973945313],[111.18197390625,21.8792140937501],[111.170902128906,21.8544045234375],[111.149947539063,21.83921409375],[111.125186796875,21.867954328125],[111.104566679688,21.87847190625],[111.07271609375,21.8550612617188],[111.102913847656,21.8009377265626],[111.101785917969,21.786880109375],[111.072066679688,21.7892678046875],[111.05271609375,21.7784719062501],[111.03197390625,21.7692140937501],[111.027345,21.7538430000001],[110.975167265625,21.7778029609376],[110.957345,21.7538430000001],[110.94170046875,21.75819846875],[110.914451933594,21.7746364570313],[110.902857695313,21.7896584296876],[110.883577910156,21.7868093085938],[110.833089628906,21.8242409492188],[110.81298953125,21.7981984687501],[110.801529570313,21.7893556953125],[110.803658476563,21.7749538398438],[110.771732207031,21.779673078125],[110.76298953125,21.7281984687501],[110.75170046875,21.71948753125],[110.747345,21.7138430000001],[110.730103789063,21.7190334296875],[110.712669707031,21.7392702460938],[110.683316679688,21.7369118476563],[110.67271609375,21.74921409375],[110.649351835938,21.7596413398438],[110.66400515625,21.8131789375],[110.65470828125,21.9288845039063],[110.623455839844,21.9558083320313],[110.61271609375,21.9750856757813],[110.6427746875,21.9884963203125],[110.641942167969,21.998843],[110.643414335938,22.01714378125],[110.67271609375,22.05847190625],[110.68197390625,22.0750856757813],[110.65197390625,22.08847190625],[110.64271609375,22.11483909375],[110.705299101563,22.1290578437501],[110.677345,22.1738430000001],[110.66298953125,22.1994875312501],[110.64298953125,22.2149245429688],[110.65170046875,22.2394875312501],[110.68298953125,22.2581984687501],[110.694451933594,22.2730495429688],[110.72220828125,22.2897927070313],[110.752081328125,22.2780495429688],[110.787345,22.2838430000001],[110.7928528125,22.268843],[110.772884550781,22.2144680000001],[110.832669707031,22.2192702460937],[110.848997832031,22.2003176093751],[110.877345,22.1980397773438],[110.892345,22.1992458320313],[110.902669707031,22.1984157539063],[110.91197390625,22.20921409375],[110.93271609375,22.21847190625],[110.95197390625,22.2292140937501],[111.01271609375,22.23847190625],[111.046705351563,22.2625685859376],[111.077171660156,22.245571515625],[111.20271609375,22.2684719062501],[111.241800566406,22.290278546875],[111.259947539063,22.2692140937501],[111.276405058594,22.2811452460938],[111.299742460938,22.3082326484376],[111.328006621094,22.31050315625],[111.361712675781,22.2814650703125]]]]}},{"type":"Feature","properties":{"name":"化州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.507345,21.493843],[110.507345,21.473843],[110.487345,21.473843],[110.49406375,21.48712425],[110.507345,21.493843]]],[[[110.707345,21.513843],[110.730343046875,21.5097902656251],[110.712779570313,21.5011452460938],[110.707345,21.513843]]],[[[110.707345,21.513843],[110.667757597656,21.5235671210938],[110.686678496094,21.4945095039062],[110.64435671875,21.5039968085938],[110.633260527344,21.4879274726563],[110.617069121094,21.4797585273438],[110.603260527344,21.4997585273438],[110.581429472656,21.5079274726563],[110.561998320313,21.52058128125],[110.553260527344,21.5079274726563],[110.541429472656,21.4997585273438],[110.532896757813,21.476958234375],[110.507345,21.493843],[110.500189238281,21.5217214179688],[110.481529570313,21.5175392890626],[110.473260527344,21.5497585273438],[110.433905058594,21.559858625],[110.417345,21.583843],[110.438958769531,21.5869924140625],[110.420577421875,21.6060280585938],[110.417345,21.583843],[110.404298125,21.5946804023438],[110.400816679688,21.628843],[110.402894316406,21.649233625],[110.381636992188,21.6668923164063],[110.382894316406,21.6792336250001],[110.343267851563,21.7121486640626],[110.363834257813,21.729233625],[110.360167265625,21.7652028632813],[110.371883574219,21.7793044257813],[110.377345,21.783843],[110.381351347656,21.761118390625],[110.390343046875,21.7782814765626],[110.377345,21.783843],[110.373118925781,21.8099831367187],[110.334132109375,21.8022805000001],[110.346512480469,21.8649367500001],[110.382345,21.8578542304688],[110.395394316406,21.860434796875],[110.387345,21.893843],[110.397345,21.913843],[110.417345,21.9438430000001],[110.427345,21.9438430000001],[110.430767851563,21.9316506171876],[110.439537382813,21.9404201484375],[110.427345,21.9438430000001],[110.422345,21.9566506171875],[110.417345,21.9438430000001],[110.403985625,21.950483625],[110.387345,21.953843],[110.383531523438,21.9600295234376],[110.350526152344,21.9780007148438],[110.355460234375,21.993843],[110.350787382813,22.008843],[110.353902617188,22.0188430000001],[110.344556914063,22.048843],[110.353902617188,22.078843],[110.349229765625,22.0938430000001],[110.360382109375,22.1296486640626],[110.331158476563,22.1476564765626],[110.323531523438,22.1725246406251],[110.348834257813,22.1976564765625],[110.369388457031,22.1642995429688],[110.401873808594,22.190610578125],[110.407345,22.2138430000001],[110.425736113281,22.208305890625],[110.48271609375,22.15921409375],[110.499947539063,22.13921409375],[110.52271609375,22.1584719062501],[110.557178984375,22.1984719062501],[110.59271609375,22.17921409375],[110.609742460938,22.1594533515625],[110.631363554688,22.1577175117188],[110.65197390625,22.16921409375],[110.677345,22.1738430000001],[110.705299101563,22.1290578437501],[110.64271609375,22.11483909375],[110.65197390625,22.08847190625],[110.68197390625,22.0750856757813],[110.67271609375,22.05847190625],[110.643414335938,22.01714378125],[110.641942167969,21.998843],[110.6427746875,21.9884963203125],[110.61271609375,21.9750856757813],[110.623455839844,21.9558083320313],[110.65470828125,21.9288845039063],[110.66400515625,21.8131789375],[110.649351835938,21.7596413398438],[110.67271609375,21.74921409375],[110.683316679688,21.7369118476563],[110.712669707031,21.7392702460938],[110.730103789063,21.7190334296875],[110.747345,21.7138430000001],[110.741138945313,21.6507399726562],[110.747345,21.6338430000001],[110.735963164063,21.6265554023438],[110.743897734375,21.5983180976563],[110.720792265625,21.5693679023438],[110.731109648438,21.5326540351563],[110.711248808594,21.5199391914063],[110.707345,21.513843]],[[110.407345,21.6738430000001],[110.403338652344,21.696567609375],[110.394346953125,21.6794045234375],[110.407345,21.6738430000001]]]]}},{"type":"Feature","properties":{"name":"茂港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.081610136719,21.5732302070313],[111.063079863281,21.5381081367188],[111.037345,21.533843],[111.009039335938,21.5679201484375],[110.984407988281,21.5382692695313],[110.997345,21.503843],[111.002115507813,21.4835866523438],[111.022345,21.4772853828125],[111.032345,21.4804006171876],[111.042345,21.4772853828125],[111.061881132813,21.4833718085938],[111.086026640625,21.4684938789063],[111.020101347656,21.4463088203125],[110.993531523438,21.4276564765626],[110.957345,21.423843],[110.952957792969,21.4496730781251],[110.937345,21.4473659492188],[110.921954375,21.4496388984375],[110.888765898438,21.4296193671875],[110.893463164063,21.4614015937501],[110.870203886719,21.4793556953125],[110.873160429688,21.4993556953126],[110.867345,21.503843],[110.87170046875,21.51948753125],[110.89298953125,21.52819846875],[110.91170046875,21.5427614570313],[110.883604765625,21.56444846875],[110.93298953125,21.5781984687501],[110.953577910156,21.6285085273438],[110.94170046875,21.6481984687501],[110.928031035156,21.6972902656251],[110.97545046875,21.7256520820312],[110.957345,21.7538430000001],[110.975167265625,21.7778029609376],[111.027345,21.7538430000001],[111.039283476563,21.7241432929688],[111.023365507813,21.6316823554688],[111.053079863281,21.6095778632813],[111.061610136719,21.5881081367188],[111.081610136719,21.5732302070313]]]]}},{"type":"Feature","properties":{"name":"茂南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.833089628906,21.8242409492188],[110.883577910156,21.7868093085938],[110.902857695313,21.7896584296876],[110.914451933594,21.7746364570313],[110.94170046875,21.75819846875],[110.957345,21.7538430000001],[110.97545046875,21.7256520820312],[110.928031035156,21.6972902656251],[110.94170046875,21.6481984687501],[110.953577910156,21.6285085273438],[110.93298953125,21.5781984687501],[110.883604765625,21.56444846875],[110.91170046875,21.5427614570313],[110.89298953125,21.52819846875],[110.87170046875,21.51948753125],[110.867345,21.503843],[110.838292265625,21.4908278632813],[110.849378691406,21.5264284492188],[110.822215605469,21.5431667304688],[110.813531523438,21.5800295234376],[110.787672148438,21.588843],[110.800382109375,21.6296486640626],[110.762847929688,21.6527761054688],[110.753531523438,21.6376564765625],[110.747345,21.6338430000001],[110.741138945313,21.6507399726562],[110.747345,21.7138430000001],[110.75170046875,21.71948753125],[110.76298953125,21.7281984687501],[110.771732207031,21.779673078125],[110.803658476563,21.7749538398438],[110.801529570313,21.7893556953125],[110.81298953125,21.7981984687501],[110.833089628906,21.8242409492188]]]]}},{"type":"Feature","properties":{"name":"信宜市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,22.5138430000001],[111.605152617188,22.5104201484375],[111.613922148438,22.5016506171876],[111.630704375,22.507202375],[111.673985625,22.500483625],[111.677345,22.483843],[111.67091921875,22.4486159492188],[111.60197390625,22.38921409375],[111.59271609375,22.3784719062501],[111.512069121094,22.3637599921875],[111.46236453125,22.3209352851563],[111.45271609375,22.27847190625],[111.41197390625,22.2692140937501],[111.39271609375,22.25847190625],[111.377345,22.2538430000001],[111.37197390625,22.25847190625],[111.361712675781,22.2814650703125],[111.328006621094,22.31050315625],[111.299742460938,22.3082326484376],[111.276405058594,22.2811452460938],[111.259947539063,22.2692140937501],[111.241800566406,22.290278546875],[111.20271609375,22.2684719062501],[111.077171660156,22.245571515625],[111.046705351563,22.2625685859376],[111.01271609375,22.23847190625],[110.95197390625,22.2292140937501],[110.93271609375,22.21847190625],[110.91197390625,22.20921409375],[110.902669707031,22.1984157539063],[110.892345,22.1992458320313],[110.877345,22.1980397773438],[110.848997832031,22.2003176093751],[110.832669707031,22.2192702460937],[110.772884550781,22.2144680000001],[110.7928528125,22.268843],[110.787345,22.2838430000001],[110.783260527344,22.2897585273438],[110.771429472656,22.2979274726563],[110.763260527344,22.3197585273438],[110.738487578125,22.3578029609376],[110.711429472656,22.3679274726562],[110.703260527344,22.4497585273438],[110.685513945313,22.4620119453126],[110.677345,22.4738430000001],[110.682034941406,22.4803884101563],[110.709032011719,22.463247296875],[110.745008574219,22.470356671875],[110.738258085938,22.5045290351562],[110.75341921875,22.5284108710938],[110.751356230469,22.538843],[110.753333769531,22.5488430000001],[110.751300078125,22.5591310859376],[110.767244902344,22.5979347968751],[110.790089140625,22.5660622382813],[110.811519804688,22.5796681953125],[110.862279082031,22.5898439765625],[110.877345,22.5868679023438],[110.896846953125,22.5907204414063],[110.887345,22.613843],[110.948175078125,22.6177614570313],[110.964998808594,22.6472658515626],[110.992789335938,22.6367922187501],[111.015282011719,22.6533888984375],[111.034105253906,22.646294171875],[111.053714628906,22.6574733710938],[111.060975371094,22.6702126289063],[111.073714628906,22.6774733710938],[111.080975371094,22.6902126289063],[111.087345,22.693843],[111.119281035156,22.7061183906251],[111.135877714844,22.629399640625],[111.17373171875,22.6071486640625],[111.192738066406,22.6095143867188],[111.224862089844,22.5860475898437],[111.287718535156,22.5938649726563],[111.313516875,22.55855003125],[111.288648710938,22.548071515625],[111.262899199219,22.5042653632812],[111.272308378906,22.4979421210938],[111.305318632813,22.5173464179688],[111.3284778125,22.5202272773437],[111.404254179688,22.5091994453125],[111.401082792969,22.4837013984376],[111.423077421875,22.4315090156251],[111.4737121875,22.4528469062501],[111.46681765625,22.5082888007813],[111.492899199219,22.4993971992188],[111.525330839844,22.4803322578125],[111.542266875,22.5205251289063],[111.59396609375,22.5582888007813],[111.602899199219,22.5493971992188],[111.617345,22.5138430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"德庆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.172689238281,23.4874660468751],[112.224783964844,23.46698753125],[112.248695097656,23.4705202460938],[112.26298953125,23.4594875312501],[112.267345,23.4338430000001],[112.228526640625,23.4277028632813],[112.194115019531,23.4312111640625],[112.190907011719,23.3997365546875],[112.214676542969,23.3667092109375],[112.209845,23.3193044257813],[112.222806425781,23.3283815742188],[112.239420195313,23.3483815742188],[112.256751738281,23.3366310859375],[112.242791777344,23.2582888007813],[112.214410429688,23.2611794257813],[112.186656523438,23.2127223945313],[112.221883574219,23.1834596992188],[112.212806425781,23.1483815742188],[112.173963652344,23.1244216132813],[112.241173125,23.1312721992188],[112.247345,23.1238430000001],[112.221519804688,23.1096681953125],[112.178951445313,23.0745363593751],[112.095328398438,23.0912331367188],[112.077345,23.0838430000001],[112.054439726563,23.0748390937501],[111.987196074219,23.0847756171875],[111.966553984375,23.1352126289062],[111.897345,23.1238430000001],[111.892899199219,23.1293971992188],[111.87656375,23.1424782539063],[111.781619902344,23.1306667304687],[111.732899199219,23.1493971992188],[111.693033476563,23.1607936835938],[111.666561308594,23.1575026679688],[111.622899199219,23.1893971992188],[111.557977324219,23.2006935859375],[111.522899199219,23.2242653632813],[111.547345,23.2438430000001],[111.551990996094,23.2284133125],[111.572345,23.2300490546875],[111.597345,23.2280397773438],[111.622020292969,23.2300221992188],[111.63197390625,23.2184719062501],[111.643519316406,23.20921409375],[111.641541777344,23.2338430000001],[111.642747832031,23.248843],[111.639654570313,23.2873366523438],[111.71271609375,23.2984719062501],[111.734991484375,23.3108986640625],[111.731920195313,23.3491384101563],[111.75271609375,23.3784719062501],[111.763485136719,23.4026052070313],[111.80197390625,23.38847190625],[111.834742460938,23.37921409375],[111.862901640625,23.411899640625],[111.9166809375,23.3971828437501],[111.968248320313,23.4013259101563],[112.007345,23.4638430000001],[112.02062625,23.4705617500001],[112.027345,23.483843],[112.057345,23.483843],[112.10298953125,23.48819846875],[112.140875273438,23.5110524726563],[112.172689238281,23.4874660468751]]]]}},{"type":"Feature","properties":{"name":"鼎湖区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.523350859375,23.3098488593751],[112.541890898438,23.2974684882813],[112.552862578125,23.3002321601563],[112.586854277344,23.2734987617188],[112.61720828125,23.2937697578125],[112.673040800781,23.307837140625],[112.706221953125,23.2881447578125],[112.71486453125,23.253843],[112.706615019531,23.2211013007812],[112.7489075,23.2317555976563],[112.767345,23.223843],[112.761688261719,23.2091237617188],[112.767345,23.1638430000001],[112.753170195313,23.1380178046875],[112.731519804688,23.1296681953125],[112.686961699219,23.0928932929688],[112.611519804688,23.1080178046876],[112.590018339844,23.1380178046875],[112.567332792969,23.127778546875],[112.553170195313,23.1080178046876],[112.547345,23.103843],[112.52455203125,23.1195803046875],[112.513260527344,23.1497585273438],[112.497345,23.173843],[112.488450957031,23.1849489570313],[112.471790800781,23.1982888007813],[112.445267363281,23.2612380195313],[112.487345,23.3138430000001],[112.523350859375,23.3098488593751]]]]}},{"type":"Feature","properties":{"name":"端州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.52455203125,23.1195803046875],[112.547345,23.103843],[112.503367949219,23.0394875312501],[112.403057890625,23.0490212226563],[112.393699980469,23.1123366523438],[112.43170046875,23.1067214179688],[112.42298953125,23.1194875312501],[112.400611601563,23.1286452460938],[112.41298953125,23.1381984687501],[112.42170046875,23.1494875312501],[112.46298953125,23.15819846875],[112.497345,23.173843],[112.513260527344,23.1497585273438],[112.52455203125,23.1195803046875]]]]}},{"type":"Feature","properties":{"name":"封开县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.007345,23.4638430000001],[112.007345,23.483843],[112.027345,23.483843],[112.02062625,23.4705617500001],[112.007345,23.4638430000001]]],[[[112.007345,23.4638430000001],[111.968248320313,23.4013259101563],[111.9166809375,23.3971828437501],[111.862901640625,23.411899640625],[111.834742460938,23.37921409375],[111.80197390625,23.38847190625],[111.763485136719,23.4026052070313],[111.75271609375,23.3784719062501],[111.731920195313,23.3491384101563],[111.734991484375,23.3108986640625],[111.71271609375,23.2984719062501],[111.639654570313,23.2873366523438],[111.642747832031,23.248843],[111.641541777344,23.2338430000001],[111.643519316406,23.20921409375],[111.63197390625,23.2184719062501],[111.622020292969,23.2300221992188],[111.597345,23.2280397773438],[111.572345,23.2300490546875],[111.551990996094,23.2284133125],[111.547345,23.2438430000001],[111.56298953125,23.2481984687501],[111.57170046875,23.2677346015625],[111.531414824219,23.3220729804687],[111.50572390625,23.2887868476563],[111.46248171875,23.27948753125],[111.41298953125,23.31948753125],[111.367345,23.323843],[111.357191191406,23.33085471875],[111.36490359375,23.3652516914063],[111.385745878906,23.37964378125],[111.377345,23.413843],[111.383260527344,23.4179274726563],[111.397345,23.4738430000001],[111.422899199219,23.4782888007813],[111.458607207031,23.5043752265625],[111.485535917969,23.5682814765626],[111.477345,23.633843],[111.512420683594,23.6286135078126],[111.543209257813,23.6394020820313],[111.562345,23.6386452460938],[111.596178007813,23.639985578125],[111.632154570313,23.6890334296876],[111.661478300781,23.7162038398438],[111.621746855469,23.7287819648438],[111.623179960938,23.7648952460938],[111.647345,23.833843],[111.681363554688,23.8258034492188],[111.695225859375,23.844438703125],[111.732435332031,23.8214089179688],[111.801163359375,23.8095778632813],[111.8169153125,23.8472951484375],[111.809090605469,23.8927468085938],[111.822913847656,23.9113283515625],[111.84302859375,23.9078639960938],[111.85166140625,23.9498220039063],[111.872345,23.9462599921876],[111.892345,23.9497048164062],[111.905184355469,23.9474929023438],[111.921610136719,23.9695778632813],[111.927345,23.973843],[111.952630644531,23.967983625],[111.981624785156,23.985473859375],[111.96170046875,23.89948753125],[111.952659941406,23.8462624335938],[111.923289824219,23.7744997382812],[111.898631621094,23.7425563789063],[111.87298953125,23.7227614570313],[111.886380644531,23.7003762031251],[111.919659453125,23.6867580390625],[111.94170046875,23.65819846875],[111.970487089844,23.6464186835938],[111.97312625,23.6285500312501],[111.95834109375,23.5909377265626],[111.963084746094,23.558843],[111.961605253906,23.5488430000001],[111.963084746094,23.5388430000001],[111.960770292969,23.5231935859375],[111.98170046875,23.48819846875],[111.993160429688,23.4793556953126],[111.991517363281,23.4682497382813],[112.007345,23.4638430000001]]]]}},{"type":"Feature","properties":{"name":"高要市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.697345,22.9338430000001],[112.690501738281,22.9577809882813],[112.672899199219,22.9408327460938],[112.680662871094,22.9043386054688],[112.583192167969,22.8668727851563],[112.56037234375,22.8697096992187],[112.565179472656,22.8310622382813],[112.532345,22.826977765625],[112.511939726563,22.8295143867188],[112.472899199219,22.7982888007812],[112.387345,22.773843],[112.380523710938,22.7770217109376],[112.374166289063,22.7906642890625],[112.318568144531,22.7972536445313],[112.330340605469,22.8177883125001],[112.310523710938,22.8270217109375],[112.307345,22.833843],[112.30298953125,22.85948753125],[112.291549101563,22.878452375],[112.296009550781,22.9086452460938],[112.26170046875,22.91819846875],[112.25298953125,22.9427614570313],[112.27298953125,22.95819846875],[112.293741484375,23.0089064765626],[112.281529570313,23.0183303046875],[112.283822050781,23.033843],[112.281605253906,23.0488430000001],[112.284129667969,23.0659230781251],[112.31298953125,23.08819846875],[112.32170046875,23.1050441718751],[112.288570585938,23.1306154609375],[112.247345,23.1238430000001],[112.241173125,23.1312721992188],[112.173963652344,23.1244216132813],[112.212806425781,23.1483815742188],[112.221883574219,23.1834596992188],[112.186656523438,23.2127223945313],[112.214410429688,23.2611794257813],[112.242791777344,23.2582888007813],[112.256751738281,23.3366310859375],[112.239420195313,23.3483815742188],[112.222806425781,23.3283815742188],[112.209845,23.3193044257813],[112.214676542969,23.3667092109375],[112.190907011719,23.3997365546875],[112.194115019531,23.4312111640625],[112.228526640625,23.4277028632813],[112.267345,23.4338430000001],[112.306163359375,23.4277028632813],[112.347611113281,23.4319289375],[112.364881621094,23.417583234375],[112.389945097656,23.359790265625],[112.427345,23.373843],[112.433260527344,23.3697585273437],[112.443074980469,23.3435305000001],[112.487345,23.3138430000001],[112.445267363281,23.2612380195313],[112.471790800781,23.1982888007813],[112.488450957031,23.1849489570313],[112.497345,23.173843],[112.46298953125,23.15819846875],[112.42170046875,23.1494875312501],[112.41298953125,23.1381984687501],[112.400611601563,23.1286452460938],[112.42298953125,23.1194875312501],[112.43170046875,23.1067214179688],[112.393699980469,23.1123366523438],[112.403057890625,23.0490212226563],[112.503367949219,23.0394875312501],[112.547345,23.103843],[112.553170195313,23.1080178046876],[112.567332792969,23.127778546875],[112.590018339844,23.1380178046875],[112.611519804688,23.1080178046876],[112.686961699219,23.0928932929688],[112.731519804688,23.1296681953125],[112.753170195313,23.1380178046875],[112.767345,23.1638430000001],[112.789495878906,23.1579982734375],[112.801519804688,23.0980178046875],[112.813170195313,23.0696681953125],[112.827345,23.0138430000001],[112.810523710938,23.0106642890626],[112.792681914063,22.9957839179688],[112.7733996875,23.0068386054688],[112.7612903125,22.9808473945313],[112.742081328125,22.991860578125],[112.724166289063,22.9781081367188],[112.735404082031,22.9585060859375],[112.718104277344,22.9377638984375],[112.697345,22.9338430000001]]]]}},{"type":"Feature","properties":{"name":"广宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.552796660156,23.9795217109375],[112.562345,23.9676003242188],[112.567345,23.973843],[112.602957792969,23.9509694648438],[112.632345,23.9466262031251],[112.670125761719,23.9522096992188],[112.684879179688,23.9146804023438],[112.671575957031,23.8690529609375],[112.67373171875,23.8544509101563],[112.66298953125,23.8281984687501],[112.650391875,23.8184767890626],[112.69298953125,23.80948753125],[112.701978789063,23.7565724921875],[112.731302519531,23.7609059882813],[112.733148222656,23.7484133125001],[112.711527128906,23.71925315625],[112.717345,23.683843],[112.701383085938,23.6908425117188],[112.693441191406,23.6377468085938],[112.649928007813,23.6224416328125],[112.656561308594,23.598843],[112.62334109375,23.5871584296876],[112.611886015625,23.590376203125],[112.593441191406,23.5777468085938],[112.570687285156,23.5697414375],[112.575155058594,23.553843],[112.57093875,23.5388430000001],[112.575155058594,23.523843],[112.566102324219,23.4916335273438],[112.545147734375,23.4610305000001],[112.488675566406,23.476899640625],[112.49375125,23.458843],[112.489945097656,23.4453029609375],[112.47154421875,23.450473859375],[112.453441191406,23.4177468085938],[112.431248808594,23.3899391914063],[112.427345,23.373843],[112.389945097656,23.359790265625],[112.364881621094,23.417583234375],[112.347611113281,23.4319289375],[112.306163359375,23.4277028632813],[112.267345,23.4338430000001],[112.26298953125,23.4594875312501],[112.248695097656,23.4705202460938],[112.224783964844,23.46698753125],[112.172689238281,23.4874660468751],[112.140875273438,23.5110524726563],[112.10298953125,23.48819846875],[112.057345,23.483843],[112.062764921875,23.4986037421875],[112.061812773438,23.5104616523438],[112.084359160156,23.5298854804688],[112.102623320313,23.5284181953125],[112.124837675781,23.5408132148438],[112.141998320313,23.5792726875001],[112.161785917969,23.5776833320313],[112.131922636719,23.64858909375],[112.136170683594,23.7014455390625],[112.19271609375,23.7184719062501],[112.20197390625,23.7492140937501],[112.212769804688,23.7685646796875],[112.211842070313,23.7800881171875],[112.234205351563,23.7782912421875],[112.252120390625,23.7381398750001],[112.2773059375,23.7521901679688],[112.292115507813,23.769380109375],[112.332142363281,23.7584255195313],[112.343509550781,23.7593386054688],[112.341942167969,23.7788430000001],[112.343551054688,23.798843],[112.341165800781,23.8285182929688],[112.361712675781,23.8462209296875],[112.381229277344,23.8899587226563],[112.404359160156,23.9098854804688],[112.422623320313,23.9084181953125],[112.477225371094,23.9388845039063],[112.507345,23.973843],[112.552796660156,23.9795217109375]]]]}},{"type":"Feature","properties":{"name":"怀集县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.407345,24.313843],[112.421800566406,24.2880226875],[112.441082792969,24.2908718085938],[112.453177519531,24.2386769843751],[112.42298953125,24.1618874335938],[112.43170046875,24.1281984687501],[112.483804960938,24.1136916328126],[112.513311796875,24.0184474921876],[112.501512480469,24.0093410468751],[112.507345,23.973843],[112.477225371094,23.9388845039063],[112.422623320313,23.9084181953125],[112.404359160156,23.9098854804688],[112.381229277344,23.8899587226563],[112.361712675781,23.8462209296875],[112.341165800781,23.8285182929688],[112.343551054688,23.798843],[112.341942167969,23.7788430000001],[112.343509550781,23.7593386054688],[112.332142363281,23.7584255195313],[112.292115507813,23.769380109375],[112.2773059375,23.7521901679688],[112.252120390625,23.7381398750001],[112.234205351563,23.7782912421875],[112.211842070313,23.7800881171875],[112.212769804688,23.7685646796875],[112.20197390625,23.7492140937501],[112.19271609375,23.7184719062501],[112.136170683594,23.7014455390625],[112.131922636719,23.64858909375],[112.161785917969,23.5776833320313],[112.141998320313,23.5792726875001],[112.124837675781,23.5408132148438],[112.102623320313,23.5284181953125],[112.084359160156,23.5298854804688],[112.061812773438,23.5104616523438],[112.062764921875,23.4986037421875],[112.057345,23.483843],[112.027345,23.483843],[112.007345,23.483843],[112.007345,23.4638430000001],[111.991517363281,23.4682497382813],[111.993160429688,23.4793556953126],[111.98170046875,23.48819846875],[111.960770292969,23.5231935859375],[111.963084746094,23.5388430000001],[111.961605253906,23.5488430000001],[111.963084746094,23.558843],[111.95834109375,23.5909377265626],[111.97312625,23.6285500312501],[111.970487089844,23.6464186835938],[111.94170046875,23.65819846875],[111.919659453125,23.6867580390625],[111.886380644531,23.7003762031251],[111.87298953125,23.7227614570313],[111.898631621094,23.7425563789063],[111.923289824219,23.7744997382812],[111.952659941406,23.8462624335938],[111.96170046875,23.89948753125],[111.981624785156,23.985473859375],[111.952630644531,23.967983625],[111.927345,23.973843],[111.933294707031,23.98897971875],[111.92170046875,24.0081984687501],[111.91298953125,24.03948753125],[111.901207304688,24.048579328125],[111.87619265625,24.1122121406251],[111.883140898438,24.159233625],[111.86298953125,24.192641828125],[111.872081328125,24.231098859375],[111.910809355469,24.2253762031251],[111.922000761719,24.2398757148438],[111.937345,24.2338430000001],[111.9541028125,24.2398561835938],[111.999429960938,24.1891237617187],[112.032625761719,24.1985622382813],[112.059534941406,24.2685622382813],[112.10970828125,24.232387921875],[112.150096464844,24.1871877265626],[112.172064238281,24.1991237617188],[112.192625761719,24.2085622382813],[112.212064238281,24.2391237617188],[112.250384550781,24.2509572578125],[112.253238554688,24.298843],[112.2520325,24.31909690625],[112.257345,24.323843],[112.291146269531,24.3293068671875],[112.277567167969,24.3980178046875],[112.313170195313,24.3796681953125],[112.341519804688,24.3580178046875],[112.370999785156,24.3466481757813],[112.391519804688,24.3180178046875],[112.407345,24.313843]]]]}},{"type":"Feature","properties":{"name":"四会市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.717345,23.683843],[112.747074003906,23.6765407539063],[112.768365507813,23.681313703125],[112.781429472656,23.6504714179688],[112.751429472656,23.6297585273438],[112.743260527344,23.6084670234375],[112.795706816406,23.5888430000001],[112.789132109375,23.5595143867188],[112.810887480469,23.5444924140625],[112.817345,23.553843],[112.82298953125,23.54948753125],[112.83170046875,23.53819846875],[112.848231230469,23.5254396796875],[112.83298953125,23.48819846875],[112.793219023438,23.4389919257813],[112.77298953125,23.3696047187501],[112.79298953125,23.37819846875],[112.808426542969,23.3981984687501],[112.839271269531,23.3872585273438],[112.86170046875,23.35819846875],[112.876512480469,23.3467653632813],[112.86298953125,23.29819846875],[112.850897246094,23.2888649726563],[112.821095,23.24866721875],[112.84170046875,23.2327614570313],[112.822784453125,23.2180397773438],[112.811832304688,23.2196584296875],[112.802147246094,23.2071096015625],[112.792345,23.231059796875],[112.782542753906,23.2071096015625],[112.77298953125,23.21948753125],[112.767345,23.223843],[112.7489075,23.2317555976563],[112.706615019531,23.2211013007812],[112.71486453125,23.253843],[112.706221953125,23.2881447578125],[112.673040800781,23.307837140625],[112.61720828125,23.2937697578125],[112.586854277344,23.2734987617188],[112.552862578125,23.3002321601563],[112.541890898438,23.2974684882813],[112.523350859375,23.3098488593751],[112.487345,23.3138430000001],[112.443074980469,23.3435305000001],[112.433260527344,23.3697585273437],[112.427345,23.373843],[112.431248808594,23.3899391914063],[112.453441191406,23.4177468085938],[112.47154421875,23.450473859375],[112.489945097656,23.4453029609375],[112.49375125,23.458843],[112.488675566406,23.476899640625],[112.545147734375,23.4610305000001],[112.566102324219,23.4916335273438],[112.575155058594,23.523843],[112.57093875,23.5388430000001],[112.575155058594,23.553843],[112.570687285156,23.5697414375],[112.593441191406,23.5777468085938],[112.611886015625,23.590376203125],[112.62334109375,23.5871584296876],[112.656561308594,23.598843],[112.649928007813,23.6224416328125],[112.693441191406,23.6377468085938],[112.701383085938,23.6908425117188],[112.717345,23.683843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"博罗县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.479713164063,23.7051296210938],[114.503443632813,23.6899391914063],[114.511246367188,23.6777468085937],[114.527345,23.673843],[114.533394804688,23.6502638984376],[114.553565703125,23.6192897773438],[114.549254179688,23.6000466132812],[114.57142703125,23.5679274726563],[114.597432890625,23.5581960273438],[114.612345,23.5366017890625],[114.62142703125,23.5497585273438],[114.647345,23.563843],[114.653443632813,23.5599391914063],[114.661246367188,23.5377468085938],[114.6947278125,23.5296266914063],[114.673648710938,23.498843],[114.6945325,23.4683498359375],[114.661246367188,23.4499391914063],[114.645636015625,23.4255519843751],[114.627345,23.413843],[114.60197390625,23.4092140937501],[114.59271609375,23.38847190625],[114.575069609375,23.3732692695313],[114.549229765625,23.4032643867187],[114.519854765625,23.3868727851563],[114.496065703125,23.3335622382813],[114.5180871875,23.3145876289062],[114.5366028125,23.2930983710938],[114.561754179688,23.2714284492188],[114.505675078125,23.2464040351563],[114.474527617188,23.2637844062501],[114.424610625,23.2058498359376],[114.368782988281,23.2103346992188],[114.328089628906,23.1630983710938],[114.31197390625,23.1492140937501],[114.294359160156,23.1287697578125],[114.236085234375,23.1181398750001],[114.216751738281,23.1196950507813],[114.17271609375,23.08847190625],[114.15197390625,23.07921409375],[114.138089628906,23.0630983710938],[114.127345,23.0538430000001],[114.094881621094,23.0600417304688],[114.079500761719,23.108618390625],[114.015628691406,23.0862306953126],[113.972535429688,23.1090334296875],[113.882296171875,23.1198317695313],[113.852193632813,23.118637921875],[113.837345,23.1238430000001],[113.846085234375,23.151450421875],[113.89658328125,23.1752834296876],[113.878468046875,23.1920680976563],[113.897323027344,23.227700421875],[113.882535429688,23.2590334296875],[113.872017851563,23.2687770820313],[113.882535429688,23.2886525703126],[113.893990507813,23.3486525703125],[113.943436308594,23.3388552070313],[113.979705839844,23.2997096992188],[113.992154570313,23.3390334296875],[113.997345,23.343843],[114.038690214844,23.3344509101563],[114.043587675781,23.373843],[114.040721464844,23.3969045234375],[114.09197390625,23.4295119453125],[114.104605742188,23.4279396796876],[114.17099734375,23.4559157539063],[114.181890898438,23.4695217109376],[114.192345,23.4682204414063],[114.222799101563,23.4720095039063],[114.245355253906,23.4438381171876],[114.312899199219,23.5282888007813],[114.321790800781,23.5493971992187],[114.332899199219,23.5582888007812],[114.358858671875,23.6010329414063],[114.397103300781,23.6316579414063],[114.382899199219,23.6493971992188],[114.354522734375,23.6721193671876],[114.392899199219,23.6882888007813],[114.417345,23.703843],[114.426156035156,23.6900783515626],[114.479713164063,23.7051296210938]]]]}},{"type":"Feature","properties":{"name":"惠城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.693682890625,23.4146071601563],[114.691085234375,23.3937013984375],[114.701793242188,23.3682888007812],[114.713023710938,23.3592971015625],[114.711666289063,23.3483669257813],[114.774386015625,23.31026878125],[114.770650664063,23.28022971875],[114.785479765625,23.2550051093751],[114.777345,23.2338430000001],[114.73170046875,23.2294875312501],[114.691905546875,23.1999806953125],[114.68298953125,23.1781984687501],[114.670172148438,23.1569484687501],[114.651832304688,23.1596584296875],[114.635894804688,23.139009015625],[114.617345,23.133843],[114.60263796875,23.1280617500001],[114.571031523438,23.1327321601563],[114.57312625,23.11855003125],[114.559127226563,23.0829372382813],[114.531226835938,23.0614015937501],[114.535611601563,23.0317360664063],[114.499840117188,22.9834865546876],[114.453057890625,22.9473805976563],[114.43298953125,22.9594875312501],[114.41170046875,22.96819846875],[114.39298953125,22.9994875312501],[114.37170046875,23.00819846875],[114.361419707031,23.02151878125],[114.3027746875,22.9780397773438],[114.292345,22.9795827460938],[114.271912871094,22.9765627265625],[114.24298953125,22.92819846875],[114.227345,22.923843],[114.20375125,22.9297292304688],[114.215452910156,22.9761818671875],[114.203040800781,22.997837140625],[114.152345,22.985063703125],[114.119686308594,22.9932912421875],[114.125379667969,23.0158864570313],[114.14486453125,23.028843],[114.131339140625,23.037837140625],[114.127345,23.0538430000001],[114.138089628906,23.0630983710938],[114.15197390625,23.07921409375],[114.17271609375,23.08847190625],[114.216751738281,23.1196950507813],[114.236085234375,23.1181398750001],[114.294359160156,23.1287697578125],[114.31197390625,23.1492140937501],[114.328089628906,23.1630983710938],[114.368782988281,23.2103346992188],[114.424610625,23.2058498359376],[114.474527617188,23.2637844062501],[114.505675078125,23.2464040351563],[114.561754179688,23.2714284492188],[114.5366028125,23.2930983710938],[114.5180871875,23.3145876289062],[114.496065703125,23.3335622382813],[114.519854765625,23.3868727851563],[114.549229765625,23.4032643867187],[114.575069609375,23.3732692695313],[114.59271609375,23.38847190625],[114.60197390625,23.4092140937501],[114.627345,23.413843],[114.632799101563,23.4070339179688],[114.693682890625,23.4146071601563]]]]}},{"type":"Feature","properties":{"name":"惠东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.887345,22.5538430000001],[114.883922148438,22.5416506171875],[114.875152617188,22.5504201484375],[114.887345,22.5538430000001]]],[[[114.887345,22.5538430000001],[114.893595,22.5865822578126],[114.921827421875,22.5604250312501],[114.887345,22.5538430000001]]],[[[114.777345,22.8238430000001],[114.773922148438,22.8360353828126],[114.765152617188,22.8272658515625],[114.77330203125,22.7917751289063],[114.742213164063,22.7763210273438],[114.720704375,22.787202375],[114.713326445313,22.8017873359376],[114.697345,22.793843],[114.689967070313,22.8342897773438],[114.602027617188,22.8183473945313],[114.59271609375,22.8392140937501],[114.581163359375,22.8491677070313],[114.582745390625,22.868843],[114.58158328125,22.8833229804687],[114.561763945313,22.918843],[114.573541289063,22.9399513984375],[114.60255984375,22.9376198554688],[114.61197390625,22.9892140937501],[114.62271609375,22.9984719062501],[114.6332825,23.022153546875],[114.631944609375,23.038843],[114.632760039063,23.0489870429688],[114.617345,23.133843],[114.635894804688,23.139009015625],[114.651832304688,23.1596584296875],[114.670172148438,23.1569484687501],[114.68298953125,23.1781984687501],[114.691905546875,23.1999806953125],[114.73170046875,23.2294875312501],[114.777345,23.2338430000001],[114.782843046875,23.2151052070313],[114.849322539063,23.1624929023438],[114.862882109375,23.1985768867188],[114.86107546875,23.2162966132813],[114.876422148438,23.2347682929688],[114.892896757813,23.2484523750001],[114.891803007813,23.2591652656251],[114.910011015625,23.2909596992188],[114.9128528125,23.3188430000001],[114.910079375,23.3460646796875],[114.945421171875,23.3496657539063],[114.962808867188,23.3193044257813],[114.975631132813,23.2897389960938],[115.010391875,23.3315895820313],[115.051285429688,23.3274221015625],[115.101881132813,23.3593044257813],[115.152808867188,23.3683815742188],[115.187725859375,23.3883815742188],[115.269737578125,23.3784670234375],[115.292808867188,23.3593044257813],[115.305050078125,23.3175905585938],[115.338233671875,23.32097190625],[115.390992460938,23.2834914375001],[115.401881132813,23.2583815742188],[115.407345,23.253843],[115.407345,23.2438430000001],[115.395655546875,23.2307595039062],[115.349034453125,23.1969264960937],[115.323970976563,23.1688747382813],[115.279678984375,23.1585695625001],[115.283238554688,23.098843],[115.260260039063,23.088296125],[115.239478789063,23.0650417304688],[115.16724734375,23.0372731757813],[115.14252078125,22.9983962226563],[115.112545195313,23.0091530585938],[115.097345,23.008247296875],[115.082100859375,23.0091555],[115.022413359375,22.9601833320313],[114.982569609375,22.9385305],[114.966441679688,22.9394924140625],[114.913121367188,22.9150197578126],[114.93283328125,22.87874534375],[114.917408476563,22.8649636054688],[114.932061796875,22.8485622382813],[114.942628203125,22.8391237617188],[114.952061796875,22.7985622382813],[114.9926575,22.7691017890625],[114.991607695313,22.7514577460937],[115.012061796875,22.7285622382812],[115.017345,22.723843],[115.017345,22.7038430000001],[114.97297,22.6901418281251],[114.953189726563,22.6679982734375],[114.932061796875,22.6491237617188],[114.917906523438,22.6332814765625],[114.9020325,22.6190969062501],[114.902642851563,22.608843],[114.9019934375,22.5979689765625],[114.882345,22.5991408515626],[114.872345,22.5985451484375],[114.847345,22.6000344062501],[114.812345,22.5979494453126],[114.792164335938,22.5991506171875],[114.752174101563,22.5884401679688],[114.741539335938,22.6003395820313],[114.74373171875,22.6370925117188],[114.731890898438,22.6588771796875],[114.752799101563,22.6888088203125],[114.74095828125,22.7105934882813],[114.74334109375,22.7505300117188],[114.831651640625,22.7910622382813],[114.806783476563,22.8132814765626],[114.792491484375,22.8292775703125],[114.777345,22.8238430000001]],[[114.927345,22.723843],[114.927345,22.713843],[114.937345,22.713843],[114.937345,22.7038430000001],[114.947345,22.7038430000001],[114.950767851563,22.6916506171876],[114.959537382813,22.7004201484375],[114.947345,22.7038430000001],[114.947345,22.713843],[114.937345,22.713843],[114.937345,22.723843],[114.932965117188,22.7316847968751],[114.961519804688,22.7260427070313],[114.94896609375,22.7465309882813],[114.868629179688,22.7625710273437],[114.88341921875,22.7392751289062],[114.879678984375,22.7203566718751],[114.897921171875,22.7167531562501],[114.927345,22.723843]]]]}},{"type":"Feature","properties":{"name":"惠阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.643922148438,22.4460353828125],[114.647345,22.4338430000001],[114.635152617188,22.4372658515625],[114.643922148438,22.4460353828125]]],[[[114.628961210938,22.4776589179688],[114.647345,22.453843],[114.61298953125,22.4596804023438],[114.628961210938,22.4776589179688]]],[[[114.647345,22.573843],[114.659537382813,22.5704201484376],[114.650767851563,22.5616506171875],[114.647345,22.573843]]],[[[114.647345,22.573843],[114.635152617188,22.5772658515626],[114.643922148438,22.5860353828125],[114.647345,22.573843]]],[[[114.517345,22.6738430000001],[114.529537382813,22.6704201484375],[114.520767851563,22.6616506171875],[114.517345,22.6738430000001]]],[[[114.593922148438,22.7060353828125],[114.597345,22.693843],[114.585152617188,22.6972658515625],[114.593922148438,22.7060353828125]]],[[[114.537345,22.7038430000001],[114.531910429688,22.7165407539063],[114.514346953125,22.707895734375],[114.537345,22.683843],[114.517345,22.683843],[114.517345,22.6738430000001],[114.507345,22.6738430000001],[114.472379179688,22.6680983710938],[114.457345,22.6703200507813],[114.429744902344,22.6662429023438],[114.434486113281,22.6983303046876],[114.40724734375,22.7193556953126],[114.413822050781,22.763843],[114.410709257813,22.7849196601563],[114.38298953125,22.76819846875],[114.358426542969,22.75948753125],[114.340667753906,22.7824929023438],[114.344945097656,22.8114430976563],[114.307345,22.8058864570312],[114.2819153125,22.8096462226563],[114.2527746875,22.7880397773438],[114.233746367188,22.7908522773438],[114.227345,22.813843],[114.232064238281,22.8791237617188],[114.261224394531,22.9051784492188],[114.232064238281,22.9185622382813],[114.227345,22.923843],[114.24298953125,22.92819846875],[114.271912871094,22.9765627265625],[114.292345,22.9795827460938],[114.3027746875,22.9780397773438],[114.361419707031,23.02151878125],[114.37170046875,23.00819846875],[114.39298953125,22.9994875312501],[114.41170046875,22.96819846875],[114.43298953125,22.9594875312501],[114.453057890625,22.9473805976563],[114.499840117188,22.9834865546876],[114.535611601563,23.0317360664063],[114.531226835938,23.0614015937501],[114.559127226563,23.0829372382813],[114.57312625,23.11855003125],[114.571031523438,23.1327321601563],[114.60263796875,23.1280617500001],[114.617345,23.133843],[114.632760039063,23.0489870429688],[114.631944609375,23.038843],[114.6332825,23.022153546875],[114.62271609375,22.9984719062501],[114.61197390625,22.9892140937501],[114.60255984375,22.9376198554688],[114.573541289063,22.9399513984375],[114.561763945313,22.918843],[114.58158328125,22.8833229804687],[114.582745390625,22.868843],[114.581163359375,22.8491677070313],[114.59271609375,22.8392140937501],[114.602027617188,22.8183473945313],[114.689967070313,22.8342897773438],[114.697345,22.793843],[114.69142703125,22.7897585273438],[114.68326296875,22.7779274726563],[114.65142703125,22.7697585273438],[114.63326296875,22.7579274726563],[114.5676184375,22.73491721875],[114.5767590625,22.6941628242188],[114.537345,22.7038430000001]],[[114.557345,22.723843],[114.553922148438,22.7360353828125],[114.545152617188,22.7272658515626],[114.557345,22.723843]]]]}},{"type":"Feature","properties":{"name":"龙门县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.26271609375,23.9484719062501],[114.23271609375,23.9226247382813],[114.278792753906,23.9003346992188],[114.307345,23.8980397773438],[114.322515898438,23.8992580390625],[114.347345,23.8938430000001],[114.34271609375,23.87847190625],[114.32295046875,23.8430422187501],[114.342764921875,23.7890822578125],[114.340413847656,23.7598146796876],[114.352772246094,23.7491677070313],[114.351180449219,23.7293386054687],[114.362669707031,23.7284157539063],[114.377345,23.7454494453126],[114.396600371094,23.7230983710938],[114.41271609375,23.7092140937501],[114.417345,23.703843],[114.392899199219,23.6882888007813],[114.354522734375,23.6721193671876],[114.382899199219,23.6493971992188],[114.397103300781,23.6316579414063],[114.358858671875,23.6010329414063],[114.332899199219,23.5582888007812],[114.321790800781,23.5493971992187],[114.312899199219,23.5282888007813],[114.245355253906,23.4438381171876],[114.222799101563,23.4720095039063],[114.192345,23.4682204414063],[114.181890898438,23.4695217109376],[114.17099734375,23.4559157539063],[114.104605742188,23.4279396796876],[114.09197390625,23.4295119453125],[114.040721464844,23.3969045234375],[114.043587675781,23.373843],[114.038690214844,23.3344509101563],[113.997345,23.343843],[113.9783996875,23.3736232734376],[113.99334109375,23.3990431953126],[113.981790800781,23.4082888007812],[113.972899199219,23.4293971992188],[113.94361453125,23.45284690625],[113.975748320313,23.4785817695313],[113.941790800781,23.4882888007813],[113.896551542969,23.5148830390626],[113.850863066406,23.5719362617188],[113.856473417969,23.6170339179688],[113.817345,23.6238430000001],[113.805738554688,23.633843],[113.831712675781,23.6562209296875],[113.84197390625,23.6792140937501],[113.87271609375,23.68847190625],[113.934827910156,23.739848859375],[113.953963652344,23.7383107734375],[113.97197390625,23.75921409375],[113.995655546875,23.7697829414063],[114.021046171875,23.7677419257813],[114.05197390625,23.7812404609376],[114.031917753906,23.7985182929688],[114.032747832031,23.8088430000001],[114.031920195313,23.8191213203125],[114.050316191406,23.8520925117188],[114.027345,23.903843],[114.03271609375,23.9084719062501],[114.051373320313,23.9301271796875],[114.077345,23.9280397773438],[114.092345,23.9292458320313],[114.102623320313,23.9284181953125],[114.12197390625,23.9392140937501],[114.15271609375,23.9484719062501],[114.172345,23.9594216132813],[114.20814578125,23.93944846875],[114.27197390625,23.96288596875],[114.26271609375,23.9484719062501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"丰顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.391099882813,24.219809796875],[116.423902617188,24.2077638984375],[116.447916289063,24.2096926093751],[116.484205351563,24.1987648750001],[116.525181914063,24.1333473945313],[116.61709109375,24.0673513007813],[116.64197390625,24.03847190625],[116.67572390625,24.0173317695313],[116.687345,24.0038430000001],[116.68244265625,23.9987429023438],[116.64224734375,23.9889430976563],[116.63244265625,23.9787429023438],[116.602554960938,23.9642433906251],[116.602242460938,23.948843],[116.602642851563,23.9293556953126],[116.582633085938,23.9085305],[116.562252226563,23.9089479804688],[116.51244265625,23.8787429023438],[116.492144804688,23.8688942695313],[116.514293242188,23.8362136054688],[116.489678984375,23.7489430976562],[116.46224734375,23.7587429023438],[116.419263945313,23.7878786445313],[116.367345,23.7338430000001],[116.32005984375,23.7716677070313],[116.27736453125,23.7663576484376],[116.262896757813,23.7482888007812],[116.237100859375,23.7276296210938],[116.21634890625,23.7302101875],[116.202896757813,23.6982888007813],[116.1791809375,23.6792971015625],[116.183472929688,23.6447658515626],[116.14896609375,23.6171340156251],[116.107345,23.6238430000001],[116.103150664063,23.6306520820312],[116.0849621875,23.6249855781251],[116.063531523438,23.6400295234376],[116.032740507813,23.6505226875],[116.0183215625,23.6460329414063],[116.003531523438,23.6700295234375],[115.983721953125,23.6822365546875],[115.93740359375,23.6423830390625],[115.892740507813,23.6271633125],[115.869283476563,23.6344680000001],[115.853531523438,23.6600295234375],[115.847345,23.6638430000001],[115.85170046875,23.66948753125],[115.86298953125,23.67819846875],[115.87170046875,23.6894875312501],[115.89162234375,23.7048635078125],[115.90170046875,23.7294875312501],[115.92162234375,23.7448635078125],[115.93170046875,23.76948753125],[115.966666289063,23.7964748359376],[116.017862578125,23.827094953125],[116.007345,23.8538430000001],[116.02302859375,23.8583278632813],[116.021099882813,23.8738552070313],[116.027345,23.9238430000001],[116.05298953125,23.92819846875],[116.094171171875,23.9614821601563],[116.089298125,23.9944753242188],[116.158892851563,24.0481960273438],[116.17373171875,24.0844509101563],[116.171519804688,24.0994142890626],[116.196812773438,24.1097634101563],[116.187345,24.133843],[116.197345,24.133843],[116.21326296875,24.1297585273437],[116.231900664063,24.1176222968751],[116.242345,24.1199636054687],[116.253116484375,24.1175490546876],[116.26142703125,24.1397585273438],[116.27326296875,24.1479274726563],[116.305323515625,24.1955446601563],[116.317345,24.203843],[116.3678528125,24.1928249335938],[116.391099882813,24.219809796875]]]]}},{"type":"Feature","properties":{"name":"蕉岭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.371807890625,24.8085768867188],[116.377345,24.793843],[116.371793242188,24.789233625],[116.372896757813,24.7784206367188],[116.351793242188,24.7692653632813],[116.353834257813,24.749233625],[116.336422148438,24.7347682929688],[116.32107546875,24.7162966132813],[116.3228528125,24.698843],[116.3218371875,24.6888430000001],[116.322896757813,24.678452375],[116.311881132813,24.6693044257812],[116.302808867188,24.6583815742188],[116.274288359375,24.6346901679688],[116.31158328125,24.6037062812501],[116.2897278125,24.5655422187501],[116.247345,24.5698610664063],[116.217345,24.5668044257813],[116.181671171875,24.5704396796876],[116.185484648438,24.5330519843751],[116.16158328125,24.4913210273438],[116.163873320313,24.468843],[116.141881132813,24.4593044257813],[116.12517703125,24.420786359375],[116.112808867188,24.4493044257813],[116.09125125,24.4869460273438],[116.037345,24.4938430000001],[116.03052859375,24.5369411445313],[116.045933867188,24.563843],[116.02302859375,24.603843],[116.04375125,24.6400319648438],[116.039840117188,24.6784206367188],[116.062808867188,24.6883815742187],[116.071954375,24.6993923164063],[116.082769804688,24.6982912421875],[116.096422148438,24.7297682929688],[116.117047148438,24.7657839179688],[116.101881132813,24.7783815742188],[116.092808867188,24.7893044257813],[116.081881132813,24.7983815742188],[116.0688684375,24.8140456367188],[116.082808867188,24.8383815742188],[116.087345,24.853843],[116.141397734375,24.8470900703125],[116.182467070313,24.8799343085938],[116.191793242188,24.8682888007813],[116.208453398438,24.8549489570313],[116.221793242188,24.8382888007813],[116.24341921875,24.8291774726562],[116.22638796875,24.8002053046875],[116.253033476563,24.7968923164063],[116.292896757813,24.8082888007813],[116.311793242188,24.8193971992188],[116.339932890625,24.831255109375],[116.354195585938,24.8651027656251],[116.387345,24.8838430000001],[116.391881132813,24.8583815742188],[116.4114465625,24.8421291328125],[116.373551054688,24.8256935859376],[116.371807890625,24.8085768867188]]]]}},{"type":"Feature","properties":{"name":"梅江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.112086210938,24.3809181953126],[116.12443484375,24.3290749335938],[116.162154570313,24.3490334296875],[116.186041289063,24.3586525703125],[116.161378203125,24.2882839179688],[116.162940703125,24.248843],[116.162110625,24.2279567695313],[116.182535429688,24.2090334296875],[116.205601835938,24.1733132148437],[116.197345,24.133843],[116.187345,24.133843],[116.172154570313,24.1386525703125],[116.136007109375,24.1513210273438],[116.102535429688,24.1690334296875],[116.082154570313,24.1786525703125],[116.072535429688,24.190122296875],[116.092535429688,24.2086525703125],[116.112154570313,24.230122296875],[116.084918242188,24.2553566718751],[116.108370390625,24.2996755195313],[116.082174101563,24.298637921875],[116.042027617188,24.3294240546876],[116.012877226563,24.3282692695313],[115.990308867188,24.3402126289063],[116.003892851563,24.4051345039063],[116.032535429688,24.4186525703125],[116.059615507813,24.4329811835938],[116.082154570313,24.4086525703125],[116.112086210938,24.3809181953126]]]]}},{"type":"Feature","properties":{"name":"梅县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.977345,24.163843],[115.980767851563,24.1516506171875],[115.989537382813,24.1604201484375],[115.972628203125,24.1791237617188],[115.962061796875,24.1885622382813],[115.946490507813,24.2389919257813],[115.882061796875,24.2685622382813],[115.871539335938,24.2803395820313],[115.8726575,24.299067609375],[115.862061796875,24.3185622382813],[115.852628203125,24.3391237617188],[115.829830351563,24.3495876289063],[115.811080351563,24.3484694648438],[115.792628203125,24.3691237617188],[115.77279421875,24.3868434882813],[115.802628203125,24.4585622382813],[115.807345,24.473843],[115.872340117188,24.4792458320313],[115.882345,24.4784401679688],[115.914249296875,24.4810060859375],[115.970269804688,24.4029885078125],[115.98197390625,24.42921409375],[116.012906523438,24.4385280585938],[116.001783476563,24.4791579414063],[116.03271609375,24.48847190625],[116.037345,24.4938430000001],[116.09125125,24.4869460273438],[116.112808867188,24.4493044257813],[116.12517703125,24.420786359375],[116.141881132813,24.4593044257813],[116.163873320313,24.468843],[116.16158328125,24.4913210273438],[116.185484648438,24.5330519843751],[116.181671171875,24.5704396796876],[116.217345,24.5668044257813],[116.247345,24.5698610664063],[116.2897278125,24.5655422187501],[116.31158328125,24.6037062812501],[116.274288359375,24.6346901679688],[116.302808867188,24.6583815742188],[116.311881132813,24.6693044257812],[116.322896757813,24.678452375],[116.3218371875,24.6888430000001],[116.3228528125,24.698843],[116.32107546875,24.7162966132813],[116.336422148438,24.7347682929688],[116.353834257813,24.749233625],[116.351793242188,24.7692653632813],[116.372896757813,24.7784206367188],[116.371793242188,24.789233625],[116.377345,24.793843],[116.39326296875,24.7897585273438],[116.417345,24.773843],[116.408975859375,24.7510524726563],[116.4280871875,24.7345876289063],[116.442667265625,24.7176638007813],[116.488599882813,24.7213552070313],[116.514644804688,24.6067116523438],[116.547345,24.6138430000001],[116.553155546875,24.5987282539063],[116.540650664063,24.57745628125],[116.54552859375,24.5382595039063],[116.532843046875,24.5081594062501],[116.515440703125,24.5103249335937],[116.491441679688,24.491108625],[116.4937121875,24.4728469062501],[116.451187773438,24.454926984375],[116.415787382813,24.426577375],[116.424210234375,24.358843],[116.421724882813,24.3388430000001],[116.4234778125,24.3247536445313],[116.306763945313,24.2313698554688],[116.317345,24.203843],[116.305323515625,24.1955446601563],[116.27326296875,24.1479274726563],[116.26142703125,24.1397585273438],[116.253116484375,24.1175490546876],[116.242345,24.1199636054687],[116.231900664063,24.1176222968751],[116.21326296875,24.1297585273437],[116.197345,24.133843],[116.205601835938,24.1733132148437],[116.182535429688,24.2090334296875],[116.162110625,24.2279567695313],[116.162940703125,24.248843],[116.161378203125,24.2882839179688],[116.186041289063,24.3586525703125],[116.162154570313,24.3490334296875],[116.12443484375,24.3290749335938],[116.112086210938,24.3809181953126],[116.082154570313,24.4086525703125],[116.059615507813,24.4329811835938],[116.032535429688,24.4186525703125],[116.003892851563,24.4051345039063],[115.990308867188,24.3402126289063],[116.012877226563,24.3282692695313],[116.042027617188,24.3294240546876],[116.082174101563,24.298637921875],[116.108370390625,24.2996755195313],[116.084918242188,24.2553566718751],[116.112154570313,24.230122296875],[116.092535429688,24.2086525703125],[116.072535429688,24.190122296875],[116.082154570313,24.1786525703125],[116.102535429688,24.1690334296875],[116.136007109375,24.1513210273438],[116.172154570313,24.1386525703125],[116.187345,24.133843],[116.196812773438,24.1097634101563],[116.171519804688,24.0994142890626],[116.17373171875,24.0844509101563],[116.158892851563,24.0481960273438],[116.089298125,23.9944753242188],[116.094171171875,23.9614821601563],[116.05298953125,23.92819846875],[116.027345,23.9238430000001],[116.01263796875,23.91806175],[115.994342070313,23.9207643867188],[116.017779570313,23.98038596875],[116.002345,23.9781032539063],[115.980494414063,23.981333234375],[115.983082304688,23.9988430000001],[115.979918242188,24.0202809882813],[115.910128203125,24.048843],[115.913604765625,24.0723513007813],[115.9666809375,24.0645070625],[115.934224882813,24.1082814765626],[115.973160429688,24.1383303046875],[115.970206328125,24.1583303046875],[115.977345,24.163843]]]]}},{"type":"Feature","properties":{"name":"大埔县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.79033328125,24.6886525703126],[116.811925078125,24.6539382148438],[116.761763945313,24.5885231757813],[116.762550078125,24.5686647773438],[116.7481653125,24.555337140625],[116.8100403125,24.4885524726563],[116.84154421875,24.4898024726563],[116.85263796875,24.468843],[116.836090117188,24.4375759101563],[116.872154570313,24.3986525703125],[116.897345,24.3838430000001],[116.891104765625,24.3584279609375],[116.90326296875,24.3397585273438],[116.91142703125,24.2879274726563],[116.924483671875,24.2789138007813],[116.93361453125,24.2381716132813],[116.927345,24.2338430000001],[116.890318632813,24.2275539375],[116.893140898438,24.208452375],[116.865719023438,24.162993390625],[116.849400664063,24.1841335273438],[116.822735625,24.1680471015626],[116.796715117188,24.1718923164063],[116.759429960938,24.1235866523438],[116.76623171875,24.0775295234375],[116.751832304688,24.0796584296876],[116.74298953125,24.06819846875],[116.72869265625,24.0571657539063],[116.699742460938,24.0614430976563],[116.7052746875,24.0240138984375],[116.697345,24.0038430000001],[116.687345,24.0038430000001],[116.67572390625,24.0173317695313],[116.64197390625,24.03847190625],[116.61709109375,24.0673513007813],[116.525181914063,24.1333473945313],[116.484205351563,24.1987648750001],[116.447916289063,24.2096926093751],[116.423902617188,24.2077638984375],[116.391099882813,24.219809796875],[116.3678528125,24.1928249335938],[116.317345,24.203843],[116.306763945313,24.2313698554688],[116.4234778125,24.3247536445313],[116.421724882813,24.3388430000001],[116.424210234375,24.358843],[116.415787382813,24.426577375],[116.451187773438,24.454926984375],[116.4937121875,24.4728469062501],[116.491441679688,24.491108625],[116.515440703125,24.5103249335937],[116.532843046875,24.5081594062501],[116.54552859375,24.5382595039063],[116.540650664063,24.57745628125],[116.553155546875,24.5987282539063],[116.547345,24.6138430000001],[116.558482695313,24.6258620429688],[116.59326296875,24.6497975898438],[116.622496367188,24.648637921875],[116.676671171875,24.6676271796875],[116.722345,24.6694387031251],[116.751812773438,24.6682692695313],[116.79033328125,24.6886525703126]]]]}},{"type":"Feature","properties":{"name":"平远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.911783476563,24.9278469062501],[115.962345,24.9178542304687],[115.972965117188,24.9199538398438],[115.981519804688,24.9080178046876],[116.026475859375,24.8990041328125],[116.055113554688,24.8590529609375],[116.087345,24.853843],[116.082808867188,24.8383815742188],[116.0688684375,24.8140456367188],[116.081881132813,24.7983815742188],[116.092808867188,24.7893044257813],[116.101881132813,24.7783815742188],[116.117047148438,24.7657839179688],[116.096422148438,24.7297682929688],[116.082769804688,24.6982912421875],[116.071954375,24.6993923164063],[116.062808867188,24.6883815742187],[116.039840117188,24.6784206367188],[116.04375125,24.6400319648438],[116.02302859375,24.603843],[116.045933867188,24.563843],[116.03052859375,24.5369411445313],[116.037345,24.4938430000001],[116.03271609375,24.48847190625],[116.001783476563,24.4791579414063],[116.012906523438,24.4385280585938],[115.98197390625,24.42921409375],[115.970269804688,24.4029885078125],[115.914249296875,24.4810060859375],[115.882345,24.4784401679688],[115.872340117188,24.4792458320313],[115.807345,24.473843],[115.80142703125,24.4779274726563],[115.79326296875,24.4897585273438],[115.75142703125,24.5179274726563],[115.737345,24.543843],[115.780025664063,24.5709963203125],[115.843682890625,24.5630788398438],[115.840968046875,24.584926984375],[115.811793242188,24.6082888007813],[115.779693632813,24.6539528632813],[115.761666289063,24.6683888984375],[115.76318484375,24.6806032539063],[115.792086210938,24.6770095039063],[115.801793242188,24.6922731757813],[115.776236601563,24.7127370429688],[115.749713164063,24.7458596015626],[115.762896757813,24.7682888007813],[115.771793242188,24.8193971992188],[115.783013945313,24.8384841132813],[115.781676054688,24.8492018867188],[115.818140898438,24.9112306953126],[115.845108671875,24.907876203125],[115.86185671875,24.8681301093751],[115.901793242188,24.8742653632813],[115.876886015625,24.9166335273438],[115.887345,24.943843],[115.911783476563,24.9278469062501]]]]}},{"type":"Feature","properties":{"name":"五华县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.317345,23.763843],[115.312345,23.7510353828126],[115.307345,23.763843],[115.317345,23.763843]]],[[[115.317345,23.763843],[115.320704375,23.770483625],[115.34062625,23.7805617500001],[115.354859648438,23.808696515625],[115.344967070313,23.8289455390625],[115.357345,23.8538430000001],[115.366549101563,23.8609499335938],[115.391217070313,23.9018434882813],[115.403043242188,23.9443093085938],[115.45170046875,23.9734108710938],[115.437584257813,24.03187034375],[115.416236601563,24.0672634101563],[115.444127226563,24.1354128242188],[115.472857695313,24.1396584296875],[115.481832304688,24.1280275703125],[115.492857695313,24.1296584296875],[115.516143828125,24.0994875312501],[115.527525664063,24.1139723945312],[115.51298953125,24.14948753125],[115.501549101563,24.168452375],[115.503082304688,24.178843],[115.50080203125,24.1942775703125],[115.527345,24.183843],[115.527345,24.173843],[115.537345,24.173843],[115.60047,24.1817287421875],[115.613004179688,24.149126203125],[115.610865507813,24.1319362617188],[115.623297148438,24.1164089179687],[115.663409453125,24.0871096015625],[115.686422148438,24.0899709296876],[115.732769804688,24.0320900703125],[115.762896757813,24.0193971992188],[115.782545195313,24.0078469062501],[115.796304960938,24.0250295234376],[115.841793242188,23.9982888007813],[115.864810820313,23.9885915351563],[115.883057890625,23.9452834296875],[115.904156523438,23.9283888984376],[115.901666289063,23.9083888984375],[115.912896757813,23.8993971992188],[115.921846953125,23.87815940625],[115.94982546875,23.8816384101563],[115.981793242188,23.8582888007813],[116.007345,23.8538430000001],[116.017862578125,23.827094953125],[115.966666289063,23.7964748359376],[115.93170046875,23.76948753125],[115.92162234375,23.7448635078125],[115.90170046875,23.7294875312501],[115.89162234375,23.7048635078125],[115.87170046875,23.6894875312501],[115.86298953125,23.67819846875],[115.85170046875,23.66948753125],[115.847345,23.6638430000001],[115.83170046875,23.65948753125],[115.799166289063,23.6353639960938],[115.803082304688,23.608843],[115.801607695313,23.598843],[115.8052746875,23.5740138984375],[115.787569609375,23.5289772773437],[115.715928984375,23.5168068671875],[115.68252078125,23.5600930000001],[115.642320585938,23.5302907539063],[115.63298953125,23.5181984687501],[115.62170046875,23.50948753125],[115.617345,23.4738430000001],[115.59142703125,23.4697585273438],[115.58326296875,23.4579274726563],[115.555513945313,23.4387721992188],[115.512144804688,23.4225417304688],[115.500191679688,23.3759645820313],[115.482066679688,23.3800270820313],[115.467345,23.373843],[115.451812773438,23.3872243476563],[115.452764921875,23.3990822578125],[115.423624296875,23.4784304023438],[115.411539335938,23.488843],[115.432877226563,23.5072243476563],[115.431265898438,23.5272853828125],[115.442926054688,23.5590358710938],[115.43197390625,23.5684719062501],[115.420269804688,23.6073439765625],[115.44271609375,23.66847190625],[115.45197390625,23.7147951484375],[115.421280546875,23.6976686835938],[115.379967070313,23.74562034375],[115.392769804688,23.7685646796875],[115.391485625,23.7845217109375],[115.344000273438,23.7580300117188],[115.317345,23.763843]]]]}},{"type":"Feature","properties":{"name":"兴宁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.977345,24.163843],[115.989537382813,24.1604201484375],[115.980767851563,24.1516506171875],[115.977345,24.163843]]],[[[115.977345,24.163843],[115.970206328125,24.1583303046875],[115.973160429688,24.1383303046875],[115.934224882813,24.1082814765626],[115.9666809375,24.0645070625],[115.913604765625,24.0723513007813],[115.910128203125,24.048843],[115.979918242188,24.0202809882813],[115.983082304688,23.9988430000001],[115.980494414063,23.981333234375],[116.002345,23.9781032539063],[116.017779570313,23.98038596875],[115.994342070313,23.9207643867188],[116.01263796875,23.91806175],[116.027345,23.9238430000001],[116.021099882813,23.8738552070313],[116.02302859375,23.8583278632813],[116.007345,23.8538430000001],[115.981793242188,23.8582888007813],[115.94982546875,23.8816384101563],[115.921846953125,23.87815940625],[115.912896757813,23.8993971992188],[115.901666289063,23.9083888984375],[115.904156523438,23.9283888984376],[115.883057890625,23.9452834296875],[115.864810820313,23.9885915351563],[115.841793242188,23.9982888007813],[115.796304960938,24.0250295234376],[115.782545195313,24.0078469062501],[115.762896757813,24.0193971992188],[115.732769804688,24.0320900703125],[115.686422148438,24.0899709296876],[115.663409453125,24.0871096015625],[115.623297148438,24.1164089179687],[115.610865507813,24.1319362617188],[115.613004179688,24.149126203125],[115.60047,24.1817287421875],[115.537345,24.173843],[115.537345,24.183843],[115.527345,24.183843],[115.548834257813,24.2097096992188],[115.562779570313,24.2082888007812],[115.571881132813,24.2393044257813],[115.588306914063,24.2529494453125],[115.551881132813,24.3383815742188],[115.542808867188,24.3666970039063],[115.574674101563,24.4109767890625],[115.571803007813,24.4391652656251],[115.5831653125,24.4590065742188],[115.571881132813,24.4683815742188],[115.562735625,24.4793923164062],[115.551954375,24.4782936835938],[115.542735625,24.4893923164063],[115.532345,24.4883327460938],[115.497257109375,24.4919094062501],[115.48107546875,24.5113893867188],[115.483873320313,24.5388430000001],[115.481793242188,24.559233625],[115.5021496875,24.5761403632813],[115.520069609375,24.6371999335938],[115.557345,24.6438430000001],[115.574561796875,24.6133888984376],[115.6022278125,24.6296535468751],[115.631793242188,24.6182888007813],[115.67125125,24.6070070625],[115.68345828125,24.5505837226563],[115.737345,24.543843],[115.75142703125,24.5179274726563],[115.79326296875,24.4897585273438],[115.80142703125,24.4779274726563],[115.807345,24.473843],[115.802628203125,24.4585622382813],[115.77279421875,24.3868434882813],[115.792628203125,24.3691237617188],[115.811080351563,24.3484694648438],[115.829830351563,24.3495876289063],[115.852628203125,24.3391237617188],[115.862061796875,24.3185622382813],[115.8726575,24.299067609375],[115.871539335938,24.2803395820313],[115.882061796875,24.2685622382813],[115.946490507813,24.2389919257813],[115.962061796875,24.1885622382813],[115.972628203125,24.1791237617188],[115.977345,24.163843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"海丰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.017345,22.723843],[115.031295195313,22.713843],[115.017345,22.7038430000001],[115.017345,22.723843]]],[[[115.577345,22.843843],[115.582486601563,22.8670119453125],[115.609693632813,22.8772658515626],[115.617345,22.8638430000001],[115.577345,22.843843]]],[[[115.577345,22.843843],[115.557345,22.813843],[115.502120390625,22.7983034492188],[115.492022734375,22.8100221992188],[115.463326445313,22.8077175117188],[115.435113554688,22.8234572578125],[115.412525664063,22.8595217109376],[115.392623320313,22.8484181953126],[115.375279570313,22.8498122382813],[115.324757109375,22.9084548164063],[115.317345,22.883843],[115.307345,22.883843],[115.307345,22.8638430000001],[115.287345,22.8638430000001],[115.287345,22.8538430000001],[115.27406375,22.8471242500001],[115.267345,22.833843],[115.257345,22.833843],[115.257345,22.8238430000001],[115.200172148438,22.83788596875],[115.16326296875,22.8035671210938],[115.18326296875,22.7897585273438],[115.19142703125,22.7756862617188],[115.163682890625,22.7819069648438],[115.150582304688,22.816919171875],[115.052198515625,22.7927541328125],[115.042296171875,22.7541652656251],[115.02142703125,22.7397585273438],[115.017345,22.723843],[115.012061796875,22.7285622382812],[114.991607695313,22.7514577460937],[114.9926575,22.7691017890625],[114.952061796875,22.7985622382813],[114.942628203125,22.8391237617188],[114.932061796875,22.8485622382813],[114.917408476563,22.8649636054688],[114.93283328125,22.87874534375],[114.913121367188,22.9150197578126],[114.966441679688,22.9394924140625],[114.982569609375,22.9385305],[115.022413359375,22.9601833320313],[115.082100859375,23.0091555],[115.097345,23.008247296875],[115.112545195313,23.0091530585938],[115.14252078125,22.9983962226563],[115.16724734375,23.0372731757813],[115.239478789063,23.0650417304688],[115.260260039063,23.088296125],[115.283238554688,23.098843],[115.279678984375,23.1585695625001],[115.323970976563,23.1688747382813],[115.349034453125,23.1969264960937],[115.395655546875,23.2307595039062],[115.407345,23.2438430000001],[115.44170046875,23.22819846875],[115.505435820313,23.214751203125],[115.501607695313,23.188843],[115.504483671875,23.1693556953126],[115.491514921875,23.159341046875],[115.497345,23.1238430000001],[115.501519804688,23.1180178046876],[115.515186796875,23.1082228828125],[115.51127078125,23.0884108710938],[115.523580351563,23.06901878125],[115.5112903125,23.039106671875],[115.501358671875,22.988843],[115.503428984375,22.9783571601563],[115.473170195313,22.9387331367188],[115.481641875,22.9177150703125],[115.493053007813,22.9199709296875],[115.501519804688,22.8980178046875],[115.518995390625,22.8854933906251],[115.545113554688,22.8490529609375],[115.577345,22.843843]]]]}},{"type":"Feature","properties":{"name":"陆丰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.973922148438,22.9760353828125],[115.977345,22.963843],[115.965152617188,22.9672658515625],[115.973922148438,22.9760353828125]]],[[[115.947345,23.0138430000001],[115.950767851563,23.0260353828126],[115.959537382813,23.0172658515625],[115.947345,23.0138430000001]]],[[[115.767345,23.133843],[115.770767851563,23.1216506171875],[115.779537382813,23.1304201484375],[115.767345,23.143843],[115.822896757813,23.1293971992188],[115.84634890625,23.10011253125],[115.866261015625,23.1249758125001],[115.902799101563,23.1295217109376],[115.911793242188,23.1182888007813],[115.917345,23.113843],[115.926978789063,23.0801540351563],[115.96107546875,23.05284690625],[115.91861453125,23.018843],[115.947345,23.0138430000001],[115.933624296875,22.9838527656251],[115.941295195313,22.9567653632813],[115.953189726563,22.9608498359375],[115.9633996875,22.9436330390625],[115.987345,22.9354079414063],[116.002345,22.9405593085938],[116.012345,22.9371266914063],[116.022799101563,22.9407155585938],[116.041065703125,22.9275637031251],[116.073624296875,22.920122296875],[116.0833996875,22.9036330390625],[116.112345,22.8936916328126],[116.132345,22.9005593085938],[116.161329375,22.8906081367188],[116.172232695313,22.9236525703125],[116.198238554688,22.932583234375],[116.217345,22.923843],[116.171392851563,22.866411359375],[116.122554960938,22.8307350898438],[116.092799101563,22.8270339179688],[116.076217070313,22.8477394843751],[116.044644804688,22.8516677070313],[115.981236601563,22.8249489570313],[115.952706328125,22.8081764960938],[115.934508085938,22.8104396796875],[115.902896757813,22.7982888007812],[115.856236601563,22.7849489570313],[115.819761992188,22.7393971992188],[115.792896757813,22.7676418281251],[115.801793242188,22.8093971992188],[115.807345,22.813843],[115.810767851563,22.8016506171876],[115.819537382813,22.8104201484375],[115.807345,22.813843],[115.80326296875,22.8197585273438],[115.78142703125,22.8279274726562],[115.749893828125,22.8484645820313],[115.70142703125,22.8579274726563],[115.69326296875,22.8697585273438],[115.650504179688,22.8857570625001],[115.617345,22.8638430000001],[115.609693632813,22.8772658515626],[115.582486601563,22.8670119453125],[115.577345,22.843843],[115.545113554688,22.8490529609375],[115.518995390625,22.8854933906251],[115.501519804688,22.8980178046875],[115.493053007813,22.9199709296875],[115.481641875,22.9177150703125],[115.473170195313,22.9387331367188],[115.503428984375,22.9783571601563],[115.501358671875,22.988843],[115.5112903125,23.039106671875],[115.523580351563,23.06901878125],[115.51127078125,23.0884108710938],[115.515186796875,23.1082228828125],[115.501519804688,23.1180178046876],[115.497345,23.1238430000001],[115.526095,23.1305055976563],[115.56978640625,23.124048078125],[115.591202421875,23.1517995429688],[115.602345,23.1373659492188],[115.613199492188,23.1514260078125],[115.663761015625,23.1209255195313],[115.722345,23.1295827460938],[115.732379179688,23.1280983710938],[115.767345,23.133843]]],[[[115.780152617188,23.1588430000001],[115.767345,23.153843],[115.767345,23.1638430000001],[115.780152617188,23.1588430000001]]]]}},{"type":"Feature","properties":{"name":"陆河县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.767345,23.133843],[115.779537382813,23.1304201484375],[115.770767851563,23.1216506171875],[115.767345,23.133843]]],[[[115.767345,23.133843],[115.732379179688,23.1280983710938],[115.722345,23.1295827460938],[115.663761015625,23.1209255195313],[115.613199492188,23.1514260078125],[115.602345,23.1373659492188],[115.591202421875,23.1517995429688],[115.56978640625,23.124048078125],[115.526095,23.1305055976563],[115.497345,23.1238430000001],[115.491514921875,23.159341046875],[115.504483671875,23.1693556953126],[115.501607695313,23.188843],[115.505435820313,23.214751203125],[115.44170046875,23.22819846875],[115.407345,23.2438430000001],[115.407345,23.253843],[115.4251575,23.2648171210938],[115.42047,23.279868390625],[115.45422,23.287817609375],[115.4486340625,23.3057619453125],[115.486011992188,23.3185012031251],[115.471158476563,23.3276564765626],[115.467345,23.373843],[115.482066679688,23.3800270820313],[115.500191679688,23.3759645820313],[115.512144804688,23.4225417304688],[115.555513945313,23.4387721992188],[115.58326296875,23.4579274726563],[115.59142703125,23.4697585273438],[115.617345,23.4738430000001],[115.624224882813,23.4509938789063],[115.6727746875,23.4091677070312],[115.668043242188,23.3502834296875],[115.716182890625,23.3771413398438],[115.773316679688,23.381733625],[115.80197390625,23.34847190625],[115.81271609375,23.3392140937501],[115.817345,23.333843],[115.790924101563,23.3134499335938],[115.79375125,23.2943361640625],[115.81298953125,23.27948753125],[115.82170046875,23.2596804023438],[115.748878203125,23.2473073554688],[115.7530871875,23.2188185859375],[115.748424101563,23.1894875312501],[115.727506132813,23.2165895820313],[115.73392703125,23.1731496406251],[115.767345,23.1638430000001],[115.767345,23.153843],[115.767345,23.143843],[115.767345,23.133843]]]]}},{"type":"Feature","properties":{"name":"城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.567345,22.6638430000001],[115.579537382813,22.6604201484375],[115.570767851563,22.6516506171876],[115.567345,22.6638430000001]]],[[[115.567345,22.7438430000001],[115.60142703125,22.7522145820313],[115.588590117188,22.7297585273438],[115.57142703125,22.7379274726563],[115.567345,22.7438430000001]]],[[[115.567345,22.7438430000001],[115.555152617188,22.7472658515625],[115.563922148438,22.7560353828125],[115.567345,22.7438430000001]]],[[[115.567345,22.6638430000001],[115.561612578125,22.6681081367188],[115.500650664063,22.682514875],[115.46623171875,22.7038161445313],[115.3898059375,22.69065940625],[115.3401965625,22.7213625312501],[115.3495715625,22.7758083320312],[115.311163359375,22.7981081367188],[115.230694609375,22.7842555976563],[115.234093046875,22.8039846015626],[115.253077421875,22.8181081367188],[115.257345,22.8238430000001],[115.267345,22.8238430000001],[115.267345,22.833843],[115.287345,22.833843],[115.287345,22.8538430000001],[115.307345,22.8538430000001],[115.307345,22.8638430000001],[115.317345,22.8638430000001],[115.317345,22.883843],[115.324757109375,22.9084548164063],[115.375279570313,22.8498122382813],[115.392623320313,22.8484181953126],[115.412525664063,22.8595217109376],[115.435113554688,22.8234572578125],[115.463326445313,22.8077175117188],[115.492022734375,22.8100221992188],[115.502120390625,22.7983034492188],[115.557345,22.813843],[115.524761992188,22.7701882148438],[115.52103640625,22.7449733710938],[115.54170046875,22.7181984687501],[115.563170195313,22.7094142890625],[115.56068484375,22.6925954414063],[115.567345,22.6638430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"紫金县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.392769804688,23.7685646796875],[115.379967070313,23.74562034375],[115.421280546875,23.6976686835938],[115.45197390625,23.7147951484375],[115.44271609375,23.66847190625],[115.420269804688,23.6073439765625],[115.43197390625,23.5684719062501],[115.442926054688,23.5590358710938],[115.431265898438,23.5272853828125],[115.432877226563,23.5072243476563],[115.411539335938,23.488843],[115.423624296875,23.4784304023438],[115.452764921875,23.3990822578125],[115.451812773438,23.3872243476563],[115.467345,23.373843],[115.471158476563,23.3276564765626],[115.486011992188,23.3185012031251],[115.4486340625,23.3057619453125],[115.45422,23.287817609375],[115.42047,23.279868390625],[115.4251575,23.2648171210938],[115.407345,23.253843],[115.401881132813,23.2583815742188],[115.390992460938,23.2834914375001],[115.338233671875,23.32097190625],[115.305050078125,23.3175905585938],[115.292808867188,23.3593044257813],[115.269737578125,23.3784670234375],[115.187725859375,23.3883815742188],[115.152808867188,23.3683815742188],[115.101881132813,23.3593044257813],[115.051285429688,23.3274221015625],[115.010391875,23.3315895820313],[114.975631132813,23.2897389960938],[114.962808867188,23.3193044257813],[114.945421171875,23.3496657539063],[114.910079375,23.3460646796875],[114.9128528125,23.3188430000001],[114.910011015625,23.2909596992188],[114.891803007813,23.2591652656251],[114.892896757813,23.2484523750001],[114.876422148438,23.2347682929688],[114.86107546875,23.2162966132813],[114.862882109375,23.1985768867188],[114.849322539063,23.1624929023438],[114.782843046875,23.2151052070313],[114.777345,23.2338430000001],[114.785479765625,23.2550051093751],[114.770650664063,23.28022971875],[114.774386015625,23.31026878125],[114.711666289063,23.3483669257813],[114.713023710938,23.3592971015625],[114.701793242188,23.3682888007812],[114.691085234375,23.3937013984375],[114.693682890625,23.4146071601563],[114.632799101563,23.4070339179688],[114.627345,23.413843],[114.645636015625,23.4255519843751],[114.661246367188,23.4499391914063],[114.6945325,23.4683498359375],[114.673648710938,23.498843],[114.6947278125,23.5296266914063],[114.661246367188,23.5377468085938],[114.653443632813,23.5599391914063],[114.647345,23.563843],[114.651158476563,23.5800295234375],[114.673023710938,23.5935036445312],[114.681158476563,23.6600295234375],[114.702183867188,23.7069728828125],[114.743248320313,23.7209670234375],[114.757345,23.743843],[114.825797148438,23.7505739570313],[114.867345,23.7472365546875],[114.902345,23.7500490546875],[114.922345,23.7484401679687],[114.940328398438,23.7498854804688],[114.95271609375,23.73921409375],[114.962257109375,23.7281447578125],[115.005025664063,23.7584719062501],[115.03271609375,23.73921409375],[115.04197390625,23.72847190625],[115.07271609375,23.7092140937501],[115.089947539063,23.68921409375],[115.1427746875,23.7006471992188],[115.193204375,23.723149640625],[115.191666289063,23.7423049140625],[115.22584109375,23.7613747382813],[115.27713015625,23.7572536445313],[115.307345,23.763843],[115.312345,23.7510353828126],[115.317345,23.763843],[115.344000273438,23.7580300117188],[115.391485625,23.7845217109375],[115.392769804688,23.7685646796875]]]]}},{"type":"Feature","properties":{"name":"东源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.96326296875,24.2397585273438],[114.976573515625,24.204184796875],[115.002847929688,24.2100759101563],[115.03142703125,24.1879274726563],[115.05326296875,24.1797585273438],[115.06142703125,24.1679274726563],[115.077345,24.163843],[115.072896757813,24.1482888007813],[115.055748320313,24.1036696601563],[115.11150515625,24.1106032539063],[115.112965117188,24.098843],[115.110865507813,24.0819362617187],[115.126236601563,24.0627370429688],[115.144781523438,24.0478884101563],[115.174898710938,24.0066603828125],[115.132896757813,24.0118849921875],[115.147017851563,23.9903005195313],[115.17302859375,23.9793410468751],[115.16935671875,23.9498366523438],[115.207345,23.94511253125],[115.24279421875,23.9495217109375],[115.292896757813,23.9093971992188],[115.331456328125,23.86124534375],[115.357345,23.8538430000001],[115.344967070313,23.8289455390625],[115.354859648438,23.808696515625],[115.34062625,23.7805617500001],[115.320704375,23.770483625],[115.317345,23.763843],[115.307345,23.763843],[115.27713015625,23.7572536445313],[115.22584109375,23.7613747382813],[115.191666289063,23.7423049140625],[115.193204375,23.723149640625],[115.1427746875,23.7006471992188],[115.089947539063,23.68921409375],[115.07271609375,23.7092140937501],[115.04197390625,23.72847190625],[115.03271609375,23.73921409375],[115.005025664063,23.7584719062501],[114.962257109375,23.7281447578125],[114.95271609375,23.73921409375],[114.940328398438,23.7498854804688],[114.922345,23.7484401679687],[114.902345,23.7500490546875],[114.867345,23.7472365546875],[114.825797148438,23.7505739570313],[114.757345,23.743843],[114.73197390625,23.7584719062501],[114.721470976563,23.8274001289063],[114.694761992188,23.85847190625],[114.68271609375,23.81847190625],[114.6519153125,23.7991799140625],[114.653204375,23.7831496406251],[114.601832304688,23.7602272773438],[114.603150664063,23.743843],[114.59963015625,23.7000417304688],[114.55197390625,23.68921409375],[114.54271609375,23.6784719062501],[114.527345,23.673843],[114.511246367188,23.6777468085937],[114.503443632813,23.6899391914063],[114.479713164063,23.7051296210938],[114.426156035156,23.6900783515626],[114.417345,23.703843],[114.41271609375,23.7092140937501],[114.396600371094,23.7230983710938],[114.377345,23.7454494453126],[114.362669707031,23.7284157539063],[114.351180449219,23.7293386054687],[114.352772246094,23.7491677070313],[114.340413847656,23.7598146796876],[114.342764921875,23.7890822578125],[114.32295046875,23.8430422187501],[114.34271609375,23.87847190625],[114.347345,23.8938430000001],[114.35298953125,23.8981984687501],[114.369920683594,23.9201345039063],[114.383179960938,23.9981911445313],[114.381529570313,24.0093556953126],[114.39298953125,24.0181984687501],[114.401832304688,24.0296584296875],[114.412345,24.0281032539063],[114.430943632813,24.0308522773438],[114.44170046875,24.0694875312501],[114.47298953125,24.0881984687501],[114.491807890625,24.1196608710938],[114.502735625,24.1180471015625],[114.521954375,24.1296388984375],[114.532345,24.1281032539063],[114.542345,24.1295827460937],[114.552857695313,24.1280275703125],[114.557345,24.133843],[114.572628203125,24.1291237617188],[114.59220828125,24.0983351875001],[114.612061796875,24.1091237617188],[114.641568632813,24.1226662421875],[114.618531523438,24.1650612617187],[114.630264921875,24.1785622382812],[114.669674101563,24.11659690625],[114.712345,24.1191408515625],[114.722613554688,24.1185280585938],[114.732061796875,24.1391237617188],[114.764293242188,24.1596218085938],[114.782545195313,24.1585329414063],[114.819522734375,24.1718019843751],[114.832613554688,24.200317609375],[114.86611453125,24.1983205390625],[114.892061796875,24.2391237617188],[114.922628203125,24.2585622382813],[114.927345,24.2638430000001],[114.96326296875,24.2397585273438]]]]}},{"type":"Feature","properties":{"name":"和平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.074346953125,24.6983913398437],[115.097056914063,24.672973859375],[115.142061796875,24.6891237617188],[115.187345,24.6938430000001],[115.19298953125,24.68948753125],[115.219127226563,24.6556252265626],[115.264678984375,24.62046409375],[115.21127078125,24.548911359375],[115.224327421875,24.5272658515625],[115.221549101563,24.508452375],[115.233375273438,24.488843],[115.2214465625,24.4690676093751],[115.233258085938,24.4285622382813],[115.210308867188,24.3976100898437],[115.214019804688,24.3724929023437],[115.1986340625,24.3525563789063],[115.17298953125,24.3327614570313],[115.19170046875,24.2781984687501],[115.24170046875,24.2577346015625],[115.206886015625,24.2097927070313],[115.18170046875,24.19948753125],[115.16298953125,24.18819846875],[115.11170046875,24.1794875312501],[115.077345,24.163843],[115.06142703125,24.1679274726563],[115.05326296875,24.1797585273438],[115.03142703125,24.1879274726563],[115.002847929688,24.2100759101563],[114.976573515625,24.204184796875],[114.96326296875,24.2397585273438],[114.927345,24.2638430000001],[114.916436796875,24.3010158515625],[114.882608671875,24.288305890625],[114.869107695313,24.28968284375],[114.847345,24.3158815742188],[114.825631132813,24.2897389960938],[114.812808867188,24.3193044257813],[114.803892851563,24.3283815742188],[114.792789335938,24.2782888007813],[114.7481653125,24.282837140625],[114.752886992188,24.329165265625],[114.741803007813,24.348520734375],[114.7428528125,24.358843],[114.741324492188,24.373843],[114.7428528125,24.3888430000001],[114.741324492188,24.403843],[114.7428528125,24.4188430000001],[114.741314726563,24.433930890625],[114.69064578125,24.4760182929688],[114.704859648438,24.513843],[114.697345,24.5338430000001],[114.703350859375,24.5378371406251],[114.711339140625,24.549848859375],[114.734508085938,24.5652565742187],[114.723350859375,24.6095388007812],[114.779029570313,24.611704328125],[114.797345,24.603843],[114.813570585938,24.5980226875],[114.852735625,24.600356671875],[114.851539335938,24.5803395820312],[114.868092070313,24.5618141914063],[114.891485625,24.6048610664063],[114.914229765625,24.6785207343751],[114.935513945313,24.6546974921876],[114.979039335938,24.6783473945312],[114.992345,24.6791408515625],[115.02259890625,24.6773366523438],[115.050494414063,24.7085622382813],[115.074346953125,24.6983913398437]]]]}},{"type":"Feature","properties":{"name":"连平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.337345,24.583843],[114.342345,24.5710353828125],[114.347345,24.583843],[114.367345,24.583843],[114.367345,24.563843],[114.387345,24.563843],[114.3982434375,24.5012184882813],[114.436673613281,24.4964382148438],[114.486060820313,24.5325124335938],[114.532545195313,24.5598390937501],[114.548912382813,24.5393971992188],[114.592896757813,24.5482888007813],[114.618267851563,24.5799709296876],[114.637345,24.5776003242188],[114.662120390625,24.5806813789063],[114.681793242188,24.5482888007813],[114.692896757813,24.5393971992188],[114.697345,24.5338430000001],[114.704859648438,24.513843],[114.69064578125,24.4760182929688],[114.741314726563,24.433930890625],[114.7428528125,24.4188430000001],[114.741324492188,24.403843],[114.7428528125,24.3888430000001],[114.741324492188,24.373843],[114.7428528125,24.358843],[114.741803007813,24.348520734375],[114.752886992188,24.329165265625],[114.7481653125,24.282837140625],[114.792789335938,24.2782888007813],[114.803892851563,24.3283815742188],[114.812808867188,24.3193044257813],[114.825631132813,24.2897389960938],[114.847345,24.3158815742188],[114.869107695313,24.28968284375],[114.882608671875,24.288305890625],[114.916436796875,24.3010158515625],[114.927345,24.2638430000001],[114.922628203125,24.2585622382813],[114.892061796875,24.2391237617188],[114.86611453125,24.1983205390625],[114.832613554688,24.200317609375],[114.819522734375,24.1718019843751],[114.782545195313,24.1585329414063],[114.764293242188,24.1596218085938],[114.732061796875,24.1391237617188],[114.722613554688,24.1185280585938],[114.712345,24.1191408515625],[114.669674101563,24.11659690625],[114.630264921875,24.1785622382812],[114.618531523438,24.1650612617187],[114.641568632813,24.1226662421875],[114.612061796875,24.1091237617188],[114.59220828125,24.0983351875001],[114.572628203125,24.1291237617188],[114.557345,24.133843],[114.56197390625,24.15921409375],[114.593204375,24.173149640625],[114.588922148438,24.2264455390626],[114.56197390625,24.23847190625],[114.552345,24.2496462226563],[114.537691679688,24.2326369453126],[114.4618371875,24.1690993476563],[114.473072539063,24.1175783515625],[114.428253203125,24.1211794257813],[114.410726347656,24.1415261054687],[114.367345,24.1380397773438],[114.342669707031,24.1400221992188],[114.332345,24.1280397773438],[114.290921660156,24.1761208320313],[114.292877226563,24.2004616523438],[114.27197390625,24.2184719062501],[114.26271609375,24.23921409375],[114.25197390625,24.25847190625],[114.247345,24.2738430000001],[114.257345,24.2738430000001],[114.257345,24.283843],[114.262899199219,24.2882888007813],[114.27490359375,24.3032814765625],[114.271678496094,24.3292018867188],[114.288487578125,24.3577980781251],[114.251790800781,24.3682888007813],[114.239046660156,24.4271999335938],[114.303407011719,24.4786989570313],[114.266536894531,24.5291725898438],[114.302899199219,24.5582888007813],[114.307345,24.5738430000001],[114.311353789063,24.5817678046876],[114.322359648438,24.5763942695313],[114.337345,24.583843]]],[[[114.347345,24.583843],[114.337345,24.583843],[114.342345,24.5966506171876],[114.347345,24.583843]]]]}},{"type":"Feature","properties":{"name":"龙川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.527345,24.183843],[115.537345,24.183843],[115.537345,24.173843],[115.527345,24.173843],[115.527345,24.183843]]],[[[115.527345,24.183843],[115.50080203125,24.1942775703125],[115.503082304688,24.178843],[115.501549101563,24.168452375],[115.51298953125,24.14948753125],[115.527525664063,24.1139723945312],[115.516143828125,24.0994875312501],[115.492857695313,24.1296584296875],[115.481832304688,24.1280275703125],[115.472857695313,24.1396584296875],[115.444127226563,24.1354128242188],[115.416236601563,24.0672634101563],[115.437584257813,24.03187034375],[115.45170046875,23.9734108710938],[115.403043242188,23.9443093085938],[115.391217070313,23.9018434882813],[115.366549101563,23.8609499335938],[115.357345,23.8538430000001],[115.331456328125,23.86124534375],[115.292896757813,23.9093971992188],[115.24279421875,23.9495217109375],[115.207345,23.94511253125],[115.16935671875,23.9498366523438],[115.17302859375,23.9793410468751],[115.147017851563,23.9903005195313],[115.132896757813,24.0118849921875],[115.174898710938,24.0066603828125],[115.144781523438,24.0478884101563],[115.126236601563,24.0627370429688],[115.110865507813,24.0819362617187],[115.112965117188,24.098843],[115.11150515625,24.1106032539063],[115.055748320313,24.1036696601563],[115.072896757813,24.1482888007813],[115.077345,24.163843],[115.11170046875,24.1794875312501],[115.16298953125,24.18819846875],[115.18170046875,24.19948753125],[115.206886015625,24.2097927070313],[115.24170046875,24.2577346015625],[115.19170046875,24.2781984687501],[115.17298953125,24.3327614570313],[115.1986340625,24.3525563789063],[115.214019804688,24.3724929023437],[115.210308867188,24.3976100898437],[115.233258085938,24.4285622382813],[115.2214465625,24.4690676093751],[115.233375273438,24.488843],[115.221549101563,24.508452375],[115.224327421875,24.5272658515625],[115.21127078125,24.548911359375],[115.264678984375,24.62046409375],[115.219127226563,24.6556252265626],[115.19298953125,24.68948753125],[115.187345,24.6938430000001],[115.1812903125,24.7092409492187],[115.216695585938,24.7304177070313],[115.235484648438,24.7276393867187],[115.291173125,24.7612331367188],[115.320767851563,24.7568605781251],[115.352735625,24.73757346875],[115.367345,24.773843],[115.38298953125,24.7781984687501],[115.407345,24.7928908515626],[115.449205351563,24.7676393867187],[115.469000273438,24.7705641914063],[115.50170046875,24.72819846875],[115.51298953125,24.7194875312501],[115.5260559375,24.7025563789063],[115.5505871875,24.6836208320313],[115.557345,24.6438430000001],[115.520069609375,24.6371999335938],[115.5021496875,24.5761403632813],[115.481793242188,24.559233625],[115.483873320313,24.5388430000001],[115.48107546875,24.5113893867188],[115.497257109375,24.4919094062501],[115.532345,24.4883327460938],[115.542735625,24.4893923164063],[115.551954375,24.4782936835938],[115.562735625,24.4793923164062],[115.571881132813,24.4683815742188],[115.5831653125,24.4590065742188],[115.571803007813,24.4391652656251],[115.574674101563,24.4109767890625],[115.542808867188,24.3666970039063],[115.551881132813,24.3383815742188],[115.588306914063,24.2529494453125],[115.571881132813,24.2393044257813],[115.562779570313,24.2082888007812],[115.548834257813,24.2097096992188],[115.527345,24.183843]]]]}},{"type":"Feature","properties":{"name":"源城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.62142703125,23.5497585273438],[114.612345,23.5366017890625],[114.597432890625,23.5581960273438],[114.57142703125,23.5679274726563],[114.549254179688,23.6000466132812],[114.553565703125,23.6192897773438],[114.533394804688,23.6502638984376],[114.527345,23.673843],[114.54271609375,23.6784719062501],[114.55197390625,23.68921409375],[114.59963015625,23.7000417304688],[114.603150664063,23.743843],[114.601832304688,23.7602272773438],[114.653204375,23.7831496406251],[114.6519153125,23.7991799140625],[114.68271609375,23.81847190625],[114.694761992188,23.85847190625],[114.721470976563,23.8274001289063],[114.73197390625,23.7584719062501],[114.757345,23.743843],[114.743248320313,23.7209670234375],[114.702183867188,23.7069728828125],[114.681158476563,23.6600295234375],[114.673023710938,23.5935036445312],[114.651158476563,23.5800295234375],[114.647345,23.563843],[114.62142703125,23.5497585273438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"阳春市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.851529570313,22.6293556953125],[111.854722929688,22.6077516914063],[111.823602324219,22.6123513007813],[111.820338164063,22.590259015625],[111.862135039063,22.5780739570313],[111.877345,22.5803200507812],[111.899000273438,22.5771218085938],[111.93170046875,22.6194875312501],[111.957345,22.6338430000001],[111.981790800781,22.5982888007813],[112.00107546875,22.58284690625],[111.963167753906,22.5524904609375],[111.983057890625,22.5052834296875],[112.002899199219,22.4893971992188],[112.011790800781,22.4782888007813],[112.057454863281,22.4461916328126],[112.079537382813,22.418618390625],[112.150347929688,22.4083107734375],[112.157345,22.383843],[112.151339140625,22.379848859375],[112.140064726563,22.3628932929688],[112.144705839844,22.344468],[112.092847929688,22.35753440625],[112.059471464844,22.3352468085938],[112.063604765625,22.3188430000001],[112.061085234375,22.308843],[112.063734160156,22.2983254218751],[112.038363066406,22.2660671210938],[112.022345,22.270102765625],[112.005301542969,22.2658083320313],[111.997345,22.2538430000001],[111.941197539063,22.2481154609376],[111.943148222656,22.223843],[111.941942167969,22.2088430000001],[111.944303007813,22.1794655585938],[111.91197390625,22.15921409375],[111.886766386719,22.1299587226563],[111.87271609375,22.09847190625],[111.858997832031,22.0738820625],[111.84197390625,22.05921409375],[111.83271609375,22.04847190625],[111.767056914063,22.0013234687501],[111.796766386719,21.9757277656251],[111.781146269531,21.9477346015626],[111.762105742188,21.949262921875],[111.727157011719,21.9364284492188],[111.717345,21.9038430000001],[111.649422636719,21.895356671875],[111.601485625,21.9137819648438],[111.548372832031,21.8749831367188],[111.512061796875,21.8794997382813],[111.458804960938,21.859028546875],[111.417345,21.853843],[111.377139921875,21.8644509101562],[111.352777128906,21.87991721875],[111.330484648438,21.8755104804688],[111.312965117188,21.8999538398437],[111.293892851563,21.8961843085938],[111.281553984375,21.9577321601563],[111.277345,21.993843],[111.281790800781,21.9993971992188],[111.292899199219,22.0082888007813],[111.307103300781,22.0260280585938],[111.280553007813,22.0472902656251],[111.308675566406,22.0951296210938],[111.333016386719,22.1284499335938],[111.327142363281,22.1756716132813],[111.342899199219,22.1882888007812],[111.352313261719,22.2318068671875],[111.372899199219,22.2482888007813],[111.377345,22.2538430000001],[111.39271609375,22.25847190625],[111.41197390625,22.2692140937501],[111.45271609375,22.27847190625],[111.46236453125,22.3209352851563],[111.512069121094,22.3637599921875],[111.59271609375,22.3784719062501],[111.60197390625,22.38921409375],[111.67091921875,22.4486159492188],[111.677345,22.483843],[111.70291140625,22.5035768867188],[111.729163847656,22.5677223945313],[111.773697539063,22.5986940742187],[111.803148222656,22.6384133125001],[111.801033964844,22.6527126289063],[111.826058378906,22.6851296210938],[111.837345,22.693843],[111.85170046875,22.66819846875],[111.87170046875,22.6527614570313],[111.86298953125,22.6381984687501],[111.851529570313,22.6293556953125]],[[111.785152617188,22.0372658515626],[111.797345,22.033843],[111.793922148438,22.0460353828125],[111.785152617188,22.0372658515626]]]]}},{"type":"Feature","properties":{"name":"阳东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.793922148438,22.0460353828125],[111.797345,22.033843],[111.785152617188,22.0372658515626],[111.793922148438,22.0460353828125]]],[[[112.013260527344,22.1241188789063],[112.032301054688,22.1176296210938],[112.090303984375,22.1356081367188],[112.113260527344,22.1197585273438],[112.127254667969,22.0994899726563],[112.164176054688,22.0856740546875],[112.191898222656,22.0676222968751],[112.220081816406,22.07394065625],[112.223465605469,22.0588430000001],[112.214324980469,22.0180690742188],[112.263260527344,21.9997585273438],[112.271429472656,21.9879274726562],[112.313792753906,21.979653546875],[112.333260527344,21.9497585273438],[112.341429472656,21.9279274726563],[112.347345,21.923843],[112.34156375,21.90913596875],[112.343822050781,21.893843],[112.341529570313,21.8783303046875],[112.358150664063,21.8655007148438],[112.32298953125,21.77819846875],[112.301092558594,21.7418996406251],[112.307345,21.703843],[112.241024199219,21.7079518867188],[112.245767851563,21.7291139960938],[112.202957792969,21.7401003242188],[112.191685820313,21.797817609375],[112.147782011719,21.8079274726563],[112.078294707031,21.7863893867188],[112.057345,21.7910842109375],[112.042303496094,21.7877126289063],[112.017345,21.7938430000001],[112.017345,21.803843],[112.030152617188,21.808843],[112.017345,21.813843],[111.995199003906,21.8476760078125],[112.003333769531,21.888843],[112.001234160156,21.8994631171875],[112.013170195313,21.9080178046875],[112.029495878906,21.9503444648438],[112.017503691406,21.9680178046876],[111.992862578125,21.933637921875],[111.94685671875,21.9069631171875],[111.932345,21.9098317695313],[111.921912871094,21.90776878125],[111.898651152344,21.9225368476563],[111.903333769531,21.898843],[111.900369902344,21.883843],[111.903333769531,21.8688430000001],[111.900369902344,21.853843],[111.907691679688,21.8167848945313],[111.841727324219,21.82995628125],[111.832642851563,21.8172829414063],[111.807345,21.8338430000001],[111.783260527344,21.8497585273438],[111.757254667969,21.8594899726562],[111.735091582031,21.8915895820312],[111.717345,21.9038430000001],[111.727157011719,21.9364284492188],[111.762105742188,21.949262921875],[111.781146269531,21.9477346015626],[111.796766386719,21.9757277656251],[111.767056914063,22.0013234687501],[111.83271609375,22.04847190625],[111.84197390625,22.05921409375],[111.858997832031,22.0738820625],[111.87271609375,22.09847190625],[111.886766386719,22.1299587226563],[111.91197390625,22.15921409375],[111.944303007813,22.1794655585938],[111.941942167969,22.2088430000001],[111.943148222656,22.223843],[111.941197539063,22.2481154609376],[111.997345,22.2538430000001],[112.039752226563,22.2254055],[112.044989042969,22.2020436835938],[112.030960722656,22.1686452460938],[112.045474882813,22.1463600898438],[112.013260527344,22.1241188789063]]]]}},{"type":"Feature","properties":{"name":"江城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.183338652344,21.5665676093751],[112.187345,21.543843],[112.174346953125,21.5494045234375],[112.183338652344,21.5665676093751]]],[[[111.967345,21.653843],[111.972345,21.6410353828125],[111.977345,21.653843],[112.014371367188,21.6475539375],[112.011605253906,21.628843],[112.013436308594,21.6164650703126],[111.99205203125,21.61962425],[111.959906035156,21.60698753125],[111.928678007813,21.6116017890626],[111.89170046875,21.5894875312501],[111.8627746875,21.5680397773438],[111.847345,21.5703200507813],[111.804598417969,21.5640041328126],[111.82298953125,21.5781984687501],[111.83170046875,21.59948753125],[111.854066191406,21.6167482734375],[111.839849882813,21.6529055],[111.887174101563,21.6459133125001],[111.92248171875,21.6597927070313],[111.946156035156,21.6455129218751],[111.967345,21.653843]]],[[[111.977345,21.653843],[111.967345,21.653843],[111.972345,21.6666506171875],[111.977345,21.653843]]],[[[111.827345,21.703843],[111.817345,21.703843],[111.817345,21.733843],[111.827345,21.733843],[111.827345,21.703843]]],[[[111.817345,21.733843],[111.792733183594,21.7412526679688],[111.807345,21.7538430000001],[111.817345,21.733843]]],[[[111.827345,21.703843],[111.837345,21.703843],[111.837345,21.7538430000001],[111.849537382813,21.7572658515625],[111.840767851563,21.7660353828126],[111.837345,21.7538430000001],[111.807345,21.7538430000001],[111.807345,21.763843],[111.787345,21.763843],[111.787345,21.773843],[111.797345,21.773843],[111.797345,21.783843],[111.807257109375,21.80378440625],[111.799896269531,21.8188576484376],[111.807345,21.8338430000001],[111.832642851563,21.8172829414063],[111.841727324219,21.82995628125],[111.907691679688,21.8167848945313],[111.900369902344,21.853843],[111.903333769531,21.8688430000001],[111.900369902344,21.883843],[111.903333769531,21.898843],[111.898651152344,21.9225368476563],[111.921912871094,21.90776878125],[111.932345,21.9098317695313],[111.94685671875,21.9069631171875],[111.992862578125,21.933637921875],[112.017503691406,21.9680178046876],[112.029495878906,21.9503444648438],[112.013170195313,21.9080178046875],[112.001234160156,21.8994631171875],[112.003333769531,21.888843],[111.995199003906,21.8476760078125],[112.017345,21.813843],[112.017345,21.803843],[112.017345,21.7938430000001],[112.033516875,21.7684230781251],[111.991790800781,21.7593971992187],[111.982799101563,21.7481642890626],[111.971890898438,21.7495217109376],[111.962899199219,21.7382888007813],[111.931790800781,21.7193971992188],[111.869273710938,21.6693971992188],[111.837359648438,21.6913381171876],[111.827345,21.703843]]]]}},{"type":"Feature","properties":{"name":"阳西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.547345,21.513843],[111.543922148438,21.5016506171876],[111.535152617188,21.5104201484376],[111.547345,21.513843]]],[[[111.783922148438,21.6260353828125],[111.787345,21.613843],[111.775152617188,21.6172658515626],[111.783922148438,21.6260353828125]]],[[[111.787345,21.6738430000001],[111.783922148438,21.6860353828125],[111.775152617188,21.6772658515625],[111.758753691406,21.6193361640625],[111.697713652344,21.6036721015625],[111.671429472656,21.5697585273438],[111.659034453125,21.5214626289063],[111.641571074219,21.5175490546875],[111.633260527344,21.5397585273437],[111.617345,21.543843],[111.613922148438,21.5560353828125],[111.605152617188,21.5472658515626],[111.617345,21.543843],[111.614801054688,21.5363869453125],[111.579888945313,21.5312990546875],[111.564801054688,21.5163869453125],[111.547345,21.513843],[111.53545046875,21.5281618476563],[111.479303007813,21.5070632148438],[111.452806425781,21.5117678046875],[111.473363066406,21.5288430000001],[111.461883574219,21.5383815742188],[111.437081328125,21.5955641914063],[111.427345,21.583843],[111.410472441406,21.5954909492188],[111.415706816406,21.618843],[111.409654570313,21.6458425117188],[111.43353640625,21.6985329414063],[111.429115019531,21.7182570625],[111.377345,21.7315407539063],[111.383465605469,21.7588430000001],[111.379339628906,21.7772512031251],[111.413260527344,21.8179274726563],[111.417345,21.853843],[111.458804960938,21.859028546875],[111.512061796875,21.8794997382813],[111.548372832031,21.8749831367188],[111.601485625,21.9137819648438],[111.649422636719,21.895356671875],[111.717345,21.9038430000001],[111.735091582031,21.8915895820312],[111.757254667969,21.8594899726562],[111.783260527344,21.8497585273438],[111.807345,21.8338430000001],[111.799896269531,21.8188576484376],[111.807257109375,21.80378440625],[111.797345,21.783843],[111.787345,21.783843],[111.787345,21.773843],[111.769144316406,21.7661989570313],[111.752345,21.7699636054688],[111.732345,21.7654811835938],[111.683260527344,21.7764846015626],[111.70193484375,21.747134015625],[111.731898222656,21.7276222968751],[111.746304960938,21.7308522773438],[111.801429472656,21.6993874335938],[111.793260527344,21.6779274726563],[111.787345,21.6738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"佛冈县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.615135527344,24.1051271796876],[113.67201296875,24.0675417304688],[113.727078886719,24.0846096015625],[113.743260527344,24.0597585273438],[113.747345,24.023843],[113.719598417969,24.002426984375],[113.723558378906,23.9756252265625],[113.76298953125,23.95948753125],[113.792493925781,23.9212599921875],[113.797345,23.903843],[113.78170046875,23.89948753125],[113.746951933594,23.8544680000001],[113.708455839844,23.8601564765625],[113.713084746094,23.828843],[113.711302519531,23.8167800117188],[113.687345,23.8203200507813],[113.667345,23.8173659492188],[113.640809355469,23.8212868476563],[113.62298953125,23.79819846875],[113.607054472656,23.7859011054688],[113.62298953125,23.7594875312501],[113.63170046875,23.7226418281251],[113.596514921875,23.6643093085937],[113.549295683594,23.7024709296876],[113.51298953125,23.68819846875],[113.478426542969,23.6794875312501],[113.458631621094,23.7051296210938],[113.44170046875,23.71819846875],[113.432857695313,23.7296584296875],[113.411783476563,23.7265431953125],[113.367345,23.7338430000001],[113.33298953125,23.73948753125],[113.297345,23.743843],[113.306783476563,23.7768508125],[113.347337675781,23.8458425117188],[113.337345,23.8538430000001],[113.3539075,23.88931175],[113.33486453125,23.9024611640625],[113.36384890625,23.9213332343751],[113.402345,23.9299636054687],[113.42435671875,23.9250295234375],[113.445697050781,23.9559377265625],[113.482791777344,23.947622296875],[113.501429472656,23.9597585273438],[113.529454375,23.9702443671875],[113.510960722656,23.9986452460938],[113.523260527344,24.0279274726563],[113.531925078125,24.0723000312501],[113.56060671875,24.0658693671876],[113.591839628906,24.0900759101563],[113.603016386719,24.0875710273438],[113.615135527344,24.1051271796876]]]]}},{"type":"Feature","properties":{"name":"连南瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.463338652344,24.446567609375],[112.467345,24.4238430000001],[112.454346953125,24.4294045234376],[112.463338652344,24.446567609375]]],[[[112.377345,24.623843],[112.365152617188,24.6204201484375],[112.373922148438,24.6116506171875],[112.387345,24.623843],[112.38298953125,24.5881984687501],[112.371575957031,24.5490529609376],[112.374561796875,24.528843],[112.369427519531,24.4940993476562],[112.390809355469,24.4663991523438],[112.434840117188,24.4729055],[112.417821074219,24.429614484375],[112.48970828125,24.4033864570313],[112.460233183594,24.3806349921875],[112.479019804688,24.34948753125],[112.457972441406,24.3600759101563],[112.436263457031,24.38819846875],[112.412157011719,24.3421633125],[112.407345,24.313843],[112.391519804688,24.3180178046875],[112.370999785156,24.3466481757813],[112.341519804688,24.3580178046875],[112.313170195313,24.3796681953125],[112.277567167969,24.3980178046875],[112.291146269531,24.3293068671875],[112.257345,24.323843],[112.24298953125,24.34948753125],[112.22170046875,24.3581984687501],[112.21298953125,24.37948753125],[112.198074980469,24.4042116523438],[112.16298953125,24.37819846875],[112.138746367188,24.3694875312501],[112.145384550781,24.4144142890625],[112.110128203125,24.428843],[112.113160429688,24.4493556953125],[112.101529570313,24.4583303046875],[112.104378691406,24.4776100898438],[112.069837675781,24.5241994453126],[112.050391875,24.5392092109375],[112.116866484375,24.55323753125],[112.110594511719,24.5956911445313],[112.125799589844,24.6478444648438],[112.16298953125,24.6581984687501],[112.21170046875,24.68948753125],[112.263624296875,24.7084304023438],[112.242611113281,24.7432717109376],[112.180128203125,24.7688430000001],[112.184378691406,24.7976100898438],[112.16170046875,24.82819846875],[112.157345,24.8438430000001],[112.170152617188,24.848843],[112.157345,24.853843],[112.16170046875,24.88948753125],[112.167345,24.923843],[112.193729277344,24.9342165351563],[112.2534778125,24.8891164375001],[112.273294707031,24.8387062812501],[112.258880644531,24.814809796875],[112.276058378906,24.7925563789062],[112.29298953125,24.77948753125],[112.308255644531,24.6896096015626],[112.333167753906,24.6794142890625],[112.330203886719,24.6593556953126],[112.343160429688,24.6493556953125],[112.341517363281,24.6382497382813],[112.37298953125,24.62948753125],[112.377345,24.623843]]]]}},{"type":"Feature","properties":{"name":"连山壮族瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.157345,24.8438430000001],[112.16170046875,24.82819846875],[112.184378691406,24.7976100898438],[112.180128203125,24.7688430000001],[112.242611113281,24.7432717109376],[112.263624296875,24.7084304023438],[112.21170046875,24.68948753125],[112.16298953125,24.6581984687501],[112.125799589844,24.6478444648438],[112.110594511719,24.5956911445313],[112.116866484375,24.55323753125],[112.050391875,24.5392092109375],[112.069837675781,24.5241994453126],[112.104378691406,24.4776100898438],[112.101529570313,24.4583303046875],[112.113160429688,24.4493556953125],[112.110128203125,24.428843],[112.145384550781,24.4144142890625],[112.138746367188,24.3694875312501],[112.16298953125,24.37819846875],[112.198074980469,24.4042116523438],[112.21298953125,24.37948753125],[112.22170046875,24.3581984687501],[112.24298953125,24.34948753125],[112.257345,24.323843],[112.2520325,24.31909690625],[112.253238554688,24.298843],[112.250384550781,24.2509572578125],[112.212064238281,24.2391237617188],[112.192625761719,24.2085622382813],[112.172064238281,24.1991237617188],[112.150096464844,24.1871877265626],[112.10970828125,24.232387921875],[112.059534941406,24.2685622382813],[112.032625761719,24.1985622382813],[111.999429960938,24.1891237617187],[111.9541028125,24.2398561835938],[111.937345,24.2338430000001],[111.945277128906,24.261587140625],[111.974610625,24.2579396796875],[111.998785429688,24.288130109375],[112.022899199219,24.2982888007813],[112.0526184375,24.3472194648438],[112.061790800781,24.3822731757813],[112.041790800781,24.3982888007812],[112.027830839844,24.4314235664063],[111.98146609375,24.4685500312501],[111.992899199219,24.4982888007813],[112.001790800781,24.5422731757813],[111.981790800781,24.5582888007813],[111.968450957031,24.5749489570313],[111.943787871094,24.5946999335938],[111.922899199219,24.6322731757813],[111.944154082031,24.6492971015626],[111.939808378906,24.6842360664063],[111.95584109375,24.7259450507812],[112.012899199219,24.7382888007813],[112.017345,24.743843],[112.022899199219,24.7482888007813],[112.036261015625,24.7800002265625],[112.051790800781,24.7993971992188],[112.075904570313,24.8095558906251],[112.097352324219,24.8363381171875],[112.157345,24.8438430000001]]],[[[112.157345,24.8438430000001],[112.157345,24.853843],[112.170152617188,24.848843],[112.157345,24.8438430000001]]]]}},{"type":"Feature","properties":{"name":"连州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.377345,24.623843],[112.373922148438,24.6116506171875],[112.365152617188,24.6204201484375],[112.377345,24.623843]]],[[[112.377345,24.623843],[112.37298953125,24.62948753125],[112.341517363281,24.6382497382813],[112.343160429688,24.6493556953125],[112.330203886719,24.6593556953126],[112.333167753906,24.6794142890625],[112.308255644531,24.6896096015626],[112.29298953125,24.77948753125],[112.276058378906,24.7925563789062],[112.258880644531,24.814809796875],[112.273294707031,24.8387062812501],[112.2534778125,24.8891164375001],[112.193729277344,24.9342165351563],[112.167345,24.923843],[112.163260527344,24.9297585273438],[112.121429472656,24.9579274726563],[112.113260527344,24.9792189765625],[112.143260527344,25.0179274726563],[112.147345,25.053843],[112.158450957031,25.0827370429687],[112.18908328125,25.1898708320313],[112.207345,25.1876003242188],[112.233704863281,25.1908766914063],[112.258914824219,25.1593971992188],[112.302899199219,25.1682888007813],[112.357345,25.193843],[112.362535429688,25.1890334296875],[112.399210234375,25.1390334296876],[112.412535429688,25.1486525703126],[112.438153105469,25.1883205390625],[112.452154570313,25.1586525703125],[112.492535429688,25.1490334296875],[112.549222441406,25.129165265625],[112.570882597656,25.128305890625],[112.627345,25.1401198554688],[112.657345,25.133843],[112.71423953125,25.0674367500001],[112.711197539063,25.02956565625],[112.73271609375,24.99921409375],[112.743900175781,24.9620729804687],[112.77271609375,24.94921409375],[112.777345,24.903843],[112.771790800781,24.8993971992188],[112.762215605469,24.8766725898438],[112.701790800781,24.8593971992188],[112.690863066406,24.8457497382813],[112.693587675781,24.823843],[112.689583769531,24.7916530585938],[112.652530546875,24.7619802070313],[112.642515898438,24.7269557929688],[112.617345,24.7300856757813],[112.597579375,24.7276271796875],[112.55521609375,24.6673610664063],[112.431790800781,24.6493971992188],[112.402899199219,24.6282888007812],[112.387345,24.623843],[112.377345,24.623843]]]]}},{"type":"Feature","properties":{"name":"清城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.157345,23.743843],[113.145152617188,23.7404201484375],[113.153922148438,23.7316506171875],[113.19298953125,23.7294875312501],[113.20170046875,23.71819846875],[113.21298953125,23.70948753125],[113.221832304688,23.6980275703126],[113.257345,23.7032765937501],[113.292345,23.6981032539063],[113.304561796875,23.6999098945313],[113.297345,23.743843],[113.33298953125,23.73948753125],[113.367345,23.7338430000001],[113.358865996094,23.7008010078126],[113.323260527344,23.6479274726563],[113.297254667969,23.6381960273438],[113.283260527344,23.6179274726563],[113.277345,23.613843],[113.251790800781,23.6093971992188],[113.199273710938,23.5785256171875],[113.203011503906,23.5484841132813],[113.186041289063,23.519614484375],[113.155206328125,23.5066213203126],[113.115477324219,23.5115627265625],[113.092899199219,23.4982888007813],[113.071790800781,23.4893971992188],[113.049276152344,23.4761598945313],[112.971790800781,23.4593971992188],[112.967345,23.453843],[112.937955351563,23.4584743476563],[112.915697050781,23.4907155585938],[112.901651640625,23.4875661445313],[112.883260527344,23.5173976875],[112.907345,23.553843],[112.950096464844,23.5826930976563],[112.964886503906,23.6564601875],[112.981519804688,23.6796681953125],[113.0039465625,23.6957424140626],[112.999503203125,23.7182228828125],[113.021658964844,23.7341042304688],[113.0340246875,23.7661598945312],[113.093170195313,23.7780178046875],[113.102115507813,23.7904982734375],[113.181519804688,23.7695510078125],[113.172962675781,23.7577321601563],[113.1616028125,23.7599782539063],[113.157345,23.743843]]]]}},{"type":"Feature","properties":{"name":"清新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.157345,23.743843],[113.153922148438,23.7316506171875],[113.145152617188,23.7404201484375],[113.157345,23.743843]]],[[[112.747345,24.253843],[112.735152617188,24.2572658515626],[112.743922148438,24.2660353828125],[112.747345,24.253843]]],[[[113.157345,23.743843],[113.1616028125,23.7599782539063],[113.172962675781,23.7577321601563],[113.181519804688,23.7695510078125],[113.102115507813,23.7904982734375],[113.093170195313,23.7780178046875],[113.0340246875,23.7661598945312],[113.021658964844,23.7341042304688],[112.999503203125,23.7182228828125],[113.0039465625,23.6957424140626],[112.981519804688,23.6796681953125],[112.964886503906,23.6564601875],[112.950096464844,23.5826930976563],[112.907345,23.553843],[112.903260527344,23.5597585273437],[112.8536340625,23.57249534375],[112.832345,23.5677223945313],[112.821529570313,23.5701467109375],[112.817345,23.553843],[112.810887480469,23.5444924140625],[112.789132109375,23.5595143867188],[112.795706816406,23.5888430000001],[112.743260527344,23.6084670234375],[112.751429472656,23.6297585273438],[112.781429472656,23.6504714179688],[112.768365507813,23.681313703125],[112.747074003906,23.6765407539063],[112.717345,23.683843],[112.711527128906,23.71925315625],[112.733148222656,23.7484133125001],[112.731302519531,23.7609059882813],[112.701978789063,23.7565724921875],[112.69298953125,23.80948753125],[112.650391875,23.8184767890626],[112.66298953125,23.8281984687501],[112.67373171875,23.8544509101563],[112.671575957031,23.8690529609375],[112.684879179688,23.9146804023438],[112.670125761719,23.9522096992188],[112.632345,23.9466262031251],[112.602957792969,23.9509694648438],[112.567345,23.973843],[112.57170046875,24.03948753125],[112.603150664063,24.0783986640625],[112.60048953125,24.0964040351563],[112.624691191406,24.1579665351562],[112.616224394531,24.215259015625],[112.639683867188,24.2333669257813],[112.711390410156,24.2124587226563],[112.721751738281,24.2496706367188],[112.741832304688,24.2467018867188],[112.747345,24.253843],[112.757345,24.253843],[112.757345,24.313843],[112.77271609375,24.30921409375],[112.805225859375,24.2714821601563],[112.8327746875,24.2591896796875],[112.831942167969,24.248843],[112.833492460938,24.22956565625],[112.805496855469,24.1900807929688],[112.82271609375,24.15921409375],[112.83197390625,24.12847190625],[112.873148222656,24.1160744453125],[112.904378691406,24.0891677070313],[112.901180449219,24.0493386054688],[112.922345,24.0476369453125],[112.979212675781,24.0522072578126],[112.993609648438,23.9577394843751],[113.014439726563,23.9594118476563],[113.05197390625,23.93847190625],[113.077901640625,23.926899640625],[113.104405546875,23.8845900703125],[113.169034453125,23.8897829414063],[113.19271609375,23.87921409375],[113.20197390625,23.8684719062501],[113.24271609375,23.85921409375],[113.272110625,23.8484206367188],[113.337345,23.8538430000001],[113.347337675781,23.8458425117188],[113.306783476563,23.7768508125],[113.297345,23.743843],[113.304561796875,23.6999098945313],[113.292345,23.6981032539063],[113.257345,23.7032765937501],[113.221832304688,23.6980275703126],[113.21298953125,23.70948753125],[113.20170046875,23.71819846875],[113.19298953125,23.7294875312501],[113.157345,23.743843]]]]}},{"type":"Feature","properties":{"name":"阳山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.747345,24.253843],[112.743922148438,24.2660353828125],[112.735152617188,24.2572658515626],[112.741832304688,24.2467018867188],[112.721751738281,24.2496706367188],[112.711390410156,24.2124587226563],[112.639683867188,24.2333669257813],[112.616224394531,24.215259015625],[112.624691191406,24.1579665351562],[112.60048953125,24.0964040351563],[112.603150664063,24.0783986640625],[112.57170046875,24.03948753125],[112.567345,23.973843],[112.562345,23.9676003242188],[112.552796660156,23.9795217109375],[112.507345,23.973843],[112.501512480469,24.0093410468751],[112.513311796875,24.0184474921876],[112.483804960938,24.1136916328126],[112.43170046875,24.1281984687501],[112.42298953125,24.1618874335938],[112.453177519531,24.2386769843751],[112.441082792969,24.2908718085938],[112.421800566406,24.2880226875],[112.407345,24.313843],[112.412157011719,24.3421633125],[112.436263457031,24.38819846875],[112.457972441406,24.3600759101563],[112.479019804688,24.34948753125],[112.460233183594,24.3806349921875],[112.48970828125,24.4033864570313],[112.417821074219,24.429614484375],[112.434840117188,24.4729055],[112.390809355469,24.4663991523438],[112.369427519531,24.4940993476562],[112.374561796875,24.528843],[112.371575957031,24.5490529609376],[112.38298953125,24.5881984687501],[112.387345,24.623843],[112.402899199219,24.6282888007812],[112.431790800781,24.6493971992188],[112.55521609375,24.6673610664063],[112.597579375,24.7276271796875],[112.617345,24.7300856757813],[112.642515898438,24.7269557929688],[112.652530546875,24.7619802070313],[112.689583769531,24.7916530585938],[112.693587675781,24.823843],[112.690863066406,24.8457497382813],[112.701790800781,24.8593971992188],[112.762215605469,24.8766725898438],[112.771790800781,24.8993971992188],[112.777345,24.903843],[112.787454863281,24.8902541328125],[112.847345,24.9005641914063],[112.862806425781,24.8979030585938],[112.891610136719,24.9195778632813],[112.987345,24.923843],[112.998988066406,24.9158034492188],[113.016546660156,24.8591579414063],[112.989173613281,24.8489138007813],[112.948531523438,24.82085471875],[112.954339628906,24.7949416328125],[112.929456816406,24.7567287421875],[112.934932890625,24.7322951484376],[112.896912871094,24.7180690742188],[112.906781035156,24.67405784375],[112.893260527344,24.6379274726563],[112.873260527344,24.6072145820312],[112.881732207031,24.5975856757813],[112.927171660156,24.6077712226563],[112.959176054688,24.5856740546876],[112.967345,24.553843],[112.963150664063,24.5470339179687],[112.951243925781,24.5507424140625],[112.943446074219,24.4869435859375],[112.927345,24.491958234375],[112.912345,24.4872853828125],[112.899449492188,24.4913014960938],[112.8682825,24.4720973945313],[112.847772246094,24.4097414375],[112.881158476563,24.3891701484375],[112.869110136719,24.3551784492188],[112.852313261719,24.3604103828125],[112.812376738281,24.3472756171875],[112.799947539063,24.3511476875],[112.761158476563,24.3300295234376],[112.757345,24.313843],[112.757345,24.253843],[112.747345,24.253843]],[[112.467345,24.4238430000001],[112.463338652344,24.446567609375],[112.454346953125,24.4294045234376],[112.467345,24.4238430000001]]]]}},{"type":"Feature","properties":{"name":"英德市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.967345,24.553843],[112.992625761719,24.5391237617188],[113.035299101563,24.4803224921875],[113.078294707031,24.4691237617188],[113.096168242188,24.5080666328125],[113.150679960938,24.4784450507813],[113.172345,24.4797365546875],[113.199403105469,24.4781252265625],[113.207345,24.503843],[113.242857695313,24.5096755195313],[113.277760039063,24.45948753125],[113.325289335938,24.4712404609376],[113.3751965625,24.4908620429688],[113.40298953125,24.4794875312501],[113.417838164063,24.4602468085938],[113.436737089844,24.45745628125],[113.46298953125,24.4681984687501],[113.471832304688,24.4796584296875],[113.487345,24.4773659492188],[113.502345,24.4795827460938],[113.51490359375,24.4777248359375],[113.546143828125,24.51819846875],[113.59298953125,24.50948753125],[113.61170046875,24.49819846875],[113.63298953125,24.4894875312501],[113.64170046875,24.47819846875],[113.667345,24.473843],[113.667345,24.4638430000001],[113.677345,24.4638430000001],[113.684569121094,24.4392214179688],[113.709058867188,24.4097389960938],[113.725819121094,24.4483815742188],[113.753690214844,24.4334938789063],[113.791886015625,24.4017629218751],[113.811883574219,24.3483815742188],[113.844427519531,24.3342653632813],[113.840816679688,24.298843],[113.842855253906,24.278843],[113.840882597656,24.2595021796875],[113.852345,24.2583327460938],[113.862735625,24.2593923164063],[113.871883574219,24.2483815742188],[113.882806425781,24.2393044257813],[113.895394316406,24.2102858710937],[113.917345,24.203843],[113.905697050781,24.1869704414063],[113.891097441406,24.1902443671875],[113.859132109375,24.1681716132813],[113.865611601563,24.1392702460938],[113.831065703125,24.1195510078125],[113.833465605469,24.108843],[113.831224394531,24.098843],[113.8367590625,24.0741506171875],[113.795513945313,24.0456740546876],[113.783016386719,24.0275710273438],[113.772303496094,24.0299733710938],[113.747345,24.023843],[113.743260527344,24.0597585273438],[113.727078886719,24.0846096015625],[113.67201296875,24.0675417304688],[113.615135527344,24.1051271796876],[113.603016386719,24.0875710273438],[113.591839628906,24.0900759101563],[113.56060671875,24.0658693671876],[113.531925078125,24.0723000312501],[113.523260527344,24.0279274726563],[113.510960722656,23.9986452460938],[113.529454375,23.9702443671875],[113.501429472656,23.9597585273438],[113.482791777344,23.947622296875],[113.445697050781,23.9559377265625],[113.42435671875,23.9250295234375],[113.402345,23.9299636054687],[113.36384890625,23.9213332343751],[113.33486453125,23.9024611640625],[113.3539075,23.88931175],[113.337345,23.8538430000001],[113.272110625,23.8484206367188],[113.24271609375,23.85921409375],[113.20197390625,23.8684719062501],[113.19271609375,23.87921409375],[113.169034453125,23.8897829414063],[113.104405546875,23.8845900703125],[113.077901640625,23.926899640625],[113.05197390625,23.93847190625],[113.014439726563,23.9594118476563],[112.993609648438,23.9577394843751],[112.979212675781,24.0522072578126],[112.922345,24.0476369453125],[112.901180449219,24.0493386054688],[112.904378691406,24.0891677070313],[112.873148222656,24.1160744453125],[112.83197390625,24.12847190625],[112.82271609375,24.15921409375],[112.805496855469,24.1900807929688],[112.833492460938,24.22956565625],[112.831942167969,24.248843],[112.8327746875,24.2591896796875],[112.805225859375,24.2714821601563],[112.77271609375,24.30921409375],[112.757345,24.313843],[112.761158476563,24.3300295234376],[112.799947539063,24.3511476875],[112.812376738281,24.3472756171875],[112.852313261719,24.3604103828125],[112.869110136719,24.3551784492188],[112.881158476563,24.3891701484375],[112.847772246094,24.4097414375],[112.8682825,24.4720973945313],[112.899449492188,24.4913014960938],[112.912345,24.4872853828125],[112.927345,24.491958234375],[112.943446074219,24.4869435859375],[112.951243925781,24.5507424140625],[112.963150664063,24.5470339179687],[112.967345,24.553843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东莞市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.837345,23.1238430000001],[113.852193632813,23.118637921875],[113.882296171875,23.1198317695313],[113.972535429688,23.1090334296875],[114.015628691406,23.0862306953126],[114.079500761719,23.108618390625],[114.094881621094,23.0600417304688],[114.127345,23.0538430000001],[114.131339140625,23.037837140625],[114.14486453125,23.028843],[114.125379667969,23.0158864570313],[114.119686308594,22.9932912421875],[114.152345,22.985063703125],[114.203040800781,22.997837140625],[114.215452910156,22.9761818671875],[114.20375125,22.9297292304688],[114.227345,22.923843],[114.232064238281,22.9185622382813],[114.261224394531,22.9051784492188],[114.232064238281,22.8791237617188],[114.227345,22.813843],[114.21197390625,22.80921409375],[114.20271609375,22.7984719062501],[114.174935332031,22.7745363593751],[114.211678496094,22.7428786445313],[114.180433378906,22.6577907539063],[114.151243925781,22.6601369453125],[114.153470488281,22.6878615546875],[114.13634890625,22.7185524726563],[114.107345,22.723843],[114.100794707031,22.7272927070313],[114.092345,22.75558128125],[114.072345,22.74659690625],[114.051495390625,22.7559645820313],[114.04330203125,22.77151878125],[114.032345,22.76659690625],[114.022345,22.77108909375],[114.003238554688,22.7625051093751],[113.983895292969,22.8003932929688],[113.950794707031,22.8172927070313],[113.943895292969,22.8303932929688],[113.900794707031,22.8372927070313],[113.877345,22.8554714179688],[113.853895292969,22.8372927070313],[113.829566679688,22.8300270820313],[113.840374785156,22.8059719062501],[113.797694121094,22.7834938789062],[113.783895292969,22.7572927070313],[113.757345,22.7438430000001],[113.713062773438,22.7612502265626],[113.70298953125,22.74819846875],[113.686143828125,22.73948753125],[113.65298953125,22.75948753125],[113.637345,22.763843],[113.613260527344,22.7997585273437],[113.571429472656,22.8479274726563],[113.567345,22.8638430000001],[113.563985625,22.900483625],[113.520704375,22.987202375],[113.517345,23.033843],[113.533260527344,23.0579274726563],[113.547345,23.0838430000001],[113.567345,23.0838430000001],[113.601790800781,23.0993971992188],[113.632899199219,23.1082888007813],[113.642799101563,23.1206520820313],[113.662650175781,23.1181838203125],[113.716529570313,23.14144065625],[113.821790800781,23.1282888007813],[113.837345,23.1238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"中山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.587345,22.5138430000001],[113.582908964844,22.5570851875],[113.573624296875,22.521977765625],[113.569637480469,22.4759206367188],[113.573616972656,22.4581716132813],[113.555513945313,22.4456740546876],[113.547345,22.413843],[113.491790800781,22.4093971992187],[113.480477324219,22.3952663398438],[113.493079863281,22.3284352851563],[113.470553007813,22.310395734375],[113.487323027344,22.2818679023438],[113.51107546875,22.2628469062501],[113.481790800781,22.2393971992188],[113.472899199219,22.2282888007813],[113.452093535156,22.2116310859376],[113.407345,22.203843],[113.3857825,22.23507346875],[113.340513945313,22.2520119453125],[113.313260527344,22.3297585273438],[113.278533964844,22.382309796875],[113.247345,22.4038430000001],[113.241209746094,22.4639943671875],[113.214534941406,22.511801984375],[113.177345,22.543843],[113.17123171875,22.5927223945313],[113.157345,22.603843],[113.148944121094,22.6238430000001],[113.163543730469,22.6586037421875],[113.157345,22.683843],[113.192010527344,22.6758107734376],[113.20170046875,22.6994875312501],[113.231082792969,22.7391164375],[113.246263457031,22.74819846875],[113.262110625,22.7276686835938],[113.28170046875,22.73948753125],[113.32298953125,22.74819846875],[113.350238066406,22.7646364570313],[113.357345,22.773843],[113.415872832031,22.7405690742187],[113.44197390625,22.73847190625],[113.447345,22.733843],[113.532655058594,22.6716579414063],[113.531803007813,22.6501686835938],[113.552154570313,22.6186525703125],[113.577345,22.603843],[113.570909453125,22.5881789375001],[113.614908476563,22.5765700507813],[113.603170195313,22.5180178046875],[113.587345,22.5138430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"潮安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.757345,23.903843],[116.745152617188,23.9004201484376],[116.753922148438,23.8916506171875],[116.790631132813,23.879985578125],[116.7512121875,23.8695851875],[116.75341921875,23.8584108710938],[116.741519804688,23.8396681953125],[116.733170195313,23.8180178046875],[116.709561796875,23.801098859375],[116.723170195313,23.7796681953126],[116.727345,23.753843],[116.669464140625,23.7315944648438],[116.642232695313,23.7282057929688],[116.57326296875,23.7412136054688],[116.570123320313,23.715981671875],[116.585592070313,23.6792702460938],[116.623023710938,23.6492971015626],[116.620548125,23.6293971992188],[116.713702421875,23.6664650703126],[116.734195585938,23.715102765625],[116.767345,23.7338430000001],[116.774498320313,23.7059645820313],[116.795694609375,23.7107155585938],[116.81142703125,23.6879274726563],[116.82857546875,23.67608909375],[116.81060671875,23.6484963203126],[116.817345,23.643843],[116.822867460938,23.6185158515626],[116.79197390625,23.60921409375],[116.779205351563,23.5805983710938],[116.752022734375,23.5784157539063],[116.726124296875,23.6084719062501],[116.703116484375,23.5934206367188],[116.701920195313,23.5785646796875],[116.712926054688,23.558843],[116.700240507813,23.5361061835938],[116.707345,23.4638430000001],[116.697345,23.4638430000001],[116.697345,23.4338430000001],[116.632022734375,23.4284133125],[116.627345,23.4338430000001],[116.621597929688,23.4676686835938],[116.554986601563,23.4817263007813],[116.53298953125,23.5250441718751],[116.563160429688,23.5483303046875],[116.561607695313,23.558843],[116.563170195313,23.5694142890626],[116.5335559375,23.5815309882813],[116.52298953125,23.61948753125],[116.51000125,23.6525246406251],[116.4434778125,23.6797487617188],[116.431832304688,23.6780275703125],[116.42298953125,23.6894875312501],[116.40170046875,23.69819846875],[116.372340117188,23.7159108710938],[116.367345,23.7338430000001],[116.419263945313,23.7878786445313],[116.46224734375,23.7587429023438],[116.489678984375,23.7489430976562],[116.514293242188,23.8362136054688],[116.492144804688,23.8688942695313],[116.51244265625,23.8787429023438],[116.562252226563,23.9089479804688],[116.582633085938,23.9085305],[116.602642851563,23.9293556953126],[116.602242460938,23.948843],[116.602554960938,23.9642433906251],[116.63244265625,23.9787429023438],[116.64224734375,23.9889430976563],[116.68244265625,23.9987429023438],[116.687345,24.0038430000001],[116.697345,24.0038430000001],[116.714215117188,23.9921950507813],[116.711104765625,23.97831565625],[116.750289335938,23.9313283515626],[116.757345,23.903843]]]]}},{"type":"Feature","properties":{"name":"饶平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.077345,23.563843],[117.0541028125,23.568843],[117.077345,23.573843],[117.077345,23.563843]]],[[[117.017345,23.573843],[117.028424101563,23.5881984687501],[117.040767851563,23.5646364570313],[117.017345,23.573843]]],[[[116.757345,23.903843],[116.753922148438,23.8916506171875],[116.745152617188,23.9004201484376],[116.757345,23.903843]]],[[[117.077345,23.563843],[117.090152617188,23.568843],[117.077345,23.573843],[117.084307890625,23.5907888007813],[117.064078398438,23.64323753125],[117.049771757813,23.6232741523438],[117.022345,23.6178542304688],[116.983619414063,23.6255080390625],[116.960367460938,23.608843],[116.981295195313,23.593843],[116.953170195313,23.5736843085938],[116.975616484375,23.5545192695313],[117.017345,23.573843],[117.013170195313,23.5580178046875],[117.001519804688,23.5396681953125],[116.989947539063,23.5096681953125],[116.935045195313,23.52159690625],[116.917345,23.553843],[116.91326296875,23.5597585273437],[116.898878203125,23.6183180976563],[116.86142703125,23.6279274726562],[116.85326296875,23.6397585273438],[116.817345,23.643843],[116.81060671875,23.6484963203126],[116.82857546875,23.67608909375],[116.81142703125,23.6879274726563],[116.795694609375,23.7107155585938],[116.774498320313,23.7059645820313],[116.767345,23.7338430000001],[116.762432890625,23.7770314765626],[116.727345,23.753843],[116.723170195313,23.7796681953126],[116.709561796875,23.801098859375],[116.733170195313,23.8180178046875],[116.741519804688,23.8396681953125],[116.75341921875,23.8584108710938],[116.7512121875,23.8695851875],[116.790631132813,23.879985578125],[116.757345,23.903843],[116.750289335938,23.9313283515626],[116.711104765625,23.97831565625],[116.714215117188,23.9921950507813],[116.697345,24.0038430000001],[116.7052746875,24.0240138984375],[116.699742460938,24.0614430976563],[116.72869265625,24.0571657539063],[116.74298953125,24.06819846875],[116.751832304688,24.0796584296876],[116.76623171875,24.0775295234375],[116.759429960938,24.1235866523438],[116.796715117188,24.1718923164063],[116.822735625,24.1680471015626],[116.849400664063,24.1841335273438],[116.865719023438,24.162993390625],[116.893140898438,24.208452375],[116.890318632813,24.2275539375],[116.927345,24.2338430000001],[116.930704375,24.227202375],[116.953985625,24.220483625],[116.960704375,24.207202375],[116.98287234375,24.1959865546875],[116.987345,24.173843],[116.92298953125,24.1254006171875],[116.93170046875,24.06819846875],[116.943140898438,24.049233625],[116.94095828125,24.0344509101562],[116.951773710938,24.0080202460938],[116.971300078125,24.0109059882813],[116.973082304688,23.9988430000001],[116.970865507813,23.983843],[116.97670046875,23.9443556953125],[116.960362578125,23.9172658515625],[116.964561796875,23.8888430000001],[116.960284453125,23.8598854804687],[116.972345,23.8581032539063],[116.997086210938,23.8617604804688],[117.02093875,23.8433498359375],[117.023824492188,23.823843],[117.02156375,23.80855003125],[117.04162234375,23.7575221992188],[117.051768828125,23.6978054023438],[117.10127078125,23.6611037421876],[117.165030546875,23.6433498359375],[117.18298953125,23.62948753125],[117.187345,23.6238430000001],[117.18326296875,23.6179274726563],[117.1489075,23.60507346875],[117.1205871875,23.5640529609375],[117.083013945313,23.555630109375],[117.077345,23.563843]],[[116.935152617188,23.5372658515625],[116.947345,23.533843],[116.943922148438,23.5460353828125],[116.935152617188,23.5372658515625]]]]}},{"type":"Feature","properties":{"name":"湘桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.767345,23.7338430000001],[116.734195585938,23.715102765625],[116.713702421875,23.6664650703126],[116.620548125,23.6293971992188],[116.623023710938,23.6492971015626],[116.585592070313,23.6792702460938],[116.570123320313,23.715981671875],[116.57326296875,23.7412136054688],[116.642232695313,23.7282057929688],[116.669464140625,23.7315944648438],[116.727345,23.753843],[116.762432890625,23.7770314765626],[116.767345,23.7338430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"榕城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.347345,23.453843],[116.359537382813,23.4504201484376],[116.350767851563,23.4416506171875],[116.347345,23.453843]]],[[[116.347345,23.453843],[116.333985625,23.4472023750001],[116.317345,23.443843],[116.309718046875,23.4562184882813],[116.2795325,23.4748171210938],[116.290382109375,23.5096486640625],[116.267345,23.523843],[116.3123840625,23.583676984375],[116.357345,23.5903200507813],[116.372345,23.5881032539062],[116.391300078125,23.5909059882813],[116.393082304688,23.5788430000001],[116.391519804688,23.5682497382813],[116.430045195313,23.5575221992188],[116.45298953125,23.51948753125],[116.457345,23.5038430000001],[116.43380984375,23.4697585273438],[116.413121367188,23.4834084296875],[116.402066679688,23.5129518867187],[116.355728789063,23.4865041328125],[116.347345,23.453843]]]]}},{"type":"Feature","properties":{"name":"惠来县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.947345,23.0138430000001],[115.959537382813,23.0172658515625],[115.950767851563,23.0260353828126],[115.91861453125,23.018843],[115.96107546875,23.05284690625],[115.926978789063,23.0801540351563],[115.917345,23.113843],[115.93326296875,23.1097585273438],[115.972999296875,23.0930666328125],[115.991676054688,23.1201149726563],[116.002345,23.1177223945313],[116.013013945313,23.1201149726563],[116.0270715625,23.0997585273438],[116.04326296875,23.1079274726563],[116.06349734375,23.1879274726563],[116.098468046875,23.1734743476563],[116.134639921875,23.1454396796875],[116.152271757813,23.170981671875],[116.193013945313,23.1801149726563],[116.214483671875,23.1490212226563],[116.247345,23.143843],[116.252349882813,23.124341046875],[116.29142703125,23.1079274726563],[116.330181914063,23.0979811835938],[116.34142703125,23.0679274726563],[116.36326296875,23.0597585273438],[116.376178007813,23.0410524726563],[116.42326296875,23.0679274726563],[116.442271757813,23.09546409375],[116.482345,23.10444846875],[116.512388945313,23.0977126289062],[116.537345,23.103843],[116.553463164063,23.09140159375],[116.54834109375,23.0567482734375],[116.5633996875,23.0184450507813],[116.523878203125,22.994809796875],[116.5001965625,22.9369435859376],[116.451671171875,22.9441139960938],[116.37861453125,22.9271852851563],[116.333746367188,22.9455471015626],[116.31654421875,22.9678395820313],[116.2610559375,22.9451296210938],[116.23298953125,22.92819846875],[116.217345,22.923843],[116.198238554688,22.932583234375],[116.172232695313,22.9236525703125],[116.161329375,22.8906081367188],[116.132345,22.9005593085938],[116.112345,22.8936916328126],[116.0833996875,22.9036330390625],[116.073624296875,22.920122296875],[116.041065703125,22.9275637031251],[116.022799101563,22.9407155585938],[116.012345,22.9371266914063],[116.002345,22.9405593085938],[115.987345,22.9354079414063],[115.9633996875,22.9436330390625],[115.953189726563,22.9608498359375],[115.941295195313,22.9567653632813],[115.933624296875,22.9838527656251],[115.947345,23.0138430000001]],[[115.965152617188,22.9672658515625],[115.977345,22.963843],[115.973922148438,22.9760353828125],[115.965152617188,22.9672658515625]]]]}},{"type":"Feature","properties":{"name":"揭东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.117345,23.533843],[116.127345,23.533843],[116.122345,23.5210353828126],[116.117345,23.533843]]],[[[116.127345,23.533843],[116.122345,23.5466506171875],[116.117345,23.533843],[116.094293242188,23.5464797187501],[116.114449492188,23.588735578125],[116.110284453125,23.598843],[116.114449492188,23.608950421875],[116.107345,23.6238430000001],[116.14896609375,23.6171340156251],[116.183472929688,23.6447658515626],[116.1791809375,23.6792971015625],[116.202896757813,23.6982888007813],[116.21634890625,23.7302101875],[116.237100859375,23.7276296210938],[116.262896757813,23.7482888007812],[116.27736453125,23.7663576484376],[116.32005984375,23.7716677070313],[116.367345,23.7338430000001],[116.372340117188,23.7159108710938],[116.40170046875,23.69819846875],[116.42298953125,23.6894875312501],[116.431832304688,23.6780275703125],[116.4434778125,23.6797487617188],[116.51000125,23.6525246406251],[116.52298953125,23.61948753125],[116.5335559375,23.5815309882813],[116.563170195313,23.5694142890626],[116.561607695313,23.558843],[116.563160429688,23.5483303046875],[116.53298953125,23.5250441718751],[116.554986601563,23.4817263007813],[116.621597929688,23.4676686835938],[116.627345,23.4338430000001],[116.611158476563,23.4376564765625],[116.575201445313,23.4667775703125],[116.586202421875,23.4314577460938],[116.571158476563,23.4100295234376],[116.567345,23.383843],[116.56224734375,23.3887429023438],[116.532545195313,23.4340431953126],[116.467574492188,23.4498805976563],[116.491900664063,23.4970973945313],[116.457345,23.5038430000001],[116.45298953125,23.51948753125],[116.430045195313,23.5575221992188],[116.391519804688,23.5682497382813],[116.393082304688,23.5788430000001],[116.391300078125,23.5909059882813],[116.372345,23.5881032539062],[116.357345,23.5903200507813],[116.3123840625,23.583676984375],[116.267345,23.523843],[116.180704375,23.5204836250001],[116.167345,23.513843],[116.16298953125,23.51948753125],[116.127345,23.533843]]]]}},{"type":"Feature","properties":{"name":"揭西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.127345,23.533843],[116.117345,23.533843],[116.122345,23.5466506171875],[116.127345,23.533843]]],[[[116.117345,23.533843],[116.122345,23.5210353828126],[116.127345,23.533843],[116.16298953125,23.51948753125],[116.167345,23.513843],[116.17142703125,23.4979274726563],[116.184229765625,23.4890895820313],[116.15142703125,23.4497585273438],[116.14326296875,23.4279274726563],[116.12142703125,23.4197585273438],[116.105694609375,23.3969704414063],[116.091842070313,23.4000759101563],[116.053873320313,23.3706545234375],[116.004459257813,23.3817311835938],[115.977345,23.3640749335938],[115.942345,23.3868679023438],[115.91326296875,23.3679274726563],[115.897345,23.363843],[115.893922148438,23.3760353828126],[115.885152617188,23.3672658515625],[115.897345,23.363843],[115.859464140625,23.3135158515626],[115.83298953125,23.32948753125],[115.817345,23.333843],[115.81271609375,23.3392140937501],[115.80197390625,23.34847190625],[115.773316679688,23.381733625],[115.716182890625,23.3771413398438],[115.668043242188,23.3502834296875],[115.6727746875,23.4091677070312],[115.624224882813,23.4509938789063],[115.617345,23.4738430000001],[115.62170046875,23.50948753125],[115.63298953125,23.5181984687501],[115.642320585938,23.5302907539063],[115.68252078125,23.5600930000001],[115.715928984375,23.5168068671875],[115.787569609375,23.5289772773437],[115.8052746875,23.5740138984375],[115.801607695313,23.598843],[115.803082304688,23.608843],[115.799166289063,23.6353639960938],[115.83170046875,23.65948753125],[115.847345,23.6638430000001],[115.853531523438,23.6600295234375],[115.869283476563,23.6344680000001],[115.892740507813,23.6271633125],[115.93740359375,23.6423830390625],[115.983721953125,23.6822365546875],[116.003531523438,23.6700295234375],[116.0183215625,23.6460329414063],[116.032740507813,23.6505226875],[116.063531523438,23.6400295234376],[116.0849621875,23.6249855781251],[116.103150664063,23.6306520820312],[116.107345,23.6238430000001],[116.114449492188,23.608950421875],[116.110284453125,23.598843],[116.114449492188,23.588735578125],[116.094293242188,23.5464797187501],[116.117345,23.533843]]]]}},{"type":"Feature","properties":{"name":"普宁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.897345,23.363843],[115.885152617188,23.3672658515625],[115.893922148438,23.3760353828126],[115.897345,23.363843]]],[[[115.897345,23.363843],[115.91326296875,23.3679274726563],[115.942345,23.3868679023438],[115.977345,23.3640749335938],[116.004459257813,23.3817311835938],[116.053873320313,23.3706545234375],[116.091842070313,23.4000759101563],[116.105694609375,23.3969704414063],[116.12142703125,23.4197585273438],[116.14326296875,23.4279274726563],[116.15142703125,23.4497585273438],[116.184229765625,23.4890895820313],[116.17142703125,23.4979274726563],[116.167345,23.513843],[116.180704375,23.5204836250001],[116.267345,23.523843],[116.290382109375,23.5096486640625],[116.2795325,23.4748171210938],[116.309718046875,23.4562184882813],[116.317345,23.443843],[116.32170046875,23.42819846875],[116.343463164063,23.41140159375],[116.341607695313,23.398843],[116.350767851563,23.336860578125],[116.323389921875,23.3409059882813],[116.32158328125,23.3287013984376],[116.327345,23.303843],[116.309654570313,23.2989162421875],[116.285167265625,23.2390920234375],[116.260128203125,23.228843],[116.263140898438,23.2084523750001],[116.251549101563,23.189233625],[116.2530871875,23.1788088203125],[116.247345,23.143843],[116.214483671875,23.1490212226563],[116.193013945313,23.1801149726563],[116.152271757813,23.170981671875],[116.134639921875,23.1454396796875],[116.098468046875,23.1734743476563],[116.06349734375,23.1879274726563],[116.04326296875,23.1079274726563],[116.0270715625,23.0997585273438],[116.013013945313,23.1201149726563],[116.002345,23.1177223945313],[115.991676054688,23.1201149726563],[115.972999296875,23.0930666328125],[115.93326296875,23.1097585273438],[115.917345,23.113843],[115.911793242188,23.1182888007813],[115.902799101563,23.1295217109376],[115.866261015625,23.1249758125001],[115.84634890625,23.10011253125],[115.822896757813,23.1293971992188],[115.767345,23.143843],[115.767345,23.153843],[115.780152617188,23.1588430000001],[115.767345,23.1638430000001],[115.73392703125,23.1731496406251],[115.727506132813,23.2165895820313],[115.748424101563,23.1894875312501],[115.7530871875,23.2188185859375],[115.748878203125,23.2473073554688],[115.82170046875,23.2596804023438],[115.81298953125,23.27948753125],[115.79375125,23.2943361640625],[115.790924101563,23.3134499335938],[115.817345,23.333843],[115.83298953125,23.32948753125],[115.859464140625,23.3135158515626],[115.897345,23.363843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"罗定市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.617345,22.5138430000001],[111.613922148438,22.5016506171876],[111.605152617188,22.5104201484375],[111.617345,22.5138430000001]]],[[[111.787345,22.793843],[111.790767851563,22.8060353828126],[111.799537382813,22.7972658515626],[111.787345,22.793843]]],[[[111.787345,22.793843],[111.774713164063,22.7637697578125],[111.837738066406,22.7778981757813],[111.831041289063,22.7480275703125],[111.869115019531,22.7382570625],[111.876800566406,22.7039675117188],[111.837345,22.693843],[111.826058378906,22.6851296210938],[111.801033964844,22.6527126289063],[111.803148222656,22.6384133125001],[111.773697539063,22.5986940742187],[111.729163847656,22.5677223945313],[111.70291140625,22.5035768867188],[111.677345,22.483843],[111.673985625,22.500483625],[111.630704375,22.507202375],[111.617345,22.5138430000001],[111.602899199219,22.5493971992188],[111.59396609375,22.5582888007813],[111.542266875,22.5205251289063],[111.525330839844,22.4803322578125],[111.492899199219,22.4993971992188],[111.46681765625,22.5082888007813],[111.4737121875,22.4528469062501],[111.423077421875,22.4315090156251],[111.401082792969,22.4837013984376],[111.404254179688,22.5091994453125],[111.3284778125,22.5202272773437],[111.305318632813,22.5173464179688],[111.272308378906,22.4979421210938],[111.262899199219,22.5042653632812],[111.288648710938,22.548071515625],[111.313516875,22.55855003125],[111.287718535156,22.5938649726563],[111.224862089844,22.5860475898437],[111.192738066406,22.6095143867188],[111.17373171875,22.6071486640625],[111.135877714844,22.629399640625],[111.119281035156,22.7061183906251],[111.087345,22.693843],[111.060965605469,22.729184796875],[111.106522246094,22.7478322578125],[111.17263796875,22.73806175],[111.222608671875,22.7577053046875],[111.243226347656,22.7844191718751],[111.28298953125,22.80819846875],[111.29170046875,22.82948753125],[111.320897246094,22.8688649726563],[111.359696074219,22.898813703125],[111.367345,22.943843],[111.4022278125,22.9492531562501],[111.412345,22.9484401679687],[111.453411894531,22.9517409492188],[111.491358671875,22.8837258125],[111.50197390625,22.84847190625],[111.551265898438,22.8372731757813],[111.552747832031,22.8188430000001],[111.551243925781,22.8001369453125],[111.574439726563,22.7982741523438],[111.612474394531,22.8194948554688],[111.629947539063,22.7992140937501],[111.65271609375,22.8084719062501],[111.674576445313,22.833843],[111.727345,22.803843],[111.731673613281,22.7975710273438],[111.743016386719,22.8001149726563],[111.752345,22.7866017890625],[111.761695585938,22.8001442695313],[111.787345,22.793843]]]]}},{"type":"Feature","properties":{"name":"新兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.177345,22.373843],[112.189537382813,22.3704201484375],[112.180767851563,22.3616506171875],[112.177345,22.373843]]],[[[112.177345,22.373843],[112.157345,22.383843],[112.150347929688,22.4083107734375],[112.079537382813,22.418618390625],[112.057454863281,22.4461916328126],[112.011790800781,22.4782888007813],[112.002899199219,22.4893971992188],[111.983057890625,22.5052834296875],[111.963167753906,22.5524904609375],[112.00107546875,22.58284690625],[111.981790800781,22.5982888007813],[111.957345,22.6338430000001],[111.9894934375,22.6550881171875],[112.026976347656,22.646684796875],[112.043616972656,22.6581716132812],[112.039132109375,22.6781716132813],[112.064217558594,22.6954909492188],[112.060203886719,22.7133888984376],[112.101444121094,22.7746291328125],[112.153260527344,22.7879274726562],[112.161429472656,22.7997585273437],[112.167345,22.803843],[112.183260527344,22.8079274726563],[112.194539824219,22.8242653632813],[112.238621855469,22.8427785468751],[112.261898222656,22.8276222968751],[112.272345,22.8299636054688],[112.282386503906,22.8277126289063],[112.307345,22.833843],[112.310523710938,22.8270217109375],[112.330340605469,22.8177883125001],[112.318568144531,22.7972536445313],[112.374166289063,22.7906642890625],[112.380523710938,22.7770217109376],[112.387345,22.773843],[112.390704375,22.737202375],[112.404793730469,22.7088576484375],[112.393985625,22.6867263007813],[112.421031523438,22.6713210273438],[112.440704375,22.710483625],[112.467345,22.713843],[112.467345,22.7038430000001],[112.477345,22.7038430000001],[112.508216582031,22.6394191718751],[112.517345,22.603843],[112.474608183594,22.5970827460938],[112.444290800781,22.6001735664063],[112.428514433594,22.6539333320313],[112.4131653125,22.6683815742187],[112.382806425781,22.5983815742188],[112.371795683594,22.5892336250001],[112.373053007813,22.5768923164062],[112.337982207031,22.547759015625],[112.320882597656,22.5495021796875],[112.322896757813,22.569262921875],[112.303499785156,22.5783815742188],[112.292806425781,22.5183815742188],[112.264908476563,22.5062795234375],[112.231529570313,22.4293190742188],[112.237345,22.413843],[112.192882109375,22.4024318671875],[112.177345,22.373843]]]]}},{"type":"Feature","properties":{"name":"郁南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.877345,22.8938430000001],[111.899530058594,22.890610578125],[111.880494414063,22.8722292304688],[111.877345,22.8938430000001]]],[[[111.877345,22.8938430000001],[111.854505644531,22.8879811835938],[111.838892851563,22.846255109375],[111.812345,22.8522048164063],[111.787345,22.8466017890625],[111.766312285156,22.8513161445313],[111.743260527344,22.8179274726563],[111.731429472656,22.8097585273438],[111.727345,22.803843],[111.674576445313,22.833843],[111.65271609375,22.8084719062501],[111.629947539063,22.7992140937501],[111.612474394531,22.8194948554688],[111.574439726563,22.7982741523438],[111.551243925781,22.8001369453125],[111.552747832031,22.8188430000001],[111.551265898438,22.8372731757813],[111.50197390625,22.84847190625],[111.491358671875,22.8837258125],[111.453411894531,22.9517409492188],[111.412345,22.9484401679687],[111.4022278125,22.9492531562501],[111.367345,22.943843],[111.357345,22.943843],[111.357345,22.9738430000001],[111.394366484375,22.9836110664063],[111.388521757813,23.0131862617188],[111.423170195313,23.0380178046876],[111.431519804688,23.0679933906251],[111.372757597656,23.0797756171876],[111.363170195313,23.1436843085938],[111.385186796875,23.1594631171875],[111.373343535156,23.2193947578125],[111.36127078125,23.2384108710938],[111.364925566406,23.2569020820313],[111.347821074219,23.2838430000001],[111.363170195313,23.3080178046876],[111.367345,23.323843],[111.41298953125,23.31948753125],[111.46248171875,23.27948753125],[111.50572390625,23.2887868476563],[111.531414824219,23.3220729804687],[111.57170046875,23.2677346015625],[111.56298953125,23.2481984687501],[111.547345,23.2438430000001],[111.522899199219,23.2242653632813],[111.557977324219,23.2006935859375],[111.622899199219,23.1893971992188],[111.666561308594,23.1575026679688],[111.693033476563,23.1607936835938],[111.732899199219,23.1493971992188],[111.781619902344,23.1306667304687],[111.87656375,23.1424782539063],[111.892899199219,23.1293971992188],[111.897345,23.1238430000001],[111.889132109375,23.1181716132813],[111.893465605469,23.098843],[111.888983183594,23.078843],[111.896197539063,23.0466628242188],[111.88033328125,23.0236891914063],[111.851483183594,23.0301564765626],[111.843260527344,22.9679274726563],[111.818521757813,22.9299367500001],[111.833260527344,22.9197585273438],[111.841673613281,22.9075710273438],[111.856976347656,22.911001203125],[111.873260527344,22.8997585273438],[111.877345,22.8938430000001]]]]}},{"type":"Feature","properties":{"name":"云安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.787345,22.793843],[111.799537382813,22.7972658515626],[111.790767851563,22.8060353828126],[111.761695585938,22.8001442695313],[111.752345,22.7866017890625],[111.743016386719,22.8001149726563],[111.731673613281,22.7975710273438],[111.727345,22.803843],[111.731429472656,22.8097585273438],[111.743260527344,22.8179274726563],[111.766312285156,22.8513161445313],[111.787345,22.8466017890625],[111.812345,22.8522048164063],[111.838892851563,22.846255109375],[111.854505644531,22.8879811835938],[111.877345,22.8938430000001],[111.880494414063,22.8722292304688],[111.899530058594,22.890610578125],[111.877345,22.8938430000001],[111.873260527344,22.8997585273438],[111.856976347656,22.911001203125],[111.841673613281,22.9075710273438],[111.833260527344,22.9197585273438],[111.818521757813,22.9299367500001],[111.843260527344,22.9679274726563],[111.851483183594,23.0301564765626],[111.88033328125,23.0236891914063],[111.896197539063,23.0466628242188],[111.888983183594,23.078843],[111.893465605469,23.098843],[111.889132109375,23.1181716132813],[111.897345,23.1238430000001],[111.966553984375,23.1352126289062],[111.987196074219,23.0847756171875],[112.054439726563,23.0748390937501],[112.077345,23.0838430000001],[112.0640246875,23.0395973945313],[112.051917753906,23.0291677070312],[112.052847929688,23.0175978828126],[112.032049589844,23.0192678046876],[112.00271609375,22.9984719062501],[111.974935332031,22.9860744453126],[111.971942167969,22.948843],[111.974876738281,22.9123415351563],[111.953785429688,22.8745388007813],[112.017345,22.8796462226563],[112.041363554688,22.8777175117188],[112.065843535156,22.8913747382813],[112.117345,22.8872365546876],[112.156082792969,22.8903493476563],[112.151922636719,22.8385842109376],[112.167345,22.803843],[112.161429472656,22.7997585273437],[112.153260527344,22.7879274726562],[112.101444121094,22.7746291328125],[112.060203886719,22.7133888984376],[112.064217558594,22.6954909492188],[112.039132109375,22.6781716132813],[112.043616972656,22.6581716132812],[112.026976347656,22.646684796875],[111.9894934375,22.6550881171875],[111.957345,22.6338430000001],[111.93170046875,22.6194875312501],[111.899000273438,22.5771218085938],[111.877345,22.5803200507812],[111.862135039063,22.5780739570313],[111.820338164063,22.590259015625],[111.823602324219,22.6123513007813],[111.854722929688,22.6077516914063],[111.851529570313,22.6293556953125],[111.86298953125,22.6381984687501],[111.87170046875,22.6527614570313],[111.85170046875,22.66819846875],[111.837345,22.693843],[111.876800566406,22.7039675117188],[111.869115019531,22.7382570625],[111.831041289063,22.7480275703125],[111.837738066406,22.7778981757813],[111.774713164063,22.7637697578125],[111.787345,22.793843]]]]}},{"type":"Feature","properties":{"name":"云城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.31298953125,23.08819846875],[112.284129667969,23.0659230781251],[112.281605253906,23.0488430000001],[112.283822050781,23.033843],[112.281529570313,23.0183303046875],[112.293741484375,23.0089064765626],[112.27298953125,22.95819846875],[112.25298953125,22.9427614570313],[112.26170046875,22.91819846875],[112.296009550781,22.9086452460938],[112.291549101563,22.878452375],[112.30298953125,22.85948753125],[112.307345,22.833843],[112.282386503906,22.8277126289063],[112.272345,22.8299636054688],[112.261898222656,22.8276222968751],[112.238621855469,22.8427785468751],[112.194539824219,22.8242653632813],[112.183260527344,22.8079274726563],[112.167345,22.803843],[112.151922636719,22.8385842109376],[112.156082792969,22.8903493476563],[112.117345,22.8872365546876],[112.065843535156,22.8913747382813],[112.041363554688,22.8777175117188],[112.017345,22.8796462226563],[111.953785429688,22.8745388007813],[111.974876738281,22.9123415351563],[111.971942167969,22.948843],[111.974935332031,22.9860744453126],[112.00271609375,22.9984719062501],[112.032049589844,23.0192678046876],[112.052847929688,23.0175978828126],[112.051917753906,23.0291677070312],[112.0640246875,23.0395973945313],[112.077345,23.0838430000001],[112.095328398438,23.0912331367188],[112.178951445313,23.0745363593751],[112.221519804688,23.1096681953125],[112.247345,23.1238430000001],[112.288570585938,23.1306154609375],[112.32170046875,23.1050441718751],[112.31298953125,23.08819846875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"宾阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.077345,23.323843],[109.081397734375,23.346841046875],[109.090042753906,23.3292775703126],[109.077345,23.323843]]],[[[109.077345,23.323843],[109.098992949219,23.2924880195313],[109.134622832031,23.300473859375],[109.163260527344,23.2897585273438],[109.177069121094,23.2697585273438],[109.193260527344,23.2779274726563],[109.201429472656,23.2997585273438],[109.207345,23.303843],[109.225220976563,23.2905471015626],[109.221412382813,23.2684279609375],[109.233277617188,23.2492580390625],[109.231385527344,23.2382741523438],[109.250933867188,23.2237331367188],[109.239022246094,23.154546125],[109.247345,23.133843],[109.223170195313,23.1180178046876],[109.190089140625,23.105259015625],[109.194862089844,23.0811037421875],[109.126566191406,23.0630837226563],[109.13341921875,23.0284108710938],[109.114920683594,22.9992726875001],[109.097554960938,22.9868263984376],[109.068651152344,22.9925368476563],[109.073333769531,22.9688430000001],[109.071356230469,22.958843],[109.075384550781,22.938462140625],[109.006744414063,22.9246999335938],[108.973216582031,22.9459865546876],[108.953170195313,22.9180178046876],[108.924290800781,22.9068801093751],[108.889815703125,22.9210451484376],[108.893389921875,22.9391310859376],[108.878912382813,22.974360578125],[108.847257109375,22.9542629218751],[108.817345,22.9738430000001],[108.812508574219,22.9796633125],[108.777406035156,22.9595583320313],[108.767345,22.993843],[108.777345,22.993843],[108.777345,23.003843],[108.77298953125,23.01948753125],[108.74170046875,23.03819846875],[108.73298953125,23.04948753125],[108.72170046875,23.0581984687501],[108.71298953125,23.0794875312501],[108.700169707031,23.1007375312501],[108.677345,23.0973659492188],[108.662345,23.0995827460938],[108.652310820313,23.0980983710938],[108.617345,23.103843],[108.617345,23.113843],[108.607345,23.113843],[108.601429472656,23.1179274726563],[108.534840117188,23.134282453125],[108.570584746094,23.1891750312501],[108.583260527344,23.1979274726563],[108.587345,23.2038430000001],[108.631783476563,23.2111428046875],[108.677345,23.2044094062501],[108.69170046875,23.23948753125],[108.70298953125,23.2481984687501],[108.71170046875,23.25948753125],[108.724486113281,23.2693556953125],[108.72095828125,23.2932350898438],[108.73877078125,23.3367580390625],[108.801163359375,23.3499245429688],[108.836058378906,23.3951296210938],[108.853160429688,23.4083303046875],[108.850667753906,23.4251930976563],[108.86170046875,23.43948753125],[108.867345,23.443843],[108.889635039063,23.4385939765625],[108.917769804688,23.4212575507813],[108.909886503906,23.3959474921875],[108.926907988281,23.3683229804688],[108.963150664063,23.3570339179688],[108.971873808594,23.3711940742188],[108.998033476563,23.3528273750001],[109.025240507813,23.3613014960938],[109.043531523438,23.3500295234375],[109.051158476563,23.3276564765626],[109.077345,23.323843]]]]}},{"type":"Feature","properties":{"name":"横县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.443922148438,22.6260353828125],[109.447345,22.613843],[109.435152617188,22.6172658515626],[109.443922148438,22.6260353828125]]],[[[109.332899199219,22.9993971992188],[109.381790800781,22.9382888007813],[109.402899199219,22.9293971992188],[109.411790800781,22.9182888007813],[109.481790800781,22.8924123359376],[109.472899199219,22.8782888007813],[109.446632109375,22.86722190625],[109.4837121875,22.8209157539063],[109.517345,22.833843],[109.523072539063,22.8186013007813],[109.502806425781,22.8017678046875],[109.511883574219,22.7783815742188],[109.569136992188,22.7656838203126],[109.582882109375,22.7291091132813],[109.581795683594,22.718452375],[109.621422148438,22.6855373359375],[109.607345,22.6738430000001],[109.586256132813,22.6814089179688],[109.517345,22.643843],[109.485045195313,22.6507448554688],[109.455650664063,22.6347707343751],[109.371668730469,22.6397780585938],[109.324115019531,22.6139357734376],[109.282625761719,22.5559279609376],[109.320435820313,22.5221462226563],[109.292064238281,22.5091237617188],[109.262279082031,22.4883205390625],[109.239378691406,22.513950421875],[109.192030058594,22.5285720039063],[109.192642851563,22.538843],[109.191995878906,22.5497170234375],[109.167345,22.548247296875],[109.152181425781,22.5491506171875],[109.142625761719,22.5469948554688],[109.162940703125,22.528843],[109.150223417969,22.5174782539063],[109.122345,22.5191408515625],[109.097345,22.51765159375],[109.057345,22.5200344062501],[109.013104277344,22.5173976875001],[108.989891386719,22.5433766914063],[108.962625761719,22.5285622382813],[108.878365507813,22.5091237617188],[108.847345,22.543843],[108.853587675781,22.5692580390625],[108.833431425781,22.6002077460938],[108.821673613281,22.5975710273438],[108.810186796875,22.6142116523438],[108.813565703125,22.6292897773438],[108.799320097656,22.65116721875],[108.807345,22.683843],[108.839598417969,22.7532863593751],[108.82197390625,22.7684719062501],[108.810386992188,22.8194704414063],[108.813524199219,22.8585182929688],[108.80197390625,22.86847190625],[108.79271609375,22.8812404609375],[108.822882109375,22.9072292304688],[108.817345,22.9738430000001],[108.847257109375,22.9542629218751],[108.878912382813,22.974360578125],[108.893389921875,22.9391310859376],[108.889815703125,22.9210451484376],[108.924290800781,22.9068801093751],[108.953170195313,22.9180178046876],[108.973216582031,22.9459865546876],[109.006744414063,22.9246999335938],[109.075384550781,22.938462140625],[109.071356230469,22.958843],[109.073333769531,22.9688430000001],[109.068651152344,22.9925368476563],[109.097554960938,22.9868263984376],[109.114920683594,22.9992726875001],[109.13341921875,23.0284108710938],[109.126566191406,23.0630837226563],[109.194862089844,23.0811037421875],[109.190089140625,23.105259015625],[109.223170195313,23.1180178046876],[109.247345,23.133843],[109.251790800781,23.1082888007813],[109.329979277344,23.091372296875],[109.345340605469,23.065239484375],[109.322899199219,23.0282888007813],[109.309857207031,23.0178469062501],[109.332899199219,22.9993971992188]]]]}},{"type":"Feature","properties":{"name":"江南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.117345,22.833843],[108.120767851563,22.8460353828125],[108.129537382813,22.8372658515626],[108.117345,22.833843]]],[[[108.117345,22.833843],[108.105413847656,22.801352765625],[108.146917753906,22.7655959296876],[108.195904570313,22.7695314765625],[108.1919153125,22.8191970039063],[108.244510527344,22.8350319648438],[108.294849882813,22.7993410468751],[108.307345,22.813843],[108.317345,22.813843],[108.320704375,22.797202375],[108.335289335938,22.7898244453125],[108.327345,22.773843],[108.311658964844,22.7693581367188],[108.312967558594,22.758843],[108.311102324219,22.7438430000001],[108.313841582031,22.7218166328126],[108.33334109375,22.6886428046875],[108.321790800781,22.6793971992188],[108.312899199219,22.6482888007813],[108.298472929688,22.6107619453125],[108.271102324219,22.5888430000001],[108.30107546875,22.56483909375],[108.281666289063,22.5492971015626],[108.284078398438,22.5299050117188],[108.260218535156,22.4972414375001],[108.219251738281,22.5023366523438],[108.159608183594,22.4239675117188],[108.175479765625,22.3826808906251],[108.157366972656,22.3518679023438],[108.141790800781,22.3393971992188],[108.137345,22.333843],[108.101429472656,22.3579274726563],[108.097345,22.373843],[108.107081328125,22.398608625],[108.078878203125,22.4203786445313],[108.084564238281,22.458852765625],[107.985279570313,22.4988405585938],[108.014554472656,22.5473732734376],[107.991541777344,22.5784133125],[107.996734648438,22.6135475898438],[108.097254667969,22.6306227851563],[108.085848417969,22.7078127265626],[108.045421171875,22.6554396796875],[108.001990996094,22.6876418281251],[107.99298953125,22.705044171875],[108.01298953125,22.73819846875],[108.02170046875,22.7694875312501],[108.027345,22.7838430000001],[108.033475371094,22.8088014960938],[108.030186796875,22.8234743476563],[108.041429472656,22.8397585273438],[108.047345,22.843843],[108.050767851563,22.8316506171875],[108.059537382813,22.8404201484376],[108.047345,22.843843],[108.061253691406,22.8673024726563],[108.071065703125,22.837563703125],[108.117345,22.833843]]]]}},{"type":"Feature","properties":{"name":"良庆区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.432147246094,22.498843],[108.432740507813,22.483843],[108.431868925781,22.46183128125],[108.444427519531,22.4091091132813],[108.472877226563,22.4398122382813],[108.512345,22.438247296875],[108.55093875,22.4397780585938],[108.562535429688,22.4290334296876],[108.567345,22.423843],[108.561429472656,22.4197585273438],[108.54896609375,22.4017092109376],[108.56408328125,22.3784963203125],[108.551429472656,22.3697585273438],[108.538492460938,22.3510231757813],[108.543499785156,22.328696515625],[108.528353300781,22.2798317695313],[108.501429472656,22.2697585273438],[108.493260527344,22.2479274726563],[108.459329863281,22.2397585273438],[108.412508574219,22.2702468085937],[108.363260527344,22.2479274726563],[108.321429472656,22.2397585273438],[108.293260527344,22.2179274726562],[108.277345,22.2138430000001],[108.265091582031,22.2315895820313],[108.238035917969,22.2502712226563],[108.221571074219,22.2942751289063],[108.173565703125,22.2835134101563],[108.128524199219,22.3128420234376],[108.137345,22.333843],[108.141790800781,22.3393971992188],[108.157366972656,22.3518679023438],[108.175479765625,22.3826808906251],[108.159608183594,22.4239675117188],[108.219251738281,22.5023366523438],[108.260218535156,22.4972414375001],[108.284078398438,22.5299050117188],[108.281666289063,22.5492971015626],[108.30107546875,22.56483909375],[108.271102324219,22.5888430000001],[108.298472929688,22.6107619453125],[108.312899199219,22.6482888007813],[108.321790800781,22.6793971992188],[108.33334109375,22.6886428046875],[108.313841582031,22.7218166328126],[108.311102324219,22.7438430000001],[108.312967558594,22.758843],[108.311658964844,22.7693581367188],[108.327345,22.773843],[108.378431425781,22.7822341132813],[108.40170046875,22.76819846875],[108.417345,22.763843],[108.432093535156,22.7501784492188],[108.432740507813,22.733843],[108.431949492188,22.713843],[108.432740507813,22.693843],[108.431771269531,22.6693752265625],[108.442601347656,22.6489064765625],[108.432142363281,22.6089846015625],[108.432918730469,22.5893752265625],[108.417857695313,22.5609133125001],[108.432904082031,22.5179787421875],[108.432147246094,22.498843]]]]}},{"type":"Feature","properties":{"name":"隆安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.857345,23.253843],[107.862906523438,23.266841046875],[107.880069609375,23.2578493476563],[107.857345,23.253843]]],[[[107.857345,23.253843],[107.845631132813,23.225952375],[107.882623320313,23.2176589179688],[107.917647734375,23.2323708320313],[107.945936308594,23.19140159375],[107.967345,23.1866017890625],[107.983053007813,23.190122296875],[108.003905058594,23.15358909375],[108.036976347656,23.161001203125],[108.053260527344,23.1497585273438],[108.061429472656,23.1179274726563],[108.077345,23.093843],[108.0219153125,23.0640944648438],[107.953699980469,23.0142653632813],[107.926776152344,22.9806447578125],[107.887913847656,22.9570412421876],[107.872545195313,22.93784690625],[107.833101835938,22.9610329414063],[107.81697390625,22.9408913398438],[107.757345,22.923843],[107.751339140625,22.927837140625],[107.743350859375,22.939848859375],[107.713968535156,22.9505104804688],[107.672345,22.940024640625],[107.631763945313,22.95024925],[107.623350859375,22.9423244453125],[107.663350859375,22.919848859375],[107.671339140625,22.907837140625],[107.683350859375,22.8998488593751],[107.695169707031,22.8820754218751],[107.687345,22.8638430000001],[107.661519804688,22.8680178046875],[107.63888796875,22.9070534492188],[107.568529082031,22.893149640625],[107.573480253906,22.8681008125],[107.541519804688,22.8596681953125],[107.504171171875,22.8443190742188],[107.497345,22.8538430000001],[107.49298953125,22.85948753125],[107.477515898438,22.9262575507813],[107.493160429688,22.9383303046875],[107.491605253906,22.948843],[107.493084746094,22.958843],[107.491605253906,22.9688430000001],[107.49312625,22.97913596875],[107.473482695313,23.029106671875],[107.444605742188,23.0513942695313],[107.422345,23.0481032539063],[107.407345,23.0503200507813],[107.392345,23.0481032539063],[107.381954375,23.0496388984375],[107.362735625,23.0380471015625],[107.337594023438,23.041762921875],[107.347345,23.0838430000001],[107.373260527344,23.0879274726563],[107.391429472656,23.0967018867188],[107.361429472656,23.1079274726563],[107.325574980469,23.1357155585937],[107.343260527344,23.1479274726563],[107.351492949219,23.2001540351562],[107.365338164063,23.1970510078125],[107.377345,23.2438430000001],[107.392899199219,23.2482888007813],[107.423551054688,23.26007346875],[107.473475371094,23.2492702460937],[107.460213652344,23.2267116523438],[107.493424101563,23.2308425117188],[107.546143828125,23.1998537421875],[107.561790800781,23.2193971992188],[107.572899199219,23.2282888007813],[107.5830871875,23.2982888007813],[107.632899199219,23.2893971992188],[107.65310671875,23.2775173164063],[107.702899199219,23.2882888007813],[107.711790800781,23.2993971992188],[107.739932890625,23.3112551093751],[107.755133085938,23.3473244453126],[107.772347441406,23.3494655585938],[107.817345,23.343843],[107.817345,23.333843],[107.827345,23.333843],[107.831500273438,23.3268361640625],[107.860189238281,23.3366872382813],[107.848909941406,23.303843],[107.855780058594,23.2838430000001],[107.847484160156,23.2596877265625],[107.857345,23.253843]],[[107.967298613281,23.0739846015626],[107.987345,23.063843],[107.990704375,23.0704836250001],[108.003985625,23.0772023750001],[108.010704375,23.0982131171876],[107.9841028125,23.1072023750001],[107.967298613281,23.0739846015626]]]]}},{"type":"Feature","properties":{"name":"马山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.387345,23.5438430000001],[108.407345,23.5438430000001],[108.407345,23.523843],[108.39406375,23.53056175],[108.387345,23.5438430000001]]],[[[108.387345,23.5438430000001],[108.324874296875,23.5388430000001],[108.27095828125,23.5071486640626],[108.247345,23.5100856757813],[108.201041289063,23.5043263984375],[108.202967558594,23.488843],[108.20150515625,23.4770827460938],[108.17373171875,23.4805373359375],[108.152899199219,23.4682888007813],[108.100343046875,23.4532643867188],[108.068873320313,23.471762921875],[108.075186796875,23.4209963203126],[108.056922636719,23.3993971992187],[108.02095828125,23.4205373359375],[108.00037234375,23.4179763007813],[108.00439578125,23.450337140625],[107.957486601563,23.4701052070313],[107.942061796875,23.4681862617188],[107.899835234375,23.4844167304688],[107.867345,23.443843],[107.853260527344,23.4379274726562],[107.810877714844,23.4297585273438],[107.762623320313,23.4500270820313],[107.742345,23.4454811835938],[107.730714140625,23.4765651679688],[107.733465605469,23.488843],[107.730103789063,23.5038430000001],[107.735240507813,23.5267604804688],[107.717345,23.553843],[107.72978640625,23.5699611640625],[107.742345,23.5681032539063],[107.776099882813,23.5730934882813],[107.828148222656,23.6116799140625],[107.868800078125,23.6056716132813],[107.903421660156,23.62655784375],[107.901522246094,23.6394142890626],[107.946541777344,23.6578395820313],[107.973695097656,23.6226613593751],[108.00170046875,23.66948753125],[108.01298953125,23.67819846875],[108.038194609375,23.71085471875],[108.02170046875,23.73819846875],[108.01298953125,23.7727614570313],[108.03298953125,23.7881984687501],[108.037345,23.793843],[108.053902617188,23.7999221015625],[108.084610625,23.79745628125],[108.134276152344,23.855102765625],[108.15271609375,23.83921409375],[108.169935332031,23.8192311835938],[108.187769804688,23.87847190625],[108.21271609375,23.84921409375],[108.230113554688,23.8102272773438],[108.252669707031,23.8084157539063],[108.262345,23.8196462226563],[108.272345,23.8080397773438],[108.28197390625,23.81921409375],[108.303951445313,23.838149640625],[108.287923613281,23.8519582343751],[108.30271609375,23.87847190625],[108.312572050781,23.9005568671875],[108.367855253906,23.9252248359376],[108.351807890625,23.9689186835938],[108.363470488281,23.9898244453125],[108.361500273438,24.0143532539063],[108.427178984375,24.03847190625],[108.44271609375,24.02921409375],[108.45209109375,24.0183351875001],[108.477345,24.023843],[108.489481230469,23.9943093085938],[108.434149199219,23.9729689765625],[108.431356230469,23.9588430000001],[108.433333769531,23.948843],[108.429503203125,23.9294631171875],[108.443170195313,23.9196681953125],[108.451519804688,23.9080178046876],[108.464898710938,23.8984279609375],[108.444820585938,23.8463674140626],[108.413170195313,23.8236843085938],[108.421676054688,23.8077223945313],[108.432965117188,23.8099538398438],[108.445694609375,23.7921926093751],[108.463170195313,23.7796681953126],[108.471519804688,23.7680178046875],[108.491297636719,23.753843],[108.467874785156,23.737055890625],[108.481519804688,23.7180178046876],[108.493170195313,23.7096681953126],[108.497345,23.6938430000001],[108.46298953125,23.6681984687501],[108.399139433594,23.6591213203126],[108.377672148438,23.6313088203125],[108.399407988281,23.6145314765625],[108.379483671875,23.563843],[108.387345,23.5438430000001]]]]}},{"type":"Feature","properties":{"name":"青秀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.767345,22.993843],[108.777406035156,22.9595583320313],[108.812508574219,22.9796633125],[108.817345,22.9738430000001],[108.822882109375,22.9072292304688],[108.79271609375,22.8812404609375],[108.80197390625,22.86847190625],[108.813524199219,22.8585182929688],[108.810386992188,22.8194704414063],[108.82197390625,22.7684719062501],[108.839598417969,22.7532863593751],[108.807345,22.683843],[108.80170046875,22.68819846875],[108.79298953125,22.70948753125],[108.755435820313,22.7248561835938],[108.72298953125,22.6781984687501],[108.707088652344,22.6659255195313],[108.682345,22.6695827460938],[108.67205203125,22.66806175],[108.624935332031,22.6865846992188],[108.612938261719,22.7296706367188],[108.60173953125,22.7280153632813],[108.591363554688,22.777192609375],[108.593214140625,22.7897243476563],[108.573863554688,22.80819846875],[108.52263796875,22.7880617500001],[108.502147246094,22.7910890937501],[108.492345,22.7558864570313],[108.476441679688,22.8130007148438],[108.426988554688,22.7763356757812],[108.417345,22.763843],[108.40170046875,22.76819846875],[108.378431425781,22.7822341132813],[108.327345,22.773843],[108.335289335938,22.7898244453125],[108.320704375,22.797202375],[108.317345,22.813843],[108.317345,22.8238430000001],[108.342965117188,22.8315554023438],[108.385101347656,22.8614333320312],[108.422345,22.8584401679688],[108.432515898438,22.8592580390626],[108.485404082031,22.8477223945313],[108.5708215625,22.8671291328125],[108.602049589844,22.8892678046875],[108.619034453125,22.8879030585938],[108.64271609375,22.89847190625],[108.65197390625,22.9092140937501],[108.66271609375,22.9184719062501],[108.67197390625,22.92921409375],[108.691712675781,22.9462209296875],[108.710369902344,22.9880324531251],[108.767345,22.993843]]],[[[108.767345,22.993843],[108.767345,23.003843],[108.777345,23.003843],[108.777345,22.993843],[108.767345,22.993843]]]]}},{"type":"Feature","properties":{"name":"上林县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.731429472656,23.7979274726563],[108.771969023438,23.7747878242187],[108.781429472656,23.7379274726563],[108.799967070313,23.7094606757813],[108.768409453125,23.6876735664063],[108.784798613281,23.6347927070313],[108.78115359375,23.6185329414062],[108.803260527344,23.5697585273438],[108.821429472656,23.4979274726563],[108.833260527344,23.4897585273438],[108.841429472656,23.4779274726563],[108.862296171875,23.463520734375],[108.867345,23.443843],[108.86170046875,23.43948753125],[108.850667753906,23.4251930976563],[108.853160429688,23.4083303046875],[108.836058378906,23.3951296210938],[108.801163359375,23.3499245429688],[108.73877078125,23.3367580390625],[108.72095828125,23.2932350898438],[108.724486113281,23.2693556953125],[108.71170046875,23.25948753125],[108.70298953125,23.2481984687501],[108.69170046875,23.23948753125],[108.677345,23.2044094062501],[108.631783476563,23.2111428046875],[108.587345,23.2038430000001],[108.576615019531,23.228843],[108.595257597656,23.2722805],[108.584271269531,23.3158864570313],[108.550875273438,23.3280055976563],[108.553719511719,23.3392971015625],[108.541339140625,23.3578371406251],[108.533350859375,23.379848859375],[108.483641386719,23.3892995429687],[108.493734160156,23.429360578125],[108.471339140625,23.457837140625],[108.462345,23.482622296875],[108.441827421875,23.4774538398438],[108.413326445313,23.499868390625],[108.407345,23.523843],[108.407345,23.5438430000001],[108.387345,23.5438430000001],[108.379483671875,23.563843],[108.399407988281,23.6145314765625],[108.377672148438,23.6313088203125],[108.399139433594,23.6591213203126],[108.46298953125,23.6681984687501],[108.497345,23.6938430000001],[108.504100371094,23.6592409492188],[108.542244902344,23.6989430976563],[108.552445097656,23.7087429023438],[108.580115996094,23.737544171875],[108.602244902344,23.7489430976562],[108.622445097656,23.7587429023438],[108.632244902344,23.7689430976563],[108.662445097656,23.7787429023438],[108.672440214844,23.7891481757813],[108.702113066406,23.7885427070313],[108.727345,23.803843],[108.731429472656,23.7979274726563]]]]}},{"type":"Feature","properties":{"name":"武鸣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.117345,23.0538430000001],[108.113922148438,23.0416506171875],[108.105152617188,23.0504201484375],[108.117345,23.0538430000001]]],[[[108.117345,23.0538430000001],[108.113985625,23.0604836250001],[108.079417753906,23.0778493476563],[108.085269804688,23.0898342109376],[108.077345,23.093843],[108.061429472656,23.1179274726563],[108.053260527344,23.1497585273438],[108.036976347656,23.161001203125],[108.003905058594,23.15358909375],[107.983053007813,23.190122296875],[107.967345,23.1866017890625],[107.945936308594,23.19140159375],[107.917647734375,23.2323708320313],[107.882623320313,23.2176589179688],[107.845631132813,23.225952375],[107.857345,23.253843],[107.880069609375,23.2578493476563],[107.862906523438,23.266841046875],[107.857345,23.253843],[107.847484160156,23.2596877265625],[107.855780058594,23.2838430000001],[107.848909941406,23.303843],[107.860189238281,23.3366872382813],[107.831500273438,23.3268361640625],[107.827345,23.333843],[107.827345,23.343843],[107.817345,23.343843],[107.831519804688,23.3696681953126],[107.863433867188,23.4083376289063],[107.861234160156,23.4194631171876],[107.881297636719,23.4338430000001],[107.867345,23.443843],[107.899835234375,23.4844167304688],[107.942061796875,23.4681862617188],[107.957486601563,23.4701052070313],[108.00439578125,23.450337140625],[108.00037234375,23.4179763007813],[108.02095828125,23.4205373359375],[108.056922636719,23.3993971992187],[108.075186796875,23.4209963203126],[108.068873320313,23.471762921875],[108.100343046875,23.4532643867188],[108.152899199219,23.4682888007813],[108.17373171875,23.4805373359375],[108.20150515625,23.4770827460938],[108.202967558594,23.488843],[108.201041289063,23.5043263984375],[108.247345,23.5100856757813],[108.27095828125,23.5071486640626],[108.324874296875,23.5388430000001],[108.387345,23.5438430000001],[108.39406375,23.53056175],[108.407345,23.523843],[108.413326445313,23.499868390625],[108.441827421875,23.4774538398438],[108.462345,23.482622296875],[108.471339140625,23.457837140625],[108.493734160156,23.429360578125],[108.483641386719,23.3892995429687],[108.533350859375,23.379848859375],[108.541339140625,23.3578371406251],[108.553719511719,23.3392971015625],[108.550875273438,23.3280055976563],[108.584271269531,23.3158864570313],[108.595257597656,23.2722805],[108.576615019531,23.228843],[108.587345,23.2038430000001],[108.583260527344,23.1979274726563],[108.570584746094,23.1891750312501],[108.534840117188,23.134282453125],[108.601429472656,23.1179274726563],[108.607345,23.113843],[108.607345,23.103843],[108.617345,23.103843],[108.61197390625,23.08921409375],[108.60271609375,23.04847190625],[108.579722929688,23.0382106757813],[108.555308867188,23.0098732734376],[108.486126738281,23.04847190625],[108.45197390625,23.01921409375],[108.435692167969,23.0003176093751],[108.407345,22.9980397773438],[108.388533964844,22.9995510078126],[108.347345,22.9738430000001],[108.332628203125,22.9794997382813],[108.304530058594,22.9760060859375],[108.252899199219,22.9382888007813],[108.201790800781,22.9293971992188],[108.192899199219,22.9182888007813],[108.162899199219,22.9178932929688],[108.175064726563,23.0157106757813],[108.161790800781,23.0382888007813],[108.152828398438,23.0595632148438],[108.117345,23.0538430000001]]]]}},{"type":"Feature","properties":{"name":"西乡塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.047345,22.843843],[108.059537382813,22.8404201484376],[108.050767851563,22.8316506171875],[108.047345,22.843843]]],[[[108.117345,23.0538430000001],[108.105152617188,23.0504201484375],[108.113922148438,23.0416506171875],[108.152828398438,23.0595632148438],[108.161790800781,23.0382888007813],[108.175064726563,23.0157106757813],[108.162899199219,22.9178932929688],[108.192899199219,22.9182888007813],[108.201790800781,22.9293971992188],[108.252899199219,22.9382888007813],[108.304530058594,22.9760060859375],[108.332628203125,22.9794997382813],[108.347345,22.9738430000001],[108.353363066406,22.9488649726563],[108.343170195313,22.8980178046875],[108.32748171875,22.8598439765625],[108.321519804688,22.8296681953126],[108.317345,22.8238430000001],[108.307345,22.8238430000001],[108.307345,22.813843],[108.294849882813,22.7993410468751],[108.244510527344,22.8350319648438],[108.1919153125,22.8191970039063],[108.195904570313,22.7695314765625],[108.146917753906,22.7655959296876],[108.105413847656,22.801352765625],[108.117345,22.833843],[108.129537382813,22.8372658515626],[108.120767851563,22.8460353828125],[108.117345,22.833843],[108.071065703125,22.837563703125],[108.061253691406,22.8673024726563],[108.047345,22.843843],[108.041429472656,22.8397585273438],[108.030186796875,22.8234743476563],[108.033475371094,22.8088014960938],[108.027345,22.7838430000001],[107.984605742188,22.7911037421875],[107.962782011719,22.8444264960938],[107.88170046875,22.85819846875],[107.86298953125,22.86948753125],[107.78968875,22.8819387031251],[107.757345,22.923843],[107.81697390625,22.9408913398438],[107.833101835938,22.9610329414063],[107.872545195313,22.93784690625],[107.887913847656,22.9570412421876],[107.926776152344,22.9806447578125],[107.953699980469,23.0142653632813],[108.0219153125,23.0640944648438],[108.077345,23.093843],[108.085269804688,23.0898342109376],[108.079417753906,23.0778493476563],[108.113985625,23.0604836250001],[108.117345,23.0538430000001]]],[[[107.990704375,23.0704836250001],[107.987345,23.063843],[107.967298613281,23.0739846015626],[107.9841028125,23.1072023750001],[108.010704375,23.0982131171876],[108.003985625,23.0772023750001],[107.990704375,23.0704836250001]]]]}},{"type":"Feature","properties":{"name":"兴宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.317345,22.8238430000001],[108.317345,22.813843],[108.307345,22.813843],[108.307345,22.8238430000001],[108.317345,22.8238430000001]]],[[[108.317345,22.8238430000001],[108.321519804688,22.8296681953126],[108.32748171875,22.8598439765625],[108.343170195313,22.8980178046875],[108.353363066406,22.9488649726563],[108.347345,22.9738430000001],[108.388533964844,22.9995510078126],[108.407345,22.9980397773438],[108.435692167969,23.0003176093751],[108.45197390625,23.01921409375],[108.486126738281,23.04847190625],[108.555308867188,23.0098732734376],[108.579722929688,23.0382106757813],[108.60271609375,23.04847190625],[108.61197390625,23.08921409375],[108.617345,23.103843],[108.652310820313,23.0980983710938],[108.662345,23.0995827460938],[108.677345,23.0973659492188],[108.700169707031,23.1007375312501],[108.71298953125,23.0794875312501],[108.72170046875,23.0581984687501],[108.73298953125,23.04948753125],[108.74170046875,23.03819846875],[108.77298953125,23.01948753125],[108.777345,23.003843],[108.767345,23.003843],[108.767345,22.993843],[108.710369902344,22.9880324531251],[108.691712675781,22.9462209296875],[108.67197390625,22.92921409375],[108.66271609375,22.9184719062501],[108.65197390625,22.9092140937501],[108.64271609375,22.89847190625],[108.619034453125,22.8879030585938],[108.602049589844,22.8892678046875],[108.5708215625,22.8671291328125],[108.485404082031,22.8477223945313],[108.432515898438,22.8592580390626],[108.422345,22.8584401679688],[108.385101347656,22.8614333320312],[108.342965117188,22.8315554023438],[108.317345,22.8238430000001]]],[[[108.617345,23.103843],[108.607345,23.103843],[108.607345,23.113843],[108.617345,23.113843],[108.617345,23.103843]]]]}},{"type":"Feature","properties":{"name":"邕宁区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.476441679688,22.8130007148438],[108.492345,22.7558864570313],[108.502147246094,22.7910890937501],[108.52263796875,22.7880617500001],[108.573863554688,22.80819846875],[108.593214140625,22.7897243476563],[108.591363554688,22.777192609375],[108.60173953125,22.7280153632813],[108.612938261719,22.7296706367188],[108.624935332031,22.6865846992188],[108.67205203125,22.66806175],[108.682345,22.6695827460938],[108.707088652344,22.6659255195313],[108.72298953125,22.6781984687501],[108.755435820313,22.7248561835938],[108.79298953125,22.70948753125],[108.80170046875,22.68819846875],[108.807345,22.683843],[108.799320097656,22.65116721875],[108.813565703125,22.6292897773438],[108.810186796875,22.6142116523438],[108.821673613281,22.5975710273438],[108.833431425781,22.6002077460938],[108.853587675781,22.5692580390625],[108.847345,22.543843],[108.831429472656,22.5397585273438],[108.802623320313,22.5276589179688],[108.783016386719,22.532055890625],[108.773260527344,22.5179274726563],[108.74490359375,22.4983498359375],[108.706800566406,22.4885720039063],[108.713648710938,22.4580275703125],[108.697345,22.453843],[108.685631132813,22.4679470039063],[108.670208769531,22.4323879218751],[108.6322278125,22.45972190625],[108.5948840625,22.4147658515625],[108.582586699219,22.4295705390625],[108.567345,22.423843],[108.562535429688,22.4290334296876],[108.55093875,22.4397780585938],[108.512345,22.438247296875],[108.472877226563,22.4398122382813],[108.444427519531,22.4091091132813],[108.431868925781,22.46183128125],[108.432740507813,22.483843],[108.432147246094,22.498843],[108.432904082031,22.5179787421875],[108.417857695313,22.5609133125001],[108.432918730469,22.5893752265625],[108.432142363281,22.6089846015625],[108.442601347656,22.6489064765625],[108.431771269531,22.6693752265625],[108.432740507813,22.693843],[108.431949492188,22.713843],[108.432740507813,22.733843],[108.432093535156,22.7501784492188],[108.417345,22.763843],[108.426988554688,22.7763356757812],[108.476441679688,22.8130007148438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"城中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.417345,24.323843],[109.417345,24.313843],[109.407345,24.313843],[109.397345,24.313843],[109.397345,24.323843],[109.417345,24.323843]]],[[[109.417345,24.323843],[109.421883574219,24.3893044257813],[109.4648840625,24.3988405585938],[109.497345,24.4379201484376],[109.517345,24.413843],[109.507345,24.413843],[109.507345,24.403843],[109.497345,24.403843],[109.497345,24.363843],[109.494801054688,24.3463869453125],[109.479888945313,24.3312990546876],[109.477345,24.313843],[109.417345,24.323843]]]]}},{"type":"Feature","properties":{"name":"柳北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.514295683594,24.3755471015625],[109.497345,24.363843],[109.497345,24.403843],[109.507345,24.403843],[109.514295683594,24.3755471015625]]],[[[109.433922148438,24.5160353828126],[109.437345,24.503843],[109.425152617188,24.5072658515625],[109.433922148438,24.5160353828126]]],[[[109.351790800781,24.53983909375],[109.367345,24.5230495429688],[109.391065703125,24.5486525703125],[109.412535429688,24.5190334296875],[109.427845488281,24.4706764960937],[109.4623840625,24.4585720039063],[109.482459746094,24.4691945625],[109.492154570313,24.4486525703125],[109.537345,24.443843],[109.537345,24.413843],[109.517345,24.413843],[109.497345,24.4379201484376],[109.4648840625,24.3988405585938],[109.421883574219,24.3893044257813],[109.417345,24.323843],[109.397345,24.323843],[109.392867460938,24.346020734375],[109.344298125,24.3704201484375],[109.310704375,24.377202375],[109.307345,24.393843],[109.313985625,24.4072023750001],[109.317345,24.4538430000001],[109.322154570313,24.4590334296876],[109.337315703125,24.47308128125],[109.30810671875,24.50460471875],[109.277552519531,24.5329152656251],[109.295199003906,24.5886525703125],[109.352918730469,24.5683425117188],[109.351790800781,24.53983909375]]]]}},{"type":"Feature","properties":{"name":"柳城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.947345,24.743843],[108.952779570313,24.7311452460938],[108.970343046875,24.739790265625],[108.95978640625,24.7599611640626],[108.972345,24.7581032539063],[108.987003203125,24.7602712226563],[109.033612089844,24.8220168281251],[109.094466582031,24.83819846875],[109.090699492188,24.8127028632813],[109.134810820313,24.7946486640626],[109.157345,24.823843],[109.217345,24.823843],[109.235760527344,24.7889260078125],[109.273531523438,24.7800295234376],[109.281656523438,24.7668434882813],[109.327730742188,24.7524929023438],[109.382757597656,24.8014553046876],[109.410753203125,24.7500295234376],[109.473531523438,24.7576564765625],[109.502345,24.7705617500001],[109.517345,24.7638430000001],[109.524354277344,24.7303371406251],[109.502769804688,24.7103395820313],[109.492535429688,24.6886525703126],[109.472535429688,24.6508547187501],[109.502154570313,24.6286525703125],[109.552550078125,24.6190309882813],[109.552139921875,24.6086598945313],[109.572535429688,24.5990334296875],[109.586964140625,24.5834621406251],[109.612154570313,24.560122296875],[109.592535429688,24.5486525703125],[109.552916289063,24.536108625],[109.572672148438,24.4987770820313],[109.547293730469,24.4752638984375],[109.537345,24.443843],[109.492154570313,24.4486525703125],[109.482459746094,24.4691945625],[109.4623840625,24.4585720039063],[109.427845488281,24.4706764960937],[109.412535429688,24.5190334296875],[109.391065703125,24.5486525703125],[109.367345,24.5230495429688],[109.351790800781,24.53983909375],[109.352918730469,24.5683425117188],[109.295199003906,24.5886525703125],[109.277552519531,24.5329152656251],[109.30810671875,24.50460471875],[109.337315703125,24.47308128125],[109.322154570313,24.4590334296876],[109.317345,24.4538430000001],[109.291248808594,24.4499391914063],[109.250867949219,24.4322316718751],[109.222345,24.44024925],[109.208533964844,24.4363674140625],[109.193441191406,24.4599391914062],[109.175150175781,24.4716481757813],[109.1522278125,24.5074587226563],[109.123441191406,24.4877468085938],[109.083778105469,24.473794171875],[109.07310671875,24.4904616523438],[109.052345,24.4846266914063],[109.03158328125,24.4904616523438],[109.027345,24.483843],[108.9637121875,24.49179221875],[108.948800078125,24.4731716132813],[108.912899199219,24.4993971992188],[108.89166140625,24.508344953125],[108.893370390625,24.5220803046875],[108.861890898438,24.5181642890625],[108.852899199219,24.5293971992188],[108.840535917969,24.5392971015625],[108.843863554688,24.5660549140626],[108.90900515625,24.5935060859375],[108.897345,24.623843],[108.921429472656,24.6397585273438],[108.959115019531,24.6494289375],[108.965557890625,24.6781716132812],[108.947554960938,24.6906032539063],[108.937191191406,24.7368312812501],[108.947345,24.743843]],[[109.425152617188,24.5072658515625],[109.437345,24.503843],[109.433922148438,24.5160353828126],[109.425152617188,24.5072658515625]]]]}},{"type":"Feature","properties":{"name":"柳江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.1522278125,24.5074587226563],[109.175150175781,24.4716481757813],[109.193441191406,24.4599391914062],[109.208533964844,24.4363674140625],[109.222345,24.44024925],[109.250867949219,24.4322316718751],[109.291248808594,24.4499391914063],[109.317345,24.4538430000001],[109.313985625,24.4072023750001],[109.307345,24.393843],[109.293170195313,24.3880178046875],[109.237313261719,24.3789870429688],[109.223975859375,24.3114846015625],[109.242345,24.3078542304687],[109.290220976563,24.3173146796875],[109.307393828125,24.2727858710938],[109.337345,24.2668679023438],[109.370484648438,24.2734157539063],[109.381724882813,24.2577321601562],[109.392965117188,24.2599538398438],[109.401519804688,24.2480178046875],[109.407345,24.243843],[109.415870390625,24.2106227851563],[109.470150175781,24.2334206367188],[109.485513945313,24.2556740546875],[109.503260527344,24.2679274726563],[109.507345,24.283843],[109.513170195313,24.2796681953126],[109.521519804688,24.2680178046875],[109.533170195313,24.2596681953125],[109.549244414063,24.2372414375],[109.577345,24.2427956367188],[109.602965117188,24.2377321601563],[109.611619902344,24.2498073554687],[109.668577910156,24.2610622382813],[109.71216921875,24.2478200507813],[109.727928496094,24.2509352851563],[109.747345,24.223843],[109.714129667969,24.1982033515625],[109.70298953125,24.15819846875],[109.665213652344,24.147680890625],[109.647345,24.1503200507813],[109.614127226563,24.1454128242188],[109.584371367188,24.0727126289063],[109.52170046875,24.05948753125],[109.486185332031,24.0455251289063],[109.493822050781,23.993843],[109.489854765625,23.9669948554688],[109.471832304688,23.9696584296876],[109.458631621094,23.9525563789062],[109.44170046875,23.93948753125],[109.427345,23.913843],[109.412628203125,23.9081862617187],[109.369949980469,23.9134938789063],[109.340709257813,23.9306838203125],[109.343011503906,23.9492018867188],[109.325155058594,23.9795803046876],[109.291441679688,24.006577375],[109.295433378906,24.0386721015625],[109.221878691406,24.0597023750001],[109.212899199219,24.0282888007813],[109.184871855469,24.01647971875],[109.162703886719,24.0295095039063],[109.142174101563,24.0269557929688],[109.132899199219,24.0593971992188],[109.097345,24.063843],[109.093531523438,24.0900295234375],[109.051158476563,24.0976564765626],[109.038389921875,24.11837425],[108.997965117188,24.1321511054688],[108.969466582031,24.1232741523438],[108.953531523438,24.1700295234376],[108.929534941406,24.1848171210938],[108.935460234375,24.203843],[108.929229765625,24.223843],[108.933902617188,24.238843],[108.928199492188,24.2571559882813],[108.917345,24.2638430000001],[108.923563261719,24.3386672187501],[108.921942167969,24.358843],[108.923958769531,24.3839357734375],[108.992669707031,24.3784157539063],[109.00412234375,24.3917116523438],[109.001710234375,24.4217555976563],[109.043951445313,24.458149640625],[109.03197390625,24.46847190625],[109.027345,24.483843],[109.03158328125,24.4904616523438],[109.052345,24.4846266914063],[109.07310671875,24.4904616523438],[109.083778105469,24.473794171875],[109.123441191406,24.4877468085938],[109.1522278125,24.5074587226563]]]]}},{"type":"Feature","properties":{"name":"柳南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.397345,24.323843],[109.397345,24.313843],[109.407345,24.313843],[109.400616484375,24.2848049140626],[109.407345,24.243843],[109.401519804688,24.2480178046875],[109.392965117188,24.2599538398438],[109.381724882813,24.2577321601562],[109.370484648438,24.2734157539063],[109.337345,24.2668679023438],[109.307393828125,24.2727858710938],[109.290220976563,24.3173146796875],[109.242345,24.3078542304687],[109.223975859375,24.3114846015625],[109.237313261719,24.3789870429688],[109.293170195313,24.3880178046875],[109.307345,24.393843],[109.310704375,24.377202375],[109.344298125,24.3704201484375],[109.392867460938,24.346020734375],[109.397345,24.323843]]]]}},{"type":"Feature","properties":{"name":"鹿寨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.670345488281,24.8583913398438],[109.742135039063,24.8285329414063],[109.752503691406,24.8291506171875],[109.802467070313,24.8184743476563],[109.829173613281,24.8329885078125],[109.842064238281,24.8185622382813],[109.882625761719,24.8091237617188],[109.898065214844,24.7591237617188],[109.922625761719,24.7685622382813],[109.940496855469,24.7885622382812],[109.942645292969,24.7588698554688],[109.940350371094,24.7203615546875],[109.962120390625,24.7085305],[109.9826965625,24.7097585273438],[109.9808996875,24.6795876289063],[110.028111601563,24.6669411445313],[110.062435332031,24.6792580390625],[110.092064238281,24.6585622382813],[110.137345,24.6538430000001],[110.152056914063,24.647798078125],[110.170831328125,24.6515065742188],[110.175008574219,24.6303566718751],[110.162345,24.6278542304688],[110.149029570313,24.6304860664062],[110.165699492188,24.546997296875],[110.13447390625,24.5246169257812],[110.131356230469,24.508843],[110.1333996875,24.49851096875],[110.117345,24.4638430000001],[110.072083769531,24.4691872382813],[110.062625761719,24.4385622382813],[110.052064238281,24.4191237617187],[110.042625761719,24.3685622382812],[110.012723417969,24.3257521796875],[110.033612089844,24.2873122382813],[110.000848417969,24.2580373359375],[109.964095488281,24.2602297187501],[109.942625761719,24.2485622382813],[109.917345,24.243843],[109.911790800781,24.2482888007813],[109.896632109375,24.2672219062501],[109.928446074219,24.2806276679688],[109.910946074219,24.3082888007813],[109.842899199219,24.2682888007813],[109.817486601563,24.2575807929687],[109.801846953125,24.25952659375],[109.792899199219,24.2382888007813],[109.781790800781,24.2293971992188],[109.772899199219,24.2182888007813],[109.758914824219,24.2093971992188],[109.747345,24.223843],[109.727928496094,24.2509352851563],[109.71216921875,24.2478200507813],[109.668577910156,24.2610622382813],[109.611619902344,24.2498073554687],[109.602965117188,24.2377321601563],[109.577345,24.2427956367188],[109.549244414063,24.2372414375],[109.533170195313,24.2596681953125],[109.521519804688,24.2680178046875],[109.513170195313,24.2796681953126],[109.507345,24.283843],[109.497266875,24.303764875],[109.477345,24.313843],[109.479888945313,24.3312990546876],[109.494801054688,24.3463869453125],[109.497345,24.363843],[109.514295683594,24.3755471015625],[109.507345,24.403843],[109.507345,24.413843],[109.517345,24.413843],[109.537345,24.413843],[109.537345,24.443843],[109.547293730469,24.4752638984375],[109.572672148438,24.4987770820313],[109.552916289063,24.536108625],[109.592535429688,24.5486525703125],[109.612154570313,24.560122296875],[109.586964140625,24.5834621406251],[109.572535429688,24.5990334296875],[109.552139921875,24.6086598945313],[109.552550078125,24.6190309882813],[109.502154570313,24.6286525703125],[109.472535429688,24.6508547187501],[109.492535429688,24.6886525703126],[109.502769804688,24.7103395820313],[109.524354277344,24.7303371406251],[109.517345,24.7638430000001],[109.551910429688,24.7737258125001],[109.56345828125,24.8271022773438],[109.617345,24.833843],[109.642186308594,24.8391506171875],[109.65259890625,24.8385305000001],[109.670345488281,24.8583913398438]]]]}},{"type":"Feature","properties":{"name":"融安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.637345,24.9938430000001],[109.649537382813,24.9904201484375],[109.640767851563,24.9816506171875],[109.637345,24.9938430000001]]],[[[109.637345,24.9938430000001],[109.61857546875,24.9793556953125],[109.623084746094,24.9488430000001],[109.620867949219,24.933843],[109.624561796875,24.908843],[109.621605253906,24.888843],[109.623865996094,24.8735451484376],[109.617345,24.833843],[109.56345828125,24.8271022773438],[109.551910429688,24.7737258125001],[109.517345,24.7638430000001],[109.502345,24.7705617500001],[109.473531523438,24.7576564765625],[109.410753203125,24.7500295234376],[109.382757597656,24.8014553046876],[109.327730742188,24.7524929023438],[109.281656523438,24.7668434882813],[109.273531523438,24.7800295234376],[109.235760527344,24.7889260078125],[109.217345,24.823843],[109.226239042969,24.8549489570313],[109.243001738281,24.8985597968751],[109.235750761719,24.9568508125],[109.262899199219,24.9682888007812],[109.276239042969,24.9849489570313],[109.292899199219,24.9982888007813],[109.303826933594,25.0119362617188],[109.301678496094,25.0292018867188],[109.317117949219,25.0554689765626],[109.310535917969,25.1083888984376],[109.331334257813,25.1250441718751],[109.307352324219,25.1658425117188],[109.333248320313,25.186577375],[109.33150515625,25.2006032539063],[109.302799101563,25.1970339179688],[109.292899199219,25.2093971992188],[109.276151152344,25.2228054023438],[109.312899199219,25.2382888007812],[109.321790800781,25.2493971992188],[109.342899199219,25.2582888007813],[109.379554472656,25.3040651679688],[109.350311308594,25.3274831367188],[109.356627226563,25.3782790351563],[109.410513945313,25.38993675],[109.437345,25.383843],[109.441829863281,25.3681569648437],[109.452345,25.3694655585938],[109.466514921875,25.3677028632813],[109.531143828125,25.4749098945313],[109.565904570313,25.489555890625],[109.581890898438,25.5095217109375],[109.597098417969,25.5076296210938],[109.622899199219,25.5282888007813],[109.63634890625,25.5602101875],[109.658060332031,25.5575099921875],[109.731790800781,25.5693971992187],[109.737345,25.573843],[109.7430871875,25.5508303046875],[109.780740996094,25.5371681953126],[109.771019316406,25.4985817695313],[109.777345,25.4838430000001],[109.761370878906,25.4757619453125],[109.757345,25.4438430000001],[109.751434355469,25.42913596875],[109.754066191406,25.4138430000001],[109.751483183594,25.398843],[109.753255644531,25.3885500312501],[109.741434355469,25.3591359687501],[109.75052859375,25.3063039375001],[109.721610136719,25.2595778632813],[109.701805449219,25.2097365546875],[109.663079863281,25.1781081367188],[109.641373320313,25.1694826484375],[109.644066191406,25.153843],[109.638719511719,25.1227809882813],[109.656751738281,25.0936452460938],[109.640467558594,25.0247438789063],[109.643255644531,25.0085500312501],[109.637345,24.9938430000001]]]]}},{"type":"Feature","properties":{"name":"融水苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.217345,25.653843],[109.220767851563,25.6416506171875],[109.229537382813,25.6504201484375],[109.227479277344,25.6883815742188],[109.301502714844,25.673559796875],[109.281412382813,25.6384841132813],[109.322806425781,25.6293044257813],[109.332735625,25.6173537421876],[109.361954375,25.6203322578126],[109.389886503906,25.5867067695313],[109.427728300781,25.6083815742188],[109.463121367188,25.5814601875],[109.461834746094,25.5688430000001],[109.464371367188,25.543969953125],[109.444866972656,25.4742092109375],[109.463363066406,25.458843],[109.434486113281,25.4348561835937],[109.431007109375,25.4007106757813],[109.437345,25.383843],[109.410513945313,25.38993675],[109.356627226563,25.3782790351563],[109.350311308594,25.3274831367188],[109.379554472656,25.3040651679688],[109.342899199219,25.2582888007813],[109.321790800781,25.2493971992188],[109.312899199219,25.2382888007812],[109.276151152344,25.2228054023438],[109.292899199219,25.2093971992188],[109.302799101563,25.1970339179688],[109.33150515625,25.2006032539063],[109.333248320313,25.186577375],[109.307352324219,25.1658425117188],[109.331334257813,25.1250441718751],[109.310535917969,25.1083888984376],[109.317117949219,25.0554689765626],[109.301678496094,25.0292018867188],[109.303826933594,25.0119362617188],[109.292899199219,24.9982888007813],[109.276239042969,24.9849489570313],[109.262899199219,24.9682888007812],[109.235750761719,24.9568508125],[109.243001738281,24.8985597968751],[109.226239042969,24.8549489570313],[109.217345,24.823843],[109.157345,24.823843],[109.148450957031,24.8349489570313],[109.131666289063,24.8483888984376],[109.134210234375,24.868843],[109.131666289063,24.8892971015625],[109.154324980469,24.9074416328125],[109.130128203125,24.9405690742188],[109.095538359375,24.9582888007813],[109.082899199219,24.9282888007813],[109.06912234375,24.9172585273438],[108.979366484375,24.9298928046876],[108.983006621094,24.9591628242188],[109.052899199219,25.0082888007812],[109.066239042969,25.0249489570313],[109.082899199219,25.0382888007813],[109.098629179688,25.0933132148438],[109.089803496094,25.1642702460938],[109.04396609375,25.1982888007812],[109.002738066406,25.1681716132813],[108.982572050781,25.1706813789063],[108.955767851563,25.1265505195313],[108.901041289063,25.1333596015625],[108.903370390625,25.1520803046876],[108.86373171875,25.1471486640625],[108.842115507813,25.1598561835938],[108.807706328125,25.1109035468751],[108.791890898438,25.1306520820313],[108.767345,25.1276003242188],[108.751890898438,25.1295217109375],[108.735111113281,25.1085671210938],[108.697345,25.1038430000001],[108.671441679688,25.1184865546876],[108.685111113281,25.1540456367188],[108.715167265625,25.1781130195313],[108.65248171875,25.2135549140626],[108.640594511719,25.2952248359376],[108.617345,25.313843],[108.624718046875,25.3463014960938],[108.611678496094,25.3684841132812],[108.615511503906,25.3992971015625],[108.590535917969,25.4192971015625],[108.59701296875,25.4713722968751],[108.6226575,25.4681813789063],[108.631790800781,25.4722731757813],[108.61134890625,25.4886428046876],[108.627323027344,25.5158180976563],[108.646783476563,25.53140159375],[108.684896269531,25.5266603828125],[108.661790800781,25.5582888007813],[108.652899199219,25.585649640625],[108.68302859375,25.598344953125],[108.6809778125,25.61483909375],[108.712899199219,25.6282888007813],[108.735477324219,25.6415627265625],[108.769556914063,25.6373244453126],[108.781790800781,25.6082888007813],[108.797337675781,25.5818434882812],[108.774857207031,25.5638430000001],[108.792899199219,25.5493971992188],[108.807345,25.5313552070313],[108.821790800781,25.5493971992188],[108.860282011719,25.5604006171876],[108.902345,25.544233625],[108.942061796875,25.5594997382813],[108.956217070313,25.5577394843751],[108.971790800781,25.5382888007813],[109.023116484375,25.5166628242188],[109.078267851563,25.5490798164063],[109.038272734375,25.581108625],[109.043011503906,25.6192018867188],[109.029710722656,25.6418312812501],[109.062899199219,25.6982888007813],[109.067345,25.723843],[109.155557890625,25.7204225898438],[109.149420195313,25.7078517890626],[109.163985625,25.7004836250001],[109.185391875,25.6578713203126],[109.217345,25.653843]]]]}},{"type":"Feature","properties":{"name":"三江侗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.217345,25.653843],[109.229537382813,25.6504201484375],[109.220767851563,25.6416506171875],[109.217345,25.653843]]],[[[109.097345,25.803843],[109.085152617188,25.8072658515625],[109.093922148438,25.8160353828126],[109.097345,25.803843]]],[[[109.217345,25.653843],[109.185391875,25.6578713203126],[109.163985625,25.7004836250001],[109.149420195313,25.7078517890626],[109.155557890625,25.7204225898438],[109.067345,25.723843],[109.063260527344,25.7297585273438],[109.043802519531,25.7431935859376],[109.031673613281,25.725630109375],[109.007345,25.7310842109375],[108.985936308594,25.72628440625],[108.962440214844,25.6922560859376],[108.907069121094,25.6797585273438],[108.887994414063,25.7073854804688],[108.903260527344,25.7179274726563],[108.911429472656,25.7297585273438],[108.930164824219,25.7426955390625],[108.952345,25.7377223945313],[108.968753691406,25.74140159375],[108.981429472656,25.7597585273438],[108.993616972656,25.7681716132813],[108.991073027344,25.7795143867188],[109.015067167969,25.7960793281251],[109.062345,25.7854811835938],[109.088753691406,25.79140159375],[109.097345,25.803843],[109.129332304688,25.8172780585938],[109.135706816406,25.7888430000001],[109.12724734375,25.7511061835938],[109.143592558594,25.7474416328125],[109.189071074219,25.778843],[109.159495878906,25.799262921875],[109.177345,25.803843],[109.204862089844,25.7965822578126],[109.200369902344,25.773843],[109.204735136719,25.7517409492188],[109.26802859375,25.7170021796875],[109.282345,25.7198317695313],[109.292777128906,25.71776878125],[109.311519804688,25.7296681953126],[109.337144804688,25.7395510078126],[109.329381132813,25.778843],[109.341390410156,25.8396169257813],[109.363170195313,25.8480178046875],[109.371519804688,25.8596681953125],[109.383170195313,25.8680178046875],[109.391519804688,25.8996681953125],[109.423170195313,25.9180178046875],[109.435755644531,25.9506471992188],[109.410338164063,25.9688649726563],[109.471116972656,26.0102346015625],[109.477345,26.033843],[109.531551542969,25.9933815742188],[109.552857695313,26.0209841132813],[109.578204375,26.0172389960938],[109.633453398438,26.05819846875],[109.64298953125,26.0494875312501],[109.652889433594,26.0139357734375],[109.692345,26.0081032539063],[109.710169707031,26.01073753125],[109.724808378906,25.986469953125],[109.702857695313,25.9580275703125],[109.684835234375,25.9606911445313],[109.680128203125,25.928843],[109.683084746094,25.9088430000001],[109.679073515625,25.8817092109375],[109.752147246094,25.8925075507812],[109.757345,25.8738430000001],[109.733270292969,25.8545632148438],[109.71982546875,25.8075466132813],[109.762899199219,25.7893971992188],[109.795655546875,25.73546409375],[109.777943144531,25.6893801093751],[109.807337675781,25.6658425117188],[109.785155058594,25.6281056953126],[109.743270292969,25.5945632148438],[109.737345,25.573843],[109.731790800781,25.5693971992187],[109.658060332031,25.5575099921875],[109.63634890625,25.5602101875],[109.622899199219,25.5282888007813],[109.597098417969,25.5076296210938],[109.581890898438,25.5095217109375],[109.565904570313,25.489555890625],[109.531143828125,25.4749098945313],[109.466514921875,25.3677028632813],[109.452345,25.3694655585938],[109.441829863281,25.3681569648437],[109.437345,25.383843],[109.431007109375,25.4007106757813],[109.434486113281,25.4348561835937],[109.463363066406,25.458843],[109.444866972656,25.4742092109375],[109.464371367188,25.543969953125],[109.461834746094,25.5688430000001],[109.463121367188,25.5814601875],[109.427728300781,25.6083815742188],[109.389886503906,25.5867067695313],[109.361954375,25.6203322578126],[109.332735625,25.6173537421876],[109.322806425781,25.6293044257813],[109.281412382813,25.6384841132813],[109.301502714844,25.673559796875],[109.227479277344,25.6883815742188],[109.217345,25.653843]]]]}},{"type":"Feature","properties":{"name":"鱼峰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.470150175781,24.2334206367188],[109.415870390625,24.2106227851563],[109.407345,24.243843],[109.400616484375,24.2848049140626],[109.407345,24.313843],[109.417345,24.313843],[109.417345,24.323843],[109.477345,24.313843],[109.497266875,24.303764875],[109.507345,24.283843],[109.503260527344,24.2679274726563],[109.485513945313,24.2556740546875],[109.470150175781,24.2334206367188]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"叠彩区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.377345,25.3038430000001],[110.346961699219,25.2905202460937],[110.302025175781,25.3031471992188],[110.297345,25.283843],[110.274657011719,25.2995095039063],[110.297345,25.3338430000001],[110.350543242188,25.364087140625],[110.36197390625,25.33847190625],[110.37271609375,25.32921409375],[110.377345,25.3038430000001]]]]}},{"type":"Feature","properties":{"name":"恭城瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.097345,25.283843],[111.116346464844,25.2355055976563],[111.10298953125,25.21819846875],[111.07170046875,25.19948753125],[111.062857695313,25.1880275703125],[111.051209746094,25.1897487617187],[110.996605253906,25.1674025703126],[110.98170046875,25.1294875312501],[110.97298953125,25.09819846875],[110.94298953125,25.0484645820313],[110.95170046875,25.01819846875],[110.96298953125,24.99948753125],[110.97170046875,24.97819846875],[110.98298953125,24.95948753125],[110.996246367188,24.9270925117188],[111.07170046875,24.9394875312501],[111.087345,24.943843],[111.119666777344,24.8974221015625],[111.166954375,24.9012233710938],[111.161497832031,24.8333034492188],[111.167345,24.773843],[111.148795195313,24.7686769843751],[111.126324492188,24.7395632148438],[111.10170046875,24.72948753125],[111.09298953125,24.70819846875],[111.054761992188,24.6786940742188],[111.02170046875,24.66948753125],[111.011624785156,24.6448635078126],[110.99170046875,24.62948753125],[110.987345,24.623843],[110.959049101563,24.6168923164063],[110.943260527344,24.6397585273438],[110.911429472656,24.6479274726563],[110.886605253906,24.6640920234375],[110.873260527344,24.6997585273438],[110.84656375,24.7342043281251],[110.832345,24.7722048164063],[110.81181765625,24.767602765625],[110.766051054688,24.8057717109375],[110.773638945313,24.8396169257813],[110.737706328125,24.8530617500001],[110.703260527344,24.8797585273438],[110.677345,24.893843],[110.671666289063,24.9117775703125],[110.644241972656,24.9636061835938],[110.617345,25.0638430000001],[110.622159453125,25.079048078125],[110.632345,25.0786452460938],[110.643721953125,25.07909690625],[110.642147246094,25.118843],[110.642581816406,25.1298244453125],[110.687345,25.1280495429688],[110.712486601563,25.1290456367188],[110.787659941406,25.1093483710937],[110.769866972656,25.1429763007813],[110.732269316406,25.1778102851563],[110.727345,25.213843],[110.743260527344,25.2097585273438],[110.764459257813,25.1959548164063],[110.783016386719,25.2001149726563],[110.797069121094,25.1797585273438],[110.836927519531,25.1887551093751],[110.868609648438,25.2346437812501],[110.892345,25.2399636054688],[110.902345,25.2377223945313],[110.913016386719,25.2401149726563],[110.924088164063,25.2240749335938],[110.962066679688,25.2400270820313],[110.972957792969,25.2375856757813],[111.013260527344,25.2479274726563],[111.021429472656,25.2597585273438],[111.069176054688,25.2720119453125],[111.097345,25.283843]]]]}},{"type":"Feature","properties":{"name":"灌阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.24197390625,25.7384719062501],[111.281956816406,25.7264333320313],[111.261917753906,25.7091677070313],[111.262840605469,25.6976784492188],[111.284947539063,25.6994533515626],[111.297345,25.7138430000001],[111.304344511719,25.7095314765625],[111.313902617188,25.6788430000001],[111.303873320313,25.6466481757813],[111.334088164063,25.6093434882813],[111.317576933594,25.5591481757813],[111.325882597656,25.5324855781251],[111.297345,25.473843],[111.292166777344,25.4409792304688],[111.250472441406,25.4121950507813],[111.253709746094,25.3977565742188],[111.203685332031,25.365180890625],[111.178831816406,25.3707521796876],[111.138565703125,25.3109548164063],[111.101429472656,25.2897585273438],[111.097345,25.283843],[111.069176054688,25.2720119453125],[111.021429472656,25.2597585273438],[111.013260527344,25.2479274726563],[110.972957792969,25.2375856757813],[110.962066679688,25.2400270820313],[110.924088164063,25.2240749335938],[110.913016386719,25.2401149726563],[110.902345,25.2377223945313],[110.892345,25.2399636054688],[110.868609648438,25.2346437812501],[110.836927519531,25.1887551093751],[110.797069121094,25.1797585273438],[110.783016386719,25.2001149726563],[110.764459257813,25.1959548164063],[110.743260527344,25.2097585273438],[110.727345,25.213843],[110.730523710938,25.2406642890625],[110.745814238281,25.2477883125],[110.736612578125,25.2638430000001],[110.745211210938,25.278843],[110.734349394531,25.2977883125001],[110.754166289063,25.3070217109375],[110.757345,25.313843],[110.76298953125,25.31819846875],[110.77170046875,25.3294875312501],[110.829327421875,25.372983625],[110.872542753906,25.3665969062501],[110.883507109375,25.4059743476563],[110.879901152344,25.4303786445313],[110.90298953125,25.44819846875],[110.91170046875,25.46948753125],[110.92298953125,25.47819846875],[110.927345,25.4938430000001],[110.936600371094,25.5045876289063],[110.95271609375,25.51847190625],[110.966409941406,25.5491579414063],[110.951925078125,25.5886037421875],[110.952867460938,25.6003298164062],[111.040360136719,25.6202077460938],[111.062345,25.6184401679688],[111.093382597656,25.6209352851563],[111.091942167969,25.6388430000001],[111.094241972656,25.6674587226563],[111.14271609375,25.67847190625],[111.156986113281,25.7412819648438],[111.192623320313,25.7384181953125],[111.217345,25.7522121406251],[111.24197390625,25.7384719062501]]]]}},{"type":"Feature","properties":{"name":"荔蒲县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.647345,24.373843],[110.683985625,24.370483625],[110.697345,24.3438430000001],[110.661751738281,24.3529763007813],[110.647345,24.373843]]],[[[110.647345,24.373843],[110.640704375,24.377202375],[110.633985625,24.390483625],[110.612491484375,24.4013576484375],[110.602345,24.3964015937501],[110.591109648438,24.4018874335938],[110.582315703125,24.3714162421875],[110.567345,24.363843],[110.55197390625,24.3684719062501],[110.539935332031,24.4084548164063],[110.52271609375,24.38847190625],[110.51197390625,24.37921409375],[110.501170683594,24.3433400703126],[110.471033964844,24.3601540351563],[110.472769804688,24.3385646796875],[110.457791777344,24.3117189765626],[110.44271609375,24.3292140937501],[110.427518339844,24.3423097968751],[110.401363554688,24.3277175117188],[110.382345,24.3292458320313],[110.363607207031,24.327739484375],[110.317345,24.293843],[110.313170195313,24.2996681953125],[110.281519804688,24.3080178046875],[110.256436796875,24.3239430976563],[110.263983183594,24.3621315742188],[110.237345,24.3568679023438],[110.222345,24.3598317695313],[110.190301542969,24.3534987617188],[110.193333769531,24.368843],[110.189503203125,24.3882228828125],[110.204320097656,24.398843],[110.191234160156,24.4082228828125],[110.193333769531,24.4188430000001],[110.191356230469,24.428843],[110.196038847656,24.4525368476563],[110.134205351563,24.4403176093751],[110.117345,24.4638430000001],[110.1333996875,24.49851096875],[110.131356230469,24.508843],[110.13447390625,24.5246169257812],[110.165699492188,24.546997296875],[110.149029570313,24.6304860664062],[110.162345,24.6278542304688],[110.175008574219,24.6303566718751],[110.170831328125,24.6515065742188],[110.152056914063,24.647798078125],[110.137345,24.6538430000001],[110.129320097656,24.6865187812501],[110.143260527344,24.7079274726563],[110.154151640625,24.737036359375],[110.183260527344,24.7479274726563],[110.201429472656,24.7597585273438],[110.227345,24.7638430000001],[110.231248808594,24.7577468085938],[110.270992460938,24.7437673164063],[110.28158328125,24.7272243476563],[110.292345,24.7302492500001],[110.307345,24.7260329414062],[110.32334109375,24.7305275703125],[110.361722441406,24.71702659375],[110.37138796875,24.6771681953125],[110.382584257813,24.6803151679688],[110.416009550781,24.6656569648438],[110.437345,24.6716530585937],[110.477345,24.6604128242187],[110.512869902344,24.6703957343751],[110.541248808594,24.6477468085938],[110.577345,24.6438430000001],[110.572899199219,24.6182888007813],[110.560650664063,24.59745628125],[110.562967558594,24.5788430000001],[110.560535917969,24.5592971015625],[110.572899199219,24.5493971992188],[110.587884550781,24.4464235664063],[110.617486601563,24.4501052070312],[110.650826445313,24.4360549140625],[110.6558215625,24.39589378125],[110.647345,24.373843]]]]}},{"type":"Feature","properties":{"name":"临桂县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.992345,25.679438703125],[110.022345,25.678247296875],[110.047345,25.6792385078125],[110.067345,25.6784474921875],[110.09134890625,25.6793971992188],[110.102535429688,25.6690334296876],[110.107345,25.663843],[110.087086210938,25.6331862617188],[110.111429472656,25.5979274726563],[110.135748320313,25.5811379218751],[110.111112089844,25.5493483710938],[110.113465605469,25.538843],[110.110103789063,25.5238430000001],[110.11795046875,25.4888430000001],[110.105103789063,25.4315383125001],[110.143260527344,25.4097585273438],[110.153016386719,25.395630109375],[110.176976347656,25.401001203125],[110.194586210938,25.388843],[110.173319121094,25.3741579414063],[110.191429472656,25.3479274726563],[110.211698027344,25.3339333320313],[110.224505644531,25.2997048164063],[110.247345,25.2938430000001],[110.243260527344,25.2879274726563],[110.22490359375,25.2752516914063],[110.220042753906,25.2535720039062],[110.227345,25.2238430000001],[110.2341028125,25.1840651679688],[110.262542753906,25.1621120429688],[110.267345,25.133843],[110.25490359375,25.1252516914063],[110.251124296875,25.1083962226563],[110.26408328125,25.0884963203126],[110.250089140625,25.078833234375],[110.278992949219,25.0369704414063],[110.30435671875,25.0426564765626],[110.325513945313,25.0120119453125],[110.337345,25.003843],[110.333260527344,24.9879274726563],[110.3097278125,24.9716799140625],[110.341319609375,24.9019753242188],[110.322345,24.8977223945312],[110.302345,24.9022048164063],[110.284029570313,24.8532570625],[110.231429472656,24.8397585273438],[110.227345,24.833843],[110.193961210938,24.8433888984376],[110.178277617188,24.9511428046876],[110.183023710938,24.9892971015626],[110.171790800781,24.9982888007813],[110.152899199219,25.0293971992188],[110.140535917969,25.0392971015625],[110.143248320313,25.0611086250001],[110.089859648438,25.1038600898437],[110.093011503906,25.1292018867188],[110.079823027344,25.1516384101563],[110.052345,25.1482204414063],[110.034508085938,25.1504396796875],[110.000181914063,25.1372463203125],[109.982345,25.1394655585938],[109.953704863281,25.135903546875],[109.920125761719,25.1778322578125],[109.871790800781,25.1882888007813],[109.862899199219,25.2242653632813],[109.893023710938,25.2483888984375],[109.891378203125,25.2616091132812],[109.849298125,25.2793410468751],[109.854210234375,25.318843],[109.849107695313,25.359868390625],[109.862869902344,25.3581569648438],[109.879569121094,25.4353395820313],[109.806951933594,25.4263063789063],[109.772899199219,25.4393971992188],[109.757345,25.4438430000001],[109.761370878906,25.4757619453125],[109.777345,25.4838430000001],[109.847440214844,25.4997658515625],[109.824657011719,25.5428224921875],[109.852535429688,25.5686525703126],[109.871065703125,25.5886525703125],[109.882535429688,25.5790334296875],[109.901065703125,25.5590334296876],[109.931173125,25.584282453125],[109.932918730469,25.6283107734375],[109.912535429688,25.66683128125],[109.96220828125,25.6790456367188],[109.972345,25.6786452460937],[109.992345,25.679438703125]]]]}},{"type":"Feature","properties":{"name":"灵川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.340584746094,25.5696828437501],[110.361890898438,25.5670339179688],[110.38634890625,25.59757346875],[110.401790800781,25.5782888007812],[110.421834746094,25.5622389960937],[110.454039335938,25.5074562812501],[110.450767851563,25.4811598945312],[110.496922636719,25.5082888007813],[110.5132825,25.4889430976563],[110.501678496094,25.4692018867188],[110.503587675781,25.4538430000001],[110.500863066406,25.4319362617188],[110.511790800781,25.4182888007813],[110.528450957031,25.4049489570313],[110.541790800781,25.3882888007812],[110.552899199219,25.3793971992187],[110.562174101563,25.3469557929688],[110.622991972656,25.3545217109375],[110.692899199219,25.3393971992188],[110.727547636719,25.319028546875],[110.757345,25.313843],[110.754166289063,25.3070217109375],[110.734349394531,25.2977883125001],[110.745211210938,25.278843],[110.736612578125,25.2638430000001],[110.745814238281,25.2477883125],[110.730523710938,25.2406642890625],[110.727345,25.213843],[110.732269316406,25.1778102851563],[110.769866972656,25.1429763007813],[110.787659941406,25.1093483710937],[110.712486601563,25.1290456367188],[110.687345,25.1280495429688],[110.642581816406,25.1298244453125],[110.642147246094,25.118843],[110.643721953125,25.07909690625],[110.632345,25.0786452460938],[110.622159453125,25.079048078125],[110.617345,25.0638430000001],[110.559888945313,25.0612990546875],[110.532349882813,25.0339528632813],[110.514801054688,25.0512990546876],[110.477345,25.053843],[110.482923613281,25.0690358710938],[110.47197390625,25.07847190625],[110.453460722656,25.0999587226563],[110.43197390625,25.11847190625],[110.42271609375,25.13921409375],[110.404510527344,25.1549001289063],[110.392569609375,25.128139875],[110.370147734375,25.140649640625],[110.377345,25.213843],[110.396424589844,25.290669171875],[110.377345,25.3038430000001],[110.37271609375,25.32921409375],[110.36197390625,25.33847190625],[110.350543242188,25.364087140625],[110.297345,25.3338430000001],[110.260184355469,25.3399465156251],[110.247345,25.2938430000001],[110.224505644531,25.2997048164063],[110.211698027344,25.3339333320313],[110.191429472656,25.3479274726563],[110.173319121094,25.3741579414063],[110.194586210938,25.388843],[110.176976347656,25.401001203125],[110.153016386719,25.395630109375],[110.143260527344,25.4097585273438],[110.105103789063,25.4315383125001],[110.11795046875,25.4888430000001],[110.110103789063,25.5238430000001],[110.113465605469,25.538843],[110.111112089844,25.5493483710938],[110.135748320313,25.5811379218751],[110.111429472656,25.5979274726563],[110.087086210938,25.6331862617188],[110.107345,25.663843],[110.124049101563,25.6686183906251],[110.178931914063,25.7019533515625],[110.192899199219,25.7382888007813],[110.204276152344,25.7780886054688],[110.237345,25.783843],[110.257345,25.783843],[110.261790800781,25.7582888007813],[110.272899199219,25.7393971992188],[110.281790800781,25.6782888007813],[110.294039335938,25.6574562812501],[110.290506621094,25.6290700507813],[110.343934355469,25.5966188789063],[110.340584746094,25.5696828437501]]]]}},{"type":"Feature","properties":{"name":"龙胜各族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.973079863281,26.1995778632813],[109.982913847656,26.1863576484375],[110.002806425781,26.1897829414062],[110.033746367188,26.1665016914063],[110.094605742188,26.1769802070313],[110.090623808594,26.153843],[110.093260527344,26.138520734375],[110.063079863281,26.0702931953125],[110.072335234375,26.0462282539063],[110.102345,26.0276540351563],[110.122345,26.0400319648438],[110.151217070313,26.0221633125],[110.185394316406,26.0681081367188],[110.203079863281,26.0595778632813],[110.211610136719,26.0481081367188],[110.231820097656,26.0330763984375],[110.256204863281,25.9653444648438],[110.277345,25.973843],[110.293538847656,25.939165265625],[110.283289824219,25.8934499335938],[110.316976347656,25.901001203125],[110.342879667969,25.8831179023438],[110.347345,25.843843],[110.300704375,25.8404836250001],[110.293985625,25.827202375],[110.280704375,25.820483625],[110.272315703125,25.7914162421875],[110.257345,25.783843],[110.247345,25.7977956367188],[110.237345,25.783843],[110.204276152344,25.7780886054688],[110.192899199219,25.7382888007813],[110.178931914063,25.7019533515625],[110.124049101563,25.6686183906251],[110.107345,25.663843],[110.102535429688,25.6690334296876],[110.09134890625,25.6793971992188],[110.067345,25.6784474921875],[110.047345,25.6792385078125],[110.022345,25.678247296875],[109.992345,25.679438703125],[109.972345,25.6786452460937],[109.96220828125,25.6790456367188],[109.912535429688,25.66683128125],[109.932918730469,25.6283107734375],[109.931173125,25.584282453125],[109.901065703125,25.5590334296876],[109.882535429688,25.5790334296875],[109.871065703125,25.5886525703125],[109.852535429688,25.5686525703126],[109.824657011719,25.5428224921875],[109.847440214844,25.4997658515625],[109.777345,25.4838430000001],[109.771019316406,25.4985817695313],[109.780740996094,25.5371681953126],[109.7430871875,25.5508303046875],[109.737345,25.573843],[109.743270292969,25.5945632148438],[109.785155058594,25.6281056953126],[109.807337675781,25.6658425117188],[109.777943144531,25.6893801093751],[109.795655546875,25.73546409375],[109.762899199219,25.7893971992188],[109.71982546875,25.8075466132813],[109.733270292969,25.8545632148438],[109.757345,25.8738430000001],[109.806243925781,25.8799587226563],[109.825479765625,25.912680890625],[109.811790800781,25.9482888007813],[109.802899199219,25.9793971992188],[109.782899199219,25.9954128242187],[109.800252714844,26.042212140625],[109.868460722656,26.0337282539063],[109.882899199219,26.0582888007813],[109.892921171875,26.1046096015625],[109.91812625,26.1644289375],[109.967345,26.203843],[109.973079863281,26.1995778632813]]]]}},{"type":"Feature","properties":{"name":"平乐县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.766051054688,24.8057717109375],[110.81181765625,24.767602765625],[110.832345,24.7722048164063],[110.84656375,24.7342043281251],[110.873260527344,24.6997585273438],[110.886605253906,24.6640920234375],[110.911429472656,24.6479274726563],[110.943260527344,24.6397585273438],[110.959049101563,24.6168923164063],[110.987345,24.623843],[110.99170046875,24.6181984687501],[111.003595,24.6090187812501],[110.978941679688,24.575766828125],[111.01298953125,24.54948753125],[111.02170046875,24.52819846875],[111.043595,24.4986672187501],[111.030203886719,24.4883303046876],[111.034486113281,24.4593556953125],[111.02170046875,24.4494875312501],[111.012493925781,24.4164260078125],[110.98298953125,24.37819846875],[110.969075957031,24.3674587226563],[111.01298953125,24.34948753125],[111.017345,24.333843],[111.01170046875,24.3294875312501],[111.00298953125,24.3181984687501],[110.965267363281,24.2894875312501],[110.95298953125,24.31948753125],[110.937760039063,24.33819846875],[110.88443484375,24.26151878125],[110.864935332031,24.309165265625],[110.850565214844,24.3937526679688],[110.807838164063,24.3874391914063],[110.788187285156,24.3619777656251],[110.793880644531,24.323442609375],[110.747345,24.3303200507813],[110.732017851563,24.3280544257813],[110.697345,24.3438430000001],[110.683985625,24.370483625],[110.647345,24.373843],[110.6558215625,24.39589378125],[110.650826445313,24.4360549140625],[110.617486601563,24.4501052070312],[110.587884550781,24.4464235664063],[110.572899199219,24.5493971992188],[110.560535917969,24.5592971015625],[110.562967558594,24.5788430000001],[110.560650664063,24.59745628125],[110.572899199219,24.6182888007813],[110.577345,24.6438430000001],[110.593170195313,24.6480178046875],[110.619793730469,24.6649196601563],[110.601519804688,24.6780178046876],[110.583846464844,24.7450051093751],[110.633170195313,24.7580178046876],[110.659793730469,24.7749196601563],[110.640799589844,24.7885329414063],[110.65341921875,24.8084108710938],[110.651356230469,24.818843],[110.661380644531,24.8695680976563],[110.673170195313,24.8780178046875],[110.677345,24.893843],[110.703260527344,24.8797585273438],[110.737706328125,24.8530617500001],[110.773638945313,24.8396169257813],[110.766051054688,24.8057717109375]]]]}},{"type":"Feature","properties":{"name":"七星区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.396424589844,25.290669171875],[110.377345,25.213843],[110.337415800781,25.2337599921875],[110.322330351563,25.2263942695313],[110.307345,25.233843],[110.303260527344,25.2397585273438],[110.291043730469,25.2481935859376],[110.297345,25.273843],[110.297345,25.283843],[110.302025175781,25.3031471992188],[110.346961699219,25.2905202460937],[110.377345,25.3038430000001],[110.396424589844,25.290669171875]]]]}},{"type":"Feature","properties":{"name":"全州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.447345,25.883843],[111.450767851563,25.8960353828125],[111.459537382813,25.8872658515626],[111.447345,25.883843]]],[[[111.447345,25.883843],[111.452857695313,25.8767018867188],[111.481302519531,25.8809059882813],[111.483167753906,25.8682717109375],[111.447345,25.853843],[111.419937773438,25.8326882148438],[111.4401965625,25.7811501289063],[111.408365507813,25.7681227851563],[111.388631621094,25.7425563789062],[111.309075957031,25.7290407539063],[111.297345,25.7138430000001],[111.284947539063,25.6994533515626],[111.262840605469,25.6976784492188],[111.261917753906,25.7091677070313],[111.281956816406,25.7264333320313],[111.24197390625,25.7384719062501],[111.217345,25.7522121406251],[111.192623320313,25.7384181953125],[111.156986113281,25.7412819648438],[111.14271609375,25.67847190625],[111.094241972656,25.6674587226563],[111.091942167969,25.6388430000001],[111.093382597656,25.6209352851563],[111.062345,25.6184401679688],[111.040360136719,25.6202077460938],[110.952867460938,25.6003298164062],[110.951925078125,25.5886037421875],[110.966409941406,25.5491579414063],[110.95271609375,25.51847190625],[110.936600371094,25.5045876289063],[110.927345,25.4938430000001],[110.909906035156,25.5006984687501],[110.875238066406,25.4955763984375],[110.84298953125,25.5194875312501],[110.81170046875,25.52819846875],[110.800667753906,25.5424929023438],[110.803822050781,25.5638430000001],[110.801605253906,25.578843],[110.805523710938,25.6053493476563],[110.83298953125,25.66819846875],[110.84170046875,25.6959206367188],[110.76455203125,25.7274953437501],[110.803172636719,25.7382497382813],[110.800487089844,25.7564186835938],[110.766737089844,25.77022971875],[110.740496855469,25.7663527656251],[110.743172636719,25.7482497382813],[110.691346464844,25.7338185859375],[110.650282011719,25.7398854804688],[110.653084746094,25.7588430000001],[110.650335722656,25.7774416328126],[110.627345,25.783843],[110.632899199219,25.7982888007813],[110.653641386719,25.8708376289063],[110.712899199219,25.9182888007813],[110.721790800781,25.9593971992188],[110.745391875,25.969341046875],[110.739549589844,26.0163259101563],[110.762899199219,26.0482888007813],[110.791790800781,26.0993971992188],[110.80849734375,26.1127736640625],[110.852899199219,26.1682888007813],[110.887965117188,26.2303176093751],[110.917345,26.2538430000001],[110.927135039063,26.2606032539063],[110.933465605469,26.2888430000001],[110.928238554688,26.3121608710938],[110.946451445313,26.3555251289063],[110.939188261719,26.3879274726563],[110.973260527344,26.3797585273437],[110.997345,26.3638430000001],[111.00170046875,26.34819846875],[111.02298953125,26.33948753125],[111.04170046875,26.32819846875],[111.07298953125,26.3194875312501],[111.093922148438,26.306860578125],[111.122345,26.3110597968751],[111.142345,26.3081032539063],[111.205838652344,26.3174880195313],[111.198836699219,26.2701003242188],[111.212345,26.2681032539063],[111.222345,26.2695827460938],[111.237345,26.2673659492188],[111.280872832031,26.2737966132813],[111.287139921875,26.23140159375],[111.268753691406,26.217212140625],[111.25834109375,26.1467482734375],[111.267345,26.123843],[111.241763945313,26.0788454414063],[111.253048125,26.0586183906251],[111.219268828125,26.0435475898438],[111.188975859375,25.9610524726562],[111.221615019531,25.932934796875],[111.222747832031,25.918843],[111.221419707031,25.9023268867188],[111.257511015625,25.8604372382813],[111.282691679688,25.8584133125],[111.293909941406,25.8835573554688],[111.324583769531,25.9006716132813],[111.352345,25.8984401679688],[111.372020292969,25.9000221992188],[111.38197390625,25.8884719062501],[111.397345,25.883843],[111.447345,25.883843]]]]}},{"type":"Feature","properties":{"name":"象山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.315330839844,25.1398439765625],[110.267345,25.133843],[110.262542753906,25.1621120429688],[110.2341028125,25.1840651679688],[110.227345,25.2238430000001],[110.262303496094,25.2413722968751],[110.270704375,25.2704836250001],[110.297345,25.273843],[110.291043730469,25.2481935859376],[110.303260527344,25.2397585273438],[110.307345,25.233843],[110.311790800781,25.2082888007813],[110.329832792969,25.193843],[110.310535917969,25.1783888984375],[110.315330839844,25.1398439765625]]]]}},{"type":"Feature","properties":{"name":"兴安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.257345,25.783843],[110.237345,25.783843],[110.247345,25.7977956367188],[110.257345,25.783843]]],[[[110.257345,25.783843],[110.272315703125,25.7914162421875],[110.280704375,25.820483625],[110.293985625,25.827202375],[110.300704375,25.8404836250001],[110.347345,25.843843],[110.361334257813,25.832641828125],[110.337452421875,25.7920119453125],[110.347767363281,25.7593971992187],[110.371790800781,25.7893971992188],[110.384154082031,25.7992971015625],[110.381688261719,25.819126203125],[110.395111113281,25.8540456367188],[110.412899199219,25.8682888007813],[110.421790800781,25.8893971992188],[110.456595488281,25.9172658515625],[110.485133085938,25.8816310859375],[110.512899199219,25.8593971992188],[110.526239042969,25.8427370429687],[110.545438261719,25.8273610664063],[110.598580351563,25.8339723945313],[110.59166140625,25.7783376289063],[110.615775175781,25.7693971992188],[110.627345,25.783843],[110.650335722656,25.7774416328126],[110.653084746094,25.7588430000001],[110.650282011719,25.7398854804688],[110.691346464844,25.7338185859375],[110.743172636719,25.7482497382813],[110.740496855469,25.7663527656251],[110.766737089844,25.77022971875],[110.800487089844,25.7564186835938],[110.803172636719,25.7382497382813],[110.76455203125,25.7274953437501],[110.84170046875,25.6959206367188],[110.83298953125,25.66819846875],[110.805523710938,25.6053493476563],[110.801605253906,25.578843],[110.803822050781,25.5638430000001],[110.800667753906,25.5424929023438],[110.81170046875,25.52819846875],[110.84298953125,25.5194875312501],[110.875238066406,25.4955763984375],[110.909906035156,25.5006984687501],[110.927345,25.4938430000001],[110.92298953125,25.47819846875],[110.91170046875,25.46948753125],[110.90298953125,25.44819846875],[110.879901152344,25.4303786445313],[110.883507109375,25.4059743476563],[110.872542753906,25.3665969062501],[110.829327421875,25.372983625],[110.77170046875,25.3294875312501],[110.76298953125,25.31819846875],[110.757345,25.313843],[110.727547636719,25.319028546875],[110.692899199219,25.3393971992188],[110.622991972656,25.3545217109375],[110.562174101563,25.3469557929688],[110.552899199219,25.3793971992187],[110.541790800781,25.3882888007812],[110.528450957031,25.4049489570313],[110.511790800781,25.4182888007813],[110.500863066406,25.4319362617188],[110.503587675781,25.4538430000001],[110.501678496094,25.4692018867188],[110.5132825,25.4889430976563],[110.496922636719,25.5082888007813],[110.450767851563,25.4811598945312],[110.454039335938,25.5074562812501],[110.421834746094,25.5622389960937],[110.401790800781,25.5782888007812],[110.38634890625,25.59757346875],[110.361890898438,25.5670339179688],[110.340584746094,25.5696828437501],[110.343934355469,25.5966188789063],[110.290506621094,25.6290700507813],[110.294039335938,25.6574562812501],[110.281790800781,25.6782888007813],[110.272899199219,25.7393971992188],[110.261790800781,25.7582888007813],[110.257345,25.783843]]]]}},{"type":"Feature","properties":{"name":"秀峰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.262303496094,25.2413722968751],[110.227345,25.2238430000001],[110.220042753906,25.2535720039062],[110.22490359375,25.2752516914063],[110.243260527344,25.2879274726563],[110.247345,25.2938430000001],[110.260184355469,25.3399465156251],[110.297345,25.3338430000001],[110.274657011719,25.2995095039063],[110.297345,25.283843],[110.297345,25.273843],[110.270704375,25.2704836250001],[110.262303496094,25.2413722968751]]]]}},{"type":"Feature","properties":{"name":"雁山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.307345,25.233843],[110.322330351563,25.2263942695313],[110.337415800781,25.2337599921875],[110.377345,25.213843],[110.370147734375,25.140649640625],[110.392569609375,25.128139875],[110.404510527344,25.1549001289063],[110.42271609375,25.13921409375],[110.43197390625,25.11847190625],[110.453460722656,25.0999587226563],[110.47197390625,25.07847190625],[110.482923613281,25.0690358710938],[110.477345,25.053843],[110.459906035156,25.04698753125],[110.428761015625,25.0515895820313],[110.401832304688,25.0167018867188],[110.378736601563,25.0201149726563],[110.337345,25.003843],[110.325513945313,25.0120119453125],[110.30435671875,25.0426564765626],[110.278992949219,25.0369704414063],[110.250089140625,25.078833234375],[110.26408328125,25.0884963203126],[110.251124296875,25.1083962226563],[110.25490359375,25.1252516914063],[110.267345,25.133843],[110.315330839844,25.1398439765625],[110.310535917969,25.1783888984375],[110.329832792969,25.193843],[110.311790800781,25.2082888007813],[110.307345,25.233843]]]]}},{"type":"Feature","properties":{"name":"阳朔县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.617345,25.0638430000001],[110.644241972656,24.9636061835938],[110.671666289063,24.9117775703125],[110.677345,24.893843],[110.673170195313,24.8780178046875],[110.661380644531,24.8695680976563],[110.651356230469,24.818843],[110.65341921875,24.8084108710938],[110.640799589844,24.7885329414063],[110.659793730469,24.7749196601563],[110.633170195313,24.7580178046876],[110.583846464844,24.7450051093751],[110.601519804688,24.6780178046876],[110.619793730469,24.6649196601563],[110.593170195313,24.6480178046875],[110.577345,24.6438430000001],[110.541248808594,24.6477468085938],[110.512869902344,24.6703957343751],[110.477345,24.6604128242187],[110.437345,24.6716530585937],[110.416009550781,24.6656569648438],[110.382584257813,24.6803151679688],[110.37138796875,24.6771681953125],[110.361722441406,24.71702659375],[110.32334109375,24.7305275703125],[110.307345,24.7260329414062],[110.292345,24.7302492500001],[110.28158328125,24.7272243476563],[110.270992460938,24.7437673164063],[110.231248808594,24.7577468085938],[110.227345,24.7638430000001],[110.233944121094,24.7810134101563],[110.227345,24.833843],[110.231429472656,24.8397585273438],[110.284029570313,24.8532570625],[110.302345,24.9022048164063],[110.322345,24.8977223945312],[110.341319609375,24.9019753242188],[110.3097278125,24.9716799140625],[110.333260527344,24.9879274726563],[110.337345,25.003843],[110.378736601563,25.0201149726563],[110.401832304688,25.0167018867188],[110.428761015625,25.0515895820313],[110.459906035156,25.04698753125],[110.477345,25.053843],[110.514801054688,25.0512990546876],[110.532349882813,25.0339528632813],[110.559888945313,25.0612990546875],[110.617345,25.0638430000001]]]]}},{"type":"Feature","properties":{"name":"永福县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.637345,24.9938430000001],[109.640767851563,24.9816506171875],[109.649537382813,24.9904201484375],[109.643255644531,25.0085500312501],[109.640467558594,25.0247438789063],[109.656751738281,25.0936452460938],[109.638719511719,25.1227809882813],[109.644066191406,25.153843],[109.641373320313,25.1694826484375],[109.663079863281,25.1781081367188],[109.701805449219,25.2097365546875],[109.721610136719,25.2595778632813],[109.75052859375,25.3063039375001],[109.741434355469,25.3591359687501],[109.753255644531,25.3885500312501],[109.751483183594,25.398843],[109.754066191406,25.4138430000001],[109.751434355469,25.42913596875],[109.757345,25.4438430000001],[109.772899199219,25.4393971992188],[109.806951933594,25.4263063789063],[109.879569121094,25.4353395820313],[109.862869902344,25.3581569648438],[109.849107695313,25.359868390625],[109.854210234375,25.318843],[109.849298125,25.2793410468751],[109.891378203125,25.2616091132812],[109.893023710938,25.2483888984375],[109.862899199219,25.2242653632813],[109.871790800781,25.1882888007813],[109.920125761719,25.1778322578125],[109.953704863281,25.135903546875],[109.982345,25.1394655585938],[110.000181914063,25.1372463203125],[110.034508085938,25.1504396796875],[110.052345,25.1482204414063],[110.079823027344,25.1516384101563],[110.093011503906,25.1292018867188],[110.089859648438,25.1038600898437],[110.143248320313,25.0611086250001],[110.140535917969,25.0392971015625],[110.152899199219,25.0293971992188],[110.171790800781,24.9982888007813],[110.183023710938,24.9892971015626],[110.178277617188,24.9511428046876],[110.193961210938,24.8433888984376],[110.227345,24.833843],[110.233944121094,24.7810134101563],[110.227345,24.7638430000001],[110.201429472656,24.7597585273438],[110.183260527344,24.7479274726563],[110.154151640625,24.737036359375],[110.143260527344,24.7079274726563],[110.129320097656,24.6865187812501],[110.137345,24.6538430000001],[110.092064238281,24.6585622382813],[110.062435332031,24.6792580390625],[110.028111601563,24.6669411445313],[109.9808996875,24.6795876289063],[109.9826965625,24.7097585273438],[109.962120390625,24.7085305],[109.940350371094,24.7203615546875],[109.942645292969,24.7588698554688],[109.940496855469,24.7885622382812],[109.922625761719,24.7685622382813],[109.898065214844,24.7591237617188],[109.882625761719,24.8091237617188],[109.842064238281,24.8185622382813],[109.829173613281,24.8329885078125],[109.802467070313,24.8184743476563],[109.752503691406,24.8291506171875],[109.742135039063,24.8285329414063],[109.670345488281,24.8583913398438],[109.65259890625,24.8385305000001],[109.642186308594,24.8391506171875],[109.617345,24.833843],[109.623865996094,24.8735451484376],[109.621605253906,24.888843],[109.624561796875,24.908843],[109.620867949219,24.933843],[109.623084746094,24.9488430000001],[109.61857546875,24.9793556953125],[109.637345,24.9938430000001]]]]}},{"type":"Feature","properties":{"name":"资源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.604171171875,26.3333669257812],[110.648551054688,26.3151296210938],[110.676019316406,26.3205568671875],[110.712420683594,26.2974465156251],[110.748502226563,26.3250002265626],[110.73625125,26.2630104804688],[110.762777128906,26.25776878125],[110.784285917969,26.2714235664063],[110.822452421875,26.2638820625],[110.910081816406,26.2813771796875],[110.917345,26.2538430000001],[110.887965117188,26.2303176093751],[110.852899199219,26.1682888007813],[110.80849734375,26.1127736640625],[110.791790800781,26.0993971992188],[110.762899199219,26.0482888007813],[110.739549589844,26.0163259101563],[110.745391875,25.969341046875],[110.721790800781,25.9593971992188],[110.712899199219,25.9182888007813],[110.653641386719,25.8708376289063],[110.632899199219,25.7982888007813],[110.627345,25.783843],[110.615775175781,25.7693971992188],[110.59166140625,25.7783376289063],[110.598580351563,25.8339723945313],[110.545438261719,25.8273610664063],[110.526239042969,25.8427370429687],[110.512899199219,25.8593971992188],[110.485133085938,25.8816310859375],[110.456595488281,25.9172658515625],[110.421790800781,25.8893971992188],[110.412899199219,25.8682888007813],[110.395111113281,25.8540456367188],[110.381688261719,25.819126203125],[110.384154082031,25.7992971015625],[110.371790800781,25.7893971992188],[110.347767363281,25.7593971992187],[110.337452421875,25.7920119453125],[110.361334257813,25.832641828125],[110.347345,25.843843],[110.342879667969,25.8831179023438],[110.316976347656,25.901001203125],[110.283289824219,25.8934499335938],[110.293538847656,25.939165265625],[110.277345,25.973843],[110.328800078125,25.9807253242188],[110.373094511719,26.1019460273438],[110.46439578125,26.179614484375],[110.500223417969,26.1774782539063],[110.512625761719,26.1885622382813],[110.532064238281,26.2191237617188],[110.542625761719,26.2285622382813],[110.552064238281,26.2891237617188],[110.557345,26.2938430000001],[110.5801575,26.2998610664063],[110.604171171875,26.3333669257812]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长洲区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.217345,23.6638430000001],[111.202647734375,23.6228835273438],[111.252064238281,23.6002028632813],[111.232625761719,23.5685622382812],[111.20974734375,23.54812034375],[111.252064238281,23.5185622382813],[111.292064238281,23.4931227851562],[111.282625761719,23.4685622382813],[111.272064238281,23.4591237617188],[111.267345,23.453843],[111.23298953125,23.42819846875],[111.167345,23.423843],[111.157345,23.423843],[111.157345,23.4338430000001],[111.16298953125,23.4381984687501],[111.201463652344,23.4880471015626],[111.14170046875,23.49819846875],[111.12490359375,23.5199611640625],[111.111954375,23.5180471015626],[111.084451933594,23.5346364570313],[111.07298953125,23.54948753125],[111.034129667969,23.5794826484375],[111.02047,23.6285353828125],[111.037601347656,23.6417604804688],[111.071832304688,23.6367018867188],[111.085809355469,23.6548097968751],[111.122689238281,23.627466046875],[111.134605742188,23.6565822578126],[111.170960722656,23.6714626289063],[111.217345,23.6638430000001]]]]}},{"type":"Feature","properties":{"name":"蝶山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.267728300781,23.7371657539063],[111.302345,23.7274367500001],[111.317987089844,23.7318337226563],[111.343441191406,23.6999391914062],[111.347345,23.683843],[111.321947050781,23.6791017890626],[111.332652617188,23.6290016914063],[111.331749296875,23.613843],[111.333035917969,23.5922682929688],[111.322435332031,23.5579445625001],[111.292625761719,23.5597194648438],[111.302064238281,23.5385622382813],[111.322799101563,23.5088771796875],[111.302625761719,23.4717580390626],[111.312152128906,23.4685329414062],[111.397345,23.4738430000001],[111.383260527344,23.4179274726563],[111.377345,23.413843],[111.37197390625,23.4184719062501],[111.322581816406,23.4224391914063],[111.267345,23.453843],[111.272064238281,23.4591237617188],[111.282625761719,23.4685622382813],[111.292064238281,23.4931227851562],[111.252064238281,23.5185622382813],[111.20974734375,23.54812034375],[111.232625761719,23.5685622382812],[111.252064238281,23.6002028632813],[111.202647734375,23.6228835273438],[111.217345,23.6638430000001],[111.221849394531,23.7170485664063],[111.267728300781,23.7371657539063]]]]}},{"type":"Feature","properties":{"name":"苍梧县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.36490359375,23.3652516914063],[111.357191191406,23.33085471875],[111.367345,23.323843],[111.363170195313,23.3080178046876],[111.347821074219,23.2838430000001],[111.364925566406,23.2569020820313],[111.36127078125,23.2384108710938],[111.373343535156,23.2193947578125],[111.385186796875,23.1594631171875],[111.363170195313,23.1436843085938],[111.372757597656,23.0797756171876],[111.431519804688,23.0679933906251],[111.423170195313,23.0380178046876],[111.388521757813,23.0131862617188],[111.394366484375,22.9836110664063],[111.357345,22.9738430000001],[111.351529570313,22.9783303046875],[111.353822050781,22.993843],[111.351087675781,23.0123513007812],[111.322345,23.0081032539063],[111.294127226563,23.0122731757813],[111.274974394531,23.0590676093751],[111.225660429688,23.0694728828125],[111.243519316406,23.0990773750001],[111.200518828125,23.1322682929688],[111.122957792969,23.1208058906251],[111.117345,23.153843],[111.121790800781,23.1793971992188],[111.132899199219,23.1982888007813],[111.141790800781,23.2193971992188],[111.153011503906,23.2384841132813],[111.140477324219,23.3388185859375],[111.143338652344,23.3618288398438],[111.1819153125,23.3570314765626],[111.191790800781,23.3696974921875],[111.167345,23.423843],[111.23298953125,23.42819846875],[111.267345,23.453843],[111.322581816406,23.4224391914063],[111.37197390625,23.4184719062501],[111.377345,23.413843],[111.385745878906,23.37964378125],[111.36490359375,23.3652516914063]]],[[[111.585557890625,24.0967653632813],[111.528841582031,24.0479006171875],[111.550960722656,23.9983303046876],[111.579476347656,24.00062034375],[111.59271609375,23.98921409375],[111.60197390625,23.9784719062501],[111.639947539063,23.9615261054688],[111.652767363281,23.8788893867188],[111.647345,23.833843],[111.623179960938,23.7648952460938],[111.621746855469,23.7287819648438],[111.661478300781,23.7162038398438],[111.632154570313,23.6890334296876],[111.596178007813,23.639985578125],[111.562345,23.6386452460938],[111.543209257813,23.6394020820313],[111.512420683594,23.6286135078126],[111.477345,23.633843],[111.482393828125,23.665884015625],[111.509862089844,23.7080641914062],[111.471429472656,23.7179274726563],[111.45959109375,23.7350734687501],[111.432791777344,23.717622296875],[111.413016386719,23.722055890625],[111.389979277344,23.6886916328125],[111.347345,23.683843],[111.343441191406,23.6999391914062],[111.317987089844,23.7318337226563],[111.302345,23.7274367500001],[111.267728300781,23.7371657539063],[111.221849394531,23.7170485664063],[111.217345,23.6638430000001],[111.170960722656,23.6714626289063],[111.134605742188,23.6565822578126],[111.122689238281,23.627466046875],[111.085809355469,23.6548097968751],[111.071832304688,23.6367018867188],[111.037601347656,23.6417604804688],[111.02047,23.6285353828125],[111.034129667969,23.5794826484375],[111.07298953125,23.54948753125],[111.084451933594,23.5346364570313],[111.111954375,23.5180471015626],[111.12490359375,23.5199611640625],[111.14170046875,23.49819846875],[111.201463652344,23.4880471015626],[111.16298953125,23.4381984687501],[111.157345,23.4338430000001],[111.131429472656,23.4379274726562],[111.099144316406,23.4514870429688],[111.077345,23.4466017890626],[111.054459257813,23.4517311835938],[111.033260527344,23.4379274726562],[110.983973417969,23.4297585273438],[110.949705839844,23.4520729804688],[110.953577910156,23.4693483710937],[110.931112089844,23.4983376289063],[110.935623808594,23.5184743476563],[110.918228789063,23.5279274726563],[110.901256132813,23.4825685859376],[110.879188261719,23.4697585273438],[110.883465605469,23.488843],[110.87896609375,23.5089138007813],[110.850504179688,23.5285646796875],[110.873577910156,23.5583376289063],[110.870103789063,23.573843],[110.875794707031,23.5992311835937],[110.939046660156,23.6418239570313],[110.947345,23.6538430000001],[110.963492460938,23.6667751289063],[110.95156375,23.7192995429688],[110.97302859375,23.728344953125],[110.971082792969,23.7439846015625],[110.981846953125,23.76952659375],[111.011351347656,23.7658571601563],[111.013587675781,23.783843],[111.010213652344,23.8109743476563],[111.032738066406,23.8081716132813],[111.061790800781,23.8293971992188],[111.084810820313,23.8390944648438],[111.103057890625,23.8824025703125],[111.130543242188,23.9044118476563],[111.158221464844,23.9499806953125],[111.207345,23.943843],[111.239422636719,23.8882057929687],[111.263060332031,23.8901052070313],[111.325365019531,23.8672243476563],[111.3627746875,23.8784889960938],[111.361917753906,23.8891677070313],[111.387511015625,23.911216046875],[111.407537871094,23.9471120429688],[111.391871367188,24.0189382148438],[111.402764921875,24.0486037421875],[111.400225859375,24.0802175117188],[111.422623320313,24.0784181953125],[111.442066679688,24.0892678046876],[111.469288359375,24.0870803046876],[111.48197390625,24.1292140937501],[111.492772246094,24.1385182929688],[111.490382109375,24.1682839179688],[111.502623320313,24.1692678046875],[111.531600371094,24.1530983710938],[111.571422148438,24.1353298164063],[111.572747832031,24.1188430000001],[111.571917753906,24.1085182929688],[111.585557890625,24.0967653632813]]]]}},{"type":"Feature","properties":{"name":"蒙山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.413922148438,24.1560353828125],[110.417345,24.143843],[110.405152617188,24.1472658515625],[110.413922148438,24.1560353828125]]],[[[110.573941679688,24.3466799140626],[110.571658964844,24.3283180976563],[110.616839628906,24.3185427070313],[110.595589628906,24.2632570625],[110.612899199219,24.2493971992188],[110.628785429688,24.229555890625],[110.67400515625,24.21050315625],[110.691790800781,24.1882888007813],[110.716954375,24.1776857734375],[110.686480742188,24.1070925117188],[110.679549589844,24.0513649726563],[110.711239042969,24.0327370429688],[110.74341921875,24.0191774726563],[110.723841582031,23.9858693671876],[110.719107695313,23.9478151679688],[110.767345,23.953843],[110.74170046875,23.9194875312501],[110.729920683594,23.8907009101563],[110.707345,23.8873659492188],[110.68060671875,23.8913161445313],[110.65170046875,23.8794875312501],[110.618546171875,23.85948753125],[110.580257597656,23.8997170234376],[110.583140898438,23.9192336250001],[110.566058378906,23.9475563789063],[110.55298953125,23.97948753125],[110.536058378906,24.0075563789063],[110.522916289063,24.0396657539063],[110.503922148438,24.0368605781251],[110.482279082031,24.0499147773438],[110.440784941406,24.0191530585938],[110.397345,24.013843],[110.397345,24.0438430000001],[110.397345,24.063843],[110.377345,24.063843],[110.377345,24.0438430000001],[110.367345,24.0438430000001],[110.358631621094,24.0551296210938],[110.339388457031,24.0699831367188],[110.363160429688,24.0883303046875],[110.360362578125,24.1072658515625],[110.377811308594,24.1361940742188],[110.401204863281,24.1058864570313],[110.41170046875,24.11948753125],[110.456619902344,24.1289650703126],[110.427054472656,24.1517848945313],[110.451307402344,24.1919899726563],[110.41170046875,24.2081984687501],[110.401832304688,24.2209841132813],[110.381954375,24.2180471015625],[110.357735625,24.2326540351563],[110.364605742188,24.279145734375],[110.32170046875,24.28819846875],[110.317345,24.293843],[110.363607207031,24.327739484375],[110.382345,24.3292458320313],[110.401363554688,24.3277175117188],[110.427518339844,24.3423097968751],[110.44271609375,24.3292140937501],[110.457791777344,24.3117189765626],[110.472769804688,24.3385646796875],[110.471033964844,24.3601540351563],[110.501170683594,24.3433400703126],[110.51197390625,24.37921409375],[110.52271609375,24.38847190625],[110.539935332031,24.4084548164063],[110.55197390625,24.3684719062501],[110.567345,24.363843],[110.573941679688,24.3466799140626]]]]}},{"type":"Feature","properties":{"name":"藤县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.482279082031,24.0499147773438],[110.503922148438,24.0368605781251],[110.522916289063,24.0396657539063],[110.536058378906,24.0075563789063],[110.55298953125,23.97948753125],[110.566058378906,23.9475563789063],[110.583140898438,23.9192336250001],[110.580257597656,23.8997170234376],[110.618546171875,23.85948753125],[110.65170046875,23.8794875312501],[110.68060671875,23.8913161445313],[110.707345,23.8873659492188],[110.729920683594,23.8907009101563],[110.74170046875,23.9194875312501],[110.767345,23.953843],[110.83197390625,23.89847190625],[110.871485625,23.8808400703125],[110.839691191406,23.8359963203126],[110.851998320313,23.8084133125],[110.89197390625,23.811626203125],[110.88271609375,23.77847190625],[110.871541777344,23.7688430000001],[110.893629179688,23.7498146796875],[110.889832792969,23.702563703125],[110.90197390625,23.68847190625],[110.91271609375,23.6792140937501],[110.922020292969,23.6684157539062],[110.9424621875,23.6700588203126],[110.947345,23.6538430000001],[110.939046660156,23.6418239570313],[110.875794707031,23.5992311835937],[110.870103789063,23.573843],[110.873577910156,23.5583376289063],[110.850504179688,23.5285646796875],[110.87896609375,23.5089138007813],[110.883465605469,23.488843],[110.879188261719,23.4697585273438],[110.901256132813,23.4825685859376],[110.918228789063,23.5279274726563],[110.935623808594,23.5184743476563],[110.931112089844,23.4983376289063],[110.953577910156,23.4693483710937],[110.949705839844,23.4520729804688],[110.983973417969,23.4297585273438],[111.033260527344,23.4379274726562],[111.054459257813,23.4517311835938],[111.077345,23.4466017890626],[111.099144316406,23.4514870429688],[111.131429472656,23.4379274726562],[111.157345,23.4338430000001],[111.157345,23.423843],[111.167345,23.423843],[111.191790800781,23.3696974921875],[111.1819153125,23.3570314765626],[111.143338652344,23.3618288398438],[111.140477324219,23.3388185859375],[111.153011503906,23.2384841132813],[111.141790800781,23.2193971992188],[111.132899199219,23.1982888007813],[111.121790800781,23.1793971992188],[111.117345,23.153843],[111.071248808594,23.1577468085938],[111.052345,23.1706911445312],[111.033441191406,23.1577468085938],[110.973992949219,23.1499391914063],[110.957269316406,23.1974904609375],[110.934425078125,23.212114484375],[110.913441191406,23.1977468085938],[110.8438684375,23.1740114570313],[110.858221464844,23.1229299140625],[110.846246367188,23.1099391914063],[110.830767851563,23.1341139960938],[110.783436308594,23.1133596015625],[110.773441191406,23.0977468085938],[110.761248808594,23.0899391914062],[110.753441191406,23.0677468085937],[110.741248808594,23.0599391914063],[110.737345,23.0538430000001],[110.714088164063,23.0440749335937],[110.703260527344,23.0597585273438],[110.681429472656,23.0679274726563],[110.673260527344,23.0897585273438],[110.656097441406,23.1161135078125],[110.614486113281,23.1279274726563],[110.600943632813,23.091733625],[110.572791777344,23.110063703125],[110.554500761719,23.1059645820313],[110.547345,23.133843],[110.554520292969,23.153843],[110.539559355469,23.1955397773438],[110.567235136719,23.2351589179688],[110.585516386719,23.2146974921875],[110.620345488281,23.2336232734375],[110.653709746094,23.2709645820313],[110.652047148438,23.298843],[110.652659941406,23.3091091132813],[110.632064238281,23.3185622382813],[110.61158328125,23.3296926093751],[110.592078886719,23.3285280585937],[110.581798125,23.3509304023438],[110.561749296875,23.368843],[110.57322390625,23.3790969062501],[110.572047148438,23.398843],[110.574913359375,23.4469167304688],[110.612625761719,23.4585622382813],[110.624014921875,23.4713088203125],[110.612039824219,23.5387038398438],[110.6126575,23.5490676093751],[110.602064238281,23.5685622382812],[110.592625761719,23.5891237617188],[110.5820325,23.59858909375],[110.583343535156,23.6206130195313],[110.533465605469,23.6651784492188],[110.562625761719,23.6785622382813],[110.572064238281,23.7097194648438],[110.549635039063,23.708384015625],[110.552760039063,23.7608107734375],[110.578450957031,23.7837673164062],[110.550496855469,23.8285622382813],[110.532625761719,23.8085622382813],[110.495574980469,23.7991237617188],[110.472345,23.8497365546876],[110.45209109375,23.8485305000001],[110.442625761719,23.8591237617188],[110.412064238281,23.8685622382813],[110.382625761719,23.8791237617188],[110.352030058594,23.8885720039063],[110.353238554688,23.908843],[110.3520325,23.9291042304688],[110.382625761719,23.9485622382812],[110.393709746094,23.9609645820313],[110.3915246875,23.9976198554688],[110.397345,24.013843],[110.440784941406,24.0191530585938],[110.482279082031,24.0499147773438]]]]}},{"type":"Feature","properties":{"name":"万秀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.471429472656,23.7179274726563],[111.509862089844,23.7080641914062],[111.482393828125,23.665884015625],[111.477345,23.633843],[111.485535917969,23.5682814765626],[111.458607207031,23.5043752265625],[111.422899199219,23.4782888007813],[111.397345,23.4738430000001],[111.312152128906,23.4685329414062],[111.302625761719,23.4717580390626],[111.322799101563,23.5088771796875],[111.302064238281,23.5385622382813],[111.292625761719,23.5597194648438],[111.322435332031,23.5579445625001],[111.333035917969,23.5922682929688],[111.331749296875,23.613843],[111.332652617188,23.6290016914063],[111.321947050781,23.6791017890626],[111.347345,23.683843],[111.389979277344,23.6886916328125],[111.413016386719,23.722055890625],[111.432791777344,23.717622296875],[111.45959109375,23.7350734687501],[111.471429472656,23.7179274726563]]]]}},{"type":"Feature","properties":{"name":"岑溪市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.957269316406,23.1974904609375],[110.973992949219,23.1499391914063],[111.033441191406,23.1577468085938],[111.052345,23.1706911445312],[111.071248808594,23.1577468085938],[111.117345,23.153843],[111.122957792969,23.1208058906251],[111.200518828125,23.1322682929688],[111.243519316406,23.0990773750001],[111.225660429688,23.0694728828125],[111.274974394531,23.0590676093751],[111.294127226563,23.0122731757813],[111.322345,23.0081032539063],[111.351087675781,23.0123513007812],[111.353822050781,22.993843],[111.351529570313,22.9783303046875],[111.357345,22.9738430000001],[111.357345,22.943843],[111.367345,22.943843],[111.359696074219,22.898813703125],[111.320897246094,22.8688649726563],[111.29170046875,22.82948753125],[111.28298953125,22.80819846875],[111.243226347656,22.7844191718751],[111.222608671875,22.7577053046875],[111.17263796875,22.73806175],[111.106522246094,22.7478322578125],[111.060965605469,22.729184796875],[111.087345,22.693843],[111.080975371094,22.6902126289063],[111.073714628906,22.6774733710938],[111.060975371094,22.6702126289063],[111.053714628906,22.6574733710938],[111.034105253906,22.646294171875],[111.015282011719,22.6533888984375],[110.992789335938,22.6367922187501],[110.964998808594,22.6472658515626],[110.948175078125,22.6177614570313],[110.887345,22.613843],[110.882899199219,22.6193971992188],[110.879271269531,22.6485549140625],[110.847669707031,22.7023122382813],[110.78080203125,22.7214333320313],[110.784154082031,22.7483888984376],[110.769058867188,22.7604787421875],[110.793880644531,22.8414968085938],[110.790982695313,22.8647975898438],[110.756297636719,22.84440940625],[110.720948515625,22.9026076484375],[110.722967558594,22.918843],[110.721722441406,22.9288430000001],[110.723311796875,22.9416091132813],[110.76341921875,22.9585085273438],[110.748597441406,22.9837233710938],[110.753011503906,23.0192018867188],[110.741678496094,23.0384841132813],[110.743023710938,23.0492971015626],[110.737345,23.0538430000001],[110.741248808594,23.0599391914063],[110.753441191406,23.0677468085937],[110.761248808594,23.0899391914062],[110.773441191406,23.0977468085938],[110.783436308594,23.1133596015625],[110.830767851563,23.1341139960938],[110.846246367188,23.1099391914063],[110.858221464844,23.1229299140625],[110.8438684375,23.1740114570313],[110.913441191406,23.1977468085938],[110.934425078125,23.212114484375],[110.957269316406,23.1974904609375]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"铁山港区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.458702421875,21.6758718085938],[109.487345,21.663843],[109.487345,21.653843],[109.497345,21.653843],[109.527345,21.653843],[109.541429472656,21.6279274726563],[109.560440703125,21.61480003125],[109.585369902344,21.5765212226563],[109.561429472656,21.5397585273437],[109.547528105469,21.5026052070313],[109.472667265625,21.4676491523438],[109.461898222656,21.470063703125],[109.432547636719,21.4509523750001],[109.392345,21.4599636054688],[109.347037382813,21.4498073554688],[109.333260527344,21.4697585273438],[109.327345,21.473843],[109.332064238281,21.4891237617188],[109.354859648438,21.4995876289063],[109.401668730469,21.4967971015625],[109.380169707031,21.5974318671875],[109.392830839844,21.60874534375],[109.382064238281,21.6285622382813],[109.377345,21.653843],[109.404427519531,21.6717385078125],[109.422345,21.6677223945313],[109.458702421875,21.6758718085938]],[[109.395152617188,21.6472658515625],[109.407345,21.6438430000001],[109.403922148438,21.6560353828126],[109.395152617188,21.6472658515625]]]]}},{"type":"Feature","properties":{"name":"海城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.213922148438,20.9160353828125],[109.217345,20.903843],[109.205152617188,20.9072658515625],[109.213922148438,20.9160353828125]]],[[[109.140704375,21.0467263007813],[109.122772246094,21.0213088203126],[109.100999785156,21.0319411445313],[109.097345,21.013843],[109.083985625,21.0206008125],[109.0919934375,21.0562111640625],[109.1274621875,21.073843],[109.140704375,21.0467263007813]]],[[[109.171790800781,21.4693971992188],[109.162679472656,21.44776878125],[109.142535429688,21.4596096015625],[109.099527617188,21.4473268867187],[109.082061796875,21.4494997382812],[109.067345,21.4438430000001],[109.067345,21.4538430000001],[109.047345,21.4538430000001],[109.064273710938,21.4783620429688],[109.119893828125,21.4892214179688],[109.167982207031,21.5205373359375],[109.157345,21.5638430000001],[109.179488554688,21.5683132148438],[109.190704375,21.590483625],[109.197345,21.593843],[109.206890898438,21.5174440742188],[109.171790800781,21.4693971992188]]]]}},{"type":"Feature","properties":{"name":"合浦县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.037345,21.613843],[109.033922148438,21.6016506171875],[109.025152617188,21.6104201484375],[109.037345,21.613843]]],[[[109.403922148438,21.6560353828126],[109.407345,21.6438430000001],[109.395152617188,21.6472658515625],[109.403922148438,21.6560353828126]]],[[[109.667345,21.6038430000001],[109.677345,21.6038430000001],[109.677345,21.613843],[109.689537382813,21.6172658515626],[109.680767851563,21.6260353828125],[109.677345,21.613843],[109.667345,21.613843],[109.644505644531,21.5979811835937],[109.632345,21.5654811835938],[109.609383574219,21.5706276679687],[109.615240507813,21.5967604804688],[109.597345,21.623843],[109.609537382813,21.6272658515626],[109.600767851563,21.6360353828125],[109.597345,21.623843],[109.57896609375,21.628559796875],[109.55795046875,21.7104518867188],[109.585299101563,21.7293337226563],[109.543973417969,21.7379274726563],[109.523260527344,21.7079274726563],[109.510504179688,21.6991213203125],[109.539234648438,21.6620510078126],[109.527345,21.653843],[109.497345,21.653843],[109.497345,21.663843],[109.487345,21.663843],[109.458702421875,21.6758718085938],[109.422345,21.6677223945313],[109.404427519531,21.6717385078125],[109.377345,21.653843],[109.359166289063,21.6866335273438],[109.312730742188,21.6679689765625],[109.283079863281,21.6281081367188],[109.269859648438,21.6182741523438],[109.274730253906,21.5899880195313],[109.238407011719,21.6124684882813],[109.207203398438,21.6070973945313],[109.197345,21.593843],[109.190704375,21.590483625],[109.179488554688,21.5683132148438],[109.157345,21.5638430000001],[109.151429472656,21.5679274726562],[109.143260527344,21.5797585273437],[109.083682890625,21.5891481757813],[109.072345,21.633325421875],[109.062764921875,21.5959938789063],[109.053260527344,21.6097585273438],[109.037345,21.613843],[109.029403105469,21.6241335273438],[109.00298953125,21.6081984687501],[108.963929472656,21.5973220039063],[108.911868925781,21.6177883125],[108.900084257813,21.6465822578125],[108.87170046875,21.65819846875],[108.853482695313,21.681801984375],[108.847345,21.703843],[108.867345,21.703843],[108.867345,21.743843],[108.887345,21.743843],[108.947159453125,21.7679347968751],[108.96312625,21.8085500312501],[108.959967070313,21.8299343085938],[108.97263796875,21.82806175],[109.028736601563,21.8501149726563],[109.065479765625,21.8446852851563],[109.08298953125,21.85819846875],[109.100719023438,21.8811696601563],[109.13170046875,21.85819846875],[109.147345,21.853843],[109.190572539063,21.8467409492188],[109.211954375,21.8596388984376],[109.226737089844,21.85745628125],[109.25298953125,21.86819846875],[109.270064726563,21.9099196601563],[109.28263796875,21.9080617500001],[109.297345,21.913843],[109.311033964844,21.8973635078126],[109.332249785156,21.9095143867188],[109.362078886719,21.8983058906251],[109.372345,21.8993532539063],[109.382735625,21.8982936835938],[109.392735625,21.9103322578125],[109.412735625,21.9082936835938],[109.429058867188,21.9279470039062],[109.445494414063,21.8900514960938],[109.462735625,21.8882936835938],[109.472181425781,21.8996633125001],[109.512838164063,21.8763796210938],[109.532735625,21.9003322578125],[109.561156035156,21.8974343085938],[109.581883574219,21.9093044257813],[109.607345,21.913843],[109.612965117188,21.906001203125],[109.63252078125,21.9098659492188],[109.67216921875,21.8978200507813],[109.692847929688,21.9019069648438],[109.704327421875,21.8438137031251],[109.686390410156,21.7539772773438],[109.693333769531,21.7188430000001],[109.683975859375,21.6714846015626],[109.702345,21.6678542304688],[109.720404082031,21.6714235664062],[109.74216921875,21.6576052070313],[109.757345,21.663843],[109.753260527344,21.6479274726563],[109.739595976563,21.6153932929688],[109.747345,21.583843],[109.734537382813,21.578843],[109.747345,21.573843],[109.75197390625,21.5484719062501],[109.763936796875,21.493618390625],[109.74888796875,21.4598903632813],[109.649576445313,21.5171486640626],[109.670008574219,21.534751203125],[109.67275515625,21.5689601875],[109.667345,21.6038430000001]],[[109.597345,21.743843],[109.593922148438,21.7560353828125],[109.585152617188,21.7472658515625],[109.600767851563,21.7316506171876],[109.609537382813,21.7404201484375],[109.597345,21.743843]],[[109.123922148438,21.6460353828125],[109.115152617188,21.6372658515625],[109.127345,21.6338430000001],[109.123922148438,21.6460353828125]],[[109.097345,21.6338430000001],[109.093922148438,21.6460353828125],[109.085152617188,21.6372658515625],[109.097345,21.6338430000001]],[[109.115152617188,21.5972658515625],[109.127345,21.593843],[109.123922148438,21.6060353828125],[109.115152617188,21.5972658515625]]]]}},{"type":"Feature","properties":{"name":"银海区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.067345,21.4438430000001],[109.047345,21.4438430000001],[109.047345,21.4538430000001],[109.067345,21.4538430000001],[109.067345,21.4438430000001]]],[[[109.237345,21.463843],[109.250484648438,21.4716310859375],[109.241829863281,21.507563703125],[109.231158476563,21.4600295234375],[109.223531523438,21.4276564765626],[109.191158476563,21.4200295234375],[109.149871855469,21.4015358710938],[109.123531523438,21.4200295234375],[109.071158476563,21.4376564765625],[109.067345,21.4438430000001],[109.082061796875,21.4494997382812],[109.099527617188,21.4473268867187],[109.142535429688,21.4596096015625],[109.162679472656,21.44776878125],[109.171790800781,21.4693971992188],[109.206890898438,21.5174440742188],[109.197345,21.593843],[109.207203398438,21.6070973945313],[109.238407011719,21.6124684882813],[109.274730253906,21.5899880195313],[109.269859648438,21.6182741523438],[109.283079863281,21.6281081367188],[109.312730742188,21.6679689765625],[109.359166289063,21.6866335273438],[109.377345,21.653843],[109.382064238281,21.6285622382813],[109.392830839844,21.60874534375],[109.380169707031,21.5974318671875],[109.401668730469,21.4967971015625],[109.354859648438,21.4995876289063],[109.332064238281,21.4891237617188],[109.327345,21.473843],[109.323389921875,21.45601096875],[109.268170195313,21.4302126289063],[109.242388945313,21.4411013007813],[109.237345,21.463843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"东兴市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.123922148438,21.5260353828125],[108.127345,21.513843],[108.115152617188,21.5172658515625],[108.123922148438,21.5260353828125]]],[[[108.044105253906,21.6740529609375],[108.072345,21.6677223945313],[108.090230742188,21.6717311835938],[108.123973417969,21.6497585273438],[108.135103789063,21.6715334296876],[108.130399199219,21.692524640625],[108.190877714844,21.7179274726563],[108.215328398438,21.6871559882813],[108.207699003906,21.6531154609375],[108.217345,21.613843],[108.202623320313,21.6076589179688],[108.192345,21.6099636054688],[108.169862089844,21.6049245429688],[108.173648710938,21.5880275703125],[108.141429472656,21.5797585273437],[108.133260527344,21.5625905585937],[108.173624296875,21.5395510078125],[108.169603300781,21.5216115546875],[108.119097929688,21.5329323554688],[108.08509890625,21.55507346875],[108.071673613281,21.535630109375],[108.017345,21.5478102851563],[107.956571074219,21.534184796875],[107.942166777344,21.5726857734376],[107.892171660156,21.591391828125],[107.887345,21.6338430000001],[107.903260527344,21.6379274726563],[107.915513945313,21.6856740546876],[107.935557890625,21.6995143867188],[107.929188261719,21.7279274726563],[107.994527617188,21.7195973945313],[108.029176054688,21.6956740546875],[108.044105253906,21.6740529609375]]]]}},{"type":"Feature","properties":{"name":"防城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.227345,21.513843],[108.221783476563,21.500844953125],[108.204620390625,21.5098366523438],[108.227345,21.513843]]],[[[108.317345,21.593843],[108.317345,21.6038430000001],[108.327345,21.6038430000001],[108.327345,21.593843],[108.317345,21.593843]]],[[[108.317345,21.6738430000001],[108.313922148438,21.6860353828125],[108.305152617188,21.6772658515625],[108.326199980469,21.6377956367188],[108.300406523438,21.5981887031251],[108.317345,21.593843],[108.309359160156,21.5651638007813],[108.247830839844,21.5195485664063],[108.227345,21.513843],[108.232064238281,21.5291237617188],[108.267345,21.593843],[108.279537382813,21.5972658515625],[108.270767851563,21.6060353828125],[108.267345,21.593843],[108.251429472656,21.5979274726563],[108.24310671875,21.620171125],[108.217345,21.613843],[108.207699003906,21.6531154609375],[108.215328398438,21.6871559882813],[108.190877714844,21.7179274726563],[108.130399199219,21.692524640625],[108.135103789063,21.6715334296876],[108.123973417969,21.6497585273438],[108.090230742188,21.6717311835938],[108.072345,21.6677223945313],[108.044105253906,21.6740529609375],[108.029176054688,21.6956740546875],[107.994527617188,21.7195973945313],[107.929188261719,21.7279274726563],[107.935557890625,21.6995143867188],[107.915513945313,21.6856740546876],[107.903260527344,21.6379274726563],[107.887345,21.6338430000001],[107.861285429688,21.6502638984375],[107.837345,21.6478249335938],[107.7844934375,21.6532106757813],[107.668265410156,21.6036525703126],[107.612345,21.6093532539063],[107.597345,21.6078249335938],[107.565042753906,21.6111159492188],[107.542806425781,21.5983815742188],[107.490863066406,21.5893044257813],[107.493485136719,21.615024640625],[107.487345,21.653843],[107.489888945313,21.6612990546876],[107.508370390625,21.6676052070313],[107.497371855469,21.6789943671876],[107.539888945313,21.7212990546875],[107.557345,21.723843],[107.625496855469,21.7505983710938],[107.657916289063,21.747993390625],[107.699115019531,21.7603981757813],[107.712847929688,21.7911745429688],[107.76197390625,21.8092140937501],[107.84271609375,21.81847190625],[107.86197390625,21.82921409375],[107.88271609375,21.83847190625],[107.89869265625,21.8742751289063],[108.043956328125,21.9051003242188],[108.162049589844,21.9892678046876],[108.182020292969,21.9876638007812],[108.19197390625,21.9992140937501],[108.197345,22.003843],[108.203324003906,21.9811794257813],[108.233170195313,21.9696681953125],[108.241519804688,21.9480178046875],[108.253170195313,21.9396681953125],[108.261519804688,21.9280178046876],[108.290538359375,21.9072194648438],[108.331519804688,21.9196681953126],[108.382745390625,21.92993675],[108.409527617188,21.9129347968751],[108.417345,21.923843],[108.438668242188,21.9195388007813],[108.468143339844,21.8857131171875],[108.457432890625,21.86378440625],[108.467345,21.843843],[108.471158476563,21.8376564765625],[108.500533476563,21.819555890625],[108.513983183594,21.7786598945313],[108.507345,21.763843],[108.497345,21.763843],[108.497345,21.7538430000001],[108.497345,21.733843],[108.466961699219,21.7471657539062],[108.424666777344,21.7352809882813],[108.413441191406,21.7177468085938],[108.395816679688,21.7064626289062],[108.356156035156,21.7176076484375],[108.347345,21.703843],[108.324354277344,21.6996462226563],[108.337345,21.693843],[108.337345,21.683843],[108.333685332031,21.6657204414063],[108.317345,21.6738430000001]]]]}},{"type":"Feature","properties":{"name":"港口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.507345,21.7138430000001],[108.495152617188,21.7104201484375],[108.503922148438,21.7016506171876],[108.523685332031,21.7057204414063],[108.527345,21.723843],[108.543280058594,21.7192873359375],[108.527948027344,21.6793971992188],[108.542899199219,21.6882888007813],[108.558914824219,21.7082888007813],[108.571790800781,21.6795436835938],[108.510692167969,21.5905031562501],[108.491829863281,21.5881569648438],[108.487345,21.6038430000001],[108.499537382813,21.6072658515625],[108.490767851563,21.6160353828126],[108.487345,21.6038430000001],[108.469534941406,21.5928688789062],[108.48031375,21.5582595039063],[108.388043242188,21.5500295234376],[108.400345488281,21.5895314765625],[108.419449492188,21.6013014960938],[108.4376184375,21.5956423164063],[108.451158476563,21.6231447578126],[108.424080839844,21.614712140625],[108.413531523438,21.6253322578125],[108.445907011719,21.6452809882813],[108.457345,21.663843],[108.469537382813,21.6672658515625],[108.460767851563,21.6760353828125],[108.457345,21.663843],[108.421756621094,21.6579958320313],[108.417345,21.6738430000001],[108.438958769531,21.6769924140625],[108.420577421875,21.6960280585938],[108.417345,21.6738430000001],[108.38170046875,21.6594875312501],[108.360770292969,21.6244924140625],[108.363167753906,21.6082717109375],[108.327345,21.593843],[108.327345,21.6038430000001],[108.33170046875,21.61948753125],[108.34298953125,21.62819846875],[108.363914824219,21.6793288398438],[108.337345,21.683843],[108.337345,21.693843],[108.347345,21.693843],[108.347345,21.703843],[108.356156035156,21.7176076484375],[108.395816679688,21.7064626289062],[108.413441191406,21.7177468085938],[108.424666777344,21.7352809882813],[108.466961699219,21.7471657539062],[108.497345,21.733843],[108.507345,21.7138430000001]],[[108.455152617188,21.5672658515625],[108.467345,21.5638430000001],[108.463922148438,21.5760353828126],[108.455152617188,21.5672658515625]]]]}},{"type":"Feature","properties":{"name":"上思县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.197345,22.0938430000001],[108.193922148438,22.1060353828125],[108.185152617188,22.0972658515625],[108.203680449219,22.0545461250001],[108.197345,22.003843],[108.19197390625,21.9992140937501],[108.182020292969,21.9876638007812],[108.162049589844,21.9892678046876],[108.043956328125,21.9051003242188],[107.89869265625,21.8742751289063],[107.88271609375,21.83847190625],[107.86197390625,21.82921409375],[107.84271609375,21.81847190625],[107.76197390625,21.8092140937501],[107.712847929688,21.7911745429688],[107.699115019531,21.7603981757813],[107.657916289063,21.747993390625],[107.625496855469,21.7505983710938],[107.557345,21.723843],[107.545164824219,21.7570119453125],[107.562923613281,21.7888430000001],[107.546185332031,21.818843],[107.563470488281,21.8498244453125],[107.561734648438,21.8714455390625],[107.541693144531,21.8887136054687],[107.552769804688,21.9085646796876],[107.551920195313,21.9191213203125],[107.56271609375,21.93847190625],[107.579637480469,21.976391828125],[107.630687285156,22.0381081367188],[107.64271609375,22.04847190625],[107.65197390625,22.05921409375],[107.663524199219,22.0691677070313],[107.661138945313,22.0988430000001],[107.662772246094,22.1191677070313],[107.633856230469,22.1440798164063],[107.627345,22.193843],[107.661329375,22.1856545234375],[107.731519804688,22.1996681953125],[107.793170195313,22.2080178046875],[107.811912871094,22.21991721875],[107.847345,22.212915265625],[107.882345,22.2198317695313],[107.901971464844,22.2159523750001],[107.921519804688,22.2496681953125],[107.943472929688,22.2581349921876],[107.940252714844,22.2744264960938],[107.973170195313,22.2980178046875],[107.984681425781,22.3278639960938],[108.023170195313,22.3380178046875],[108.051859160156,22.359926984375],[108.062777128906,22.35776878125],[108.081519804688,22.3696681953126],[108.097345,22.373843],[108.101429472656,22.3579274726563],[108.137345,22.333843],[108.128524199219,22.3128420234376],[108.173565703125,22.2835134101563],[108.221571074219,22.2942751289063],[108.238035917969,22.2502712226563],[108.265091582031,22.2315895820313],[108.277345,22.2138430000001],[108.235079375,22.1968190742188],[108.1779309375,22.15444846875],[108.198138457031,22.1209499335938],[108.215301542969,22.1077028632813],[108.197345,22.0938430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"灵山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.517345,22.643843],[109.51271609375,22.62847190625],[109.497894316406,22.6019045234376],[109.52197390625,22.58847190625],[109.54271609375,22.57921409375],[109.55197390625,22.5684719062501],[109.568951445313,22.5538430000001],[109.540970488281,22.5297341132812],[109.48047,22.4471657539063],[109.485042753906,22.3902638984375],[109.462345,22.3884401679688],[109.441033964844,22.3901540351563],[109.443324003906,22.361665265625],[109.40197390625,22.34921409375],[109.38189578125,22.3042214179688],[109.3419153125,22.2791799140625],[109.342772246094,22.2685182929688],[109.33197390625,22.25921409375],[109.318089628906,22.2430983710938],[109.301917753906,22.2291677070312],[109.303060332031,22.2149489570313],[109.261151152344,22.1886989570313],[109.2627746875,22.1684963203125],[109.241610136719,22.1590529609375],[109.27982546875,22.097827375],[109.25295046875,22.0246437812501],[109.272769804688,21.9891213203125],[109.271776152344,21.9767482734376],[109.29271609375,21.93921409375],[109.297345,21.913843],[109.28263796875,21.9080617500001],[109.270064726563,21.9099196601563],[109.25298953125,21.86819846875],[109.226737089844,21.85745628125],[109.211954375,21.8596388984376],[109.190572539063,21.8467409492188],[109.147345,21.853843],[109.143260527344,21.8897585273438],[109.123875761719,21.9195290351563],[109.101429472656,21.9279274726563],[109.091698027344,21.9539333320313],[109.071429472656,21.9679274726563],[109.060189238281,22.0117214179688],[109.03033328125,22.0050295234376],[109.013260527344,22.0297585273438],[109.000960722656,22.0382497382812],[109.017337675781,22.0910842109375],[108.997345,22.0866017890625],[108.967725859375,22.0932399726563],[108.973465605469,22.118843],[108.969796171875,22.1352077460938],[108.942791777344,22.117622296875],[108.932345,22.1199636054688],[108.922066679688,22.1176589179687],[108.907345,22.123843],[108.91197390625,22.13921409375],[108.933150664063,22.1690846992188],[108.897916289063,22.179692609375],[108.881995878906,22.1784133125001],[108.87271609375,22.2026247382813],[108.903524199219,22.2291677070312],[108.901942167969,22.2488430000001],[108.902772246094,22.2591677070313],[108.888624296875,22.2713552070313],[108.852345,22.2684401679688],[108.841180449219,22.2693386054688],[108.843148222656,22.293843],[108.841942167969,22.308843],[108.843524199219,22.3285182929687],[108.830330839844,22.3398854804688],[108.812105742188,22.3384230781251],[108.782584257813,22.3492629218751],[108.772039824219,22.3484157539063],[108.713079863281,22.3971852851563],[108.687459746094,22.4269240546876],[108.697345,22.453843],[108.713648710938,22.4580275703125],[108.706800566406,22.4885720039063],[108.74490359375,22.4983498359375],[108.773260527344,22.5179274726563],[108.783016386719,22.532055890625],[108.802623320313,22.5276589179688],[108.831429472656,22.5397585273438],[108.847345,22.543843],[108.878365507813,22.5091237617188],[108.962625761719,22.5285622382813],[108.989891386719,22.5433766914063],[109.013104277344,22.5173976875001],[109.057345,22.5200344062501],[109.097345,22.51765159375],[109.122345,22.5191408515625],[109.150223417969,22.5174782539063],[109.162940703125,22.528843],[109.142625761719,22.5469948554688],[109.152181425781,22.5491506171875],[109.167345,22.548247296875],[109.191995878906,22.5497170234375],[109.192642851563,22.538843],[109.192030058594,22.5285720039063],[109.239378691406,22.513950421875],[109.262279082031,22.4883205390625],[109.292064238281,22.5091237617188],[109.320435820313,22.5221462226563],[109.282625761719,22.5559279609376],[109.324115019531,22.6139357734376],[109.371668730469,22.6397780585938],[109.455650664063,22.6347707343751],[109.485045195313,22.6507448554688],[109.517345,22.643843]],[[109.435152617188,22.6172658515626],[109.447345,22.613843],[109.443922148438,22.6260353828125],[109.435152617188,22.6172658515626]]]]}},{"type":"Feature","properties":{"name":"浦北县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.657345,22.313843],[109.669537382813,22.3104201484376],[109.660767851563,22.3016506171876],[109.657345,22.313843]]],[[[109.657345,22.313843],[109.636156035156,22.3221730781251],[109.61298953125,22.30819846875],[109.59170046875,22.29948753125],[109.578187285156,22.281977765625],[109.583084746094,22.2488430000001],[109.581605253906,22.238843],[109.583084746094,22.228843],[109.580362578125,22.2104225898438],[109.552511015625,22.1642507148437],[109.541336699219,22.0984792304688],[109.55298953125,22.0894875312501],[109.56170046875,22.07819846875],[109.573160429688,22.0693556953126],[109.57048953125,22.0512819648438],[109.587423125,22.0082057929688],[109.580203886719,21.9593556953125],[109.59298953125,21.94948753125],[109.597345,21.933843],[109.585152617188,21.9304201484375],[109.593922148438,21.9216506171876],[109.597345,21.933843],[109.607345,21.933843],[109.607345,21.913843],[109.581883574219,21.9093044257813],[109.561156035156,21.8974343085938],[109.532735625,21.9003322578125],[109.512838164063,21.8763796210938],[109.472181425781,21.8996633125001],[109.462735625,21.8882936835938],[109.445494414063,21.8900514960938],[109.429058867188,21.9279470039062],[109.412735625,21.9082936835938],[109.392735625,21.9103322578125],[109.382735625,21.8982936835938],[109.372345,21.8993532539063],[109.362078886719,21.8983058906251],[109.332249785156,21.9095143867188],[109.311033964844,21.8973635078126],[109.297345,21.913843],[109.29271609375,21.93921409375],[109.271776152344,21.9767482734376],[109.272769804688,21.9891213203125],[109.25295046875,22.0246437812501],[109.27982546875,22.097827375],[109.241610136719,22.1590529609375],[109.2627746875,22.1684963203125],[109.261151152344,22.1886989570313],[109.303060332031,22.2149489570313],[109.301917753906,22.2291677070312],[109.318089628906,22.2430983710938],[109.33197390625,22.25921409375],[109.342772246094,22.2685182929688],[109.3419153125,22.2791799140625],[109.38189578125,22.3042214179688],[109.40197390625,22.34921409375],[109.443324003906,22.361665265625],[109.441033964844,22.3901540351563],[109.462345,22.3884401679688],[109.485042753906,22.3902638984375],[109.48047,22.4471657539063],[109.540970488281,22.5297341132812],[109.568951445313,22.5538430000001],[109.55197390625,22.5684719062501],[109.54271609375,22.57921409375],[109.52197390625,22.58847190625],[109.497894316406,22.6019045234376],[109.51271609375,22.62847190625],[109.517345,22.643843],[109.586256132813,22.6814089179688],[109.607345,22.6738430000001],[109.619820585938,22.6576784492188],[109.657345,22.6638430000001],[109.661832304688,22.6134059882813],[109.708370390625,22.5868434882813],[109.731705351563,22.5530446601563],[109.753260527344,22.5679274726563],[109.769053984375,22.5908034492188],[109.837345,22.573843],[109.840704375,22.567202375],[109.855269804688,22.5598342109376],[109.849896269531,22.5488283515625],[109.864866972656,22.5187111640625],[109.85062625,22.4905617500001],[109.830704375,22.480483625],[109.827345,22.4738430000001],[109.802938261719,22.4343654609375],[109.851781035156,22.4033010078126],[109.8537903125,22.3696022773438],[109.8420325,22.3590969062501],[109.843763457031,22.3300466132813],[109.812345,22.312973859375],[109.782625761719,22.3291237617188],[109.762064238281,22.3385622382813],[109.752625761719,22.3491237617188],[109.7420325,22.35858909375],[109.74306765625,22.37597190625],[109.692625761719,22.3485622382812],[109.664010039063,22.3354274726563],[109.657345,22.313843]]]]}},{"type":"Feature","properties":{"name":"钦北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.567345,22.043843],[108.563922148438,22.0316506171875],[108.555152617188,22.0404201484376],[108.567345,22.043843]]],[[[108.737345,22.083843],[108.733922148438,22.0716506171876],[108.725152617188,22.0804201484376],[108.737345,22.083843]]],[[[108.737345,22.083843],[108.737345,22.0938430000001],[108.747345,22.0938430000001],[108.747345,22.083843],[108.737345,22.083843]]],[[[108.197345,22.0938430000001],[108.185152617188,22.0972658515625],[108.193922148438,22.1060353828125],[108.197345,22.0938430000001]]],[[[108.747345,22.0938430000001],[108.742542753906,22.11108909375],[108.690924101563,22.1034596992188],[108.693160429688,22.0883303046876],[108.671226835938,22.0714015937501],[108.673140898438,22.0584523750001],[108.66170046875,22.03948753125],[108.647471953125,22.0047194648438],[108.599373808594,22.0337306953125],[108.605023222656,22.0719655585938],[108.567345,22.043843],[108.56298953125,22.05948753125],[108.537674589844,22.09362815625],[108.47298953125,22.0681984687501],[108.44170046875,22.05948753125],[108.43298953125,22.0349245429688],[108.458255644531,22.0154201484375],[108.41170046875,21.97948753125],[108.40298953125,21.9603615546875],[108.417345,21.923843],[108.409527617188,21.9129347968751],[108.382745390625,21.92993675],[108.331519804688,21.9196681953126],[108.290538359375,21.9072194648438],[108.261519804688,21.9280178046876],[108.253170195313,21.9396681953125],[108.241519804688,21.9480178046875],[108.233170195313,21.9696681953125],[108.203324003906,21.9811794257813],[108.197345,22.003843],[108.203680449219,22.0545461250001],[108.197345,22.0938430000001],[108.215301542969,22.1077028632813],[108.198138457031,22.1209499335938],[108.1779309375,22.15444846875],[108.235079375,22.1968190742188],[108.277345,22.2138430000001],[108.293260527344,22.2179274726562],[108.321429472656,22.2397585273438],[108.363260527344,22.2479274726563],[108.412508574219,22.2702468085937],[108.459329863281,22.2397585273438],[108.493260527344,22.2479274726563],[108.501429472656,22.2697585273438],[108.528353300781,22.2798317695313],[108.543499785156,22.328696515625],[108.538492460938,22.3510231757813],[108.551429472656,22.3697585273438],[108.56408328125,22.3784963203125],[108.54896609375,22.4017092109376],[108.561429472656,22.4197585273438],[108.567345,22.423843],[108.582586699219,22.4295705390625],[108.5948840625,22.4147658515625],[108.6322278125,22.45972190625],[108.670208769531,22.4323879218751],[108.685631132813,22.4679470039063],[108.697345,22.453843],[108.687459746094,22.4269240546876],[108.713079863281,22.3971852851563],[108.772039824219,22.3484157539063],[108.782584257813,22.3492629218751],[108.812105742188,22.3384230781251],[108.830330839844,22.3398854804688],[108.843524199219,22.3285182929687],[108.841942167969,22.308843],[108.843148222656,22.293843],[108.841180449219,22.2693386054688],[108.852345,22.2684401679688],[108.888624296875,22.2713552070313],[108.902772246094,22.2591677070313],[108.901942167969,22.2488430000001],[108.903524199219,22.2291677070312],[108.87271609375,22.2026247382813],[108.881995878906,22.1784133125001],[108.897916289063,22.179692609375],[108.933150664063,22.1690846992188],[108.91197390625,22.13921409375],[108.907345,22.123843],[108.902020292969,22.1176638007813],[108.877345,22.1196462226563],[108.844583769531,22.1170143867188],[108.819014921875,22.1312819648438],[108.79197390625,22.1192140937501],[108.747345,22.0938430000001]]]]}},{"type":"Feature","properties":{"name":"钦南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.607345,21.703843],[108.619537382813,21.7004201484376],[108.610767851563,21.6916506171876],[108.607345,21.703843]]],[[[108.531429472656,21.7397585273438],[108.527345,21.723843],[108.51406375,21.73056175],[108.503985625,21.750483625],[108.497345,21.7538430000001],[108.497345,21.763843],[108.507345,21.763843],[108.55033328125,21.7528102851563],[108.531429472656,21.7397585273438]]],[[[108.587345,21.853843],[108.583922148438,21.8416506171875],[108.575152617188,21.8504201484376],[108.587345,21.853843]]],[[[108.827345,21.703843],[108.823922148438,21.7160353828125],[108.815152617188,21.7072658515625],[108.838472929688,21.6649221015625],[108.851790800781,21.6482888007813],[108.871790800781,21.6322731757813],[108.8626575,21.6281813789063],[108.852345,21.6294655585937],[108.832345,21.626977765625],[108.784757109375,21.632895734375],[108.737374296875,21.6050417304688],[108.722899199219,21.6393971992188],[108.711678496094,21.6584841132813],[108.713587675781,21.6738430000001],[108.711102324219,21.693843],[108.716483183594,21.7371218085938],[108.690892363281,21.6949880195313],[108.65068484375,21.7271828437501],[108.637345,21.743843],[108.651385527344,21.7546804023438],[108.627769804688,21.7681984687501],[108.637345,21.743843],[108.631429472656,21.7397585273438],[108.607345,21.703843],[108.597345,21.703843],[108.597345,21.723843],[108.577345,21.723843],[108.577345,21.743843],[108.601956816406,21.7512526679688],[108.587345,21.763843],[108.583922148438,21.7760353828126],[108.575152617188,21.7672658515625],[108.587345,21.763843],[108.577345,21.743843],[108.563309355469,21.7535353828125],[108.57572390625,21.8089138007813],[108.603260527344,21.8279274726563],[108.611429472656,21.847661359375],[108.587345,21.853843],[108.57298953125,21.8894875312501],[108.55170046875,21.89819846875],[108.542345,21.9103200507813],[108.526324492188,21.8895632148438],[108.480201445313,21.8706862617188],[108.49369265625,21.8483180976563],[108.467345,21.843843],[108.457432890625,21.86378440625],[108.468143339844,21.8857131171875],[108.438668242188,21.9195388007813],[108.417345,21.923843],[108.40298953125,21.9603615546875],[108.41170046875,21.97948753125],[108.458255644531,22.0154201484375],[108.43298953125,22.0349245429688],[108.44170046875,22.05948753125],[108.47298953125,22.0681984687501],[108.537674589844,22.09362815625],[108.56298953125,22.05948753125],[108.567345,22.043843],[108.555152617188,22.0404201484376],[108.563922148438,22.0316506171875],[108.567345,22.043843],[108.605023222656,22.0719655585938],[108.599373808594,22.0337306953125],[108.647471953125,22.0047194648438],[108.66170046875,22.03948753125],[108.673140898438,22.0584523750001],[108.671226835938,22.0714015937501],[108.693160429688,22.0883303046876],[108.690924101563,22.1034596992188],[108.742542753906,22.11108909375],[108.747345,22.0938430000001],[108.737345,22.0938430000001],[108.737345,22.083843],[108.725152617188,22.0804201484376],[108.733922148438,22.0716506171876],[108.737345,22.083843],[108.747345,22.083843],[108.747345,22.0938430000001],[108.79197390625,22.1192140937501],[108.819014921875,22.1312819648438],[108.844583769531,22.1170143867188],[108.877345,22.1196462226563],[108.902020292969,22.1176638007813],[108.907345,22.123843],[108.922066679688,22.1176589179687],[108.932345,22.1199636054688],[108.942791777344,22.117622296875],[108.969796171875,22.1352077460938],[108.973465605469,22.118843],[108.967725859375,22.0932399726563],[108.997345,22.0866017890625],[109.017337675781,22.0910842109375],[109.000960722656,22.0382497382812],[109.013260527344,22.0297585273438],[109.03033328125,22.0050295234376],[109.060189238281,22.0117214179688],[109.071429472656,21.9679274726563],[109.091698027344,21.9539333320313],[109.101429472656,21.9279274726563],[109.123875761719,21.9195290351563],[109.143260527344,21.8897585273438],[109.147345,21.853843],[109.13170046875,21.85819846875],[109.100719023438,21.8811696601563],[109.08298953125,21.85819846875],[109.065479765625,21.8446852851563],[109.028736601563,21.8501149726563],[108.97263796875,21.82806175],[108.959967070313,21.8299343085938],[108.96312625,21.8085500312501],[108.947159453125,21.7679347968751],[108.887345,21.743843],[108.883531523438,21.7500295234375],[108.871158476563,21.7576564765625],[108.863531523438,21.7800295234376],[108.848043242188,21.7876564765625],[108.855511503906,21.7636745429688],[108.840706816406,21.7186598945313],[108.847345,21.703843],[108.827345,21.703843]],[[108.657345,21.773843],[108.653338652344,21.7965676093751],[108.644346953125,21.7794045234375],[108.657345,21.773843]],[[108.837345,21.803843],[108.833922148438,21.8160353828126],[108.825152617188,21.8072658515626],[108.840767851563,21.7916506171875],[108.849537382813,21.8004201484375],[108.837345,21.803843]],[[108.903922148438,21.7960353828125],[108.895152617188,21.7872658515625],[108.907345,21.783843],[108.903922148438,21.7960353828125]],[[108.687345,21.803843],[108.683922148438,21.8160353828126],[108.675152617188,21.8072658515626],[108.687345,21.803843]],[[108.797345,21.8338430000001],[108.793922148438,21.8460353828126],[108.785152617188,21.8372658515625],[108.797345,21.8338430000001]],[[108.617345,21.8738430000001],[108.629537382813,21.8772658515625],[108.620767851563,21.8860353828126],[108.594620390625,21.8698366523438],[108.611783476563,21.860844953125],[108.617345,21.8738430000001]],[[108.597345,21.883843],[108.593922148438,21.8960353828125],[108.585152617188,21.8872658515626],[108.597345,21.883843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"港北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.841790800781,23.1282888007813],[109.87107546875,23.10483909375],[109.857345,23.093843],[109.8355871875,23.1029811835938],[109.803260527344,23.0779274726563],[109.766092558594,23.0697585273438],[109.743260527344,23.1097585273438],[109.727069121094,23.1179274726563],[109.713016386719,23.0975710273438],[109.667037382813,23.1078786445313],[109.653260527344,23.0879274726563],[109.636976347656,23.0766847968751],[109.595697050781,23.0859377265625],[109.579176054688,23.0620119453125],[109.567345,23.0538430000001],[109.532469511719,23.0380959296875],[109.489527617188,23.0503591132813],[109.472203398438,23.0482033515626],[109.452899199219,23.0522731757813],[109.472899199219,23.0682888007813],[109.48297,23.1488161445313],[109.481378203125,23.1616091132813],[109.439298125,23.1793410468751],[109.443917265625,23.2164846015625],[109.502899199219,23.2382888007813],[109.511790800781,23.2693971992188],[109.537345,23.303843],[109.561329375,23.3204030585937],[109.571429472656,23.3597585273438],[109.603260527344,23.3679274726563],[109.643663359375,23.4279274726563],[109.673260527344,23.4197585273438],[109.697345,23.403843],[109.720648222656,23.3971804023438],[109.751790800781,23.3582888007813],[109.778912382813,23.3468630195313],[109.801790800781,23.3182888007813],[109.821241484375,23.3027150703126],[109.822987089844,23.2886818671875],[109.809290800781,23.2283888984375],[109.814832792969,23.183843],[109.811441679688,23.156577375],[109.832899199219,23.1393971992188],[109.841790800781,23.1282888007813]]]]}},{"type":"Feature","properties":{"name":"港南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.861910429688,22.8865407539063],[109.867345,22.873843],[109.844346953125,22.8778957343751],[109.861910429688,22.8865407539063]]],[[[109.743260527344,23.1097585273438],[109.766092558594,23.0697585273438],[109.803260527344,23.0779274726563],[109.8355871875,23.1029811835938],[109.857345,23.093843],[109.874823027344,23.0673928046876],[109.883260527344,23.0297585273438],[109.887345,23.023843],[109.88197390625,23.01921409375],[109.87271609375,23.00847190625],[109.858519316406,22.9962404609375],[109.792733183594,22.9764333320312],[109.820833769531,22.95222190625],[109.84197390625,22.9184719062501],[109.853284941406,22.9087258125001],[109.827474394531,22.8972072578125],[109.792669707031,22.8568093085938],[109.762020292969,22.8592702460938],[109.751302519531,22.8468288398438],[109.756409941406,22.7832643867188],[109.783519316406,22.7599074531251],[109.770719023438,22.7369655585938],[109.742345,22.7392458320313],[109.724561796875,22.7378151679688],[109.71271609375,22.69847190625],[109.671229277344,22.6799587226563],[109.657345,22.6638430000001],[109.619820585938,22.6576784492188],[109.607345,22.6738430000001],[109.621422148438,22.6855373359375],[109.581795683594,22.718452375],[109.582882109375,22.7291091132813],[109.569136992188,22.7656838203126],[109.511883574219,22.7783815742188],[109.502806425781,22.8017678046875],[109.523072539063,22.8186013007813],[109.517345,22.833843],[109.561287871094,22.8690309882812],[109.571790800781,22.9293971992188],[109.585775175781,22.9382888007813],[109.604622832031,22.9147560859376],[109.651790800781,22.9314357734375],[109.585819121094,22.959233625],[109.604476347656,22.9909743476563],[109.570213652344,22.9867116523438],[109.573023710938,23.0092971015626],[109.561102324219,23.018843],[109.576163359375,23.030903546875],[109.567345,23.0538430000001],[109.579176054688,23.0620119453125],[109.595697050781,23.0859377265625],[109.636976347656,23.0766847968751],[109.653260527344,23.0879274726563],[109.667037382813,23.1078786445313],[109.713016386719,23.0975710273438],[109.727069121094,23.1179274726563],[109.743260527344,23.1097585273438]]]]}},{"type":"Feature","properties":{"name":"桂平市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.227345,22.873843],[110.227345,22.8638430000001],[110.217345,22.8638430000001],[110.217345,22.873843],[110.227345,22.873843]]],[[[110.227345,22.873843],[110.220074492188,22.8973903632813],[110.165589628906,22.9100685859376],[110.1117590625,22.8956520820313],[110.076009550781,22.9735402656251],[110.061585722656,22.9573976875],[110.019813261719,22.959887921875],[109.96787234375,23.0180226875001],[109.887345,23.023843],[109.883260527344,23.0297585273438],[109.874823027344,23.0673928046876],[109.857345,23.093843],[109.87107546875,23.10483909375],[109.841790800781,23.1282888007813],[109.832899199219,23.1393971992188],[109.811441679688,23.156577375],[109.814832792969,23.183843],[109.809290800781,23.2283888984375],[109.822987089844,23.2886818671875],[109.821241484375,23.3027150703126],[109.801790800781,23.3182888007813],[109.778912382813,23.3468630195313],[109.751790800781,23.3582888007813],[109.720648222656,23.3971804023438],[109.697345,23.403843],[109.701429472656,23.4097585273438],[109.723260527344,23.4179274726563],[109.731429472656,23.4597585273438],[109.773260527344,23.4679274726563],[109.781429472656,23.4797585273438],[109.836461210938,23.4879274726563],[109.851788359375,23.446968],[109.878084746094,23.4640920234375],[109.898182402344,23.5178054023438],[109.889371367188,23.5571047187501],[109.913260527344,23.5879274726562],[109.924801054688,23.6328932929688],[109.918870878906,23.659341046875],[109.927345,23.6938430000001],[109.955223417969,23.7009987617188],[109.951104765625,23.71937034375],[109.983260527344,23.7579274726563],[109.991429472656,23.7797585273438],[110.039176054688,23.7920119453125],[110.067345,23.803843],[110.079478789063,23.7614064765625],[110.117064238281,23.73931175],[110.163031035156,23.7293679023438],[110.161678496094,23.7184841132813],[110.174039335938,23.69745628125],[110.170548125,23.6693971992188],[110.202899199219,23.6882888007813],[110.215538359375,23.7182888007813],[110.237703886719,23.7069338203125],[110.229405546875,23.6402028632813],[110.252376738281,23.6218068671876],[110.261820097656,23.5781569648437],[110.287843046875,23.5813918281251],[110.301790800781,23.5482888007813],[110.322899199219,23.5393971992188],[110.351790800781,23.4682888007813],[110.371790800781,23.4522731757813],[110.362899199219,23.4282888007813],[110.339549589844,23.3963259101563],[110.343016386719,23.3684499335938],[110.316673613281,23.332387921875],[110.341790800781,23.3122731757813],[110.322899199219,23.2882888007813],[110.311790800781,23.2793971992188],[110.302899199219,23.2482888007813],[110.291666289063,23.2392971015626],[110.295064726563,23.2119753242188],[110.262899199219,23.1572536445312],[110.291519804688,23.1284035468751],[110.351597929688,23.1030886054688],[110.331790800781,23.0693971992188],[110.327345,23.0538430000001],[110.312547636719,23.0171022773438],[110.296263457031,23.03819846875],[110.290662871094,23.0152272773437],[110.295667753906,22.9813600898438],[110.251246367188,22.928950421875],[110.263140898438,22.909233625],[110.26048953125,22.8912819648438],[110.267345,22.873843],[110.227345,22.873843]]]]}},{"type":"Feature","properties":{"name":"平南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.442625761719,23.8591237617188],[110.45209109375,23.8485305000001],[110.472345,23.8497365546876],[110.495574980469,23.7991237617188],[110.532625761719,23.8085622382813],[110.550496855469,23.8285622382813],[110.578450957031,23.7837673164062],[110.552760039063,23.7608107734375],[110.549635039063,23.708384015625],[110.572064238281,23.7097194648438],[110.562625761719,23.6785622382813],[110.533465605469,23.6651784492188],[110.583343535156,23.6206130195313],[110.5820325,23.59858909375],[110.592625761719,23.5891237617188],[110.602064238281,23.5685622382812],[110.6126575,23.5490676093751],[110.612039824219,23.5387038398438],[110.624014921875,23.4713088203125],[110.612625761719,23.4585622382813],[110.574913359375,23.4469167304688],[110.572047148438,23.398843],[110.57322390625,23.3790969062501],[110.561749296875,23.368843],[110.581798125,23.3509304023438],[110.592078886719,23.3285280585937],[110.61158328125,23.3296926093751],[110.632064238281,23.3185622382813],[110.652659941406,23.3091091132813],[110.652047148438,23.298843],[110.653709746094,23.2709645820313],[110.620345488281,23.2336232734375],[110.585516386719,23.2146974921875],[110.567235136719,23.2351589179688],[110.539559355469,23.1955397773438],[110.554520292969,23.153843],[110.547345,23.133843],[110.50170046875,23.09948753125],[110.487916289063,23.0658034492188],[110.459205351563,23.0700466132813],[110.415286894531,23.0435524726563],[110.400360136719,23.0628908515625],[110.358802519531,23.0465529609375],[110.327345,23.0538430000001],[110.331790800781,23.0693971992188],[110.351597929688,23.1030886054688],[110.291519804688,23.1284035468751],[110.262899199219,23.1572536445312],[110.295064726563,23.2119753242188],[110.291666289063,23.2392971015626],[110.302899199219,23.2482888007813],[110.311790800781,23.2793971992188],[110.322899199219,23.2882888007813],[110.341790800781,23.3122731757813],[110.316673613281,23.332387921875],[110.343016386719,23.3684499335938],[110.339549589844,23.3963259101563],[110.362899199219,23.4282888007813],[110.371790800781,23.4522731757813],[110.351790800781,23.4682888007813],[110.322899199219,23.5393971992188],[110.301790800781,23.5482888007813],[110.287843046875,23.5813918281251],[110.261820097656,23.5781569648437],[110.252376738281,23.6218068671876],[110.229405546875,23.6402028632813],[110.237703886719,23.7069338203125],[110.215538359375,23.7182888007813],[110.202899199219,23.6882888007813],[110.170548125,23.6693971992188],[110.174039335938,23.69745628125],[110.161678496094,23.7184841132813],[110.163031035156,23.7293679023438],[110.117064238281,23.73931175],[110.079478789063,23.7614064765625],[110.067345,23.803843],[110.093482695313,23.8377053046876],[110.13298953125,23.86819846875],[110.142000761719,23.8798757148438],[110.191358671875,23.8604714179688],[110.202974882813,23.9155275703125],[110.23170046875,23.8981984687501],[110.26298953125,23.88948753125],[110.281805449219,23.8580251289063],[110.294407988281,23.8598854804687],[110.291549101563,23.8792336250001],[110.307174101563,23.9051369453125],[110.289810820313,23.9646804023438],[110.31470828125,24.0280104804688],[110.36298953125,24.03819846875],[110.367345,24.0438430000001],[110.377345,24.0438430000001],[110.397345,24.0438430000001],[110.397345,24.013843],[110.3915246875,23.9976198554688],[110.393709746094,23.9609645820313],[110.382625761719,23.9485622382812],[110.3520325,23.9291042304688],[110.353238554688,23.908843],[110.352030058594,23.8885720039063],[110.382625761719,23.8791237617188],[110.412064238281,23.8685622382813],[110.442625761719,23.8591237617188]]]]}},{"type":"Feature","properties":{"name":"覃塘区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.371868925781,23.3877883125001],[109.430360136719,23.3647951484376],[109.44170046875,23.3794875312501],[109.477345,23.383843],[109.481851835938,23.36628440625],[109.505513945313,23.3320119453125],[109.529176054688,23.3156740546875],[109.537345,23.303843],[109.511790800781,23.2693971992188],[109.502899199219,23.2382888007813],[109.443917265625,23.2164846015625],[109.439298125,23.1793410468751],[109.481378203125,23.1616091132813],[109.48297,23.1488161445313],[109.472899199219,23.0682888007813],[109.452899199219,23.0522731757813],[109.472203398438,23.0482033515626],[109.489527617188,23.0503591132813],[109.532469511719,23.0380959296875],[109.567345,23.0538430000001],[109.576163359375,23.030903546875],[109.561102324219,23.018843],[109.573023710938,23.0092971015626],[109.570213652344,22.9867116523438],[109.604476347656,22.9909743476563],[109.585819121094,22.959233625],[109.651790800781,22.9314357734375],[109.604622832031,22.9147560859376],[109.585775175781,22.9382888007813],[109.571790800781,22.9293971992188],[109.561287871094,22.8690309882812],[109.517345,22.833843],[109.4837121875,22.8209157539063],[109.446632109375,22.86722190625],[109.472899199219,22.8782888007813],[109.481790800781,22.8924123359376],[109.411790800781,22.9182888007813],[109.402899199219,22.9293971992188],[109.381790800781,22.9382888007813],[109.332899199219,22.9993971992188],[109.309857207031,23.0178469062501],[109.322899199219,23.0282888007813],[109.345340605469,23.065239484375],[109.329979277344,23.091372296875],[109.251790800781,23.1082888007813],[109.247345,23.133843],[109.239022246094,23.154546125],[109.250933867188,23.2237331367188],[109.231385527344,23.2382741523438],[109.233277617188,23.2492580390625],[109.221412382813,23.2684279609375],[109.225220976563,23.2905471015626],[109.207345,23.303843],[109.213111601563,23.3377858710938],[109.266324492188,23.3595632148438],[109.282323027344,23.3802907539063],[109.333453398438,23.41819846875],[109.36298953125,23.40948753125],[109.371868925781,23.3877883125001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"北流市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.406224394531,22.9237795234375],[110.471705351563,22.8652712226563],[110.442625761719,22.8117580390625],[110.452469511719,22.777134015625],[110.472625761719,22.7591237617188],[110.491500273438,22.7379982734375],[110.521929960938,22.7108107734375],[110.523194609375,22.68960471875],[110.505921660156,22.6578200507812],[110.539034453125,22.6207595039062],[110.585655546875,22.5869264960937],[110.602064238281,22.5685622382813],[110.633343535156,22.5406130195313],[110.629132109375,22.4699294257812],[110.652503691406,22.4685353828125],[110.677345,22.4738430000001],[110.685513945313,22.4620119453126],[110.703260527344,22.4497585273438],[110.711429472656,22.3679274726562],[110.738487578125,22.3578029609376],[110.763260527344,22.3197585273438],[110.771429472656,22.2979274726563],[110.783260527344,22.2897585273438],[110.787345,22.2838430000001],[110.752081328125,22.2780495429688],[110.72220828125,22.2897927070313],[110.694451933594,22.2730495429688],[110.68298953125,22.2581984687501],[110.65170046875,22.2394875312501],[110.64298953125,22.2149245429688],[110.66298953125,22.1994875312501],[110.677345,22.1738430000001],[110.65197390625,22.16921409375],[110.631363554688,22.1577175117188],[110.609742460938,22.1594533515625],[110.59271609375,22.17921409375],[110.557178984375,22.1984719062501],[110.52271609375,22.1584719062501],[110.499947539063,22.13921409375],[110.48271609375,22.15921409375],[110.425736113281,22.208305890625],[110.407345,22.2138430000001],[110.403531523438,22.2200295234375],[110.379810820313,22.2281130195313],[110.393531523438,22.2476564765625],[110.405653105469,22.2832228828125],[110.400535917969,22.2996486640625],[110.413531523438,22.3076564765626],[110.431158476563,22.3382350898438],[110.391158476563,22.3476564765626],[110.373531523438,22.3600295234375],[110.347496367188,22.36890159375],[110.366185332031,22.4257180000001],[110.331158476563,22.4376564765625],[110.3204309375,22.4691335273438],[110.346317167969,22.5010915351563],[110.338199492188,22.5271559882813],[110.309534941406,22.5448171210937],[110.31404421875,22.5592995429688],[110.297994414063,22.5821608710938],[110.282345,22.5772853828125],[110.259283476563,22.584468],[110.247345,22.603843],[110.255838652344,22.6335475898438],[110.282345,22.61796409375],[110.305140410156,22.6313649726563],[110.301678496094,22.6592018867187],[110.31334109375,22.6790431953125],[110.301790800781,22.6882888007813],[110.286143828125,22.7078322578125],[110.252144804688,22.68784690625],[110.238450957031,22.7049489570313],[110.217906523438,22.7214015937501],[110.192345,22.7182204414063],[110.181986113281,22.7195095039063],[110.153997832031,22.7030568671875],[110.138201933594,22.7405397773438],[110.143587675781,22.7838430000001],[110.141702910156,22.7990041328125],[110.147345,22.8238430000001],[110.191170683594,22.8565529609375],[110.217345,22.8638430000001],[110.227345,22.8638430000001],[110.227345,22.873843],[110.267345,22.873843],[110.283568144531,22.8796633125001],[110.331080351563,22.87683128125],[110.342064238281,22.8891237617188],[110.383970976563,22.8988747382813],[110.406224394531,22.9237795234375]]]]}},{"type":"Feature","properties":{"name":"玉州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.138201933594,22.7405397773438],[110.153997832031,22.7030568671875],[110.181986113281,22.7195095039063],[110.192345,22.7182204414063],[110.217906523438,22.7214015937501],[110.238450957031,22.7049489570313],[110.252144804688,22.68784690625],[110.286143828125,22.7078322578125],[110.301790800781,22.6882888007813],[110.31334109375,22.6790431953125],[110.301678496094,22.6592018867187],[110.305140410156,22.6313649726563],[110.282345,22.61796409375],[110.255838652344,22.6335475898438],[110.247345,22.603843],[110.24197390625,22.59921409375],[110.232669707031,22.5884157539063],[110.193963652344,22.5915261054688],[110.18056765625,22.5759743476562],[110.182747832031,22.5488430000001],[110.181785917969,22.536880109375],[110.152315703125,22.5392482734376],[110.12271609375,22.5364455390625],[110.14271609375,22.51921409375],[110.16197390625,22.4964455390625],[110.14197390625,22.47921409375],[110.127454863281,22.4623635078125],[110.147088652344,22.4454470039063],[110.17197390625,22.4036769843751],[110.157345,22.3638430000001],[110.12170046875,22.3494875312501],[110.104136992188,22.3267311835938],[110.082735625,22.3396388984375],[110.071954375,22.3380471015626],[110.052735625,22.3496388984376],[110.042345,22.3481032539063],[110.023924589844,22.350825421875],[109.99298953125,22.36948753125],[109.93170046875,22.3781984687501],[109.919871855469,22.40710471875],[109.923990507813,22.4349831367188],[109.89170046875,22.4481984687501],[109.882857695313,22.4596584296875],[109.855682402344,22.4556423164063],[109.827345,22.4738430000001],[109.830704375,22.480483625],[109.85062625,22.4905617500001],[109.864866972656,22.5187111640625],[109.849896269531,22.5488283515625],[109.855269804688,22.5598342109376],[109.840704375,22.567202375],[109.837345,22.573843],[109.83298953125,22.58948753125],[109.81298953125,22.6049245429688],[109.826324492188,22.6272145820312],[109.852345,22.631059796875],[109.887345,22.6258864570313],[109.912345,22.6295827460938],[109.944813261719,22.6247829414063],[109.993172636719,22.6382497382813],[109.991529570313,22.6493556953125],[110.034066191406,22.6821877265625],[110.02791140625,22.723843],[110.06298953125,22.73819846875],[110.07170046875,22.74948753125],[110.10298953125,22.7581984687501],[110.116451445313,22.8065480781251],[110.147345,22.8238430000001],[110.141702910156,22.7990041328125],[110.143587675781,22.7838430000001],[110.138201933594,22.7405397773438]]]]}},{"type":"Feature","properties":{"name":"博白县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.597345,21.933843],[109.593922148438,21.9216506171876],[109.585152617188,21.9304201484375],[109.597345,21.933843]]],[[[110.097345,22.233843],[110.092345,22.2466506171875],[110.087345,22.233843],[110.075152617188,22.2304201484376],[110.083922148438,22.2216506171875],[110.087345,22.233843],[110.11298953125,22.1994875312501],[110.12670046875,22.1502468085938],[110.157347441406,22.1377028632812],[110.151605253906,22.0988430000001],[110.153084746094,22.088843],[110.151522246094,22.0782717109376],[110.185384550781,22.0644142890625],[110.180867949219,22.033843],[110.183822050781,22.013843],[110.18095828125,21.9944509101563],[110.197554960938,21.9538967109375],[110.28298953125,21.91948753125],[110.287345,21.913843],[110.267432890625,21.8898708320313],[110.222816191406,21.8853224921875],[110.17255984375,21.8993752265625],[110.162345,21.8983327460938],[110.152345,21.8993532539063],[110.137345,21.8978249335938],[110.120394316406,21.8995510078125],[110.102735625,21.8782936835938],[110.092022734375,21.8793849921875],[110.064151640625,21.863423078125],[109.991126738281,21.8796804023438],[109.941793242188,21.8492507148438],[109.943682890625,21.8307106757813],[109.931807890625,21.7991091132813],[109.933873320313,21.778843],[109.931326933594,21.7538430000001],[109.932894316406,21.738452375],[109.921883574219,21.7293044257813],[109.912806425781,21.7083815742188],[109.901803007813,21.6891652656251],[109.904788847656,21.6598635078125],[109.786724882813,21.6372145820312],[109.769058867188,21.6779470039063],[109.757345,21.663843],[109.74216921875,21.6576052070313],[109.720404082031,21.6714235664062],[109.702345,21.6678542304688],[109.683975859375,21.6714846015626],[109.693333769531,21.7188430000001],[109.686390410156,21.7539772773438],[109.704327421875,21.8438137031251],[109.692847929688,21.9019069648438],[109.67216921875,21.8978200507813],[109.63252078125,21.9098659492188],[109.612965117188,21.906001203125],[109.607345,21.913843],[109.607345,21.933843],[109.597345,21.933843],[109.59298953125,21.94948753125],[109.580203886719,21.9593556953125],[109.587423125,22.0082057929688],[109.57048953125,22.0512819648438],[109.573160429688,22.0693556953126],[109.56170046875,22.07819846875],[109.55298953125,22.0894875312501],[109.541336699219,22.0984792304688],[109.552511015625,22.1642507148437],[109.580362578125,22.2104225898438],[109.583084746094,22.228843],[109.581605253906,22.238843],[109.583084746094,22.2488430000001],[109.578187285156,22.281977765625],[109.59170046875,22.29948753125],[109.61298953125,22.30819846875],[109.636156035156,22.3221730781251],[109.657345,22.313843],[109.660767851563,22.3016506171876],[109.669537382813,22.3104201484376],[109.657345,22.313843],[109.664010039063,22.3354274726563],[109.692625761719,22.3485622382812],[109.74306765625,22.37597190625],[109.7420325,22.35858909375],[109.752625761719,22.3491237617188],[109.762064238281,22.3385622382813],[109.782625761719,22.3291237617188],[109.812345,22.312973859375],[109.843763457031,22.3300466132813],[109.8420325,22.3590969062501],[109.8537903125,22.3696022773438],[109.851781035156,22.4033010078126],[109.802938261719,22.4343654609375],[109.827345,22.4738430000001],[109.855682402344,22.4556423164063],[109.882857695313,22.4596584296875],[109.89170046875,22.4481984687501],[109.923990507813,22.4349831367188],[109.919871855469,22.40710471875],[109.93170046875,22.3781984687501],[109.99298953125,22.36948753125],[110.023924589844,22.350825421875],[110.042345,22.3481032539063],[110.052735625,22.3496388984376],[110.071954375,22.3380471015626],[110.082735625,22.3396388984375],[110.104136992188,22.3267311835938],[110.12170046875,22.3494875312501],[110.157345,22.3638430000001],[110.16232546875,22.3377590156251],[110.196483183594,22.3061086250001],[110.097345,22.233843]]]]}},{"type":"Feature","properties":{"name":"陆川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.087345,22.233843],[110.083922148438,22.2216506171875],[110.075152617188,22.2304201484376],[110.087345,22.233843]]],[[[110.097345,22.233843],[110.087345,22.233843],[110.092345,22.2466506171875],[110.097345,22.233843]]],[[[110.097345,22.233843],[110.196483183594,22.3061086250001],[110.16232546875,22.3377590156251],[110.157345,22.3638430000001],[110.17197390625,22.4036769843751],[110.147088652344,22.4454470039063],[110.127454863281,22.4623635078125],[110.14197390625,22.47921409375],[110.16197390625,22.4964455390625],[110.14271609375,22.51921409375],[110.12271609375,22.5364455390625],[110.152315703125,22.5392482734376],[110.181785917969,22.536880109375],[110.182747832031,22.5488430000001],[110.18056765625,22.5759743476562],[110.193963652344,22.5915261054688],[110.232669707031,22.5884157539063],[110.24197390625,22.59921409375],[110.247345,22.603843],[110.259283476563,22.584468],[110.282345,22.5772853828125],[110.297994414063,22.5821608710938],[110.31404421875,22.5592995429688],[110.309534941406,22.5448171210937],[110.338199492188,22.5271559882813],[110.346317167969,22.5010915351563],[110.3204309375,22.4691335273438],[110.331158476563,22.4376564765625],[110.366185332031,22.4257180000001],[110.347496367188,22.36890159375],[110.373531523438,22.3600295234375],[110.391158476563,22.3476564765626],[110.431158476563,22.3382350898438],[110.413531523438,22.3076564765626],[110.400535917969,22.2996486640625],[110.405653105469,22.2832228828125],[110.393531523438,22.2476564765625],[110.379810820313,22.2281130195313],[110.403531523438,22.2200295234375],[110.407345,22.2138430000001],[110.401873808594,22.190610578125],[110.369388457031,22.1642995429688],[110.348834257813,22.1976564765625],[110.323531523438,22.1725246406251],[110.331158476563,22.1476564765626],[110.360382109375,22.1296486640626],[110.349229765625,22.0938430000001],[110.353902617188,22.078843],[110.344556914063,22.048843],[110.353902617188,22.0188430000001],[110.350787382813,22.008843],[110.355460234375,21.993843],[110.350526152344,21.9780007148438],[110.383531523438,21.9600295234376],[110.387345,21.953843],[110.364100371094,21.9411013007813],[110.383804960938,21.9303029609376],[110.390885039063,21.9173830390626],[110.397345,21.913843],[110.387345,21.893843],[110.319888945313,21.8963869453125],[110.304801054688,21.9112990546875],[110.287345,21.913843],[110.28298953125,21.91948753125],[110.197554960938,21.9538967109375],[110.18095828125,21.9944509101563],[110.183822050781,22.013843],[110.180867949219,22.033843],[110.185384550781,22.0644142890625],[110.151522246094,22.0782717109376],[110.153084746094,22.088843],[110.151605253906,22.0988430000001],[110.157347441406,22.1377028632812],[110.12670046875,22.1502468085938],[110.11298953125,22.1994875312501],[110.097345,22.233843]]]]}},{"type":"Feature","properties":{"name":"容县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.547345,23.133843],[110.554500761719,23.1059645820313],[110.572791777344,23.110063703125],[110.600943632813,23.091733625],[110.614486113281,23.1279274726563],[110.656097441406,23.1161135078125],[110.673260527344,23.0897585273438],[110.681429472656,23.0679274726563],[110.703260527344,23.0597585273438],[110.714088164063,23.0440749335937],[110.737345,23.0538430000001],[110.743023710938,23.0492971015626],[110.741678496094,23.0384841132813],[110.753011503906,23.0192018867188],[110.748597441406,22.9837233710938],[110.76341921875,22.9585085273438],[110.723311796875,22.9416091132813],[110.721722441406,22.9288430000001],[110.722967558594,22.918843],[110.720948515625,22.9026076484375],[110.756297636719,22.84440940625],[110.790982695313,22.8647975898438],[110.793880644531,22.8414968085938],[110.769058867188,22.7604787421875],[110.784154082031,22.7483888984376],[110.78080203125,22.7214333320313],[110.847669707031,22.7023122382813],[110.879271269531,22.6485549140625],[110.882899199219,22.6193971992188],[110.887345,22.613843],[110.896846953125,22.5907204414063],[110.877345,22.5868679023438],[110.862279082031,22.5898439765625],[110.811519804688,22.5796681953125],[110.790089140625,22.5660622382813],[110.767244902344,22.5979347968751],[110.751300078125,22.5591310859376],[110.753333769531,22.5488430000001],[110.751356230469,22.538843],[110.75341921875,22.5284108710938],[110.738258085938,22.5045290351562],[110.745008574219,22.470356671875],[110.709032011719,22.463247296875],[110.682034941406,22.4803884101563],[110.677345,22.4738430000001],[110.652503691406,22.4685353828125],[110.629132109375,22.4699294257812],[110.633343535156,22.5406130195313],[110.602064238281,22.5685622382813],[110.585655546875,22.5869264960937],[110.539034453125,22.6207595039062],[110.505921660156,22.6578200507812],[110.523194609375,22.68960471875],[110.521929960938,22.7108107734375],[110.491500273438,22.7379982734375],[110.472625761719,22.7591237617188],[110.452469511719,22.777134015625],[110.442625761719,22.8117580390625],[110.471705351563,22.8652712226563],[110.406224394531,22.9237795234375],[110.383970976563,22.8988747382813],[110.342064238281,22.8891237617188],[110.331080351563,22.87683128125],[110.283568144531,22.8796633125001],[110.267345,22.873843],[110.26048953125,22.8912819648438],[110.263140898438,22.909233625],[110.251246367188,22.928950421875],[110.295667753906,22.9813600898438],[110.290662871094,23.0152272773437],[110.296263457031,23.03819846875],[110.312547636719,23.0171022773438],[110.327345,23.0538430000001],[110.358802519531,23.0465529609375],[110.400360136719,23.0628908515625],[110.415286894531,23.0435524726563],[110.459205351563,23.0700466132813],[110.487916289063,23.0658034492188],[110.50170046875,23.09948753125],[110.547345,23.133843]]]]}},{"type":"Feature","properties":{"name":"兴业县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.019813261719,22.959887921875],[110.061585722656,22.9573976875],[110.076009550781,22.9735402656251],[110.1117590625,22.8956520820313],[110.165589628906,22.9100685859376],[110.220074492188,22.8973903632813],[110.227345,22.873843],[110.217345,22.873843],[110.217345,22.8638430000001],[110.191170683594,22.8565529609375],[110.147345,22.8238430000001],[110.116451445313,22.8065480781251],[110.10298953125,22.7581984687501],[110.07170046875,22.74948753125],[110.06298953125,22.73819846875],[110.02791140625,22.723843],[110.034066191406,22.6821877265625],[109.991529570313,22.6493556953125],[109.993172636719,22.6382497382813],[109.944813261719,22.6247829414063],[109.912345,22.6295827460938],[109.887345,22.6258864570313],[109.852345,22.631059796875],[109.826324492188,22.6272145820312],[109.81298953125,22.6049245429688],[109.83298953125,22.58948753125],[109.837345,22.573843],[109.769053984375,22.5908034492188],[109.753260527344,22.5679274726563],[109.731705351563,22.5530446601563],[109.708370390625,22.5868434882813],[109.661832304688,22.6134059882813],[109.657345,22.6638430000001],[109.671229277344,22.6799587226563],[109.71271609375,22.69847190625],[109.724561796875,22.7378151679688],[109.742345,22.7392458320313],[109.770719023438,22.7369655585938],[109.783519316406,22.7599074531251],[109.756409941406,22.7832643867188],[109.751302519531,22.8468288398438],[109.762020292969,22.8592702460938],[109.792669707031,22.8568093085938],[109.827474394531,22.8972072578125],[109.853284941406,22.9087258125001],[109.84197390625,22.9184719062501],[109.820833769531,22.95222190625],[109.792733183594,22.9764333320312],[109.858519316406,22.9962404609375],[109.87271609375,23.00847190625],[109.88197390625,23.01921409375],[109.887345,23.023843],[109.96787234375,23.0180226875001],[110.019813261719,22.959887921875]],[[109.844346953125,22.8778957343751],[109.867345,22.873843],[109.861910429688,22.8865407539063],[109.844346953125,22.8778957343751]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"德保县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.157345,23.493843],[106.145152617188,23.4972658515625],[106.153922148438,23.5060353828125],[106.157345,23.493843]]],[[[106.403922148438,23.6560353828125],[106.407345,23.643843],[106.395152617188,23.6472658515626],[106.403922148438,23.6560353828125]]],[[[106.157345,23.493843],[106.17572390625,23.498559796875],[106.187345,23.5438430000001],[106.18271609375,23.56921409375],[106.16271609375,23.5864455390625],[106.176566191406,23.6205129218751],[106.221998320313,23.6168630195312],[106.241766386719,23.6611623359375],[106.349051542969,23.6697829414063],[106.387345,23.6638430000001],[106.392586699219,23.6286989570313],[106.381881132813,23.6187819648438],[106.402550078125,23.6090261054687],[106.400965605469,23.569028546875],[106.4542590625,23.5521559882813],[106.451773710938,23.4894606757813],[106.472508574219,23.488637921875],[106.51033328125,23.5086525703126],[106.592535429688,23.4990334296876],[106.639642363281,23.4825221992187],[106.661412382813,23.5286525703125],[106.682535429688,23.5190334296875],[106.7239075,23.4905641914063],[106.777469511719,23.488442609375],[106.907345,23.493843],[106.898944121094,23.45964378125],[106.917135039063,23.4470827460937],[106.924586210938,23.413843],[106.921073027344,23.3981716132813],[106.941698027344,23.3839333320313],[106.951429472656,23.3579274726563],[106.983260527344,23.3397585273438],[106.991429472656,23.3179274726563],[106.997345,23.3138430000001],[106.99298953125,23.30819846875],[106.930318632813,23.2975539375001],[106.933160429688,23.2783303046875],[106.92170046875,23.2694875312501],[106.905035429688,23.2287697578126],[106.865345488281,23.2177175117188],[106.830767851563,23.1968605781251],[106.811954375,23.1996388984375],[106.79298953125,23.18819846875],[106.770611601563,23.1790407539063],[106.787635527344,23.1659011054688],[106.759761992188,23.1196950507813],[106.773519316406,23.109077375],[106.760233183594,23.0870510078125],[106.777345,23.073843],[106.772625761719,23.0685622382813],[106.752064238281,23.0591237617188],[106.694798613281,23.0191237617188],[106.692034941406,23.028657453125],[106.6926965625,23.0397585273438],[106.662449980469,23.0379543281251],[106.641058378906,23.0715920234375],[106.619032011719,23.0912697578125],[106.601898222656,23.13901878125],[106.642064238281,23.1645632148438],[106.622625761719,23.1791237617188],[106.571441679688,23.188676984375],[106.573150664063,23.2173464179687],[106.562625761719,23.2291237617188],[106.552064238281,23.2385622382813],[106.538189726563,23.2981960273438],[106.51259890625,23.29972190625],[106.485260039063,23.2691237617188],[106.4115246875,23.2900881171875],[106.412642851563,23.308843],[106.412047148438,23.3188430000001],[106.413970976563,23.3511183906251],[106.372064238281,23.3885622382813],[106.362410917969,23.3993654609375],[106.327345,23.3748732734375],[106.291009550781,23.4002541328125],[106.262078886719,23.3985280585938],[106.252625761719,23.4191237617188],[106.163516875,23.4466408515626],[106.151961699219,23.478843],[106.157345,23.493843]]]]}},{"type":"Feature","properties":{"name":"靖西县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.157345,23.493843],[106.153922148438,23.5060353828125],[106.145152617188,23.4972658515625],[106.151961699219,23.478843],[106.163516875,23.4466408515626],[106.252625761719,23.4191237617188],[106.262078886719,23.3985280585938],[106.291009550781,23.4002541328125],[106.327345,23.3748732734375],[106.362410917969,23.3993654609375],[106.372064238281,23.3885622382813],[106.413970976563,23.3511183906251],[106.412047148438,23.3188430000001],[106.412642851563,23.308843],[106.4115246875,23.2900881171875],[106.485260039063,23.2691237617188],[106.51259890625,23.29972190625],[106.538189726563,23.2981960273438],[106.552064238281,23.2385622382813],[106.562625761719,23.2291237617188],[106.573150664063,23.2173464179687],[106.571441679688,23.188676984375],[106.622625761719,23.1791237617188],[106.642064238281,23.1645632148438],[106.601898222656,23.13901878125],[106.619032011719,23.0912697578125],[106.641058378906,23.0715920234375],[106.662449980469,23.0379543281251],[106.6926965625,23.0397585273438],[106.692034941406,23.028657453125],[106.694798613281,23.0191237617188],[106.752064238281,23.0591237617188],[106.772625761719,23.0685622382813],[106.777345,23.073843],[106.787415800781,23.0937502265625],[106.807345,23.0838430000001],[106.803260527344,23.0679274726563],[106.789456816406,23.0467287421875],[106.793616972656,23.0281716132813],[106.775513945313,23.0156740546876],[106.755091582031,22.9860964179688],[106.725513945313,22.9656740546875],[106.713260527344,22.9479274726563],[106.675726347656,22.9265041328125],[106.667345,22.8938430000001],[106.657345,22.8614577460938],[106.632625761719,22.8891237617188],[106.616783476563,22.9032814765625],[106.593609648438,22.9292165351563],[106.555084257813,22.926919171875],[106.515260039063,22.9485622382813],[106.502064238281,22.9291237617188],[106.48875125,22.9001198554688],[106.462345,22.8985451484375],[106.444859648438,22.8995876289063],[106.422064238281,22.8891237617188],[106.41259890625,22.8785305],[106.373609648438,22.88085471875],[106.361585722656,22.8673976875],[106.327345,22.869438703125],[106.306590605469,22.8682009101563],[106.260855742188,22.878843],[106.263016386719,22.9151100898438],[106.19937625,22.9863381171876],[106.142345,22.9897365546875],[106.111470976563,22.9878957343751],[106.027345,22.993843],[106.022174101563,23.0266506171876],[105.976312285156,23.0163698554687],[105.946898222656,23.0589723945313],[105.963529082031,23.0985646796876],[105.957862578125,23.1238430000001],[105.965706816406,23.1588430000001],[105.961224394531,23.178843],[105.967498808594,23.2068312812501],[105.951429472656,23.2179274726563],[105.943260527344,23.2519997382813],[105.974320097656,23.2450368476563],[105.971051054688,23.2596169257813],[105.993260527344,23.2679274726563],[106.001429472656,23.2797585273438],[106.027435332031,23.2894899726563],[106.046319609375,23.3168434882813],[106.083260527344,23.3379274726563],[106.09459109375,23.3543386054688],[106.081214628906,23.4088014960938],[106.083465605469,23.418843],[106.081124296875,23.4292897773438],[106.100369902344,23.458843],[106.074105253906,23.49917503125],[106.067345,23.5038430000001],[106.075513945313,23.5156740546876],[106.116922636719,23.5442653632813],[106.137345,23.573843],[106.163260527344,23.5597585273437],[106.187345,23.5438430000001],[106.17572390625,23.498559796875],[106.157345,23.493843]]]]}},{"type":"Feature","properties":{"name":"乐业县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.407345,24.5738430000001],[106.419537382813,24.5772658515625],[106.410767851563,24.5860353828126],[106.39197390625,24.57847190625],[106.37271609375,24.5892140937501],[106.3519153125,24.5984963203126],[106.353382597656,24.6167604804688],[106.29197390625,24.68847190625],[106.28271609375,24.7392140937501],[106.271146269531,24.7599513984376],[106.243902617188,24.7577638984376],[106.206641875,24.7714455390625],[106.187345,24.793843],[106.19298953125,24.8181984687501],[106.20170046875,24.8777346015625],[106.155885039063,24.9395339179688],[106.137345,24.9538430000001],[106.145697050781,24.9659377265626],[106.182850371094,24.9576100898438],[106.216326933594,24.9835549140625],[106.247345,24.9766017890625],[106.272345,24.9822048164062],[106.300230742188,24.9759548164063],[106.321429472656,24.9897585273438],[106.418641386719,25.0143459296875],[106.451429472656,25.0397585273438],[106.511329375,25.0551296210938],[106.521429472656,25.0697585273438],[106.527345,25.0738430000001],[106.540704375,25.0804836250001],[106.567345,25.083843],[106.59213015625,25.0540041328125],[106.672806425781,25.0683815742187],[106.687884550781,25.0865309882813],[106.744798613281,25.107915265625],[106.740936308594,25.0700319648438],[106.761883574219,25.0334596992188],[106.752664824219,25.0283010078125],[106.712806425781,25.0323635078125],[106.721883574219,25.0083815742188],[106.732806425781,24.9893044257813],[106.741883574219,24.9683815742188],[106.752806425781,24.9593044257813],[106.773619414063,24.9342507148438],[106.827557402344,24.8959304023438],[106.849510527344,24.857602765625],[106.826707792969,24.859926984375],[106.799808378906,24.837583234375],[106.778870878906,24.7893044257813],[106.751883574219,24.7983815742188],[106.716961699219,24.8183815742188],[106.652806425781,24.8017848945313],[106.674273710938,24.7641921210938],[106.701883574219,24.7483815742188],[106.727398710938,24.7373146796875],[106.772806425781,24.7093044257812],[106.790394316406,24.6881349921875],[106.817511015625,24.6908986640625],[106.807345,24.663843],[106.801519804688,24.6596681953126],[106.71088015625,24.6415700507813],[106.683170195313,24.610219953125],[106.707345,24.603843],[106.700057402344,24.5924611640625],[106.65158328125,24.6060817695313],[106.630023222656,24.5724050117188],[106.612345,24.5674367500001],[106.602345,24.5702492500001],[106.591886015625,24.567309796875],[106.573441191406,24.5799391914063],[106.551248808594,24.5877468085938],[106.5226184375,24.6073513007813],[106.511998320313,24.5499391914063],[106.451248808594,24.5577468085937],[106.432584257813,24.5705251289063],[106.417345,24.563843],[106.407345,24.563843],[106.407345,24.5738430000001]]]]}},{"type":"Feature","properties":{"name":"凌云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.769627714844,24.6023952460938],[106.759796171875,24.5233449531251],[106.796041289063,24.5080715156251],[106.81322390625,24.478843],[106.800553007813,24.457290265625],[106.843472929688,24.4229201484375],[106.840584746094,24.39968284375],[106.862345,24.3969777656251],[106.890504179688,24.4004787421875],[106.90334109375,24.3786428046876],[106.880553007813,24.3603957343751],[106.897337675781,24.3318434882813],[106.880643339844,24.3184767890626],[106.901790800781,24.2682888007813],[106.912899199219,24.2593971992188],[106.917345,24.253843],[106.908885527344,24.2208766914063],[106.857345,24.1938430000001],[106.797379179688,24.1863503242188],[106.772345,24.1894655585938],[106.762345,24.1882204414062],[106.72334109375,24.193071515625],[106.712345,24.1669777656251],[106.691890898438,24.1695217109375],[106.668912382813,24.1408229804687],[106.614605742188,24.1179396796876],[106.601890898438,24.1195217109376],[106.580697050781,24.0930544257813],[106.535172148438,24.1198171210938],[106.521890898438,24.1181642890626],[106.512899199219,24.1293971992188],[106.465428496094,24.1582302070312],[106.473016386719,24.2192360664063],[106.451790800781,24.2482888007813],[106.430543242188,24.2832741523438],[106.417345,24.293843],[106.396063261719,24.3382936835938],[106.4236340625,24.34769065625],[106.441158476563,24.3653322578126],[106.421158476563,24.3776564765625],[106.413531523438,24.3900295234375],[106.391158476563,24.3976564765626],[106.383531523438,24.4153322578125],[106.41187625,24.4327980781251],[106.427511015625,24.4786745429688],[106.394146757813,24.490044171875],[106.413531523438,24.5176564765626],[106.417345,24.563843],[106.432584257813,24.5705251289063],[106.451248808594,24.5577468085937],[106.511998320313,24.5499391914063],[106.5226184375,24.6073513007813],[106.551248808594,24.5877468085938],[106.573441191406,24.5799391914063],[106.591886015625,24.567309796875],[106.602345,24.5702492500001],[106.612345,24.5674367500001],[106.630023222656,24.5724050117188],[106.65158328125,24.6060817695313],[106.700057402344,24.5924611640625],[106.707345,24.603843],[106.712899199219,24.6082888007813],[106.728914824219,24.6282888007812],[106.769627714844,24.6023952460938]]]]}},{"type":"Feature","properties":{"name":"隆林各族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.223079863281,24.9795778632813],[105.232913847656,24.9663576484375],[105.253013945313,24.9698195625001],[105.262496367188,24.9348415351563],[105.318407011719,24.9252175117188],[105.355394316406,24.9481081367187],[105.432059355469,24.9343923164063],[105.447345,24.9138430000001],[105.461229277344,24.8677272773438],[105.48271609375,24.84921409375],[105.494561796875,24.8098708320313],[105.542345,24.8060305],[105.593316679688,24.8101271796875],[105.619490996094,24.7797438789063],[105.677345,24.773843],[105.65966921875,24.7359889960938],[105.685382109375,24.69649925],[105.661099882813,24.5984328437501],[105.676864042969,24.574223859375],[105.641429472656,24.5497585273437],[105.632166777344,24.5250002265626],[105.591429472656,24.5097585273438],[105.583260527344,24.4879274726563],[105.563260527344,24.4572145820312],[105.571732207031,24.4475856757813],[105.587345,24.4510842109375],[105.602791777344,24.447622296875],[105.625211210938,24.4622219062501],[105.644779082031,24.4487111640625],[105.627105742188,24.40147971875],[105.581429472656,24.3897585273438],[105.573260527344,24.3779274726563],[105.567345,24.373843],[105.531070585938,24.3899465156251],[105.500811796875,24.387514875],[105.392401152344,24.3992482734375],[105.372345,24.3976369453125],[105.338997832031,24.400317609375],[105.32271609375,24.41921409375],[105.308519316406,24.4314455390625],[105.250103789063,24.4490334296876],[105.229832792969,24.472563703125],[105.233148222656,24.513843],[105.231341582031,24.5363283515626],[105.182269316406,24.518305890625],[105.161236601563,24.5300417304687],[105.162772246094,24.5491677070313],[105.148624296875,24.5613552070313],[105.108450957031,24.5581276679688],[105.082489042969,24.5995803046875],[105.05271609375,24.57847190625],[105.015916777344,24.5673928046875],[104.972547636719,24.5792604804688],[104.942767363281,24.5768679023438],[104.900604277344,24.5469728828125],[104.870484648438,24.5493947578125],[104.852691679688,24.5892726875],[104.840726347656,24.5883107734376],[104.821165800781,24.6110134101563],[104.827345,24.673843],[104.850150175781,24.6901882148438],[104.868360625,24.7374025703125],[104.8947278125,24.7563014960938],[104.988609648438,24.7751222968751],[105.025220976563,24.7983669257813],[105.041519804688,24.8796681953125],[105.06224734375,24.8945241523438],[105.067345,24.9138430000001],[105.077345,24.9138430000001],[105.088814726563,24.9223732734376],[105.103587675781,24.9422341132813],[105.131610136719,24.9595778632813],[105.153079863281,24.9681081367188],[105.192948027344,24.9981081367188],[105.223079863281,24.9795778632813]]]]}},{"type":"Feature","properties":{"name":"那坡县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.667345,23.3538430000001],[105.671038847656,23.3262429023437],[105.682345,23.330903546875],[105.700816679688,23.3232912421875],[105.69025515625,23.3489138007813],[105.671883574219,23.3593044257813],[105.683363066406,23.368843],[105.671883574219,23.3783815742188],[105.662806425781,23.3893044257813],[105.651326933594,23.398843],[105.667547636719,23.4123171210938],[105.692418242188,23.3980739570313],[105.742523222656,23.4377272773438],[105.752476835938,23.4606764960938],[105.812806425781,23.4783815742188],[105.821883574219,23.5193044257813],[105.834891386719,23.53011253125],[105.852345,23.5283327460938],[105.880211210938,23.5311745429687],[105.911883574219,23.5083815742187],[105.93834109375,23.4969069648438],[105.962611113281,23.499380109375],[105.994737578125,23.4873073554687],[105.990916777344,23.4498220039063],[106.031883574219,23.4793044257813],[106.055455351563,23.4895290351563],[106.067345,23.5038430000001],[106.074105253906,23.49917503125],[106.100369902344,23.458843],[106.081124296875,23.4292897773438],[106.083465605469,23.418843],[106.081214628906,23.4088014960938],[106.09459109375,23.3543386054688],[106.083260527344,23.3379274726563],[106.046319609375,23.3168434882813],[106.027435332031,23.2894899726563],[106.001429472656,23.2797585273438],[105.993260527344,23.2679274726563],[105.971051054688,23.2596169257813],[105.974320097656,23.2450368476563],[105.943260527344,23.2519997382813],[105.951429472656,23.2179274726563],[105.967498808594,23.2068312812501],[105.961224394531,23.178843],[105.965706816406,23.1588430000001],[105.957862578125,23.1238430000001],[105.963529082031,23.0985646796876],[105.946898222656,23.0589723945313],[105.976312285156,23.0163698554687],[106.022174101563,23.0266506171876],[106.027345,22.993843],[105.999288359375,22.9893068671875],[106.0089075,22.940630109375],[105.961912871094,22.9499172187501],[105.940404082031,22.9362624335938],[105.893761015625,22.9454787421875],[105.8816028125,22.9139528632813],[105.85093875,22.9567311835938],[105.854862089844,22.9765822578126],[105.811519804688,22.9880178046875],[105.76797,23.0239601875],[105.731519804688,23.0380178046876],[105.712999296875,23.0699611640625],[105.681798125,23.063794171875],[105.64216921875,23.0800807929688],[105.622777128906,23.0677687812501],[105.602345,23.0718068671875],[105.573892851563,23.0661843085938],[105.561344023438,23.1287770820313],[105.566168242188,23.1531935859376],[105.547345,23.193843],[105.523260527344,23.2302883125],[105.539400664063,23.24899925],[105.563260527344,23.2579274726563],[105.571429472656,23.2897585273438],[105.583260527344,23.2979274726563],[105.591429472656,23.3097585273438],[105.613260527344,23.3179274726563],[105.651429472656,23.3497585273438],[105.667345,23.3538430000001]]]]}},{"type":"Feature","properties":{"name":"平果县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.817345,23.343843],[107.827345,23.343843],[107.827345,23.333843],[107.817345,23.333843],[107.817345,23.343843]]],[[[107.817345,23.343843],[107.772347441406,23.3494655585938],[107.755133085938,23.3473244453126],[107.739932890625,23.3112551093751],[107.711790800781,23.2993971992188],[107.702899199219,23.2882888007813],[107.65310671875,23.2775173164063],[107.632899199219,23.2893971992188],[107.5830871875,23.2982888007813],[107.572899199219,23.2282888007813],[107.561790800781,23.2193971992188],[107.546143828125,23.1998537421875],[107.493424101563,23.2308425117188],[107.460213652344,23.2267116523438],[107.473475371094,23.2492702460937],[107.423551054688,23.26007346875],[107.392899199219,23.2482888007813],[107.377345,23.2438430000001],[107.373985625,23.270483625],[107.346546660156,23.3019728828125],[107.354976835938,23.319233625],[107.336031523438,23.3430861640625],[107.322330351563,23.3363942695313],[107.307345,23.343843],[107.316239042969,23.3549489570313],[107.338450957031,23.3727370429688],[107.351790800781,23.4193971992188],[107.364866972656,23.4416384101563],[107.392860136719,23.4381569648438],[107.401790800781,23.4693971992188],[107.425391875,23.4793410468751],[107.421102324219,23.513843],[107.423587675781,23.533843],[107.421722441406,23.5488430000001],[107.424154082031,23.5683888984375],[107.41146609375,23.57855003125],[107.42322390625,23.6091359687501],[107.397098417969,23.6300563789063],[107.373153105469,23.6270778632813],[107.342899199219,23.6539943671876],[107.415609160156,23.6747829414062],[107.395155058594,23.7095803046876],[107.361441679688,23.736577375],[107.364210234375,23.758843],[107.361695585938,23.7790602851563],[107.372994414063,23.8186257148438],[107.371722441406,23.828843],[107.373187285156,23.840610578125],[107.427345,23.833843],[107.444801054688,23.8363869453126],[107.474764433594,23.8661428046875],[107.477345,23.8838430000001],[107.49279421875,23.87749534375],[107.507503691406,23.8980178046875],[107.551226835938,23.8837941718751],[107.523170195313,23.8636843085938],[107.541519804688,23.8480178046875],[107.563170195313,23.8396681953125],[107.574896269531,23.795219953125],[107.6355090625,23.7768068671876],[107.684671660156,23.8080178046875],[107.743487578125,23.7996218085938],[107.737779570313,23.7707326484375],[107.757345,23.7668679023438],[107.777554960938,23.7708596015625],[107.801619902344,23.7536110664063],[107.831519804688,23.7065163398438],[107.805013457031,23.6653517890625],[107.782345,23.6698317695313],[107.772345,23.6678542304688],[107.761724882813,23.6699538398438],[107.753170195313,23.6580178046875],[107.70562625,23.630454328125],[107.701356230469,23.608843],[107.703333769531,23.598843],[107.700772734375,23.585884015625],[107.711519804688,23.5580178046875],[107.717345,23.553843],[107.735240507813,23.5267604804688],[107.730103789063,23.5038430000001],[107.733465605469,23.488843],[107.730714140625,23.4765651679688],[107.742345,23.4454811835938],[107.762623320313,23.4500270820313],[107.810877714844,23.4297585273438],[107.853260527344,23.4379274726562],[107.867345,23.443843],[107.881297636719,23.4338430000001],[107.861234160156,23.4194631171876],[107.863433867188,23.4083376289063],[107.831519804688,23.3696681953126],[107.817345,23.343843]]]]}},{"type":"Feature","properties":{"name":"田东县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.267503691406,23.9980178046875],[107.292945585938,23.9605226875],[107.302652617188,23.9237233710938],[107.342345,23.9158791328125],[107.374469023438,23.9222267890625],[107.391519804688,23.8780178046876],[107.41060671875,23.8643386054688],[107.427345,23.833843],[107.373187285156,23.840610578125],[107.371722441406,23.828843],[107.372994414063,23.8186257148438],[107.361695585938,23.7790602851563],[107.364210234375,23.758843],[107.361441679688,23.736577375],[107.395155058594,23.7095803046876],[107.415609160156,23.6747829414062],[107.342899199219,23.6539943671876],[107.373153105469,23.6270778632813],[107.397098417969,23.6300563789063],[107.42322390625,23.6091359687501],[107.41146609375,23.57855003125],[107.424154082031,23.5683888984375],[107.421722441406,23.5488430000001],[107.423587675781,23.533843],[107.421102324219,23.513843],[107.425391875,23.4793410468751],[107.401790800781,23.4693971992188],[107.392860136719,23.4381569648438],[107.364866972656,23.4416384101563],[107.351790800781,23.4193971992188],[107.338450957031,23.3727370429688],[107.316239042969,23.3549489570313],[107.307345,23.343843],[107.292628203125,23.3494997382813],[107.272135039063,23.3469509101563],[107.232738066406,23.3181716132813],[107.222345,23.3194655585938],[107.211890898438,23.3181642890626],[107.196143828125,23.3378322578126],[107.132713652344,23.3005471015625],[107.122899199219,23.2882888007813],[107.074893828125,23.2779030585938],[107.062345,23.2794655585938],[107.042799101563,23.2770339179688],[107.018065214844,23.3079177070313],[106.997345,23.3138430000001],[106.991429472656,23.3179274726563],[106.983260527344,23.3397585273438],[106.951429472656,23.3579274726563],[106.941698027344,23.3839333320313],[106.921073027344,23.3981716132813],[106.924586210938,23.413843],[106.917135039063,23.4470827460937],[106.898944121094,23.45964378125],[106.907345,23.493843],[106.898297148438,23.5168581367187],[106.91298953125,23.52819846875],[106.92170046875,23.55948753125],[106.935811796875,23.5703786445313],[106.931522246094,23.5994142890626],[106.95298953125,23.60819846875],[106.97170046875,23.61948753125],[107.003172636719,23.6282497382813],[107.000362578125,23.6472658515626],[107.013140898438,23.6684523750001],[107.009967070313,23.6899343085938],[107.0301965625,23.6869435859375],[107.062025175781,23.7647096992188],[107.08170046875,23.8359206367188],[107.045577421875,23.8507057929687],[107.03298953125,23.875044171875],[107.067601347656,23.9017604804688],[107.108800078125,23.8956716132813],[107.135596953125,23.9118361640626],[107.130867949219,23.943843],[107.133084746094,23.9588430000001],[107.13048953125,23.9764040351563],[107.137345,23.993843],[107.173170195313,23.9896681953125],[107.204671660156,23.9696681953126],[107.253170195313,23.9780178046875],[107.267503691406,23.9980178046875]]]]}},{"type":"Feature","properties":{"name":"田林县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.407345,24.5738430000001],[106.410767851563,24.5860353828126],[106.419537382813,24.5772658515625],[106.407345,24.5738430000001]]],[[[106.407345,24.5738430000001],[106.407345,24.563843],[106.417345,24.563843],[106.413531523438,24.5176564765626],[106.394146757813,24.490044171875],[106.427511015625,24.4786745429688],[106.41187625,24.4327980781251],[106.383531523438,24.4153322578125],[106.391158476563,24.3976564765626],[106.413531523438,24.3900295234375],[106.421158476563,24.3776564765625],[106.441158476563,24.3653322578126],[106.4236340625,24.34769065625],[106.396063261719,24.3382936835938],[106.417345,24.293843],[106.395257597656,24.268208234375],[106.381990996094,24.2692726875],[106.3724621875,24.2376271796875],[106.323963652344,24.2415261054688],[106.303460722656,24.2177272773438],[106.272843046875,24.1913478828125],[106.304998808594,24.1459963203125],[106.288038359375,24.107983625],[106.238319121094,24.111977765625],[106.19271609375,24.04847190625],[106.17197390625,24.03921409375],[106.16271609375,24.0184719062501],[106.134935332031,24.0060744453125],[106.13197390625,23.96921409375],[106.127345,23.9638430000001],[106.111790800781,23.9682888007813],[106.098450957031,23.9849489570313],[106.08134890625,23.9986428046876],[106.094136992188,24.0203957343751],[106.053270292969,24.0531227851563],[106.042899199219,24.0893971992188],[105.991514921875,24.1206056953125],[105.952345,24.1157326484375],[105.917345,24.1200856757813],[105.896907988281,24.117544171875],[105.902967558594,24.068843],[105.899561796875,24.0414601875],[105.85205203125,24.05972190625],[105.835482207031,24.039028546875],[105.790133085938,24.0260622382812],[105.793587675781,24.053843],[105.791046171875,24.0742800117188],[105.714095488281,24.0647072578125],[105.652650175781,24.0381838203125],[105.636907988281,24.040141828125],[105.643023710938,24.0892971015625],[105.631790800781,24.0982888007813],[105.622899199219,24.1293971992188],[105.606295195313,24.1426906562501],[105.567345,24.133843],[105.585128203125,24.2133180976563],[105.604276152344,24.2298146796875],[105.601849394531,24.2600075507813],[105.565697050781,24.25710471875],[105.527469511719,24.2711428046876],[105.547630644531,24.3072780585938],[105.577181425781,24.32046409375],[105.611864042969,24.3176760078125],[105.63197390625,24.3364284492188],[105.59197390625,24.34847190625],[105.58271609375,24.3592140937501],[105.57197390625,24.3684719062501],[105.567345,24.373843],[105.573260527344,24.3779274726563],[105.581429472656,24.3897585273438],[105.627105742188,24.40147971875],[105.644779082031,24.4487111640625],[105.625211210938,24.4622219062501],[105.602791777344,24.447622296875],[105.587345,24.4510842109375],[105.571732207031,24.4475856757813],[105.563260527344,24.4572145820312],[105.583260527344,24.4879274726563],[105.591429472656,24.5097585273438],[105.632166777344,24.5250002265626],[105.641429472656,24.5497585273437],[105.676864042969,24.574223859375],[105.661099882813,24.5984328437501],[105.685382109375,24.69649925],[105.65966921875,24.7359889960938],[105.677345,24.773843],[105.702899199219,24.7693971992187],[105.797261992188,24.6993971992188],[105.830189238281,24.7108205390626],[105.865477324219,24.7315627265625],[105.907345,24.7263552070313],[105.932825957031,24.7295241523437],[105.961803007813,24.6782692695313],[106.018150664063,24.6332033515625],[106.032899199219,24.6582888007813],[106.047720976563,24.6934670234375],[106.109359160156,24.719438703125],[106.132899199219,24.7382888007813],[106.141790800781,24.7593971992188],[106.165904570313,24.7695558906251],[106.181790800781,24.7893971992188],[106.187345,24.793843],[106.206641875,24.7714455390625],[106.243902617188,24.7577638984376],[106.271146269531,24.7599513984376],[106.28271609375,24.7392140937501],[106.29197390625,24.68847190625],[106.353382597656,24.6167604804688],[106.3519153125,24.5984963203126],[106.37271609375,24.5892140937501],[106.39197390625,24.57847190625],[106.407345,24.5738430000001]]]]}},{"type":"Feature","properties":{"name":"田阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.887345,24.1138430000001],[106.919991484375,24.1062795234375],[106.954945097656,24.1114430976563],[106.939349394531,24.0855861640626],[106.98298953125,24.05948753125],[107.022345,24.03030784375],[107.062152128906,24.0598220039063],[107.130213652344,24.0482595039063],[107.133822050781,24.023843],[107.13156375,24.0085500312501],[107.137345,23.993843],[107.13048953125,23.9764040351563],[107.133084746094,23.9588430000001],[107.130867949219,23.943843],[107.135596953125,23.9118361640626],[107.108800078125,23.8956716132813],[107.067601347656,23.9017604804688],[107.03298953125,23.875044171875],[107.045577421875,23.8507057929687],[107.08170046875,23.8359206367188],[107.062025175781,23.7647096992188],[107.0301965625,23.6869435859375],[107.009967070313,23.6899343085938],[107.013140898438,23.6684523750001],[107.000362578125,23.6472658515626],[107.003172636719,23.6282497382813],[106.97170046875,23.61948753125],[106.95298953125,23.60819846875],[106.931522246094,23.5994142890626],[106.935811796875,23.5703786445313],[106.92170046875,23.55948753125],[106.91298953125,23.52819846875],[106.898297148438,23.5168581367187],[106.907345,23.493843],[106.777469511719,23.488442609375],[106.7239075,23.4905641914063],[106.682535429688,23.5190334296875],[106.661412382813,23.5286525703125],[106.639642363281,23.4825221992187],[106.592535429688,23.4990334296876],[106.51033328125,23.5086525703126],[106.472508574219,23.488637921875],[106.451773710938,23.4894606757813],[106.4542590625,23.5521559882813],[106.400965605469,23.569028546875],[106.402550078125,23.6090261054687],[106.381881132813,23.6187819648438],[106.392586699219,23.6286989570313],[106.387345,23.6638430000001],[106.402806425781,23.6683815742188],[106.411883574219,23.6793044257812],[106.438892851563,23.7017433906251],[106.489647246094,23.6965700507813],[106.511883574219,23.7093044257813],[106.553685332031,23.7185744453125],[106.541795683594,23.728452375],[106.54310671875,23.741313703125],[106.574295683594,23.7381349921875],[106.606588164063,23.7770095039063],[106.636436796875,23.7899538398438],[106.668358183594,23.7867018867188],[106.692005644531,23.7582326484376],[106.761995878906,23.771176984375],[106.775631132813,23.7397389960938],[106.800282011719,23.7694167304688],[106.781617460938,23.8190846992188],[106.792806425781,23.8283815742188],[106.801910429688,23.8593971992188],[106.821156035156,23.8574343085938],[106.847345,23.8724343085938],[106.871883574219,23.8583815742188],[106.917625761719,23.8393044257813],[106.933768339844,23.9298854804688],[106.930203886719,23.9648561835938],[106.886937285156,24.0007936835937],[106.892882109375,24.0591091132813],[106.881754179688,24.0887258125001],[106.887345,24.1138430000001]],[[106.395152617188,23.6472658515626],[106.407345,23.643843],[106.403922148438,23.6560353828125],[106.395152617188,23.6472658515626]]]]}},{"type":"Feature","properties":{"name":"西林县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.467345,24.6438430000001],[104.463922148438,24.6316506171876],[104.455152617188,24.6404201484375],[104.467345,24.6438430000001]]],[[[104.467345,24.6438430000001],[104.470704375,24.650483625],[104.492315703125,24.6614162421876],[104.500704375,24.690483625],[104.513985625,24.7072023750001],[104.520704375,24.730483625],[104.527345,24.733843],[104.55298953125,24.72948753125],[104.57170046875,24.71819846875],[104.59298953125,24.7094875312501],[104.622984648438,24.6706276679688],[104.691370878906,24.6515822578126],[104.716143828125,24.61948753125],[104.74298953125,24.6281984687501],[104.756761503906,24.6618532539063],[104.827345,24.673843],[104.821165800781,24.6110134101563],[104.840726347656,24.5883107734376],[104.852691679688,24.5892726875],[104.870484648438,24.5493947578125],[104.900604277344,24.5469728828125],[104.942767363281,24.5768679023438],[104.972547636719,24.5792604804688],[105.015916777344,24.5673928046875],[105.05271609375,24.57847190625],[105.082489042969,24.5995803046875],[105.108450957031,24.5581276679688],[105.148624296875,24.5613552070313],[105.162772246094,24.5491677070313],[105.161236601563,24.5300417304687],[105.182269316406,24.518305890625],[105.231341582031,24.5363283515626],[105.233148222656,24.513843],[105.229832792969,24.472563703125],[105.250103789063,24.4490334296876],[105.308519316406,24.4314455390625],[105.32271609375,24.41921409375],[105.338997832031,24.400317609375],[105.372345,24.3976369453125],[105.392401152344,24.3992482734375],[105.500811796875,24.387514875],[105.531070585938,24.3899465156251],[105.567345,24.373843],[105.57197390625,24.3684719062501],[105.58271609375,24.3592140937501],[105.59197390625,24.34847190625],[105.63197390625,24.3364284492188],[105.611864042969,24.3176760078125],[105.577181425781,24.32046409375],[105.547630644531,24.3072780585938],[105.527469511719,24.2711428046876],[105.565697050781,24.25710471875],[105.601849394531,24.2600075507813],[105.604276152344,24.2298146796875],[105.585128203125,24.2133180976563],[105.567345,24.133843],[105.542386503906,24.1277126289062],[105.526927519531,24.1311794257813],[105.513260527344,24.0779274726563],[105.501160917969,24.0491213203125],[105.505557890625,24.0295143867188],[105.497345,24.023843],[105.411278105469,24.0388039375001],[105.375145292969,24.0778005195313],[105.333077421875,24.0976540351563],[105.312996855469,24.1193288398438],[105.269315214844,24.10401878125],[105.282550078125,24.0790065742188],[105.28209109375,24.0674660468751],[105.241009550781,24.0690944648438],[105.222535429688,24.0890334296875],[105.206964140625,24.103462140625],[105.185972929688,24.1261159492188],[105.172535429688,24.1702223945313],[105.222166777344,24.1682546210938],[105.233660917969,24.18065940625],[105.232122832031,24.2194289375],[105.212164335938,24.218637921875],[105.192535429688,24.2490334296875],[105.182154570313,24.2586525703125],[105.161820097656,24.2805983710938],[105.162625761719,24.3009401679688],[105.193138457031,24.3292092109375],[105.149007597656,24.3700978828125],[105.112166777344,24.368637921875],[105.101790800781,24.37983909375],[105.103167753906,24.4145778632812],[105.049859648438,24.4397365546875],[105.009344511719,24.438130109375],[104.9552746875,24.4095192695313],[104.841480742188,24.4494020820312],[104.784969511719,24.4471633125001],[104.755570097656,24.462719953125],[104.742535429688,24.4486525703125],[104.710181914063,24.4384084296876],[104.712740507813,24.373843],[104.712139921875,24.3586647773438],[104.728138457031,24.3438430000001],[104.702581816406,24.3201662421875],[104.642535429688,24.3690334296875],[104.611981230469,24.3787062812501],[104.630338164063,24.4133962226562],[104.58111453125,24.4289821601562],[104.567345,24.443843],[104.567345,24.473843],[104.557345,24.473843],[104.539893828125,24.5088259101563],[104.547205839844,24.5237966132813],[104.520704375,24.537202375],[104.517345,24.553843],[104.513260527344,24.5697585273438],[104.498238554688,24.6055251289063],[104.504681425781,24.6342604804688],[104.467345,24.6438430000001]]]]}},{"type":"Feature","properties":{"name":"右江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.430543242188,24.2832741523438],[106.451790800781,24.2482888007813],[106.473016386719,24.2192360664063],[106.465428496094,24.1582302070312],[106.512899199219,24.1293971992188],[106.521890898438,24.1181642890626],[106.535172148438,24.1198171210938],[106.580697050781,24.0930544257813],[106.601890898438,24.1195217109376],[106.614605742188,24.1179396796876],[106.668912382813,24.1408229804687],[106.691890898438,24.1695217109375],[106.712345,24.1669777656251],[106.72334109375,24.193071515625],[106.762345,24.1882204414062],[106.772345,24.1894655585938],[106.797379179688,24.1863503242188],[106.857345,24.1938430000001],[106.861429472656,24.1679274726563],[106.881292753906,24.1374221015625],[106.887345,24.1138430000001],[106.881754179688,24.0887258125001],[106.892882109375,24.0591091132813],[106.886937285156,24.0007936835937],[106.930203886719,23.9648561835938],[106.933768339844,23.9298854804688],[106.917625761719,23.8393044257813],[106.871883574219,23.8583815742188],[106.847345,23.8724343085938],[106.821156035156,23.8574343085938],[106.801910429688,23.8593971992188],[106.792806425781,23.8283815742188],[106.781617460938,23.8190846992188],[106.800282011719,23.7694167304688],[106.775631132813,23.7397389960938],[106.761995878906,23.771176984375],[106.692005644531,23.7582326484376],[106.668358183594,23.7867018867188],[106.636436796875,23.7899538398438],[106.606588164063,23.7770095039063],[106.574295683594,23.7381349921875],[106.54310671875,23.741313703125],[106.541795683594,23.728452375],[106.553685332031,23.7185744453125],[106.511883574219,23.7093044257813],[106.489647246094,23.6965700507813],[106.438892851563,23.7017433906251],[106.411883574219,23.6793044257812],[106.402806425781,23.6683815742188],[106.387345,23.6638430000001],[106.349051542969,23.6697829414063],[106.241766386719,23.6611623359375],[106.221998320313,23.6168630195312],[106.176566191406,23.6205129218751],[106.16271609375,23.5864455390625],[106.18271609375,23.56921409375],[106.187345,23.5438430000001],[106.163260527344,23.5597585273437],[106.137345,23.573843],[106.132899199219,23.5793971992188],[106.113355742188,23.5950441718751],[106.135667753906,23.6330007148437],[106.156632109375,23.70632346875],[106.141695585938,23.7586257148437],[106.142967558594,23.7688430000001],[106.138272734375,23.806577375],[106.155438261719,23.8203249335938],[106.181300078125,23.8171071601563],[106.201790800781,23.8322731757813],[106.169256621094,23.8583278632813],[106.192899199219,23.8682888007813],[106.201790800781,23.8768532539063],[106.152467070313,23.8909572578125],[106.132899199219,23.9593971992188],[106.127345,23.9638430000001],[106.13197390625,23.96921409375],[106.134935332031,24.0060744453125],[106.16271609375,24.0184719062501],[106.17197390625,24.03921409375],[106.19271609375,24.04847190625],[106.238319121094,24.111977765625],[106.288038359375,24.107983625],[106.304998808594,24.1459963203125],[106.272843046875,24.1913478828125],[106.303460722656,24.2177272773438],[106.323963652344,24.2415261054688],[106.3724621875,24.2376271796875],[106.381990996094,24.2692726875],[106.395257597656,24.268208234375],[106.417345,24.293843],[106.430543242188,24.2832741523438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"八步区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.779906035156,24.79069846875],[111.81205203125,24.77806175],[111.832345,24.7810597968751],[111.852345,24.7781032539063],[111.862857695313,24.7796584296875],[111.872857695313,24.7667018867188],[111.902345,24.771059796875],[111.927345,24.7673659492188],[111.961431914063,24.7724025703125],[111.99298953125,24.75948753125],[112.017345,24.743843],[112.012899199219,24.7382888007813],[111.95584109375,24.7259450507812],[111.939808378906,24.6842360664063],[111.944154082031,24.6492971015626],[111.922899199219,24.6322731757813],[111.943787871094,24.5946999335938],[111.968450957031,24.5749489570313],[111.981790800781,24.5582888007813],[112.001790800781,24.5422731757813],[111.992899199219,24.4982888007813],[111.98146609375,24.4685500312501],[112.027830839844,24.4314235664063],[112.041790800781,24.3982888007812],[112.061790800781,24.3822731757813],[112.0526184375,24.3472194648438],[112.022899199219,24.2982888007813],[111.998785429688,24.288130109375],[111.974610625,24.2579396796875],[111.945277128906,24.261587140625],[111.937345,24.2338430000001],[111.922000761719,24.2398757148438],[111.910809355469,24.2253762031251],[111.872081328125,24.231098859375],[111.86298953125,24.192641828125],[111.883140898438,24.159233625],[111.87619265625,24.1122121406251],[111.901207304688,24.048579328125],[111.91298953125,24.03948753125],[111.92170046875,24.0081984687501],[111.933294707031,23.98897971875],[111.927345,23.973843],[111.921610136719,23.9695778632813],[111.905184355469,23.9474929023438],[111.892345,23.9497048164062],[111.872345,23.9462599921876],[111.85166140625,23.9498220039063],[111.84302859375,23.9078639960938],[111.822913847656,23.9113283515625],[111.809090605469,23.8927468085938],[111.8169153125,23.8472951484375],[111.801163359375,23.8095778632813],[111.732435332031,23.8214089179688],[111.695225859375,23.844438703125],[111.681363554688,23.8258034492188],[111.647345,23.833843],[111.652767363281,23.8788893867188],[111.639947539063,23.9615261054688],[111.60197390625,23.9784719062501],[111.59271609375,23.98921409375],[111.579476347656,24.00062034375],[111.550960722656,23.9983303046876],[111.528841582031,24.0479006171875],[111.585557890625,24.0967653632813],[111.571917753906,24.1085182929688],[111.572747832031,24.1188430000001],[111.571422148438,24.1353298164063],[111.531600371094,24.1530983710938],[111.502623320313,24.1692678046875],[111.490382109375,24.1682839179688],[111.492772246094,24.1385182929688],[111.48197390625,24.1292140937501],[111.469288359375,24.0870803046876],[111.442066679688,24.0892678046876],[111.422623320313,24.0784181953125],[111.400225859375,24.0802175117188],[111.402764921875,24.0486037421875],[111.391871367188,24.0189382148438],[111.407537871094,23.9471120429688],[111.387511015625,23.911216046875],[111.361917753906,23.8891677070313],[111.3627746875,23.8784889960938],[111.325365019531,23.8672243476563],[111.263060332031,23.8901052070313],[111.239422636719,23.8882057929687],[111.207345,23.943843],[111.21197390625,23.95921409375],[111.234378691406,23.9785182929688],[111.231925078125,24.0090822578125],[111.247178984375,24.0506227851563],[111.26271609375,24.07847190625],[111.271998320313,24.0992726875],[111.291207304688,24.0977297187501],[111.31197390625,24.1712404609375],[111.274935332031,24.2031496406251],[111.301712675781,24.2262209296875],[111.3159778125,24.2581911445313],[111.307345,24.313843],[111.312354765625,24.3210988593751],[111.343260527344,24.2997585273438],[111.352476835938,24.2864089179688],[111.397095976563,24.3031032539063],[111.413565703125,24.3283962226563],[111.411124296875,24.3392897773438],[111.423565703125,24.3583962226563],[111.421087675781,24.3694557929688],[111.431429472656,24.4097585273438],[111.449176054688,24.4220119453125],[111.467254667969,24.4481960273438],[111.499845,24.4603908515625],[111.491224394531,24.4988430000001],[111.494586210938,24.513843],[111.489132109375,24.5381716132813],[111.504105253906,24.5485109687501],[111.523565703125,24.5783962226563],[111.518983183594,24.598843],[111.523565703125,24.6192897773438],[111.51060671875,24.6391896796875],[111.517345,24.6438430000001],[111.542203398438,24.6496022773438],[111.564056425781,24.6463747382813],[111.586204863281,24.7004885078125],[111.631751738281,24.6937575507813],[111.648839140625,24.7551247382813],[111.696485625,24.7904470039063],[111.737345,24.78440940625],[111.779906035156,24.79069846875]]]]}},{"type":"Feature","properties":{"name":"富川瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.298485136719,25.1213747382813],[111.339254179688,25.0992214179688],[111.388568144531,25.13366721875],[111.411080351563,25.1084694648437],[111.424456816406,25.1092678046876],[111.420335722656,25.0401296210938],[111.467345,25.0338430000001],[111.458450957031,25.0027370429688],[111.425755644531,24.9765529609375],[111.455140410156,24.9363259101563],[111.451102324219,24.903843],[111.452967558594,24.888843],[111.44931765625,24.8595095039063],[111.481790800781,24.8042653632813],[111.465548125,24.7568215156251],[111.427352324219,24.6918434882813],[111.442899199219,24.6793971992188],[111.451890898438,24.6681642890625],[111.490079375,24.672915265625],[111.497345,24.663843],[111.47170046875,24.65948753125],[111.423338652344,24.640473859375],[111.39125125,24.621118390625],[111.347789335938,24.6533425117187],[111.311954375,24.6480471015625],[111.292110625,24.6600173164063],[111.281832304688,24.6467018867188],[111.240709257813,24.652778546875],[111.243160429688,24.6693556953125],[111.23170046875,24.67819846875],[111.22298953125,24.68948753125],[111.21170046875,24.6981984687501],[111.20298953125,24.7094875312501],[111.182276640625,24.725473859375],[111.17298953125,24.76948753125],[111.167345,24.773843],[111.161497832031,24.8333034492188],[111.166954375,24.9012233710938],[111.119666777344,24.8974221015625],[111.087345,24.943843],[111.0937903125,24.9496022773437],[111.0920325,24.9790969062501],[111.1026575,24.98858909375],[111.099678984375,25.0385695625],[111.142625761719,25.0485622382813],[111.172064238281,25.0691237617188],[111.196236601563,25.0802199531251],[111.244344511719,25.1340627265625],[111.273160429688,25.1497194648438],[111.298485136719,25.1213747382813]]]]}},{"type":"Feature","properties":{"name":"昭平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.591109648438,24.4018874335938],[110.602345,24.3964015937501],[110.612491484375,24.4013576484375],[110.633985625,24.390483625],[110.640704375,24.377202375],[110.647345,24.373843],[110.661751738281,24.3529763007813],[110.697345,24.3438430000001],[110.732017851563,24.3280544257813],[110.747345,24.3303200507813],[110.793880644531,24.323442609375],[110.788187285156,24.3619777656251],[110.807838164063,24.3874391914063],[110.850565214844,24.3937526679688],[110.864935332031,24.309165265625],[110.88443484375,24.26151878125],[110.937760039063,24.33819846875],[110.95298953125,24.31948753125],[110.965267363281,24.2894875312501],[111.00298953125,24.3181984687501],[111.01170046875,24.3294875312501],[111.017345,24.333843],[111.091824980469,24.343149640625],[111.104334746094,24.2993971992188],[111.122899199219,24.3082888007813],[111.135133085938,24.3373244453126],[111.207362089844,24.3463088203125],[111.221890898438,24.3281642890625],[111.247738066406,24.3313796210938],[111.281790800781,24.3182888007813],[111.307345,24.313843],[111.3159778125,24.2581911445313],[111.301712675781,24.2262209296875],[111.274935332031,24.2031496406251],[111.31197390625,24.1712404609375],[111.291207304688,24.0977297187501],[111.271998320313,24.0992726875],[111.26271609375,24.07847190625],[111.247178984375,24.0506227851563],[111.231925078125,24.0090822578125],[111.234378691406,23.9785182929688],[111.21197390625,23.95921409375],[111.207345,23.943843],[111.158221464844,23.9499806953125],[111.130543242188,23.9044118476563],[111.103057890625,23.8824025703125],[111.084810820313,23.8390944648438],[111.061790800781,23.8293971992188],[111.032738066406,23.8081716132813],[111.010213652344,23.8109743476563],[111.013587675781,23.783843],[111.011351347656,23.7658571601563],[110.981846953125,23.76952659375],[110.971082792969,23.7439846015625],[110.97302859375,23.728344953125],[110.95156375,23.7192995429688],[110.963492460938,23.6667751289063],[110.947345,23.6538430000001],[110.9424621875,23.6700588203126],[110.922020292969,23.6684157539062],[110.91271609375,23.6792140937501],[110.90197390625,23.68847190625],[110.889832792969,23.702563703125],[110.893629179688,23.7498146796875],[110.871541777344,23.7688430000001],[110.88271609375,23.77847190625],[110.89197390625,23.811626203125],[110.851998320313,23.8084133125],[110.839691191406,23.8359963203126],[110.871485625,23.8808400703125],[110.83197390625,23.89847190625],[110.767345,23.953843],[110.719107695313,23.9478151679688],[110.723841582031,23.9858693671876],[110.74341921875,24.0191774726563],[110.711239042969,24.0327370429688],[110.679549589844,24.0513649726563],[110.686480742188,24.1070925117188],[110.716954375,24.1776857734375],[110.691790800781,24.1882888007813],[110.67400515625,24.21050315625],[110.628785429688,24.229555890625],[110.612899199219,24.2493971992188],[110.595589628906,24.2632570625],[110.616839628906,24.3185427070313],[110.571658964844,24.3283180976563],[110.573941679688,24.3466799140626],[110.567345,24.363843],[110.582315703125,24.3714162421875],[110.591109648438,24.4018874335938]]]]}},{"type":"Feature","properties":{"name":"钟山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.240709257813,24.652778546875],[111.281832304688,24.6467018867188],[111.292110625,24.6600173164063],[111.311954375,24.6480471015625],[111.347789335938,24.6533425117187],[111.39125125,24.621118390625],[111.423338652344,24.640473859375],[111.47170046875,24.65948753125],[111.497345,24.663843],[111.51062625,24.65712425],[111.517345,24.6438430000001],[111.51060671875,24.6391896796875],[111.523565703125,24.6192897773438],[111.518983183594,24.598843],[111.523565703125,24.5783962226563],[111.504105253906,24.5485109687501],[111.489132109375,24.5381716132813],[111.494586210938,24.513843],[111.491224394531,24.4988430000001],[111.499845,24.4603908515625],[111.467254667969,24.4481960273438],[111.449176054688,24.4220119453125],[111.431429472656,24.4097585273438],[111.421087675781,24.3694557929688],[111.423565703125,24.3583962226563],[111.411124296875,24.3392897773438],[111.413565703125,24.3283962226563],[111.397095976563,24.3031032539063],[111.352476835938,24.2864089179688],[111.343260527344,24.2997585273438],[111.312354765625,24.3210988593751],[111.307345,24.313843],[111.281790800781,24.3182888007813],[111.247738066406,24.3313796210938],[111.221890898438,24.3281642890625],[111.207362089844,24.3463088203125],[111.135133085938,24.3373244453126],[111.122899199219,24.3082888007813],[111.104334746094,24.2993971992188],[111.091824980469,24.343149640625],[111.017345,24.333843],[111.01298953125,24.34948753125],[110.969075957031,24.3674587226563],[110.98298953125,24.37819846875],[111.012493925781,24.4164260078125],[111.02170046875,24.4494875312501],[111.034486113281,24.4593556953125],[111.030203886719,24.4883303046876],[111.043595,24.4986672187501],[111.02170046875,24.52819846875],[111.01298953125,24.54948753125],[110.978941679688,24.575766828125],[111.003595,24.6090187812501],[110.99170046875,24.6181984687501],[110.987345,24.623843],[110.99170046875,24.62948753125],[111.011624785156,24.6448635078126],[111.02170046875,24.66948753125],[111.054761992188,24.6786940742188],[111.09298953125,24.70819846875],[111.10170046875,24.72948753125],[111.126324492188,24.7395632148438],[111.148795195313,24.7686769843751],[111.167345,24.773843],[111.17298953125,24.76948753125],[111.182276640625,24.725473859375],[111.20298953125,24.7094875312501],[111.21170046875,24.6981984687501],[111.22298953125,24.68948753125],[111.23170046875,24.67819846875],[111.243160429688,24.6693556953125],[111.240709257813,24.652778546875]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"巴马瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.124537382813,24.368843],[107.137345,24.363843],[107.182506132813,24.3582009101562],[107.2400403125,24.3712697578126],[107.253011503906,24.3492018867188],[107.251666289063,24.3383888984375],[107.267366972656,24.3258180976563],[107.283011503906,24.2992018867188],[107.281082792969,24.2837013984376],[107.299578886719,24.239809796875],[107.322345,24.236977765625],[107.375719023438,24.2436159492187],[107.416922636719,24.2193971992188],[107.426163359375,24.2331496406251],[107.421666289063,24.2692971015626],[107.432899199219,24.2782888007813],[107.448914824219,24.2982888007813],[107.473023710938,24.2792971015625],[107.470584746094,24.25968284375],[107.482843046875,24.25815940625],[107.491846953125,24.27952659375],[107.502345,24.2782204414063],[107.512843046875,24.27952659375],[107.521790800781,24.2582888007813],[107.532899199219,24.2493971992188],[107.537345,24.223843],[107.531798125,24.1814479804688],[107.48197390625,24.15921409375],[107.462623320313,24.1484181953126],[107.433316679688,24.1507741523438],[107.414947539063,24.1294533515626],[107.392345,24.1276369453125],[107.374124785156,24.16847190625],[107.327113066406,24.1326589179688],[107.359888945313,24.1044216132813],[107.362747832031,24.068843],[107.361483183594,24.0531154609375],[107.402489042969,23.9876491523438],[107.422669707031,23.9892702460938],[107.43197390625,23.9784719062501],[107.44271609375,23.96921409375],[107.45197390625,23.9484719062501],[107.473551054688,23.938843],[107.471942167969,23.918843],[107.472747832031,23.908843],[107.471165800781,23.8891677070313],[107.477345,23.8838430000001],[107.474764433594,23.8661428046875],[107.444801054688,23.8363869453126],[107.427345,23.833843],[107.41060671875,23.8643386054688],[107.391519804688,23.8780178046876],[107.374469023438,23.9222267890625],[107.342345,23.9158791328125],[107.302652617188,23.9237233710938],[107.292945585938,23.9605226875],[107.267503691406,23.9980178046875],[107.253170195313,23.9780178046875],[107.204671660156,23.9696681953126],[107.173170195313,23.9896681953125],[107.137345,23.993843],[107.13156375,24.0085500312501],[107.133822050781,24.023843],[107.130213652344,24.0482595039063],[107.062152128906,24.0598220039063],[107.022345,24.03030784375],[106.98298953125,24.05948753125],[106.939349394531,24.0855861640626],[106.954945097656,24.1114430976563],[106.919991484375,24.1062795234375],[106.887345,24.1138430000001],[106.881292753906,24.1374221015625],[106.861429472656,24.1679274726563],[106.857345,24.1938430000001],[106.908885527344,24.2208766914063],[106.917345,24.253843],[106.951651640625,24.2633962226562],[106.96170046875,24.2994875312501],[106.978631621094,24.3125563789063],[107.002857695313,24.34394065625],[107.042345,24.3381032539063],[107.054407988281,24.3398854804688],[107.051529570313,24.3593556953125],[107.080980253906,24.3820876289062],[107.091832304688,24.3680275703125],[107.102345,24.3695827460938],[107.112916289063,24.3680202460938],[107.127345,24.403843],[107.137345,24.403843],[107.137345,24.373843],[107.124537382813,24.368843]]]]}},{"type":"Feature","properties":{"name":"大化瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.547345,24.2638430000001],[107.523804960938,24.2689064765626],[107.534837675781,24.2866603828125],[107.547345,24.2638430000001]]],[[[107.587345,24.283843],[107.567345,24.283843],[107.567345,24.3038430000001],[107.583792753906,24.3120192695313],[107.587345,24.283843]]],[[[107.567345,24.3038430000001],[107.555152617188,24.3072658515625],[107.563922148438,24.3160353828125],[107.567345,24.3038430000001]]],[[[107.566417265625,24.35835471875],[107.577345,24.323843],[107.522535429688,24.3296755195313],[107.566417265625,24.35835471875]]],[[[107.547345,24.2638430000001],[107.58298953125,24.2781984687501],[107.587345,24.283843],[107.597345,24.283843],[107.597345,24.2638430000001],[107.574620390625,24.2598366523438],[107.591783476563,24.2508449531251],[107.597345,24.2638430000001],[107.608450957031,24.2727370429688],[107.643289824219,24.3162429023437],[107.640711699219,24.3369826484375],[107.645775175781,24.3482888007813],[107.668546171875,24.3198537421875],[107.701790800781,24.3393971992188],[107.722899199219,24.3482888007813],[107.727345,24.363843],[107.752584257813,24.3700417304688],[107.767345,24.363843],[107.77197390625,24.3284719062501],[107.782769804688,24.3091213203125],[107.781942167969,24.298843],[107.782747832031,24.288843],[107.780738554688,24.2638430000001],[107.782772246094,24.2385182929688],[107.771917753906,24.2291677070313],[107.773148222656,24.213843],[107.771405058594,24.192153546875],[107.78197390625,24.16847190625],[107.808443632813,24.1566603828125],[107.770389433594,24.088452375],[107.79271609375,24.06921409375],[107.809722929688,24.0494753242188],[107.8327746875,24.0391896796875],[107.831912871094,24.0284792304688],[107.893570585938,24.0190846992188],[107.891917753906,23.9985182929688],[107.911754179688,23.9814284492187],[107.859974394531,23.9583229804688],[107.8724621875,23.9168434882813],[107.902345,23.9192458320313],[107.912345,23.9184401679688],[107.93162234375,23.9199904609375],[107.96197390625,23.89847190625],[107.983284941406,23.8889601875],[107.971917753906,23.8791677070313],[107.973551054688,23.858843],[107.97177859375,23.8367897773437],[108.002669707031,23.8392702460938],[108.012020292969,23.8284157539063],[108.02658328125,23.8295851875],[108.037345,23.793843],[108.03298953125,23.7881984687501],[108.01298953125,23.7727614570313],[108.02170046875,23.73819846875],[108.038194609375,23.71085471875],[108.01298953125,23.67819846875],[108.00170046875,23.66948753125],[107.973695097656,23.6226613593751],[107.946541777344,23.6578395820313],[107.901522246094,23.6394142890626],[107.903421660156,23.62655784375],[107.868800078125,23.6056716132813],[107.828148222656,23.6116799140625],[107.776099882813,23.5730934882813],[107.742345,23.5681032539063],[107.72978640625,23.5699611640625],[107.717345,23.553843],[107.711519804688,23.5580178046875],[107.700772734375,23.585884015625],[107.703333769531,23.598843],[107.701356230469,23.608843],[107.70562625,23.630454328125],[107.753170195313,23.6580178046875],[107.761724882813,23.6699538398438],[107.772345,23.6678542304688],[107.782345,23.6698317695313],[107.805013457031,23.6653517890625],[107.831519804688,23.7065163398438],[107.801619902344,23.7536110664063],[107.777554960938,23.7708596015625],[107.757345,23.7668679023438],[107.737779570313,23.7707326484375],[107.743487578125,23.7996218085938],[107.684671660156,23.8080178046875],[107.6355090625,23.7768068671876],[107.574896269531,23.795219953125],[107.563170195313,23.8396681953125],[107.541519804688,23.8480178046875],[107.523170195313,23.8636843085938],[107.551226835938,23.8837941718751],[107.507503691406,23.8980178046875],[107.49279421875,23.87749534375],[107.477345,23.8838430000001],[107.471165800781,23.8891677070313],[107.472747832031,23.908843],[107.471942167969,23.918843],[107.473551054688,23.938843],[107.45197390625,23.9484719062501],[107.44271609375,23.96921409375],[107.43197390625,23.9784719062501],[107.422669707031,23.9892702460938],[107.402489042969,23.9876491523438],[107.361483183594,24.0531154609375],[107.362747832031,24.068843],[107.359888945313,24.1044216132813],[107.327113066406,24.1326589179688],[107.374124785156,24.16847190625],[107.392345,24.1276369453125],[107.414947539063,24.1294533515626],[107.433316679688,24.1507741523438],[107.462623320313,24.1484181953126],[107.48197390625,24.15921409375],[107.531798125,24.1814479804688],[107.537345,24.223843],[107.560399199219,24.2364797187501],[107.547345,24.2638430000001]]]]}},{"type":"Feature","properties":{"name":"东兰县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.597345,24.2638430000001],[107.591783476563,24.2508449531251],[107.574620390625,24.2598366523438],[107.597345,24.2638430000001]]],[[[107.107345,24.413843],[107.103922148438,24.4016506171876],[107.095152617188,24.4104201484375],[107.107345,24.413843]]],[[[107.597345,24.2638430000001],[107.597345,24.283843],[107.587345,24.283843],[107.583792753906,24.3120192695313],[107.567345,24.3038430000001],[107.563922148438,24.3160353828125],[107.555152617188,24.3072658515625],[107.567345,24.3038430000001],[107.567345,24.283843],[107.587345,24.283843],[107.58298953125,24.2781984687501],[107.547345,24.2638430000001],[107.534837675781,24.2866603828125],[107.523804960938,24.2689064765626],[107.547345,24.2638430000001],[107.560399199219,24.2364797187501],[107.537345,24.223843],[107.532899199219,24.2493971992188],[107.521790800781,24.2582888007813],[107.512843046875,24.27952659375],[107.502345,24.2782204414063],[107.491846953125,24.27952659375],[107.482843046875,24.25815940625],[107.470584746094,24.25968284375],[107.473023710938,24.2792971015625],[107.448914824219,24.2982888007813],[107.432899199219,24.2782888007813],[107.421666289063,24.2692971015626],[107.426163359375,24.2331496406251],[107.416922636719,24.2193971992188],[107.375719023438,24.2436159492187],[107.322345,24.236977765625],[107.299578886719,24.239809796875],[107.281082792969,24.2837013984376],[107.283011503906,24.2992018867188],[107.267366972656,24.3258180976563],[107.251666289063,24.3383888984375],[107.253011503906,24.3492018867188],[107.2400403125,24.3712697578126],[107.182506132813,24.3582009101562],[107.137345,24.363843],[107.137345,24.373843],[107.137345,24.403843],[107.127345,24.403843],[107.127345,24.413843],[107.107345,24.413843],[107.123018828125,24.4389553046875],[107.102935820313,24.4562575507813],[107.163204375,24.483149640625],[107.161917753906,24.4991677070313],[107.194075957031,24.5268727851563],[107.282777128906,24.5384792304688],[107.280526152344,24.5664748359375],[107.231190214844,24.6294704414063],[107.233551054688,24.658843],[107.230335722656,24.698843],[107.232747832031,24.7288430000001],[107.231734648438,24.7414455390625],[107.21197390625,24.75847190625],[107.202669707031,24.7692702460938],[107.192345,24.7684401679688],[107.182345,24.7692458320313],[107.172345,24.7684401679688],[107.162105742188,24.769262921875],[107.098741484375,24.7459938789063],[107.087345,24.783843],[107.09298953125,24.78819846875],[107.104127226563,24.8154128242187],[107.132345,24.8195827460938],[107.16048953125,24.8154225898438],[107.22248171875,24.8397927070313],[107.242120390625,24.8279470039063],[107.282135039063,24.8396120429688],[107.299906035156,24.83698753125],[107.317345,24.8438430000001],[107.336641875,24.8283888984375],[107.331527128906,24.787270734375],[107.344906035156,24.7103908515625],[107.390714140625,24.7046926093751],[107.416727324219,24.7475221992188],[107.457464628906,24.7525905585938],[107.48373171875,24.7371486640625],[107.519139433594,24.7415529609376],[107.557345,24.6938430000001],[107.550572539063,24.6526174140625],[107.56170046875,24.63819846875],[107.57298953125,24.62948753125],[107.586058378906,24.6125563789063],[107.603792753906,24.5988649726563],[107.63298953125,24.5594875312501],[107.641732207031,24.508012921875],[107.659854765625,24.5106911445313],[107.663084746094,24.488843],[107.660867949219,24.473843],[107.663084746094,24.4588430000001],[107.661549101563,24.448452375],[107.67298953125,24.42948753125],[107.682147246094,24.39659690625],[107.702869902344,24.3996584296875],[107.727345,24.363843],[107.722899199219,24.3482888007813],[107.701790800781,24.3393971992188],[107.668546171875,24.3198537421875],[107.645775175781,24.3482888007813],[107.640711699219,24.3369826484375],[107.643289824219,24.3162429023437],[107.608450957031,24.2727370429688],[107.597345,24.2638430000001]],[[107.577345,24.323843],[107.566417265625,24.35835471875],[107.522535429688,24.3296755195313],[107.577345,24.323843]]]]}},{"type":"Feature","properties":{"name":"都安瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.928538847656,24.5808180976563],[107.947345,24.5766017890625],[107.962345,24.5799636054688],[107.977345,24.5766017890625],[107.992623320313,24.5800270820313],[108.021429472656,24.5679274726563],[108.053260527344,24.5597585273438],[108.057345,24.553843],[108.044132109375,24.5424587226563],[108.086766386719,24.505727765625],[108.071920195313,24.4791213203125],[108.072747832031,24.468843],[108.071812773438,24.4572243476563],[108.103460722656,24.4299587226563],[108.136024199219,24.3921633125],[108.191849394531,24.3876784492188],[108.192747832031,24.398843],[108.190194121094,24.4306227851563],[108.245308867188,24.3998732734375],[108.262215605469,24.4194948554688],[108.300250273438,24.3982741523438],[108.321051054688,24.3999440742188],[108.322747832031,24.3788430000001],[108.321917753906,24.3685182929688],[108.332772246094,24.3591677070313],[108.3319153125,24.3484963203125],[108.35271609375,24.33921409375],[108.372066679688,24.3284181953125],[108.384398222656,24.32940940625],[108.381712675781,24.2959792304688],[108.432020292969,24.3000221992188],[108.44197390625,24.2884719062501],[108.467059355469,24.2772780585938],[108.483470488281,24.2478615546875],[108.481942167969,24.2288430000001],[108.482747832031,24.218843],[108.481942167969,24.208843],[108.482764921875,24.1986037421876],[108.466920195313,24.1554518867188],[108.492769804688,24.1091213203126],[108.49060671875,24.0821950507813],[108.50271609375,24.04921409375],[108.507345,24.023843],[108.483372832031,24.0357595039063],[108.477345,24.023843],[108.45209109375,24.0183351875001],[108.44271609375,24.02921409375],[108.427178984375,24.03847190625],[108.361500273438,24.0143532539063],[108.363470488281,23.9898244453125],[108.351807890625,23.9689186835938],[108.367855253906,23.9252248359376],[108.312572050781,23.9005568671875],[108.30271609375,23.87847190625],[108.287923613281,23.8519582343751],[108.303951445313,23.838149640625],[108.28197390625,23.81921409375],[108.272345,23.8080397773438],[108.262345,23.8196462226563],[108.252669707031,23.8084157539063],[108.230113554688,23.8102272773438],[108.21271609375,23.84921409375],[108.187769804688,23.87847190625],[108.169935332031,23.8192311835938],[108.15271609375,23.83921409375],[108.134276152344,23.855102765625],[108.084610625,23.79745628125],[108.053902617188,23.7999221015625],[108.037345,23.793843],[108.02658328125,23.8295851875],[108.012020292969,23.8284157539063],[108.002669707031,23.8392702460938],[107.97177859375,23.8367897773437],[107.973551054688,23.858843],[107.971917753906,23.8791677070313],[107.983284941406,23.8889601875],[107.96197390625,23.89847190625],[107.93162234375,23.9199904609375],[107.912345,23.9184401679688],[107.902345,23.9192458320313],[107.8724621875,23.9168434882813],[107.859974394531,23.9583229804688],[107.911754179688,23.9814284492187],[107.891917753906,23.9985182929688],[107.893570585938,24.0190846992188],[107.831912871094,24.0284792304688],[107.8327746875,24.0391896796875],[107.809722929688,24.0494753242188],[107.79271609375,24.06921409375],[107.770389433594,24.088452375],[107.808443632813,24.1566603828125],[107.78197390625,24.16847190625],[107.771405058594,24.192153546875],[107.773148222656,24.213843],[107.771917753906,24.2291677070313],[107.782772246094,24.2385182929688],[107.780738554688,24.2638430000001],[107.782747832031,24.288843],[107.781942167969,24.298843],[107.782769804688,24.3091213203125],[107.77197390625,24.3284719062501],[107.767345,24.363843],[107.77228640625,24.4072927070312],[107.792345,24.4203542304687],[107.811898222656,24.407622296875],[107.825697050781,24.4107155585938],[107.847030058594,24.3798171210938],[107.873260527344,24.3979274726563],[107.881429472656,24.4097585273438],[107.89408328125,24.4184963203125],[107.863260527344,24.4658278632813],[107.874788847656,24.4854885078125],[107.926734648438,24.4988185859376],[107.933465605469,24.528843],[107.931224394531,24.5388430000001],[107.934586210938,24.553843],[107.928538847656,24.5808180976563]]]]}},{"type":"Feature","properties":{"name":"凤山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.137345,24.373843],[107.137345,24.363843],[107.124537382813,24.368843],[107.137345,24.373843]]],[[[107.107345,24.413843],[107.095152617188,24.4104201484375],[107.103922148438,24.4016506171876],[107.127345,24.413843],[107.127345,24.403843],[107.112916289063,24.3680202460938],[107.102345,24.3695827460938],[107.091832304688,24.3680275703125],[107.080980253906,24.3820876289062],[107.051529570313,24.3593556953125],[107.054407988281,24.3398854804688],[107.042345,24.3381032539063],[107.002857695313,24.34394065625],[106.978631621094,24.3125563789063],[106.96170046875,24.2994875312501],[106.951651640625,24.2633962226562],[106.917345,24.253843],[106.912899199219,24.2593971992188],[106.901790800781,24.2682888007813],[106.880643339844,24.3184767890626],[106.897337675781,24.3318434882813],[106.880553007813,24.3603957343751],[106.90334109375,24.3786428046876],[106.890504179688,24.4004787421875],[106.862345,24.3969777656251],[106.840584746094,24.39968284375],[106.843472929688,24.4229201484375],[106.800553007813,24.457290265625],[106.81322390625,24.478843],[106.796041289063,24.5080715156251],[106.759796171875,24.5233449531251],[106.769627714844,24.6023952460938],[106.728914824219,24.6282888007812],[106.712899199219,24.6082888007813],[106.707345,24.603843],[106.683170195313,24.610219953125],[106.71088015625,24.6415700507813],[106.801519804688,24.6596681953126],[106.807345,24.663843],[106.82298953125,24.65948753125],[106.83170046875,24.64819846875],[106.86298953125,24.6394875312501],[106.916063261719,24.6001369453125],[106.933140898438,24.628452375],[106.930867949219,24.6438430000001],[106.934561796875,24.668843],[106.931529570313,24.6893556953126],[106.943294707031,24.6984352851563],[106.923367949219,24.7667775703125],[106.942857695313,24.7696584296876],[106.964940214844,24.7410475898438],[107.007345,24.733843],[107.010767851563,24.7216506171875],[107.019537382813,24.7304201484375],[107.007345,24.733843],[107.003985625,24.750483625],[106.983985625,24.7606008125],[106.990704375,24.7804836250001],[107.012315703125,24.7914162421875],[107.022642851563,24.8272023750001],[107.033985625,24.8204836250001],[107.040704375,24.797202375],[107.053985625,24.790483625],[107.063372832031,24.7719264960938],[107.087345,24.783843],[107.098741484375,24.7459938789063],[107.162105742188,24.769262921875],[107.172345,24.7684401679688],[107.182345,24.7692458320313],[107.192345,24.7684401679688],[107.202669707031,24.7692702460938],[107.21197390625,24.75847190625],[107.231734648438,24.7414455390625],[107.232747832031,24.7288430000001],[107.230335722656,24.698843],[107.233551054688,24.658843],[107.231190214844,24.6294704414063],[107.280526152344,24.5664748359375],[107.282777128906,24.5384792304688],[107.194075957031,24.5268727851563],[107.161917753906,24.4991677070313],[107.163204375,24.483149640625],[107.102935820313,24.4562575507813],[107.123018828125,24.4389553046875],[107.107345,24.413843]]]]}},{"type":"Feature","properties":{"name":"环江毛南族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.400260039063,25.486157453125],[108.417628203125,25.4437209296876],[108.488048125,25.4642531562501],[108.50298953125,25.4394875312501],[108.511773710938,25.4180202460938],[108.529000273438,25.4205641914062],[108.56170046875,25.37819846875],[108.581624785156,25.3628224921875],[108.594429960938,25.331528546875],[108.617345,25.313843],[108.640594511719,25.2952248359376],[108.65248171875,25.2135549140626],[108.715167265625,25.1781130195313],[108.685111113281,25.1540456367188],[108.671441679688,25.1184865546876],[108.697345,25.1038430000001],[108.688939238281,25.0555422187501],[108.644405546875,25.0726613593751],[108.632899199219,25.0582888007813],[108.606932402344,25.047348859375],[108.613997832031,24.9905519843751],[108.503643828125,25.0042800117188],[108.501722441406,24.9888430000001],[108.504210234375,24.968843],[108.501102324219,24.943843],[108.503023710938,24.9283888984376],[108.479920683594,24.9098903632813],[108.487345,24.863843],[108.472633085938,24.857798078125],[108.4257825,24.867055890625],[108.434320097656,24.823843],[108.424307890625,24.773169171875],[108.391519804688,24.7496681953125],[108.381724882813,24.7360012031251],[108.362345,24.7398317695313],[108.329032011719,24.733247296875],[108.30252078125,24.7500807929688],[108.272345,24.7376784492188],[108.243170195313,24.7496681953125],[108.217345,24.753843],[108.21259890625,24.7591555],[108.17248171875,24.7567653632813],[108.160443144531,24.8085036445313],[108.124115019531,24.7678444648438],[108.068687773438,24.7711476875],[108.049173613281,24.7929885078125],[108.022625761719,24.7785622382813],[107.991468535156,24.7691237617188],[107.992718535156,24.7901076484375],[107.95244265625,24.8260939765625],[107.911595488281,24.8387062812501],[107.922940703125,24.848843],[107.9120325,24.85858909375],[107.912718535156,24.8701076484375],[107.89146609375,24.88909690625],[107.892655058594,24.9090431953125],[107.887345,24.923843],[107.9033996875,24.95851096875],[107.893343535156,25.0093947578125],[107.867615996094,25.0499172187501],[107.8739465625,25.0819435859376],[107.84244265625,25.1045241523438],[107.837345,25.123843],[107.852806425781,25.1283815742188],[107.871883574219,25.1393044257813],[107.892806425781,25.1483815742188],[107.911883574219,25.1593044257813],[107.932806425781,25.1683815742188],[107.951883574219,25.1793044257813],[108.031063261719,25.2025417304688],[108.072345,25.1983327460938],[108.098358183594,25.2009841132813],[108.121883574219,25.2293044257813],[108.133834257813,25.239233625],[108.131803007813,25.259165265625],[108.142886992188,25.2785207343751],[108.141007109375,25.2969753242187],[108.153016386719,25.3289382148438],[108.141803007813,25.348520734375],[108.143873320313,25.3688430000001],[108.141790800781,25.3892848945313],[108.182806425781,25.3983815742188],[108.191883574219,25.4134596992188],[108.153240996094,25.4455568671875],[108.186436796875,25.4599538398438],[108.205582304688,25.45800315625],[108.221883574219,25.4383815742188],[108.243826933594,25.4293044257813],[108.241326933594,25.4538430000001],[108.243089628906,25.4711550117188],[108.2875403125,25.4904323554688],[108.297345,25.5238430000001],[108.31298953125,25.52819846875],[108.342689238281,25.5398757148438],[108.360413847656,25.5169118476563],[108.400260039063,25.486157453125]],[[107.915152617188,24.8872658515625],[107.927345,24.8838430000001],[107.923922148438,24.8960353828126],[107.915152617188,24.8872658515625]]]]}},{"type":"Feature","properties":{"name":"金城江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.923922148438,24.8960353828126],[107.927345,24.8838430000001],[107.915152617188,24.8872658515625],[107.923922148438,24.8960353828126]]],[[[107.892655058594,24.9090431953125],[107.89146609375,24.88909690625],[107.912718535156,24.8701076484375],[107.9120325,24.85858909375],[107.922940703125,24.848843],[107.911595488281,24.8387062812501],[107.95244265625,24.8260939765625],[107.992718535156,24.7901076484375],[107.991468535156,24.7691237617188],[108.022625761719,24.7785622382813],[108.049173613281,24.7929885078125],[108.068687773438,24.7711476875],[108.124115019531,24.7678444648438],[108.160443144531,24.8085036445313],[108.17248171875,24.7567653632813],[108.21259890625,24.7591555],[108.217345,24.753843],[108.223865996094,24.7141408515625],[108.221605253906,24.698843],[108.223421660156,24.6865627265625],[108.176241484375,24.667251203125],[108.19298953125,24.6394875312501],[108.20170046875,24.6181984687501],[108.23170046875,24.595044171875],[108.220699492188,24.5611428046875],[108.196263457031,24.5294875312501],[108.15170046875,24.53819846875],[108.13248171875,24.5497927070313],[108.102147246094,24.5378688789063],[108.072542753906,24.5598171210938],[108.057345,24.553843],[108.053260527344,24.5597585273438],[108.021429472656,24.5679274726563],[107.992623320313,24.5800270820313],[107.977345,24.5766017890625],[107.962345,24.5799636054688],[107.947345,24.5766017890625],[107.928538847656,24.5808180976563],[107.934586210938,24.553843],[107.931224394531,24.5388430000001],[107.933465605469,24.528843],[107.926734648438,24.4988185859376],[107.874788847656,24.4854885078125],[107.863260527344,24.4658278632813],[107.89408328125,24.4184963203125],[107.881429472656,24.4097585273438],[107.873260527344,24.3979274726563],[107.847030058594,24.3798171210938],[107.825697050781,24.4107155585938],[107.811898222656,24.407622296875],[107.792345,24.4203542304687],[107.77228640625,24.4072927070312],[107.767345,24.363843],[107.752584257813,24.3700417304688],[107.727345,24.363843],[107.702869902344,24.3996584296875],[107.682147246094,24.39659690625],[107.67298953125,24.42948753125],[107.661549101563,24.448452375],[107.663084746094,24.4588430000001],[107.660867949219,24.473843],[107.663084746094,24.488843],[107.659854765625,24.5106911445313],[107.641732207031,24.508012921875],[107.63298953125,24.5594875312501],[107.603792753906,24.5988649726563],[107.586058378906,24.6125563789063],[107.57298953125,24.62948753125],[107.56170046875,24.63819846875],[107.550572539063,24.6526174140625],[107.557345,24.6938430000001],[107.573629179688,24.7078713203125],[107.571942167969,24.7288430000001],[107.572764921875,24.7390822578125],[107.55271609375,24.793676984375],[107.614290800781,24.8180471015626],[107.611346464844,24.7814040351562],[107.632703886719,24.7473049140626],[107.675843535156,24.7713747382813],[107.715208769531,24.7682106757813],[107.711541777344,24.813843],[107.713270292969,24.8353591132813],[107.69271609375,24.8592140937501],[107.675220976563,24.8742897773438],[107.702066679688,24.8892678046876],[107.730787382813,24.886958234375],[107.772972441406,24.9199977851563],[107.792345,24.9184401679688],[107.828624296875,24.9213552070313],[107.84271609375,24.90921409375],[107.859947539063,24.88921409375],[107.87271609375,24.8984719062501],[107.88197390625,24.91921409375],[107.887345,24.923843],[107.892655058594,24.9090431953125]]]]}},{"type":"Feature","properties":{"name":"罗城仫佬族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.947345,24.743843],[108.970343046875,24.739790265625],[108.952779570313,24.7311452460938],[108.947345,24.743843]]],[[[108.947345,24.743843],[108.937191191406,24.7368312812501],[108.947554960938,24.6906032539063],[108.965557890625,24.6781716132812],[108.959115019531,24.6494289375],[108.921429472656,24.6397585273438],[108.897345,24.623843],[108.881121855469,24.6180226875001],[108.804813261719,24.6225710273438],[108.783846464844,24.6682546210938],[108.731871367188,24.6279763007813],[108.683861113281,24.6308376289062],[108.671702910156,24.6830886054688],[108.673140898438,24.7072023750001],[108.661048613281,24.752348859375],[108.621121855469,24.7380226875001],[108.602108183594,24.7391555],[108.566121855469,24.71401878125],[108.52173953125,24.7636916328126],[108.5237903125,24.7980837226563],[108.506783476563,24.8132814765625],[108.490980253906,24.8309645820313],[108.4926575,24.85909690625],[108.487345,24.863843],[108.479920683594,24.9098903632813],[108.503023710938,24.9283888984376],[108.501102324219,24.943843],[108.504210234375,24.968843],[108.501722441406,24.9888430000001],[108.503643828125,25.0042800117188],[108.613997832031,24.9905519843751],[108.606932402344,25.047348859375],[108.632899199219,25.0582888007813],[108.644405546875,25.0726613593751],[108.688939238281,25.0555422187501],[108.697345,25.1038430000001],[108.735111113281,25.1085671210938],[108.751890898438,25.1295217109375],[108.767345,25.1276003242188],[108.791890898438,25.1306520820313],[108.807706328125,25.1109035468751],[108.842115507813,25.1598561835938],[108.86373171875,25.1471486640625],[108.903370390625,25.1520803046876],[108.901041289063,25.1333596015625],[108.955767851563,25.1265505195313],[108.982572050781,25.1706813789063],[109.002738066406,25.1681716132813],[109.04396609375,25.1982888007812],[109.089803496094,25.1642702460938],[109.098629179688,25.0933132148438],[109.082899199219,25.0382888007813],[109.066239042969,25.0249489570313],[109.052899199219,25.0082888007812],[108.983006621094,24.9591628242188],[108.979366484375,24.9298928046876],[109.06912234375,24.9172585273438],[109.082899199219,24.9282888007813],[109.095538359375,24.9582888007813],[109.130128203125,24.9405690742188],[109.154324980469,24.9074416328125],[109.131666289063,24.8892971015625],[109.134210234375,24.868843],[109.131666289063,24.8483888984376],[109.148450957031,24.8349489570313],[109.157345,24.823843],[109.134810820313,24.7946486640626],[109.090699492188,24.8127028632813],[109.094466582031,24.83819846875],[109.033612089844,24.8220168281251],[108.987003203125,24.7602712226563],[108.972345,24.7581032539063],[108.95978640625,24.7599611640626],[108.947345,24.743843]]]]}},{"type":"Feature","properties":{"name":"南丹县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.687345,25.203843],[107.675152617188,25.2004201484376],[107.683922148438,25.1916506171875],[107.702806425781,25.2083815742188],[107.717884550781,25.2265309882813],[107.752735625,25.2396266914063],[107.761883574219,25.1983815742188],[107.781253691406,25.1645607734375],[107.783053007813,25.1468923164063],[107.754888945313,25.1234963203126],[107.812515898438,25.12937034375],[107.837345,25.123843],[107.84244265625,25.1045241523438],[107.8739465625,25.0819435859376],[107.867615996094,25.0499172187501],[107.893343535156,25.0093947578125],[107.9033996875,24.95851096875],[107.887345,24.923843],[107.88197390625,24.91921409375],[107.87271609375,24.8984719062501],[107.859947539063,24.88921409375],[107.84271609375,24.90921409375],[107.828624296875,24.9213552070313],[107.792345,24.9184401679688],[107.772972441406,24.9199977851563],[107.730787382813,24.886958234375],[107.702066679688,24.8892678046876],[107.675220976563,24.8742897773438],[107.69271609375,24.8592140937501],[107.713270292969,24.8353591132813],[107.711541777344,24.813843],[107.715208769531,24.7682106757813],[107.675843535156,24.7713747382813],[107.632703886719,24.7473049140626],[107.611346464844,24.7814040351562],[107.614290800781,24.8180471015626],[107.55271609375,24.793676984375],[107.572764921875,24.7390822578125],[107.571942167969,24.7288430000001],[107.573629179688,24.7078713203125],[107.557345,24.6938430000001],[107.519139433594,24.7415529609376],[107.48373171875,24.7371486640625],[107.457464628906,24.7525905585938],[107.416727324219,24.7475221992188],[107.390714140625,24.7046926093751],[107.344906035156,24.7103908515625],[107.331527128906,24.787270734375],[107.336641875,24.8283888984375],[107.317345,24.8438430000001],[107.262840605469,24.9097072578125],[107.282345,24.9085451484376],[107.292345,24.9091408515625],[107.323331328125,24.9072951484375],[107.321749296875,24.933843],[107.3231653125,24.9576198554688],[107.306783476563,25.0032814765625],[107.286370878906,25.069380109375],[107.269459257813,25.0683718085938],[107.232603789063,25.1191555],[107.213643828125,25.1180275703125],[107.202625761719,25.1217580390625],[107.2226575,25.158618390625],[107.221749296875,25.173843],[107.223250761719,25.1990261054688],[107.162064238281,25.2085622382812],[107.13812625,25.2353517890625],[107.122625761719,25.2691237617188],[107.112064238281,25.2785622382813],[107.102625761719,25.2906911445313],[107.133284941406,25.3180837226563],[107.129976835938,25.3735768867188],[107.162625761719,25.3885622382813],[107.172064238281,25.4015090156251],[107.099307890625,25.397173078125],[107.071888457031,25.4402834296875],[107.032064238281,25.4585622382813],[107.007345,25.473843],[107.011519804688,25.4996681953126],[107.069984160156,25.5113893867187],[107.057345,25.5638430000001],[107.091846953125,25.5723171210938],[107.1236340625,25.56519065625],[107.173260527344,25.5779274726563],[107.200877714844,25.6179274726563],[107.233624296875,25.5995534492188],[107.223551054688,25.5546169257813],[107.265516386719,25.5389138007813],[107.293260527344,25.5197585273438],[107.301429472656,25.5079274726563],[107.327345,25.503843],[107.321807890625,25.4891091132813],[107.325872832031,25.4492336250001],[107.297513457031,25.4256764960937],[107.317257109375,25.40190940625],[107.361954375,25.3973537421876],[107.377345,25.4158815742188],[107.391883574219,25.3983815742188],[107.416336699219,25.3877736640625],[107.401673613281,25.3487477851563],[107.412806425781,25.3293044257813],[107.427315703125,25.2798659492188],[107.442667265625,25.2783010078125],[107.476832304688,25.2978688789063],[107.4684778125,25.2159011054688],[107.502345,25.2193532539063],[107.512735625,25.2182936835938],[107.521954375,25.2293923164063],[107.532735625,25.2282936835938],[107.546346464844,25.2446804023437],[107.572022734375,25.2593849921876],[107.582345,25.2583327460938],[107.592345,25.2593532539063],[107.6027746875,25.2582888007813],[107.623621855469,25.3139455390625],[107.657345,25.323843],[107.671297636719,25.313843],[107.650799589844,25.2991530585938],[107.66341921875,25.2792751289063],[107.657772246094,25.2507033515626],[107.678995390625,25.235493390625],[107.687345,25.203843]]]]}},{"type":"Feature","properties":{"name":"天峨县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.007345,24.733843],[107.019537382813,24.7304201484375],[107.010767851563,24.7216506171875],[107.007345,24.733843]]],[[[107.007345,24.733843],[106.964940214844,24.7410475898438],[106.942857695313,24.7696584296876],[106.923367949219,24.7667775703125],[106.943294707031,24.6984352851563],[106.931529570313,24.6893556953126],[106.934561796875,24.668843],[106.930867949219,24.6438430000001],[106.933140898438,24.628452375],[106.916063261719,24.6001369453125],[106.86298953125,24.6394875312501],[106.83170046875,24.64819846875],[106.82298953125,24.65948753125],[106.807345,24.663843],[106.817511015625,24.6908986640625],[106.790394316406,24.6881349921875],[106.772806425781,24.7093044257812],[106.727398710938,24.7373146796875],[106.701883574219,24.7483815742188],[106.674273710938,24.7641921210938],[106.652806425781,24.8017848945313],[106.716961699219,24.8183815742188],[106.751883574219,24.7983815742188],[106.778870878906,24.7893044257813],[106.799808378906,24.837583234375],[106.826707792969,24.859926984375],[106.849510527344,24.857602765625],[106.827557402344,24.8959304023438],[106.773619414063,24.9342507148438],[106.752806425781,24.9593044257813],[106.741883574219,24.9683815742188],[106.732806425781,24.9893044257813],[106.721883574219,25.0083815742188],[106.712806425781,25.0323635078125],[106.752664824219,25.0283010078125],[106.761883574219,25.0334596992188],[106.740936308594,25.0700319648438],[106.744798613281,25.107915265625],[106.687884550781,25.0865309882813],[106.672806425781,25.0683815742187],[106.59213015625,25.0540041328125],[106.567345,25.083843],[106.582899199219,25.0882888007813],[106.60068484375,25.11050315625],[106.631632109375,25.1352834296875],[106.648472929688,25.1752516914063],[106.69095828125,25.1805373359375],[106.722345,25.1620876289063],[106.75373171875,25.1805373359375],[106.800426054688,25.1747292304687],[106.852127714844,25.1894924140626],[106.889068632813,25.1848976875001],[106.910052519531,25.2582888007813],[106.942899199219,25.2493971992188],[106.977723417969,25.2360109687501],[106.991790800781,25.2693971992188],[107.011790800781,25.2854128242188],[107.002586699219,25.3516384101563],[106.981776152344,25.3683010078125],[106.9594153125,25.4466139960938],[106.982345,25.4494655585938],[106.992843046875,25.44815940625],[107.001790800781,25.4693971992188],[107.007345,25.473843],[107.032064238281,25.4585622382813],[107.071888457031,25.4402834296875],[107.099307890625,25.397173078125],[107.172064238281,25.4015090156251],[107.162625761719,25.3885622382813],[107.129976835938,25.3735768867188],[107.133284941406,25.3180837226563],[107.102625761719,25.2906911445313],[107.112064238281,25.2785622382813],[107.122625761719,25.2691237617188],[107.13812625,25.2353517890625],[107.162064238281,25.2085622382812],[107.223250761719,25.1990261054688],[107.221749296875,25.173843],[107.2226575,25.158618390625],[107.202625761719,25.1217580390625],[107.213643828125,25.1180275703125],[107.232603789063,25.1191555],[107.269459257813,25.0683718085938],[107.286370878906,25.069380109375],[107.306783476563,25.0032814765625],[107.3231653125,24.9576198554688],[107.321749296875,24.933843],[107.323331328125,24.9072951484375],[107.292345,24.9091408515625],[107.282345,24.9085451484376],[107.262840605469,24.9097072578125],[107.317345,24.8438430000001],[107.299906035156,24.83698753125],[107.282135039063,24.8396120429688],[107.242120390625,24.8279470039063],[107.22248171875,24.8397927070313],[107.16048953125,24.8154225898438],[107.132345,24.8195827460938],[107.104127226563,24.8154128242187],[107.09298953125,24.78819846875],[107.087345,24.783843],[107.063372832031,24.7719264960938],[107.053985625,24.790483625],[107.040704375,24.797202375],[107.033985625,24.8204836250001],[107.022642851563,24.8272023750001],[107.012315703125,24.7914162421875],[106.990704375,24.7804836250001],[106.983985625,24.7606008125],[107.003985625,24.750483625],[107.007345,24.733843]]]]}},{"type":"Feature","properties":{"name":"宜州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.4257825,24.867055890625],[108.472633085938,24.857798078125],[108.487345,24.863843],[108.4926575,24.85909690625],[108.490980253906,24.8309645820313],[108.506783476563,24.8132814765625],[108.5237903125,24.7980837226563],[108.52173953125,24.7636916328126],[108.566121855469,24.71401878125],[108.602108183594,24.7391555],[108.621121855469,24.7380226875001],[108.661048613281,24.752348859375],[108.673140898438,24.7072023750001],[108.671702910156,24.6830886054688],[108.683861113281,24.6308376289062],[108.731871367188,24.6279763007813],[108.783846464844,24.6682546210938],[108.804813261719,24.6225710273438],[108.881121855469,24.6180226875001],[108.897345,24.623843],[108.90900515625,24.5935060859375],[108.843863554688,24.5660549140626],[108.840535917969,24.5392971015625],[108.852899199219,24.5293971992188],[108.861890898438,24.5181642890625],[108.893370390625,24.5220803046875],[108.89166140625,24.508344953125],[108.912899199219,24.4993971992188],[108.948800078125,24.4731716132813],[108.9637121875,24.49179221875],[109.027345,24.483843],[109.03197390625,24.46847190625],[109.043951445313,24.458149640625],[109.001710234375,24.4217555976563],[109.00412234375,24.3917116523438],[108.992669707031,24.3784157539063],[108.923958769531,24.3839357734375],[108.921942167969,24.358843],[108.923563261719,24.3386672187501],[108.917345,24.2638430000001],[108.866058378906,24.2725563789063],[108.849427519531,24.2940993476563],[108.853084746094,24.318843],[108.850179472656,24.3384987617188],[108.808695097656,24.3705202460938],[108.787345,24.3673659492188],[108.772345,24.3695827460938],[108.761832304688,24.3680275703125],[108.751204863281,24.3817995429687],[108.729427519531,24.3535866523438],[108.733822050781,24.323843],[108.731195097656,24.3060524726563],[108.67103640625,24.2893019843751],[108.684327421875,24.2672658515625],[108.681605253906,24.248843],[108.684561796875,24.2288430000001],[108.674268828125,24.1591872382813],[108.66170046875,24.14948753125],[108.652857695313,24.1380275703125],[108.590362578125,24.1472634101563],[108.59312625,24.1285500312501],[108.579810820313,24.0946804023438],[108.593336210938,24.048296125],[108.56009890625,24.0390407539063],[108.56412234375,24.01181175],[108.526143828125,23.99948753125],[108.507345,24.023843],[108.50271609375,24.04921409375],[108.49060671875,24.0821950507813],[108.492769804688,24.1091213203126],[108.466920195313,24.1554518867188],[108.482764921875,24.1986037421876],[108.481942167969,24.208843],[108.482747832031,24.218843],[108.481942167969,24.2288430000001],[108.483470488281,24.2478615546875],[108.467059355469,24.2772780585938],[108.44197390625,24.2884719062501],[108.432020292969,24.3000221992188],[108.381712675781,24.2959792304688],[108.384398222656,24.32940940625],[108.372066679688,24.3284181953125],[108.35271609375,24.33921409375],[108.3319153125,24.3484963203125],[108.332772246094,24.3591677070313],[108.321917753906,24.3685182929688],[108.322747832031,24.3788430000001],[108.321051054688,24.3999440742188],[108.300250273438,24.3982741523438],[108.262215605469,24.4194948554688],[108.245308867188,24.3998732734375],[108.190194121094,24.4306227851563],[108.192747832031,24.398843],[108.191849394531,24.3876784492188],[108.136024199219,24.3921633125],[108.103460722656,24.4299587226563],[108.071812773438,24.4572243476563],[108.072747832031,24.468843],[108.071920195313,24.4791213203125],[108.086766386719,24.505727765625],[108.044132109375,24.5424587226563],[108.057345,24.553843],[108.072542753906,24.5598171210938],[108.102147246094,24.5378688789063],[108.13248171875,24.5497927070313],[108.15170046875,24.53819846875],[108.196263457031,24.5294875312501],[108.220699492188,24.5611428046875],[108.23170046875,24.595044171875],[108.20170046875,24.6181984687501],[108.19298953125,24.6394875312501],[108.176241484375,24.667251203125],[108.223421660156,24.6865627265625],[108.221605253906,24.698843],[108.223865996094,24.7141408515625],[108.217345,24.753843],[108.243170195313,24.7496681953125],[108.272345,24.7376784492188],[108.30252078125,24.7500807929688],[108.329032011719,24.733247296875],[108.362345,24.7398317695313],[108.381724882813,24.7360012031251],[108.391519804688,24.7496681953125],[108.424307890625,24.773169171875],[108.434320097656,24.823843],[108.4257825,24.867055890625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"合山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.077345,23.323843],[109.090042753906,23.3292775703126],[109.081397734375,23.346841046875],[109.051158476563,23.3276564765626],[109.043531523438,23.3500295234375],[109.025240507813,23.3613014960938],[108.998033476563,23.3528273750001],[108.971873808594,23.3711940742188],[108.963150664063,23.3570339179688],[108.926907988281,23.3683229804688],[108.909886503906,23.3959474921875],[108.917769804688,23.4212575507813],[108.889635039063,23.4385939765625],[108.867345,23.443843],[108.862296171875,23.463520734375],[108.841429472656,23.4779274726563],[108.833260527344,23.4897585273438],[108.821429472656,23.4979274726563],[108.803260527344,23.5697585273438],[108.78115359375,23.6185329414062],[108.784798613281,23.6347927070313],[108.768409453125,23.6876735664063],[108.799967070313,23.7094606757813],[108.781429472656,23.7379274726563],[108.771969023438,23.7747878242187],[108.731429472656,23.7979274726563],[108.727345,23.803843],[108.733441191406,23.8077468085938],[108.742345,23.8672731757813],[108.767508574219,23.8279665351563],[108.837345,23.823843],[108.871824980469,23.81726096875],[108.852154570313,23.7990334296876],[108.842535429688,23.7831911445313],[108.888533964844,23.7614821601563],[108.862154570313,23.7490334296875],[108.852535429688,23.7179103828125],[108.892940703125,23.6988430000001],[108.892139921875,23.6786867500001],[108.899991484375,23.6590334296876],[108.960301542969,23.7052809882813],[109.031890898438,23.7279470039063],[109.052154570313,23.750122296875],[109.03134890625,23.7693971992188],[109.003792753906,23.7683058906251],[108.992535429688,23.8394289375],[109.012523222656,23.838637921875],[109.024974394531,23.8520778632813],[109.012139921875,23.8886916328126],[109.012550078125,23.8990212226563],[109.007345,23.903843],[109.02170046875,23.93948753125],[109.033160429688,23.9483303046875],[109.030867949219,23.9638430000001],[109.034561796875,23.988843],[109.031226835938,24.0114015937501],[109.053160429688,24.0283303046876],[109.05045046875,24.0466677070313],[109.07170046875,24.05948753125],[109.097345,24.063843],[109.132899199219,24.0593971992188],[109.142174101563,24.0269557929688],[109.162703886719,24.0295095039063],[109.184871855469,24.01647971875],[109.212899199219,24.0282888007813],[109.221878691406,24.0597023750001],[109.295433378906,24.0386721015625],[109.291441679688,24.006577375],[109.325155058594,23.9795803046876],[109.343011503906,23.9492018867188],[109.340709257813,23.9306838203125],[109.369949980469,23.9134938789063],[109.412628203125,23.9081862617187],[109.427345,23.913843],[109.43533328125,23.90183128125],[109.453350859375,23.8898488593751],[109.461339140625,23.867837140625],[109.485643339844,23.8369338203125],[109.474407988281,23.7923415351563],[109.521358671875,23.779848859375],[109.527345,23.803843],[109.578475371094,23.7949440742188],[109.584154082031,23.7492971015625],[109.542899199219,23.7162575507813],[109.553016386719,23.6958156562501],[109.58431765625,23.6997096992188],[109.580535917969,23.6692971015625],[109.60107546875,23.65284690625],[109.571790800781,23.6293971992188],[109.548175078125,23.5905129218751],[109.521790800781,23.5793971992188],[109.496470976563,23.5377077460938],[109.471478300781,23.5408156562501],[109.474210234375,23.518843],[109.469857207031,23.483843],[109.473011503906,23.4584841132813],[109.455589628906,23.4288430000001],[109.472899199219,23.3993971992187],[109.477345,23.383843],[109.44170046875,23.3794875312501],[109.430360136719,23.3647951484376],[109.371868925781,23.3877883125001],[109.36298953125,23.40948753125],[109.333453398438,23.41819846875],[109.282323027344,23.3802907539063],[109.266324492188,23.3595632148438],[109.213111601563,23.3377858710938],[109.207345,23.303843],[109.201429472656,23.2997585273438],[109.193260527344,23.2779274726563],[109.177069121094,23.2697585273438],[109.163260527344,23.2897585273438],[109.134622832031,23.300473859375],[109.098992949219,23.2924880195313],[109.077345,23.323843]]]]}},{"type":"Feature","properties":{"name":"金秀瑶族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.397345,24.0438430000001],[110.377345,24.0438430000001],[110.377345,24.063843],[110.397345,24.063843],[110.397345,24.0438430000001]]],[[[109.897345,24.173843],[109.893922148438,24.1616506171875],[109.885152617188,24.1704201484376],[109.897345,24.173843]]],[[[109.897345,24.173843],[109.897345,24.183843],[109.917345,24.183843],[109.917345,24.243843],[109.942625761719,24.2485622382813],[109.964095488281,24.2602297187501],[110.000848417969,24.2580373359375],[110.033612089844,24.2873122382813],[110.012723417969,24.3257521796875],[110.042625761719,24.3685622382812],[110.052064238281,24.4191237617187],[110.062625761719,24.4385622382813],[110.072083769531,24.4691872382813],[110.117345,24.4638430000001],[110.134205351563,24.4403176093751],[110.196038847656,24.4525368476563],[110.191356230469,24.428843],[110.193333769531,24.4188430000001],[110.191234160156,24.4082228828125],[110.204320097656,24.398843],[110.189503203125,24.3882228828125],[110.193333769531,24.368843],[110.190301542969,24.3534987617188],[110.222345,24.3598317695313],[110.237345,24.3568679023438],[110.263983183594,24.3621315742188],[110.256436796875,24.3239430976563],[110.281519804688,24.3080178046875],[110.313170195313,24.2996681953125],[110.317345,24.293843],[110.32170046875,24.28819846875],[110.364605742188,24.279145734375],[110.357735625,24.2326540351563],[110.381954375,24.2180471015625],[110.401832304688,24.2209841132813],[110.41170046875,24.2081984687501],[110.451307402344,24.1919899726563],[110.427054472656,24.1517848945313],[110.456619902344,24.1289650703126],[110.41170046875,24.11948753125],[110.401204863281,24.1058864570313],[110.377811308594,24.1361940742188],[110.360362578125,24.1072658515625],[110.363160429688,24.0883303046875],[110.339388457031,24.0699831367188],[110.358631621094,24.0551296210938],[110.367345,24.0438430000001],[110.36298953125,24.03819846875],[110.31470828125,24.0280104804688],[110.289810820313,23.9646804023438],[110.307174101563,23.9051369453125],[110.291549101563,23.8792336250001],[110.294407988281,23.8598854804687],[110.281805449219,23.8580251289063],[110.26298953125,23.88948753125],[110.23170046875,23.8981984687501],[110.202974882813,23.9155275703125],[110.191358671875,23.8604714179688],[110.142000761719,23.8798757148438],[110.13298953125,23.86819846875],[110.093482695313,23.8377053046876],[110.067345,23.803843],[110.039176054688,23.7920119453125],[109.991429472656,23.7797585273438],[109.983260527344,23.7579274726563],[109.951104765625,23.71937034375],[109.955223417969,23.7009987617188],[109.927345,23.6938430000001],[109.906615019531,23.735180890625],[109.882735625,23.7162111640626],[109.871109648438,23.7218874335938],[109.863985625,23.697202375],[109.823985625,23.6967263007813],[109.839888945313,23.72929221875],[109.817345,23.7338430000001],[109.82170046875,23.73948753125],[109.833104277344,23.7887013984376],[109.831605253906,23.798843],[109.834561796875,23.818843],[109.82791140625,23.863843],[109.833504667969,23.901684796875],[109.892630644531,23.887983625],[109.915889921875,23.9020143867188],[109.944722929688,23.8977516914063],[109.941517363281,23.9194362617188],[109.97298953125,23.92819846875],[109.98170046875,23.9494875312501],[109.99298953125,23.95819846875],[110.00170046875,23.99948753125],[110.01298953125,24.0081984687501],[110.02170046875,24.0294875312501],[110.065340605469,24.0555861640626],[110.05170046875,24.07819846875],[110.04298953125,24.12948753125],[110.027088652344,24.1417604804688],[110.001954375,24.1380471015625],[109.982735625,24.1496388984375],[109.967345,24.1473659492187],[109.952345,24.1495827460938],[109.933565703125,24.1468068671875],[109.897345,24.173843]],[[110.413922148438,24.1560353828125],[110.405152617188,24.1472658515625],[110.417345,24.143843],[110.413922148438,24.1560353828125]]]]}},{"type":"Feature","properties":{"name":"武宣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.676058378906,23.9025563789063],[109.700091582031,23.8840041328125],[109.65298953125,23.8909645820313],[109.664991484375,23.8733791328125],[109.68298953125,23.85948753125],[109.69170046875,23.83819846875],[109.704327421875,23.8172658515625],[109.700062285156,23.7883986640626],[109.77298953125,23.77948753125],[109.79170046875,23.7481984687501],[109.817345,23.7338430000001],[109.839888945313,23.72929221875],[109.823985625,23.6967263007813],[109.863985625,23.697202375],[109.871109648438,23.7218874335938],[109.882735625,23.7162111640626],[109.906615019531,23.735180890625],[109.927345,23.6938430000001],[109.918870878906,23.659341046875],[109.924801054688,23.6328932929688],[109.913260527344,23.5879274726562],[109.889371367188,23.5571047187501],[109.898182402344,23.5178054023438],[109.878084746094,23.4640920234375],[109.851788359375,23.446968],[109.836461210938,23.4879274726563],[109.781429472656,23.4797585273438],[109.773260527344,23.4679274726563],[109.731429472656,23.4597585273438],[109.723260527344,23.4179274726563],[109.701429472656,23.4097585273438],[109.697345,23.403843],[109.673260527344,23.4197585273438],[109.643663359375,23.4279274726563],[109.603260527344,23.3679274726563],[109.571429472656,23.3597585273438],[109.561329375,23.3204030585937],[109.537345,23.303843],[109.529176054688,23.3156740546875],[109.505513945313,23.3320119453125],[109.481851835938,23.36628440625],[109.477345,23.383843],[109.472899199219,23.3993971992187],[109.455589628906,23.4288430000001],[109.473011503906,23.4584841132813],[109.469857207031,23.483843],[109.474210234375,23.518843],[109.471478300781,23.5408156562501],[109.496470976563,23.5377077460938],[109.521790800781,23.5793971992188],[109.548175078125,23.5905129218751],[109.571790800781,23.6293971992188],[109.60107546875,23.65284690625],[109.580535917969,23.6692971015625],[109.58431765625,23.6997096992188],[109.553016386719,23.6958156562501],[109.542899199219,23.7162575507813],[109.584154082031,23.7492971015625],[109.578475371094,23.7949440742188],[109.527345,23.803843],[109.519014921875,23.8250319648438],[109.53298953125,23.84819846875],[109.548170195313,23.8852931953125],[109.57170046875,23.89948753125],[109.60298953125,23.90819846875],[109.654368925781,23.9306520820313],[109.676058378906,23.9025563789063]]]]}},{"type":"Feature","properties":{"name":"象州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.897345,24.173843],[109.885152617188,24.1704201484376],[109.893922148438,24.1616506171875],[109.933565703125,24.1468068671875],[109.952345,24.1495827460938],[109.967345,24.1473659492187],[109.982735625,24.1496388984375],[110.001954375,24.1380471015625],[110.027088652344,24.1417604804688],[110.04298953125,24.12948753125],[110.05170046875,24.07819846875],[110.065340605469,24.0555861640626],[110.02170046875,24.0294875312501],[110.01298953125,24.0081984687501],[110.00170046875,23.99948753125],[109.99298953125,23.95819846875],[109.98170046875,23.9494875312501],[109.97298953125,23.92819846875],[109.941517363281,23.9194362617188],[109.944722929688,23.8977516914063],[109.915889921875,23.9020143867188],[109.892630644531,23.887983625],[109.833504667969,23.901684796875],[109.82791140625,23.863843],[109.834561796875,23.818843],[109.831605253906,23.798843],[109.833104277344,23.7887013984376],[109.82170046875,23.73948753125],[109.817345,23.7338430000001],[109.79170046875,23.7481984687501],[109.77298953125,23.77948753125],[109.700062285156,23.7883986640626],[109.704327421875,23.8172658515625],[109.69170046875,23.83819846875],[109.68298953125,23.85948753125],[109.664991484375,23.8733791328125],[109.65298953125,23.8909645820313],[109.700091582031,23.8840041328125],[109.676058378906,23.9025563789063],[109.654368925781,23.9306520820313],[109.60298953125,23.90819846875],[109.57170046875,23.89948753125],[109.548170195313,23.8852931953125],[109.53298953125,23.84819846875],[109.519014921875,23.8250319648438],[109.527345,23.803843],[109.521358671875,23.779848859375],[109.474407988281,23.7923415351563],[109.485643339844,23.8369338203125],[109.461339140625,23.867837140625],[109.453350859375,23.8898488593751],[109.43533328125,23.90183128125],[109.427345,23.913843],[109.44170046875,23.93948753125],[109.458631621094,23.9525563789062],[109.471832304688,23.9696584296876],[109.489854765625,23.9669948554688],[109.493822050781,23.993843],[109.486185332031,24.0455251289063],[109.52170046875,24.05948753125],[109.584371367188,24.0727126289063],[109.614127226563,24.1454128242188],[109.647345,24.1503200507813],[109.665213652344,24.147680890625],[109.70298953125,24.15819846875],[109.714129667969,24.1982033515625],[109.747345,24.223843],[109.758914824219,24.2093971992188],[109.772899199219,24.2182888007813],[109.781790800781,24.2293971992188],[109.792899199219,24.2382888007813],[109.801846953125,24.25952659375],[109.817486601563,24.2575807929687],[109.842899199219,24.2682888007813],[109.910946074219,24.3082888007813],[109.928446074219,24.2806276679688],[109.896632109375,24.2672219062501],[109.911790800781,24.2482888007813],[109.917345,24.243843],[109.917345,24.183843],[109.897345,24.183843],[109.897345,24.173843]]]]}},{"type":"Feature","properties":{"name":"忻城县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.751204863281,24.3817995429687],[108.761832304688,24.3680275703125],[108.772345,24.3695827460938],[108.787345,24.3673659492188],[108.808695097656,24.3705202460938],[108.850179472656,24.3384987617188],[108.853084746094,24.318843],[108.849427519531,24.2940993476563],[108.866058378906,24.2725563789063],[108.917345,24.2638430000001],[108.928199492188,24.2571559882813],[108.933902617188,24.238843],[108.929229765625,24.223843],[108.935460234375,24.203843],[108.929534941406,24.1848171210938],[108.953531523438,24.1700295234376],[108.969466582031,24.1232741523438],[108.997965117188,24.1321511054688],[109.038389921875,24.11837425],[109.051158476563,24.0976564765626],[109.093531523438,24.0900295234375],[109.097345,24.063843],[109.07170046875,24.05948753125],[109.05045046875,24.0466677070313],[109.053160429688,24.0283303046876],[109.031226835938,24.0114015937501],[109.034561796875,23.988843],[109.030867949219,23.9638430000001],[109.033160429688,23.9483303046875],[109.02170046875,23.93948753125],[109.007345,23.903843],[108.985662871094,23.8947365546875],[108.961673613281,23.9001149726563],[108.952345,23.8866017890625],[108.943260527344,23.8997585273438],[108.911429472656,23.9079274726563],[108.892791777344,23.9200637031251],[108.8729309375,23.9156130195313],[108.863260527344,23.8779274726563],[108.843397246094,23.8474221015626],[108.837345,23.823843],[108.767508574219,23.8279665351563],[108.742345,23.8672731757813],[108.733441191406,23.8077468085938],[108.727345,23.803843],[108.702113066406,23.7885427070313],[108.672440214844,23.7891481757813],[108.662445097656,23.7787429023438],[108.632244902344,23.7689430976563],[108.622445097656,23.7587429023438],[108.602244902344,23.7489430976562],[108.580115996094,23.737544171875],[108.552445097656,23.7087429023438],[108.542244902344,23.6989430976563],[108.504100371094,23.6592409492188],[108.497345,23.6938430000001],[108.493170195313,23.7096681953126],[108.481519804688,23.7180178046876],[108.467874785156,23.737055890625],[108.491297636719,23.753843],[108.471519804688,23.7680178046875],[108.463170195313,23.7796681953126],[108.445694609375,23.7921926093751],[108.432965117188,23.8099538398438],[108.421676054688,23.8077223945313],[108.413170195313,23.8236843085938],[108.444820585938,23.8463674140626],[108.464898710938,23.8984279609375],[108.451519804688,23.9080178046876],[108.443170195313,23.9196681953125],[108.429503203125,23.9294631171875],[108.433333769531,23.948843],[108.431356230469,23.9588430000001],[108.434149199219,23.9729689765625],[108.489481230469,23.9943093085938],[108.477345,24.023843],[108.483372832031,24.0357595039063],[108.507345,24.023843],[108.526143828125,23.99948753125],[108.56412234375,24.01181175],[108.56009890625,24.0390407539063],[108.593336210938,24.048296125],[108.579810820313,24.0946804023438],[108.59312625,24.1285500312501],[108.590362578125,24.1472634101563],[108.652857695313,24.1380275703125],[108.66170046875,24.14948753125],[108.674268828125,24.1591872382813],[108.684561796875,24.2288430000001],[108.681605253906,24.248843],[108.684327421875,24.2672658515625],[108.67103640625,24.2893019843751],[108.731195097656,24.3060524726563],[108.733822050781,24.323843],[108.729427519531,24.3535866523438],[108.751204863281,24.3817995429687]]]]}},{"type":"Feature","properties":{"name":"兴宾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.943260527344,23.8997585273438],[108.952345,23.8866017890625],[108.961673613281,23.9001149726563],[108.985662871094,23.8947365546875],[109.007345,23.903843],[109.012550078125,23.8990212226563],[109.012139921875,23.8886916328126],[109.024974394531,23.8520778632813],[109.012523222656,23.838637921875],[108.992535429688,23.8394289375],[109.003792753906,23.7683058906251],[109.03134890625,23.7693971992188],[109.052154570313,23.750122296875],[109.031890898438,23.7279470039063],[108.960301542969,23.7052809882813],[108.899991484375,23.6590334296876],[108.892139921875,23.6786867500001],[108.892940703125,23.6988430000001],[108.852535429688,23.7179103828125],[108.862154570313,23.7490334296875],[108.888533964844,23.7614821601563],[108.842535429688,23.7831911445313],[108.852154570313,23.7990334296876],[108.871824980469,23.81726096875],[108.837345,23.823843],[108.843397246094,23.8474221015626],[108.863260527344,23.8779274726563],[108.8729309375,23.9156130195313],[108.892791777344,23.9200637031251],[108.911429472656,23.9079274726563],[108.943260527344,23.8997585273438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大新县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.097345,22.923843],[107.100767851563,22.9116506171876],[107.109537382813,22.9204201484376],[107.111173125,22.9404909492187],[107.139798613281,22.9375734687501],[107.154383574219,22.9496901679688],[107.123109160156,22.975669171875],[107.217835722656,23.002153546875],[107.249012480469,22.9842971015625],[107.263072539063,23.0088430000001],[107.247642851563,23.0357839179688],[107.262806425781,23.0483815742187],[107.278397246094,23.0671462226563],[107.32213015625,23.0793752265626],[107.332611113281,23.0783058906251],[107.347345,23.0838430000001],[107.337594023438,23.041762921875],[107.362735625,23.0380471015625],[107.381954375,23.0496388984375],[107.392345,23.0481032539063],[107.407345,23.0503200507813],[107.422345,23.0481032539063],[107.444605742188,23.0513942695313],[107.473482695313,23.029106671875],[107.49312625,22.97913596875],[107.491605253906,22.9688430000001],[107.493084746094,22.958843],[107.491605253906,22.948843],[107.493160429688,22.9383303046875],[107.477515898438,22.9262575507813],[107.49298953125,22.85948753125],[107.497345,22.8538430000001],[107.48170046875,22.8494875312501],[107.470809355469,22.835376203125],[107.437345,22.8403200507813],[107.418836699219,22.8375856757813],[107.423822050781,22.803843],[107.420179472656,22.7791872382812],[107.380867949219,22.7488430000001],[107.394486113281,22.7383303046876],[107.391302519531,22.7167800117188],[107.371954375,22.7196388984375],[107.335914335938,22.6978981757813],[107.308880644531,22.6628762031251],[107.32298953125,22.63948753125],[107.33373171875,22.6132350898438],[107.331549101563,22.5984523750001],[107.348785429688,22.5698757148438],[107.340657988281,22.5394875312501],[107.266651640625,22.5504225898438],[107.251182890625,22.6059743476563],[107.253084746094,22.618843],[107.251585722656,22.6289846015625],[107.257345,22.653843],[107.280765410156,22.6446364570313],[107.268426542969,22.66819846875],[107.257345,22.653843],[107.23189578125,22.6479470039063],[107.220960722656,22.6621120429688],[107.20298953125,22.61819846875],[107.1424621875,22.5934255195313],[107.114322539063,22.5569704414063],[107.133377714844,22.5084987617188],[107.127345,22.503843],[107.112623320313,22.4976589179687],[107.072274199219,22.506704328125],[107.055697050781,22.5307155585938],[107.041571074219,22.5275490546875],[107.033260527344,22.5497585273438],[106.999871855469,22.5728102851562],[107.004478789063,22.5933571601563],[106.956304960938,22.6208522773438],[106.937345,22.6166017890625],[106.915936308594,22.62140159375],[106.903260527344,22.6397585273438],[106.866319609375,22.6608425117188],[106.853260527344,22.6797585273438],[106.811429472656,22.7079274726563],[106.793260527344,22.7397585273438],[106.777345,22.7438430000001],[106.795030546875,22.7667580390625],[106.827347441406,22.7799831367188],[106.821087675781,22.8223513007812],[106.773880644531,22.8153762031251],[106.76298953125,22.82948753125],[106.716776152344,22.8616237617188],[106.70298953125,22.8794875312501],[106.667345,22.8938430000001],[106.675726347656,22.9265041328125],[106.713260527344,22.9479274726563],[106.725513945313,22.9656740546875],[106.755091582031,22.9860964179688],[106.775513945313,23.0156740546876],[106.793616972656,23.0281716132813],[106.789456816406,23.0467287421875],[106.803260527344,23.0679274726563],[106.807345,23.0838430000001],[106.843739042969,23.0975173164063],[106.840936308594,23.0700319648438],[106.856331816406,23.0431520820313],[106.881529570313,22.9760964179688],[106.812806425781,22.9337087226562],[106.825828886719,22.9117165351563],[106.852806425781,22.8893044257813],[106.874107695313,22.8401930976563],[106.897345,22.8378249335938],[106.912345,22.8393532539063],[106.941807890625,22.8363503242188],[106.982806425781,22.8483815742188],[106.991883574219,22.8693044257813],[107.053905058594,22.8785427070313],[107.050970488281,22.907329328125],[107.071883574219,22.9193044257812],[107.097345,22.923843]],[[107.095152617188,22.5572658515625],[107.107345,22.5538430000001],[107.103922148438,22.5660353828126],[107.095152617188,22.5572658515625]]]]}},{"type":"Feature","properties":{"name":"扶绥县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.713968535156,22.9505104804688],[107.743350859375,22.939848859375],[107.751339140625,22.927837140625],[107.757345,22.923843],[107.78968875,22.8819387031251],[107.86298953125,22.86948753125],[107.88170046875,22.85819846875],[107.962782011719,22.8444264960938],[107.984605742188,22.7911037421875],[108.027345,22.7838430000001],[108.02170046875,22.7694875312501],[108.01298953125,22.73819846875],[107.99298953125,22.705044171875],[108.001990996094,22.6876418281251],[108.045421171875,22.6554396796875],[108.085848417969,22.7078127265626],[108.097254667969,22.6306227851563],[107.996734648438,22.6135475898438],[107.991541777344,22.5784133125],[108.014554472656,22.5473732734376],[107.985279570313,22.4988405585938],[108.084564238281,22.458852765625],[108.078878203125,22.4203786445313],[108.107081328125,22.398608625],[108.097345,22.373843],[108.081519804688,22.3696681953126],[108.062777128906,22.35776878125],[108.051859160156,22.359926984375],[108.023170195313,22.3380178046875],[107.984681425781,22.3278639960938],[107.973170195313,22.2980178046875],[107.940252714844,22.2744264960938],[107.943472929688,22.2581349921876],[107.921519804688,22.2496681953125],[107.901971464844,22.2159523750001],[107.882345,22.2198317695313],[107.847345,22.212915265625],[107.811912871094,22.21991721875],[107.793170195313,22.2080178046875],[107.731519804688,22.1996681953125],[107.661329375,22.1856545234375],[107.627345,22.193843],[107.60740359375,22.183930890625],[107.580860625,22.1968923164063],[107.577345,22.203843],[107.543851347656,22.25452659375],[107.563260527344,22.2679274726563],[107.571429472656,22.2797585273438],[107.600067167969,22.2904738593751],[107.620560332031,22.2858815742187],[107.631429472656,22.2941188789063],[107.611429472656,22.3079274726563],[107.603260527344,22.3276613593751],[107.647889433594,22.3391139960938],[107.634388457031,22.3993361640625],[107.611429472656,22.4079274726562],[107.597345,22.4283278632813],[107.538533964844,22.4489430976563],[107.515091582031,22.5115895820313],[107.542345,22.5054811835938],[107.551571074219,22.5301369453125],[107.562791777344,22.5276222968751],[107.593709746094,22.5477565742188],[107.590531035156,22.561938703125],[107.642633085938,22.5814333320313],[107.653746367188,22.5517336250001],[107.681429472656,22.5697585273437],[107.70422,22.578286359375],[107.687825957031,22.6034621406251],[107.744818144531,22.6428102851563],[107.739466582031,22.6666872382813],[107.783260527344,22.6779274726563],[107.791429472656,22.6850954414063],[107.751429472656,22.7079274726563],[107.733260527344,22.7397585273438],[107.711429472656,22.7679274726563],[107.696507597656,22.8078054023438],[107.703465605469,22.838843],[107.69978640625,22.8552516914063],[107.687345,22.8638430000001],[107.695169707031,22.8820754218751],[107.683350859375,22.8998488593751],[107.671339140625,22.907837140625],[107.663350859375,22.919848859375],[107.623350859375,22.9423244453125],[107.631763945313,22.95024925],[107.672345,22.940024640625],[107.713968535156,22.9505104804688]]]]}},{"type":"Feature","properties":{"name":"江州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.103922148438,22.5660353828126],[107.107345,22.5538430000001],[107.095152617188,22.5572658515625],[107.103922148438,22.5660353828126]]],[[[107.257345,22.653843],[107.268426542969,22.66819846875],[107.280765410156,22.6446364570313],[107.257345,22.653843]]],[[[107.257345,22.653843],[107.251585722656,22.6289846015625],[107.253084746094,22.618843],[107.251182890625,22.6059743476563],[107.266651640625,22.5504225898438],[107.340657988281,22.5394875312501],[107.348785429688,22.5698757148438],[107.331549101563,22.5984523750001],[107.33373171875,22.6132350898438],[107.32298953125,22.63948753125],[107.308880644531,22.6628762031251],[107.335914335938,22.6978981757813],[107.371954375,22.7196388984375],[107.391302519531,22.7167800117188],[107.394486113281,22.7383303046876],[107.380867949219,22.7488430000001],[107.420179472656,22.7791872382812],[107.423822050781,22.803843],[107.418836699219,22.8375856757813],[107.437345,22.8403200507813],[107.470809355469,22.835376203125],[107.48170046875,22.8494875312501],[107.497345,22.8538430000001],[107.504171171875,22.8443190742188],[107.541519804688,22.8596681953125],[107.573480253906,22.8681008125],[107.568529082031,22.893149640625],[107.63888796875,22.9070534492188],[107.661519804688,22.8680178046875],[107.687345,22.8638430000001],[107.69978640625,22.8552516914063],[107.703465605469,22.838843],[107.696507597656,22.8078054023438],[107.711429472656,22.7679274726563],[107.733260527344,22.7397585273438],[107.751429472656,22.7079274726563],[107.791429472656,22.6850954414063],[107.783260527344,22.6779274726563],[107.739466582031,22.6666872382813],[107.744818144531,22.6428102851563],[107.687825957031,22.6034621406251],[107.70422,22.578286359375],[107.681429472656,22.5697585273437],[107.653746367188,22.5517336250001],[107.642633085938,22.5814333320313],[107.590531035156,22.561938703125],[107.593709746094,22.5477565742188],[107.562791777344,22.5276222968751],[107.551571074219,22.5301369453125],[107.542345,22.5054811835938],[107.515091582031,22.5115895820313],[107.538533964844,22.4489430976563],[107.597345,22.4283278632813],[107.611429472656,22.4079274726562],[107.634388457031,22.3993361640625],[107.647889433594,22.3391139960938],[107.603260527344,22.3276613593751],[107.611429472656,22.3079274726563],[107.631429472656,22.2941188789063],[107.620560332031,22.2858815742187],[107.600067167969,22.2904738593751],[107.571429472656,22.2797585273438],[107.563260527344,22.2679274726563],[107.543851347656,22.25452659375],[107.577345,22.203843],[107.562891875,22.1909304023438],[107.552625761719,22.1685622382813],[107.512508574219,22.1561745429688],[107.502528105469,22.2096462226563],[107.491585722656,22.1973976875],[107.435084257813,22.2007668281251],[107.412569609375,22.1885305],[107.393568144531,22.1896633125],[107.336385527344,22.1691457343751],[107.318929472656,22.2071779609375],[107.277301054688,22.2200319648438],[107.252345,22.2185451484375],[107.241470976563,22.2191921210938],[107.242840605469,22.2421511054688],[107.2626575,22.2786183906251],[107.2620325,22.2890676093751],[107.272625761719,22.3085622382813],[107.282064238281,22.3403151679688],[107.24310671875,22.337993390625],[107.222625761719,22.3491237617188],[107.190496855469,22.3585622382813],[107.172625761719,22.3385622382813],[107.161468535156,22.3291237617188],[107.162652617188,22.3490016914062],[107.157345,22.373843],[107.163260527344,22.3779274726563],[107.171429472656,22.3997585273438],[107.211356230469,22.4273268867188],[107.186566191406,22.4653932929688],[107.151898222656,22.457622296875],[107.132655058594,22.4701540351563],[107.127345,22.503843],[107.133377714844,22.5084987617188],[107.114322539063,22.5569704414063],[107.1424621875,22.5934255195313],[107.20298953125,22.61819846875],[107.220960722656,22.6621120429688],[107.23189578125,22.6479470039063],[107.257345,22.653843]]]]}},{"type":"Feature","properties":{"name":"龙州县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.915936308594,22.62140159375],[106.937345,22.6166017890625],[106.956304960938,22.6208522773438],[107.004478789063,22.5933571601563],[106.999871855469,22.5728102851562],[107.033260527344,22.5497585273438],[107.041571074219,22.5275490546875],[107.055697050781,22.5307155585938],[107.072274199219,22.506704328125],[107.112623320313,22.4976589179687],[107.127345,22.503843],[107.132655058594,22.4701540351563],[107.151898222656,22.457622296875],[107.186566191406,22.4653932929688],[107.211356230469,22.4273268867188],[107.171429472656,22.3997585273438],[107.163260527344,22.3779274726563],[107.157345,22.373843],[107.132515898438,22.3684279609376],[107.096624785156,22.3713112617188],[107.05271609375,22.3350612617187],[107.073470488281,22.2978615546876],[107.071768828125,22.2766774726563],[107.009947539063,22.25921409375],[106.992166777344,22.2798537421875],[106.978089628906,22.2330983710937],[106.96197390625,22.21921409375],[106.957345,22.2138430000001],[106.95271609375,22.20847190625],[106.92197390625,22.19921409375],[106.907691679688,22.1672072578125],[106.864583769531,22.1706716132813],[106.826126738281,22.1492140937501],[106.779498320313,22.1670827460938],[106.80197390625,22.1864455390625],[106.757740507813,22.1996779609375],[106.740960722656,22.1983303046876],[106.710357695313,22.2669142890626],[106.687345,22.273843],[106.68298953125,22.2794875312501],[106.67170046875,22.28819846875],[106.6501965625,22.3407424140625],[106.622345,22.3366262031251],[106.554002714844,22.3467263007813],[106.573240996094,22.378618390625],[106.561575957031,22.4186330390625],[106.563822050781,22.4338430000001],[106.559901152344,22.4603786445313],[106.583160429688,22.4783303046875],[106.577850371094,22.5142555976563],[106.61125125,22.5992165351563],[106.626263457031,22.6081984687501],[106.650809355469,22.5763991523438],[106.724783964844,22.5873317695313],[106.720867949219,22.613843],[106.724749785156,22.6401100898438],[106.773519316406,22.7058913398438],[106.768878203125,22.7373073554688],[106.777345,22.7438430000001],[106.793260527344,22.7397585273438],[106.811429472656,22.7079274726563],[106.853260527344,22.6797585273438],[106.866319609375,22.6608425117188],[106.903260527344,22.6397585273438],[106.915936308594,22.62140159375]]]]}},{"type":"Feature","properties":{"name":"宁明县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.157345,22.373843],[107.162652617188,22.3490016914062],[107.161468535156,22.3291237617188],[107.172625761719,22.3385622382813],[107.190496855469,22.3585622382813],[107.222625761719,22.3491237617188],[107.24310671875,22.337993390625],[107.282064238281,22.3403151679688],[107.272625761719,22.3085622382813],[107.2620325,22.2890676093751],[107.2626575,22.2786183906251],[107.242840605469,22.2421511054688],[107.241470976563,22.2191921210938],[107.252345,22.2185451484375],[107.277301054688,22.2200319648438],[107.318929472656,22.2071779609375],[107.336385527344,22.1691457343751],[107.393568144531,22.1896633125],[107.412569609375,22.1885305],[107.435084257813,22.2007668281251],[107.491585722656,22.1973976875],[107.502528105469,22.2096462226563],[107.512508574219,22.1561745429688],[107.552625761719,22.1685622382813],[107.562891875,22.1909304023438],[107.577345,22.203843],[107.580860625,22.1968923164063],[107.60740359375,22.183930890625],[107.627345,22.193843],[107.633856230469,22.1440798164063],[107.662772246094,22.1191677070313],[107.661138945313,22.0988430000001],[107.663524199219,22.0691677070313],[107.65197390625,22.05921409375],[107.64271609375,22.04847190625],[107.630687285156,22.0381081367188],[107.579637480469,21.976391828125],[107.56271609375,21.93847190625],[107.551920195313,21.9191213203125],[107.552769804688,21.9085646796876],[107.541693144531,21.8887136054687],[107.561734648438,21.8714455390625],[107.563470488281,21.8498244453125],[107.546185332031,21.818843],[107.562923613281,21.7888430000001],[107.545164824219,21.7570119453125],[107.557345,21.723843],[107.539888945313,21.7212990546875],[107.497371855469,21.6789943671876],[107.508370390625,21.6676052070313],[107.489888945313,21.6612990546876],[107.487345,21.653843],[107.468992949219,21.6605812812501],[107.435279570313,21.6578737617188],[107.383963652344,21.5983107734375],[107.363267851563,21.5999733710938],[107.352074003906,21.6734279609376],[107.299132109375,21.74847190625],[107.240604277344,21.7069728828126],[107.209742460938,21.7094533515625],[107.17873171875,21.7454470039063],[107.14197390625,21.7684719062501],[107.085130644531,21.8087746406251],[107.016217070313,21.8213454414063],[107.00271609375,21.844009015625],[107.05220828125,21.8866481757813],[107.06197390625,21.9216970039063],[106.994288359375,21.951899640625],[106.963729277344,21.9164333320313],[106.95271609375,21.9292140937501],[106.93197390625,21.93847190625],[106.92271609375,21.96921409375],[106.917345,21.973843],[106.921158476563,21.9800295234375],[106.953531523438,21.9876564765625],[106.961158476563,22.0000295234376],[106.976766386719,22.0096486640626],[106.967672148438,22.038843],[106.999832792969,22.0498024726563],[106.98423953125,22.0998635078125],[106.947567167969,22.1085012031251],[106.953902617188,22.1288430000001],[106.944307890625,22.1596486640625],[106.973531523438,22.1776564765625],[106.981158476563,22.1991701484375],[106.957345,22.2138430000001],[106.96197390625,22.21921409375],[106.978089628906,22.2330983710937],[106.992166777344,22.2798537421875],[107.009947539063,22.25921409375],[107.071768828125,22.2766774726563],[107.073470488281,22.2978615546876],[107.05271609375,22.3350612617187],[107.096624785156,22.3713112617188],[107.132515898438,22.3684279609376],[107.157345,22.373843]]]]}},{"type":"Feature","properties":{"name":"凭祥市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.710357695313,22.2669142890626],[106.740960722656,22.1983303046876],[106.757740507813,22.1996779609375],[106.80197390625,22.1864455390625],[106.779498320313,22.1670827460938],[106.826126738281,22.1492140937501],[106.864583769531,22.1706716132813],[106.907691679688,22.1672072578125],[106.92197390625,22.19921409375],[106.95271609375,22.20847190625],[106.957345,22.2138430000001],[106.981158476563,22.1991701484375],[106.973531523438,22.1776564765625],[106.944307890625,22.1596486640625],[106.953902617188,22.1288430000001],[106.947567167969,22.1085012031251],[106.98423953125,22.0998635078125],[106.999832792969,22.0498024726563],[106.967672148438,22.038843],[106.976766386719,22.0096486640626],[106.961158476563,22.0000295234376],[106.953531523438,21.9876564765625],[106.921158476563,21.9800295234375],[106.917345,21.973843],[106.863436308594,21.9826979804688],[106.814991484375,21.9755397773438],[106.769698515625,22.0121462226563],[106.734769316406,22.0069850898438],[106.72298953125,21.97819846875],[106.700628691406,21.9609401679688],[106.68298953125,21.9950441718751],[106.704327421875,22.0304201484375],[106.700867949219,22.0538430000001],[106.7060559375,22.0889626289062],[106.691449003906,22.1390676093751],[106.703519316406,22.159077375],[106.684237089844,22.1739601875],[106.67298953125,22.1927614570313],[106.697550078125,22.2117189765626],[106.687345,22.273843],[106.710357695313,22.2669142890626]]]]}},{"type":"Feature","properties":{"name":"天等县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.097345,22.923843],[107.109537382813,22.9204201484376],[107.100767851563,22.9116506171876],[107.097345,22.923843]]],[[[107.097345,22.923843],[107.071883574219,22.9193044257812],[107.050970488281,22.907329328125],[107.053905058594,22.8785427070313],[106.991883574219,22.8693044257813],[106.982806425781,22.8483815742188],[106.941807890625,22.8363503242188],[106.912345,22.8393532539063],[106.897345,22.8378249335938],[106.874107695313,22.8401930976563],[106.852806425781,22.8893044257813],[106.825828886719,22.9117165351563],[106.812806425781,22.9337087226562],[106.881529570313,22.9760964179688],[106.856331816406,23.0431520820313],[106.840936308594,23.0700319648438],[106.843739042969,23.0975173164063],[106.807345,23.0838430000001],[106.787415800781,23.0937502265625],[106.777345,23.073843],[106.760233183594,23.0870510078125],[106.773519316406,23.109077375],[106.759761992188,23.1196950507813],[106.787635527344,23.1659011054688],[106.770611601563,23.1790407539063],[106.79298953125,23.18819846875],[106.811954375,23.1996388984375],[106.830767851563,23.1968605781251],[106.865345488281,23.2177175117188],[106.905035429688,23.2287697578126],[106.92170046875,23.2694875312501],[106.933160429688,23.2783303046875],[106.930318632813,23.2975539375001],[106.99298953125,23.30819846875],[106.997345,23.3138430000001],[107.018065214844,23.3079177070313],[107.042799101563,23.2770339179688],[107.062345,23.2794655585938],[107.074893828125,23.2779030585938],[107.122899199219,23.2882888007813],[107.132713652344,23.3005471015625],[107.196143828125,23.3378322578126],[107.211890898438,23.3181642890626],[107.222345,23.3194655585938],[107.232738066406,23.3181716132813],[107.272135039063,23.3469509101563],[107.292628203125,23.3494997382813],[107.307345,23.343843],[107.322330351563,23.3363942695313],[107.336031523438,23.3430861640625],[107.354976835938,23.319233625],[107.346546660156,23.3019728828125],[107.373985625,23.270483625],[107.377345,23.2438430000001],[107.365338164063,23.1970510078125],[107.351492949219,23.2001540351562],[107.343260527344,23.1479274726563],[107.325574980469,23.1357155585937],[107.361429472656,23.1079274726563],[107.391429472656,23.0967018867188],[107.373260527344,23.0879274726563],[107.347345,23.0838430000001],[107.332611113281,23.0783058906251],[107.32213015625,23.0793752265626],[107.278397246094,23.0671462226563],[107.262806425781,23.0483815742187],[107.247642851563,23.0357839179688],[107.263072539063,23.0088430000001],[107.249012480469,22.9842971015625],[107.217835722656,23.002153546875],[107.123109160156,22.975669171875],[107.154383574219,22.9496901679688],[107.139798613281,22.9375734687501],[107.111173125,22.9404909492187],[107.097345,22.923843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"龙华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.407345,19.8438430000001],[110.410767851563,19.8560353828125],[110.419537382813,19.8472658515625],[110.407345,19.8438430000001]]],[[[110.407345,19.8438430000001],[110.403795195313,19.8156935859375],[110.390865507813,19.8220070625],[110.383985625,19.7572023750001],[110.369700957031,19.7392214179687],[110.377345,19.723843],[110.362584257813,19.7176442695313],[110.337345,19.723843],[110.331688261719,19.738559796875],[110.33388796875,19.7562526679688],[110.291790800781,19.7682888007813],[110.245599394531,19.8020314765625],[110.296317167969,19.8623561835938],[110.311790800781,19.9468532539063],[110.271658964844,19.9583278632813],[110.273448515625,19.9727150703125],[110.293023710938,19.9883913398438],[110.287345,20.0338430000001],[110.309488554688,20.0383132148438],[110.317345,20.053843],[110.345291777344,20.039829328125],[110.337345,20.023843],[110.331395292969,20.0192507148438],[110.343114042969,19.9790529609376],[110.341529570313,19.9683303046875],[110.38672,19.9334499335938],[110.374818144531,19.8529006171876],[110.407345,19.8438430000001]]]]}},{"type":"Feature","properties":{"name":"美兰区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.587345,19.933843],[110.587345,19.943843],[110.600152617188,19.938843],[110.587345,19.933843]]],[[[110.627345,19.953843],[110.617345,19.953843],[110.617345,19.973843],[110.627345,19.973843],[110.627345,19.953843]]],[[[110.563922148438,20.0260353828125],[110.567345,20.013843],[110.555152617188,20.0172658515626],[110.563922148438,20.0260353828125]]],[[[110.587345,19.943843],[110.574537382813,19.938843],[110.587345,19.933843],[110.592074003906,19.9154201484375],[110.634449492188,19.9249196601563],[110.627345,19.953843],[110.66048953125,19.9309596992188],[110.674798613281,19.8847927070313],[110.671051054688,19.8680690742188],[110.705396757813,19.8552175117188],[110.692074003906,19.8032985664063],[110.655574980469,19.8114821601563],[110.641429472656,19.7897585273437],[110.637345,19.7738430000001],[110.627345,19.7738430000001],[110.627345,19.763843],[110.578131132813,19.7682204414062],[110.553416777344,19.8040163398438],[110.563616972656,19.8495143867188],[110.551429472656,19.8579274726563],[110.533260527344,19.8897585273438],[110.50490359375,19.9093361640626],[110.462957792969,19.9201003242188],[110.426998320313,19.9120388007813],[110.403260527344,19.9797585273438],[110.391429472656,19.9879274726563],[110.372938261719,20.0147096992188],[110.337345,20.023843],[110.345291777344,20.039829328125],[110.317345,20.053843],[110.30298953125,20.0649245429688],[110.347432890625,20.0881984687501],[110.38875125,20.0780739570313],[110.452225371094,20.0397878242187],[110.511468535156,20.0164968085938],[110.543436308594,20.0212209296875],[110.537391386719,19.9803151679688],[110.562345,19.9766262031251],[110.575267363281,20.0081984687501],[110.583128691406,19.9891481757813],[110.5794153125,19.9640138984375],[110.587345,19.943843]],[[110.555152617188,19.9472658515626],[110.567345,19.943843],[110.563922148438,19.9560353828125],[110.555152617188,19.9472658515626]]]]}},{"type":"Feature","properties":{"name":"琼山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.627345,19.763843],[110.627345,19.7738430000001],[110.637345,19.7738430000001],[110.637345,19.763843],[110.627345,19.763843]]],[[[110.627345,19.763843],[110.621102324219,19.7384279609376],[110.639454375,19.7102443671876],[110.609754667969,19.6991310859376],[110.624505644531,19.6597048164063],[110.665194121094,19.649262921875],[110.651429472656,19.6397585273438],[110.643260527344,19.6079274726563],[110.627789335938,19.5841677070313],[110.637200957031,19.5421828437501],[110.602623320313,19.5276589179687],[110.587345,19.5310842109376],[110.556849394531,19.5242482734375],[110.541124296875,19.5483962226563],[110.543660917969,19.559712140625],[110.507345,19.563843],[110.498509550781,19.5939528632813],[110.44255984375,19.5783107734375],[110.425494414063,19.5800514960938],[110.412806425781,19.6093044257813],[110.389249296875,19.6195217109376],[110.362806425781,19.6634596992188],[110.385286894531,19.7027077460938],[110.377345,19.723843],[110.369700957031,19.7392214179687],[110.383985625,19.7572023750001],[110.390865507813,19.8220070625],[110.403795195313,19.8156935859375],[110.407345,19.8438430000001],[110.419537382813,19.8472658515625],[110.410767851563,19.8560353828125],[110.407345,19.8438430000001],[110.374818144531,19.8529006171876],[110.38672,19.9334499335938],[110.341529570313,19.9683303046875],[110.343114042969,19.9790529609376],[110.331395292969,20.0192507148438],[110.337345,20.023843],[110.372938261719,20.0147096992188],[110.391429472656,19.9879274726563],[110.403260527344,19.9797585273438],[110.426998320313,19.9120388007813],[110.462957792969,19.9201003242188],[110.50490359375,19.9093361640626],[110.533260527344,19.8897585273438],[110.551429472656,19.8579274726563],[110.563616972656,19.8495143867188],[110.553416777344,19.8040163398438],[110.578131132813,19.7682204414062],[110.627345,19.763843]]]]}},{"type":"Feature","properties":{"name":"秀英区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.147345,19.863843],[110.143922148438,19.8516506171875],[110.135152617188,19.8604201484376],[110.147345,19.863843]]],[[[110.147345,19.863843],[110.141600371094,19.8988088203125],[110.143084746094,19.908843],[110.141575957031,19.9190529609375],[110.157977324219,19.9753127265625],[110.127345,19.983843],[110.127345,20.0038430000001],[110.142899199219,20.0282888007813],[110.159752226563,20.0682888007813],[110.202899199219,20.0593971992188],[110.262569609375,20.0243190742188],[110.287345,20.0338430000001],[110.293023710938,19.9883913398438],[110.273448515625,19.9727150703125],[110.271658964844,19.9583278632813],[110.311790800781,19.9468532539063],[110.296317167969,19.8623561835938],[110.245599394531,19.8020314765625],[110.291790800781,19.7682888007813],[110.33388796875,19.7562526679688],[110.331688261719,19.738559796875],[110.337345,19.723843],[110.302777128906,19.6980397773438],[110.287345,19.7003200507813],[110.267838164063,19.6974391914062],[110.257345,19.683843],[110.221158476563,19.6876564765625],[110.207408476563,19.7279982734375],[110.217642851563,19.7608547187501],[110.201158476563,19.7976564765625],[110.193531523438,19.8400295234375],[110.168675566406,19.848501203125],[110.186824980469,19.8596828437501],[110.147345,19.863843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"三亚市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.697345,18.2038430000001],[109.709537382813,18.2004201484375],[109.700767851563,18.1916506171876],[109.697345,18.2038430000001]]],[[[109.697345,18.2038430000001],[109.684537382813,18.2088430000001],[109.697345,18.2138430000001],[109.697345,18.2038430000001]]],[[[109.413922148438,18.2260353828126],[109.417345,18.2138430000001],[109.405152617188,18.2172658515625],[109.413922148438,18.2260353828126]]],[[[109.663922148438,18.2260353828126],[109.667345,18.2138430000001],[109.655152617188,18.2172658515625],[109.663922148438,18.2260353828126]]],[[[109.374195585938,18.2454567695313],[109.377345,18.223843],[109.355159941406,18.227075421875],[109.374195585938,18.2454567695313]]],[[[109.763922148438,18.3160353828125],[109.767345,18.303843],[109.755152617188,18.3072658515626],[109.763922148438,18.3160353828125]]],[[[109.697345,18.273843],[109.673924589844,18.2830495429688],[109.686263457031,18.25948753125],[109.713441191406,18.2699391914063],[109.72158328125,18.2572243476563],[109.741248808594,18.26274925],[109.726717558594,18.2162087226563],[109.712105742188,18.2203151679688],[109.697345,18.2138430000001],[109.685882597656,18.2276418281251],[109.666033964844,18.2383815742188],[109.609952421875,18.2173073554688],[109.614151640625,18.1761110664063],[109.581954375,18.1793923164063],[109.572345,18.1678249335938],[109.56107546875,18.1813893867188],[109.563834257813,18.2084523750001],[109.551883574219,18.2183815742188],[109.542345,18.2298610664063],[109.532735625,18.2182936835938],[109.511173125,18.2204909492188],[109.483192167969,18.1868044257813],[109.467513457031,18.2056764960938],[109.482806425781,18.2183815742188],[109.500089140625,18.2391872382813],[109.46763796875,18.2842775703125],[109.299469023438,18.3031374335937],[109.252345,18.2983327460938],[109.226346464844,18.3009841132813],[109.190477324219,18.287505109375],[109.159569121094,18.2906545234375],[109.134039335938,18.3495241523438],[109.122022734375,18.3483010078125],[109.077178984375,18.3739846015625],[108.991971464844,18.3582253242188],[108.977345,18.383843],[109.007674589844,18.4217189765625],[109.072039824219,18.4495021796875],[109.082703886719,18.4481764960938],[109.110716582031,18.46464378125],[109.188424101563,18.4549782539063],[109.180948515625,18.5150783515625],[109.205094023438,18.5548317695313],[109.249251738281,18.5603249335938],[109.262899199219,18.5493971992188],[109.271790800781,18.5382888007813],[109.282899199219,18.5293971992188],[109.298914824219,18.5093971992188],[109.314080839844,18.529887921875],[109.310985136719,18.5547707343751],[109.391790800781,18.6193971992188],[109.407345,18.6238430000001],[109.414549589844,18.5675392890625],[109.432667265625,18.5693849921875],[109.452022734375,18.5583010078126],[109.47634890625,18.5607790351562],[109.520692167969,18.5415480781251],[109.532955351563,18.508911359375],[109.521065703125,18.4663869453125],[109.522855253906,18.448843],[109.5203528125,18.4242995429688],[109.548199492188,18.39077659375],[109.632345,18.3993532539063],[109.6709778125,18.3954152656251],[109.691883574219,18.4293044257813],[109.702806425781,18.4383815742187],[109.716839628906,18.4861940742188],[109.752806425781,18.5083815742188],[109.767345,18.5258815742188],[109.777345,18.5138430000001],[109.76982546875,18.4959401679688],[109.811429472656,18.4672145820313],[109.793260527344,18.4379274726563],[109.781043730469,18.4294924140625],[109.787345,18.4038430000001],[109.753143339844,18.3774440742188],[109.718292265625,18.2922927070313],[109.70170046875,18.2794875312501],[109.697345,18.273843]],[[109.555159941406,18.2370754218751],[109.577345,18.233843],[109.574195585938,18.2554567695313],[109.555159941406,18.2370754218751]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南沙群岛"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.061041289063,3.86507346875002],[112.047345,3.83384299999999],[112.003441191406,3.83858909375],[112.012420683594,3.87464866406257],[112.035816679688,3.8812258125],[112.061041289063,3.86507346875002]]],[[[112.264371367188,3.87888206250006],[112.257345,3.86384300000001],[112.224405546875,3.8683791328125],[112.214715605469,3.89408225781253],[112.250242949219,3.90747581250007],[112.264371367188,3.87888206250006]]],[[[112.277345,3.943843],[112.247345,3.943843],[112.247345,3.97384300000002],[112.277345,3.97384300000002],[112.277345,3.943843]]],[[[112.9569153125,5.02345725781254],[112.937345,4.99384300000004],[112.903260527344,4.99921409375007],[112.91306765625,5.04788596875002],[112.949603300781,5.05607444531252],[112.9569153125,5.02345725781254]]],[[[112.723365507813,5.07902366406249],[112.707345,5.05384299999999],[112.642899199219,5.0590041328125],[112.653148222656,5.117075421875],[112.672791777344,5.11952171093752],[112.723365507813,5.07902366406249]]],[[[112.611798125,5.11230979687504],[112.597345,5.07384300000004],[112.552806425781,5.08177757031255],[112.568170195313,5.12837913281249],[112.611798125,5.11230979687504]]],[[[112.661790800781,5.3593947578125],[112.657345,5.353843],[112.602899199219,5.36065452343756],[112.617027617188,5.406313703125],[112.691790800781,5.41561546093753],[112.682310820313,5.37583030468753],[112.661790800781,5.3593947578125]]],[[[112.529407988281,5.49453147656255],[112.517345,5.46384300000001],[112.465477324219,5.47265647656253],[112.460282011719,5.50779807812502],[112.503873320313,5.514243390625],[112.529407988281,5.49453147656255]]],[[[112.641783476563,5.50375999218756],[112.617345,5.46384300000001],[112.612154570313,5.46865257031252],[112.602535429688,5.50903342968757],[112.574075957031,5.57831565625001],[112.601751738281,5.57941428906256],[112.641783476563,5.50375999218756]]],[[[112.387017851563,5.63370628125005],[112.377345,5.61384300000002],[112.343895292969,5.61818870312502],[112.360350371094,5.64729514843755],[112.387017851563,5.63370628125005]]],[[[112.551749296875,5.690805890625],[112.557345,5.623843],[112.523455839844,5.63002464062507],[112.518785429688,5.68815452343751],[112.551749296875,5.690805890625]]],[[[112.504608183594,5.76341331250005],[112.497345,5.73384300000001],[112.463260527344,5.73921409375004],[112.47865359375,5.77792503125],[112.504608183594,5.76341331250005]]],[[[112.567913847656,5.77900413281251],[112.557345,5.75384300000005],[112.523260527344,5.76258811718752],[112.532423125,5.81549827343752],[112.558426542969,5.8213283515625],[112.567913847656,5.77900413281251]]],[[[112.564989042969,5.96204612500001],[112.557345,5.94384300000005],[112.523260527344,5.95258811718752],[112.559315214844,5.98736350781252],[112.564989042969,5.96204612500001]]],[[[113.247345,6.29384300000003],[113.217345,6.29384300000003],[113.217345,6.32384300000005],[113.247345,6.32384300000005],[113.247345,6.29384300000003]]],[[[113.261073027344,6.36822288281257],[113.267345,6.33384300000003],[113.23271609375,6.34016135937502],[113.261073027344,6.36822288281257]]],[[[113.623599882813,6.9391506171875],[113.607345,6.91384300000001],[113.56298953125,6.92137717968752],[113.594158964844,6.96819846875],[113.623599882813,6.9391506171875]]],[[[114.85142703125,7.18976096875007],[114.847345,7.183843],[114.81326296875,7.19258811718756],[114.83959109375,7.24792503125004],[114.878443632813,7.23850120312507],[114.86326296875,7.19792503125007],[114.85142703125,7.18976096875007]]],[[[113.811065703125,7.380122296875],[113.807345,7.373843],[113.783624296875,7.37926780468751],[113.796409941406,7.41508811718749],[113.832742949219,7.42756370312504],[113.837327910156,7.38878928906249],[113.811065703125,7.380122296875]]],[[[115.000738554688,7.5366799140625],[115.007345,7.48384300000001],[114.952926054688,7.48915550000001],[114.949469023438,7.51697288281251],[115.000738554688,7.5366799140625]]],[[[109.903949003906,7.55581077343756],[109.952064238281,7.51282249218756],[109.927413359375,7.50741721875],[109.828453398438,7.52855979687505],[109.715850859375,7.51625999218749],[109.644840117188,7.47491721874999],[109.542625761719,7.34855979687502],[109.492064238281,7.30912620312502],[109.487345,7.30384299999999],[109.452625761719,7.31456565625001],[109.463526640625,7.34293479687501],[109.528939238281,7.45528831249999],[109.651033964844,7.56374046093752],[109.716217070313,7.59084983593755],[109.903949003906,7.55581077343756]]],[[[111.604901152344,7.58329612500001],[111.557345,7.52384300000001],[111.532899199219,7.53083030468757],[111.548023710938,7.59641624218753],[111.600748320313,7.61668479687504],[111.604901152344,7.58329612500001]]],[[[114.695513945313,7.5756740546875],[114.687345,7.56384300000001],[114.65326296875,7.57258811718756],[114.669693632813,7.60712913281253],[114.717867460938,7.61792503125006],[114.71326296875,7.58792503125004],[114.695513945313,7.5756740546875]]],[[[113.791429472656,7.59976096875],[113.787345,7.59384300000002],[113.753260527344,7.61737815625002],[113.761839628906,7.64088401562505],[113.814525175781,7.65269553906251],[113.841429472656,7.63411643750004],[113.813260527344,7.60792503125],[113.791429472656,7.59976096875]]],[[[111.752061796875,7.71020530468757],[111.697345,7.643843],[111.662535429688,7.65048850781257],[111.676214628906,7.70530784375007],[111.727857695313,7.7326320625],[111.752061796875,7.71020530468757]]],[[[110.510023222656,7.81816428906254],[110.487345,7.78384300000003],[110.453260527344,7.78921409375005],[110.46865359375,7.82792503125002],[110.510023222656,7.81816428906254]]],[[[111.613336210938,7.83150413281252],[111.577345,7.77384300000005],[111.553074980469,7.79475120312506],[111.551419707031,7.815356671875],[111.588253203125,7.85811057812506],[111.611051054688,7.85994651562504],[111.613336210938,7.83150413281252]]],[[[112.92130984375,7.87707542187505],[112.927345,7.833843],[112.882445097656,7.84011253125007],[112.92130984375,7.87707542187505]]],[[[111.720789824219,7.91961936718749],[111.707345,7.88384300000006],[111.652818632813,7.88928733593751],[111.632806425781,7.92422385937503],[111.68595828125,7.93837913281251],[111.720789824219,7.91961936718749]]],[[[109.99197390625,7.81921409375007],[109.987345,7.81384300000004],[109.93271609375,7.82099143750003],[109.942786894531,7.884341046875],[110.047337675781,7.95847190625002],[110.08197390625,7.94584007031251],[110.068678007813,7.86343772656254],[109.99197390625,7.81921409375007]]],[[[114.02197390625,7.53921409375002],[114.017345,7.53384300000008],[113.983214140625,7.54006858593751],[113.902984648438,7.57586936718754],[113.898092070313,7.6367726875],[113.93197390625,7.64921409375003],[113.998729277344,7.66438010937506],[114.05271609375,7.68847190625003],[114.109783964844,7.73567405468757],[114.161600371094,7.76458518750006],[114.199581328125,7.78153342968752],[114.246380644531,7.85625510937503],[114.38271609375,7.92847190625],[114.431629667969,7.96677757031249],[114.494459257813,7.97182639843749],[114.540128203125,7.95144553906256],[114.546597929688,7.870903546875],[114.433345976563,7.79996604687504],[114.41197390625,7.74921409375006],[114.395963164063,7.66144065625006],[114.357047148438,7.63972678906256],[114.25197390625,7.60921409375003],[114.124000273438,7.55476096875002],[114.02197390625,7.53921409375002]]],[[[114.919039335938,8.00431175000002],[114.907345,7.95384300000007],[114.86298953125,7.96137717968749],[114.8759778125,8.01819846875004],[114.919039335938,8.00431175000002]]],[[[113.962423125,7.98319358593757],[113.967345,7.94384300000001],[113.9046496875,7.95168479687506],[113.889613066406,8.01788108593756],[113.938460722656,8.0239553046875],[113.962423125,7.98319358593757]]],[[[110.632879667969,8.04646507031256],[110.637345,7.983843],[110.613355742188,7.98982932812503],[110.603350859375,8.02953635937506],[110.632879667969,8.04646507031256]]],[[[111.991429472656,8.04976096875002],[111.987345,8.04384300000004],[111.934852324219,8.05731467968757],[111.91896609375,8.08170921093753],[111.937069121094,8.10792503125008],[112.000965605469,8.09863792187503],[112.019967070313,8.06946311718754],[111.991429472656,8.04976096875002]]],[[[114.121073027344,8.11822288281249],[114.127345,8.08384300000004],[114.09271609375,8.09016135937503],[114.121073027344,8.11822288281249]]],[[[113.267345,8.13384300000001],[113.278658476563,8.10440940625007],[113.23072390625,8.06939475781249],[113.221278105469,8.07880393750006],[113.261790800781,8.12939475781253],[113.267345,8.13384300000001]]],[[[113.267345,8.13384300000001],[113.267345,8.14384300000007],[113.277345,8.14384300000007],[113.277345,8.13384300000001],[113.267345,8.13384300000001]]],[[[113.277345,8.14384300000007],[113.277345,8.16384300000003],[113.287345,8.16384300000003],[113.287345,8.14384300000007],[113.277345,8.14384300000007]]],[[[114.54170046875,8.10948753125004],[114.537345,8.10384299999999],[114.49298953125,8.1113771796875],[114.51963015625,8.13715842968751],[114.61064578125,8.16535667187507],[114.615162382813,8.13478050000004],[114.57298953125,8.11819846875007],[114.54170046875,8.10948753125004]]],[[[114.810191679688,8.15594260937504],[114.817345,8.11384300000006],[114.765064726563,8.11883323437502],[114.785264921875,8.16819846875005],[114.810191679688,8.15594260937504]]],[[[110.511883574219,8.07930686718755],[110.507345,8.07384300000006],[110.463814726563,8.07941428906251],[110.458846464844,8.12816428906252],[110.576619902344,8.17837913281249],[110.601883574219,8.16421897656253],[110.566900664063,8.10316428906249],[110.511883574219,8.07930686718755]]],[[[114.736773710938,8.20628928906254],[114.727345,8.18384300000007],[114.683892851563,8.18878440625003],[114.665982695313,8.21629417187507],[114.682960234375,8.22010276562505],[114.736773710938,8.20628928906254]]],[[[113.287345,8.16384300000003],[113.29197390625,8.17921409375003],[113.34271609375,8.23847190624999],[113.35318484375,8.31847190625007],[113.38197390625,8.29051780468756],[113.370025664063,8.21042991406257],[113.304686308594,8.11943382031254],[113.283851347656,8.11775901562507],[113.34197390625,8.19973167187506],[113.33197390625,8.19921409374999],[113.287345,8.16384300000003]]],[[[115.30408328125,8.34988303906256],[115.277345,8.31384300000003],[115.199542265625,8.33407737500002],[115.162896757813,8.36341819531249],[115.174835234375,8.39829124218751],[115.301749296875,8.36863303906256],[115.30408328125,8.34988303906256]]],[[[112.981248808594,8.43694358593753],[112.967345,8.403843],[112.933260527344,8.41258811718756],[112.950074492188,8.44792503124999],[112.981248808594,8.43694358593753]]],[[[115.5646496875,8.4935744453125],[115.557345,8.46384300000004],[115.513658476563,8.4688088203125],[115.49951296875,8.50249534375006],[115.5170715625,8.52792503124999],[115.559073515625,8.51844749218754],[115.5646496875,8.4935744453125]]],[[[115.282428007813,8.51279319531256],[115.287345,8.48384299999999],[115.24298953125,8.4913771796875],[115.260704375,8.52819846875001],[115.282428007813,8.51279319531256]]],[[[111.509407988281,8.54811057812505],[111.497345,8.52384299999999],[111.453985625,8.52781760937503],[111.488624296875,8.55720237500005],[111.509407988281,8.54811057812505]]],[[[111.926678496094,8.63492698437506],[111.937345,8.61384300000005],[111.903985625,8.61805198437503],[111.926678496094,8.63492698437506]]],[[[111.681429472656,8.62976096875],[111.677345,8.62384300000002],[111.643260527344,8.63258811718749],[111.656431914063,8.67639671093755],[111.696566191406,8.685395734375],[111.716864042969,8.65422385937501],[111.681429472656,8.62976096875]]],[[[114.2276965625,8.77838401562506],[114.250850859375,8.71948753125004],[114.23170046875,8.72819846875007],[114.215330839844,8.76819846875007],[114.21037234375,8.75629417187506],[114.217345,8.71384299999999],[114.194129667969,8.731762921875],[114.185789824219,8.78819846875002],[114.2276965625,8.77838401562506]]],[[[113.977230253906,8.8387502265625],[114.007345,8.79384300000007],[113.963658476563,8.79880882031253],[113.943260527344,8.84737815625],[113.977230253906,8.8387502265625]]],[[[112.207345,8.85384300000002],[112.24197390625,8.84752464062503],[112.213616972656,8.81946311718757],[112.207345,8.85384300000002]]],[[[112.636107207031,8.83770042187505],[112.627345,8.81384300000002],[112.543387480469,8.82085960156255],[112.540572539063,8.85588889843753],[112.591363554688,8.85997092968752],[112.61197390625,8.84847190624999],[112.636107207031,8.83770042187505]]],[[[114.059139433594,8.80384300000005],[114.047345,8.77384300000003],[114.033065214844,8.78486350781257],[114.014276152344,8.83077659374999],[113.983748808594,8.8543361640625],[113.978746367188,8.88819846875005],[114.040928984375,8.85016135937503],[114.059139433594,8.80384300000005]]],[[[113.933587675781,8.86925803906257],[113.927345,8.84384300000004],[113.894964628906,8.85215354687507],[113.889705839844,8.87561057812499],[113.917613554688,8.89378440625007],[113.933587675781,8.86925803906257]]],[[[112.207345,8.85384300000002],[112.173441191406,8.85891135937506],[112.200933867188,8.89774436718755],[112.2243371875,8.88962913281256],[112.207345,8.85384300000002]]],[[[112.288472929688,8.88033714062505],[112.277345,8.85384300000002],[112.243260527344,8.86258811718749],[112.260074492188,8.89792503125001],[112.288472929688,8.88033714062505]]],[[[114.621158476563,8.84002952343751],[114.617345,8.83384300000007],[114.593531523438,8.8394533515625],[114.60970828125,8.88311057812507],[114.669556914063,8.90279319531254],[114.67802859375,8.87559592968751],[114.643531523438,8.84765647656257],[114.621158476563,8.84002952343751]]],[[[116.30142703125,8.87976096875004],[116.297345,8.863843],[116.26326296875,8.87258811718755],[116.274156523438,8.89548362500005],[116.319796171875,8.92520530468749],[116.326158476563,8.89683128125002],[116.30142703125,8.87976096875004]]],[[[112.872899199219,8.90939475781249],[112.877345,8.89384300000001],[112.812899199219,8.90190452343752],[112.826314726563,8.92829124218752],[112.872899199219,8.90939475781249]]],[[[112.382159453125,8.94761253125006],[112.387345,8.91384300000006],[112.343643828125,8.91869163281255],[112.339090605469,8.93676292187505],[112.382159453125,8.94761253125006]]],[[[113.66170046875,8.96948753124999],[113.657345,8.96384300000003],[113.63298953125,8.97062522656253],[113.643101835938,8.99251975781249],[113.720972929688,9.02313010937505],[113.723206816406,9.00801780468758],[113.68298953125,8.97819846875002],[113.66170046875,8.96948753124999]]],[[[116.747701445313,9.06681663281249],[116.737345,9.02384300000007],[116.703233671875,9.02935569531257],[116.697779570313,9.05695335156253],[116.747701445313,9.06681663281249]]],[[[116.500230742188,9.18731956250006],[116.487345,9.13384300000008],[116.454737578125,9.15174339062505],[116.449678984375,9.17732932812502],[116.500230742188,9.18731956250006]]],[[[113.690987578125,9.23632346875007],[113.677345,9.203843],[113.653260527344,9.22047385937507],[113.664888945313,9.24792503124999],[113.690987578125,9.23632346875007]]],[[[111.547157011719,9.28771995312502],[111.537345,9.26384300000004],[111.513170195313,9.27021995312506],[111.547157011719,9.28771995312502]]],[[[115.997613554688,9.29677268750003],[115.987345,9.27384300000002],[115.9273059375,9.27791526562499],[115.916573515625,9.31237327343752],[115.965636015625,9.32765647656252],[115.997613554688,9.29677268750003]]],[[[111.731065703125,9.34650901562501],[111.717345,9.31384300000001],[111.693260527344,9.32002464062499],[111.731065703125,9.34650901562501]]],[[[114.199720488281,9.36874046093749],[114.187345,9.34384300000003],[114.170445585938,9.34725608593755],[114.155374785156,9.37811546093753],[114.187484160156,9.39379417187499],[114.199720488281,9.36874046093749]]],[[[115.470836210938,9.35596214062503],[115.457345,9.32384299999999],[115.427345,9.33154319531257],[115.41791140625,9.37362815625006],[115.434483671875,9.41792503125004],[115.459371367188,9.40709983593754],[115.470836210938,9.35596214062503]]],[[[116.984210234375,9.44906760937506],[116.967345,9.41384300000005],[116.903531523438,9.41817405468756],[116.912081328125,9.4538869453125],[116.967926054688,9.47225608593753],[116.984210234375,9.44906760937506]]],[[[112.881065703125,9.56650901562503],[112.867345,9.53384300000003],[112.843260527344,9.54002464062501],[112.881065703125,9.56650901562503]]],[[[112.56193484375,9.55709983593755],[112.567345,9.51384299999999],[112.502899199219,9.5219045234375],[112.517904082031,9.56829124218753],[112.56193484375,9.55709983593755]]],[[[112.894837675781,9.59666038281254],[112.907345,9.57384300000003],[112.883804960938,9.57890647656251],[112.894837675781,9.59666038281254]]],[[[116.196939726563,9.58667991406251],[116.187345,9.56384300000005],[116.153385039063,9.56919456250004],[116.146944609375,9.59792503125007],[116.196939726563,9.58667991406251]]],[[[112.961910429688,9.64653831250008],[112.967345,9.63384300000007],[112.944346953125,9.637895734375],[112.961910429688,9.64653831250008]]],[[[113.007345,9.65384300000002],[113.019537382813,9.65042014843757],[113.010767851563,9.6416506171875],[113.007345,9.65384300000002]]],[[[113.007345,9.65384300000002],[112.995152617188,9.65726585156256],[113.003922148438,9.66603538281253],[113.007345,9.65384300000002]]],[[[112.981910429688,9.66653831250003],[112.987345,9.65384300000002],[112.964346953125,9.65789573437505],[112.981910429688,9.66653831250003]]],[[[113.031658964844,9.68730979687503],[113.037345,9.65384300000002],[113.01298953125,9.67264182812503],[113.031658964844,9.68730979687503]]],[[[114.301500273438,9.72239280468749],[114.287345,9.68384300000004],[114.253123808594,9.69414573437501],[114.251180449219,9.71834983593757],[114.301500273438,9.72239280468749]]],[[[116.603922148438,9.73603538281255],[116.607345,9.72384300000003],[116.595152617188,9.72726585156249],[116.603922148438,9.73603538281255]]],[[[114.72047,9.73252952343756],[114.707345,9.70384299999999],[114.673624296875,9.70861839062506],[114.687105742188,9.74756370312505],[114.72047,9.73252952343756]]],[[[114.354195585938,9.76545921093756],[114.357345,9.74384300000008],[114.335159941406,9.74707542187504],[114.354195585938,9.76545921093756]]],[[[116.533922148438,9.76603538281257],[116.537345,9.75384300000005],[116.525152617188,9.7572658515625],[116.533922148438,9.76603538281257]]],[[[114.262545195313,9.766157453125],[114.267345,9.74384300000008],[114.243804960938,9.75674827343752],[114.262545195313,9.766157453125]]],[[[116.579307890625,9.76789573437506],[116.587345,9.72384300000003],[116.54271609375,9.74957542187504],[116.579307890625,9.76789573437506]]],[[[114.392545195313,9.78615745312505],[114.397345,9.76384300000003],[114.373804960938,9.77674827343757],[114.392545195313,9.78615745312505]]],[[[115.908814726563,9.7009914375],[115.887345,9.65384300000002],[115.86170046875,9.65819846875004],[115.85298953125,9.68948753125],[115.83877078125,9.71305686718752],[115.85568484375,9.773794171875],[115.896143828125,9.79819846875007],[115.92170046875,9.78498069531252],[115.908814726563,9.7009914375]]],[[[116.447345,9.76384300000003],[116.427345,9.76384300000003],[116.427345,9.80384300000003],[116.447345,9.80384300000003],[116.447345,9.76384300000003]]],[[[114.467345,9.813843],[114.454439726563,9.79030296093754],[114.445030546875,9.80904319531252],[114.467345,9.813843]]],[[[116.505855742188,9.80549827343754],[116.497345,9.78384300000007],[116.47435671875,9.79024436718751],[116.468746367188,9.82819846875],[116.505855742188,9.80549827343754]]],[[[114.467345,9.813843],[114.470577421875,9.83603050000003],[114.488961210938,9.81699241406252],[114.467345,9.813843]]],[[[114.263338652344,9.83656760937505],[114.267345,9.813843],[114.254346953125,9.81940452343752],[114.263338652344,9.83656760937505]]],[[[114.277345,9.853843],[114.273922148438,9.84165061718757],[114.265152617188,9.85042014843755],[114.277345,9.853843]]],[[[114.498599882813,9.85791038281251],[114.507345,9.82384300000007],[114.48326296875,9.84047385937505],[114.498599882813,9.85791038281251]]],[[[114.537345,9.87384300000004],[114.534112578125,9.85165550000001],[114.515728789063,9.87069358593752],[114.537345,9.87384300000004]]],[[[114.277345,9.853843],[114.290247832031,9.87738303906255],[114.299659453125,9.85864280468757],[114.277345,9.853843]]],[[[114.591910429688,9.88653831250005],[114.597345,9.87384300000004],[114.574346953125,9.87789573437507],[114.591910429688,9.88653831250005]]],[[[114.380501738281,9.88778342968754],[114.387345,9.86384300000006],[114.362899199219,9.87083030468753],[114.380501738281,9.88778342968754]]],[[[114.333338652344,9.896567609375],[114.337345,9.87384300000004],[114.324346953125,9.87940452343755],[114.333338652344,9.896567609375]]],[[[114.537345,9.87384300000004],[114.542769804688,9.89756370312506],[114.5705090625,9.87854026562504],[114.537345,9.87384300000004]]],[[[114.448961210938,9.89766135937499],[114.467345,9.87384300000004],[114.43298953125,9.87967796093749],[114.448961210938,9.89766135937499]]],[[[115.592042265625,9.88480491406255],[115.577345,9.84384300000002],[115.502628203125,9.85021995312504],[115.514229765625,9.89806175],[115.557530546875,9.90063987500006],[115.592042265625,9.88480491406255]]],[[[114.48334109375,9.90656760937506],[114.487345,9.88384300000002],[114.474346953125,9.88940452343753],[114.48334109375,9.90656760937506]]],[[[114.514195585938,9.92545921093754],[114.517345,9.90384300000006],[114.4951575,9.90707542187502],[114.514195585938,9.92545921093754]]],[[[114.564195585938,9.95545921093756],[114.567345,9.93384299999999],[114.5451575,9.93707542187504],[114.564195585938,9.95545921093756]]],[[[114.58334109375,9.96656760937501],[114.587345,9.94384300000005],[114.574346953125,9.94940452343757],[114.58334109375,9.96656760937501]]],[[[114.651612578125,9.919575421875],[114.647345,9.91384300000004],[114.628546171875,9.92782737499999],[114.61998171875,9.97757346875007],[114.681163359375,9.98811057812507],[114.670089140625,9.93332542187501],[114.651612578125,9.919575421875]]],[[[114.040501738281,10.0377834296875],[114.047345,10.0138430000001],[114.022899199219,10.0208303046875],[114.040501738281,10.0377834296875]]],[[[113.880699492188,10.0078127265625],[113.867345,9.97384300000007],[113.84298953125,9.98062522656257],[113.862147246094,10.0880763984375],[113.90170046875,10.093921125],[113.880699492188,10.0078127265625]]],[[[117.3911340625,10.0974025703125],[117.377345,10.063843],[117.343170195313,10.06937034375],[117.353819609375,10.1080178046875],[117.3911340625,10.0974025703125]]],[[[116.090543242188,10.1020900703125],[116.077345,10.073843],[116.054176054688,10.0789846015626],[116.0437121875,10.106743390625],[116.077745390625,10.1360402656251],[116.090543242188,10.1020900703125]]],[[[114.274556914063,10.164966046875],[114.267345,10.1338430000001],[114.22298953125,10.1413771796876],[114.240704375,10.1781984687501],[114.274556914063,10.164966046875]]],[[[114.361910429688,10.1965383125],[114.367345,10.183843],[114.344346953125,10.1878957343751],[114.361910429688,10.1965383125]]],[[[114.341136503906,10.1874025703125],[114.327345,10.153843],[114.293170195313,10.15937034375],[114.303822050781,10.1980178046876],[114.341136503906,10.1874025703125]]],[[[115.311158476563,10.1500295234376],[115.307345,10.143843],[115.28797,10.1557814765626],[115.2798840625,10.1817385078125],[115.295855742188,10.2076564765625],[115.331065703125,10.1979543281251],[115.340382109375,10.1680373359376],[115.311158476563,10.1500295234376]]],[[[114.223338652344,10.226567609375],[114.227345,10.2038430000001],[114.214346953125,10.2094045234375],[114.223338652344,10.226567609375]]],[[[114.391429472656,10.18976096875],[114.387345,10.183843],[114.373260527344,10.1935695625001],[114.38177859375,10.2104494453126],[114.423973417969,10.23792503125],[114.423111601563,10.2016115546875],[114.391429472656,10.18976096875]]],[[[115.387345,10.213843],[115.357345,10.213843],[115.357345,10.2438430000001],[115.387345,10.2438430000001],[115.387345,10.213843]]],[[[113.623595,10.2545070625001],[113.627345,10.223843],[113.605367460938,10.2281349921875],[113.594075957031,10.2494533515625],[113.623595,10.2545070625001]]],[[[114.571881132813,10.2493068671876],[114.567345,10.2438430000001],[114.532808867188,10.24999534375],[114.549527617188,10.2671486640625],[114.60603640625,10.2883791328125],[114.630928984375,10.2749123359376],[114.571881132813,10.2493068671876]]],[[[114.276419707031,10.2547658515625],[114.267345,10.2438430000001],[114.232806425781,10.24999534375],[114.305697050781,10.3083791328125],[114.319600859375,10.2906349921876],[114.276419707031,10.2547658515625]]],[[[117.297662382813,10.3466701484375],[117.287345,10.303843],[117.253170195313,10.3128615546875],[117.26568484375,10.3680178046875],[117.297662382813,10.3466701484375]]],[[[114.710797148438,10.3203908515625],[114.707345,10.313843],[114.683892851563,10.326196515625],[114.691871367188,10.3657228828125],[114.719698515625,10.3872951484375],[114.747603789063,10.3737306953125],[114.723892851563,10.3272951484376],[114.710797148438,10.3203908515625]]],[[[114.364195585938,10.3954592109375],[114.367345,10.373843],[114.345159941406,10.377075421875],[114.364195585938,10.3954592109375]]],[[[114.413922148438,10.3960353828125],[114.417345,10.383843],[114.405152617188,10.3872658515625],[114.413922148438,10.3960353828125]]],[[[114.47334109375,10.3965676093751],[114.477345,10.373843],[114.464346953125,10.3794045234375],[114.47334109375,10.3965676093751]]],[[[114.586553984375,10.4272658515625],[114.577345,10.403843],[114.56298953125,10.4149221015625],[114.586553984375,10.4272658515625]]],[[[116.502535429688,10.3550539375],[116.528546171875,10.346567609375],[116.642154570313,10.3635060859375],[116.632003203125,10.3372805000001],[116.572154570313,10.3090334296875],[116.567345,10.303843],[116.452535429688,10.3103224921875],[116.468136015625,10.3731154609375],[116.519595976563,10.4286525703125],[116.541812773438,10.412134015625],[116.502535429688,10.3550539375]]],[[[115.732647734375,10.4770070625001],[115.737345,10.443843],[115.713624296875,10.4492678046875],[115.732647734375,10.4770070625001]]],[[[115.782061796875,10.439126203125],[115.777345,10.4338430000001],[115.752628203125,10.4559279609375],[115.768814726563,10.478559796875],[115.801334257813,10.456343],[115.782061796875,10.439126203125]]],[[[116.862022734375,10.5076174140625],[116.867345,10.4738430000001],[116.82326296875,10.4788576484375],[116.862022734375,10.5076174140625]]],[[[115.717345,10.483843],[115.697345,10.483843],[115.697345,10.5138430000001],[115.717345,10.5138430000001],[115.717345,10.483843]]],[[[116.699288359375,10.5206056953125],[116.707345,10.493843],[116.63271609375,10.5000783515626],[116.6527746875,10.520014875],[116.672345,10.518442609375],[116.699288359375,10.5206056953125]]],[[[115.803726835938,10.5190383125],[115.797345,10.503843],[115.76326296875,10.52737815625],[115.787530546875,10.5439162421875],[115.803726835938,10.5190383125]]],[[[115.742076445313,10.536880109375],[115.747345,10.5138430000001],[115.723941679688,10.5191945625],[115.71420046875,10.5475637031251],[115.742076445313,10.536880109375]]],[[[117.20002078125,10.6123781562501],[117.207345,10.5838430000001],[117.173385039063,10.5891945625001],[117.164703398438,10.6279250312501],[117.20002078125,10.6123781562501]]],[[[117.664171171875,10.6493068671875],[117.647345,10.6238430000001],[117.62326296875,10.630024640625],[117.646676054688,10.65792503125],[117.664171171875,10.6493068671875]]],[[[114.497345,10.723843],[114.493922148438,10.7116506171875],[114.485152617188,10.7204201484376],[114.497345,10.723843]]],[[[115.813595,10.7445070625001],[115.817345,10.713843],[115.795367460938,10.7181349921876],[115.784078398438,10.7394533515625],[115.813595,10.7445070625001]]],[[[117.211451445313,10.73745628125],[117.217345,10.713843],[117.1835559375,10.7190334296875],[117.176300078125,10.7478371406251],[117.211451445313,10.73745628125]]],[[[117.414483671875,10.69526878125],[117.407345,10.6638430000001],[117.382896757813,10.6693947578126],[117.2730090625,10.6885207343751],[117.269605742188,10.715884015625],[117.31396609375,10.7482912421875],[117.399039335938,10.7354494453125],[117.414483671875,10.69526878125]]],[[[114.573922148438,10.7860353828125],[114.577345,10.773843],[114.565152617188,10.7772658515625],[114.573922148438,10.7860353828125]]],[[[114.365867949219,10.7236476875001],[114.357345,10.693843],[114.312899199219,10.6994045234375],[114.321790800781,10.7393947578126],[114.352899199219,10.7482912421875],[114.451119414063,10.79370628125],[114.453233671875,10.77671409375],[114.365867949219,10.7236476875001]]],[[[114.497345,10.723843],[114.509815703125,10.7642238593751],[114.540494414063,10.7985597968751],[114.562061796875,10.7817824531251],[114.524293242188,10.7288722968751],[114.497345,10.723843]]],[[[114.860499296875,10.8377834296875],[114.867345,10.8138430000001],[114.842896757813,10.8208303046875],[114.860499296875,10.8377834296875]]],[[[115.841417265625,10.827602765625],[115.847345,10.803843],[115.823365507813,10.8098244453126],[115.804659453125,10.837837140625],[115.841417265625,10.827602765625]]],[[[117.82298953125,10.7881984687501],[117.797345,10.753843],[117.76298953125,10.7596779609376],[117.774029570313,10.8227931953125],[117.816143828125,10.84819846875],[117.837730742188,10.8242189765626],[117.82298953125,10.7881984687501]]],[[[115.85072390625,10.857915265625],[115.867345,10.833843],[115.83326296875,10.8425881171875],[115.85072390625,10.857915265625]]],[[[114.59408328125,10.886801984375],[114.57728640625,10.8295607734375],[114.526964140625,10.8583791328125],[114.511881132813,10.8493068671875],[114.498267851563,10.8329201484376],[114.481881132813,10.8193068671876],[114.477345,10.8138430000001],[114.462808867188,10.8259181953125],[114.483228789063,10.8560451484375],[114.565025664063,10.9075881171875],[114.591685820313,10.9103029609375],[114.59408328125,10.886801984375]]],[[[114.941246367188,10.8599416328125],[114.937345,10.843843],[114.903443632813,10.848911359375],[114.913155546875,10.8875148750001],[114.951026640625,10.9177443671875],[114.960299101563,10.887759015625],[114.941246367188,10.8599416328125]]],[[[114.130636015625,10.9035109687501],[114.117345,10.873843],[114.053531523438,10.8781740546875],[114.066546660156,10.9154787421875],[114.105638457031,10.9276564765625],[114.130636015625,10.9035109687501]]],[[[114.193922148438,11.0360353828125],[114.197345,11.023843],[114.185152617188,11.0272658515626],[114.193922148438,11.0360353828125]]],[[[114.283922148438,11.0460353828125],[114.287345,11.033843],[114.275152617188,11.0372658515625],[114.283922148438,11.0460353828125]]],[[[114.231910429688,11.0565383125],[114.237345,11.0438430000001],[114.214346953125,11.047895734375],[114.231910429688,11.0565383125]]],[[[117.70041140625,11.044946515625],[117.687345,11.013843],[117.64326296875,11.0251564765626],[117.654141875,11.05792503125],[117.70041140625,11.044946515625]]],[[[114.263922148438,11.0660353828126],[114.267345,11.053843],[114.255152617188,11.0572658515625],[114.263922148438,11.0660353828126]]],[[[117.040704375,11.040483625],[117.037345,11.033843],[117.030396757813,11.037358625],[117.019830351563,11.0589894843751],[117.0341028125,11.087202375],[117.070704375,11.0789748359375],[117.063985625,11.047202375],[117.040704375,11.040483625]]],[[[117.310094023438,11.0511281562501],[117.297345,11.023843],[117.27470828125,11.0288625312501],[117.2537121875,11.0573146796875],[117.289625273438,11.0874758125],[117.310094023438,11.0511281562501]]],[[[114.36170046875,11.03948753125],[114.357345,11.033843],[114.31298953125,11.0413771796875],[114.360553007813,11.08819846875],[114.380845976563,11.07397971875],[114.383463164063,11.05628440625],[114.36170046875,11.03948753125]]],[[[115.039781523438,11.08851096875],[115.027345,11.053843],[115.002628203125,11.0759279609375],[115.039781523438,11.08851096875]]],[[[117.479307890625,11.0879055],[117.467345,11.063843],[117.443985625,11.0685597968751],[117.460123320313,11.097202375],[117.479307890625,11.0879055]]],[[[114.711881132813,11.0093068671876],[114.707345,11.0038430000001],[114.692808867188,11.0159181953125],[114.761324492188,11.1183791328126],[114.801881132813,11.10124534375],[114.787037382813,11.0802004218751],[114.745494414063,11.0456935859375],[114.722808867188,11.0183791328125],[114.711881132813,11.0093068671876]]],[[[114.819410429688,11.14952659375],[114.827345,11.133843],[114.785347929688,11.1376955390626],[114.7758215625,11.157202375],[114.819410429688,11.14952659375]]],[[[114.578961210938,11.337661359375],[114.597345,11.3138430000001],[114.56298953125,11.3196779609375],[114.578961210938,11.337661359375]]],[[[114.293338652344,11.3965676093751],[114.297345,11.373843],[114.284346953125,11.3794045234375],[114.293338652344,11.3965676093751]]],[[[114.331910429688,11.4365383125],[114.337345,11.4238430000001],[114.314346953125,11.427895734375],[114.331910429688,11.4365383125]]],[[[114.367157011719,11.467719953125],[114.357345,11.443843],[114.333170195313,11.450219953125],[114.367157011719,11.467719953125]]],[[[114.383338652344,11.476567609375],[114.387345,11.453843],[114.374346953125,11.4594045234375],[114.383338652344,11.476567609375]]],[[[114.7348840625,11.45452659375],[114.727345,11.4238430000001],[114.688863554688,11.4447560859375],[114.67724734375,11.496577375],[114.718951445313,11.5059279609376],[114.7348840625,11.45452659375]]],[[[114.641881132813,11.4193068671875],[114.637345,11.413843],[114.612808867188,11.4210451484375],[114.634869414063,11.5383791328126],[114.653990507813,11.5180471015626],[114.641881132813,11.4193068671875]]],[[[117.286768828125,11.6049025703126],[117.23295046875,11.5364601875],[117.167159453125,11.4911916328125],[117.044722929688,11.4239748359375],[117.022154570313,11.3690334296875],[117.01048953125,11.28368675],[116.955303984375,11.1793947578125],[117.002061796875,11.0910353828125],[117.00400515625,11.0419045234375],[116.978995390625,11.0031642890626],[116.88923953125,10.920005109375],[116.844058867188,10.850044171875],[116.802916289063,10.8282717109375],[116.742154570313,10.8090334296876],[116.676949492188,10.7590334296875],[116.643033476563,10.772192609375],[116.630972929688,10.9983010078125],[116.555440703125,11.0012941718751],[116.492916289063,10.9582717109375],[116.419132109375,10.9106252265625],[116.35189578125,10.8251174140625],[116.28672,10.764731671875],[116.262154570313,10.7290334296876],[116.221671171875,10.6571193671875],[116.202154570313,10.6390334296875],[116.197345,10.633843],[116.162535429688,10.6448635078125],[116.172633085938,10.7332228828125],[116.209923125,10.8289894843751],[116.3119934375,11.00495628125],[116.315987578125,11.1057131171875],[116.262633085938,11.1466310859375],[116.11474734375,11.1818556953125],[116.023062773438,11.2357570625],[116.019908476563,11.3153615546876],[116.08047,11.4142726875001],[116.160719023438,11.58431175],[116.218214140625,11.64636253125],[116.278150664063,11.6780812812501],[116.318858671875,11.6796974921875],[116.376886015625,11.66132346875],[116.507135039063,11.5590334296875],[116.58422,11.57241721875],[116.640343046875,11.6244191718751],[116.774146757813,11.8828762031251],[116.818941679688,11.9137013984375],[117.01798953125,11.897798078125],[117.062535429688,11.8690334296875],[117.202154570313,11.7586525703125],[117.281529570313,11.7004299140625],[117.302154570313,11.6415920234375],[117.286768828125,11.6049025703126]]]]}},{"type":"Feature","properties":{"name":"中沙群岛的岛礁及其海域"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.411881132813,13.9293044257813],[115.407345,13.923843],[115.363057890625,13.9368386054687],[115.36107546875,13.9562966132813],[115.37818484375,13.976889875],[115.409796171875,13.9801125312501],[115.441422148438,13.953843],[115.411881132813,13.9293044257813]]],[[[117.806969023438,15.1194484687501],[117.817345,15.103843],[117.713780546875,15.1081520820313],[117.704263945313,15.1459181953125],[117.731339140625,15.1278371406251],[117.806969023438,15.1194484687501]]],[[[117.767345,15.193843],[117.84197390625,15.160649640625],[117.830064726563,15.1449782539063],[117.77197390625,15.1784719062501],[117.767345,15.193843]]],[[[117.767345,15.193843],[117.725211210938,15.2241432929688],[117.710850859375,15.150571515625],[117.7124621875,15.229555890625],[117.756046171875,15.2286647773438],[117.767345,15.193843]]],[[[113.995035429688,15.4379201484375],[114.017345,15.413843],[113.972535429688,15.4223976875],[113.995035429688,15.4379201484375]]],[[[114.24795046875,15.467583234375],[114.257345,15.433843],[114.226014433594,15.4391652656251],[114.24795046875,15.467583234375]]],[[[113.893748808594,15.479087140625],[113.887345,15.4638430000001],[113.853260527344,15.4725905585938],[113.880074492188,15.4979274726563],[113.893748808594,15.479087140625]]],[[[114.275006132813,15.53925315625],[114.267345,15.523843],[114.243985625,15.5285597968751],[114.260123320313,15.557202375],[114.275006132813,15.53925315625]]],[[[114.468961210938,15.6076589179688],[114.487345,15.5838430000001],[114.45298953125,15.5896804023438],[114.468961210938,15.6076589179688]]],[[[113.757345,15.593843],[113.717345,15.593843],[113.717345,15.6138430000001],[113.757345,15.6138430000001],[113.757345,15.593843]]],[[[114.613472929688,15.6388014960937],[114.607345,15.6138430000001],[114.57326296875,15.6225905585938],[114.609312773438,15.6573635078125],[114.613472929688,15.6388014960937]]],[[[113.919305449219,15.6779055000001],[113.907345,15.6538430000001],[113.883985625,15.658559796875],[113.900123320313,15.687202375],[113.919305449219,15.6779055000001]]],[[[113.974954863281,15.8348268867188],[113.967345,15.803843],[113.933260527344,15.8125905585938],[113.943885527344,15.8479274726563],[113.974954863281,15.8348268867188]]],[[[114.78107546875,15.9082204414063],[114.787345,15.873843],[114.75271609375,15.8801589179688],[114.78107546875,15.9082204414063]]],[[[114.121073027344,16.0182204414063],[114.127345,15.983843],[114.09271609375,15.9901589179688],[114.121073027344,16.0182204414063]]],[[[114.927257109375,16.0237844062501],[114.917345,16.0038430000001],[114.903599882813,16.010796125],[114.887393828125,16.0439821601562],[114.911617460938,16.0558132148437],[114.927257109375,16.0237844062501]]],[[[114.31498171875,16.0508913398438],[114.307345,16.0338430000001],[114.224163847656,16.0380055976563],[114.220296660156,16.0504177070313],[114.275638457031,16.0676564765625],[114.31498171875,16.0508913398438]]],[[[114.496422148438,16.0447682929688],[114.487345,16.0338430000001],[114.442808867188,16.0395412421875],[114.460640898438,16.0783815742188],[114.521197539063,16.06534690625],[114.496422148438,16.0447682929688]]],[[[114.72853640625,16.1873171210938],[114.717345,16.173843],[114.692808867188,16.1810427070313],[114.705513945313,16.2066188789063],[114.820914335938,16.2183815742188],[114.804957304688,16.1987013984376],[114.72853640625,16.1873171210938]]],[[[116.743531523438,16.3176564765626],[116.737345,16.3038430000001],[116.697257109375,16.3080666328125],[116.687818632813,16.3383791328126],[116.712017851563,16.3776564765625],[116.751158476563,16.3637844062501],[116.743531523438,16.3176564765626]]],[[[113.891158476563,19.1600295234375],[113.887345,19.153843],[113.825125761719,19.1580641914063],[113.793531523438,19.1970705390625],[113.807010527344,19.2376564765625],[113.909840117188,19.2295314765625],[113.924227324219,19.2090407539063],[113.91187625,19.1727980781251],[113.891158476563,19.1600295234375]]],[[[113.04373171875,19.498637921875],[113.027345,19.473843],[112.983468046875,19.478833234375],[112.97345828125,19.5234889960937],[113.02814578125,19.535747296875],[113.04373171875,19.498637921875]]]]}},{"type":"Feature","properties":{"name":"西沙群岛"},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.231429472656,15.6997585273438],[112.227345,15.6938430000001],[112.193260527344,15.7025905585938],[112.201749296875,15.7204323554688],[112.243973417969,15.7479274726563],[112.260711699219,15.7332033515626],[112.243260527344,15.7079274726563],[112.231429472656,15.6997585273438]]],[[[111.203922148438,15.7960353828125],[111.207345,15.783843],[111.195152617188,15.7872658515626],[111.203922148438,15.7960353828125]]],[[[112.532064238281,16.0091237617188],[112.527345,16.0038430000001],[112.432625761719,16.0097805000001],[112.450428496094,16.0462697578125],[112.601698027344,16.074692609375],[112.604339628906,16.0303615546875],[112.582625761719,16.0185622382813],[112.532064238281,16.0091237617188]]],[[[111.802244902344,16.0389430976563],[111.797345,16.0338430000001],[111.732445097656,16.04089378125],[111.759163847656,16.0787429023438],[111.831939726563,16.0674733710938],[111.802244902344,16.0389430976563]]],[[[111.563636503906,16.1896022773438],[111.559188261719,16.1697585273438],[111.639613066406,16.1890407539063],[111.683973417969,16.2179274726563],[111.699820585938,16.1869264960938],[111.631429472656,16.1497585273438],[111.627345,16.143843],[111.533587675781,16.1483010078125],[111.524222441406,16.1900783515625],[111.589991484375,16.2471950507812],[111.631429472656,16.2564846015626],[111.621793242188,16.222798078125],[111.563636503906,16.1896022773438]]],[[[111.76177859375,16.2682888007813],[111.81619265625,16.224770734375],[111.811378203125,16.1860768867188],[111.771790800781,16.1693971992188],[111.767345,16.163843],[111.722552519531,16.1766506171876],[111.712899199219,16.1974709296876],[111.762899199219,16.2082888007813],[111.771790800781,16.2266457343751],[111.683084746094,16.2395558906251],[111.661561308594,16.2368801093751],[111.642899199219,16.258676984375],[111.76177859375,16.2682888007813]]],[[[112.532181425781,16.3218556953125],[112.5328528125,16.2889553046875],[112.512345,16.2885378242187],[112.464051542969,16.2895217109375],[112.422779570313,16.2694997382813],[112.417345,16.2638430000001],[112.372445097656,16.2701100898438],[112.407728300781,16.3036696601563],[112.532181425781,16.3218556953125]]],[[[112.00170046875,16.30948753125],[111.997345,16.3038430000001],[111.96298953125,16.3303615546875],[111.99959109375,16.3547414375001],[112.04408328125,16.3613161445313],[112.08170046875,16.3459206367188],[112.069447050781,16.3209963203126],[112.00170046875,16.30948753125]]],[[[112.697345,16.333843],[112.667345,16.333843],[112.667345,16.363843],[112.697345,16.363843],[112.697345,16.333843]]],[[[112.68047,16.4125295234375],[112.667345,16.3838430000001],[112.633624296875,16.388618390625],[112.647105742188,16.427563703125],[112.68047,16.4125295234375]]],[[[111.534801054688,16.4612990546875],[111.537345,16.443843],[111.484801054688,16.4466603828126],[111.505130644531,16.4663869453125],[111.534801054688,16.4612990546875]]],[[[111.700501738281,16.4677809882813],[111.707345,16.443843],[111.682899199219,16.4508327460937],[111.700501738281,16.4677809882813]]],[[[111.593985625,16.4704836250001],[111.607345,16.443843],[111.563985625,16.4478176093751],[111.571761503906,16.497202375],[111.593985625,16.4704836250001]]],[[[111.583922148438,16.5160353828126],[111.587345,16.503843],[111.575152617188,16.5072658515625],[111.583922148438,16.5160353828126]]],[[[112.512244902344,16.4789430976563],[112.507345,16.463843],[112.482445097656,16.4877663398438],[112.572752714844,16.5387429023438],[112.572381621094,16.5146413398438],[112.512244902344,16.4789430976563]]],[[[111.620894804688,16.5540895820313],[111.607345,16.523843],[111.583531523438,16.5385158515626],[111.620894804688,16.5540895820313]]],[[[111.762154570313,16.4790334296875],[111.757345,16.463843],[111.731812773438,16.4687184882813],[111.752093535156,16.4875075507813],[111.753299589844,16.5179225898437],[111.725272246094,16.5586525703125],[111.77947390625,16.5284499335938],[111.762154570313,16.4790334296875]]],[[[112.633922148438,16.5760353828125],[112.637345,16.5638430000001],[112.625152617188,16.5672658515625],[112.633922148438,16.5760353828125]]],[[[111.664195585938,16.5854567695313],[111.667345,16.5638430000001],[111.645159941406,16.567075421875],[111.664195585938,16.5854567695313]]],[[[111.712076445313,16.586880109375],[111.717345,16.5638430000001],[111.693941679688,16.5691945625001],[111.684198027344,16.5975637031251],[111.712076445313,16.586880109375]]],[[[112.739957304688,16.6977712226563],[112.747345,16.673843],[112.712625761719,16.6845632148438],[112.739957304688,16.6977712226563]]],[[[112.90375125,16.7786696601563],[112.887345,16.753843],[112.863260527344,16.7600246406251],[112.895067167969,16.7979274726563],[112.90375125,16.7786696601563]]],[[[112.252117949219,16.7846193671875],[112.257345,16.753843],[112.203961210938,16.7629128242188],[112.198746367188,16.79819846875],[112.252117949219,16.7846193671875]]],[[[112.353748808594,16.839087140625],[112.347345,16.823843],[112.313260527344,16.8325905585938],[112.340074492188,16.8579274726563],[112.353748808594,16.839087140625]]],[[[112.353319121094,16.9290407539063],[112.347345,16.9138430000001],[112.334852324219,16.9234865546876],[112.294288359375,16.97819846875],[112.3287903125,16.96212425],[112.353319121094,16.9290407539063]]],[[[112.286639433594,16.9864626289063],[112.277345,16.963843],[112.252425566406,16.9698464179688],[112.205755644531,16.9606252265626],[112.193170195313,16.9825905585938],[112.239969511719,17.000639875],[112.286639433594,16.9864626289063]]],[[[111.457345,17.073843],[111.499166289063,17.0776784492188],[111.507345,17.093843],[111.54029421875,17.0981252265625],[111.514429960938,17.1072927070313],[111.507345,17.093843],[111.465523710938,17.0900075507812],[111.442445097656,17.08815940625],[111.47650515625,17.1067092109375],[111.540875273438,17.1287429023438],[111.562244902344,17.0921706367188],[111.477430449219,17.0589430976563],[111.462244902344,17.0687429023438],[111.457345,17.073843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"白沙黎族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.17298953125,19.395044171875],[109.216839628906,19.387290265625],[109.237345,19.3903200507813],[109.262345,19.386626203125],[109.31486453125,19.3943874335938],[109.34170046875,19.37819846875],[109.37298953125,19.36948753125],[109.383880644531,19.3553762031251],[109.412345,19.3595827460938],[109.430169707031,19.35694846875],[109.44298953125,19.37819846875],[109.451773710938,19.3996657539063],[109.462345,19.3981032539062],[109.488194609375,19.4019240546875],[109.496844511719,19.3433986640625],[109.46431765625,19.2995290351563],[109.536951933594,19.3102638984376],[109.56170046875,19.27819846875],[109.57298953125,19.2694875312501],[109.582345,19.246626203125],[109.602916289063,19.2496657539063],[109.619127226563,19.2100563789063],[109.642345,19.206626203125],[109.66490359375,19.2099611640625],[109.68170046875,19.18819846875],[109.687345,19.183843],[109.698949003906,19.1295339179688],[109.682345,19.1285451484375],[109.661585722656,19.1297829414063],[109.634432402344,19.0993898750001],[109.612064238281,19.0891237617188],[109.602569609375,19.0583791328125],[109.546385527344,19.078540265625],[109.531798125,19.0467555976563],[109.517345,19.033843],[109.465128203125,19.0273122382813],[109.452899199219,18.9982888007813],[109.419207792969,18.988657453125],[109.402899199219,18.9682888007813],[109.36463015625,18.9376442695313],[109.337345,18.943843],[109.33298953125,18.94948753125],[109.297345,18.963843],[109.278680449219,18.9690407539063],[109.283084746094,18.998843],[109.274185820313,19.0590505195313],[109.22170046875,19.07819846875],[109.20298953125,19.08948753125],[109.17170046875,19.0981984687501],[109.159871855469,19.12710471875],[109.163990507813,19.1549831367188],[109.13170046875,19.1681984687501],[109.115704375,19.1889235664063],[109.140435820313,19.2737380195313],[109.12170046875,19.2881984687501],[109.112857695313,19.2996584296875],[109.096204863281,19.2971974921875],[109.08298953125,19.32948753125],[109.039075957031,19.34171409375],[109.045811796875,19.3873024726562],[109.037345,19.4238430000001],[109.050941191406,19.4343361640625],[109.053140898438,19.449233625],[109.036268339844,19.4772072578126],[109.071636992188,19.4824318671876],[109.13843875,19.4683376289063],[109.16170046875,19.4381984687501],[109.19365359375,19.429301984375],[109.17298953125,19.395044171875]]]]}},{"type":"Feature","properties":{"name":"保亭黎族苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.724075957031,18.8305739570313],[109.741978789063,18.816001203125],[109.76281375,18.827036359375],[109.767345,18.803843],[109.751812773438,18.7904616523438],[109.752747832031,18.7788430000001],[109.751917753906,18.7685182929688],[109.76271609375,18.7592140937501],[109.773387480469,18.7468288398438],[109.7719153125,18.7284963203126],[109.79271609375,18.7192140937501],[109.80197390625,18.70847190625],[109.834039335938,18.6808425117188],[109.821920195313,18.6591213203126],[109.823524199219,18.6391677070313],[109.800311308594,18.6191677070313],[109.802896757813,18.5869826484376],[109.847515898438,18.5670729804688],[109.831920195313,18.5391213203125],[109.833492460938,18.5195705390626],[109.777345,18.5138430000001],[109.767345,18.5258815742188],[109.752806425781,18.5083815742188],[109.716839628906,18.4861940742188],[109.702806425781,18.4383815742187],[109.691883574219,18.4293044257813],[109.6709778125,18.3954152656251],[109.632345,18.3993532539063],[109.548199492188,18.39077659375],[109.5203528125,18.4242995429688],[109.522855253906,18.448843],[109.521065703125,18.4663869453125],[109.532955351563,18.508911359375],[109.520692167969,18.5415480781251],[109.47634890625,18.5607790351562],[109.452022734375,18.5583010078126],[109.432667265625,18.5693849921875],[109.414549589844,18.5675392890625],[109.407345,18.6238430000001],[109.427022734375,18.6288918281251],[109.445697050781,18.6559377265625],[109.482957792969,18.6475856757813],[109.523260527344,18.6579274726563],[109.531429472656,18.6997585273438],[109.543260527344,18.7079274726563],[109.553526640625,18.7479274726562],[109.575687285156,18.7387551093751],[109.569705839844,18.7120729804687],[109.61125125,18.6850197578126],[109.621429472656,18.6997585273438],[109.633260527344,18.7079274726563],[109.644105253906,18.7236330390625],[109.672345,18.7299636054688],[109.701429472656,18.723442609375],[109.693260527344,18.7597585273438],[109.678441191406,18.7950441718751],[109.691429472656,18.8297585273438],[109.707345,18.833843],[109.724075957031,18.8305739570313]]]]}},{"type":"Feature","properties":{"name":"昌江黎族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.677345,19.303843],[108.667345,19.303843],[108.667345,19.3138430000001],[108.677345,19.3138430000001],[108.677345,19.303843]]],[[[108.667345,19.3138430000001],[108.657345,19.3138430000001],[108.657345,19.323843],[108.667345,19.323843],[108.667345,19.3138430000001]]],[[[108.677345,19.303843],[108.687635527344,19.3117848945313],[108.663199492188,19.3522951484375],[108.69170046875,19.36948753125],[108.753604765625,19.3800026679688],[108.825609160156,19.4429006171875],[108.878441191406,19.4645241523438],[108.92170046875,19.4994875312501],[108.937345,19.5038430000001],[108.940975371094,19.4974733710938],[108.973714628906,19.4802126289063],[109.001422148438,19.4266115546875],[109.029691191406,19.4372658515625],[109.037345,19.4238430000001],[109.045811796875,19.3873024726562],[109.039075957031,19.34171409375],[109.08298953125,19.32948753125],[109.096204863281,19.2971974921875],[109.112857695313,19.2996584296875],[109.12170046875,19.2881984687501],[109.140435820313,19.2737380195313],[109.115704375,19.1889235664063],[109.13170046875,19.1681984687501],[109.163990507813,19.1549831367188],[109.159871855469,19.12710471875],[109.17170046875,19.0981984687501],[109.20298953125,19.08948753125],[109.22170046875,19.07819846875],[109.274185820313,19.0590505195313],[109.283084746094,18.998843],[109.278680449219,18.9690407539063],[109.297345,18.963843],[109.245145292969,18.8995485664062],[109.20357546875,18.8979006171876],[109.164986601563,18.9183205390626],[109.117345,18.883843],[109.088284941406,18.907114484375],[109.106458769531,18.9707619453125],[109.099168730469,19.0293849921875],[109.005601835938,19.0496291328125],[109.014378691406,19.1202028632813],[108.991666289063,19.1383888984375],[108.993023710938,19.1492971015625],[108.979417753906,19.16019065625],[108.954595976563,19.2191017890626],[108.879095488281,19.2322389960938],[108.829266386719,19.2615309882813],[108.777345,19.2467043281251],[108.696636992188,19.2697512031251],[108.677345,19.293843],[108.677345,19.303843]]]]}},{"type":"Feature","properties":{"name":"澄迈县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.917345,19.4338430000001],[109.940343046875,19.429790265625],[109.922779570313,19.4211452460938],[109.917345,19.4338430000001]]],[[[110.217345,19.6238430000001],[110.229537382813,19.6204201484375],[110.220767851563,19.6116506171875],[110.217345,19.6238430000001]]],[[[109.987345,19.933843],[109.972952910156,19.9265627265625],[109.963985625,19.9023195625001],[109.995391875,19.9176564765625],[110.023260527344,19.9379274726563],[110.031429472656,19.9597585273438],[110.063548613281,19.9819362617188],[110.117652617188,19.9698073554688],[110.127345,19.983843],[110.157977324219,19.9753127265625],[110.141575957031,19.9190529609375],[110.143084746094,19.908843],[110.141600371094,19.8988088203125],[110.147345,19.863843],[110.135152617188,19.8604201484376],[110.143922148438,19.8516506171875],[110.147345,19.863843],[110.186824980469,19.8596828437501],[110.168675566406,19.848501203125],[110.193531523438,19.8400295234375],[110.201158476563,19.7976564765625],[110.217642851563,19.7608547187501],[110.207408476563,19.7279982734375],[110.221158476563,19.6876564765625],[110.257345,19.683843],[110.217345,19.6238430000001],[110.18170046875,19.63819846875],[110.17298953125,19.65948753125],[110.158426542969,19.67819846875],[110.14298953125,19.65819846875],[110.130203886719,19.6483303046876],[110.135811796875,19.6103786445313],[110.120867949219,19.598843],[110.133240996094,19.5892922187501],[110.127345,19.563843],[110.098065214844,19.5474513984375],[110.11312625,19.50913596875],[110.111087675781,19.4953346992188],[110.072147246094,19.50108909375],[110.06298953125,19.46819846875],[110.044810820313,19.4541701484375],[110.028631621094,19.4751296210938],[110.008695097656,19.4905202460938],[109.982345,19.4866262031251],[109.962345,19.4895827460938],[109.952345,19.4881032539063],[109.939967070313,19.4899343085938],[109.943148222656,19.4684108710938],[109.917345,19.4338430000001],[109.907345,19.4338430000001],[109.907345,19.3838430000001],[109.867345,19.3838430000001],[109.859410429688,19.4283669257813],[109.835455351563,19.3995290351563],[109.781910429688,19.3763063789063],[109.762806425781,19.3993044257813],[109.727345,19.413843],[109.731429472656,19.4197585273438],[109.745557890625,19.4295143867188],[109.738255644531,19.4620900703125],[109.720760527344,19.4889553046875],[109.753585234375,19.52831565625],[109.750042753906,19.5441139960938],[109.757345,19.573843],[109.767345,19.573843],[109.767345,19.5838430000001],[109.782659941406,19.6117458320313],[109.824388457031,19.6034987617188],[109.819661894531,19.62741721875],[109.853170195313,19.6680178046875],[109.861519804688,19.6996681953125],[109.873170195313,19.7180178046876],[109.886488066406,19.7844435859376],[109.87127078125,19.8084108710938],[109.874320097656,19.823843],[109.871356230469,19.838843],[109.8739465625,19.8519435859376],[109.851519804688,19.8680178046876],[109.843170195313,19.8936208320313],[109.873428984375,19.887641828125],[109.891519804688,19.9069118476563],[109.867345,19.943843],[109.892244902344,19.9809743476563],[109.941917753906,19.9921096015625],[109.961429472656,19.9579274726563],[109.979176054688,19.9456740546875],[109.987345,19.933843]]],[[[110.127345,19.983843],[110.103861113281,19.9893727851563],[110.127345,20.0038430000001],[110.127345,19.983843]]]]}},{"type":"Feature","properties":{"name":"定安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.217345,19.6238430000001],[110.220767851563,19.6116506171875],[110.229537382813,19.6204201484375],[110.257345,19.683843],[110.267838164063,19.6974391914062],[110.287345,19.7003200507813],[110.302777128906,19.6980397773438],[110.337345,19.723843],[110.362584257813,19.7176442695313],[110.377345,19.723843],[110.385286894531,19.7027077460938],[110.362806425781,19.6634596992188],[110.389249296875,19.6195217109376],[110.412806425781,19.6093044257813],[110.425494414063,19.5800514960938],[110.44255984375,19.5783107734375],[110.498509550781,19.5939528632813],[110.507345,19.563843],[110.473892851563,19.540747296875],[110.466180449219,19.5063405585938],[110.509622832031,19.516079328125],[110.542296171875,19.4935207343751],[110.547345,19.473843],[110.517921171875,19.46675315625],[110.501724882813,19.4699538398438],[110.484205351563,19.4455104804688],[110.443746367188,19.4535060859376],[110.422999296875,19.4177248359375],[110.402965117188,19.4216847968751],[110.388995390625,19.4021926093751],[110.363031035156,19.3835817695313],[110.353170195313,19.3580178046875],[110.333409453125,19.3438552070313],[110.323170195313,19.3211696601563],[110.358253203125,19.2960256171875],[110.341519804688,19.2696681953125],[110.33310671875,19.2277053046876],[110.322345,19.2298317695313],[110.297345,19.2248903632813],[110.271724882813,19.2299538398438],[110.257345,19.2098903632813],[110.24279421875,19.2301906562501],[110.227345,19.223843],[110.217191191406,19.2308547187501],[110.223465605469,19.258843],[110.221224394531,19.268843],[110.229464140625,19.3056008125],[110.178922148438,19.3185720039063],[110.183577910156,19.3393483710938],[110.161429472656,19.3679274726563],[110.153260527344,19.4172145820313],[110.178123808594,19.4553932929688],[110.222764921875,19.44538596875],[110.231429472656,19.4897585273438],[110.243616972656,19.4981716132813],[110.239281035156,19.517505109375],[110.190531035156,19.535747296875],[110.198656035156,19.5719924140625],[110.167069121094,19.5879274726562],[110.153260527344,19.5679274726563],[110.127345,19.563843],[110.133240996094,19.5892922187501],[110.120867949219,19.598843],[110.135811796875,19.6103786445313],[110.130203886719,19.6483303046876],[110.14298953125,19.65819846875],[110.158426542969,19.67819846875],[110.17298953125,19.65948753125],[110.18170046875,19.63819846875],[110.217345,19.6238430000001]]]]}},{"type":"Feature","properties":{"name":"东方市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.677345,19.293843],[108.696636992188,19.2697512031251],[108.777345,19.2467043281251],[108.829266386719,19.2615309882813],[108.879095488281,19.2322389960938],[108.954595976563,19.2191017890626],[108.979417753906,19.16019065625],[108.993023710938,19.1492971015625],[108.991666289063,19.1383888984375],[109.014378691406,19.1202028632813],[109.005601835938,19.0496291328125],[109.099168730469,19.0293849921875],[109.106458769531,18.9707619453125],[109.088284941406,18.907114484375],[109.117345,18.883843],[109.112899199219,18.8682888007813],[109.083673125,18.8559743476563],[109.071038847656,18.8117897773438],[109.032345,18.806977765625],[109.005438261719,18.8103249335938],[108.991790800781,18.7993971992188],[108.982799101563,18.7881642890625],[108.972345,18.7894655585938],[108.962345,18.7882204414063],[108.912972441406,18.7943630195313],[108.821790800781,18.7393971992188],[108.809173613281,18.7236403632813],[108.724285917969,18.7341994453126],[108.697345,18.723843],[108.690640898438,18.7472878242187],[108.669097929688,18.7984157539063],[108.622899199219,18.8354128242188],[108.631790800781,18.8593971992188],[108.660501738281,18.9082375312501],[108.642899199219,19.0093971992188],[108.618053007813,19.0964015937501],[108.657366972656,19.1278835273438],[108.681790800781,19.1914284492188],[108.652899199219,19.2093971992188],[108.63166140625,19.2183449531251],[108.63607546875,19.253843],[108.631319609375,19.2920803046876],[108.662628203125,19.2881862617188],[108.677345,19.293843]]],[[[108.657345,19.323843],[108.657345,19.3138430000001],[108.644537382813,19.3188430000001],[108.657345,19.323843]]]]}},{"type":"Feature","properties":{"name":"乐东黎族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.34021609375,18.9046169257813],[109.343333769531,18.888843],[109.341234160156,18.8782228828125],[109.366783476563,18.8599098945313],[109.350125761719,18.8050759101563],[109.354320097656,18.7838430000001],[109.351356230469,18.768843],[109.353333769531,18.758843],[109.351356230469,18.7488430000001],[109.353333769531,18.7388430000001],[109.350360136719,18.7237966132813],[109.381519804688,18.6780178046875],[109.395186796875,18.6682228828125],[109.391268339844,18.6484011054687],[109.407345,18.6238430000001],[109.391790800781,18.6193971992188],[109.310985136719,18.5547707343751],[109.314080839844,18.529887921875],[109.298914824219,18.5093971992188],[109.282899199219,18.5293971992188],[109.271790800781,18.5382888007813],[109.262899199219,18.5493971992188],[109.249251738281,18.5603249335938],[109.205094023438,18.5548317695313],[109.180948515625,18.5150783515625],[109.188424101563,18.4549782539063],[109.110716582031,18.46464378125],[109.082703886719,18.4481764960938],[109.072039824219,18.4495021796875],[109.007674589844,18.4217189765625],[108.977345,18.383843],[108.97197390625,18.3884719062501],[108.960465117188,18.4018288398438],[108.87197390625,18.42847190625],[108.82271609375,18.46921409375],[108.785767851563,18.4857033515625],[108.696031523438,18.4993776679688],[108.674251738281,18.5481862617188],[108.69271609375,18.59847190625],[108.703734160156,18.6588698554688],[108.697345,18.723843],[108.724285917969,18.7341994453126],[108.809173613281,18.7236403632813],[108.821790800781,18.7393971992188],[108.912972441406,18.7943630195313],[108.962345,18.7882204414063],[108.972345,18.7894655585938],[108.982799101563,18.7881642890625],[108.991790800781,18.7993971992188],[109.005438261719,18.8103249335938],[109.032345,18.806977765625],[109.071038847656,18.8117897773438],[109.083673125,18.8559743476563],[109.112899199219,18.8682888007813],[109.117345,18.883843],[109.164986601563,18.9183205390626],[109.20357546875,18.8979006171876],[109.245145292969,18.8995485664062],[109.297345,18.963843],[109.33298953125,18.94948753125],[109.337345,18.943843],[109.333170195313,18.9380178046875],[109.313392363281,18.923843],[109.34021609375,18.9046169257813]]]]}},{"type":"Feature","properties":{"name":"临高县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.587345,19.643843],[109.583922148438,19.6316506171875],[109.575152617188,19.6404201484376],[109.587345,19.643843]]],[[[109.817345,19.983843],[109.805152617188,19.9872658515626],[109.813922148438,19.9960353828125],[109.817345,19.983843]]],[[[109.817345,19.983843],[109.833260527344,19.9797585273438],[109.841512480469,19.9374977851562],[109.867345,19.943843],[109.891519804688,19.9069118476563],[109.873428984375,19.887641828125],[109.843170195313,19.8936208320313],[109.851519804688,19.8680178046876],[109.8739465625,19.8519435859376],[109.871356230469,19.838843],[109.874320097656,19.823843],[109.87127078125,19.8084108710938],[109.886488066406,19.7844435859376],[109.873170195313,19.7180178046876],[109.861519804688,19.6996681953125],[109.853170195313,19.6680178046875],[109.819661894531,19.62741721875],[109.824388457031,19.6034987617188],[109.782659941406,19.6117458320313],[109.767345,19.5838430000001],[109.757345,19.5838430000001],[109.757345,19.573843],[109.701429472656,19.5879274726562],[109.658350859375,19.6060207343751],[109.663658476563,19.6297048164063],[109.601429472656,19.6379274726563],[109.587345,19.643843],[109.571429472656,19.6679274726563],[109.558070097656,19.7036305976562],[109.593260527344,19.7279274726563],[109.601429472656,19.7492189765625],[109.565894804688,19.7950685859375],[109.573475371094,19.8288845039063],[109.567345,19.8538430000001],[109.567345,19.863843],[109.537345,19.863843],[109.53271609375,19.8692140937501],[109.521917753906,19.8785182929688],[109.522747832031,19.8888430000001],[109.520865507813,19.9122634101563],[109.5776575,19.9847805],[109.71775515625,20.0103346992188],[109.731998320313,19.9784133125],[109.742623320313,19.9792678046875],[109.76197390625,19.96847190625],[109.79271609375,19.95921409375],[109.812667265625,19.9480837226563],[109.817345,19.983843]]]]}},{"type":"Feature","properties":{"name":"陵水黎族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.063922148438,18.4260353828125],[110.067345,18.413843],[110.055152617188,18.4172658515626],[110.063922148438,18.4260353828125]]],[[[109.799097929688,18.7784157539063],[109.819752226563,18.7293971992188],[109.852899199219,18.7382888007813],[109.87373171875,18.7505373359376],[109.90095828125,18.7471486640625],[109.952691679688,18.7775588203125],[110.007345,18.733843],[110.014886503906,18.6436159492188],[110.06271609375,18.62921409375],[110.112056914063,18.5984181953125],[110.135638457031,18.6003127265625],[110.177345,18.5938430000001],[110.17271609375,18.58847190625],[110.105716582031,18.5366384101563],[110.086600371094,18.4845876289063],[110.0724621875,18.4376271796875],[110.042840605469,18.4400075507813],[110.041942167969,18.428843],[110.042747832031,18.418843],[110.041917753906,18.4085182929688],[110.06197390625,18.3912404609375],[110.004378691406,18.3740114570313],[109.97197390625,18.3884719062501],[109.958587675781,18.4184719062501],[109.89197390625,18.40921409375],[109.822178984375,18.3782326484376],[109.804586210938,18.3986525703125],[109.787345,18.4038430000001],[109.781043730469,18.4294924140625],[109.793260527344,18.4379274726563],[109.811429472656,18.4672145820313],[109.76982546875,18.4959401679688],[109.777345,18.5138430000001],[109.833492460938,18.5195705390626],[109.831920195313,18.5391213203125],[109.847515898438,18.5670729804688],[109.802896757813,18.5869826484376],[109.800311308594,18.6191677070313],[109.823524199219,18.6391677070313],[109.821920195313,18.6591213203126],[109.834039335938,18.6808425117188],[109.80197390625,18.70847190625],[109.79271609375,18.7192140937501],[109.7719153125,18.7284963203126],[109.773387480469,18.7468288398438],[109.76271609375,18.7592140937501],[109.751917753906,18.7685182929688],[109.752747832031,18.7788430000001],[109.751812773438,18.7904616523438],[109.767345,18.803843],[109.799097929688,18.7784157539063]],[[109.981429472656,18.4297585273438],[109.973260527344,18.4025905585938],[110.007345,18.3938430000001],[110.023260527344,18.4179274726563],[110.027069121094,18.4579274726563],[110.013260527344,18.4379274726563],[109.981429472656,18.4297585273438]]]]}},{"type":"Feature","properties":{"name":"琼海市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.567345,19.133843],[110.577345,19.133843],[110.577345,19.093843],[110.567345,19.093843],[110.567345,19.133843]]],[[[110.567345,19.133843],[110.557345,19.133843],[110.557345,19.093843],[110.51525515625,19.1030226875001],[110.499229765625,19.0844216132813],[110.472623320313,19.0992678046875],[110.461180449219,19.0983473945313],[110.463204375,19.073149640625],[110.43197390625,19.05921409375],[110.3972278125,19.039829328125],[110.36197390625,19.0292140937501],[110.330142851563,19.0066457343751],[110.258563261719,18.97921409375],[110.221363554688,18.9999684882813],[110.202020292969,18.9984157539063],[110.192345,19.0096462226563],[110.182474394531,18.9981911445313],[110.162215605469,19.0094948554688],[110.157345,19.0038430000001],[110.15170046875,19.00819846875],[110.13298953125,19.0394875312501],[110.118878203125,19.0503786445312],[110.124644804688,19.0894045234375],[110.117345,19.133843],[110.133260527344,19.1579274726563],[110.143975859375,19.1865651679687],[110.140369902344,19.2026491523438],[110.172345,19.1954811835937],[110.214249296875,19.2048732734376],[110.227345,19.223843],[110.24279421875,19.2301906562501],[110.257345,19.2098903632813],[110.271724882813,19.2299538398438],[110.297345,19.2248903632813],[110.322345,19.2298317695313],[110.33310671875,19.2277053046876],[110.341519804688,19.2696681953125],[110.358253203125,19.2960256171875],[110.323170195313,19.3211696601563],[110.333409453125,19.3438552070313],[110.353170195313,19.3580178046875],[110.363031035156,19.3835817695313],[110.388995390625,19.4021926093751],[110.402965117188,19.4216847968751],[110.422999296875,19.4177248359375],[110.443746367188,19.4535060859376],[110.484205351563,19.4455104804688],[110.501724882813,19.4699538398438],[110.517921171875,19.46675315625],[110.547345,19.473843],[110.55244265625,19.4545241523438],[110.573170195313,19.4396681953126],[110.5912121875,19.3496681953125],[110.620369902344,19.3607546210938],[110.63404421875,19.3962160468751],[110.652425566406,19.3998464179688],[110.677345,19.3938430000001],[110.6694153125,19.3736721015626],[110.677430449219,19.3194362617187],[110.64170046875,19.30948753125],[110.632659941406,19.2562624335938],[110.61298953125,19.2081984687501],[110.599049101563,19.1974391914063],[110.58298953125,19.15819846875],[110.567345,19.133843]]]]}},{"type":"Feature","properties":{"name":"琼中黎族苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.849207792969,19.3786574531251],[109.826593046875,19.3504177070312],[109.812899199219,19.29046409375],[109.862899199219,19.2693971992188],[109.891790800781,19.2482888007813],[109.9360559375,19.2356349921875],[109.951790800781,19.1982888007813],[109.992899199219,19.1893971992188],[110.041976347656,19.1605471015625],[110.059664335938,19.1384596992188],[110.117345,19.133843],[110.124644804688,19.0894045234375],[110.118878203125,19.0503786445312],[110.13298953125,19.0394875312501],[110.15170046875,19.00819846875],[110.157345,19.0038430000001],[110.135181914063,18.96306175],[110.101073027344,18.9395143867188],[110.105706816406,18.918843],[110.067594023438,18.9045827460938],[110.0507825,18.8787624335938],[110.080245390625,18.8407472968751],[110.09486453125,18.8059401679688],[110.071429472656,18.7897585273438],[110.053053007813,18.757563703125],[110.038992949219,18.7607155585938],[110.023260527344,18.7379274726563],[110.007345,18.733843],[109.952691679688,18.7775588203125],[109.90095828125,18.7471486640625],[109.87373171875,18.7505373359376],[109.852899199219,18.7382888007813],[109.819752226563,18.7293971992188],[109.799097929688,18.7784157539063],[109.767345,18.803843],[109.76281375,18.827036359375],[109.741978789063,18.816001203125],[109.724075957031,18.8305739570313],[109.707345,18.833843],[109.700303984375,18.8901979804688],[109.723587675781,18.908843],[109.703873320313,18.9246315742188],[109.652345,18.9182204414063],[109.632345,18.9207082343751],[109.607345,18.9176003242188],[109.577366972656,18.9213283515625],[109.562899199219,18.9393971992187],[109.551790800781,18.9482888007812],[109.517345,19.033843],[109.531798125,19.0467555976563],[109.546385527344,19.078540265625],[109.602569609375,19.0583791328125],[109.612064238281,19.0891237617188],[109.634432402344,19.0993898750001],[109.661585722656,19.1297829414063],[109.682345,19.1285451484375],[109.698949003906,19.1295339179688],[109.687345,19.183843],[109.703228789063,19.248716046875],[109.698902617188,19.2738430000001],[109.711295195313,19.3458303046876],[109.648382597656,19.3587721992188],[109.640555449219,19.4042311835937],[109.687345,19.4122853828125],[109.71263796875,19.4079323554688],[109.727345,19.413843],[109.762806425781,19.3993044257813],[109.781910429688,19.3763063789063],[109.835455351563,19.3995290351563],[109.859410429688,19.4283669257813],[109.867345,19.3838430000001],[109.849207792969,19.3786574531251]]]]}},{"type":"Feature","properties":{"name":"屯昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.917345,19.4338430000001],[109.922779570313,19.4211452460938],[109.940343046875,19.429790265625],[109.943148222656,19.4684108710938],[109.939967070313,19.4899343085938],[109.952345,19.4881032539063],[109.962345,19.4895827460938],[109.982345,19.4866262031251],[110.008695097656,19.4905202460938],[110.028631621094,19.4751296210938],[110.044810820313,19.4541701484375],[110.06298953125,19.46819846875],[110.072147246094,19.50108909375],[110.111087675781,19.4953346992188],[110.11312625,19.50913596875],[110.098065214844,19.5474513984375],[110.127345,19.563843],[110.153260527344,19.5679274726563],[110.167069121094,19.5879274726562],[110.198656035156,19.5719924140625],[110.190531035156,19.535747296875],[110.239281035156,19.517505109375],[110.243616972656,19.4981716132813],[110.231429472656,19.4897585273438],[110.222764921875,19.44538596875],[110.178123808594,19.4553932929688],[110.153260527344,19.4172145820313],[110.161429472656,19.3679274726563],[110.183577910156,19.3393483710938],[110.178922148438,19.3185720039063],[110.229464140625,19.3056008125],[110.221224394531,19.268843],[110.223465605469,19.258843],[110.217191191406,19.2308547187501],[110.227345,19.223843],[110.214249296875,19.2048732734376],[110.172345,19.1954811835937],[110.140369902344,19.2026491523438],[110.143975859375,19.1865651679687],[110.133260527344,19.1579274726563],[110.117345,19.133843],[110.059664335938,19.1384596992188],[110.041976347656,19.1605471015625],[109.992899199219,19.1893971992188],[109.951790800781,19.1982888007813],[109.9360559375,19.2356349921875],[109.891790800781,19.2482888007813],[109.862899199219,19.2693971992188],[109.812899199219,19.29046409375],[109.826593046875,19.3504177070312],[109.849207792969,19.3786574531251],[109.867345,19.3838430000001],[109.907345,19.3838430000001],[109.907345,19.4338430000001],[109.917345,19.4338430000001]]]]}},{"type":"Feature","properties":{"name":"万宁市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.477345,18.683843],[110.500704375,18.67202659375],[110.481033964844,18.6545851875],[110.477345,18.683843]]],[[[110.477345,18.683843],[110.465152617188,18.6872658515626],[110.473922148438,18.6960353828125],[110.477345,18.683843]]],[[[110.51525515625,19.1030226875001],[110.557345,19.093843],[110.567345,19.093843],[110.56298953125,19.04819846875],[110.536605253906,19.0374025703126],[110.5198840625,18.9948659492188],[110.510128203125,18.9288430000001],[110.513822050781,18.903843],[110.511510039063,18.8881911445313],[110.52170046875,18.8281984687501],[110.535318632813,18.78149925],[110.512345,18.7781032539063],[110.497952910156,18.78022971875],[110.467493925781,18.7677663398438],[110.43170046875,18.71948753125],[110.420601835938,18.6668849921876],[110.387345,18.6717995429688],[110.36205203125,18.66806175],[110.332000761719,18.6798757148438],[110.31978640625,18.664048078125],[110.276485625,18.6704470039063],[110.23298953125,18.6381984687501],[110.197464628906,18.6169533515625],[110.18298953125,18.5981984687501],[110.177345,18.5938430000001],[110.135638457031,18.6003127265625],[110.112056914063,18.5984181953125],[110.06271609375,18.62921409375],[110.014886503906,18.6436159492188],[110.007345,18.733843],[110.023260527344,18.7379274726563],[110.038992949219,18.7607155585938],[110.053053007813,18.757563703125],[110.071429472656,18.7897585273438],[110.09486453125,18.8059401679688],[110.080245390625,18.8407472968751],[110.0507825,18.8787624335938],[110.067594023438,18.9045827460938],[110.105706816406,18.918843],[110.101073027344,18.9395143867188],[110.135181914063,18.96306175],[110.157345,19.0038430000001],[110.162215605469,19.0094948554688],[110.182474394531,18.9981911445313],[110.192345,19.0096462226563],[110.202020292969,18.9984157539063],[110.221363554688,18.9999684882813],[110.258563261719,18.97921409375],[110.330142851563,19.0066457343751],[110.36197390625,19.0292140937501],[110.3972278125,19.039829328125],[110.43197390625,19.05921409375],[110.463204375,19.073149640625],[110.461180449219,19.0983473945313],[110.472623320313,19.0992678046875],[110.499229765625,19.0844216132813],[110.51525515625,19.1030226875001]],[[110.483624296875,18.800122296875],[110.497345,18.793843],[110.504124785156,18.8086598945313],[110.500628691406,18.8188430000001],[110.506085234375,18.8347365546875],[110.490565214844,18.8686598945313],[110.500189238281,18.8966872382813],[110.473492460938,18.8774709296875],[110.461951933594,18.8425026679688],[110.437484160156,18.8279982734376],[110.443941679688,18.8091945625],[110.483624296875,18.800122296875]],[[110.343260527344,18.6884328437501],[110.417345,18.683843],[110.404271269531,18.702778546875],[110.343260527344,18.6884328437501]]]]}},{"type":"Feature","properties":{"name":"文昌市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.203922148438,19.9160353828125],[111.207345,19.903843],[111.195152617188,19.9072658515626],[111.203922148438,19.9160353828125]]],[[[111.273922148438,19.9860353828126],[111.277345,19.973843],[111.265152617188,19.9772658515625],[111.273922148438,19.9860353828126]]],[[[110.686439238281,20.1543971992188],[110.724058867188,20.0634279609375],[110.76271609375,20.03921409375],[110.795279570313,20.0014186835938],[110.881812773438,19.9944655585938],[110.936119414063,20.01440940625],[110.952764921875,19.9690822578125],[110.951925078125,19.9586232734375],[110.99271609375,19.8292140937501],[111.003900175781,19.6954274726563],[111.030870390625,19.6721901679688],[111.033590117188,19.6383400703125],[110.984610625,19.6422756171875],[110.95173953125,19.6041213203125],[110.90896609375,19.5773317695313],[110.859422636719,19.5198244453125],[110.82744265625,19.5569435859375],[110.81197390625,19.52921409375],[110.80193484375,19.4850270820313],[110.77197390625,19.45921409375],[110.760953398438,19.4226149726563],[110.70197390625,19.4092140937501],[110.677345,19.3938430000001],[110.652425566406,19.3998464179688],[110.63404421875,19.3962160468751],[110.620369902344,19.3607546210938],[110.5912121875,19.3496681953125],[110.573170195313,19.4396681953126],[110.55244265625,19.4545241523438],[110.547345,19.473843],[110.542296171875,19.4935207343751],[110.509622832031,19.516079328125],[110.466180449219,19.5063405585938],[110.473892851563,19.540747296875],[110.507345,19.563843],[110.543660917969,19.559712140625],[110.541124296875,19.5483962226563],[110.556849394531,19.5242482734375],[110.587345,19.5310842109376],[110.602623320313,19.5276589179687],[110.637200957031,19.5421828437501],[110.627789335938,19.5841677070313],[110.643260527344,19.6079274726563],[110.651429472656,19.6397585273438],[110.665194121094,19.649262921875],[110.624505644531,19.6597048164063],[110.609754667969,19.6991310859376],[110.639454375,19.7102443671876],[110.621102324219,19.7384279609376],[110.627345,19.763843],[110.637345,19.763843],[110.637345,19.7738430000001],[110.641429472656,19.7897585273437],[110.655574980469,19.8114821601563],[110.692074003906,19.8032985664063],[110.705396757813,19.8552175117188],[110.671051054688,19.8680690742188],[110.674798613281,19.8847927070313],[110.66048953125,19.9309596992188],[110.627345,19.953843],[110.627345,19.973843],[110.617345,19.973843],[110.601827421875,20.0113649726563],[110.57271609375,20.0364455390626],[110.585245390625,20.1078713203125],[110.602345,20.1092458320313],[110.644610625,20.1058498359375],[110.686439238281,20.1543971992188]],[[110.887345,19.643843],[110.875152617188,19.6404201484376],[110.883922148438,19.6316506171875],[110.910069609375,19.6478493476563],[110.892906523438,19.656841046875],[110.887345,19.643843]],[[110.821761503906,19.56831565625],[110.827345,19.563843],[110.833194609375,19.6106032539063],[110.869002714844,19.6061501289062],[110.891790800781,19.6186721015625],[110.773795195313,19.6282888007813],[110.821761503906,19.56831565625]]]]}},{"type":"Feature","properties":{"name":"五指山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.562899199219,18.9393971992187],[109.577366972656,18.9213283515625],[109.607345,18.9176003242188],[109.632345,18.9207082343751],[109.652345,18.9182204414063],[109.703873320313,18.9246315742188],[109.723587675781,18.908843],[109.700303984375,18.8901979804688],[109.707345,18.833843],[109.691429472656,18.8297585273438],[109.678441191406,18.7950441718751],[109.693260527344,18.7597585273438],[109.701429472656,18.723442609375],[109.672345,18.7299636054688],[109.644105253906,18.7236330390625],[109.633260527344,18.7079274726563],[109.621429472656,18.6997585273438],[109.61125125,18.6850197578126],[109.569705839844,18.7120729804687],[109.575687285156,18.7387551093751],[109.553526640625,18.7479274726562],[109.543260527344,18.7079274726563],[109.531429472656,18.6997585273438],[109.523260527344,18.6579274726563],[109.482957792969,18.6475856757813],[109.445697050781,18.6559377265625],[109.427022734375,18.6288918281251],[109.407345,18.6238430000001],[109.391268339844,18.6484011054687],[109.395186796875,18.6682228828125],[109.381519804688,18.6780178046875],[109.350360136719,18.7237966132813],[109.353333769531,18.7388430000001],[109.351356230469,18.7488430000001],[109.353333769531,18.758843],[109.351356230469,18.768843],[109.354320097656,18.7838430000001],[109.350125761719,18.8050759101563],[109.366783476563,18.8599098945313],[109.341234160156,18.8782228828125],[109.343333769531,18.888843],[109.34021609375,18.9046169257813],[109.313392363281,18.923843],[109.333170195313,18.9380178046875],[109.337345,18.943843],[109.36463015625,18.9376442695313],[109.402899199219,18.9682888007813],[109.419207792969,18.988657453125],[109.452899199219,18.9982888007813],[109.465128203125,19.0273122382813],[109.517345,19.033843],[109.551790800781,18.9482888007812],[109.562899199219,18.9393971992187]]]]}},{"type":"Feature","properties":{"name":"儋州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.757345,19.573843],[109.757345,19.5838430000001],[109.767345,19.5838430000001],[109.767345,19.573843],[109.757345,19.573843]]],[[[109.177345,19.723843],[109.173922148438,19.7116506171876],[109.165152617188,19.7204201484375],[109.177345,19.723843]]],[[[109.537345,19.8438430000001],[109.527345,19.8438430000001],[109.527345,19.863843],[109.537345,19.863843],[109.537345,19.8438430000001]]],[[[109.317345,19.903843],[109.323582792969,19.8801955390625],[109.381724882813,19.891684796875],[109.3927746875,19.8762673164063],[109.422345,19.8574953437501],[109.441912871094,19.8699172187501],[109.452345,19.8678542304688],[109.463053007813,19.8699709296875],[109.471519804688,19.8480178046875],[109.527345,19.8438430000001],[109.532345,19.8310353828126],[109.537345,19.8438430000001],[109.550704375,19.850483625],[109.567345,19.8538430000001],[109.573475371094,19.8288845039063],[109.565894804688,19.7950685859375],[109.601429472656,19.7492189765625],[109.593260527344,19.7279274726563],[109.558070097656,19.7036305976562],[109.571429472656,19.6679274726563],[109.587345,19.643843],[109.575152617188,19.6404201484376],[109.583922148438,19.6316506171875],[109.587345,19.643843],[109.601429472656,19.6379274726563],[109.663658476563,19.6297048164063],[109.658350859375,19.6060207343751],[109.701429472656,19.5879274726562],[109.757345,19.573843],[109.750042753906,19.5441139960938],[109.753585234375,19.52831565625],[109.720760527344,19.4889553046875],[109.738255644531,19.4620900703125],[109.745557890625,19.4295143867188],[109.731429472656,19.4197585273438],[109.727345,19.413843],[109.71263796875,19.4079323554688],[109.687345,19.4122853828125],[109.640555449219,19.4042311835937],[109.648382597656,19.3587721992188],[109.711295195313,19.3458303046876],[109.698902617188,19.2738430000001],[109.703228789063,19.248716046875],[109.687345,19.183843],[109.68170046875,19.18819846875],[109.66490359375,19.2099611640625],[109.642345,19.206626203125],[109.619127226563,19.2100563789063],[109.602916289063,19.2496657539063],[109.582345,19.246626203125],[109.57298953125,19.2694875312501],[109.56170046875,19.27819846875],[109.536951933594,19.3102638984376],[109.46431765625,19.2995290351563],[109.496844511719,19.3433986640625],[109.488194609375,19.4019240546875],[109.462345,19.3981032539062],[109.451773710938,19.3996657539063],[109.44298953125,19.37819846875],[109.430169707031,19.35694846875],[109.412345,19.3595827460938],[109.383880644531,19.3553762031251],[109.37298953125,19.36948753125],[109.34170046875,19.37819846875],[109.31486453125,19.3943874335938],[109.262345,19.386626203125],[109.237345,19.3903200507813],[109.216839628906,19.387290265625],[109.17298953125,19.395044171875],[109.19365359375,19.429301984375],[109.16170046875,19.4381984687501],[109.13843875,19.4683376289063],[109.071636992188,19.4824318671876],[109.036268339844,19.4772072578126],[109.053140898438,19.449233625],[109.050941191406,19.4343361640625],[109.037345,19.4238430000001],[109.029691191406,19.4372658515625],[109.001422148438,19.4266115546875],[108.973714628906,19.4802126289063],[108.940975371094,19.4974733710938],[108.937345,19.5038430000001],[108.937345,19.513843],[108.947345,19.513843],[108.950767851563,19.5016506171875],[108.959537382813,19.5104201484375],[108.947345,19.513843],[109.00888796875,19.5852761054688],[109.078949003906,19.6063698554688],[109.10197390625,19.61921409375],[109.17271609375,19.64847190625],[109.20443484375,19.6709596992188],[109.217345,19.713843],[109.230704375,19.720483625],[109.287345,19.723843],[109.297886992188,19.6896999335938],[109.312064238281,19.7162111640626],[109.287345,19.723843],[109.278216582031,19.7470632148438],[109.324310332031,19.7791188789063],[109.283170195313,19.7905739570312],[109.25298953125,19.76819846875],[109.224605742188,19.7565822578125],[109.217345,19.713843],[109.192550078125,19.73022971875],[109.177345,19.723843],[109.173260527344,19.7497585273437],[109.159381132813,19.794536359375],[109.199176054688,19.8220119453125],[109.217667265625,19.8487941718751],[109.253260527344,19.8579274726563],[109.269249296875,19.9006569648438],[109.282791777344,19.8976222968751],[109.302147246094,19.9102272773438],[109.317345,19.903843]],[[109.465152617188,19.8272658515626],[109.477345,19.823843],[109.473922148438,19.8360353828125],[109.465152617188,19.8272658515626]]],[[[109.317345,19.903843],[109.320767851563,19.9160353828125],[109.329537382813,19.9072658515626],[109.317345,19.903843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"南川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.907345,29.1838430000001],[106.884346953125,29.187895734375],[106.901910429688,29.1965407539063],[106.907345,29.1838430000001]]],[[[107.013922148438,29.4960353828125],[107.017345,29.4838430000001],[107.005152617188,29.4872658515625],[107.013922148438,29.4960353828125]]],[[[106.907345,29.1838430000001],[106.946671171875,29.1906862617188],[106.96470828125,29.2213698554688],[106.952899199219,29.2493971992188],[106.923724394531,29.2727590156251],[106.914254179688,29.3488942695313],[106.935413847656,29.4942897773438],[106.947345,29.503843],[106.95170046875,29.4981984687501],[107.02595828125,29.4682912421875],[107.019954863281,29.4276711250001],[107.052952910156,29.3729689765625],[107.105943632813,29.3594875312501],[107.101517363281,29.3894362617188],[107.13298953125,29.39819846875],[107.142916289063,29.4224538398438],[107.196851835938,29.4144826484376],[107.21170046875,29.37819846875],[107.231514921875,29.3629055000001],[107.237345,29.383843],[107.263170195313,29.3796681953125],[107.279869414063,29.3563674140625],[107.384622832031,29.3353664375],[107.376417265625,29.2938430000001],[107.419112578125,29.2773757148438],[107.3984778125,29.2448757148438],[107.391300078125,29.2085549140625],[107.397345,29.193843],[107.41197390625,29.13847190625],[107.427235136719,29.1253224921875],[107.402669707031,29.0968093085938],[107.36271609375,29.1000173164062],[107.37197390625,29.06847190625],[107.391846953125,29.0513478828126],[107.358590117188,29.0044435859376],[107.39271609375,28.98921409375],[107.411229277344,28.9677272773438],[107.433043242188,28.9489333320313],[107.41197390625,28.91921409375],[107.40271609375,28.8984719062501],[107.39197390625,28.87921409375],[107.387345,28.853843],[107.362386503906,28.8477126289063],[107.352345,28.8499636054688],[107.329862089844,28.8449245429688],[107.334991484375,28.8220388007813],[107.251927519531,28.7929225898438],[107.247345,28.7638430000001],[107.221519804688,28.7780178046875],[107.205679960938,28.8001174140625],[107.213472929688,28.8395510078125],[107.191217070313,28.8481349921875],[107.196903105469,28.8769142890625],[107.096768828125,28.8969899726563],[107.083170195313,28.8780178046875],[107.053170195313,28.8736843085938],[107.074852324219,28.889223859375],[107.057345,28.893843],[107.05298953125,28.89948753125],[107.047340117188,28.9377053046876],[107.003382597656,28.9556960273438],[107.026334257813,28.9937477851563],[106.980203886719,29.0293556953125],[106.983084746094,29.048843],[106.981302519531,29.0609059882813],[106.962345,29.0581032539063],[106.947345,29.0603200507812],[106.899234648438,29.0532106757813],[106.920096464844,29.1062819648438],[106.89170046875,29.12819846875],[106.887345,29.1438430000001],[106.903260527344,29.1679274726563],[106.907345,29.1838430000001]]]]}},{"type":"Feature","properties":{"name":"荣昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.727345,29.393843],[105.727345,29.403843],[105.740152617188,29.398843],[105.727345,29.393843]]],[[[105.337345,29.4538430000001],[105.333922148438,29.4416506171875],[105.325152617188,29.4504201484375],[105.337345,29.4538430000001]]],[[[105.651910429688,29.5065407539063],[105.657345,29.4938430000001],[105.634346953125,29.4978957343751],[105.651910429688,29.5065407539063]]],[[[105.327345,29.6038430000001],[105.317345,29.6038430000001],[105.322345,29.6166506171875],[105.327345,29.6038430000001]]],[[[105.727345,29.403843],[105.714537382813,29.398843],[105.727345,29.393843],[105.727345,29.383843],[105.652154570313,29.3490334296875],[105.642535429688,29.3286525703125],[105.625760527344,29.3131081367188],[105.657345,29.283843],[105.657345,29.273843],[105.667345,29.273843],[105.660968046875,29.2496681953125],[105.641519804688,29.2580178046875],[105.632845488281,29.2805104804687],[105.6127746875,29.2677663398438],[105.552174101563,29.2798659492188],[105.511815214844,29.2676052070313],[105.503170195313,29.2796681953125],[105.471519804688,29.2880178046876],[105.459549589844,29.3333864570313],[105.417345,29.313843],[105.420885039063,29.3603029609375],[105.43478640625,29.3679225898438],[105.430284453125,29.3788430000001],[105.43646609375,29.393843],[105.425662871094,29.4200539375],[105.366605253906,29.4279567695313],[105.400589628906,29.4465846992188],[105.364276152344,29.4664870429688],[105.353199492188,29.4462795234375],[105.337345,29.4538430000001],[105.333260527344,29.4697585273438],[105.321429472656,29.4779274726563],[105.311732207031,29.5275856757813],[105.287345,29.533843],[105.289888945313,29.5612990546875],[105.304801054688,29.5763869453125],[105.309888945313,29.6012990546875],[105.317345,29.6038430000001],[105.322345,29.5910353828125],[105.327345,29.6038430000001],[105.33298953125,29.60819846875],[105.350809355469,29.6312868476562],[105.378409453125,29.6272072578125],[105.383084746094,29.658843],[105.381522246094,29.6694142890625],[105.417345,29.6838430000001],[105.442303496094,29.6777126289063],[105.452345,29.6799636054687],[105.471673613281,29.675630109375],[105.477345,29.6838430000001],[105.482899199219,29.6793971992188],[105.491790800781,29.6582888007812],[105.502899199219,29.6393971992188],[105.511790800781,29.5982888007813],[105.532899199219,29.5893971992188],[105.542144804688,29.5778469062501],[105.576922636719,29.5982888007813],[105.596148710938,29.5696755195313],[105.579071074219,29.5098708320313],[105.592345,29.5082204414063],[105.611890898438,29.5106520820313],[105.628785429688,29.489555890625],[105.652899199219,29.4793971992188],[105.671890898438,29.4556764960938],[105.719823027344,29.4616384101563],[105.733038359375,29.4391579414063],[105.727345,29.403843]]]]}},{"type":"Feature","properties":{"name":"巴南区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.907345,29.1838430000001],[106.901910429688,29.1965407539063],[106.884346953125,29.187895734375],[106.903260527344,29.1679274726563],[106.887345,29.1438430000001],[106.845953398438,29.1601149726563],[106.820809355469,29.1563991523438],[106.802689238281,29.1798757148438],[106.77263796875,29.16806175],[106.747345,29.1717995429688],[106.721832304688,29.1680275703125],[106.71298953125,29.1794875312501],[106.681612578125,29.1923268867188],[106.661832304688,29.1667018867188],[106.628761015625,29.1715895820312],[106.60298953125,29.13819846875],[106.577345,29.133843],[106.547345,29.1415407539063],[106.553565703125,29.1692897773438],[106.539456816406,29.1909572578125],[106.544217558594,29.2121950507813],[106.521429472656,29.2279274726562],[106.503260527344,29.2797585273438],[106.481429472656,29.3079274726563],[106.463116484375,29.3601735664063],[106.437345,29.353843],[106.44732546875,29.3869948554687],[106.494410429688,29.3998830390625],[106.531444121094,29.3969069648438],[106.49271609375,29.4515261054688],[106.50197390625,29.47921409375],[106.517345,29.4838430000001],[106.5427746875,29.4712038398438],[106.547345,29.4938430000001],[106.56298953125,29.48948753125],[106.5919153125,29.4680397773438],[106.627345,29.47327659375],[106.671832304688,29.4667018867188],[106.68978640625,29.4899611640626],[106.7306653125,29.4839186835938],[106.77170046875,29.55948753125],[106.797345,29.593843],[106.82271609375,29.5892140937501],[106.843424101563,29.577661359375],[106.887345,29.653843],[106.900704375,29.680483625],[106.933985625,29.6972023750001],[106.940704375,29.7304836250001],[106.963985625,29.757202375],[106.967345,29.773843],[106.983260527344,29.7697585273437],[106.997345,29.7138430000001],[106.988450957031,29.6827370429688],[106.971749296875,29.6392824531251],[106.951790800781,29.5693971992187],[106.947345,29.503843],[106.935413847656,29.4942897773438],[106.914254179688,29.3488942695313],[106.923724394531,29.2727590156251],[106.952899199219,29.2493971992188],[106.96470828125,29.2213698554688],[106.946671171875,29.1906862617188],[106.907345,29.1838430000001]]]]}},{"type":"Feature","properties":{"name":"大渡口区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.49271609375,29.4515261054688],[106.531444121094,29.3969069648438],[106.494410429688,29.3998830390625],[106.44732546875,29.3869948554687],[106.437345,29.353843],[106.397345,29.343843],[106.403543730469,29.3690822578126],[106.389700957031,29.4020436835938],[106.393465605469,29.4188430000001],[106.389383574219,29.4370583320313],[106.403016386719,29.4401149726563],[106.417069121094,29.4197585273438],[106.457181425781,29.4322682929688],[106.451124296875,29.4592897773438],[106.46408328125,29.4791896796875],[106.443394804688,29.4934743476563],[106.472957792969,29.5001003242187],[106.513260527344,29.4897585273438],[106.517345,29.4838430000001],[106.50197390625,29.47921409375],[106.49271609375,29.4515261054688]]]]}},{"type":"Feature","properties":{"name":"江北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.792200957031,29.6795339179688],[106.851549101563,29.6572341132812],[106.872611113281,29.659380109375],[106.887345,29.653843],[106.843424101563,29.577661359375],[106.82271609375,29.5892140937501],[106.797345,29.593843],[106.758326445313,29.6181960273438],[106.73271609375,29.5884719062501],[106.676395292969,29.5633400703126],[106.654967070313,29.5882106757812],[106.63197390625,29.59847190625],[106.613316679688,29.6201271796875],[106.585377226563,29.6178810859375],[106.577345,29.573843],[106.571461210938,29.5635231757813],[106.543228789063,29.5741628242188],[106.529691191406,29.5504201484376],[106.501461210938,29.5610622382813],[106.497345,29.553843],[106.477345,29.553843],[106.472874785156,29.5759865546876],[106.445428496094,29.5898708320313],[106.457345,29.613843],[106.482899199219,29.6092897773438],[106.479874296875,29.5796047187501],[106.500477324219,29.577505109375],[106.532078886719,29.589380109375],[106.552345,29.5873146796876],[106.56927859375,29.6263600898438],[106.596553984375,29.6419802070313],[106.632345,29.6383327460937],[106.64255984375,29.6393752265625],[106.687730742188,29.6267458320313],[106.722806425781,29.6483815742188],[106.735631132813,29.6779470039063],[106.755970488281,29.6534596992188],[106.792200957031,29.6795339179688]]]]}},{"type":"Feature","properties":{"name":"江津区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.497345,28.593843],[106.520885039063,28.5809401679688],[106.502144804688,28.571528546875],[106.497345,28.593843]]],[[[106.437345,29.043843],[106.449537382813,29.0472658515626],[106.440767851563,29.0560353828126],[106.416156035156,29.052173078125],[106.380867949219,29.0308888984375],[106.403116484375,28.9590700507813],[106.400867949219,28.943843],[106.410494414063,28.8786940742188],[106.4373840625,28.8676882148438],[106.467345,28.823843],[106.451658964844,28.8193581367188],[106.453587675781,28.8038430000001],[106.450596953125,28.7797853828125],[106.491761503906,28.7283156562501],[106.502899199219,28.7193971992188],[106.511790800781,28.6982888007813],[106.524136992188,28.6772902656251],[106.501666289063,28.6592971015625],[106.503941679688,28.6410060859376],[106.491578398438,28.6088430000001],[106.497345,28.593843],[106.462908964844,28.6015090156251],[106.493026152344,28.5489260078126],[106.485186796875,28.5293044257813],[106.432806425781,28.5593044257812],[106.395653105469,28.5754201484375],[106.372806425781,28.5383815742187],[106.367345,28.5338430000001],[106.331790800781,28.5545436835937],[106.334268828125,28.5961037421875],[106.321495390625,28.61960471875],[106.3226575,28.6390969062501],[106.31146609375,28.6490969062501],[106.312655058594,28.6690431953125],[106.296861601563,28.71306175],[106.272064238281,28.7485622382813],[106.262625761719,28.7791237617188],[106.252064238281,28.7885622382812],[106.239881621094,28.8151076484376],[106.260538359375,28.85312034375],[106.232064238281,28.8785622382813],[106.222625761719,28.8891237617188],[106.178236113281,28.9213381171875],[106.117345,28.8994899726563],[106.062545195313,28.9191530585938],[106.0419934375,28.9179274726563],[106.042642851563,28.928843],[106.042047148438,28.938843],[106.042659941406,28.9491139960938],[106.012064238281,28.9585622382813],[105.996986113281,28.9754372382813],[105.981468535156,28.9885622382813],[105.982659941406,28.9685768867188],[105.962064238281,28.9591237617188],[105.934344511719,28.9440627265625],[105.901812773438,28.9076515937501],[105.882625761719,28.9291237617188],[105.842064238281,28.9385622382813],[105.827345,28.943843],[105.821378203125,28.9600881171875],[105.85232546875,28.9867507148437],[105.86197390625,29.02921409375],[105.877896757813,29.0429347968751],[105.914324980469,29.0591896796875],[105.910413847656,29.1078713203125],[105.949705839844,29.141723859375],[105.96947390625,29.1860231757813],[106.031346464844,29.2650270820313],[106.037345,29.323843],[106.074276152344,29.3190114570313],[106.09197390625,29.29847190625],[106.104359160156,29.2878005195313],[106.137293730469,29.2904470039063],[106.217105742188,29.347036359375],[106.257345,29.4538430000001],[106.310814238281,29.4397365546875],[106.329896269531,29.3932985664063],[106.297345,29.3868679023438],[106.2816028125,29.3899782539063],[106.273170195313,29.3580178046876],[106.259564238281,29.336587140625],[106.285186796875,29.3182228828126],[106.278778105469,29.2857961250001],[106.304544707031,29.2498439765625],[106.351519804688,29.2796681953125],[106.387235136719,29.2890895820313],[106.380328398438,29.3240529609375],[106.391519804688,29.3396681953125],[106.397345,29.343843],[106.437345,29.353843],[106.463116484375,29.3601735664063],[106.481429472656,29.3079274726563],[106.503260527344,29.2797585273438],[106.521429472656,29.2279274726562],[106.544217558594,29.2121950507813],[106.539456816406,29.1909572578125],[106.553565703125,29.1692897773438],[106.547345,29.1415407539063],[106.577345,29.133843],[106.570992460938,29.1161428046875],[106.591187773438,29.0293434882813],[106.604769316406,29.0172072578125],[106.56259890625,29.01972190625],[106.552254667969,29.0081447578125],[106.541798125,29.0309304023438],[106.522064238281,29.0485622382813],[106.512625761719,29.0591237617188],[106.502064238281,29.0685622382813],[106.484193144531,29.0885622382813],[106.481656523438,29.0654030585938],[106.483089628906,29.0413576484375],[106.468319121094,29.0091774726563],[106.437345,29.043843]]]]}},{"type":"Feature","properties":{"name":"九龙坡区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.346182890625,29.561977765625],[106.382061796875,29.5481862617187],[106.400499296875,29.5504787421876],[106.411790800781,29.4982888007813],[106.428609648438,29.4893971992188],[106.477345,29.553843],[106.497345,29.553843],[106.497345,29.533843],[106.527345,29.533843],[106.527345,29.503843],[106.547345,29.503843],[106.547345,29.4938430000001],[106.5427746875,29.4712038398438],[106.517345,29.4838430000001],[106.513260527344,29.4897585273438],[106.472957792969,29.5001003242187],[106.443394804688,29.4934743476563],[106.46408328125,29.4791896796875],[106.451124296875,29.4592897773438],[106.457181425781,29.4322682929688],[106.417069121094,29.4197585273438],[106.403016386719,29.4401149726563],[106.389383574219,29.4370583320313],[106.393465605469,29.4188430000001],[106.389700957031,29.4020436835938],[106.403543730469,29.3690822578126],[106.397345,29.343843],[106.391519804688,29.3396681953125],[106.380328398438,29.3240529609375],[106.387235136719,29.2890895820313],[106.351519804688,29.2796681953125],[106.304544707031,29.2498439765625],[106.278778105469,29.2857961250001],[106.285186796875,29.3182228828126],[106.259564238281,29.336587140625],[106.273170195313,29.3580178046876],[106.2816028125,29.3899782539063],[106.297345,29.3868679023438],[106.329896269531,29.3932985664063],[106.310814238281,29.4397365546875],[106.257345,29.4538430000001],[106.2627746875,29.519165265625],[106.25197390625,29.52847190625],[106.247345,29.533843],[106.312100859375,29.5419411445313],[106.346182890625,29.561977765625]]]]}},{"type":"Feature","properties":{"name":"南岸区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.654967070313,29.5882106757812],[106.676395292969,29.5633400703126],[106.73271609375,29.5884719062501],[106.758326445313,29.6181960273438],[106.797345,29.593843],[106.77170046875,29.55948753125],[106.7306653125,29.4839186835938],[106.68978640625,29.4899611640626],[106.671832304688,29.4667018867188],[106.627345,29.47327659375],[106.5919153125,29.4680397773438],[106.56298953125,29.48948753125],[106.547345,29.4938430000001],[106.547345,29.503843],[106.527345,29.503843],[106.527345,29.533843],[106.530523710938,29.5406642890625],[106.578599882813,29.5476662421876],[106.590523710938,29.5677028632812],[106.577345,29.573843],[106.585377226563,29.6178810859375],[106.613316679688,29.6201271796875],[106.63197390625,29.59847190625],[106.654967070313,29.5882106757812]]]]}},{"type":"Feature","properties":{"name":"黔江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.657345,29.083843],[108.669537382813,29.0804201484375],[108.660767851563,29.0716506171875],[108.657345,29.083843]]],[[[108.593922148438,29.1060353828125],[108.597345,29.093843],[108.585152617188,29.0972658515626],[108.593922148438,29.1060353828125]]],[[[108.777345,29.653843],[108.777345,29.663843],[108.767345,29.663843],[108.764166289063,29.6806642890626],[108.744166289063,29.6899831367188],[108.788599882813,29.6947536445313],[108.779478789063,29.6788430000001],[108.790340605469,29.6598976875],[108.777345,29.653843]]],[[[108.767345,29.663843],[108.767345,29.653843],[108.777345,29.653843],[108.781990996094,29.6384133125],[108.797345,29.6396462226563],[108.812691679688,29.6384133125],[108.821998320313,29.6592726875],[108.832345,29.6584401679687],[108.842669707031,29.6592702460938],[108.85197390625,29.64847190625],[108.885523710938,29.633501203125],[108.867174101563,29.6006130195313],[108.906099882813,29.5832424140625],[108.881197539063,29.5481203437501],[108.884173613281,29.5110817695313],[108.86271609375,29.4726247382813],[108.877664824219,29.4497682929688],[108.931566191406,29.433540265625],[108.933592558594,29.4083278632813],[108.917345,29.3338430000001],[108.901722441406,29.2986501289063],[108.947579375,29.2657228828125],[108.918831816406,29.2323561835938],[108.884984160156,29.2031935859375],[108.842569609375,29.1081398750001],[108.793746367188,29.1353786445313],[108.75197390625,29.10921409375],[108.717345,29.0846633125],[108.669661894531,29.11847190625],[108.661917753906,29.1091481757812],[108.662764921875,29.0986037421875],[108.657345,29.083843],[108.621815214844,29.0780055976563],[108.60298953125,29.10948753125],[108.575030546875,29.1209279609375],[108.557345,29.1438430000001],[108.565479765625,29.1650051093751],[108.551790800781,29.1882888007813],[108.542899199219,29.2122731757813],[108.562899199219,29.2282888007813],[108.577486601563,29.2957204414063],[108.549178496094,29.3183888984375],[108.553587675781,29.353843],[108.547142363281,29.4056716132813],[108.585736113281,29.436577375],[108.579615507813,29.4857790351563],[108.521790800781,29.4982888007813],[108.490655546875,29.510259015625],[108.494002714844,29.5371681953126],[108.547049589844,29.5523366523438],[108.514049101563,29.6084743476563],[108.488048125,29.6292971015625],[108.493448515625,29.6727150703126],[108.524832792969,29.69784690625],[108.511790800781,29.7082888007813],[108.507345,29.7138430000001],[108.511429472656,29.7297585273438],[108.547166777344,29.7501564765625],[108.518082304688,29.7702370429687],[108.551429472656,29.8197585273438],[108.569176054688,29.8320119453125],[108.587955351563,29.8592116523438],[108.617345,29.863843],[108.664007597656,29.844546125],[108.661917753906,29.8185182929688],[108.674827910156,29.8073952460938],[108.682747832031,29.708843],[108.681842070313,29.6975978828125],[108.712847929688,29.7000881171875],[108.711812773438,29.6872243476563],[108.73271609375,29.66921409375],[108.744554472656,29.655473859375],[108.767345,29.663843]]]]}},{"type":"Feature","properties":{"name":"沙坪坝区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.437000761719,29.7553493476563],[106.423792753906,29.6659743476562],[106.440562773438,29.64948753125],[106.447345,29.6738430000001],[106.470960722656,29.6587258125001],[106.450662871094,29.6290822578125],[106.457345,29.613843],[106.445428496094,29.5898708320313],[106.472874785156,29.5759865546876],[106.477345,29.553843],[106.428609648438,29.4893971992188],[106.411790800781,29.4982888007813],[106.400499296875,29.5504787421876],[106.382061796875,29.5481862617187],[106.346182890625,29.561977765625],[106.312100859375,29.5419411445313],[106.247345,29.533843],[106.254364042969,29.6026589179688],[106.281734648438,29.6262404609375],[106.282747832031,29.6388430000001],[106.281541777344,29.653843],[106.282747832031,29.668843],[106.280413847656,29.6978713203126],[106.29271609375,29.70847190625],[106.30197390625,29.7392140937501],[106.307345,29.743843],[106.327515898438,29.7359133125],[106.352345,29.7395827460938],[106.362486601563,29.7380837226563],[106.437000761719,29.7553493476563]]]]}},{"type":"Feature","properties":{"name":"永川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.737345,29.133843],[105.749537382813,29.1372658515625],[105.740767851563,29.1460353828125],[105.731429472656,29.1379274726563],[105.721698027344,29.1639333320313],[105.701073027344,29.1781716132813],[105.710836210938,29.2217214179688],[105.691429472656,29.2679274726562],[105.687345,29.2938430000001],[105.710069609375,29.2978493476563],[105.692906523438,29.3068410468751],[105.687345,29.2938430000001],[105.677345,29.2938430000001],[105.677345,29.273843],[105.667345,29.273843],[105.667345,29.283843],[105.657345,29.283843],[105.625760527344,29.3131081367188],[105.642535429688,29.3286525703125],[105.652154570313,29.3490334296875],[105.727345,29.383843],[105.756512480469,29.3723757148438],[105.77170046875,29.40948753125],[105.798311796875,29.4453762031251],[105.8282434375,29.5274196601563],[105.86298953125,29.54819846875],[105.897345,29.573843],[105.903079863281,29.5424001289063],[105.952345,29.5384401679688],[105.981373320313,29.5407741523438],[105.995911894531,29.5238991523438],[106.087345,29.543843],[106.078917265625,29.522407453125],[106.051649199219,29.3602272773438],[106.037345,29.323843],[106.031346464844,29.2650270820313],[105.96947390625,29.1860231757813],[105.949705839844,29.141723859375],[105.910413847656,29.1078713203125],[105.914324980469,29.0591896796875],[105.877896757813,29.0429347968751],[105.86197390625,29.02921409375],[105.85232546875,28.9867507148437],[105.821378203125,28.9600881171875],[105.827345,28.943843],[105.789151640625,28.9481862617188],[105.809071074219,28.961938703125],[105.762393828125,28.994165265625],[105.757345,29.013843],[105.744146757813,29.0420925117188],[105.754564238281,29.0697267890625],[105.740975371094,29.0774733710938],[105.724505644531,29.10636253125],[105.737345,29.133843]]]]}},{"type":"Feature","properties":{"name":"渝中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.543228789063,29.5741628242188],[106.571461210938,29.5635231757813],[106.577345,29.573843],[106.590523710938,29.5677028632812],[106.578599882813,29.5476662421876],[106.530523710938,29.5406642890625],[106.527345,29.533843],[106.497345,29.533843],[106.497345,29.553843],[106.501461210938,29.5610622382813],[106.529691191406,29.5504201484376],[106.543228789063,29.5741628242188]]]]}},{"type":"Feature","properties":{"name":"彭水苗族土家族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.412899199219,29.8193971992188],[108.421820097656,29.7781569648438],[108.432860136719,29.7795290351563],[108.442000761719,29.7475588203125],[108.491790800781,29.7182888007813],[108.507345,29.7138430000001],[108.511790800781,29.7082888007813],[108.524832792969,29.69784690625],[108.493448515625,29.6727150703126],[108.488048125,29.6292971015625],[108.514049101563,29.6084743476563],[108.547049589844,29.5523366523438],[108.494002714844,29.5371681953126],[108.490655546875,29.510259015625],[108.521790800781,29.4982888007813],[108.579615507813,29.4857790351563],[108.585736113281,29.436577375],[108.547142363281,29.4056716132813],[108.553587675781,29.353843],[108.549178496094,29.3183888984375],[108.577486601563,29.2957204414063],[108.562899199219,29.2282888007813],[108.542899199219,29.2122731757813],[108.551790800781,29.1882888007813],[108.565479765625,29.1650051093751],[108.557345,29.1438430000001],[108.535889921875,29.1378688789063],[108.506324492188,29.0995632148438],[108.476737089844,29.0874562812501],[108.461832304688,29.0896584296875],[108.45298953125,29.0781984687501],[108.43170046875,29.06948753125],[108.41298953125,29.05819846875],[108.37170046875,29.04948753125],[108.332323027344,29.0202907539063],[108.32298953125,29.0081984687501],[108.307345,29.003843],[108.299608183594,29.0518386054688],[108.303026152344,29.0793141914063],[108.27396609375,29.0982888007813],[108.249849882813,29.0410573554688],[108.220548125,29.0293971992188],[108.22302859375,29.0493410468751],[108.201790800781,29.0582888007813],[108.190831328125,29.071977765625],[108.133858671875,29.0557082343751],[108.116224394531,29.07772971875],[108.067345,29.083843],[108.011588164063,29.0392433906251],[107.921790800781,29.0293971992188],[107.912899199219,29.0182888007813],[107.880242949219,29.0089528632813],[107.867345,28.963843],[107.84170046875,28.9681984687501],[107.809730253906,28.987485578125],[107.817345,29.0338430000001],[107.859879179688,29.0511257148438],[107.871790800781,29.0793971992188],[107.883023710938,29.0883888984375],[107.8808996875,29.1054665351563],[107.900594511719,29.1921706367188],[107.949139433594,29.1861330390625],[107.991890898438,29.2395217109375],[108.00431765625,29.2379763007813],[107.994537382813,29.316606671875],[107.977572050781,29.3454689765625],[107.984364042969,29.4000710273438],[108.002899199219,29.4482888007813],[108.02068484375,29.51050315625],[108.065736113281,29.546577375],[108.061666289063,29.5792971015625],[108.076163359375,29.590903546875],[108.067345,29.613843],[108.071126738281,29.6249294257813],[108.089888945313,29.6063869453125],[108.153065214844,29.6012990546875],[108.159888945313,29.6212990546876],[108.174801054688,29.6263869453126],[108.179888945313,29.6495632148438],[108.167345,29.653843],[108.17170046875,29.65948753125],[108.203765898438,29.6842360664063],[108.201549101563,29.699233625],[108.21298953125,29.71819846875],[108.221751738281,29.7496706367188],[108.232345,29.7481032539063],[108.242640410156,29.7496242500001],[108.324759550781,29.7169826484376],[108.347345,29.7203200507813],[108.364722929688,29.7177516914063],[108.357987089844,29.7633303046875],[108.381219511719,29.8018434882813],[108.387345,29.823843],[108.392083769531,29.840415265625],[108.401790800781,29.8282888007813],[108.412899199219,29.8193971992188]]]]}},{"type":"Feature","properties":{"name":"武隆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.929764433594,29.65487815625],[107.952042265625,29.6176296210938],[107.979263945313,29.6340480781251],[108.06170046875,29.6181984687501],[108.067345,29.613843],[108.076163359375,29.590903546875],[108.061666289063,29.5792971015625],[108.065736113281,29.546577375],[108.02068484375,29.51050315625],[108.002899199219,29.4482888007813],[107.984364042969,29.4000710273438],[107.977572050781,29.3454689765625],[107.994537382813,29.316606671875],[108.00431765625,29.2379763007813],[107.991890898438,29.2395217109375],[107.949139433594,29.1861330390625],[107.900594511719,29.1921706367188],[107.8808996875,29.1054665351563],[107.883023710938,29.0883888984375],[107.871790800781,29.0793971992188],[107.859879179688,29.0511257148438],[107.817345,29.0338430000001],[107.780347929688,29.0553835273437],[107.802747832031,29.1390163398438],[107.792064238281,29.1485622382813],[107.782625761719,29.1591237617188],[107.766783476563,29.1732814765626],[107.740614042969,29.2025685859376],[107.712625761719,29.1585622382813],[107.689429960938,29.1391237617188],[107.652625761719,29.1591237617188],[107.626988554688,29.1708913398438],[107.581798125,29.1546755195313],[107.5826575,29.169067609375],[107.572064238281,29.1885622382813],[107.560753203125,29.2251930976563],[107.522625761719,29.1985622382813],[107.502064238281,29.1891237617188],[107.466168242188,29.1696193671875],[107.451285429688,29.2020485664063],[107.397345,29.193843],[107.391300078125,29.2085549140625],[107.3984778125,29.2448757148438],[107.419112578125,29.2773757148438],[107.376417265625,29.2938430000001],[107.384622832031,29.3353664375],[107.279869414063,29.3563674140625],[107.263170195313,29.3796681953125],[107.237345,29.383843],[107.229449492188,29.4179201484375],[107.287762480469,29.4584743476563],[107.325030546875,29.5067580390625],[107.381754179688,29.5299733710938],[107.423765898438,29.5134572578126],[107.421605253906,29.498843],[107.423717070313,29.4845534492188],[107.475347929688,29.5048513007813],[107.530709257813,29.4252468085938],[107.546058378906,29.4451296210937],[107.589288359375,29.4784987617187],[107.615955839844,29.4894142890625],[107.608734160156,29.5382717109376],[107.642991972656,29.5522927070312],[107.676058378906,29.5951296210938],[107.69298953125,29.60819846875],[107.697345,29.613843],[107.725682402344,29.5956423164063],[107.762345,29.601059796875],[107.772735625,29.5756716132813],[107.829071074219,29.5416896796876],[107.833084746094,29.5688430000001],[107.829930449219,29.5901906562501],[107.844879179688,29.67819846875],[107.929764433594,29.65487815625]]]]}},{"type":"Feature","properties":{"name":"秀山土家族苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.282806425781,28.7183815742188],[109.244334746094,28.6946511054688],[109.269066191406,28.674106671875],[109.183695097656,28.6370803046875],[109.180882597656,28.6095021796875],[109.200477324219,28.607505109375],[109.232078886719,28.6193801093751],[109.270394316406,28.6154738593751],[109.289058867188,28.6379470039062],[109.301883574219,28.6083815742188],[109.317345,28.583843],[109.294505644531,28.5779811835938],[109.283260527344,28.5479274726563],[109.269132109375,28.5381716132813],[109.273475371094,28.5188014960938],[109.267345,28.4938430000001],[109.201224394531,28.4788234687501],[109.182535429688,28.4586525703125],[109.172139921875,28.4490212226563],[109.172579375,28.4379567695313],[109.152154570313,28.4190334296876],[109.141529570313,28.3744264960938],[109.142542753906,28.3488430000001],[109.142059355469,28.3366506171875],[109.119105253906,28.2932692695313],[109.074918242188,28.2523293281251],[109.092918730469,28.2183107734375],[109.09209109375,28.197466046875],[109.051009550781,28.1990944648438],[109.032535429688,28.2190334296875],[109.021532011719,28.2286525703125],[108.999610625,28.1594142890625],[108.938595,28.1917018867188],[108.909144316406,28.2234865546875],[108.843592558594,28.2063088203125],[108.807711210938,28.2450319648438],[108.792535429688,28.2286525703125],[108.772154570313,28.2190334296875],[108.762345,28.198247296875],[108.752535429688,28.2190334296875],[108.720714140625,28.2791701484375],[108.762579375,28.3179567695313],[108.762139921875,28.3290065742188],[108.772535429688,28.3486525703126],[108.782154570313,28.370122296875],[108.759407988281,28.391196515625],[108.773414335938,28.431157453125],[108.722154570313,28.4786525703125],[108.717345,28.5038430000001],[108.72298953125,28.5081984687501],[108.755689726563,28.5505641914063],[108.772869902344,28.5480275703125],[108.807838164063,28.5983132148438],[108.881178007813,28.6271437812501],[108.952410917969,28.6166164375001],[108.977269316406,28.6847487617188],[109.001954375,28.6996388984375],[109.019852324219,28.6969948554688],[109.047039824219,28.7336623359375],[109.06170046875,28.76948753125],[109.093150664063,28.8083986640625],[109.090631132813,28.8254470039062],[109.165811796875,28.852876203125],[109.20170046875,28.87948753125],[109.227345,28.8838430000001],[109.233985625,28.870483625],[109.240704375,28.777202375],[109.257345,28.773843],[109.261883574219,28.7683815742188],[109.301883574219,28.7437087226563],[109.282806425781,28.7183815742188]]]]}},{"type":"Feature","properties":{"name":"酉阳土家族苗族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.657345,29.083843],[108.660767851563,29.0716506171875],[108.669537382813,29.0804201484375],[108.662764921875,29.0986037421875],[108.661917753906,29.1091481757812],[108.669661894531,29.11847190625],[108.717345,29.0846633125],[108.75197390625,29.10921409375],[108.793746367188,29.1353786445313],[108.842569609375,29.1081398750001],[108.884984160156,29.2031935859375],[108.918831816406,29.2323561835938],[108.947579375,29.2657228828125],[108.901722441406,29.2986501289063],[108.917345,29.3338430000001],[108.973985625,29.337202375],[108.985201445313,29.3593727851563],[109.023985625,29.367202375],[109.030704375,29.3904836250001],[109.043985625,29.3972023750001],[109.047345,29.403843],[109.075008574219,29.3965456367188],[109.111278105469,29.3490505195313],[109.101226835938,29.2981887031251],[109.13857546875,29.2765334296875],[109.115609160156,29.2403566718751],[109.109390898438,29.208891828125],[109.132965117188,29.176001203125],[109.162296171875,29.1817971015626],[109.21064578125,29.14714378125],[109.227345,29.123843],[109.23170046875,29.09819846875],[109.310479765625,29.0664699531251],[109.314022246094,29.0424929023438],[109.30298953125,29.02819846875],[109.29170046875,29.0194875312501],[109.28298953125,28.97819846875],[109.255797148438,28.957212140625],[109.251605253906,28.928843],[109.253656035156,28.9149733710938],[109.23298953125,28.8881984687501],[109.227345,28.8838430000001],[109.20170046875,28.87948753125],[109.165811796875,28.852876203125],[109.090631132813,28.8254470039062],[109.093150664063,28.8083986640625],[109.06170046875,28.76948753125],[109.047039824219,28.7336623359375],[109.019852324219,28.6969948554688],[109.001954375,28.6996388984375],[108.977269316406,28.6847487617188],[108.952410917969,28.6166164375001],[108.881178007813,28.6271437812501],[108.807838164063,28.5983132148438],[108.772869902344,28.5480275703125],[108.755689726563,28.5505641914063],[108.72298953125,28.5081984687501],[108.717345,28.5038430000001],[108.692899199219,28.4882888007813],[108.651790800781,28.4793971992188],[108.632899199219,28.4654128242188],[108.675152617188,28.4315749335938],[108.691790800781,28.4054128242188],[108.664373808594,28.3834548164063],[108.652899199219,28.3654128242188],[108.681690703125,28.3423561835938],[108.621790800781,28.3293971992188],[108.607345,28.323843],[108.60298953125,28.3394875312501],[108.58170046875,28.34819846875],[108.569422636719,28.392290265625],[108.609945097656,28.4235695625],[108.58170046875,28.48819846875],[108.568880644531,28.5342385078125],[108.607347441406,28.5499831367188],[108.601541777344,28.5892726875],[108.62298953125,28.61819846875],[108.63170046875,28.6424416328125],[108.602345,28.6381032539063],[108.587838164063,28.6402468085938],[108.571832304688,28.6609841132813],[108.538367949219,28.6560378242188],[108.49298953125,28.63819846875],[108.453863554688,28.62948753125],[108.383338652344,28.657212140625],[108.36298953125,28.66948753125],[108.331353789063,28.678296125],[108.346851835938,28.7314455390625],[108.368138457031,28.7667360664062],[108.38298953125,28.7781984687501],[108.39170046875,28.8018288398438],[108.35170046875,28.8181984687501],[108.342816191406,28.9419020820313],[108.319605742188,28.9598171210938],[108.307345,29.003843],[108.32298953125,29.0081984687501],[108.332323027344,29.0202907539063],[108.37170046875,29.04948753125],[108.41298953125,29.05819846875],[108.43170046875,29.06948753125],[108.45298953125,29.0781984687501],[108.461832304688,29.0896584296875],[108.476737089844,29.0874562812501],[108.506324492188,29.0995632148438],[108.535889921875,29.1378688789063],[108.557345,29.1438430000001],[108.575030546875,29.1209279609375],[108.60298953125,29.10948753125],[108.621815214844,29.0780055976563],[108.657345,29.083843]],[[108.597345,29.093843],[108.593922148438,29.1060353828125],[108.585152617188,29.0972658515626],[108.597345,29.093843]]]]}},{"type":"Feature","properties":{"name":"璧山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.137293730469,29.2904470039063],[106.104359160156,29.2878005195313],[106.09197390625,29.29847190625],[106.074276152344,29.3190114570313],[106.037345,29.323843],[106.051649199219,29.3602272773438],[106.078917265625,29.522407453125],[106.087345,29.543843],[106.091790800781,29.5593971992188],[106.102899199219,29.5882888007813],[106.115303984375,29.6316799140625],[106.1684778125,29.694926984375],[106.151534453125,29.7084963203125],[106.162994414063,29.7486257148438],[106.160755644531,29.7666188789063],[106.232291289063,29.8100685859376],[106.267345,29.853843],[106.307345,29.883843],[106.321886015625,29.871762921875],[106.341883574219,29.8183815742188],[106.361422148438,29.8021486640625],[106.3125403125,29.7615456367187],[106.307345,29.743843],[106.30197390625,29.7392140937501],[106.29271609375,29.70847190625],[106.280413847656,29.6978713203126],[106.282747832031,29.668843],[106.281541777344,29.653843],[106.282747832031,29.6388430000001],[106.281734648438,29.6262404609375],[106.254364042969,29.6026589179688],[106.247345,29.533843],[106.25197390625,29.52847190625],[106.2627746875,29.519165265625],[106.257345,29.4538430000001],[106.217105742188,29.347036359375],[106.137293730469,29.2904470039063]]]]}},{"type":"Feature","properties":{"name":"大足区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.727345,29.393843],[105.714537382813,29.398843],[105.727345,29.403843],[105.727345,29.393843]]],[[[105.727345,29.393843],[105.740152617188,29.398843],[105.727345,29.403843],[105.733038359375,29.4391579414063],[105.719823027344,29.4616384101563],[105.671890898438,29.4556764960938],[105.652899199219,29.4793971992188],[105.628785429688,29.489555890625],[105.611890898438,29.5106520820313],[105.592345,29.5082204414063],[105.579071074219,29.5098708320313],[105.596148710938,29.5696755195313],[105.576922636719,29.5982888007813],[105.542144804688,29.5778469062501],[105.532899199219,29.5893971992188],[105.511790800781,29.5982888007813],[105.502899199219,29.6393971992188],[105.491790800781,29.6582888007812],[105.482899199219,29.6793971992188],[105.477345,29.6838430000001],[105.464185820313,29.716577375],[105.485765410156,29.7202931953125],[105.534730253906,29.6899880195313],[105.53048953125,29.7146266914062],[105.541610136719,29.7295778632813],[105.557345,29.733843],[105.560767851563,29.7216506171875],[105.569537382813,29.7304201484376],[105.557345,29.733843],[105.573143339844,29.7584401679688],[105.571549101563,29.769233625],[105.583140898438,29.788452375],[105.578734160156,29.8182717109376],[105.60298953125,29.82819846875],[105.612689238281,29.840766828125],[105.677345,29.8503200507813],[105.700767851563,29.846860578125],[105.72170046875,29.8594875312501],[105.737345,29.863843],[105.727059355469,29.8237599921875],[105.706302519531,29.7918825507813],[105.747345,29.8010842109375],[105.762623320313,29.7976589179688],[105.777345,29.803843],[105.802899199219,29.7893971992188],[105.826922636719,29.7593971992188],[105.880518828125,29.7726467109375],[105.891910429688,29.7996779609375],[105.931790800781,29.7882888007813],[105.985213652344,29.7789943671875],[106.001790800781,29.7582888007813],[106.035245390625,29.7315016914063],[106.011790800781,29.6993971992188],[105.992821074219,29.6681618476563],[105.980079375,29.6697463203125],[105.958450957031,29.6427370429688],[105.941790800781,29.6293971992188],[105.897345,29.573843],[105.86298953125,29.54819846875],[105.8282434375,29.5274196601563],[105.798311796875,29.4453762031251],[105.77170046875,29.40948753125],[105.756512480469,29.3723757148438],[105.727345,29.383843],[105.727345,29.393843]],[[105.657345,29.4938430000001],[105.651910429688,29.5065407539063],[105.634346953125,29.4978957343751],[105.657345,29.4938430000001]]]]}},{"type":"Feature","properties":{"name":"綦江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.437345,29.043843],[106.440767851563,29.0560353828126],[106.449537382813,29.0472658515626],[106.437345,29.043843]]],[[[106.607345,28.6838430000001],[106.619537382813,28.6872658515625],[106.610767851563,28.6960353828125],[106.564312773438,28.7088967109375],[106.551243925781,28.7650612617188],[106.467345,28.823843],[106.4373840625,28.8676882148438],[106.410494414063,28.8786940742188],[106.400867949219,28.943843],[106.403116484375,28.9590700507813],[106.380867949219,29.0308888984375],[106.416156035156,29.052173078125],[106.437345,29.043843],[106.468319121094,29.0091774726563],[106.483089628906,29.0413576484375],[106.481656523438,29.0654030585938],[106.484193144531,29.0885622382813],[106.502064238281,29.0685622382813],[106.512625761719,29.0591237617188],[106.522064238281,29.0485622382813],[106.541798125,29.0309304023438],[106.552254667969,29.0081447578125],[106.56259890625,29.01972190625],[106.604769316406,29.0172072578125],[106.591187773438,29.0293434882813],[106.570992460938,29.1161428046875],[106.577345,29.133843],[106.60298953125,29.13819846875],[106.628761015625,29.1715895820312],[106.661832304688,29.1667018867188],[106.681612578125,29.1923268867188],[106.71298953125,29.1794875312501],[106.721832304688,29.1680275703125],[106.747345,29.1717995429688],[106.77263796875,29.16806175],[106.802689238281,29.1798757148438],[106.820809355469,29.1563991523438],[106.845953398438,29.1601149726563],[106.887345,29.1438430000001],[106.89170046875,29.12819846875],[106.920096464844,29.1062819648438],[106.899234648438,29.0532106757813],[106.947345,29.0603200507812],[106.962345,29.0581032539063],[106.981302519531,29.0609059882813],[106.983084746094,29.048843],[106.980203886719,29.0293556953125],[107.026334257813,28.9937477851563],[107.003382597656,28.9556960273438],[107.047340117188,28.9377053046876],[107.05298953125,28.89948753125],[107.057345,28.893843],[107.051883574219,28.8893044257813],[107.01119265625,28.8851589179688],[107.012896757813,28.8684352851562],[106.981793242188,28.8492507148438],[106.983363066406,28.833843],[106.980816679688,28.8088430000001],[106.983880644531,28.7787697578125],[106.957728300781,28.7693044257813],[106.924295683594,28.8095510078125],[106.903118925781,28.8073928046875],[106.862691679688,28.7782985664063],[106.843533964844,28.7802516914063],[106.820970488281,28.767329328125],[106.82318484375,28.7456056953125],[106.853053007813,28.7207936835938],[106.850816679688,28.698843],[106.873873320313,28.6888430000001],[106.867862578125,28.6298635078125],[106.831883574219,28.6193044257813],[106.807345,28.5897658515626],[106.782735625,28.6193923164063],[106.767679472656,28.617856671875],[106.752806425781,28.5959181953125],[106.781449003906,28.5721291328125],[106.733604765625,28.5513796210937],[106.719583769531,28.5344997382813],[106.735286894531,28.4927077460938],[106.731685820313,28.4573805976563],[106.711954375,28.4593923164063],[106.707345,28.453843],[106.701790800781,28.4582888007813],[106.692899199219,28.4793971992188],[106.667486601563,28.4901052070312],[106.633704863281,28.485903546875],[106.622899199219,28.4993971992188],[106.58068484375,28.51718284375],[106.583023710938,28.4983888984376],[106.559303007813,28.4793971992188],[106.562967558594,28.508843],[106.56166140625,28.519341046875],[106.601104765625,28.535962140625],[106.611810332031,28.6095314765625],[106.622799101563,28.6081642890626],[106.637103300781,28.6260280585937],[106.621790800781,28.6382888007813],[106.612899199219,28.6506398750001],[106.6414465625,28.6470900703125],[106.651790800781,28.6556496406251],[106.618785429688,28.669555890625],[106.607345,28.6838430000001]]]]}},{"type":"Feature","properties":{"name":"万州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.442899199219,30.9993971992188],[108.452843046875,30.975796125],[108.482345,30.9794655585938],[108.492799101563,30.9781642890626],[108.508914824219,30.9982888007813],[108.523026152344,30.9893141914063],[108.521678496094,30.9784841132813],[108.538450957031,30.9499489570313],[108.554735136719,30.9113088203125],[108.612200957031,30.9333986640625],[108.621988554688,30.8771559882813],[108.638914824219,30.8982888007813],[108.662899199219,30.8693971992187],[108.694569121094,30.8172536445312],[108.719251738281,30.8203249335938],[108.732899199219,30.8093971992188],[108.744930449219,30.75378440625],[108.763023710938,30.7392971015626],[108.760479765625,30.718843],[108.78302859375,30.709341046875],[108.78037234375,30.6879763007813],[108.802345,30.6907082343751],[108.832345,30.6869777656251],[108.891046171875,30.6942800117188],[108.896204863281,30.6528151679688],[108.866673613281,30.612387921875],[108.888450957031,30.5949489570313],[108.897345,30.583843],[108.867835722656,30.5331545234375],[108.808306914063,30.4915749335938],[108.7905871875,30.5114064765625],[108.735416289063,30.4966310859375],[108.719281035156,30.5110475898437],[108.679115019531,30.5985622382813],[108.641453886719,30.5788039375],[108.643404570313,30.5460622382813],[108.602064238281,30.5091237617188],[108.586204863281,30.4913747382813],[108.56224734375,30.4783571601562],[108.545438261719,30.4971681953126],[108.501470976563,30.4997902656251],[108.417345,30.493843],[108.401207304688,30.5196974921876],[108.403590117188,30.5493459296876],[108.379771757813,30.5474318671875],[108.298870878906,30.407114484375],[108.272020292969,30.4092702460938],[108.262471953125,30.3981862617188],[108.217345,30.423843],[108.232889433594,30.4485085273438],[108.230775175781,30.4692360664063],[108.190457792969,30.5201784492188],[108.172345,30.5183327460938],[108.160882597656,30.5195021796875],[108.162894316406,30.539233625],[108.151883574219,30.5483815742188],[108.134295683594,30.5695510078125],[108.121922636719,30.5682912421875],[108.109058867188,30.5979470039063],[108.091954375,30.5773537421876],[108.066163359375,30.5799831367188],[108.027345,30.573843],[108.014168730469,30.6555837226563],[108.075455351563,30.6688430000001],[108.071722441406,30.698843],[108.074791289063,30.723501203125],[108.007345,30.71511253125],[107.961073027344,30.7208669257813],[107.901798125,30.7682717109376],[107.892899199219,30.7893971992187],[107.877345,30.813843],[107.899837675781,30.8429836250001],[107.978453398438,30.9023244453125],[107.987345,30.913843],[108.006456328125,30.9080886054688],[108.032152128906,30.8782643867188],[108.087178984375,30.89847190625],[108.092762480469,30.8790529609375],[108.09056765625,30.8517116523438],[108.106024199219,30.8337697578125],[108.180035429688,30.8278224921876],[108.22271609375,30.85847190625],[108.232078886719,30.8895705390625],[108.254017363281,30.8773317695313],[108.343541289063,30.9289479804688],[108.341138945313,30.958843],[108.36271609375,30.96847190625],[108.39197390625,30.9892140937501],[108.417345,31.003843],[108.442899199219,30.9993971992188]]]]}},{"type":"Feature","properties":{"name":"城口县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.531429472656,32.1879274726563],[108.583260527344,32.1697585273438],[108.631429472656,32.1379274726563],[108.647345,32.133843],[108.653746367188,32.1108522773438],[108.692345,32.1051491523438],[108.728695097656,32.1105202460937],[108.74298953125,32.09948753125],[108.758367949219,32.0619118476563],[108.837181425781,32.039966046875],[108.866439238281,32.0020607734376],[108.90205203125,31.98806175],[108.925758085938,31.9915627265625],[108.985328398438,31.9789919257813],[109.03298953125,31.9594875312501],[109.05170046875,31.94819846875],[109.067345,31.943843],[109.067345,31.9338430000001],[109.077345,31.9338430000001],[109.121790800781,31.8982888007813],[109.182283964844,31.861548078125],[109.187345,31.843843],[109.192767363281,31.8227175117188],[109.267955351563,31.8034206367188],[109.273638945313,31.7780690742188],[109.24970828125,31.7691139960938],[109.269176054688,31.7556740546875],[109.277345,31.723843],[109.262611113281,31.718305890625],[109.242345,31.7203713203125],[109.220882597656,31.7181838203126],[109.223436308594,31.6931252265625],[109.162345,31.6993532539063],[109.152345,31.6983327460938],[109.122345,31.7013918281251],[109.092345,31.6983327460938],[109.067345,31.7008815742187],[109.003365507813,31.6943605781251],[108.990457792969,31.6503713203125],[108.902078886719,31.659380109375],[108.887345,31.653843],[108.852899199219,31.6793971992188],[108.776690703125,31.6904885078125],[108.735308867188,31.6388112617188],[108.648421660156,31.6200124335938],[108.625482207031,31.6486574531251],[108.591790800781,31.6582888007813],[108.562899199219,31.6693971992187],[108.527345,31.673843],[108.511121855469,31.6983913398438],[108.515706816406,31.718843],[108.511124296875,31.7392897773438],[108.524129667969,31.7592629218751],[108.489454375,31.7790529609375],[108.447345,31.783843],[108.456358671875,31.8083864570313],[108.397818632813,31.8216872382813],[108.374967070313,31.8482106757813],[108.342977324219,31.862485578125],[108.30271609375,31.9092140937501],[108.28197390625,31.91847190625],[108.27271609375,31.95921409375],[108.254752226563,31.9746926093751],[108.298055449219,32.0018141914063],[108.340467558594,31.9781520820313],[108.37197390625,31.9826247382813],[108.329935332031,32.018843],[108.356766386719,32.0419582343751],[108.338687773438,32.0743605781251],[108.430474882813,32.0669850898438],[108.45197390625,32.0812404609376],[108.43197390625,32.0984719062501],[108.381170683594,32.1692214179688],[108.383096953125,32.1932009101563],[108.457345,32.1872365546876],[108.484947539063,32.1894533515625],[108.497345,32.203843],[108.513260527344,32.1997585273438],[108.531429472656,32.1879274726563]]]]}},{"type":"Feature","properties":{"name":"垫江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.4242590625,30.5087038398438],[107.464725371094,30.4872927070313],[107.539964628906,30.5003932929688],[107.581851835938,30.4782277656251],[107.627745390625,30.4800490546876],[107.671773710938,30.4661086250001],[107.652017851563,30.4287770820313],[107.657345,30.423843],[107.648450957031,30.4127370429688],[107.596173125,30.37087425],[107.57134890625,30.3286428046876],[107.60107546875,30.30483909375],[107.581666289063,30.2892971015626],[107.583023710938,30.2783888984375],[107.571790800781,30.2693971992188],[107.562899199219,30.2482888007813],[107.536615019531,30.2272414375],[107.557345,30.2013552070313],[107.572345,30.2200856757813],[107.581790800781,30.2082888007813],[107.597345,30.203843],[107.590789824219,30.1820729804687],[107.561790800781,30.1691335273438],[107.572882109375,30.1286135078125],[107.56197390625,30.1192140937501],[107.548089628906,30.1030983710938],[107.531165800781,30.0885182929688],[107.532916289063,30.0667385078125],[107.478089628906,30.0030983710937],[107.467345,29.993843],[107.467345,30.003843],[107.447345,30.003843],[107.453153105469,30.0189528632813],[107.442039824219,30.0382888007812],[107.372760039063,29.978169171875],[107.352345,29.980708234375],[107.32373171875,29.9771486640626],[107.289290800781,29.9973952460938],[107.303023710938,30.0083888984375],[107.301722441406,30.0188430000001],[107.304210234375,30.038843],[107.262935820313,30.056235578125],[107.252899199219,30.0742653632813],[107.282899199219,30.0982888007813],[107.291790800781,30.1322731757813],[107.27146609375,30.1485500312501],[107.28322390625,30.17913596875],[107.227345,30.223843],[107.25271609375,30.2684719062501],[107.267923613281,30.3025490546875],[107.277345,30.3338430000001],[107.287345,30.3338430000001],[107.287345,30.353843],[107.297345,30.353843],[107.331263457031,30.380024640625],[107.344586210938,30.44315940625],[107.397345,30.5138430000001],[107.4242590625,30.5087038398438]]]]}},{"type":"Feature","properties":{"name":"奉节县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.317345,30.613843],[109.329537382813,30.6172658515626],[109.320767851563,30.6260353828125],[109.292271757813,30.6304128242188],[109.263260527344,30.6079274726563],[109.231429472656,30.5897585273438],[109.219176054688,30.5720119453125],[109.185516386719,30.5487721992188],[109.161429472656,30.5397585273438],[109.137345,30.523843],[109.132625761719,30.5291237617188],[109.114261503906,30.545532453125],[109.077532988281,30.5961428046876],[109.121224394531,30.6351784492188],[109.089830351563,30.6495876289063],[109.062345,30.6479494453125],[109.033568144531,30.6496633125],[109.017345,30.643843],[109.022747832031,30.7088356757813],[109.021812773438,30.7204616523438],[109.04271609375,30.73847190625],[109.054129667969,30.7640505195313],[109.041890898438,30.8087673164063],[109.053136015625,30.8707888007813],[109.120079375,30.8654103828125],[109.13197390625,30.8792140937501],[109.142772246094,30.8885182929688],[109.141917753906,30.8991677070313],[109.153524199219,30.9091677070313],[109.15115359375,30.9386794257813],[109.166126738281,30.94847190625],[109.215806914063,30.9207521796875],[109.211197539063,30.97812034375],[109.243197050781,31.0232497382813],[109.241566191406,31.043540265625],[109.19197390625,31.05847190625],[109.168453398438,31.0715944648438],[109.130787382813,31.0577638984375],[109.088912382813,31.06112815625],[109.0936340625,31.1198805976562],[109.05197390625,31.13847190625],[109.039974394531,31.1783229804688],[109.089600859375,31.2004665351563],[109.064368925781,31.2691750312501],[109.040091582031,31.2900905585938],[109.047345,31.363843],[109.07486453125,31.3698464179688],[109.097345,31.3680397773438],[109.117345,31.3696462226562],[109.132345,31.3684401679687],[109.142535429688,31.3692604804688],[109.310018339844,31.3552614570313],[109.330330839844,31.3097414375],[109.38271609375,31.26921409375],[109.395113554688,31.2414333320313],[109.442020292969,31.2376638007813],[109.453963652344,31.2515261054688],[109.497345,31.2480397773437],[109.545401640625,31.2519020820313],[109.567345,31.2438430000001],[109.581373320313,31.2275588203125],[109.623719511719,31.230962140625],[109.620399199219,31.189634015625],[109.694483671875,31.1762038398438],[109.749476347656,31.1806203437501],[109.771849394531,31.1613478828125],[109.751712675781,31.1162209296876],[109.726600371094,31.0945876289063],[109.701954375,31.0659792304688],[109.600972929688,31.0209206367188],[109.603148222656,30.993843],[109.599935332031,30.953843],[109.603565703125,30.9086647773438],[109.55271609375,30.8971120429688],[109.57197390625,30.8784719062501],[109.60271609375,30.85921409375],[109.612977324219,30.8362209296875],[109.63271609375,30.81921409375],[109.657345,30.763843],[109.652049589844,30.730239484375],[109.623260527344,30.7079274726563],[109.585574980469,30.6982570625001],[109.581224394531,30.678843],[109.584818144531,30.6628102851563],[109.557345,30.643843],[109.542064238281,30.6485622382813],[109.526383085938,30.6661110664063],[109.432808867188,30.6007497382813],[109.416773710938,30.5658083320313],[109.348814726563,30.4891237617188],[109.332625761719,30.5117580390625],[109.355999785156,30.554770734375],[109.322064238281,30.5985622382813],[109.317345,30.613843]]]]}},{"type":"Feature","properties":{"name":"开县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.887345,31.653843],[108.883216582031,31.6074343085938],[108.836246367188,31.5768483710938],[108.817713652344,31.581001203125],[108.77611453125,31.5522805],[108.759845,31.5087966132812],[108.689608183594,31.4995192695313],[108.702850371094,31.4641310859375],[108.741429472656,31.4479274726563],[108.757345,31.443843],[108.726900664063,31.3992873359375],[108.691517363281,31.3894362617188],[108.697498808594,31.3489650703125],[108.625386992188,31.3367165351562],[108.653595,31.29866721875],[108.64170046875,31.28948753125],[108.63298953125,31.26819846875],[108.589896269531,31.2349367500001],[108.581529570313,31.1783303046875],[108.59677859375,31.1665627265625],[108.56170046875,31.13948753125],[108.542264433594,31.0919948554688],[108.485496855469,31.0687624335938],[108.466322050781,31.0219118476563],[108.42170046875,31.00948753125],[108.417345,31.003843],[108.39197390625,30.9892140937501],[108.36271609375,30.96847190625],[108.341138945313,30.958843],[108.343541289063,30.9289479804688],[108.254017363281,30.8773317695313],[108.232078886719,30.8895705390625],[108.22271609375,30.85847190625],[108.180035429688,30.8278224921876],[108.106024199219,30.8337697578125],[108.09056765625,30.8517116523438],[108.092762480469,30.8790529609375],[108.087178984375,30.89847190625],[108.032152128906,30.8782643867188],[108.006456328125,30.9080886054688],[107.987345,30.913843],[107.942640410156,30.9214382148438],[107.93298953125,30.9909645820312],[107.972857695313,30.98507346875],[108.005030546875,31.0267580390625],[108.03298953125,31.03819846875],[108.05170046875,31.0559206367188],[108.02170046875,31.0681984687501],[108.007591582031,31.1026735664062],[108.029173613281,31.138452375],[108.053167753906,31.1482717109376],[108.051539335938,31.1592873359375],[108.084398222656,31.1999440742188],[108.079642363281,31.2321388984376],[108.033880644531,31.225376203125],[108.02298953125,31.23948753125],[108.017345,31.2438430000001],[108.02197390625,31.24921409375],[108.080345488281,31.2667897773438],[108.11197390625,31.28921409375],[108.181793242188,31.3329470039063],[108.154700957031,31.3815065742188],[108.200789824219,31.4020729804687],[108.221229277344,31.4699587226563],[108.198990507813,31.4681716132813],[108.18271609375,31.4920534492188],[108.278604765625,31.5095461250001],[108.326998320313,31.5056569648437],[108.34197390625,31.53921409375],[108.383565703125,31.5486647773438],[108.381942167969,31.568843],[108.383819609375,31.5921901679688],[108.42900515625,31.6311208320313],[108.462669707031,31.6284157539063],[108.47197390625,31.6392140937501],[108.487896757813,31.652934796875],[108.52271609375,31.66847190625],[108.527345,31.673843],[108.562899199219,31.6693971992187],[108.591790800781,31.6582888007813],[108.625482207031,31.6486574531251],[108.648421660156,31.6200124335938],[108.735308867188,31.6388112617188],[108.776690703125,31.6904885078125],[108.852899199219,31.6793971992188],[108.887345,31.653843]]]]}},{"type":"Feature","properties":{"name":"梁平县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.749093046875,30.8318361640625],[107.771954375,30.8180471015625],[107.782662382813,30.8196291328125],[107.838245878906,30.7953395820313],[107.86170046875,30.8094875312501],[107.877345,30.813843],[107.892899199219,30.7893971992187],[107.901798125,30.7682717109376],[107.961073027344,30.7208669257813],[108.007345,30.71511253125],[108.074791289063,30.723501203125],[108.071722441406,30.698843],[108.075455351563,30.6688430000001],[108.014168730469,30.6555837226563],[108.027345,30.573843],[108.007010527344,30.5484499335938],[107.956514921875,30.527173078125],[107.930694609375,30.4846608710938],[107.891790800781,30.5082888007813],[107.881781035156,30.5545607734376],[107.828038359375,30.56124534375],[107.803656035156,30.475962140625],[107.792899199219,30.4893971992188],[107.781790800781,30.4982888007813],[107.767323027344,30.5163576484376],[107.738255644531,30.5199733710938],[107.668460722656,30.4327443671875],[107.657345,30.423843],[107.652017851563,30.4287770820313],[107.671773710938,30.4661086250001],[107.627745390625,30.4800490546876],[107.581851835938,30.4782277656251],[107.539964628906,30.5003932929688],[107.464725371094,30.4872927070313],[107.4242590625,30.5087038398438],[107.397345,30.5138430000001],[107.40197390625,30.51921409375],[107.433204375,30.533149640625],[107.431917753906,30.5491506171875],[107.516922636719,30.6484133125],[107.47197390625,30.66847190625],[107.45271609375,30.69921409375],[107.419051542969,30.7466970039063],[107.43271609375,30.75847190625],[107.441998320313,30.7792726875001],[107.453963652344,30.7783107734375],[107.47197390625,30.7992140937501],[107.484276152344,30.8098146796876],[107.481365996094,30.8460207343751],[107.507345,30.853843],[107.522078886719,30.8483058906251],[107.532345,30.8493532539063],[107.547345,30.8478249335938],[107.57634890625,30.8507790351563],[107.602806425781,30.8393044257813],[107.63720828125,30.8196022773438],[107.676588164063,30.8670095039063],[107.702806425781,30.8783815742188],[107.711883574219,30.8893044257813],[107.717345,30.8938430000001],[107.754066191406,30.8654982734376],[107.749093046875,30.8318361640625]]]]}},{"type":"Feature","properties":{"name":"巫山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.12170046875,31.39819846875],[110.138414335938,31.3853005195313],[110.15298953125,31.3094875312501],[110.157345,31.303843],[110.150169707031,31.2838430000001],[110.1717590625,31.2236696601563],[110.172642851563,31.2088430000001],[110.171947050781,31.1971779609375],[110.195389433594,31.1540383125],[110.172625761719,31.1285622382813],[110.137620878906,31.1177516914063],[110.12095828125,31.0870925117188],[110.122642851563,31.058843],[110.12146609375,31.0390969062501],[110.1337903125,31.0280837226563],[110.132030058594,30.9985720039063],[110.166519804688,30.9879225898438],[110.142034941406,30.9290529609375],[110.143194609375,30.9096022773438],[110.107345,30.843843],[110.096600371094,30.8345876289063],[110.074847441406,30.8093361640626],[110.049947539063,30.7992140937501],[110.03271609375,30.81921409375],[110.02197390625,30.82847190625],[110.008089628906,30.8595876289062],[109.990719023438,30.8907204414063],[109.9466809375,30.88718284375],[109.896070585938,30.9010329414063],[109.774686308594,30.8471486640625],[109.711243925781,30.8075514960938],[109.712747832031,30.7888430000001],[109.711849394531,30.7776784492188],[109.692086210938,30.7792653632813],[109.657345,30.763843],[109.63271609375,30.81921409375],[109.612977324219,30.8362209296875],[109.60271609375,30.85921409375],[109.57197390625,30.8784719062501],[109.55271609375,30.8971120429688],[109.603565703125,30.9086647773438],[109.599935332031,30.953843],[109.603148222656,30.993843],[109.600972929688,31.0209206367188],[109.701954375,31.0659792304688],[109.726600371094,31.0945876289063],[109.751712675781,31.1162209296876],[109.771849394531,31.1613478828125],[109.749476347656,31.1806203437501],[109.694483671875,31.1762038398438],[109.620399199219,31.189634015625],[109.623719511719,31.230962140625],[109.581373320313,31.2275588203125],[109.567345,31.2438430000001],[109.576600371094,31.2545876289063],[109.59271609375,31.26847190625],[109.606600371094,31.2845876289063],[109.63814578125,31.3117653632813],[109.662066679688,31.2984181953125],[109.700623808594,31.3015163398438],[109.714471464844,31.3475099921875],[109.776871367188,31.3616872382813],[109.79197390625,31.3792140937501],[109.817181425781,31.3904640937501],[109.849051542969,31.3879030585938],[109.929857207031,31.4004372382813],[109.937345,31.4738430000001],[109.99298953125,31.46948753125],[110.006988554688,31.4513503242188],[110.05170046875,31.41819846875],[110.11298953125,31.40948753125],[110.12170046875,31.39819846875]]]]}},{"type":"Feature","properties":{"name":"巫溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.577345,31.7338430000001],[109.586571074219,31.7209719062501],[109.612345,31.7158791328125],[109.642345,31.7218068671875],[109.662345,31.7178542304688],[109.680404082031,31.7214235664063],[109.701519804688,31.7080178046875],[109.727489042969,31.6980031562501],[109.741519804688,31.6280178046875],[109.753890410156,31.6085329414063],[109.741519804688,31.5996681953126],[109.733170195313,31.5780178046876],[109.713170195313,31.5636843085938],[109.731829863281,31.5477541328125],[109.762345,31.5537819648437],[109.797345,31.5468679023438],[109.835657988281,31.554438703125],[109.876314726563,31.5286232734376],[109.917345,31.523843],[109.941925078125,31.5076003242188],[109.967345,31.5138430000001],[109.96062625,31.50056175],[109.940704375,31.4904836250001],[109.937345,31.4738430000001],[109.929857207031,31.4004372382813],[109.849051542969,31.3879030585938],[109.817181425781,31.3904640937501],[109.79197390625,31.3792140937501],[109.776871367188,31.3616872382813],[109.714471464844,31.3475099921875],[109.700623808594,31.3015163398438],[109.662066679688,31.2984181953125],[109.63814578125,31.3117653632813],[109.606600371094,31.2845876289063],[109.59271609375,31.26847190625],[109.576600371094,31.2545876289063],[109.567345,31.2438430000001],[109.545401640625,31.2519020820313],[109.497345,31.2480397773437],[109.453963652344,31.2515261054688],[109.442020292969,31.2376638007813],[109.395113554688,31.2414333320313],[109.38271609375,31.26921409375],[109.330330839844,31.3097414375],[109.310018339844,31.3552614570313],[109.142535429688,31.3692604804688],[109.132345,31.3684401679687],[109.117345,31.3696462226562],[109.097345,31.3680397773438],[109.07486453125,31.3698464179688],[109.047345,31.363843],[109.039110136719,31.3741262031251],[108.933084746094,31.389555890625],[108.922345,31.3882204414062],[108.912345,31.3894655585938],[108.880887480469,31.385551984375],[108.886886015625,31.3373293281251],[108.819386015625,31.3500588203125],[108.823248320313,31.3811086250001],[108.800535917969,31.3992971015625],[108.80373171875,31.4249929023437],[108.757345,31.443843],[108.741429472656,31.4479274726563],[108.702850371094,31.4641310859375],[108.689608183594,31.4995192695313],[108.759845,31.5087966132812],[108.77611453125,31.5522805],[108.817713652344,31.581001203125],[108.836246367188,31.5768483710938],[108.883216582031,31.6074343085938],[108.887345,31.653843],[108.902078886719,31.659380109375],[108.990457792969,31.6503713203125],[109.003365507813,31.6943605781251],[109.067345,31.7008815742187],[109.092345,31.6983327460938],[109.122345,31.7013918281251],[109.152345,31.6983327460938],[109.162345,31.6993532539063],[109.223436308594,31.6931252265625],[109.220882597656,31.7181838203126],[109.242345,31.7203713203125],[109.262611113281,31.718305890625],[109.277345,31.723843],[109.282633085938,31.7174782539063],[109.380477324219,31.707505109375],[109.420614042969,31.7225856757813],[109.462415800781,31.718325421875],[109.546519804688,31.729946515625],[109.562611113281,31.7283058906251],[109.577345,31.7338430000001]]]]}},{"type":"Feature","properties":{"name":"云阳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.819386015625,31.3500588203125],[108.886886015625,31.3373293281251],[108.880887480469,31.385551984375],[108.912345,31.3894655585938],[108.922345,31.3882204414062],[108.933084746094,31.389555890625],[109.039110136719,31.3741262031251],[109.047345,31.363843],[109.040091582031,31.2900905585938],[109.064368925781,31.2691750312501],[109.089600859375,31.2004665351563],[109.039974394531,31.1783229804688],[109.05197390625,31.13847190625],[109.0936340625,31.1198805976562],[109.088912382813,31.06112815625],[109.130787382813,31.0577638984375],[109.168453398438,31.0715944648438],[109.19197390625,31.05847190625],[109.241566191406,31.043540265625],[109.243197050781,31.0232497382813],[109.211197539063,30.97812034375],[109.215806914063,30.9207521796875],[109.166126738281,30.94847190625],[109.15115359375,30.9386794257813],[109.153524199219,30.9091677070313],[109.141917753906,30.8991677070313],[109.142772246094,30.8885182929688],[109.13197390625,30.8792140937501],[109.120079375,30.8654103828125],[109.053136015625,30.8707888007813],[109.041890898438,30.8087673164063],[109.054129667969,30.7640505195313],[109.04271609375,30.73847190625],[109.021812773438,30.7204616523438],[109.022747832031,30.7088356757813],[109.017345,30.643843],[108.982362089844,30.626391828125],[108.971883574219,30.6315114570313],[108.943985625,30.607202375],[108.897345,30.583843],[108.888450957031,30.5949489570313],[108.866673613281,30.612387921875],[108.896204863281,30.6528151679688],[108.891046171875,30.6942800117188],[108.832345,30.6869777656251],[108.802345,30.6907082343751],[108.78037234375,30.6879763007813],[108.78302859375,30.709341046875],[108.760479765625,30.718843],[108.763023710938,30.7392971015626],[108.744930449219,30.75378440625],[108.732899199219,30.8093971992188],[108.719251738281,30.8203249335938],[108.694569121094,30.8172536445312],[108.662899199219,30.8693971992187],[108.638914824219,30.8982888007813],[108.621988554688,30.8771559882813],[108.612200957031,30.9333986640625],[108.554735136719,30.9113088203125],[108.538450957031,30.9499489570313],[108.521678496094,30.9784841132813],[108.523026152344,30.9893141914063],[108.508914824219,30.9982888007813],[108.492799101563,30.9781642890626],[108.482345,30.9794655585938],[108.452843046875,30.975796125],[108.442899199219,30.9993971992188],[108.417345,31.003843],[108.42170046875,31.00948753125],[108.466322050781,31.0219118476563],[108.485496855469,31.0687624335938],[108.542264433594,31.0919948554688],[108.56170046875,31.13948753125],[108.59677859375,31.1665627265625],[108.581529570313,31.1783303046875],[108.589896269531,31.2349367500001],[108.63298953125,31.26819846875],[108.64170046875,31.28948753125],[108.653595,31.29866721875],[108.625386992188,31.3367165351562],[108.697498808594,31.3489650703125],[108.691517363281,31.3894362617188],[108.726900664063,31.3992873359375],[108.757345,31.443843],[108.80373171875,31.4249929023437],[108.800535917969,31.3992971015625],[108.823248320313,31.3811086250001],[108.819386015625,31.3500588203125]]]]}},{"type":"Feature","properties":{"name":"忠县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.707345,30.223843],[107.703922148438,30.2116506171875],[107.695152617188,30.2204201484375],[107.707345,30.223843]]],[[[108.117345,30.2538430000001],[108.129537382813,30.2504201484375],[108.120767851563,30.2416506171875],[108.117345,30.2538430000001]]],[[[108.117345,30.2538430000001],[108.092030058594,30.2491188789063],[108.092760039063,30.2368752265626],[108.123829375,30.2091139960938],[108.102064238281,30.1991237617188],[108.078485136719,30.1863112617188],[108.057408476563,30.1627223945313],[108.091927519531,30.1318776679688],[108.053780546875,30.0772682929688],[108.020069609375,30.0792775703126],[107.997345,30.053843],[107.962064238281,30.0585622382813],[107.934344511719,30.0736232734376],[107.893160429688,30.1197194648437],[107.867345,30.1056911445312],[107.842569609375,30.1191555],[107.803472929688,30.1168239570313],[107.838214140625,30.1665602851563],[107.812064238281,30.1785622382813],[107.7612903125,30.2061525703125],[107.763228789063,30.2386550117188],[107.750496855469,30.2485622382813],[107.73259890625,30.2285305],[107.722144804688,30.2291530585938],[107.707345,30.223843],[107.703685332031,30.2419655585937],[107.671004667969,30.2257204414063],[107.663985625,30.2604836250001],[107.654078398438,30.267202375],[107.630638457031,30.2205373359376],[107.597345,30.203843],[107.581790800781,30.2082888007813],[107.572345,30.2200856757813],[107.557345,30.2013552070313],[107.536615019531,30.2272414375],[107.562899199219,30.2482888007813],[107.571790800781,30.2693971992188],[107.583023710938,30.2783888984375],[107.581666289063,30.2892971015626],[107.60107546875,30.30483909375],[107.57134890625,30.3286428046876],[107.596173125,30.37087425],[107.648450957031,30.4127370429688],[107.657345,30.423843],[107.668460722656,30.4327443671875],[107.738255644531,30.5199733710938],[107.767323027344,30.5163576484376],[107.781790800781,30.4982888007813],[107.792899199219,30.4893971992188],[107.803656035156,30.475962140625],[107.828038359375,30.56124534375],[107.881781035156,30.5545607734376],[107.891790800781,30.5082888007813],[107.930694609375,30.4846608710938],[107.956514921875,30.527173078125],[108.007010527344,30.5484499335938],[108.027345,30.573843],[108.066163359375,30.5799831367188],[108.091954375,30.5773537421876],[108.109058867188,30.5979470039063],[108.121922636719,30.5682912421875],[108.134295683594,30.5695510078125],[108.151883574219,30.5483815742188],[108.162894316406,30.539233625],[108.160882597656,30.5195021796875],[108.172345,30.5183327460938],[108.190457792969,30.5201784492188],[108.230775175781,30.4692360664063],[108.232889433594,30.4485085273438],[108.217345,30.423843],[108.213170195313,30.4180178046875],[108.156534453125,30.4066628242188],[108.1301575,30.3698610664063],[108.073170195313,30.3548268867188],[108.088001738281,30.3427321601563],[108.161519804688,30.327993390625],[108.145577421875,30.3089455390625],[108.120933867188,30.2994411445313],[108.13369265625,30.26839378125],[108.121519804688,30.2596681953126],[108.117345,30.2538430000001]]]]}},{"type":"Feature","properties":{"name":"北碚区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.427345,29.9038430000001],[106.415152617188,29.9072658515625],[106.423922148438,29.9160353828125],[106.427345,29.9038430000001]]],[[[106.447345,29.913843],[106.451397734375,29.936841046875],[106.460042753906,29.9192775703126],[106.447345,29.913843]]],[[[106.427345,29.9038430000001],[106.447345,29.913843],[106.439718046875,29.8827931953125],[106.463118925781,29.8775490546875],[106.476605253906,29.9135939765625],[106.510513945313,29.9356740546875],[106.547056914063,29.9493483710937],[106.563260527344,29.9879274726563],[106.571429472656,30.0197585273438],[106.594217558594,30.0354909492188],[106.589791289063,30.0552370429688],[106.621429472656,30.0797585273438],[106.657345,30.083843],[106.673013945313,30.05921409375],[106.671102324219,30.043843],[106.67607546875,30.003843],[106.669857207031,29.953843],[106.672967558594,29.928843],[106.671722441406,29.918843],[106.673074980469,29.907973859375],[106.639119902344,29.8520680976563],[106.601790800781,29.8293971992188],[106.592899199219,29.8182888007813],[106.580887480469,29.8086721015625],[106.603802519531,29.7990138984375],[106.591666289063,29.7892971015626],[106.593826933594,29.7719362617188],[106.582799101563,29.7581642890626],[106.567345,29.7600856757813],[106.533704863281,29.7559035468751],[106.515775175781,29.7782888007813],[106.521790800781,29.7482888007813],[106.534136992188,29.727290265625],[106.511790800781,29.7093971992188],[106.502679472656,29.68776878125],[106.47263796875,29.7054274726563],[106.447345,29.6738430000001],[106.440562773438,29.64948753125],[106.423792753906,29.6659743476562],[106.437000761719,29.7553493476563],[106.362486601563,29.7380837226563],[106.352345,29.7395827460938],[106.327515898438,29.7359133125],[106.307345,29.743843],[106.3125403125,29.7615456367187],[106.361422148438,29.8021486640625],[106.341883574219,29.8183815742188],[106.321886015625,29.871762921875],[106.307345,29.883843],[106.311790800781,29.8893971992188],[106.375792265625,29.9282692695313],[106.41134890625,29.8838674140625],[106.427345,29.9038430000001]]]]}},{"type":"Feature","properties":{"name":"长寿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.262935820313,30.056235578125],[107.304210234375,30.038843],[107.301722441406,30.0188430000001],[107.303023710938,30.0083888984375],[107.289290800781,29.9973952460938],[107.32373171875,29.9771486640626],[107.352345,29.980708234375],[107.372760039063,29.978169171875],[107.442039824219,30.0382888007812],[107.453153105469,30.0189528632813],[107.447345,30.003843],[107.436419707031,29.9947682929688],[107.422806425781,29.9783815742188],[107.406419707031,29.9647682929688],[107.387257109375,29.9416994453125],[107.372806425781,29.9083815742187],[107.341883574219,29.8893044257812],[107.32373171875,29.86745628125],[107.297611113281,29.8457570625],[107.262345,29.8493532539063],[107.214107695313,29.8444362617188],[107.202806425781,29.8183815742188],[107.191883574219,29.8093044257813],[107.182806425781,29.7983815742188],[107.114498320313,29.768755109375],[107.071883574219,29.7593044257813],[107.02451296875,29.7218141914063],[106.997345,29.7138430000001],[106.983260527344,29.7697585273437],[106.967345,29.773843],[106.941063261719,29.7881252265625],[106.943475371094,29.7988845039063],[106.931102324219,29.8492580390625],[106.943565703125,29.8683962226563],[106.941112089844,29.8793483710938],[106.963260527344,29.9079274726563],[106.981429472656,29.9429592109375],[106.941429472656,29.9579274726563],[106.917428007813,29.9735573554688],[106.861429472656,29.9879274726563],[106.850418730469,30.0173537421875],[106.857345,30.033843],[106.952108183594,30.042270734375],[106.952447539063,30.0588430000001],[106.952042265625,30.0787355781251],[106.982056914063,30.0793483710938],[106.997144804688,30.0636428046876],[107.012445097656,30.0489430976563],[107.027345,30.0334352851563],[107.042249785156,30.0489479804688],[107.072232695313,30.0483351875],[107.072550078125,30.0638430000001],[107.072039824219,30.088843],[107.092445097656,30.0987429023438],[107.227345,30.223843],[107.28322390625,30.17913596875],[107.27146609375,30.1485500312501],[107.291790800781,30.1322731757813],[107.282899199219,30.0982888007813],[107.252899199219,30.0742653632813],[107.262935820313,30.056235578125]]]]}},{"type":"Feature","properties":{"name":"铜梁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.920716582031,30.0979274726563],[105.941998320313,30.06710471875],[105.962691679688,30.0805812812501],[105.971429472656,30.0679274726562],[105.977345,30.0638430000001],[105.983206816406,30.0410036445313],[106.024176054688,30.0256740546875],[106.051429472656,30.0079274726563],[106.120191679688,29.998843],[106.107750273438,29.9433473945313],[106.131898222656,29.927622296875],[106.142345,29.9299636054688],[106.162345,29.9254811835938],[106.209398222656,29.9360280585938],[106.280094023438,29.8884230781251],[106.26060671875,29.8584963203126],[106.267345,29.853843],[106.232291289063,29.8100685859376],[106.160755644531,29.7666188789063],[106.162994414063,29.7486257148438],[106.151534453125,29.7084963203125],[106.1684778125,29.694926984375],[106.115303984375,29.6316799140625],[106.102899199219,29.5882888007813],[106.091790800781,29.5593971992188],[106.087345,29.543843],[105.995911894531,29.5238991523438],[105.981373320313,29.5407741523438],[105.952345,29.5384401679688],[105.903079863281,29.5424001289063],[105.897345,29.573843],[105.941790800781,29.6293971992188],[105.958450957031,29.6427370429688],[105.980079375,29.6697463203125],[105.992821074219,29.6681618476563],[106.011790800781,29.6993971992188],[106.035245390625,29.7315016914063],[106.001790800781,29.7582888007813],[105.985213652344,29.7789943671875],[105.931790800781,29.7882888007813],[105.891910429688,29.7996779609375],[105.880518828125,29.7726467109375],[105.826922636719,29.7593971992188],[105.802899199219,29.7893971992188],[105.777345,29.803843],[105.782393828125,29.8235207343751],[105.806654082031,29.8402712226563],[105.821429472656,29.8797585273438],[105.851097441406,29.9002443671875],[105.862345,29.8977223945313],[105.872791777344,29.9000637031251],[105.90267703125,29.8806032539063],[105.913892851563,29.8643605781251],[105.931429472656,29.8897585273438],[105.94857546875,29.9015969062501],[105.931124296875,29.9283962226563],[105.936158476563,29.95085471875],[105.911429472656,29.9679274726563],[105.903160429688,30.0001467109375],[105.891673613281,29.9975710273438],[105.883260527344,30.0097585273438],[105.871429472656,30.0179274726563],[105.863260527344,30.0372145820313],[105.893260527344,30.0579274726563],[105.901429472656,30.0897585273438],[105.920716582031,30.0979274726563]]]]}},{"type":"Feature","properties":{"name":"涪陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.484266386719,29.9710939765625],[107.502760039063,29.9679103828125],[107.522415800781,29.9800759101563],[107.551610136719,29.9581081367188],[107.573316679688,29.9494826484376],[107.570994902344,29.9360036445313],[107.593079863281,29.9195778632813],[107.601610136719,29.8881081367188],[107.618612089844,29.8754616523438],[107.588609648438,29.8355886054688],[107.610640898438,29.8059670234375],[107.640482207031,29.8111037421875],[107.630623808594,29.7538430000001],[107.634066191406,29.733843],[107.628150664063,29.6994826484375],[107.656715117188,29.6881325507813],[107.671610136719,29.6681081367188],[107.713624296875,29.6594655585938],[107.701610136719,29.6295778632813],[107.697345,29.613843],[107.69298953125,29.60819846875],[107.676058378906,29.5951296210938],[107.642991972656,29.5522927070312],[107.608734160156,29.5382717109376],[107.615955839844,29.4894142890625],[107.589288359375,29.4784987617187],[107.546058378906,29.4451296210937],[107.530709257813,29.4252468085938],[107.475347929688,29.5048513007813],[107.423717070313,29.4845534492188],[107.421605253906,29.498843],[107.423765898438,29.5134572578126],[107.381754179688,29.5299733710938],[107.325030546875,29.5067580390625],[107.287762480469,29.4584743476563],[107.229449492188,29.4179201484375],[107.237345,29.383843],[107.231514921875,29.3629055000001],[107.21170046875,29.37819846875],[107.196851835938,29.4144826484376],[107.142916289063,29.4224538398438],[107.13298953125,29.39819846875],[107.101517363281,29.3894362617188],[107.105943632813,29.3594875312501],[107.052952910156,29.3729689765625],[107.019954863281,29.4276711250001],[107.02595828125,29.4682912421875],[106.95170046875,29.4981984687501],[106.947345,29.503843],[106.951790800781,29.5693971992187],[106.971749296875,29.6392824531251],[106.988450957031,29.6827370429688],[106.997345,29.7138430000001],[107.02451296875,29.7218141914063],[107.071883574219,29.7593044257813],[107.114498320313,29.768755109375],[107.182806425781,29.7983815742188],[107.191883574219,29.8093044257813],[107.202806425781,29.8183815742188],[107.214107695313,29.8444362617188],[107.262345,29.8493532539063],[107.297611113281,29.8457570625],[107.32373171875,29.86745628125],[107.341883574219,29.8893044257812],[107.372806425781,29.9083815742187],[107.387257109375,29.9416994453125],[107.406419707031,29.9647682929688],[107.422806425781,29.9783815742188],[107.436419707031,29.9947682929688],[107.447345,30.003843],[107.467345,30.003843],[107.467345,29.993843],[107.484266386719,29.9710939765625]],[[107.005152617188,29.4872658515625],[107.017345,29.4838430000001],[107.013922148438,29.4960353828125],[107.005152617188,29.4872658515625]]]]}},{"type":"Feature","properties":{"name":"渝北区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.722957792969,30.0328859687501],[106.769027128906,30.0199391914063],[106.823114042969,30.0372316718751],[106.833157988281,30.05292503125],[106.853441191406,30.0399391914063],[106.857345,30.033843],[106.850418730469,30.0173537421875],[106.861429472656,29.9879274726563],[106.917428007813,29.9735573554688],[106.941429472656,29.9579274726563],[106.981429472656,29.9429592109375],[106.963260527344,29.9079274726563],[106.941112089844,29.8793483710938],[106.943565703125,29.8683962226563],[106.931102324219,29.8492580390625],[106.943475371094,29.7988845039063],[106.941063261719,29.7881252265625],[106.967345,29.773843],[106.963985625,29.757202375],[106.940704375,29.7304836250001],[106.933985625,29.6972023750001],[106.900704375,29.680483625],[106.887345,29.653843],[106.872611113281,29.659380109375],[106.851549101563,29.6572341132812],[106.792200957031,29.6795339179688],[106.755970488281,29.6534596992188],[106.735631132813,29.6779470039063],[106.722806425781,29.6483815742188],[106.687730742188,29.6267458320313],[106.64255984375,29.6393752265625],[106.632345,29.6383327460937],[106.596553984375,29.6419802070313],[106.56927859375,29.6263600898438],[106.552345,29.5873146796876],[106.532078886719,29.589380109375],[106.500477324219,29.577505109375],[106.479874296875,29.5796047187501],[106.482899199219,29.6092897773438],[106.457345,29.613843],[106.450662871094,29.6290822578125],[106.470960722656,29.6587258125001],[106.447345,29.6738430000001],[106.47263796875,29.7054274726563],[106.502679472656,29.68776878125],[106.511790800781,29.7093971992188],[106.534136992188,29.727290265625],[106.521790800781,29.7482888007813],[106.515775175781,29.7782888007813],[106.533704863281,29.7559035468751],[106.567345,29.7600856757813],[106.582799101563,29.7581642890626],[106.593826933594,29.7719362617188],[106.591666289063,29.7892971015626],[106.603802519531,29.7990138984375],[106.580887480469,29.8086721015625],[106.592899199219,29.8182888007813],[106.601790800781,29.8293971992188],[106.639119902344,29.8520680976563],[106.673074980469,29.907973859375],[106.671722441406,29.918843],[106.672967558594,29.928843],[106.669857207031,29.953843],[106.67607546875,30.003843],[106.671102324219,30.043843],[106.673013945313,30.05921409375],[106.657345,30.083843],[106.667345,30.123843],[106.697345,30.123843],[106.701248808594,30.0777468085938],[106.713441191406,30.0599391914063],[106.722957792969,30.0328859687501]]]]}},{"type":"Feature","properties":{"name":"丰都县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.707345,30.223843],[107.695152617188,30.2204201484375],[107.703922148438,30.2116506171875],[107.722144804688,30.2291530585938],[107.73259890625,30.2285305],[107.750496855469,30.2485622382813],[107.763228789063,30.2386550117188],[107.7612903125,30.2061525703125],[107.812064238281,30.1785622382813],[107.838214140625,30.1665602851563],[107.803472929688,30.1168239570313],[107.842569609375,30.1191555],[107.867345,30.1056911445312],[107.893160429688,30.1197194648437],[107.934344511719,30.0736232734376],[107.962064238281,30.0585622382813],[107.997345,30.053843],[108.001790800781,30.0482888007813],[108.0184778125,30.034926984375],[108.025330839844,29.9798366523438],[108.012345,29.9782204414062],[107.99318484375,29.9806032539063],[107.991666289063,29.9683962226563],[108.031790800781,29.9182888007813],[108.043023710938,29.9092971015626],[108.041666289063,29.8983888984375],[108.064378691406,29.8802028632813],[108.060584746094,29.84968284375],[108.082345,29.8469777656251],[108.127464628906,29.8525905585938],[108.151986113281,29.8381764960938],[108.170504179688,29.8404787421875],[108.182899199219,29.8193971992188],[108.193057890625,29.7952834296875],[108.218900175781,29.7745900703126],[108.182738066406,29.7481716132813],[108.17037234375,29.7497096992188],[108.172967558594,29.728843],[108.171102324219,29.7138430000001],[108.173248320313,29.6965773750001],[108.143448515625,29.6727150703126],[108.140584746094,29.6496828437501],[108.152628203125,29.6481862617188],[108.167345,29.653843],[108.179888945313,29.6495632148438],[108.174801054688,29.6263869453126],[108.159888945313,29.6212990546876],[108.153065214844,29.6012990546875],[108.089888945313,29.6063869453125],[108.071126738281,29.6249294257813],[108.067345,29.613843],[108.06170046875,29.6181984687501],[107.979263945313,29.6340480781251],[107.952042265625,29.6176296210938],[107.929764433594,29.65487815625],[107.844879179688,29.67819846875],[107.829930449219,29.5901906562501],[107.833084746094,29.5688430000001],[107.829071074219,29.5416896796876],[107.772735625,29.5756716132813],[107.762345,29.601059796875],[107.725682402344,29.5956423164063],[107.697345,29.613843],[107.701610136719,29.6295778632813],[107.713624296875,29.6594655585938],[107.671610136719,29.6681081367188],[107.656715117188,29.6881325507813],[107.628150664063,29.6994826484375],[107.634066191406,29.733843],[107.630623808594,29.7538430000001],[107.640482207031,29.8111037421875],[107.610640898438,29.8059670234375],[107.588609648438,29.8355886054688],[107.618612089844,29.8754616523438],[107.601610136719,29.8881081367188],[107.593079863281,29.9195778632813],[107.570994902344,29.9360036445313],[107.573316679688,29.9494826484376],[107.551610136719,29.9581081367188],[107.522415800781,29.9800759101563],[107.502760039063,29.9679103828125],[107.484266386719,29.9710939765625],[107.467345,29.993843],[107.478089628906,30.0030983710937],[107.532916289063,30.0667385078125],[107.531165800781,30.0885182929688],[107.548089628906,30.1030983710938],[107.56197390625,30.1192140937501],[107.572882109375,30.1286135078125],[107.561790800781,30.1691335273438],[107.590789824219,30.1820729804687],[107.597345,30.203843],[107.630638457031,30.2205373359376],[107.654078398438,30.267202375],[107.663985625,30.2604836250001],[107.671004667969,30.2257204414063],[107.703685332031,30.2419655585937],[107.707345,30.223843]]]]}},{"type":"Feature","properties":{"name":"石柱土家族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.507345,29.883843],[108.520343046875,29.8782814765625],[108.511351347656,29.8611183906251],[108.507345,29.883843]]],[[[108.517345,30.0638430000001],[108.505152617188,30.0604201484375],[108.513922148438,30.0516506171875],[108.524268828125,30.0584987617188],[108.53420046875,29.9912819648437],[108.52170046875,29.95948753125],[108.51298953125,29.89819846875],[108.507345,29.883843],[108.491248808594,29.8799391914063],[108.462345,29.8601467109375],[108.424964628906,29.8857448554688],[108.413441191406,29.8677468085938],[108.384644804688,29.8576174140626],[108.363441191406,29.8296388984375],[108.387345,29.823843],[108.381219511719,29.8018434882813],[108.357987089844,29.7633303046875],[108.364722929688,29.7177516914063],[108.347345,29.7203200507813],[108.324759550781,29.7169826484376],[108.242640410156,29.7496242500001],[108.232345,29.7481032539063],[108.221751738281,29.7496706367188],[108.21298953125,29.71819846875],[108.201549101563,29.699233625],[108.203765898438,29.6842360664063],[108.17170046875,29.65948753125],[108.167345,29.653843],[108.152628203125,29.6481862617188],[108.140584746094,29.6496828437501],[108.143448515625,29.6727150703126],[108.173248320313,29.6965773750001],[108.171102324219,29.7138430000001],[108.172967558594,29.728843],[108.17037234375,29.7497096992188],[108.182738066406,29.7481716132813],[108.218900175781,29.7745900703126],[108.193057890625,29.7952834296875],[108.182899199219,29.8193971992188],[108.170504179688,29.8404787421875],[108.151986113281,29.8381764960938],[108.127464628906,29.8525905585938],[108.082345,29.8469777656251],[108.060584746094,29.84968284375],[108.064378691406,29.8802028632813],[108.041666289063,29.8983888984375],[108.043023710938,29.9092971015626],[108.031790800781,29.9182888007813],[107.991666289063,29.9683962226563],[107.99318484375,29.9806032539063],[108.012345,29.9782204414062],[108.025330839844,29.9798366523438],[108.0184778125,30.034926984375],[108.001790800781,30.0482888007813],[107.997345,30.053843],[108.020069609375,30.0792775703126],[108.053780546875,30.0772682929688],[108.091927519531,30.1318776679688],[108.057408476563,30.1627223945313],[108.078485136719,30.1863112617188],[108.102064238281,30.1991237617188],[108.123829375,30.2091139960938],[108.092760039063,30.2368752265626],[108.092030058594,30.2491188789063],[108.117345,30.2538430000001],[108.120767851563,30.2416506171875],[108.129537382813,30.2504201484375],[108.117345,30.2538430000001],[108.121519804688,30.2596681953126],[108.13369265625,30.26839378125],[108.120933867188,30.2994411445313],[108.145577421875,30.3089455390625],[108.161519804688,30.327993390625],[108.088001738281,30.3427321601563],[108.073170195313,30.3548268867188],[108.1301575,30.3698610664063],[108.156534453125,30.4066628242188],[108.213170195313,30.4180178046875],[108.217345,30.423843],[108.262471953125,30.3981862617188],[108.272020292969,30.4092702460938],[108.298870878906,30.407114484375],[108.379771757813,30.5474318671875],[108.403590117188,30.5493459296876],[108.401207304688,30.5196974921876],[108.417345,30.493843],[108.411925078125,30.4790822578126],[108.413148222656,30.463843],[108.411219511719,30.4398244453126],[108.425811796875,30.4136696601563],[108.41271609375,30.39847190625],[108.39271609375,30.3812404609375],[108.433280058594,30.3577126289063],[108.454449492188,30.3594142890625],[108.51271609375,30.3092140937501],[108.556842070313,30.2579982734376],[108.576805449219,30.2596022773438],[108.553287382813,30.1955593085938],[108.551165800781,30.1691677070313],[108.564625273438,30.1575710273437],[108.54271609375,30.10847190625],[108.517345,30.0638430000001]]]]}},{"type":"Feature","properties":{"name":"合川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.447345,29.913843],[106.460042753906,29.9192775703126],[106.451397734375,29.936841046875],[106.427345,29.9038430000001],[106.423922148438,29.9160353828125],[106.415152617188,29.9072658515625],[106.427345,29.9038430000001],[106.41134890625,29.8838674140625],[106.375792265625,29.9282692695313],[106.311790800781,29.8893971992188],[106.307345,29.883843],[106.267345,29.853843],[106.26060671875,29.8584963203126],[106.280094023438,29.8884230781251],[106.209398222656,29.9360280585938],[106.162345,29.9254811835938],[106.142345,29.9299636054688],[106.131898222656,29.927622296875],[106.107750273438,29.9433473945313],[106.120191679688,29.998843],[106.051429472656,30.0079274726563],[106.024176054688,30.0256740546875],[105.983206816406,30.0410036445313],[105.977345,30.0638430000001],[105.981883574219,30.0893044257813],[105.995286894531,30.1249782539063],[105.981883574219,30.1483815742188],[105.96373171875,30.19022971875],[105.987345,30.1878249335937],[106.004815703125,30.1896047187501],[106.00150515625,30.2220803046876],[105.974288359375,30.2446901679687],[106.011449003906,30.2755568671876],[105.968514433594,30.2941774726563],[105.982935820313,30.3589601875001],[105.977345,30.373843],[105.997345,30.373843],[106.02298953125,30.36948753125],[106.05170046875,30.34819846875],[106.08298953125,30.33948753125],[106.099075957031,30.3186452460938],[106.167166777344,30.3070778632813],[106.18170046875,30.23819846875],[106.193160429688,30.2293556953125],[106.191605253906,30.218843],[106.193602324219,30.2053346992188],[106.227345,30.2103200507813],[106.246851835938,30.2074391914063],[106.262542753906,30.1871096015625],[106.271773710938,30.2096657539063],[106.293436308594,30.2064650703125],[106.291605253906,30.218843],[106.294835234375,30.2406911445313],[106.318592558594,30.2371804023437],[106.372203398438,30.2496022773438],[106.382345,30.2481032539063],[106.392345,30.2495827460938],[106.402345,30.2481032539063],[106.427603789063,30.2518361640625],[106.411170683594,30.279077375],[106.432178984375,30.2952931953125],[106.437345,30.313843],[106.454783964844,30.30698753125],[106.472857695313,30.3096584296875],[106.481832304688,30.2980275703125],[106.492345,30.2995827460938],[106.509193144531,30.2970925117188],[106.558953886719,30.3116017890625],[106.61298953125,30.28948753125],[106.62170046875,30.27819846875],[106.627345,30.273843],[106.627345,30.263843],[106.637345,30.263843],[106.619449492188,30.2367604804688],[106.623465605469,30.218843],[106.621102324219,30.2083034492188],[106.663260527344,30.1597585273438],[106.667345,30.123843],[106.657345,30.083843],[106.621429472656,30.0797585273438],[106.589791289063,30.0552370429688],[106.594217558594,30.0354909492188],[106.571429472656,30.0197585273438],[106.563260527344,29.9879274726563],[106.547056914063,29.9493483710937],[106.510513945313,29.9356740546875],[106.476605253906,29.9135939765625],[106.463118925781,29.8775490546875],[106.439718046875,29.8827931953125],[106.447345,29.913843]],[[106.247345,30.183843],[106.241910429688,30.1965407539062],[106.224346953125,30.1878957343751],[106.247345,30.183843]]]]}},{"type":"Feature","properties":{"name":"潼南县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.833985625,30.4204836250001],[105.841317167969,30.3950807929687],[105.863045683594,30.4123439765626],[105.871353789063,30.3959181953126],[105.887410917969,30.4037599921875],[105.947279082031,30.3739260078125],[105.962359648438,30.3812917304687],[105.977345,30.373843],[105.982935820313,30.3589601875001],[105.968514433594,30.2941774726563],[106.011449003906,30.2755568671876],[105.974288359375,30.2446901679687],[106.00150515625,30.2220803046876],[106.004815703125,30.1896047187501],[105.987345,30.1878249335937],[105.96373171875,30.19022971875],[105.981883574219,30.1483815742188],[105.995286894531,30.1249782539063],[105.981883574219,30.0893044257813],[105.977345,30.0638430000001],[105.971429472656,30.0679274726562],[105.962691679688,30.0805812812501],[105.941998320313,30.06710471875],[105.920716582031,30.0979274726563],[105.901429472656,30.0897585273438],[105.893260527344,30.0579274726563],[105.863260527344,30.0372145820313],[105.871429472656,30.0179274726563],[105.883260527344,30.0097585273438],[105.891673613281,29.9975710273438],[105.903160429688,30.0001467109375],[105.911429472656,29.9679274726563],[105.936158476563,29.95085471875],[105.931124296875,29.9283962226563],[105.94857546875,29.9015969062501],[105.931429472656,29.8897585273438],[105.913892851563,29.8643605781251],[105.90267703125,29.8806032539063],[105.872791777344,29.9000637031251],[105.862345,29.8977223945313],[105.851097441406,29.9002443671875],[105.821429472656,29.8797585273438],[105.806654082031,29.8402712226563],[105.782393828125,29.8235207343751],[105.777345,29.803843],[105.762623320313,29.7976589179688],[105.747345,29.8010842109375],[105.706302519531,29.7918825507813],[105.727059355469,29.8237599921875],[105.737345,29.863843],[105.72271609375,29.8892140937501],[105.71197390625,29.89847190625],[105.699288359375,29.926899640625],[105.71271609375,29.93847190625],[105.72412234375,29.9517116523438],[105.721942167969,29.9788430000001],[105.722955351563,29.9914455390625],[105.749754667969,30.0145363593751],[105.720330839844,30.0398854804688],[105.702345,30.0384401679688],[105.685858183594,30.0397658515626],[105.67271609375,30.06921409375],[105.64197390625,30.0784719062501],[105.632117949219,30.1005568671875],[105.562935820313,30.1314284492188],[105.59439578125,30.1585329414063],[105.569947539063,30.16847190625],[105.54922,30.1444118476563],[105.53271609375,30.1764284492188],[105.557345,30.183843],[105.572432890625,30.1779128242188],[105.63298953125,30.1881984687501],[105.64170046875,30.20948753125],[105.654078398438,30.2190407539063],[105.615133085938,30.2349806953126],[105.610282011719,30.2678005195313],[105.646832304688,30.2732009101563],[105.673922148438,30.256860578125],[105.697345,30.2603200507813],[105.721302519531,30.2567800117188],[105.724486113281,30.2783303046876],[105.710203886719,30.2893556953126],[105.713084746094,30.308843],[105.711517363281,30.3194362617188],[105.727345,30.3238430000001],[105.740152617188,30.3288430000001],[105.727345,30.3338430000001],[105.727345,30.343843],[105.755494414063,30.3473928046876],[105.749713164063,30.3592336250001],[105.764989042969,30.3784645820312],[105.757345,30.393843],[105.783985625,30.407202375],[105.7907825,30.4307546210938],[105.816031523438,30.4430861640625],[105.833985625,30.4204836250001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"成华区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.153985625,30.740483625],[104.161353789063,30.7259181953125],[104.172735625,30.7314748359376],[104.190704375,30.717202375],[104.219771757813,30.708813703125],[104.227345,30.693843],[104.223260527344,30.6879274726563],[104.161903105469,30.6721804023438],[104.153260527344,30.6279274726563],[104.137345,30.623843],[104.09170046875,30.65819846875],[104.087345,30.663843],[104.087345,30.6738430000001],[104.083260527344,30.6997585273438],[104.070081816406,30.7088576484376],[104.137345,30.753843],[104.140704375,30.747202375],[104.153985625,30.740483625]]]]}},{"type":"Feature","properties":{"name":"崇州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.637345,30.523843],[103.633922148438,30.5116506171875],[103.625152617188,30.5204201484375],[103.637345,30.523843]]],[[[103.637345,30.523843],[103.623880644531,30.5412868476563],[103.559073515625,30.5317092109375],[103.563084746094,30.5588430000001],[103.560128203125,30.578843],[103.5652746875,30.6136721015626],[103.55170046875,30.6481984687501],[103.541370878906,30.685298078125],[103.501053496094,30.7164186835938],[103.409039335938,30.7320485664063],[103.381954375,30.7280471015626],[103.362279082031,30.7399147773438],[103.332410917969,30.7177712226563],[103.312345,30.7298757148438],[103.292735625,30.7180471015626],[103.282345,30.7195827460938],[103.271832304688,30.7180275703125],[103.236873808594,30.7633205390626],[103.2027746875,30.7380397773438],[103.183924589844,30.740825421875],[103.135914335938,30.7697878242188],[103.117345,30.793843],[103.128631621094,30.8025563789063],[103.14170046875,30.81948753125],[103.15298953125,30.82819846875],[103.16978640625,30.8499611640625],[103.182345,30.8481032539063],[103.192996855469,30.8496779609375],[103.278631621094,30.8351296210938],[103.298426542969,30.8094875312501],[103.33298953125,30.82819846875],[103.353150664063,30.8543215156251],[103.40298953125,30.8681984687501],[103.427345,30.883843],[103.437838164063,30.8702468085938],[103.452345,30.8681032539062],[103.462735625,30.8696388984375],[103.495345488281,30.8499684882812],[103.53298953125,30.83948753125],[103.54170046875,30.82819846875],[103.59298953125,30.8139162421875],[103.612916289063,30.7652321601563],[103.696712675781,30.7776174140625],[103.71170046875,30.7581984687501],[103.727345,30.753843],[103.731429472656,30.7379274726563],[103.743260527344,30.7197585273438],[103.751429472656,30.6979274726563],[103.763565703125,30.6792897773438],[103.760943632813,30.6675954414063],[103.785513945313,30.6320119453125],[103.797345,30.623843],[103.801158476563,30.5976564765625],[103.820518828125,30.5700807929688],[103.810721464844,30.5386305976563],[103.817345,30.523843],[103.784957304688,30.5209596992188],[103.799732695313,30.5067263007813],[103.767345,30.503843],[103.74298953125,30.5394875312501],[103.716143828125,30.5681984687501],[103.682735625,30.5480471015625],[103.671912871094,30.5496462226563],[103.637345,30.523843]]]]}},{"type":"Feature","properties":{"name":"大邑县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.637345,30.523843],[103.625152617188,30.5204201484375],[103.633922148438,30.5116506171875],[103.671912871094,30.5496462226563],[103.682735625,30.5480471015625],[103.716143828125,30.5681984687501],[103.74298953125,30.5394875312501],[103.767345,30.503843],[103.743990507813,30.4983425117188],[103.730220976563,30.4579372382812],[103.707345,30.4438430000001],[103.646654082031,30.4724758125001],[103.62045046875,30.4566677070313],[103.623175078125,30.4382228828125],[103.55158328125,30.4294875312501],[103.51298953125,30.47948753125],[103.459075957031,30.4886452460938],[103.437913847656,30.5160622382813],[103.388421660156,30.5504787421876],[103.367345,30.5473659492188],[103.347345,30.5503200507813],[103.303482695313,30.5438381171875],[103.292916289063,30.5180202460938],[103.272857695313,30.5209841132813],[103.260809355469,30.505376203125],[103.232345,30.5095827460938],[103.221954375,30.5080471015625],[103.20298953125,30.51948753125],[103.177345,30.523843],[103.156800566406,30.5291139960938],[103.164818144531,30.5648757148438],[103.125250273438,30.5921950507813],[103.133465605469,30.6288430000001],[103.126314726563,30.660747296875],[103.089598417969,30.6860964179688],[103.07033328125,30.7139968085937],[103.032345,30.7054811835937],[103.023260527344,30.7297585273438],[103.001429472656,30.7579274726563],[102.987345,30.7838430000001],[103.00298953125,30.78819846875],[103.073162871094,30.815786359375],[103.11298953125,30.79948753125],[103.117345,30.793843],[103.135914335938,30.7697878242188],[103.183924589844,30.740825421875],[103.2027746875,30.7380397773438],[103.236873808594,30.7633205390626],[103.271832304688,30.7180275703125],[103.282345,30.7195827460938],[103.292735625,30.7180471015626],[103.312345,30.7298757148438],[103.332410917969,30.7177712226563],[103.362279082031,30.7399147773438],[103.381954375,30.7280471015626],[103.409039335938,30.7320485664063],[103.501053496094,30.7164186835938],[103.541370878906,30.685298078125],[103.55170046875,30.6481984687501],[103.5652746875,30.6136721015626],[103.560128203125,30.578843],[103.563084746094,30.5588430000001],[103.559073515625,30.5317092109375],[103.623880644531,30.5412868476563],[103.637345,30.523843]]]]}},{"type":"Feature","properties":{"name":"都江堰市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.695362578125,31.3499343085938],[103.71744265625,31.2742067695313],[103.677205839844,31.2199343085937],[103.706058378906,31.1825563789063],[103.732178984375,31.1623928046875],[103.74170046875,31.12819846875],[103.770584746094,31.0803151679688],[103.729268828125,31.0688088203125],[103.753140898438,31.029233625],[103.751549101563,31.0184523750001],[103.771219511719,30.9858425117188],[103.777345,30.963843],[103.771429472656,30.9597585273438],[103.763260527344,30.9279274726563],[103.751160917969,30.8991213203126],[103.753616972656,30.8881667304688],[103.717345,30.8638430000001],[103.683756132813,30.8852126289063],[103.712899199219,30.8093971992188],[103.721790800781,30.7682888007813],[103.727345,30.753843],[103.71170046875,30.7581984687501],[103.696712675781,30.7776174140625],[103.612916289063,30.7652321601563],[103.59298953125,30.8139162421875],[103.54170046875,30.82819846875],[103.53298953125,30.83948753125],[103.495345488281,30.8499684882812],[103.462735625,30.8696388984375],[103.452345,30.8681032539062],[103.437838164063,30.8702468085938],[103.427345,30.883843],[103.44298953125,30.88819846875],[103.457257109375,30.9394435859376],[103.519862089844,30.9829787421875],[103.509969511719,31.0499221015625],[103.534862089844,31.1181471992188],[103.55298953125,31.14819846875],[103.56170046875,31.16948753125],[103.581451445313,31.2022267890625],[103.570867949219,31.273843],[103.573822050781,31.293843],[103.566370878906,31.3442653632812],[103.607345,31.3503200507813],[103.622486601563,31.3480837226563],[103.67170046875,31.35948753125],[103.677345,31.363843],[103.695362578125,31.3499343085938]]]]}},{"type":"Feature","properties":{"name":"金牛区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.123385039063,30.7840578437501],[104.121795683594,30.768452375],[104.132806425781,30.7593044257813],[104.137345,30.753843],[104.070081816406,30.7088576484376],[104.083260527344,30.6997585273438],[104.087345,30.6738430000001],[104.061929960938,30.6800856757813],[104.042345,30.6673317695313],[104.023260527344,30.6797585273438],[104.001051054688,30.6880690742188],[104.004320097656,30.7026491523438],[103.976312285156,30.6963698554688],[103.957345,30.723843],[103.959888945313,30.7312990546876],[103.994801054688,30.7363869453125],[104.000716582031,30.7653542304688],[104.0341809375,30.73212425],[104.037345,30.753843],[104.06531375,30.7476174140625],[104.093704863281,30.7505104804688],[104.091685820313,30.7703054023438],[104.065233183594,30.7676076484375],[104.058656035156,30.8083815742188],[104.123385039063,30.7840578437501]]]]}},{"type":"Feature","properties":{"name":"金堂县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.437345,30.653843],[104.433292265625,30.630844953125],[104.424647246094,30.6484084296876],[104.437345,30.653843]]],[[[104.457345,30.663843],[104.447345,30.663843],[104.447345,30.653843],[104.437345,30.653843],[104.437345,30.6738430000001],[104.457345,30.6738430000001],[104.457345,30.663843]]],[[[104.357345,30.843843],[104.353922148438,30.8316506171875],[104.345152617188,30.8404201484376],[104.357345,30.843843]]],[[[104.367345,30.843843],[104.357345,30.843843],[104.362345,30.8566506171875],[104.367345,30.843843]]],[[[104.447345,30.653843],[104.457345,30.653843],[104.457345,30.663843],[104.47298953125,30.66819846875],[104.48170046875,30.67948753125],[104.493822050781,30.688843],[104.481529570313,30.6983303046876],[104.483140898438,30.7092336250001],[104.471549101563,30.728452375],[104.475301542969,30.753843],[104.471302519531,30.7809059882813],[104.452345,30.7781032539063],[104.442345,30.7795827460938],[104.431832304688,30.7780275703126],[104.422857695313,30.7896584296876],[104.377684355469,30.7829811835938],[104.367345,30.843843],[104.373531523438,30.8476564765625],[104.384456816406,30.8797145820313],[104.356300078125,30.8893117500001],[104.347345,30.9038430000001],[104.369691191406,30.9437599921875],[104.382345,30.9273659492188],[104.392689238281,30.940766828125],[104.458592558594,30.9505055976563],[104.487345,30.9438430000001],[104.525235625,30.9222096992188],[104.521790800781,30.8884133125],[104.607623320313,30.8575759101563],[104.69373171875,30.82022971875],[104.711922636719,30.7782912421876],[104.728192167969,30.7799489570313],[104.744151640625,30.743149640625],[104.782806425781,30.7193044257813],[104.791883574219,30.6983815742188],[104.804881621094,30.687583234375],[104.821922636719,30.6482912421875],[104.841685820313,30.6503054023438],[104.84310671875,30.6363649726563],[104.813114042969,30.5839968085938],[104.857345,30.5938430000001],[104.860885039063,30.5773830390625],[104.890797148438,30.5420412421875],[104.877345,30.5138430000001],[104.852386503906,30.5077126289063],[104.815697050781,30.5159377265625],[104.803260527344,30.4979274726563],[104.759598417969,30.4815895820313],[104.763624296875,30.4995510078125],[104.731429472656,30.5179274726563],[104.723260527344,30.5397585273438],[104.68709109375,30.5604030585937],[104.695557890625,30.5981716132813],[104.674525175781,30.6126955390625],[104.651898222656,30.607622296875],[104.633260527344,30.6197585273438],[104.601429472656,30.6279274726563],[104.572623320313,30.6400270820313],[104.532274199219,30.630981671875],[104.523260527344,30.6179274726563],[104.494569121094,30.5981179023438],[104.437069121094,30.5897585273438],[104.427345,30.603843],[104.427345,30.613843],[104.447345,30.613843],[104.447345,30.653843]]]]}},{"type":"Feature","properties":{"name":"锦江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.163216582031,30.5891823554688],[104.157345,30.563843],[104.131929960938,30.5700856757812],[104.111998320313,30.55710471875],[104.103260527344,30.5697585273438],[104.077345,30.573843],[104.083089628906,30.6088088203125],[104.081605253906,30.618843],[104.084486113281,30.6383303046875],[104.07170046875,30.6481984687501],[104.067345,30.653843],[104.067345,30.663843],[104.087345,30.663843],[104.09170046875,30.65819846875],[104.137345,30.623843],[104.163216582031,30.5891823554688]]]]}},{"type":"Feature","properties":{"name":"龙泉驿区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.437345,30.653843],[104.424647246094,30.6484084296876],[104.433292265625,30.630844953125],[104.447345,30.653843],[104.447345,30.613843],[104.427345,30.613843],[104.427345,30.603843],[104.411429472656,30.5997585273438],[104.400186796875,30.5834743476562],[104.403465605469,30.568843],[104.395250273438,30.5321950507813],[104.414586210938,30.5188430000001],[104.401429472656,30.5097585273438],[104.393260527344,30.4979274726563],[104.342557402344,30.4849147773438],[104.332615996094,30.51147971875],[104.321673613281,30.495630109375],[104.295545683594,30.5014870429688],[104.252349882813,30.483344953125],[104.247345,30.463843],[104.207398710938,30.4838747382813],[104.180657988281,30.5371071601562],[104.160704375,30.547202375],[104.157345,30.563843],[104.163216582031,30.5891823554688],[104.137345,30.623843],[104.153260527344,30.6279274726563],[104.161903105469,30.6721804023438],[104.223260527344,30.6879274726563],[104.227345,30.693843],[104.233531523438,30.6900295234376],[104.244737578125,30.6718459296876],[104.261158476563,30.7200295234375],[104.267345,30.723843],[104.272857695313,30.7167018867188],[104.308175078125,30.7219216132813],[104.380941191406,30.6921388984376],[104.392857695313,30.6767018867188],[104.419906035156,30.6806984687501],[104.437345,30.6738430000001],[104.437345,30.653843]]]]}},{"type":"Feature","properties":{"name":"彭州市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.81298953125,31.42948753125],[103.82490359375,31.4140480781251],[103.862345,31.4195827460938],[103.877345,31.4173659492188],[103.892916289063,31.4196657539063],[103.90170046875,31.39819846875],[103.924615507813,31.3602126289063],[103.887139921875,31.3138430000001],[103.92298953125,31.2694875312501],[103.93170046875,31.22819846875],[103.94298953125,31.21948753125],[103.951832304688,31.2080275703125],[103.968695097656,31.2105202460938],[104.014066191406,31.1754982734376],[104.011363554688,31.157192609375],[104.022850371094,31.10274925],[104.05298953125,31.0794875312501],[104.06170046875,31.0681984687501],[104.07298953125,31.05948753125],[104.089075957031,31.0386452460938],[104.117345,31.033843],[104.124969511719,31.0214675117188],[104.160572539063,30.9995314765625],[104.170816679688,30.9666481757813],[104.140472441406,30.9291847968751],[104.147345,30.913843],[104.079295683594,30.9183596015626],[104.043829375,30.9643068671875],[103.95298953125,30.92819846875],[103.917345,30.923843],[103.907345,30.923843],[103.907345,30.9338430000001],[103.897345,30.9338430000001],[103.852906523438,30.9411428046876],[103.832135039063,30.9380739570313],[103.787100859375,30.9512038398437],[103.777345,30.963843],[103.771219511719,30.9858425117188],[103.751549101563,31.0184523750001],[103.753140898438,31.029233625],[103.729268828125,31.0688088203125],[103.770584746094,31.0803151679688],[103.74170046875,31.12819846875],[103.732178984375,31.1623928046875],[103.706058378906,31.1825563789063],[103.677205839844,31.2199343085937],[103.71744265625,31.2742067695313],[103.695362578125,31.3499343085938],[103.677345,31.363843],[103.691439238281,31.3867189765625],[103.728389921875,31.39931175],[103.737345,31.413843],[103.770704375,31.430483625],[103.797345,31.4338430000001],[103.81298953125,31.42948753125]]]]}},{"type":"Feature","properties":{"name":"蒲江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.552906523438,30.3396852851562],[103.562916289063,30.3152321601562],[103.614813261719,30.3229030585938],[103.680765410156,30.304536359375],[103.68312625,30.28855003125],[103.677345,30.273843],[103.687345,30.2538430000001],[103.652386503906,30.236313703125],[103.643580351563,30.2057985664063],[103.631954375,30.2114748359375],[103.612735625,30.1962111640626],[103.597345,30.2037258125],[103.582345,30.19640159375],[103.571353789063,30.2017678046875],[103.563336210938,30.1859181953125],[103.552218046875,30.1913454414063],[103.533985625,30.1809596992188],[103.545272246094,30.1578493476563],[103.510704375,30.140483625],[103.507345,30.1338430000001],[103.482003203125,30.1170973945313],[103.473260527344,30.1297585273438],[103.433260527344,30.1309841132812],[103.463260527344,30.1197585273438],[103.463973417969,30.0897585273438],[103.422264433594,30.116919171875],[103.387345,30.0938430000001],[103.383531523438,30.1100295234375],[103.371158476563,30.1276564765625],[103.354764433594,30.1757595039063],[103.375714140625,30.222524640625],[103.345240507813,30.2413014960938],[103.322345,30.2341701484375],[103.313531523438,30.2600295234375],[103.307345,30.263843],[103.312323027344,30.2702907539063],[103.357164335938,30.3035378242188],[103.39298953125,30.31819846875],[103.413922148438,30.3308254218751],[103.442345,30.326626203125],[103.467345,30.3303200507813],[103.482379179688,30.3280983710938],[103.552906523438,30.3396852851562]]]]}},{"type":"Feature","properties":{"name":"青白江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.457345,30.663843],[104.457345,30.653843],[104.447345,30.653843],[104.447345,30.663843],[104.457345,30.663843]]],[[[104.367345,30.843843],[104.362345,30.8566506171875],[104.357345,30.843843],[104.345152617188,30.8404201484376],[104.353922148438,30.8316506171875],[104.357345,30.843843],[104.377684355469,30.7829811835938],[104.422857695313,30.7896584296876],[104.431832304688,30.7780275703126],[104.442345,30.7795827460938],[104.452345,30.7781032539063],[104.471302519531,30.7809059882813],[104.475301542969,30.753843],[104.471549101563,30.728452375],[104.483140898438,30.7092336250001],[104.481529570313,30.6983303046876],[104.493822050781,30.688843],[104.48170046875,30.67948753125],[104.47298953125,30.66819846875],[104.457345,30.663843],[104.457345,30.6738430000001],[104.437345,30.6738430000001],[104.419906035156,30.6806984687501],[104.392857695313,30.6767018867188],[104.380941191406,30.6921388984376],[104.308175078125,30.7219216132813],[104.272857695313,30.7167018867188],[104.267345,30.723843],[104.280301542969,30.733843],[104.260203886719,30.7493556953126],[104.263949003906,30.7747023750001],[104.226378203125,30.8253786445312],[104.243519316406,30.838608625],[104.231668730469,30.8582521796876],[104.161151152344,30.8682765937501],[104.177345,30.9038430000001],[104.187345,30.9038430000001],[104.187345,30.913843],[104.226236601563,30.9053591132813],[104.31982546875,30.8978395820313],[104.347345,30.9038430000001],[104.356300078125,30.8893117500001],[104.384456816406,30.8797145820313],[104.373531523438,30.8476564765625],[104.367345,30.843843]]]]}},{"type":"Feature","properties":{"name":"青羊区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.957345,30.723843],[103.976312285156,30.6963698554688],[104.004320097656,30.7026491523438],[104.001051054688,30.6880690742188],[104.023260527344,30.6797585273438],[104.042345,30.6673317695313],[104.061929960938,30.6800856757813],[104.087345,30.6738430000001],[104.087345,30.663843],[104.067345,30.663843],[104.067345,30.653843],[103.991790800781,30.6582888007813],[103.947345,30.663843],[103.927345,30.663843],[103.927345,30.6738430000001],[103.917345,30.6738430000001],[103.907345,30.6738430000001],[103.900531035156,30.6791042304688],[103.93170046875,30.71948753125],[103.947345,30.723843],[103.957345,30.723843]]]]}},{"type":"Feature","properties":{"name":"双流县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.917345,30.6738430000001],[103.917345,30.663843],[103.927345,30.663843],[103.947345,30.663843],[103.951158476563,30.6376564765625],[103.963912382813,30.5988747382813],[103.960787382813,30.5888430000001],[103.965091582031,30.5750270820313],[104.002345,30.5866310859375],[104.036160917969,30.5760964179688],[104.027672148438,30.548843],[104.073079863281,30.5333693671875],[104.077345,30.573843],[104.103260527344,30.5697585273438],[104.111998320313,30.55710471875],[104.131929960938,30.5700856757812],[104.157345,30.563843],[104.160704375,30.547202375],[104.180657988281,30.5371071601562],[104.207398710938,30.4838747382813],[104.247345,30.463843],[104.2682825,30.458012921875],[104.248631621094,30.4325563789063],[104.23170046875,30.41948753125],[104.218631621094,30.3875563789063],[104.20170046875,30.3594875312501],[104.187345,30.3238430000001],[104.182154570313,30.3190334296876],[104.158365507813,30.2821950507813],[104.133433867188,30.2293654609376],[104.042503691406,30.269048078125],[104.032345,30.2686452460938],[104.017345,30.2692385078126],[104.002193632813,30.2686379218751],[103.987345,30.273843],[103.971656523438,30.312798078125],[103.943065214844,30.3348635078125],[103.93298953125,30.3594875312501],[103.917345,30.3638430000001],[103.931698027344,30.4038430000001],[103.912034941406,30.4586428046875],[103.912642851563,30.468843],[103.9116809375,30.4849684882813],[103.882064238281,30.4985622382813],[103.871585722656,30.5102883125],[103.831585722656,30.5079030585938],[103.817345,30.523843],[103.810721464844,30.5386305976563],[103.820518828125,30.5700807929688],[103.801158476563,30.5976564765625],[103.797345,30.623843],[103.832081328125,30.6098805976563],[103.869505644531,30.6601930976563],[103.882345,30.6579811835938],[103.897486601563,30.6605886054688],[103.907345,30.6738430000001],[103.917345,30.6738430000001]]]]}},{"type":"Feature","properties":{"name":"温江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.927345,30.663843],[103.917345,30.663843],[103.917345,30.6738430000001],[103.927345,30.6738430000001],[103.927345,30.663843]]],[[[103.801607695313,30.7860329414063],[103.86705203125,30.747563703125],[103.895206328125,30.7510646796876],[103.94099734375,30.7317702460938],[103.947345,30.723843],[103.93170046875,30.71948753125],[103.900531035156,30.6791042304688],[103.907345,30.6738430000001],[103.897486601563,30.6605886054688],[103.882345,30.6579811835938],[103.869505644531,30.6601930976563],[103.832081328125,30.6098805976563],[103.797345,30.623843],[103.785513945313,30.6320119453125],[103.760943632813,30.6675954414063],[103.763565703125,30.6792897773438],[103.751429472656,30.6979274726563],[103.743260527344,30.7197585273438],[103.731429472656,30.7379274726563],[103.727345,30.753843],[103.721790800781,30.7682888007813],[103.712899199219,30.8093971992188],[103.683756132813,30.8852126289063],[103.717345,30.8638430000001],[103.721790800781,30.8482888007813],[103.752899199219,30.8293971992187],[103.761790800781,30.8182888007813],[103.782899199219,30.8093971992188],[103.801607695313,30.7860329414063]]]]}},{"type":"Feature","properties":{"name":"武侯区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.083089628906,30.6088088203125],[104.077345,30.573843],[104.073079863281,30.5333693671875],[104.027672148438,30.548843],[104.036160917969,30.5760964179688],[104.002345,30.5866310859375],[103.965091582031,30.5750270820313],[103.960787382813,30.5888430000001],[103.963912382813,30.5988747382813],[103.951158476563,30.6376564765625],[103.947345,30.663843],[103.991790800781,30.6582888007813],[104.067345,30.653843],[104.07170046875,30.6481984687501],[104.084486113281,30.6383303046875],[104.081605253906,30.618843],[104.083089628906,30.6088088203125]]]]}},{"type":"Feature","properties":{"name":"新都区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.177345,30.9038430000001],[104.177345,30.913843],[104.187345,30.913843],[104.187345,30.9038430000001],[104.177345,30.9038430000001]]],[[[103.907345,30.923843],[103.897345,30.923843],[103.897345,30.9338430000001],[103.907345,30.9338430000001],[103.907345,30.923843]]],[[[104.177345,30.9038430000001],[104.161151152344,30.8682765937501],[104.231668730469,30.8582521796876],[104.243519316406,30.838608625],[104.226378203125,30.8253786445312],[104.263949003906,30.7747023750001],[104.260203886719,30.7493556953126],[104.280301542969,30.733843],[104.267345,30.723843],[104.261158476563,30.7200295234375],[104.244737578125,30.6718459296876],[104.233531523438,30.6900295234376],[104.227345,30.693843],[104.219771757813,30.708813703125],[104.190704375,30.717202375],[104.172735625,30.7314748359376],[104.161353789063,30.7259181953125],[104.153985625,30.740483625],[104.140704375,30.747202375],[104.137345,30.753843],[104.132806425781,30.7593044257813],[104.121795683594,30.768452375],[104.123385039063,30.7840578437501],[104.058656035156,30.8083815742188],[104.065233183594,30.7676076484375],[104.091685820313,30.7703054023438],[104.093704863281,30.7505104804688],[104.06531375,30.7476174140625],[104.037345,30.753843],[104.033260527344,30.7597585273437],[104.019056425781,30.8175905585938],[103.977706328125,30.8330617500001],[103.939791289063,30.8624489570313],[103.948099394531,30.8995143867188],[103.921429472656,30.9179274726563],[103.917345,30.923843],[103.95298953125,30.92819846875],[104.043829375,30.9643068671875],[104.079295683594,30.9183596015626],[104.147345,30.913843],[104.163326445313,30.9217873359376],[104.170704375,30.907202375],[104.177345,30.9038430000001]]]]}},{"type":"Feature","properties":{"name":"新津县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.817345,30.523843],[103.831585722656,30.5079030585938],[103.871585722656,30.5102883125],[103.882064238281,30.4985622382813],[103.9116809375,30.4849684882813],[103.912642851563,30.468843],[103.912034941406,30.4586428046875],[103.931698027344,30.4038430000001],[103.917345,30.3638430000001],[103.912205839844,30.3406740546876],[103.884998808594,30.3304201484375],[103.869691191406,30.3572658515625],[103.827345,30.3413039375],[103.794564238281,30.3536598945313],[103.770975371094,30.3402126289063],[103.767345,30.3338430000001],[103.752623320313,30.3400270820313],[103.728011503906,30.3345095039062],[103.750985136719,30.369790265625],[103.714151640625,30.4173171210938],[103.707345,30.4438430000001],[103.730220976563,30.4579372382812],[103.743990507813,30.4983425117188],[103.767345,30.503843],[103.799732695313,30.5067263007813],[103.784957304688,30.5209596992188],[103.817345,30.523843]]]]}},{"type":"Feature","properties":{"name":"邛崃市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.127345,30.4438430000001],[103.130767851563,30.4316506171875],[103.139537382813,30.4404201484375],[103.133360625,30.4672829414063],[103.172713652344,30.4944533515626],[103.177345,30.523843],[103.20298953125,30.51948753125],[103.221954375,30.5080471015625],[103.232345,30.5095827460938],[103.260809355469,30.505376203125],[103.272857695313,30.5209841132813],[103.292916289063,30.5180202460938],[103.303482695313,30.5438381171875],[103.347345,30.5503200507813],[103.367345,30.5473659492188],[103.388421660156,30.5504787421876],[103.437913847656,30.5160622382813],[103.459075957031,30.4886452460938],[103.51298953125,30.47948753125],[103.55158328125,30.4294875312501],[103.623175078125,30.4382228828125],[103.62045046875,30.4566677070313],[103.646654082031,30.4724758125001],[103.707345,30.4438430000001],[103.714151640625,30.4173171210938],[103.750985136719,30.369790265625],[103.728011503906,30.3345095039062],[103.752623320313,30.3400270820313],[103.767345,30.3338430000001],[103.763985625,30.327202375],[103.729417753906,30.3098366523438],[103.739888945313,30.28839378125],[103.717345,30.2838430000001],[103.707345,30.2838430000001],[103.707345,30.273843],[103.677345,30.273843],[103.68312625,30.28855003125],[103.680765410156,30.304536359375],[103.614813261719,30.3229030585938],[103.562916289063,30.3152321601562],[103.552906523438,30.3396852851562],[103.482379179688,30.3280983710938],[103.467345,30.3303200507813],[103.442345,30.326626203125],[103.413922148438,30.3308254218751],[103.39298953125,30.31819846875],[103.357164335938,30.3035378242188],[103.312323027344,30.2702907539063],[103.307345,30.263843],[103.25625125,30.2574513984375],[103.222345,30.2151125312501],[103.202899199219,30.2393971992188],[103.1839465625,30.2545729804688],[103.155213652344,30.2186916328126],[103.127345,30.2138430000001],[103.087567167969,30.2206008125001],[103.07298953125,30.2394875312501],[103.067345,30.243843],[103.0608996875,30.2722194648438],[103.063587675781,30.2938430000001],[103.061441679688,30.3111086250001],[103.123924589844,30.3611428046876],[103.114879179688,30.4338600898438],[103.127345,30.4438430000001]]]]}},{"type":"Feature","properties":{"name":"郫县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.787100859375,30.9512038398437],[103.832135039063,30.9380739570313],[103.852906523438,30.9411428046876],[103.897345,30.9338430000001],[103.897345,30.923843],[103.907345,30.923843],[103.917345,30.923843],[103.921429472656,30.9179274726563],[103.948099394531,30.8995143867188],[103.939791289063,30.8624489570313],[103.977706328125,30.8330617500001],[104.019056425781,30.8175905585938],[104.033260527344,30.7597585273437],[104.037345,30.753843],[104.0341809375,30.73212425],[104.000716582031,30.7653542304688],[103.994801054688,30.7363869453125],[103.959888945313,30.7312990546876],[103.957345,30.723843],[103.947345,30.723843],[103.94099734375,30.7317702460938],[103.895206328125,30.7510646796876],[103.86705203125,30.747563703125],[103.801607695313,30.7860329414063],[103.782899199219,30.8093971992188],[103.761790800781,30.8182888007813],[103.752899199219,30.8293971992187],[103.721790800781,30.8482888007813],[103.717345,30.8638430000001],[103.753616972656,30.8881667304688],[103.751160917969,30.8991213203126],[103.763260527344,30.9279274726563],[103.771429472656,30.9597585273438],[103.777345,30.963843],[103.787100859375,30.9512038398437]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"大安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.747345,29.323843],[104.727345,29.323843],[104.721043730469,29.3494924140626],[104.733260527344,29.3579274726563],[104.737345,29.363843],[104.741541777344,29.3868337226562],[104.747345,29.3738430000001],[104.747345,29.323843]]],[[[105.087345,29.3038430000001],[105.083922148438,29.3160353828126],[105.075152617188,29.3072658515625],[105.083365507813,29.2869484687501],[105.052093535156,29.2772072578125],[105.017345,29.2938430000001],[105.001429472656,29.2979274726563],[104.993016386719,29.3101149726563],[104.981673613281,29.3075710273438],[104.96435671875,29.3326564765625],[104.926571074219,29.3241847968751],[104.911698027344,29.3639333320313],[104.884525175781,29.3826955390626],[104.830819121094,29.3706545234376],[104.833626738281,29.3581252265625],[104.807345,29.343843],[104.802345,29.3566506171876],[104.797345,29.343843],[104.797345,29.3338430000001],[104.787345,29.3338430000001],[104.781329375,29.3572829414063],[104.757345,29.3738430000001],[104.752625761719,29.3991237617188],[104.740638457031,29.4438796210938],[104.774859648438,29.4595876289063],[104.792345,29.4585451484375],[104.80259890625,29.4591555000001],[104.828924589844,29.4296901679688],[104.847345,29.473843],[104.863260527344,29.4697585273438],[104.919554472656,29.4325588203125],[104.933892851563,29.4533254218751],[104.954088164063,29.4240749335938],[104.992066679688,29.4400270820313],[105.002345,29.4377223945313],[105.024827910156,29.4427614570313],[105.021073027344,29.4595143867188],[105.033856230469,29.4683400703125],[105.027345,29.4838430000001],[105.047345,29.4838430000001],[105.047345,29.463843],[105.067345,29.463843],[105.061395292969,29.4487062812501],[105.08170046875,29.415044171875],[105.072784453125,29.4080397773438],[105.03298953125,29.413921125],[105.042386503906,29.3861794257812],[105.07170046875,29.3481984687501],[105.08298953125,29.33948753125],[105.09170046875,29.32819846875],[105.097345,29.323843],[105.097345,29.3038430000001],[105.087345,29.3038430000001]]]]}},{"type":"Feature","properties":{"name":"富顺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.697345,29.1138430000001],[104.693922148438,29.1016506171875],[104.685152617188,29.1104201484375],[104.697345,29.1138430000001]]],[[[104.917345,29.213843],[104.894346953125,29.217895734375],[104.911910429688,29.2265407539063],[104.917345,29.213843]]],[[[105.087345,29.3038430000001],[105.075152617188,29.3072658515625],[105.083922148438,29.3160353828126],[105.087345,29.3038430000001]]],[[[105.197345,29.2238430000001],[105.185152617188,29.2204201484375],[105.193922148438,29.2116506171875],[105.221893339844,29.2076198554687],[105.232667265625,29.2100368476563],[105.267345,29.193843],[105.261160917969,29.1791213203126],[105.266158476563,29.1568312812501],[105.241073027344,29.1395143867187],[105.245379667969,29.1203054023438],[105.183260527344,29.050591046875],[105.19380984375,29.0213259101563],[105.233592558594,29.0302443671875],[105.270369902344,29.0048513007813],[105.257345,28.973843],[105.233861113281,28.9593727851562],[105.257345,28.9538430000001],[105.257345,28.943843],[105.252965117188,28.9377321601563],[105.242345,28.9398317695312],[105.222965117188,28.936001203125],[105.207345,28.9577956367188],[105.188995390625,28.9321926093751],[105.177345,28.9238430000001],[105.177345,28.933843],[105.167345,28.933843],[105.154603300781,28.9570876289062],[105.147345,28.943843],[105.067345,28.943843],[105.016600371094,28.9730983710938],[105.00271609375,28.98921409375],[104.97197390625,29.00847190625],[104.96271609375,29.01921409375],[104.94197390625,29.02847190625],[104.9324621875,29.0600588203125],[104.902345,29.0576369453125],[104.881990996094,29.0592726875001],[104.87271609375,29.02847190625],[104.86197390625,29.01921409375],[104.85271609375,29.00847190625],[104.815809355469,28.9973586250001],[104.759288359375,29.0019020820313],[104.737345,28.9938430000001],[104.72406375,29.0005617500001],[104.713985625,29.020483625],[104.707345,29.023843],[104.711180449219,29.0656642890626],[104.7372278125,29.078843],[104.71406375,29.09056175],[104.703985625,29.110483625],[104.697345,29.1138430000001],[104.693985625,29.130483625],[104.679888945313,29.158843],[104.687345,29.173843],[104.703079863281,29.1695778632813],[104.72845828125,29.1538698554687],[104.807235136719,29.1674318671875],[104.821610136719,29.1481081367188],[104.836561308594,29.1369875312501],[104.872345,29.1431471992188],[104.928663359375,29.133452375],[104.941610136719,29.1764211250001],[104.917345,29.213843],[104.931297636719,29.2238430000001],[104.910369902344,29.238843],[104.923170195313,29.2480178046876],[104.931519804688,29.2596681953125],[104.953170195313,29.2680178046875],[104.961519804688,29.2796681953125],[104.977186308594,29.2880178046876],[104.991724882813,29.2677321601563],[105.011485625,29.2716384101563],[105.017345,29.2938430000001],[105.052093535156,29.2772072578125],[105.083365507813,29.2869484687501],[105.087345,29.3038430000001],[105.097345,29.3038430000001],[105.097345,29.323843],[105.116158476563,29.31085471875],[105.111073027344,29.2881716132812],[105.123260527344,29.2797585273438],[105.131429472656,29.2679274726562],[105.189881621094,29.2529274726563],[105.197345,29.2238430000001]]]]}},{"type":"Feature","properties":{"name":"贡井区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.547345,29.433843],[104.568621855469,29.4427785468751],[104.592345,29.4273317695313],[104.613292265625,29.44097190625],[104.643260527344,29.4297585273437],[104.663682890625,29.4001808906251],[104.693260527344,29.3797585273438],[104.701429472656,29.3679274726563],[104.737345,29.363843],[104.733260527344,29.3579274726563],[104.721043730469,29.3494924140626],[104.727345,29.323843],[104.72267703125,29.3170827460938],[104.691788359375,29.296968],[104.683118925781,29.3201369453125],[104.672345,29.3177223945312],[104.654500761719,29.3217214179688],[104.643260527344,29.2779274726563],[104.631073027344,29.2695143867188],[104.633616972656,29.2581716132813],[104.61490359375,29.2452516914063],[104.611160917969,29.2285646796876],[104.617345,29.213843],[104.595811796875,29.1826540351562],[104.542352324219,29.1473268867187],[104.523260527344,29.1597585273438],[104.497254667969,29.1694899726563],[104.483260527344,29.1897585273438],[104.471429472656,29.1979274726563],[104.459176054688,29.2156740546875],[104.441429472656,29.2279274726562],[104.437345,29.243843],[104.495897246094,29.2771315742188],[104.51197390625,29.25847190625],[104.524742460938,29.24921409375],[104.54412234375,29.2717116523438],[104.541942167969,29.2988430000001],[104.542769804688,29.3091213203125],[104.531676054688,29.3290016914063],[104.573187285156,29.3588088203126],[104.552977324219,29.3762209296875],[104.54271609375,29.39921409375],[104.522535429688,29.4166017890625],[104.517345,29.433843],[104.541317167969,29.4219264960938],[104.547345,29.433843]]],[[[104.547345,29.433843],[104.535152617188,29.4372658515626],[104.543922148438,29.4460353828125],[104.547345,29.433843]]]]}},{"type":"Feature","properties":{"name":"荣县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.247345,29.633843],[104.267345,29.633843],[104.273170195313,29.6296681953125],[104.281519804688,29.6180178046875],[104.303170195313,29.6096681953125],[104.311519804688,29.5980178046876],[104.328995390625,29.5854933906251],[104.344132109375,29.5643727851563],[104.371658964844,29.5841042304687],[104.387811308594,29.6259792304688],[104.438551054688,29.6051296210938],[104.480416289063,29.6134011054688],[104.491519804688,29.5580178046876],[104.504920683594,29.5484133125],[104.5262121875,29.5148757148438],[104.537689238281,29.4567995429688],[104.505279570313,29.4632033515625],[104.517345,29.433843],[104.522535429688,29.4166017890625],[104.54271609375,29.39921409375],[104.552977324219,29.3762209296875],[104.573187285156,29.3588088203126],[104.531676054688,29.3290016914063],[104.542769804688,29.3091213203125],[104.541942167969,29.2988430000001],[104.54412234375,29.2717116523438],[104.524742460938,29.24921409375],[104.51197390625,29.25847190625],[104.495897246094,29.2771315742188],[104.437345,29.243843],[104.422630644531,29.2377956367188],[104.3619153125,29.2499196601563],[104.342034941406,29.2372975898438],[104.332965117188,29.2499538398438],[104.295445585938,29.2425392890625],[104.283170195313,29.2596681953125],[104.243170195313,29.2611696601563],[104.267022734375,29.2236013007813],[104.232454863281,29.2096681953125],[104.19005984375,29.2420412421876],[104.177345,29.193843],[104.151883574219,29.1983815742188],[104.139410429688,29.2683669257812],[104.112916289063,29.2364723945313],[104.102806425781,29.2551540351563],[104.142894316406,29.288452375],[104.140953398438,29.3075002265625],[104.085426054688,29.3198122382813],[104.072806425781,29.3503249335937],[104.124075957031,29.3451003242187],[104.147345,29.353843],[104.150767851563,29.3416506171875],[104.159537382813,29.3504201484376],[104.147345,29.353843],[104.160914335938,29.3835036445313],[104.141500273438,29.3768361640625],[104.125711699219,29.4034645820313],[104.097095976563,29.3828664375],[104.083624296875,29.415708234375],[104.097345,29.423843],[104.100767851563,29.4116506171875],[104.109537382813,29.4204201484375],[104.097345,29.423843],[104.093685332031,29.4419655585937],[104.061116972656,29.42577659375],[104.053985625,29.450483625],[104.047345,29.4538430000001],[104.059581328125,29.4761647773438],[104.082879667969,29.4665627265626],[104.122310820313,29.501567609375],[104.152879667969,29.4756960273438],[104.16490359375,29.4976345039063],[104.156073027344,29.5190578437501],[104.139198027344,29.5283083320313],[104.1650403125,29.558843],[104.139198027344,29.5893776679688],[104.166722441406,29.6044655585938],[104.184671660156,29.6372096992188],[104.215443144531,29.6139382148438],[104.24255984375,29.6251149726563],[104.247345,29.633843]]],[[[104.247345,29.633843],[104.234537382813,29.6388430000001],[104.247345,29.6438430000001],[104.247345,29.633843]]]]}},{"type":"Feature","properties":{"name":"沿滩区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.917345,29.213843],[104.911910429688,29.2265407539063],[104.894346953125,29.217895734375],[104.941610136719,29.1764211250001],[104.928663359375,29.133452375],[104.872345,29.1431471992188],[104.836561308594,29.1369875312501],[104.821610136719,29.1481081367188],[104.807235136719,29.1674318671875],[104.72845828125,29.1538698554687],[104.703079863281,29.1695778632813],[104.687345,29.173843],[104.687345,29.203843],[104.69978640625,29.2199611640626],[104.712916289063,29.2180202460938],[104.725264921875,29.2481911445313],[104.74170046875,29.26948753125],[104.784066191406,29.3021877265625],[104.780203886719,29.3283303046876],[104.787345,29.3338430000001],[104.797345,29.3338430000001],[104.797345,29.343843],[104.807345,29.343843],[104.833626738281,29.3581252265625],[104.830819121094,29.3706545234376],[104.884525175781,29.3826955390626],[104.911698027344,29.3639333320313],[104.926571074219,29.3241847968751],[104.96435671875,29.3326564765625],[104.981673613281,29.3075710273438],[104.993016386719,29.3101149726563],[105.001429472656,29.2979274726563],[105.017345,29.2938430000001],[105.011485625,29.2716384101563],[104.991724882813,29.2677321601563],[104.977186308594,29.2880178046876],[104.961519804688,29.2796681953125],[104.953170195313,29.2680178046875],[104.931519804688,29.2596681953125],[104.923170195313,29.2480178046876],[104.910369902344,29.238843],[104.931297636719,29.2238430000001],[104.917345,29.213843]]]]}},{"type":"Feature","properties":{"name":"自流井区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.807345,29.343843],[104.797345,29.343843],[104.802345,29.3566506171876],[104.807345,29.343843]]],[[[104.784066191406,29.3021877265625],[104.74170046875,29.26948753125],[104.725264921875,29.2481911445313],[104.712916289063,29.2180202460938],[104.69978640625,29.2199611640626],[104.687345,29.203843],[104.641429472656,29.2079274726563],[104.617345,29.213843],[104.611160917969,29.2285646796876],[104.61490359375,29.2452516914063],[104.633616972656,29.2581716132813],[104.631073027344,29.2695143867188],[104.643260527344,29.2779274726563],[104.654500761719,29.3217214179688],[104.672345,29.3177223945312],[104.683118925781,29.3201369453125],[104.691788359375,29.296968],[104.72267703125,29.3170827460938],[104.727345,29.323843],[104.747345,29.323843],[104.747345,29.3738430000001],[104.757345,29.3738430000001],[104.781329375,29.3572829414063],[104.787345,29.3338430000001],[104.780203886719,29.3283303046876],[104.784066191406,29.3021877265625]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"西区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.477345,26.573843],[101.472972441406,26.5411623359375],[101.453804960938,26.5332619453125],[101.468697539063,26.5691042304688],[101.477345,26.573843]]],[[[101.477345,26.573843],[101.472874785156,26.5959865546875],[101.457345,26.603843],[101.467257109375,26.6237844062501],[101.459893828125,26.6388600898438],[101.477345,26.6738430000001],[101.500279570313,26.6682814765625],[101.533441191406,26.6499391914063],[101.542471953125,26.6358327460938],[101.597345,26.6204128242188],[101.63334109375,26.6305275703126],[101.663441191406,26.6199391914063],[101.667345,26.603843],[101.657345,26.583843],[101.626656523438,26.5717800117188],[101.612857695313,26.5896584296875],[101.597047148438,26.5873220039063],[101.522379179688,26.5995876289063],[101.507838164063,26.5974391914063],[101.49298953125,26.57819846875],[101.477345,26.573843]]]]}},{"type":"Feature","properties":{"name":"盐边县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.257345,26.953843],[101.269537382813,26.9572658515626],[101.260767851563,26.9660353828125],[101.23170046875,26.95819846875],[101.22298953125,26.98948753125],[101.138043242188,27.0237013984376],[101.154007597656,27.0925954414063],[101.149998808594,27.1197194648438],[101.167345,27.1638430000001],[101.191429472656,27.1797585273437],[101.243260527344,27.1879274726563],[101.282198515625,27.1999977851563],[101.297345,27.1966017890625],[101.312791777344,27.2000637031251],[101.331429472656,27.1879274726563],[101.375091582031,27.1715895820313],[101.395963164063,27.1413625312501],[101.418255644531,27.1755959296875],[101.423465605469,27.1988430000001],[101.418350859375,27.2216652656251],[101.469027128906,27.2429494453126],[101.512074003906,27.2332985664063],[101.522393828125,27.273520734375],[101.549176054688,27.2920119453125],[101.580440703125,27.3372951484375],[101.627652617188,27.3478786445313],[101.641429472656,27.3279274726563],[101.661429472656,27.3141188789063],[101.653260527344,27.2679274726563],[101.640902128906,27.2489479804688],[101.654105253906,27.1975026679688],[101.694947539063,27.1383473945313],[101.742345,27.1277223945313],[101.758294707031,27.1312990546875],[101.803260527344,27.1197585273438],[101.807345,27.103843],[101.803199492188,27.0572365546875],[101.749176054688,26.9770119453125],[101.701065703125,26.9495510078125],[101.705706816406,26.928843],[101.701087675781,26.9082302070313],[101.711851835938,26.86628440625],[101.731429472656,26.8379274726563],[101.786976347656,26.8236721015625],[101.813260527344,26.7897585273438],[101.821429472656,26.7679274726563],[101.833260527344,26.7597585273437],[101.854273710938,26.7293239570313],[101.903260527344,26.7197585273438],[101.911429472656,26.7079274726563],[101.927345,26.7038430000001],[101.908949003906,26.675200421875],[101.926698027344,26.6300490546876],[101.945472441406,26.6543727851563],[101.937345,26.7038430000001],[101.947345,26.7038430000001],[101.947345,26.7138430000001],[101.963985625,26.717202375],[101.972635527344,26.7471730781251],[101.980704375,26.707202375],[101.997345,26.7038430000001],[101.986910429688,26.640317609375],[102.01170046875,26.6081984687501],[102.038741484375,26.5971315742188],[102.030203886719,26.5393556953125],[102.05170046875,26.5227614570313],[102.04298953125,26.4881984687501],[102.031549101563,26.4692336250001],[102.035262480469,26.4440993476563],[102.019879179688,26.4241701484375],[101.996058378906,26.4425563789063],[101.981344023438,26.4616188789063],[101.932271757813,26.4415334296875],[101.927345,26.423843],[101.90170046875,26.42819846875],[101.89298953125,26.43948753125],[101.86845828125,26.4584206367188],[101.849249296875,26.5714992500001],[101.807345,26.603843],[101.80060671875,26.6084963203125],[101.824339628906,26.6449416328125],[101.820560332031,26.6618044257813],[101.802066679688,26.6576589179688],[101.787345,26.6638430000001],[101.79287234375,26.6886721015626],[101.791317167969,26.7039308906251],[101.756419707031,26.7329177070313],[101.737345,26.7558815742188],[101.722806425781,26.7383815742188],[101.711883574219,26.7293044257812],[101.698804960938,26.6991530585938],[101.675819121094,26.6693044257813],[101.658270292969,26.7097682929688],[101.611883574219,26.7383815742188],[101.567154570313,26.7737795234375],[101.522806425781,26.7483815742188],[101.497345,26.7438430000001],[101.491693144531,26.7487136054688],[101.503023710938,26.7690212226563],[101.469783964844,26.7898415351563],[101.450382109375,26.7882839179688],[101.454464140625,26.7374684882813],[101.422669707031,26.7400221992188],[101.41271609375,26.7284719062501],[101.396102324219,26.7192140937501],[101.38271609375,26.74921409375],[101.368980742188,26.7738356757813],[101.395401640625,26.845786359375],[101.357105742188,26.8946877265626],[101.267345,26.9038430000001],[101.260704375,26.9172023750001],[101.257345,26.953843]]]]}},{"type":"Feature","properties":{"name":"东区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.742506132813,26.6644118476563],[101.772623320313,26.6576589179688],[101.787345,26.6638430000001],[101.802066679688,26.6576589179688],[101.820560332031,26.6618044257813],[101.824339628906,26.6449416328125],[101.80060671875,26.6084963203125],[101.807345,26.603843],[101.801429472656,26.5897585273438],[101.792508574219,26.5222414375],[101.77181765625,26.517602765625],[101.732457304688,26.5504274726563],[101.711785917969,26.536968],[101.675513945313,26.5620119453125],[101.663260527344,26.5797585273438],[101.657345,26.583843],[101.667345,26.603843],[101.673260527344,26.6079274726563],[101.699906035156,26.64651878125],[101.742506132813,26.6644118476563]]]]}},{"type":"Feature","properties":{"name":"米易县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.207345,26.8238430000001],[102.219537382813,26.8204201484375],[102.210767851563,26.8116506171875],[102.207345,26.8238430000001]]],[[[102.207345,26.8238430000001],[102.166256132813,26.8124025703126],[102.184486113281,26.7983303046875],[102.180867949219,26.773843],[102.184561796875,26.7488430000001],[102.178511992188,26.7078981757813],[102.131226835938,26.67140159375],[102.134176054688,26.6514479804688],[102.126143828125,26.62948753125],[102.09298953125,26.64948753125],[102.064605742188,26.6611037421875],[102.05298953125,26.7294875312501],[102.045267363281,26.74819846875],[102.032345,26.716626203125],[102.001253691406,26.7212209296875],[102.003160429688,26.7083303046875],[101.997345,26.7038430000001],[101.980704375,26.707202375],[101.972635527344,26.7471730781251],[101.963985625,26.717202375],[101.947345,26.7138430000001],[101.937345,26.7138430000001],[101.937345,26.7038430000001],[101.927345,26.7038430000001],[101.911429472656,26.7079274726563],[101.903260527344,26.7197585273438],[101.854273710938,26.7293239570313],[101.833260527344,26.7597585273437],[101.821429472656,26.7679274726563],[101.813260527344,26.7897585273438],[101.786976347656,26.8236721015625],[101.731429472656,26.8379274726563],[101.711851835938,26.86628440625],[101.701087675781,26.9082302070313],[101.705706816406,26.928843],[101.701065703125,26.9495510078125],[101.749176054688,26.9770119453125],[101.803199492188,27.0572365546875],[101.807345,27.103843],[101.840208769531,27.1255593085938],[101.879845,27.1403908515625],[101.869888945313,27.1847927070313],[101.888631621094,27.257827375],[101.897345,27.263843],[101.90634890625,27.2409377265625],[101.901541777344,27.2084133125001],[101.935181914063,27.1630397773438],[101.929427519531,27.1240993476562],[101.942000761719,27.1078102851562],[101.988033476563,27.1259059882813],[102.03158328125,27.06948753125],[102.07298953125,27.11819846875],[102.093482695313,27.1524660468751],[102.133924589844,27.176860578125],[102.162542753906,27.18108909375],[102.173558378906,27.1415309882813],[102.20298953125,27.12948753125],[102.21170046875,27.11819846875],[102.237345,27.103843],[102.244779082031,27.0987111640625],[102.233260527344,27.0679274726563],[102.217789335938,27.0441677070313],[102.225706816406,27.0088430000001],[102.217862578125,26.9738430000001],[102.227498808594,26.9308547187501],[102.207191191406,26.91683128125],[102.213499785156,26.8886965156251],[102.201178007813,26.8489479804688],[102.207345,26.8238430000001]],[[102.157345,26.8538430000001],[102.153922148438,26.8660353828125],[102.145152617188,26.8572658515625],[102.157345,26.8538430000001]]]]}},{"type":"Feature","properties":{"name":"仁和区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.647345,26.313843],[101.650767851563,26.3016506171875],[101.659537382813,26.3104201484376],[101.64146609375,26.32913596875],[101.66107546875,26.34483909375],[101.630535917969,26.3692971015625],[101.634168730469,26.3985036445313],[101.58267703125,26.4346974921876],[101.562899199219,26.4593971992188],[101.531790800781,26.4782888007813],[101.502899199219,26.4993971992188],[101.457345,26.503843],[101.442374296875,26.5114162421875],[101.433580351563,26.5418874335938],[101.421353789063,26.5359181953125],[101.413336210938,26.5517678046875],[101.400897246094,26.5456935859376],[101.393985625,26.6000856757813],[101.457345,26.603843],[101.472874785156,26.5959865546875],[101.477345,26.573843],[101.468697539063,26.5691042304688],[101.453804960938,26.5332619453125],[101.472972441406,26.5411623359375],[101.477345,26.573843],[101.49298953125,26.57819846875],[101.507838164063,26.5974391914063],[101.522379179688,26.5995876289063],[101.597047148438,26.5873220039063],[101.612857695313,26.5896584296875],[101.626656523438,26.5717800117188],[101.657345,26.583843],[101.663260527344,26.5797585273438],[101.675513945313,26.5620119453125],[101.711785917969,26.536968],[101.732457304688,26.5504274726563],[101.77181765625,26.517602765625],[101.792508574219,26.5222414375],[101.801429472656,26.5897585273438],[101.807345,26.603843],[101.849249296875,26.5714992500001],[101.86845828125,26.4584206367188],[101.89298953125,26.43948753125],[101.90170046875,26.42819846875],[101.927345,26.423843],[101.935811796875,26.4173073554688],[101.928651152344,26.3688430000001],[101.93420046875,26.3312819648437],[101.92170046875,26.29948753125],[101.91298953125,26.2681984687501],[101.899173613281,26.245298078125],[101.905955839844,26.1994142890626],[101.843844023438,26.1739919257813],[101.841605253906,26.158843],[101.84312625,26.1485500312501],[101.831551542969,26.119106671875],[101.837345,26.083843],[101.82197390625,26.08847190625],[101.799215117188,26.114887921875],[101.802877226563,26.1604616523438],[101.735736113281,26.218305890625],[101.70197390625,26.2284719062501],[101.691016875,26.24118675],[101.629635039063,26.227798078125],[101.591324492188,26.2811525703125],[101.592955351563,26.3014455390625],[101.615426054688,26.3208058906251],[101.647345,26.313843]]],[[[101.658270292969,26.7097682929688],[101.675819121094,26.6693044257813],[101.698804960938,26.6991530585938],[101.711883574219,26.7293044257812],[101.722806425781,26.7383815742188],[101.737345,26.7558815742188],[101.756419707031,26.7329177070313],[101.791317167969,26.7039308906251],[101.79287234375,26.6886721015626],[101.787345,26.6638430000001],[101.772623320313,26.6576589179688],[101.742506132813,26.6644118476563],[101.699906035156,26.64651878125],[101.673260527344,26.6079274726563],[101.667345,26.603843],[101.663441191406,26.6199391914063],[101.63334109375,26.6305275703126],[101.597345,26.6204128242188],[101.542471953125,26.6358327460938],[101.533441191406,26.6499391914063],[101.500279570313,26.6682814765625],[101.477345,26.6738430000001],[101.468631621094,26.6851296210938],[101.446434355469,26.7022658515625],[101.49298953125,26.73819846875],[101.497345,26.7438430000001],[101.522806425781,26.7483815742188],[101.567154570313,26.7737795234375],[101.611883574219,26.7383815742188],[101.658270292969,26.7097682929688]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"龙马潭区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.517345,29.0338430000001],[105.520767851563,29.0460353828126],[105.529537382813,29.0372658515625],[105.517345,29.0338430000001]]],[[[105.517345,29.0338430000001],[105.509671660156,29.017759015625],[105.540164824219,29.0083376289063],[105.554908476563,28.9888430000001],[105.533978300781,28.9611696601562],[105.547345,28.9538430000001],[105.55197390625,28.9384719062501],[105.565284453125,28.90222190625],[105.5068371875,28.8696120429688],[105.468643828125,28.9139430976563],[105.419840117188,28.879341046875],[105.40271609375,28.8992140937501],[105.371485625,28.913149640625],[105.372772246094,28.9291677070313],[105.36197390625,28.9384719062501],[105.347345,28.9554494453126],[105.33271609375,28.9384719062501],[105.327345,28.933843],[105.331158476563,28.9900295234375],[105.343968535156,29.0186305976563],[105.336634550781,29.0421804023438],[105.35287234375,29.0371218085938],[105.387371855469,29.0650637031251],[105.417345,29.055727765625],[105.452003203125,29.0665236640625],[105.462913847656,29.020200421875],[105.4959778125,29.0434157539062],[105.517345,29.0338430000001]]]]}},{"type":"Feature","properties":{"name":"古蔺县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.820455351563,28.3037233710938],[105.84170046875,28.26819846875],[105.847345,28.263843],[105.852154570313,28.2586525703125],[105.886629667969,28.2363893867188],[105.862630644531,28.1910353828125],[105.861060820313,28.1514186835938],[105.884698515625,28.1259059882813],[105.922193632813,28.1390480781251],[105.932345,28.1386452460938],[105.962161894531,28.1398268867188],[105.972345,28.118247296875],[106.002345,28.119438703125],[106.022523222656,28.118637921875],[106.049271269531,28.1475075507813],[106.109222441406,28.168520734375],[106.130094023438,28.1693483710938],[106.207345,28.133843],[106.211790800781,28.1282888007813],[106.222928496094,28.1193703437501],[106.263272734375,28.0689284492188],[106.232899199219,28.0172536445313],[106.264969511719,28.0073049140625],[106.290406523438,28.0104665351563],[106.323236113281,27.9588649726563],[106.303841582031,27.9258693671875],[106.30166140625,27.9083449531251],[106.32951296875,27.8966091132813],[106.333011503906,27.8684841132813],[106.317352324219,27.8418434882813],[106.338538847656,27.8248805976563],[106.291239042969,27.8049489570313],[106.216951933594,27.7612819648438],[106.192110625,27.7581911445313],[106.0938684375,27.7882888007812],[106.061790800781,27.7793971992187],[106.046224394531,27.75995628125],[105.997345,27.753843],[105.970704375,27.7504836250001],[105.943985625,27.737202375],[105.927345,27.7338430000001],[105.913880644531,27.7512868476563],[105.873975859375,27.7453908515625],[105.846712675781,27.7100685859376],[105.767345,27.7217995429688],[105.724127226563,27.7154128242188],[105.71298953125,27.68819846875],[105.667345,27.683843],[105.661925078125,27.6986037421876],[105.662747832031,27.708843],[105.661942167969,27.718843],[105.663414335938,27.73714378125],[105.699193144531,27.7876052070313],[105.677174101563,27.8270729804688],[105.704517851563,27.8392751289063],[105.6865246875,27.938520734375],[105.605306425781,27.9533351875],[105.569449492188,28.0478224921876],[105.572747832031,28.088843],[105.571485625,28.1045363593751],[105.613204375,28.1231496406251],[105.611920195313,28.1391213203125],[105.62271609375,28.15847190625],[105.634188261719,28.1965749335938],[105.614940214844,28.2310768867188],[105.672904082031,28.2485280585938],[105.66197390625,28.2884719062501],[105.657345,28.3138430000001],[105.700999785156,28.2812575507813],[105.732542753906,28.27659690625],[105.74170046875,28.30948753125],[105.76298953125,28.3181984687501],[105.781204863281,28.3417995429688],[105.796058378906,28.3225563789063],[105.820455351563,28.3037233710938]],[[105.705152617188,27.8872658515625],[105.717345,27.8838430000001],[105.713922148438,27.8960353828125],[105.705152617188,27.8872658515625]]]]}},{"type":"Feature","properties":{"name":"合江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.657345,28.823843],[105.647345,28.823843],[105.652345,28.8366506171875],[105.657345,28.823843]]],[[[105.647345,28.823843],[105.652345,28.8110353828125],[105.657345,28.823843],[105.665557890625,28.8295143867188],[105.660560332031,28.8518044257813],[105.641673613281,28.8475710273438],[105.620384550781,28.8784084296875],[105.643260527344,28.9079274726563],[105.647345,28.9238430000001],[105.691422148438,28.9130153632813],[105.701429472656,28.9397585273438],[105.721698027344,28.9537526679688],[105.739598417969,29.0015895820313],[105.757345,29.013843],[105.762393828125,28.994165265625],[105.809071074219,28.961938703125],[105.789151640625,28.9481862617188],[105.827345,28.943843],[105.842064238281,28.9385622382813],[105.882625761719,28.9291237617188],[105.901812773438,28.9076515937501],[105.934344511719,28.9440627265625],[105.962064238281,28.9591237617188],[105.982659941406,28.9685768867188],[105.981468535156,28.9885622382813],[105.996986113281,28.9754372382813],[106.012064238281,28.9585622382813],[106.042659941406,28.9491139960938],[106.042047148438,28.938843],[106.042642851563,28.928843],[106.0419934375,28.9179274726563],[106.062545195313,28.9191530585938],[106.117345,28.8994899726563],[106.178236113281,28.9213381171875],[106.222625761719,28.8891237617188],[106.232064238281,28.8785622382813],[106.260538359375,28.85312034375],[106.239881621094,28.8151076484376],[106.252064238281,28.7885622382812],[106.262625761719,28.7791237617188],[106.272064238281,28.7485622382813],[106.296861601563,28.71306175],[106.312655058594,28.6690431953125],[106.31146609375,28.6490969062501],[106.3226575,28.6390969062501],[106.321495390625,28.61960471875],[106.334268828125,28.5961037421875],[106.331790800781,28.5545436835937],[106.367345,28.5338430000001],[106.373104277344,28.5089846015625],[106.371605253906,28.4988430000001],[106.373980742188,28.4827785468751],[106.340955839844,28.4778981757812],[106.30170046875,28.5081984687501],[106.287899199219,28.5419240546875],[106.267345,28.5338430000001],[106.26298953125,28.53948753125],[106.224761992188,28.5689919257813],[106.187606230469,28.5793386054688],[106.160633574219,28.6452394843751],[106.100633574219,28.6363747382813],[106.079454375,28.6881227851563],[106.03170046875,28.6981984687501],[106.0181653125,28.7312697578125],[105.968426542969,28.75819846875],[105.950667753906,28.7351930976563],[105.953160429688,28.7183303046876],[105.931226835938,28.7014015937501],[105.933167753906,28.6882717109375],[105.889876738281,28.6705544257813],[105.893084746094,28.6488430000001],[105.890867949219,28.633843],[105.893084746094,28.6188430000001],[105.890660429688,28.6024416328125],[105.842345,28.6095827460938],[105.827345,28.6073659492187],[105.812345,28.6095827460938],[105.797345,28.6073659492187],[105.781954375,28.6096388984375],[105.760553007813,28.5967311835938],[105.74252078125,28.620093],[105.71298953125,28.59819846875],[105.69170046875,28.58948753125],[105.666961699219,28.5290383125],[105.621517363281,28.51944846875],[105.62312625,28.5085500312501],[105.61156375,28.47913596875],[105.613160429688,28.4683303046875],[105.607345,28.4638430000001],[105.570704375,28.467202375],[105.557266875,28.493764875],[105.530704375,28.507202375],[105.527345,28.513843],[105.535513945313,28.5456740546876],[105.571375761719,28.570434796875],[105.551160917969,28.6185646796876],[105.554586210938,28.633843],[105.549383574219,28.6570583320313],[105.562345,28.6599636054688],[105.581429472656,28.6556862617188],[105.573260527344,28.6697585273438],[105.553319121094,28.6835280585938],[105.575513945313,28.7156740546875],[105.593260527344,28.7279274726563],[105.601429472656,28.7397585273438],[105.607345,28.743843],[105.617345,28.743843],[105.630152617188,28.748843],[105.617345,28.753843],[105.629261503906,28.7778151679688],[105.6074621875,28.788843],[105.63062625,28.80056175],[105.640704375,28.8204836250001],[105.647345,28.823843]]]]}},{"type":"Feature","properties":{"name":"江阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.647345,28.823843],[105.657345,28.823843],[105.652345,28.8110353828125],[105.647345,28.823843]]],[[[105.177345,28.9238430000001],[105.167345,28.9238430000001],[105.167345,28.933843],[105.177345,28.933843],[105.177345,28.9238430000001]]],[[[105.167345,28.933843],[105.147345,28.933843],[105.147345,28.943843],[105.154603300781,28.9570876289062],[105.167345,28.933843]]],[[[105.287345,28.933843],[105.275152617188,28.9304201484376],[105.283922148438,28.9216506171875],[105.318577910156,28.9201467109375],[105.327345,28.933843],[105.33271609375,28.9384719062501],[105.347345,28.9554494453126],[105.36197390625,28.9384719062501],[105.372772246094,28.9291677070313],[105.371485625,28.913149640625],[105.40271609375,28.8992140937501],[105.419840117188,28.879341046875],[105.468643828125,28.9139430976563],[105.5068371875,28.8696120429688],[105.565284453125,28.90222190625],[105.55197390625,28.9384719062501],[105.547345,28.9538430000001],[105.575819121094,28.9671462226563],[105.620975371094,28.9274733710938],[105.647345,28.9238430000001],[105.643260527344,28.9079274726563],[105.620384550781,28.8784084296875],[105.641673613281,28.8475710273438],[105.660560332031,28.8518044257813],[105.665557890625,28.8295143867188],[105.657345,28.823843],[105.652345,28.8366506171875],[105.647345,28.823843],[105.640704375,28.8204836250001],[105.63062625,28.80056175],[105.6074621875,28.788843],[105.629261503906,28.7778151679688],[105.617345,28.753843],[105.617345,28.743843],[105.607345,28.743843],[105.602625761719,28.7691237617188],[105.592064238281,28.7785622382813],[105.58259890625,28.7891555],[105.567345,28.788247296875],[105.53593875,28.7901198554687],[105.522611113281,28.8191579414063],[105.512345,28.8185451484375],[105.502120390625,28.8191555],[105.48150515625,28.8079518867188],[105.483065214844,28.7817604804688],[105.417867460938,28.8220656562501],[105.394564238281,28.8481471992188],[105.360582304688,28.774106671875],[105.308363066406,28.7579811835938],[105.264449492188,28.7341188789063],[105.222625761719,28.7491237617188],[105.207345,28.753843],[105.21170046875,28.7594875312501],[105.235440703125,28.7778102851563],[105.21170046875,28.83819846875],[105.195084257813,28.8978688789063],[105.18170046875,28.90819846875],[105.177345,28.9238430000001],[105.188995390625,28.9321926093751],[105.207345,28.9577956367188],[105.222965117188,28.936001203125],[105.242345,28.9398317695312],[105.252965117188,28.9377321601563],[105.257345,28.943843],[105.270152617188,28.948843],[105.257345,28.9538430000001],[105.257345,28.973843],[105.278470488281,28.9684206367188],[105.287345,28.933843]]]]}},{"type":"Feature","properties":{"name":"纳溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.630152617188,28.748843],[105.617345,28.743843],[105.617345,28.753843],[105.630152617188,28.748843]]],[[[105.417867460938,28.8220656562501],[105.483065214844,28.7817604804688],[105.48150515625,28.8079518867188],[105.502120390625,28.8191555],[105.512345,28.8185451484375],[105.522611113281,28.8191579414063],[105.53593875,28.7901198554687],[105.567345,28.788247296875],[105.58259890625,28.7891555],[105.592064238281,28.7785622382813],[105.602625761719,28.7691237617188],[105.607345,28.743843],[105.601429472656,28.7397585273438],[105.593260527344,28.7279274726563],[105.575513945313,28.7156740546875],[105.553319121094,28.6835280585938],[105.573260527344,28.6697585273438],[105.581429472656,28.6556862617188],[105.562345,28.6599636054688],[105.549383574219,28.6570583320313],[105.554586210938,28.633843],[105.551160917969,28.6185646796876],[105.571375761719,28.570434796875],[105.535513945313,28.5456740546876],[105.527345,28.513843],[105.47197390625,28.50921409375],[105.46271609375,28.4784719062501],[105.450565214844,28.45921409375],[105.43271609375,28.49921409375],[105.409947539063,28.5184719062501],[105.385308867188,28.4898732734375],[105.332215605469,28.5194948554688],[105.318089628906,28.5030983710938],[105.288861113281,28.4779177070313],[105.255401640625,28.4806056953125],[105.247345,28.453843],[105.187345,28.453843],[105.19170046875,28.45948753125],[105.228511992188,28.4878981757813],[105.235384550781,28.5344142890625],[105.201522246094,28.5482717109375],[105.203949003906,28.5647023750001],[105.16298953125,28.6199513984375],[105.17170046875,28.65948753125],[105.208511992188,28.6878981757813],[105.215811796875,28.7373073554688],[105.200867949219,28.748843],[105.207345,28.753843],[105.222625761719,28.7491237617188],[105.264449492188,28.7341188789063],[105.308363066406,28.7579811835938],[105.360582304688,28.774106671875],[105.394564238281,28.8481471992188],[105.417867460938,28.8220656562501]]]]}},{"type":"Feature","properties":{"name":"叙永县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.713922148438,27.8960353828125],[105.717345,27.8838430000001],[105.705152617188,27.8872658515625],[105.713922148438,27.8960353828125]]],[[[105.332215605469,28.5194948554688],[105.385308867188,28.4898732734375],[105.409947539063,28.5184719062501],[105.43271609375,28.49921409375],[105.450565214844,28.45921409375],[105.46271609375,28.4784719062501],[105.47197390625,28.50921409375],[105.527345,28.513843],[105.530704375,28.507202375],[105.557266875,28.493764875],[105.570704375,28.467202375],[105.607345,28.4638430000001],[105.612845488281,28.4404885078125],[105.649832792969,28.4278835273438],[105.640721464844,28.3986305976563],[105.653983183594,28.3690261054688],[105.637379179688,28.3185451484375],[105.657345,28.3138430000001],[105.66197390625,28.2884719062501],[105.672904082031,28.2485280585938],[105.614940214844,28.2310768867188],[105.634188261719,28.1965749335938],[105.62271609375,28.15847190625],[105.611920195313,28.1391213203125],[105.613204375,28.1231496406251],[105.571485625,28.1045363593751],[105.572747832031,28.088843],[105.569449492188,28.0478224921876],[105.605306425781,27.9533351875],[105.6865246875,27.938520734375],[105.704517851563,27.8392751289063],[105.677174101563,27.8270729804688],[105.699193144531,27.7876052070313],[105.663414335938,27.73714378125],[105.661942167969,27.718843],[105.662747832031,27.708843],[105.661925078125,27.6986037421876],[105.667345,27.683843],[105.651790800781,27.6793971992188],[105.642899199219,27.6682888007813],[105.625538359375,27.6593971992188],[105.612899199219,27.6893971992188],[105.595609160156,27.7188088203125],[105.545426054688,27.7296681953125],[105.529715605469,27.7669484687501],[105.439561796875,27.7800710273438],[105.382628203125,27.7581862617187],[105.369517851563,27.7598171210938],[105.325369902344,27.7338649726563],[105.312899199219,27.7182888007813],[105.307345,27.713843],[105.287345,27.713843],[105.28298953125,27.76948753125],[105.271170683594,27.7890773750001],[105.28298953125,27.79819846875],[105.29170046875,27.80948753125],[105.315211210938,27.8191091132813],[105.252996855469,27.8296779609376],[105.239967070313,27.8277516914063],[105.244095488281,27.8556911445312],[105.229827910156,27.9046266914063],[105.26298953125,27.91819846875],[105.277742949219,27.9373146796875],[105.269271269531,27.9946364570313],[105.247220488281,28.0116579414062],[105.200101347656,27.9931325507813],[105.165592070313,28.0139479804688],[105.183240996094,28.058843],[105.177345,28.0738430000001],[105.205213652344,28.0786916328126],[105.241070585938,28.12347190625],[105.332093535156,28.1494972968751],[105.342345,28.1482204414062],[105.356514921875,28.1499831367188],[105.341688261719,28.188559796875],[105.344881621094,28.2142360664063],[105.329808378906,28.2534499335937],[105.332967558594,28.278843],[105.330479765625,28.298843],[105.333248320313,28.321108625],[105.311790800781,28.3382888007813],[105.296317167969,28.3750124335938],[105.312899199219,28.3882888007813],[105.321790800781,28.4042653632813],[105.295406523438,28.4491506171875],[105.247345,28.453843],[105.255401640625,28.4806056953125],[105.288861113281,28.4779177070313],[105.318089628906,28.5030983710938],[105.332215605469,28.5194948554688]]]]}},{"type":"Feature","properties":{"name":"泸县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.287345,28.933843],[105.283922148438,28.9216506171875],[105.275152617188,28.9304201484376],[105.287345,28.933843]]],[[[105.257345,28.9538430000001],[105.270152617188,28.948843],[105.257345,28.943843],[105.257345,28.9538430000001]]],[[[105.257345,28.9538430000001],[105.233861113281,28.9593727851562],[105.257345,28.973843],[105.257345,28.9538430000001]]],[[[105.737345,29.133843],[105.740767851563,29.1460353828125],[105.749537382813,29.1372658515625],[105.737345,29.133843]]],[[[105.667345,29.273843],[105.657345,29.273843],[105.657345,29.283843],[105.667345,29.283843],[105.667345,29.273843]]],[[[105.687345,29.2938430000001],[105.692906523438,29.3068410468751],[105.710069609375,29.2978493476563],[105.687345,29.2938430000001]]],[[[105.667345,29.273843],[105.677345,29.273843],[105.677345,29.2938430000001],[105.687345,29.2938430000001],[105.691429472656,29.2679274726562],[105.710836210938,29.2217214179688],[105.701073027344,29.1781716132813],[105.721698027344,29.1639333320313],[105.731429472656,29.1379274726563],[105.737345,29.133843],[105.724505644531,29.10636253125],[105.740975371094,29.0774733710938],[105.754564238281,29.0697267890625],[105.744146757813,29.0420925117188],[105.757345,29.013843],[105.739598417969,29.0015895820313],[105.721698027344,28.9537526679688],[105.701429472656,28.9397585273438],[105.691422148438,28.9130153632813],[105.647345,28.9238430000001],[105.620975371094,28.9274733710938],[105.575819121094,28.9671462226563],[105.547345,28.9538430000001],[105.533978300781,28.9611696601562],[105.554908476563,28.9888430000001],[105.540164824219,29.0083376289063],[105.509671660156,29.017759015625],[105.517345,29.0338430000001],[105.529537382813,29.0372658515625],[105.520767851563,29.0460353828126],[105.517345,29.0338430000001],[105.4959778125,29.0434157539062],[105.462913847656,29.020200421875],[105.452003203125,29.0665236640625],[105.417345,29.055727765625],[105.387371855469,29.0650637031251],[105.35287234375,29.0371218085938],[105.336634550781,29.0421804023438],[105.343968535156,29.0186305976563],[105.331158476563,28.9900295234375],[105.327345,28.933843],[105.318577910156,28.9201467109375],[105.287345,28.933843],[105.278470488281,28.9684206367188],[105.257345,28.973843],[105.270369902344,29.0048513007813],[105.233592558594,29.0302443671875],[105.19380984375,29.0213259101563],[105.183260527344,29.050591046875],[105.245379667969,29.1203054023438],[105.241073027344,29.1395143867187],[105.266158476563,29.1568312812501],[105.261160917969,29.1791213203126],[105.267345,29.193843],[105.282806425781,29.1983815742188],[105.316771269531,29.2766921210938],[105.36213015625,29.2893752265626],[105.381954375,29.2873537421876],[105.399642363281,29.3086476875],[105.417345,29.313843],[105.459549589844,29.3333864570313],[105.471519804688,29.2880178046876],[105.503170195313,29.2796681953125],[105.511815214844,29.2676052070313],[105.552174101563,29.2798659492188],[105.6127746875,29.2677663398438],[105.632845488281,29.2805104804687],[105.641519804688,29.2580178046875],[105.660968046875,29.2496681953125],[105.667345,29.273843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"广汉市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.383631621094,31.0451296210937],[104.414832792969,31.0263088203125],[104.447345,31.033843],[104.451790800781,31.0082888007813],[104.480814238281,30.9960597968751],[104.487345,30.9438430000001],[104.458592558594,30.9505055976563],[104.392689238281,30.940766828125],[104.382345,30.9273659492188],[104.369691191406,30.9437599921875],[104.347345,30.9038430000001],[104.31982546875,30.8978395820313],[104.226236601563,30.9053591132813],[104.187345,30.913843],[104.177345,30.913843],[104.177345,30.9038430000001],[104.170704375,30.907202375],[104.163326445313,30.9217873359376],[104.147345,30.913843],[104.140472441406,30.9291847968751],[104.170816679688,30.9666481757813],[104.160572539063,30.9995314765625],[104.124969511719,31.0214675117188],[104.117345,31.033843],[104.152589140625,31.0280544257813],[104.17170046875,31.0350441718751],[104.139075957031,31.0602272773438],[104.18298953125,31.07819846875],[104.222786894531,31.1077053046876],[104.23170046875,31.12948753125],[104.256324492188,31.1395632148438],[104.267345,31.153843],[104.278631621094,31.1451296210938],[104.29170046875,31.12819846875],[104.308863554688,31.1149513984376],[104.35170046875,31.0581984687501],[104.383631621094,31.0451296210937]]]]}},{"type":"Feature","properties":{"name":"罗江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.578963652344,31.4065041328126],[104.592144804688,31.3551442695313],[104.652244902344,31.3326540351563],[104.671429472656,31.2779274726563],[104.707345,31.273843],[104.7017590625,31.2520729804688],[104.677345,31.2466017890625],[104.658992949219,31.2507155585937],[104.63959109375,31.22261253125],[104.600716582031,31.2479274726562],[104.585142851563,31.2342287421875],[104.577345,31.2038430000001],[104.542843046875,31.2123171210938],[104.521673613281,31.2075710273438],[104.507435332031,31.2281960273438],[104.481429472656,31.2379274726563],[104.443385039063,31.262700421875],[104.431698027344,31.2939333320313],[104.411429472656,31.3079274726563],[104.403260527344,31.3197585273438],[104.367667265625,31.3288918281251],[104.353260527344,31.3497585273438],[104.337345,31.3538430000001],[104.331043730469,31.3794924140625],[104.337345,31.383843],[104.377047148438,31.3773220039063],[104.397345,31.3803200507813],[104.424698515625,31.3762795234375],[104.484373808594,31.3901052070313],[104.481529570313,31.4093556953125],[104.504276152344,31.4269118476563],[104.517345,31.443843],[104.533260527344,31.4397585273438],[104.541429472656,31.4279274726563],[104.578963652344,31.4065041328126]]]]}},{"type":"Feature","properties":{"name":"绵竹市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.151302519531,31.5308571601563],[104.162020292969,31.5184157539062],[104.198836699219,31.521372296875],[104.23197390625,31.46847190625],[104.270677519531,31.4568190742188],[104.319544707031,31.4147170234376],[104.337345,31.383843],[104.331043730469,31.3794924140625],[104.337345,31.3538430000001],[104.321121855469,31.3292946601563],[104.324503203125,31.3142116523438],[104.305091582031,31.2860964179688],[104.281429472656,31.2697585273438],[104.273260527344,31.2479274726562],[104.253260527344,31.2172145820313],[104.261429472656,31.1779274726563],[104.267345,31.1638430000001],[104.251519804688,31.1680178046875],[104.233170195313,31.1796681953126],[104.181519804688,31.1980178046876],[104.113170195313,31.2296681953125],[104.081519804688,31.2380178046875],[104.045745878906,31.2607302070313],[104.016322050781,31.31147971875],[104.033421660156,31.3384133125],[104.021356230469,31.3988381171875],[104.025677519531,31.4207033515625],[103.999503203125,31.4394631171875],[104.003389921875,31.4591310859375],[103.989390898438,31.49319846875],[103.962345,31.4878542304688],[103.945479765625,31.4911867500001],[103.923170195313,31.5296681953125],[103.917345,31.533843],[103.90681765625,31.5625075507813],[103.923992949219,31.6381056953125],[103.98197390625,31.6792140937501],[104.02271609375,31.6884719062501],[104.042083769531,31.6992775703125],[104.097345,31.693843],[104.113519316406,31.679907453125],[104.095496855469,31.6476052070313],[104.154046660156,31.5650270820313],[104.151302519531,31.5308571601563]]]]}},{"type":"Feature","properties":{"name":"什邡市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.852889433594,31.5402785468751],[103.892366972656,31.5182521796875],[103.917345,31.533843],[103.923170195313,31.5296681953125],[103.945479765625,31.4911867500001],[103.962345,31.4878542304688],[103.989390898438,31.49319846875],[104.003389921875,31.4591310859375],[103.999503203125,31.4394631171875],[104.025677519531,31.4207033515625],[104.021356230469,31.3988381171875],[104.033421660156,31.3384133125],[104.016322050781,31.31147971875],[104.045745878906,31.2607302070313],[104.081519804688,31.2380178046875],[104.113170195313,31.2296681953125],[104.181519804688,31.1980178046876],[104.233170195313,31.1796681953126],[104.251519804688,31.1680178046875],[104.267345,31.1638430000001],[104.267345,31.153843],[104.256324492188,31.1395632148438],[104.23170046875,31.12948753125],[104.222786894531,31.1077053046876],[104.18298953125,31.07819846875],[104.139075957031,31.0602272773438],[104.17170046875,31.0350441718751],[104.152589140625,31.0280544257813],[104.117345,31.033843],[104.089075957031,31.0386452460938],[104.07298953125,31.05948753125],[104.06170046875,31.0681984687501],[104.05298953125,31.0794875312501],[104.022850371094,31.10274925],[104.011363554688,31.157192609375],[104.014066191406,31.1754982734376],[103.968695097656,31.2105202460938],[103.951832304688,31.2080275703125],[103.94298953125,31.21948753125],[103.93170046875,31.22819846875],[103.92298953125,31.2694875312501],[103.887139921875,31.3138430000001],[103.924615507813,31.3602126289063],[103.90170046875,31.39819846875],[103.892916289063,31.4196657539063],[103.877345,31.4173659492188],[103.862345,31.4195827460938],[103.82490359375,31.4140480781251],[103.81298953125,31.42948753125],[103.797345,31.4338430000001],[103.802200957031,31.4814430976562],[103.852889433594,31.5402785468751]]]]}},{"type":"Feature","properties":{"name":"中江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.847345,30.953843],[104.835152617188,30.9504201484376],[104.843922148438,30.9416506171875],[104.871790800781,30.9482888007813],[104.933563261719,30.9392995429688],[104.964039335938,30.88745628125],[104.960213652344,30.8567116523437],[104.982796660156,30.869985578125],[104.994188261719,30.8045168281251],[105.025631132813,30.7860329414063],[105.099051542969,30.7578102851563],[105.117098417969,30.7600563789063],[105.151632109375,30.7324025703126],[105.161790800781,30.7082888007813],[105.167345,30.7038430000001],[105.162154570313,30.6866017890626],[105.141165800781,30.6685182929688],[105.142796660156,30.6482155585938],[105.066068144531,30.5413576484375],[105.057345,30.533843],[105.051429472656,30.5379274726563],[105.043260527344,30.5497585273438],[105.019188261719,30.5579274726563],[105.023616972656,30.5381716132813],[105.006976347656,30.526684796875],[104.982274199219,30.53222190625],[104.960186796875,30.5642116523438],[104.964586210938,30.583843],[104.957948027344,30.613462140625],[104.931673613281,30.6075710273438],[104.915697050781,30.6307155585938],[104.863822050781,30.6190871406251],[104.857345,30.5938430000001],[104.813114042969,30.5839968085938],[104.84310671875,30.6363649726563],[104.841685820313,30.6503054023438],[104.821922636719,30.6482912421875],[104.804881621094,30.687583234375],[104.791883574219,30.6983815742188],[104.782806425781,30.7193044257813],[104.744151640625,30.743149640625],[104.728192167969,30.7799489570313],[104.711922636719,30.7782912421876],[104.69373171875,30.82022971875],[104.607623320313,30.8575759101563],[104.521790800781,30.8884133125],[104.525235625,30.9222096992188],[104.487345,30.9438430000001],[104.480814238281,30.9960597968751],[104.451790800781,31.0082888007813],[104.447345,31.033843],[104.504032011719,31.0396242500001],[104.52197390625,31.09921409375],[104.55271609375,31.1084719062501],[104.57197390625,31.1212404609375],[104.551917753906,31.1385182929688],[104.552772246094,31.1491677070313],[104.541541777344,31.158843],[104.55271609375,31.16847190625],[104.56197390625,31.1792140937501],[104.583951445313,31.198149640625],[104.577345,31.2038430000001],[104.585142851563,31.2342287421875],[104.600716582031,31.2479274726562],[104.63959109375,31.22261253125],[104.658992949219,31.2507155585937],[104.677345,31.2466017890625],[104.7017590625,31.2520729804688],[104.707345,31.273843],[104.723985625,31.277202375],[104.737345,31.2838430000001],[104.748231230469,31.2754396796876],[104.731624785156,31.2348635078126],[104.710994902344,31.21894065625],[104.72170046875,31.16819846875],[104.746324492188,31.1581227851563],[104.76170046875,31.1381984687501],[104.788448515625,31.127251203125],[104.770233183594,31.0970510078125],[104.825394316406,31.0544753242188],[104.821529570313,31.0283303046875],[104.833160429688,31.0193556953126],[104.828878203125,30.9903786445313],[104.854066191406,30.9709377265625],[104.847345,30.953843]]]]}},{"type":"Feature","properties":{"name":"旌阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.507435332031,31.2281960273438],[104.521673613281,31.2075710273438],[104.542843046875,31.2123171210938],[104.577345,31.2038430000001],[104.583951445313,31.198149640625],[104.56197390625,31.1792140937501],[104.55271609375,31.16847190625],[104.541541777344,31.158843],[104.552772246094,31.1491677070313],[104.551917753906,31.1385182929688],[104.57197390625,31.1212404609375],[104.55271609375,31.1084719062501],[104.52197390625,31.09921409375],[104.504032011719,31.0396242500001],[104.447345,31.033843],[104.414832792969,31.0263088203125],[104.383631621094,31.0451296210937],[104.35170046875,31.0581984687501],[104.308863554688,31.1149513984376],[104.29170046875,31.12819846875],[104.278631621094,31.1451296210938],[104.267345,31.153843],[104.267345,31.1638430000001],[104.261429472656,31.1779274726563],[104.253260527344,31.2172145820313],[104.273260527344,31.2479274726562],[104.281429472656,31.2697585273438],[104.305091582031,31.2860964179688],[104.324503203125,31.3142116523438],[104.321121855469,31.3292946601563],[104.337345,31.3538430000001],[104.353260527344,31.3497585273438],[104.367667265625,31.3288918281251],[104.403260527344,31.3197585273438],[104.411429472656,31.3079274726563],[104.431698027344,31.2939333320313],[104.443385039063,31.262700421875],[104.481429472656,31.2379274726563],[104.507435332031,31.2281960273438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.322806425781,31.7493044257813],[104.331954375,31.7382936835937],[104.343941679688,31.7395143867188],[104.341793242188,31.7184352851563],[104.381663847656,31.693843],[104.360936308594,31.6576540351562],[104.36318484375,31.6356056953125],[104.388270292969,31.6147682929688],[104.40361453125,31.5962966132813],[104.401834746094,31.5788430000001],[104.403004179688,31.5673805976563],[104.422345,31.5693532539063],[104.442345,31.5673146796875],[104.451883574219,31.5893044257813],[104.50459109375,31.6218166328125],[104.50181765625,31.6490138984375],[104.507345,31.673843],[104.541568632813,31.6557912421876],[104.551158476563,31.6276564765625],[104.607020292969,31.6088576484375],[104.595311308594,31.5712575507813],[104.613531523438,31.5600295234375],[104.621158476563,31.5476564765625],[104.637345,31.5438430000001],[104.632178984375,31.5252931953125],[104.600413847656,31.5007741523438],[104.581832304688,31.4767018867188],[104.552345,31.481059796875],[104.525994902344,31.4771657539063],[104.51170046875,31.48819846875],[104.496263457031,31.50819846875],[104.473463164063,31.4945583320313],[104.49298953125,31.47948753125],[104.517345,31.443843],[104.504276152344,31.4269118476563],[104.481529570313,31.4093556953125],[104.484373808594,31.3901052070313],[104.424698515625,31.3762795234375],[104.397345,31.3803200507813],[104.377047148438,31.3773220039063],[104.337345,31.383843],[104.319544707031,31.4147170234376],[104.270677519531,31.4568190742188],[104.23197390625,31.46847190625],[104.198836699219,31.521372296875],[104.162020292969,31.5184157539062],[104.151302519531,31.5308571601563],[104.154046660156,31.5650270820313],[104.095496855469,31.6476052070313],[104.113519316406,31.679907453125],[104.097345,31.693843],[104.099888945313,31.7112990546875],[104.134801054688,31.7163869453126],[104.149888945313,31.7312990546875],[104.167345,31.7338430000001],[104.192806425781,31.7383815742187],[104.211883574219,31.7493044257813],[104.232806425781,31.7583815742188],[104.261883574219,31.7793044257813],[104.291146269531,31.791997296875],[104.311883574219,31.7583815742188],[104.322806425781,31.7493044257813]]]]}},{"type":"Feature","properties":{"name":"北川羌族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.137345,32.143843],[104.140767851563,32.1316506171875],[104.149537382813,32.1404201484376],[104.141429472656,32.1497585273438],[104.153260527344,32.1579274726563],[104.161429472656,32.1797585273438],[104.173260527344,32.1879274726563],[104.185384550781,32.2054860664063],[104.232240019531,32.2200099921875],[104.257345,32.213843],[104.237320585938,32.1629055],[104.26170046875,32.14819846875],[104.29298953125,32.1394875312501],[104.33170046875,32.10819846875],[104.370941191406,32.0921388984375],[104.384451933594,32.0746364570313],[104.42095828125,32.0526149726563],[104.44170046875,32.07948753125],[104.45298953125,32.0881984687501],[104.462633085938,32.1117653632813],[104.513511992188,32.0810744453125],[104.57170046875,32.0581984687501],[104.625614042969,32.0490407539063],[104.644451933594,32.0246364570313],[104.671954375,32.0080471015625],[104.702857695313,32.01261253125],[104.717345,31.993843],[104.686812773438,31.9463039375],[104.715914335938,31.8980593085938],[104.676763945313,31.8744460273438],[104.637926054688,31.9032399726562],[104.61298953125,31.88819846875],[104.54298953125,31.8626589179688],[104.55170046875,31.84819846875],[104.585174589844,31.8223610664062],[104.593140898438,31.768452375],[104.581549101563,31.749233625],[104.587030058594,31.7121315742188],[104.513748808594,31.6821388984376],[104.507345,31.673843],[104.50181765625,31.6490138984375],[104.50459109375,31.6218166328125],[104.451883574219,31.5893044257813],[104.442345,31.5673146796875],[104.422345,31.5693532539063],[104.403004179688,31.5673805976563],[104.401834746094,31.5788430000001],[104.40361453125,31.5962966132813],[104.388270292969,31.6147682929688],[104.36318484375,31.6356056953125],[104.360936308594,31.6576540351562],[104.381663847656,31.693843],[104.341793242188,31.7184352851563],[104.343941679688,31.7395143867188],[104.331954375,31.7382936835937],[104.322806425781,31.7493044257813],[104.311883574219,31.7583815742188],[104.291146269531,31.791997296875],[104.261883574219,31.7793044257813],[104.232806425781,31.7583815742188],[104.211883574219,31.7493044257813],[104.192806425781,31.7383815742187],[104.167345,31.7338430000001],[104.172811308594,31.7690822578125],[104.146927519531,31.8055861640625],[104.13197390625,31.81847190625],[104.12271609375,31.8292140937501],[104.087916289063,31.839692609375],[104.053316679688,31.8369118476563],[104.039305449219,31.8531740546875],[103.97197390625,31.8684719062501],[103.928568144531,31.9437575507813],[103.855101347656,31.9236501289063],[103.81271609375,31.93921409375],[103.777916289063,31.949692609375],[103.762345,31.9484401679688],[103.751180449219,31.9493386054688],[103.754046660156,31.9850051093751],[103.778665800781,32.0291359687501],[103.818363066406,32.0633351875001],[103.807345,32.1138430000001],[103.823350859375,32.1178371406251],[103.831339140625,32.129848859375],[103.856124296875,32.138843],[103.848883085938,32.1675881171875],[103.911339140625,32.147837140625],[103.973350859375,32.139848859375],[103.997369414063,32.1238088203125],[104.047345,32.1364015937501],[104.09005984375,32.125639875],[104.111339140625,32.139848859375],[104.137345,32.143843]]]]}},{"type":"Feature","properties":{"name":"涪城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.697345,31.603843],[104.713616972656,31.5624513984375],[104.711605253906,31.5488430000001],[104.713084746094,31.538843],[104.711226835938,31.52628440625],[104.741624785156,31.5028224921875],[104.754605742188,31.4711037421876],[104.785955839844,31.4582717109375],[104.781529570313,31.4283303046876],[104.813765898438,31.4034499335938],[104.808050566406,31.3647853828125],[104.847345,31.3538430000001],[104.837701445313,31.3413503242188],[104.783416777344,31.3011037421875],[104.74170046875,31.28948753125],[104.737345,31.2838430000001],[104.723985625,31.277202375],[104.707345,31.273843],[104.671429472656,31.2779274726563],[104.652244902344,31.3326540351563],[104.592144804688,31.3551442695313],[104.578963652344,31.4065041328126],[104.541429472656,31.4279274726563],[104.533260527344,31.4397585273438],[104.517345,31.443843],[104.49298953125,31.47948753125],[104.473463164063,31.4945583320313],[104.496263457031,31.50819846875],[104.51170046875,31.48819846875],[104.525994902344,31.4771657539063],[104.552345,31.481059796875],[104.581832304688,31.4767018867188],[104.600413847656,31.5007741523438],[104.632178984375,31.5252931953125],[104.637345,31.5438430000001],[104.663765898438,31.5642360664063],[104.660125761719,31.5888527656251],[104.697345,31.603843]]],[[[104.697345,31.603843],[104.707345,31.6177956367188],[104.717345,31.603843],[104.697345,31.603843]]]]}},{"type":"Feature","properties":{"name":"江油市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.253638945313,32.3085060859376],[105.235980253906,32.2813918281251],[105.252345,32.2777223945313],[105.271429472656,32.2819997382813],[105.263260527344,32.2579274726563],[105.251124296875,32.2392897773438],[105.253565703125,32.2283962226563],[105.24060671875,32.2084963203125],[105.265474882813,32.1913259101563],[105.249215117188,32.1663600898438],[105.273260527344,32.1497585273438],[105.277345,32.143843],[105.27271609375,32.1384719062501],[105.261541777344,32.128843],[105.277445097656,32.115141828125],[105.249032011719,32.0750685859375],[105.255106230469,31.9994655585938],[105.242020292969,31.9984157539063],[105.232020292969,32.0100221992188],[105.212345,32.0084401679688],[105.195655546875,32.0097829414063],[105.171641875,31.999067609375],[105.182769804688,31.9791213203125],[105.181812773438,31.9672243476563],[105.203001738281,31.948969953125],[105.177345,31.903843],[105.161842070313,31.8973317695313],[105.148353300781,31.9168679023438],[105.099537382813,31.8963649726563],[105.103616972656,31.8781716132812],[105.086976347656,31.866684796875],[105.071673613281,31.8701149726563],[105.063260527344,31.8579274726562],[105.041429472656,31.8497585273438],[105.00343875,31.8250197578126],[104.993260527344,31.8397585273438],[104.979188261719,31.8479274726563],[104.983565703125,31.8283962226563],[104.96611453125,31.8015969062501],[104.983260527344,31.7897585273437],[104.991429472656,31.7709841132813],[104.953504667969,31.7567946601563],[104.967345,31.723843],[104.935540800781,31.703608625],[104.922345,31.7200856757813],[104.911890898438,31.7070339179688],[104.891890898438,31.7095217109375],[104.876143828125,31.6898537421875],[104.842703886719,31.7095095039062],[104.817061796875,31.7063210273438],[104.822967558594,31.6588430000001],[104.821351347656,31.6458571601563],[104.769425078125,31.6523146796876],[104.783487578125,31.6283913398438],[104.731656523438,31.6193727851563],[104.733031035156,31.6083278632813],[104.717345,31.603843],[104.707345,31.6177956367188],[104.697345,31.603843],[104.660125761719,31.5888527656251],[104.663765898438,31.5642360664063],[104.637345,31.5438430000001],[104.621158476563,31.5476564765625],[104.613531523438,31.5600295234375],[104.595311308594,31.5712575507813],[104.607020292969,31.6088576484375],[104.551158476563,31.6276564765625],[104.541568632813,31.6557912421876],[104.507345,31.673843],[104.513748808594,31.6821388984376],[104.587030058594,31.7121315742188],[104.581549101563,31.749233625],[104.593140898438,31.768452375],[104.585174589844,31.8223610664062],[104.55170046875,31.84819846875],[104.54298953125,31.8626589179688],[104.61298953125,31.88819846875],[104.637926054688,31.9032399726562],[104.676763945313,31.8744460273438],[104.715914335938,31.8980593085938],[104.686812773438,31.9463039375],[104.717345,31.993843],[104.739344511719,31.9999684882813],[104.780753203125,32.024946515625],[104.791878691406,31.9977638984376],[104.829644804688,32.0126100898438],[104.851805449219,32.0496608710937],[104.880809355469,32.0453762031251],[104.896058378906,32.1351296210938],[104.933765898438,32.1642360664063],[104.924871855469,32.2244142890625],[104.98298953125,32.2481984687501],[104.987345,32.253843],[105.019176054688,32.2620119453126],[105.041673613281,32.2945973945313],[105.072850371094,32.2876100898437],[105.108570585938,32.3152931953125],[105.142345,32.3077223945313],[105.152345,32.3099636054688],[105.174097929688,32.3050881171876],[105.247782011719,32.3279274726563],[105.253638945313,32.3085060859376]]]]}},{"type":"Feature","properties":{"name":"平武县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.207691679688,32.9150490546876],[104.229742460938,32.8894533515626],[104.258992949219,32.88710471875],[104.277345,32.893843],[104.29170046875,32.83819846875],[104.36298953125,32.81948753125],[104.374451933594,32.8046364570313],[104.40170046875,32.78819846875],[104.42298953125,32.77948753125],[104.437567167969,32.7606008125],[104.50298953125,32.7494875312501],[104.5319153125,32.7280397773438],[104.570448027344,32.733735578125],[104.59170046875,32.6981984687501],[104.62298953125,32.6794875312501],[104.627345,32.673843],[104.617139921875,32.6117189765625],[104.63298953125,32.5994875312501],[104.661820097656,32.5580275703125],[104.688175078125,32.5619216132813],[104.747340117188,32.5377053046875],[104.753084746094,32.4988430000001],[104.749251738281,32.4729079414063],[104.768839140625,32.4025612617188],[104.825435820313,32.3606032539063],[104.842345,32.3581032539063],[104.869698515625,32.3621462226562],[104.911900664063,32.3280373359375],[104.978861113281,32.3379323554687],[104.961256132813,32.3087502265625],[104.993328886719,32.2690651679688],[104.987345,32.253843],[104.98298953125,32.2481984687501],[104.924871855469,32.2244142890625],[104.933765898438,32.1642360664063],[104.896058378906,32.1351296210938],[104.880809355469,32.0453762031251],[104.851805449219,32.0496608710937],[104.829644804688,32.0126100898438],[104.791878691406,31.9977638984376],[104.780753203125,32.024946515625],[104.739344511719,31.9999684882813],[104.717345,31.993843],[104.702857695313,32.01261253125],[104.671954375,32.0080471015625],[104.644451933594,32.0246364570313],[104.625614042969,32.0490407539063],[104.57170046875,32.0581984687501],[104.513511992188,32.0810744453125],[104.462633085938,32.1117653632813],[104.45298953125,32.0881984687501],[104.44170046875,32.07948753125],[104.42095828125,32.0526149726563],[104.384451933594,32.0746364570313],[104.370941191406,32.0921388984375],[104.33170046875,32.10819846875],[104.29298953125,32.1394875312501],[104.26170046875,32.14819846875],[104.237320585938,32.1629055],[104.257345,32.213843],[104.241917753906,32.2508229804688],[104.222064238281,32.2685622382813],[104.202625761719,32.2991237617188],[104.178065214844,32.3185622382813],[104.155357695313,32.245024640625],[104.099429960938,32.2291237617187],[104.062625761719,32.2491237617188],[104.032064238281,32.2585622382813],[103.981187773438,32.3003054023438],[103.922064238281,32.3185622382813],[103.8843371875,32.3705471015625],[103.9126965625,32.4387306953125],[103.902039824219,32.4987038398438],[103.9026575,32.5090822578125],[103.852064238281,32.5785622382813],[103.842625761719,32.6006911445313],[103.887327910156,32.6406325507813],[103.922484160156,32.6385378242188],[103.984715605469,32.649594953125],[104.012345,32.6479494453125],[104.032345,32.6491408515625],[104.056898222656,32.6476784492188],[104.076060820313,32.5856179023438],[104.133343535156,32.5182814765625],[104.111807890625,32.4786525703125],[104.138294707031,32.4691237617188],[104.161414824219,32.519497296875],[104.181287871094,32.668091046875],[104.131890898438,32.7388088203125],[104.143216582031,32.7596462226563],[104.1020325,32.8186061835938],[104.102642851563,32.828843],[104.101329375,32.8508693671875],[104.059036894531,32.8483473945313],[104.003143339844,32.8179738593751],[103.970277128906,32.8358351875],[103.991568632813,32.8750197578125],[103.962064238281,32.8885622382813],[103.957345,32.903843],[103.957345,32.913843],[103.947345,32.913843],[103.95197390625,32.91921409375],[103.962772246094,32.9285182929688],[103.961942167969,32.938843],[103.962747832031,32.948843],[103.961925078125,32.9590822578126],[103.97271609375,32.98847190625],[103.983914824219,33.0377638984375],[104.016920195313,33.040415265625],[104.06197390625,33.0084719062501],[104.108878203125,32.9978151679687],[104.207691679688,32.9150490546876]]]]}},{"type":"Feature","properties":{"name":"三台县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.847345,30.953843],[104.843922148438,30.9416506171875],[104.835152617188,30.9504201484376],[104.847345,30.953843]]],[[[105.117345,31.3938430000001],[105.105152617188,31.3972658515625],[105.113922148438,31.4060353828125],[105.117345,31.3938430000001]]],[[[104.847345,30.953843],[104.854066191406,30.9709377265625],[104.828878203125,30.9903786445313],[104.833160429688,31.0193556953126],[104.821529570313,31.0283303046875],[104.825394316406,31.0544753242188],[104.770233183594,31.0970510078125],[104.788448515625,31.127251203125],[104.76170046875,31.1381984687501],[104.746324492188,31.1581227851563],[104.72170046875,31.16819846875],[104.710994902344,31.21894065625],[104.731624785156,31.2348635078126],[104.748231230469,31.2754396796876],[104.737345,31.2838430000001],[104.74170046875,31.28948753125],[104.783416777344,31.3011037421875],[104.837701445313,31.3413503242188],[104.847345,31.3538430000001],[104.85170046875,31.36948753125],[104.881517363281,31.4097048164063],[104.899193144531,31.4070925117188],[104.942135039063,31.4196120429688],[104.956851835938,31.4174391914063],[104.97170046875,31.39819846875],[105.014276152344,31.3807741523438],[105.03170046875,31.35819846875],[105.060550566406,31.346391828125],[105.107701445313,31.3813503242188],[105.117345,31.3938430000001],[105.142166777344,31.4109792304688],[105.147345,31.443843],[105.189661894531,31.4368923164063],[105.207345,31.443843],[105.213416777344,31.3943459296876],[105.210970488281,31.370356671875],[105.231883574219,31.3583815742187],[105.263629179688,31.3490651679688],[105.251326933594,31.338843],[105.263363066406,31.328843],[105.249915800781,31.317671125],[105.253873320313,31.2788430000001],[105.251793242188,31.2584206367188],[105.28935671875,31.2421291328125],[105.253267851563,31.2121486640625],[105.293363066406,31.178843],[105.281617460938,31.1690846992188],[105.292806425781,31.1393044257813],[105.297345,31.113843],[105.291890898438,31.1070339179688],[105.270772734375,31.1096608710938],[105.190863066406,31.0957546210937],[105.194378691406,31.0674831367188],[105.167352324219,31.0458425117188],[105.18814578125,31.0104714179688],[105.180345488281,30.9477638984375],[105.20334109375,30.9086428046875],[105.186151152344,30.8948805976563],[105.222899199219,30.8793971992188],[105.232530546875,30.8457057929688],[105.2584778125,30.824926984375],[105.268851347656,30.7415358710938],[105.207345,30.733843],[105.172767363281,30.7249684882813],[105.167345,30.7038430000001],[105.161790800781,30.7082888007813],[105.151632109375,30.7324025703126],[105.117098417969,30.7600563789063],[105.099051542969,30.7578102851563],[105.025631132813,30.7860329414063],[104.994188261719,30.8045168281251],[104.982796660156,30.869985578125],[104.960213652344,30.8567116523437],[104.964039335938,30.88745628125],[104.933563261719,30.9392995429688],[104.871790800781,30.9482888007813],[104.847345,30.953843]]]]}},{"type":"Feature","properties":{"name":"盐亭县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.475628691406,31.485122296875],[105.494542265625,31.458843],[105.473624296875,31.4297805],[105.5146496875,31.3944826484376],[105.532345,31.4005593085938],[105.542345,31.3971266914063],[105.561500273438,31.4037038398438],[105.571612578125,31.3866457343751],[105.617335234375,31.407563703125],[105.641065703125,31.3821486640625],[105.623624296875,31.3475637031251],[105.600279570313,31.3398610664063],[105.604061308594,31.328843],[105.594110136719,31.2998610664063],[105.628685332031,31.2884499335938],[105.641065703125,31.2675637031251],[105.667345,31.253843],[105.67197390625,31.21847190625],[105.682996855469,31.1987136054688],[105.662733183594,31.1812526679687],[105.711317167969,31.166626203125],[105.713951445313,31.133843],[105.711541777344,31.103843],[105.713829375,31.0753786445313],[105.700401640625,31.030786359375],[105.6619153125,31.0191970039063],[105.6627746875,31.0084841132812],[105.62197390625,30.99921409375],[105.617345,30.983843],[105.595213652344,30.9747487617188],[105.532869902344,31.0299343085937],[105.504205351563,31.0242702460937],[105.493170195313,31.0396681953125],[105.481519804688,31.0480178046875],[105.473170195313,31.0596681953126],[105.416534453125,31.0710231757813],[105.393270292969,31.103481671875],[105.377340117188,31.1447829414062],[105.357503691406,31.1680178046875],[105.335445585938,31.1372414375],[105.321636992188,31.1399709296876],[105.313170195313,31.1180178046876],[105.297345,31.113843],[105.292806425781,31.1393044257813],[105.281617460938,31.1690846992188],[105.293363066406,31.178843],[105.253267851563,31.2121486640625],[105.28935671875,31.2421291328125],[105.251793242188,31.2584206367188],[105.253873320313,31.2788430000001],[105.249915800781,31.317671125],[105.263363066406,31.328843],[105.251326933594,31.338843],[105.263629179688,31.3490651679688],[105.231883574219,31.3583815742187],[105.210970488281,31.370356671875],[105.213416777344,31.3943459296876],[105.207345,31.443843],[105.215557890625,31.4495143867188],[105.209383574219,31.4770583320313],[105.223016386719,31.4801149726563],[105.23435671875,31.4636891914063],[105.277669707031,31.4733986640625],[105.302020292969,31.4575417304688],[105.349444609375,31.4722438789063],[105.393992949219,31.4432350898438],[105.433260527344,31.4579274726563],[105.441429472656,31.4797585273438],[105.447345,31.483843],[105.451500273438,31.4768361640625],[105.475628691406,31.485122296875]]]]}},{"type":"Feature","properties":{"name":"游仙区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.997345,31.713843],[104.974620390625,31.7098366523438],[104.991783476563,31.700844953125],[105.031429472656,31.7050954414063],[105.022818632813,31.6553737617188],[104.993260527344,31.6619997382812],[105.011429472656,31.6279274726562],[105.023260527344,31.6197585273438],[105.027345,31.5838430000001],[105.015152617188,31.5804201484375],[105.023922148438,31.5716506171876],[105.027345,31.5838430000001],[105.043172636719,31.5794362617188],[105.040311308594,31.5600759101563],[105.063148222656,31.5292726875],[105.05298953125,31.4605300117188],[105.08187625,31.4414943671875],[105.112254667969,31.4598220039063],[105.147345,31.443843],[105.142166777344,31.4109792304688],[105.117345,31.3938430000001],[105.113922148438,31.4060353828125],[105.105152617188,31.3972658515625],[105.117345,31.3938430000001],[105.107701445313,31.3813503242188],[105.060550566406,31.346391828125],[105.03170046875,31.35819846875],[105.014276152344,31.3807741523438],[104.97170046875,31.39819846875],[104.956851835938,31.4174391914063],[104.942135039063,31.4196120429688],[104.899193144531,31.4070925117188],[104.881517363281,31.4097048164063],[104.85170046875,31.36948753125],[104.847345,31.3538430000001],[104.808050566406,31.3647853828125],[104.813765898438,31.4034499335938],[104.781529570313,31.4283303046876],[104.785955839844,31.4582717109375],[104.754605742188,31.4711037421876],[104.741624785156,31.5028224921875],[104.711226835938,31.52628440625],[104.713084746094,31.538843],[104.711605253906,31.5488430000001],[104.713616972656,31.5624513984375],[104.697345,31.603843],[104.717345,31.603843],[104.733031035156,31.6083278632813],[104.731656523438,31.6193727851563],[104.783487578125,31.6283913398438],[104.769425078125,31.6523146796876],[104.821351347656,31.6458571601563],[104.822967558594,31.6588430000001],[104.817061796875,31.7063210273438],[104.842703886719,31.7095095039062],[104.876143828125,31.6898537421875],[104.891890898438,31.7095217109375],[104.911890898438,31.7070339179688],[104.922345,31.7200856757813],[104.935540800781,31.703608625],[104.967345,31.723843],[104.997345,31.723843],[104.997345,31.713843]]]]}},{"type":"Feature","properties":{"name":"梓潼县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.027345,31.5838430000001],[105.023922148438,31.5716506171876],[105.015152617188,31.5804201484375],[105.027345,31.5838430000001]]],[[[104.997345,31.713843],[104.991783476563,31.700844953125],[104.974620390625,31.7098366523438],[104.997345,31.713843]]],[[[105.027345,31.5838430000001],[105.023260527344,31.6197585273438],[105.011429472656,31.6279274726562],[104.993260527344,31.6619997382812],[105.022818632813,31.6553737617188],[105.031429472656,31.7050954414063],[104.997345,31.713843],[104.997345,31.723843],[104.967345,31.723843],[104.953504667969,31.7567946601563],[104.991429472656,31.7709841132813],[104.983260527344,31.7897585273437],[104.96611453125,31.8015969062501],[104.983565703125,31.8283962226563],[104.979188261719,31.8479274726563],[104.993260527344,31.8397585273438],[105.00343875,31.8250197578126],[105.041429472656,31.8497585273438],[105.063260527344,31.8579274726562],[105.071673613281,31.8701149726563],[105.086976347656,31.866684796875],[105.103616972656,31.8781716132812],[105.099537382813,31.8963649726563],[105.148353300781,31.9168679023438],[105.161842070313,31.8973317695313],[105.177345,31.903843],[105.215125761719,31.8974245429687],[105.201422148438,31.83827659375],[105.245614042969,31.82597190625],[105.240282011719,31.7898854804688],[105.252345,31.7881032539063],[105.293880644531,31.794243390625],[105.291529570313,31.7783303046875],[105.31170046875,31.7627614570313],[105.30298953125,31.7481984687501],[105.28170046875,31.73948753125],[105.27298953125,31.72819846875],[105.24298953125,31.705044171875],[105.29298953125,31.7081984687501],[105.312733183594,31.7201100898438],[105.32170046875,31.69819846875],[105.336702910156,31.6733303046875],[105.330374785156,31.6305153632812],[105.36205203125,31.61806175],[105.382711210938,31.6211135078125],[105.39170046875,31.56819846875],[105.413167753906,31.5594142890625],[105.411285429688,31.5466701484376],[105.457345,31.533843],[105.453985625,31.4972023750001],[105.447345,31.483843],[105.441429472656,31.4797585273438],[105.433260527344,31.4579274726563],[105.393992949219,31.4432350898438],[105.349444609375,31.4722438789063],[105.302020292969,31.4575417304688],[105.277669707031,31.4733986640625],[105.23435671875,31.4636891914063],[105.223016386719,31.4801149726563],[105.209383574219,31.4770583320313],[105.215557890625,31.4495143867188],[105.207345,31.443843],[105.189661894531,31.4368923164063],[105.147345,31.443843],[105.112254667969,31.4598220039063],[105.08187625,31.4414943671875],[105.05298953125,31.4605300117188],[105.063148222656,31.5292726875],[105.040311308594,31.5600759101563],[105.043172636719,31.5794362617188],[105.027345,31.5838430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"苍溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.907345,31.633843],[105.919537382813,31.6304201484375],[105.910767851563,31.6216506171875],[105.907345,31.633843]]],[[[105.957345,32.013843],[105.945152617188,32.0172658515625],[105.953922148438,32.0260353828126],[105.957345,32.013843]]],[[[106.417345,31.913843],[106.413338652344,31.9365676093751],[106.404346953125,31.9194045234375],[106.413170195313,31.9080178046875],[106.40123171875,31.8994606757813],[106.4133996875,31.8385158515625],[106.397345,31.803843],[106.381883574219,31.8083815742188],[106.372806425781,31.8293044257813],[106.361883574219,31.8383815742188],[106.352806425781,31.8493044257813],[106.339420195313,31.8583815742188],[106.31373171875,31.8274562812501],[106.271883574219,31.8093044257813],[106.262779570313,31.7782888007813],[106.247345,31.7798610664063],[106.232345,31.7783327460938],[106.222345,31.7793532539063],[106.212345,31.7783327460938],[106.188968535156,31.7807155585938],[106.193016386719,31.8204396796875],[106.135076933594,31.8145339179688],[106.122200957031,31.8300368476563],[106.109940214844,31.8017702460938],[106.127047148438,31.7719020820313],[106.111883574219,31.7593044257812],[106.062738066406,31.6982936835937],[106.046776152344,31.6999196601563],[105.972628203125,31.6683034492187],[105.957345,31.6698610664062],[105.921087675781,31.6661672187501],[105.922894316406,31.648452375],[105.911883574219,31.6393044257813],[105.907345,31.633843],[105.89170046875,31.6381984687501],[105.882147246094,31.6505763984375],[105.868485136719,31.6171974921875],[105.849127226563,31.6200563789063],[105.830260039063,31.666157453125],[105.790413847656,31.6969118476563],[105.764869414063,31.7300075507813],[105.727345,31.723843],[105.731529570313,31.7401467109375],[105.743016386719,31.7375710273438],[105.751429472656,31.7497585273438],[105.763260527344,31.7579274726563],[105.77572390625,31.7759767890626],[105.761429472656,31.7979274726563],[105.753260527344,31.8267018867188],[105.783260527344,31.8379274726563],[105.794503203125,31.8542116523438],[105.791121855469,31.8692946601563],[105.823865996094,31.918843],[105.807345,31.943843],[105.846756621094,31.9341628242188],[105.839132109375,31.9681716132813],[105.866158476563,31.98683128125],[105.858538847656,32.0208180976563],[105.872345,32.0177223945313],[105.882345,32.0199636054688],[105.897345,32.0166017890626],[105.912345,32.0199636054688],[105.922345,32.0177223945313],[105.933118925781,32.0201369453125],[105.945797148438,31.986255109375],[105.966942167969,31.9909938789063],[105.957345,32.013843],[105.987762480469,32.0225392890625],[106.005064726563,32.0519753242188],[106.001666289063,32.0793068671876],[106.047454863281,32.1114943671876],[106.068465605469,32.1377297187501],[106.117345,32.143843],[106.132899199219,32.1393971992188],[106.150792265625,32.1170510078125],[106.186922636719,32.1382888007813],[106.202899199219,32.1293971992188],[106.217366972656,32.1113283515625],[106.242596464844,32.108188703125],[106.312899199219,32.1282888007813],[106.335155058594,32.1560817695313],[106.384610625,32.1622341132813],[106.416239042969,32.1227370429688],[106.433023710938,32.1092971015626],[106.429107695313,32.077817609375],[106.453211699219,32.0808156562501],[106.451102324219,32.063843],[106.452967558594,32.048843],[106.451695585938,32.0386257148438],[106.467345,31.983843],[106.444705839844,31.9792726875],[106.457345,31.953843],[106.437423125,31.943764875],[106.423985625,31.9172023750001],[106.417345,31.913843]]]]}},{"type":"Feature","properties":{"name":"朝天区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.083922148438,32.7760353828125],[106.087345,32.7638430000001],[106.075152617188,32.7672658515625],[106.083922148438,32.7760353828125]]],[[[106.042799101563,32.8595217109375],[106.06068484375,32.83718284375],[106.091241484375,32.8127150703125],[106.093026152344,32.7983669257813],[106.0571496875,32.7765749335938],[106.073299589844,32.7564089179688],[106.111790800781,32.7282888007813],[106.132899199219,32.7193971992188],[106.151986113281,32.7081764960938],[106.162799101563,32.7095217109375],[106.171790800781,32.6982888007813],[106.252899199219,32.6893971992188],[106.271790800781,32.6782888007813],[106.287345,32.673843],[106.294459257813,32.6288649726563],[106.261790800781,32.6192775703125],[106.263214140625,32.6053127265625],[106.251632109375,32.55308128125],[106.206961699219,32.4993044257813],[106.191883574219,32.5083815742188],[106.175631132813,32.5279470039063],[106.162806425781,32.4983815742187],[106.157345,32.493843],[106.132679472656,32.5093874335938],[106.113533964844,32.5074343085938],[106.092181425781,32.5196633125],[106.082508574219,32.5080226875001],[106.062667265625,32.5193849921875],[105.978199492188,32.51077659375],[105.955047636719,32.5386476875],[105.91322390625,32.5509206367188],[105.901954375,32.5373537421875],[105.862886992188,32.5413356757813],[105.822667265625,32.5183010078125],[105.806649199219,32.5199343085938],[105.756839628906,32.4840871406251],[105.712667265625,32.5093849921875],[105.701954375,32.5082936835938],[105.69107546875,32.5213893867187],[105.694757109375,32.5575051093751],[105.671807890625,32.6185768867188],[105.673363066406,32.633843],[105.671373320313,32.6533791328126],[105.627345,32.683843],[105.627345,32.703843],[105.63369265625,32.7117702460938],[105.672899199219,32.7282888007813],[105.713287382813,32.7605910468751],[105.732628203125,32.7581862617188],[105.762459746094,32.769653546875],[105.796173125,32.7498366523438],[105.812899199219,32.7782888007813],[105.821795683594,32.8194069648437],[105.892127714844,32.8394924140625],[105.935719023438,32.8340700507813],[105.962230253906,32.849653546875],[106.001807890625,32.8344411445313],[106.021890898438,32.8595217109375],[106.032345,32.8582204414063],[106.042799101563,32.8595217109375]]]]}},{"type":"Feature","properties":{"name":"剑阁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.637345,32.213843],[105.625152617188,32.2104201484376],[105.633922148438,32.2016506171875],[105.67170046875,32.18819846875],[105.711011992188,32.1721096015625],[105.680611601563,32.1486452460938],[105.72170046875,32.1318288398438],[105.71298953125,32.11819846875],[105.701529570313,32.1093556953125],[105.703140898438,32.098452375],[105.691170683594,32.078608625],[105.703519316406,32.069077375],[105.691549101563,32.049233625],[105.693167753906,32.0382717109375],[105.660179472656,32.024770734375],[105.667345,31.993843],[105.655152617188,31.9904201484376],[105.663922148438,31.9816506171876],[105.667345,31.993843],[105.673985625,31.990483625],[105.680704375,31.977202375],[105.694295683594,31.970327375],[105.709185820313,31.9398342109375],[105.697345,31.9338430000001],[105.693922148438,31.9460353828126],[105.685152617188,31.9372658515625],[105.697345,31.9338430000001],[105.710858183594,31.9068947578125],[105.732835722656,31.8961598945313],[105.770704375,31.930483625],[105.793985625,31.937202375],[105.802345,31.9537258125],[105.807345,31.943843],[105.823865996094,31.918843],[105.791121855469,31.8692946601563],[105.794503203125,31.8542116523438],[105.783260527344,31.8379274726563],[105.753260527344,31.8267018867188],[105.761429472656,31.7979274726563],[105.77572390625,31.7759767890626],[105.763260527344,31.7579274726563],[105.751429472656,31.7497585273438],[105.743016386719,31.7375710273438],[105.731529570313,31.7401467109375],[105.727345,31.723843],[105.720535917969,31.7196486640625],[105.723902617188,31.708843],[105.717672148438,31.688843],[105.725155058594,31.6648171210938],[105.684307890625,31.6396486640625],[105.694154082031,31.6080373359375],[105.687345,31.603843],[105.652445097656,31.6093630195313],[105.634107695313,31.6074929023438],[105.612806425781,31.5583815742188],[105.605819121094,31.5493044257813],[105.589058867188,31.5879470039063],[105.572735625,31.5682936835938],[105.562345,31.5693532539063],[105.542345,31.5673146796875],[105.504256621094,31.5711965156251],[105.457345,31.533843],[105.411285429688,31.5466701484376],[105.413167753906,31.5594142890625],[105.39170046875,31.56819846875],[105.382711210938,31.6211135078125],[105.36205203125,31.61806175],[105.330374785156,31.6305153632812],[105.336702910156,31.6733303046875],[105.32170046875,31.69819846875],[105.312733183594,31.7201100898438],[105.29298953125,31.7081984687501],[105.24298953125,31.705044171875],[105.27298953125,31.72819846875],[105.28170046875,31.73948753125],[105.30298953125,31.7481984687501],[105.31170046875,31.7627614570313],[105.291529570313,31.7783303046875],[105.293880644531,31.794243390625],[105.252345,31.7881032539063],[105.240282011719,31.7898854804688],[105.245614042969,31.82597190625],[105.201422148438,31.83827659375],[105.215125761719,31.8974245429687],[105.177345,31.903843],[105.203001738281,31.948969953125],[105.181812773438,31.9672243476563],[105.182769804688,31.9791213203125],[105.171641875,31.999067609375],[105.195655546875,32.0097829414063],[105.212345,32.0084401679688],[105.232020292969,32.0100221992188],[105.242020292969,31.9984157539063],[105.255106230469,31.9994655585938],[105.249032011719,32.0750685859375],[105.277445097656,32.115141828125],[105.261541777344,32.128843],[105.27271609375,32.1384719062501],[105.277345,32.143843],[105.31084109375,32.163344953125],[105.363680449219,32.2002541328125],[105.401995878906,32.1979689765625],[105.402642851563,32.208843],[105.402047148438,32.218843],[105.4026575,32.229067609375],[105.387718535156,32.2565554023438],[105.487345,32.3438430000001],[105.504801054688,32.3412990546875],[105.529888945313,32.3163869453125],[105.564801054688,32.3112990546875],[105.567345,32.303843],[105.57138796875,32.2871681953126],[105.589945097656,32.2923830390625],[105.596561308594,32.2688430000001],[105.584288359375,32.2251735664063],[105.612764921875,32.2331764960938],[105.633441191406,32.2199391914063],[105.637345,32.213843]]]]}},{"type":"Feature","properties":{"name":"利州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.671807890625,32.6185768867188],[105.694757109375,32.5575051093751],[105.69107546875,32.5213893867187],[105.701954375,32.5082936835938],[105.712667265625,32.5093849921875],[105.756839628906,32.4840871406251],[105.806649199219,32.5199343085938],[105.822667265625,32.5183010078125],[105.862886992188,32.5413356757813],[105.901954375,32.5373537421875],[105.91322390625,32.5509206367188],[105.955047636719,32.5386476875],[105.978199492188,32.51077659375],[106.062667265625,32.5193849921875],[106.082508574219,32.5080226875001],[106.092181425781,32.5196633125],[106.113533964844,32.5074343085938],[106.132679472656,32.5093874335938],[106.157345,32.493843],[106.152921171875,32.4678054023438],[106.1127746875,32.4380397773438],[106.06298953125,32.4453981757812],[106.08170046875,32.40819846875],[106.09298953125,32.39948753125],[106.10170046875,32.36819846875],[106.14170046875,32.3570607734375],[106.10298953125,32.32819846875],[106.077345,32.3138430000001],[106.04197390625,32.31847190625],[105.969735136719,32.3782253242188],[105.95271609375,32.35847190625],[105.93197390625,32.34921409375],[105.920789824219,32.3120729804688],[105.89197390625,32.29921409375],[105.881373320313,32.2869118476563],[105.826766386719,32.2912990546876],[105.80271609375,32.31921409375],[105.790330839844,32.3298854804688],[105.771998320313,32.3284133125],[105.758038359375,32.359702375],[105.742105742188,32.358423078125],[105.694039335938,32.3760744453125],[105.682345,32.3896462226563],[105.67271609375,32.37847190625],[105.6519153125,32.3691896796876],[105.654324980469,32.3391896796875],[105.591226835938,32.3110329414063],[105.567345,32.303843],[105.564801054688,32.3112990546875],[105.529888945313,32.3163869453125],[105.504801054688,32.3412990546875],[105.487345,32.3438430000001],[105.499796171875,32.375512921875],[105.446143828125,32.38819846875],[105.405286894531,32.3635524726562],[105.381033964844,32.3949733710937],[105.386595488281,32.4325978828126],[105.414837675781,32.4706911445313],[105.432345,32.4681032539062],[105.452345,32.471059796875],[105.479906035156,32.46698753125],[105.521527128906,32.4833498359375],[105.54170046875,32.50948753125],[105.55298953125,32.5181984687501],[105.56170046875,32.5527614570312],[105.54170046875,32.56819846875],[105.530667753906,32.5824929023438],[105.536495390625,32.6219240546875],[105.587345,32.6144094062501],[105.60170046875,32.64948753125],[105.627345,32.683843],[105.671373320313,32.6533791328126],[105.673363066406,32.633843],[105.671807890625,32.6185768867188]]]]}},{"type":"Feature","properties":{"name":"青川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.563616972656,32.7695143867188],[105.553819609375,32.7258107734375],[105.582345,32.7322048164063],[105.591429472656,32.7079274726563],[105.627345,32.703843],[105.627345,32.683843],[105.60170046875,32.64948753125],[105.587345,32.6144094062501],[105.536495390625,32.6219240546875],[105.530667753906,32.5824929023438],[105.54170046875,32.56819846875],[105.56170046875,32.5527614570312],[105.55298953125,32.5181984687501],[105.54170046875,32.50948753125],[105.521527128906,32.4833498359375],[105.479906035156,32.46698753125],[105.452345,32.471059796875],[105.432345,32.4681032539062],[105.414837675781,32.4706911445313],[105.386595488281,32.4325978828126],[105.381033964844,32.3949733710937],[105.405286894531,32.3635524726562],[105.446143828125,32.38819846875],[105.499796171875,32.375512921875],[105.487345,32.3438430000001],[105.387718535156,32.2565554023438],[105.4026575,32.229067609375],[105.402047148438,32.218843],[105.402642851563,32.208843],[105.401995878906,32.1979689765625],[105.363680449219,32.2002541328125],[105.31084109375,32.163344953125],[105.277345,32.143843],[105.273260527344,32.1497585273438],[105.249215117188,32.1663600898438],[105.265474882813,32.1913259101563],[105.24060671875,32.2084963203125],[105.253565703125,32.2283962226563],[105.251124296875,32.2392897773438],[105.263260527344,32.2579274726563],[105.271429472656,32.2819997382813],[105.252345,32.2777223945313],[105.235980253906,32.2813918281251],[105.253638945313,32.3085060859376],[105.247782011719,32.3279274726563],[105.174097929688,32.3050881171876],[105.152345,32.3099636054688],[105.142345,32.3077223945313],[105.108570585938,32.3152931953125],[105.072850371094,32.2876100898437],[105.041673613281,32.2945973945313],[105.019176054688,32.2620119453126],[104.987345,32.253843],[104.993328886719,32.2690651679688],[104.961256132813,32.3087502265625],[104.978861113281,32.3379323554687],[104.911900664063,32.3280373359375],[104.869698515625,32.3621462226562],[104.842345,32.3581032539063],[104.825435820313,32.3606032539063],[104.768839140625,32.4025612617188],[104.749251738281,32.4729079414063],[104.753084746094,32.4988430000001],[104.747340117188,32.5377053046875],[104.688175078125,32.5619216132813],[104.661820097656,32.5580275703125],[104.63298953125,32.5994875312501],[104.617139921875,32.6117189765625],[104.627345,32.673843],[104.650250273438,32.66483909375],[104.702857695313,32.67261253125],[104.72170046875,32.64819846875],[104.735994902344,32.6371657539063],[104.782345,32.6440163398438],[104.835611601563,32.6649562812501],[104.877904082031,32.6101638007813],[104.898546171875,32.5994875312501],[104.93170046875,32.61948753125],[105.021458769531,32.6511916328126],[105.072000761719,32.6437209296876],[105.107738066406,32.5974221015625],[105.148543730469,32.603452375],[105.201954375,32.6356716132813],[105.214056425781,32.665239484375],[105.28978640625,32.654048078125],[105.30170046875,32.66948753125],[105.340941191406,32.6855471015625],[105.358795195313,32.708676984375],[105.39298953125,32.71819846875],[105.442608671875,32.7377053046875],[105.457017851563,32.7563771796875],[105.42584109375,32.7804421210938],[105.397345,32.833843],[105.379720488281,32.878676984375],[105.40298953125,32.8881984687501],[105.416912871094,32.93819846875],[105.477369414063,32.9267678046876],[105.487345,32.913843],[105.491810332031,32.8745680976563],[105.516058378906,32.857827375],[105.531429472656,32.7979274726563],[105.553638945313,32.7896169257813],[105.551073027344,32.7781716132813],[105.563616972656,32.7695143867188]]]]}},{"type":"Feature","properties":{"name":"旺苍县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.642154570313,32.6386525703125],[106.652550078125,32.6190065742188],[106.651949492188,32.603843],[106.653929472656,32.553843],[106.651756621094,32.4990212226563],[106.682064238281,32.4709401679688],[106.682542753906,32.4588430000001],[106.681317167969,32.4279396796875],[106.692157011719,32.348637921875],[106.703939238281,32.3491042304688],[106.732166777344,32.3186379218751],[106.75134890625,32.3193971992188],[106.771824980469,32.30042503125],[106.712139921875,32.2890309882813],[106.7129309375,32.2690651679688],[106.697345,32.2684474921875],[106.672523222656,32.2694313789063],[106.655577421875,32.2511428046875],[106.558824492188,32.232671125],[106.562933378906,32.1290212226563],[106.536156035156,32.1042092109375],[106.562154570313,32.080122296875],[106.54240359375,32.0786428046876],[106.52334109375,32.0793971992188],[106.512154570313,32.0690334296876],[106.502535429688,32.0286525703125],[106.492154570313,32.0190334296875],[106.481920195313,31.9973464179688],[106.467345,31.983843],[106.451695585938,32.0386257148438],[106.452967558594,32.048843],[106.451102324219,32.063843],[106.453211699219,32.0808156562501],[106.429107695313,32.077817609375],[106.433023710938,32.1092971015626],[106.416239042969,32.1227370429688],[106.384610625,32.1622341132813],[106.335155058594,32.1560817695313],[106.312899199219,32.1282888007813],[106.242596464844,32.108188703125],[106.217366972656,32.1113283515625],[106.202899199219,32.1293971992188],[106.186922636719,32.1382888007813],[106.150792265625,32.1170510078125],[106.132899199219,32.1393971992188],[106.117345,32.143843],[106.109793730469,32.1732717109376],[106.057271757813,32.1512111640625],[106.069071074219,32.203843],[106.030108671875,32.2184206367188],[105.98103640625,32.2280031562501],[105.98490359375,32.2452516914063],[106.003260527344,32.2579274726563],[106.011429472656,32.2697585273438],[106.023260527344,32.2779274726562],[106.031429472656,32.2897585273437],[106.070916777344,32.3045339179688],[106.077345,32.3138430000001],[106.10298953125,32.32819846875],[106.14170046875,32.3570607734375],[106.10170046875,32.36819846875],[106.09298953125,32.39948753125],[106.08170046875,32.40819846875],[106.06298953125,32.4453981757812],[106.1127746875,32.4380397773438],[106.152921171875,32.4678054023438],[106.157345,32.493843],[106.162806425781,32.4983815742187],[106.175631132813,32.5279470039063],[106.191883574219,32.5083815742188],[106.206961699219,32.4993044257813],[106.251632109375,32.55308128125],[106.263214140625,32.6053127265625],[106.261790800781,32.6192775703125],[106.294459257813,32.6288649726563],[106.287345,32.673843],[106.291741972656,32.6799782539063],[106.361463652344,32.666001203125],[106.394671660156,32.6196681953125],[106.423170195313,32.6280178046875],[106.451519804688,32.6496681953125],[106.493170195313,32.6580178046875],[106.511519804688,32.6696681953126],[106.527345,32.673843],[106.56271609375,32.6784719062501],[106.582083769531,32.6892775703125],[106.637345,32.683843],[106.642154570313,32.6386525703125]]]]}},{"type":"Feature","properties":{"name":"元坝区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.697345,31.9338430000001],[105.685152617188,31.9372658515625],[105.693922148438,31.9460353828126],[105.697345,31.9338430000001]]],[[[105.667345,31.993843],[105.663922148438,31.9816506171876],[105.655152617188,31.9904201484376],[105.667345,31.993843]]],[[[105.637345,32.213843],[105.633922148438,32.2016506171875],[105.625152617188,32.2104201484376],[105.637345,32.213843]]],[[[105.957345,32.013843],[105.953922148438,32.0260353828126],[105.945152617188,32.0172658515625],[105.966942167969,31.9909938789063],[105.945797148438,31.986255109375],[105.933118925781,32.0201369453125],[105.922345,32.0177223945313],[105.912345,32.0199636054688],[105.897345,32.0166017890626],[105.882345,32.0199636054688],[105.872345,32.0177223945313],[105.858538847656,32.0208180976563],[105.866158476563,31.98683128125],[105.839132109375,31.9681716132813],[105.846756621094,31.9341628242188],[105.807345,31.943843],[105.802345,31.9537258125],[105.793985625,31.937202375],[105.770704375,31.930483625],[105.732835722656,31.8961598945313],[105.710858183594,31.9068947578125],[105.697345,31.9338430000001],[105.709185820313,31.9398342109375],[105.694295683594,31.970327375],[105.680704375,31.977202375],[105.673985625,31.990483625],[105.667345,31.993843],[105.660179472656,32.024770734375],[105.693167753906,32.0382717109375],[105.691549101563,32.049233625],[105.703519316406,32.069077375],[105.691170683594,32.078608625],[105.703140898438,32.098452375],[105.701529570313,32.1093556953125],[105.71298953125,32.11819846875],[105.72170046875,32.1318288398438],[105.680611601563,32.1486452460938],[105.711011992188,32.1721096015625],[105.67170046875,32.18819846875],[105.637345,32.213843],[105.633441191406,32.2199391914063],[105.612764921875,32.2331764960938],[105.584288359375,32.2251735664063],[105.596561308594,32.2688430000001],[105.589945097656,32.2923830390625],[105.57138796875,32.2871681953126],[105.567345,32.303843],[105.591226835938,32.3110329414063],[105.654324980469,32.3391896796875],[105.6519153125,32.3691896796876],[105.67271609375,32.37847190625],[105.682345,32.3896462226563],[105.694039335938,32.3760744453125],[105.742105742188,32.358423078125],[105.758038359375,32.359702375],[105.771998320313,32.3284133125],[105.790330839844,32.3298854804688],[105.80271609375,32.31921409375],[105.826766386719,32.2912990546876],[105.881373320313,32.2869118476563],[105.89197390625,32.29921409375],[105.920789824219,32.3120729804688],[105.93197390625,32.34921409375],[105.95271609375,32.35847190625],[105.969735136719,32.3782253242188],[106.04197390625,32.31847190625],[106.077345,32.3138430000001],[106.070916777344,32.3045339179688],[106.031429472656,32.2897585273437],[106.023260527344,32.2779274726562],[106.011429472656,32.2697585273438],[106.003260527344,32.2579274726563],[105.98490359375,32.2452516914063],[105.98103640625,32.2280031562501],[106.030108671875,32.2184206367188],[106.069071074219,32.203843],[106.057271757813,32.1512111640625],[106.109793730469,32.1732717109376],[106.117345,32.143843],[106.068465605469,32.1377297187501],[106.047454863281,32.1114943671876],[106.001666289063,32.0793068671876],[106.005064726563,32.0519753242188],[105.987762480469,32.0225392890625],[105.957345,32.013843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"安居区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.432899199219,30.5493971992188],[105.442799101563,30.5370339179688],[105.488748808594,30.54274925],[105.493023710938,30.5083888984375],[105.480887480469,30.4986721015626],[105.50302859375,30.4893410468751],[105.500479765625,30.468843],[105.528175078125,30.457173078125],[105.572323027344,30.38448753125],[105.632928496094,30.3920241523438],[105.662899199219,30.3793971992188],[105.672799101563,30.3670339179688],[105.692345,30.3694655585938],[105.702345,30.3682204414063],[105.712825957031,30.3695241523438],[105.727345,30.343843],[105.727345,30.3338430000001],[105.727345,30.3238430000001],[105.711517363281,30.3194362617188],[105.713084746094,30.308843],[105.710203886719,30.2893556953126],[105.724486113281,30.2783303046876],[105.721302519531,30.2567800117188],[105.697345,30.2603200507813],[105.673922148438,30.256860578125],[105.646832304688,30.2732009101563],[105.610282011719,30.2678005195313],[105.615133085938,30.2349806953126],[105.654078398438,30.2190407539063],[105.64170046875,30.20948753125],[105.63298953125,30.1881984687501],[105.572432890625,30.1779128242188],[105.557345,30.183843],[105.552899199219,30.1993971992188],[105.538741484375,30.223481671875],[105.512345,30.2079640937501],[105.485369902344,30.2238210273438],[105.465904570313,30.248130109375],[105.422596464844,30.2663771796876],[105.412345,30.290708234375],[105.36334109375,30.284614484375],[105.352843046875,30.3095265937501],[105.342345,30.3082204414063],[105.332127714844,30.3094924140625],[105.261803007813,30.2894118476562],[105.257345,30.2838430000001],[105.232486601563,30.2896022773438],[105.221773710938,30.2880202460938],[105.212916289063,30.3096657539063],[105.20205203125,30.30806175],[105.152081328125,30.3277053046875],[105.14298953125,30.33948753125],[105.12170046875,30.34819846875],[105.09298953125,30.39948753125],[105.081449003906,30.40839378125],[105.087345,30.433843],[105.113116484375,30.4414064765626],[105.153238554688,30.4702809882813],[105.172611113281,30.4683058906251],[105.22545046875,30.4881618476563],[105.248006621094,30.4610085273438],[105.265269804688,30.4493044257813],[105.282735625,30.4703322578125],[105.307345,30.4678249335938],[105.323807402344,30.4695021796875],[105.321790800781,30.4892775703125],[105.352806425781,30.4983815742188],[105.381932402344,30.5493947578125],[105.403604765625,30.5471852851563],[105.397345,30.563843],[105.407345,30.563843],[105.407345,30.583843],[105.412899199219,30.5793971992188],[105.421790800781,30.5582888007813],[105.432899199219,30.5493971992188]]]]}},{"type":"Feature","properties":{"name":"船山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.740152617188,30.3288430000001],[105.727345,30.3238430000001],[105.727345,30.3338430000001],[105.740152617188,30.3288430000001]]],[[[105.407345,30.583843],[105.407345,30.563843],[105.397345,30.563843],[105.384100371094,30.5711013007813],[105.407345,30.583843]]],[[[105.407345,30.583843],[105.410704375,30.600483625],[105.428658476563,30.6230861640625],[105.443336210938,30.6159181953125],[105.450704375,30.630483625],[105.479771757813,30.638872296875],[105.487345,30.653843],[105.50298953125,30.64948753125],[105.53205203125,30.6380617500001],[105.542735625,30.6396388984375],[105.562120390625,30.6279470039063],[105.602569609375,30.6397389960938],[105.627857695313,30.6244850898438],[105.662345,30.6295827460938],[105.675484648438,30.6276393867188],[105.719886503906,30.6544240546875],[105.733214140625,30.6087136054688],[105.71170046875,30.55948753125],[105.702957792969,30.508012921875],[105.675064726563,30.5121364570313],[105.65298953125,30.4581984687501],[105.63298953125,30.4427614570313],[105.652186308594,30.43808128125],[105.688533964844,30.4434523750001],[105.70298953125,30.41948753125],[105.712633085938,30.3959206367188],[105.754945097656,30.4214430976563],[105.751529570313,30.3983303046876],[105.757345,30.393843],[105.764989042969,30.3784645820312],[105.749713164063,30.3592336250001],[105.755494414063,30.3473928046876],[105.727345,30.343843],[105.712825957031,30.3695241523438],[105.702345,30.3682204414063],[105.692345,30.3694655585938],[105.672799101563,30.3670339179688],[105.662899199219,30.3793971992188],[105.632928496094,30.3920241523438],[105.572323027344,30.38448753125],[105.528175078125,30.457173078125],[105.500479765625,30.468843],[105.50302859375,30.4893410468751],[105.480887480469,30.4986721015626],[105.493023710938,30.5083888984375],[105.488748808594,30.54274925],[105.442799101563,30.5370339179688],[105.432899199219,30.5493971992188],[105.421790800781,30.5582888007813],[105.412899199219,30.5793971992188],[105.407345,30.583843]]]]}},{"type":"Feature","properties":{"name":"大英县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.457345,30.6738430000001],[105.42439578125,30.6695607734376],[105.450260039063,30.6603932929688],[105.487345,30.6738430000001],[105.487345,30.653843],[105.479771757813,30.638872296875],[105.450704375,30.630483625],[105.443336210938,30.6159181953125],[105.428658476563,30.6230861640625],[105.410704375,30.600483625],[105.407345,30.583843],[105.384100371094,30.5711013007813],[105.397345,30.563843],[105.403604765625,30.5471852851563],[105.381932402344,30.5493947578125],[105.352806425781,30.4983815742188],[105.321790800781,30.4892775703125],[105.323807402344,30.4695021796875],[105.307345,30.4678249335938],[105.282735625,30.4703322578125],[105.265269804688,30.4493044257813],[105.248006621094,30.4610085273438],[105.22545046875,30.4881618476563],[105.172611113281,30.4683058906251],[105.153238554688,30.4702809882813],[105.113116484375,30.4414064765626],[105.087345,30.433843],[105.069495878906,30.438423078125],[105.085557890625,30.4495143867188],[105.074835234375,30.49733909375],[105.061429472656,30.5179274726563],[105.057345,30.533843],[105.066068144531,30.5413576484375],[105.142796660156,30.6482155585938],[105.141165800781,30.6685182929688],[105.162154570313,30.6866017890626],[105.167345,30.7038430000001],[105.172767363281,30.7249684882813],[105.207345,30.733843],[105.198433867188,30.6953884101563],[105.218426542969,30.66948753125],[105.24298953125,30.6781984687501],[105.283453398438,30.70819846875],[105.293490019531,30.699028546875],[105.27502078125,30.6684133125],[105.34298953125,30.64948753125],[105.353485136719,30.6358864570313],[105.374451933594,30.6630495429688],[105.40170046875,30.67948753125],[105.437345,30.693843],[105.45062625,30.68712425],[105.457345,30.6738430000001]]]]}},{"type":"Feature","properties":{"name":"蓬溪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.457345,30.6738430000001],[105.450260039063,30.6603932929688],[105.42439578125,30.6695607734376],[105.457345,30.6738430000001]]],[[[105.987345,30.4038430000001],[105.975152617188,30.4004201484375],[105.983922148438,30.3916506171876],[105.997345,30.4038430000001],[105.997345,30.373843],[105.977345,30.373843],[105.962359648438,30.3812917304687],[105.947279082031,30.3739260078125],[105.887410917969,30.4037599921875],[105.871353789063,30.3959181953126],[105.863045683594,30.4123439765626],[105.841317167969,30.3950807929687],[105.833985625,30.4204836250001],[105.816031523438,30.4430861640625],[105.7907825,30.4307546210938],[105.783985625,30.407202375],[105.757345,30.393843],[105.751529570313,30.3983303046876],[105.754945097656,30.4214430976563],[105.712633085938,30.3959206367188],[105.70298953125,30.41948753125],[105.688533964844,30.4434523750001],[105.652186308594,30.43808128125],[105.63298953125,30.4427614570313],[105.65298953125,30.4581984687501],[105.675064726563,30.5121364570313],[105.702957792969,30.508012921875],[105.71170046875,30.55948753125],[105.733214140625,30.6087136054688],[105.719886503906,30.6544240546875],[105.675484648438,30.6276393867188],[105.662345,30.6295827460938],[105.627857695313,30.6244850898438],[105.602569609375,30.6397389960938],[105.562120390625,30.6279470039063],[105.542735625,30.6396388984375],[105.53205203125,30.6380617500001],[105.50298953125,30.64948753125],[105.487345,30.653843],[105.487345,30.6738430000001],[105.457345,30.6738430000001],[105.45062625,30.68712425],[105.437345,30.693843],[105.442779570313,30.7258351875001],[105.47298953125,30.73819846875],[105.49170046875,30.74948753125],[105.523990507813,30.7627028632813],[105.52045046875,30.7866677070313],[105.54170046875,30.79948753125],[105.563167753906,30.8082717109376],[105.561141386719,30.8219826484376],[105.58298953125,30.85819846875],[105.608353300781,30.920171125],[105.622379179688,30.9180983710937],[105.657345,30.923843],[105.678873320313,30.9345436835938],[105.700704375,30.9172023750001],[105.729771757813,30.9088137031251],[105.737345,30.8938430000001],[105.728590117188,30.8700026679688],[105.75271609375,30.84921409375],[105.76197390625,30.8384719062501],[105.77271609375,30.82921409375],[105.78197390625,30.81847190625],[105.792996855469,30.8089723945313],[105.781219511719,30.7878615546876],[105.782747832031,30.768843],[105.781304960938,30.7509084296875],[105.79271609375,30.70921409375],[105.814920683594,30.6114772773438],[105.85197390625,30.56847190625],[105.881678496094,30.5552150703125],[105.840765410156,30.4975099921875],[105.870330839844,30.4998854804688],[105.883524199219,30.4885182929687],[105.881170683594,30.4592140937501],[105.913360625,30.4686598945313],[105.901541777344,30.4788430000001],[105.91271609375,30.48847190625],[105.922345,30.5100490546875],[105.942345,30.5084401679688],[105.952684355469,30.5092726875001],[105.967345,30.4838430000001],[105.963985625,30.4572023750001],[105.943985625,30.4470851875],[105.959119902344,30.4248244453125],[105.97334109375,30.4317702460938],[105.987345,30.4038430000001]],[[105.947345,30.4838430000001],[105.941910429688,30.4965407539063],[105.924346953125,30.487895734375],[105.947345,30.4838430000001]]]]}},{"type":"Feature","properties":{"name":"射洪县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.377340117188,31.1447829414062],[105.393270292969,31.103481671875],[105.416534453125,31.0710231757813],[105.473170195313,31.0596681953126],[105.481519804688,31.0480178046875],[105.493170195313,31.0396681953125],[105.504205351563,31.0242702460937],[105.532869902344,31.0299343085937],[105.595213652344,30.9747487617188],[105.617345,30.983843],[105.641429472656,30.9479274726563],[105.653260527344,30.9397585273438],[105.657345,30.923843],[105.622379179688,30.9180983710937],[105.608353300781,30.920171125],[105.58298953125,30.85819846875],[105.561141386719,30.8219826484376],[105.563167753906,30.8082717109376],[105.54170046875,30.79948753125],[105.52045046875,30.7866677070313],[105.523990507813,30.7627028632813],[105.49170046875,30.74948753125],[105.47298953125,30.73819846875],[105.442779570313,30.7258351875001],[105.437345,30.693843],[105.40170046875,30.67948753125],[105.374451933594,30.6630495429688],[105.353485136719,30.6358864570313],[105.34298953125,30.64948753125],[105.27502078125,30.6684133125],[105.293490019531,30.699028546875],[105.283453398438,30.70819846875],[105.24298953125,30.6781984687501],[105.218426542969,30.66948753125],[105.198433867188,30.6953884101563],[105.207345,30.733843],[105.268851347656,30.7415358710938],[105.2584778125,30.824926984375],[105.232530546875,30.8457057929688],[105.222899199219,30.8793971992188],[105.186151152344,30.8948805976563],[105.20334109375,30.9086428046875],[105.180345488281,30.9477638984375],[105.18814578125,31.0104714179688],[105.167352324219,31.0458425117188],[105.194378691406,31.0674831367188],[105.190863066406,31.0957546210937],[105.270772734375,31.1096608710938],[105.291890898438,31.1070339179688],[105.297345,31.113843],[105.313170195313,31.1180178046876],[105.321636992188,31.1399709296876],[105.335445585938,31.1372414375],[105.357503691406,31.1680178046875],[105.377340117188,31.1447829414062]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"隆昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.197345,29.2238430000001],[105.193922148438,29.2116506171875],[105.185152617188,29.2204201484375],[105.197345,29.2238430000001]]],[[[105.337345,29.4538430000001],[105.325152617188,29.4504201484375],[105.333922148438,29.4416506171875],[105.353199492188,29.4462795234375],[105.364276152344,29.4664870429688],[105.400589628906,29.4465846992188],[105.366605253906,29.4279567695313],[105.425662871094,29.4200539375],[105.43646609375,29.393843],[105.430284453125,29.3788430000001],[105.43478640625,29.3679225898438],[105.420885039063,29.3603029609375],[105.417345,29.313843],[105.399642363281,29.3086476875],[105.381954375,29.2873537421876],[105.36213015625,29.2893752265626],[105.316771269531,29.2766921210938],[105.282806425781,29.1983815742188],[105.267345,29.193843],[105.232667265625,29.2100368476563],[105.221893339844,29.2076198554687],[105.197345,29.2238430000001],[105.189881621094,29.2529274726563],[105.131429472656,29.2679274726562],[105.123260527344,29.2797585273438],[105.111073027344,29.2881716132812],[105.116158476563,29.31085471875],[105.097345,29.323843],[105.09170046875,29.32819846875],[105.08298953125,29.33948753125],[105.07170046875,29.3481984687501],[105.042386503906,29.3861794257812],[105.03298953125,29.413921125],[105.072784453125,29.4080397773438],[105.08170046875,29.415044171875],[105.061395292969,29.4487062812501],[105.067345,29.463843],[105.087274199219,29.4737502265625],[105.097345,29.4538430000001],[105.085152617188,29.4504201484375],[105.093922148438,29.4416506171875],[105.097345,29.4538430000001],[105.122303496094,29.4477126289063],[105.147345,29.4533254218751],[105.173016386719,29.4475710273438],[105.181429472656,29.4597585273438],[105.213814726563,29.4718752265626],[105.232345,29.4677223945313],[105.242345,29.4699636054688],[105.262059355469,29.4655446601563],[105.271429472656,29.4841188789063],[105.251429472656,29.4979274726563],[105.247345,29.533843],[105.272686796875,29.5170973945313],[105.281429472656,29.5297585273438],[105.287345,29.533843],[105.311732207031,29.5275856757813],[105.321429472656,29.4779274726563],[105.333260527344,29.4697585273438],[105.337345,29.4538430000001]]],[[[105.247345,29.533843],[105.235152617188,29.5372658515625],[105.243922148438,29.5460353828126],[105.247345,29.533843]]]]}},{"type":"Feature","properties":{"name":"东兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.097345,29.4538430000001],[105.093922148438,29.4416506171875],[105.085152617188,29.4504201484375],[105.097345,29.4538430000001]]],[[[105.007345,29.513843],[104.997345,29.513843],[104.997345,29.5238430000001],[105.007345,29.5238430000001],[105.007345,29.513843]]],[[[104.997345,29.5238430000001],[104.985152617188,29.5272658515625],[104.993922148438,29.5360353828125],[104.997345,29.5238430000001]]],[[[105.317345,29.6038430000001],[105.327345,29.6038430000001],[105.322345,29.5910353828125],[105.317345,29.6038430000001]]],[[[105.327345,29.6038430000001],[105.322345,29.6166506171875],[105.317345,29.6038430000001],[105.309888945313,29.6012990546875],[105.304801054688,29.5763869453125],[105.289888945313,29.5612990546875],[105.287345,29.533843],[105.281429472656,29.5297585273438],[105.272686796875,29.5170973945313],[105.247345,29.533843],[105.243922148438,29.5460353828126],[105.235152617188,29.5372658515625],[105.247345,29.533843],[105.251429472656,29.4979274726563],[105.271429472656,29.4841188789063],[105.262059355469,29.4655446601563],[105.242345,29.4699636054688],[105.232345,29.4677223945313],[105.213814726563,29.4718752265626],[105.181429472656,29.4597585273438],[105.173016386719,29.4475710273438],[105.147345,29.4533254218751],[105.122303496094,29.4477126289063],[105.097345,29.4538430000001],[105.087274199219,29.4737502265625],[105.067345,29.463843],[105.047345,29.463843],[105.047345,29.4838430000001],[105.027345,29.4838430000001],[105.011815214844,29.4916994453125],[105.007345,29.513843],[105.037425566406,29.4943386054688],[105.031385527344,29.5294118476562],[105.043079863281,29.5381081367188],[105.053626738281,29.5522853828125],[105.08474734375,29.5104494453125],[105.101610136719,29.5461867500001],[105.071610136719,29.5581081367188],[105.062567167969,29.5914626289062],[105.039783964844,29.5875417304688],[105.022345,29.6314260078125],[104.999530058594,29.6274977851563],[105.006165800781,29.6660305],[104.977345,29.6738430000001],[104.993568144531,29.6983913398438],[104.989466582031,29.7166872382813],[105.058822050781,29.73448753125],[105.091707792969,29.7599733710938],[105.101429472656,29.8097585273437],[105.117345,29.8338430000001],[105.142899199219,29.8382888007813],[105.173551054688,29.85007346875],[105.230618925781,29.8377248359375],[105.232967558594,29.818843],[105.230548125,29.7993971992187],[105.282899199219,29.8082888007812],[105.294610625,29.8229152656251],[105.341890898438,29.8170339179688],[105.35834109375,29.8375734687501],[105.381790800781,29.8082888007812],[105.397547636719,29.7956716132813],[105.391673613281,29.7484499335938],[105.412899199219,29.7193971992188],[105.417345,29.6838430000001],[105.381522246094,29.6694142890625],[105.383084746094,29.658843],[105.378409453125,29.6272072578125],[105.350809355469,29.6312868476562],[105.33298953125,29.60819846875],[105.327345,29.6038430000001]]]]}},{"type":"Feature","properties":{"name":"市中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.007345,29.513843],[105.007345,29.5238430000001],[104.997345,29.5238430000001],[104.993922148438,29.5360353828125],[104.985152617188,29.5272658515625],[104.997345,29.5238430000001],[104.997345,29.513843],[105.011815214844,29.4916994453125],[105.027345,29.4838430000001],[105.033856230469,29.4683400703125],[105.021073027344,29.4595143867188],[105.024827910156,29.4427614570313],[105.002345,29.4377223945313],[104.992066679688,29.4400270820313],[104.954088164063,29.4240749335938],[104.933892851563,29.4533254218751],[104.919554472656,29.4325588203125],[104.863260527344,29.4697585273438],[104.847345,29.473843],[104.840704375,29.4772023750001],[104.829830351563,29.498696515625],[104.837205839844,29.513794171875],[104.862672148438,29.5013576484375],[104.870704375,29.5370851875],[104.850704375,29.5472023750001],[104.837345,29.573843],[104.89343875,29.5964357734375],[104.888836699219,29.6275856757813],[104.902857695313,29.6296584296875],[104.918060332031,29.6099587226563],[104.945657988281,29.6561037421875],[104.977345,29.6738430000001],[105.006165800781,29.6660305],[104.999530058594,29.6274977851563],[105.022345,29.6314260078125],[105.039783964844,29.5875417304688],[105.062567167969,29.5914626289062],[105.071610136719,29.5581081367188],[105.101610136719,29.5461867500001],[105.08474734375,29.5104494453125],[105.053626738281,29.5522853828125],[105.043079863281,29.5381081367188],[105.031385527344,29.5294118476562],[105.037425566406,29.4943386054688],[105.007345,29.513843]]]]}},{"type":"Feature","properties":{"name":"威远县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.787345,29.593843],[104.790767851563,29.6060353828125],[104.799537382813,29.5972658515625],[104.787345,29.593843]]],[[[104.787345,29.593843],[104.795523710938,29.5776784492188],[104.837345,29.573843],[104.850704375,29.5472023750001],[104.870704375,29.5370851875],[104.862672148438,29.5013576484375],[104.837205839844,29.513794171875],[104.829830351563,29.498696515625],[104.840704375,29.4772023750001],[104.847345,29.473843],[104.828924589844,29.4296901679688],[104.80259890625,29.4591555000001],[104.792345,29.4585451484375],[104.774859648438,29.4595876289063],[104.740638457031,29.4438796210938],[104.752625761719,29.3991237617188],[104.757345,29.3738430000001],[104.747345,29.3738430000001],[104.741541777344,29.3868337226562],[104.737345,29.363843],[104.701429472656,29.3679274726563],[104.693260527344,29.3797585273438],[104.663682890625,29.4001808906251],[104.643260527344,29.4297585273437],[104.613292265625,29.44097190625],[104.592345,29.4273317695313],[104.568621855469,29.4427785468751],[104.547345,29.433843],[104.543922148438,29.4460353828125],[104.535152617188,29.4372658515626],[104.547345,29.433843],[104.541317167969,29.4219264960938],[104.517345,29.433843],[104.505279570313,29.4632033515625],[104.537689238281,29.4567995429688],[104.5262121875,29.5148757148438],[104.504920683594,29.5484133125],[104.491519804688,29.5580178046876],[104.480416289063,29.6134011054688],[104.438551054688,29.6051296210938],[104.387811308594,29.6259792304688],[104.371658964844,29.5841042304687],[104.344132109375,29.5643727851563],[104.328995390625,29.5854933906251],[104.311519804688,29.5980178046876],[104.303170195313,29.6096681953125],[104.281519804688,29.6180178046875],[104.273170195313,29.6296681953125],[104.267345,29.633843],[104.28170046875,29.6694875312501],[104.29298953125,29.67819846875],[104.317738066406,29.7102638984376],[104.343436308594,29.7064650703125],[104.340391875,29.7270632148438],[104.392447539063,29.7498122382813],[104.426143828125,29.72948753125],[104.45298953125,29.74819846875],[104.463038359375,29.7842897773438],[104.497345,29.7938430000001],[104.523199492188,29.7777053046876],[104.568624296875,29.7813552070313],[104.58271609375,29.7692140937501],[104.592345,29.7580397773438],[104.602020292969,29.7692702460938],[104.612345,29.7684401679687],[104.632345,29.7700490546875],[104.650484648438,29.7293947578125],[104.662345,29.7284401679687],[104.672691679688,29.7292726875],[104.68197390625,29.70847190625],[104.693524199219,29.6985182929688],[104.691073027344,29.6680080390625],[104.712769804688,29.6291213203126],[104.711302519531,29.6108596015625],[104.787345,29.593843]]]]}},{"type":"Feature","properties":{"name":"资中县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.457345,30.003843],[104.453922148438,29.9916506171875],[104.445152617188,30.0004201484376],[104.457345,30.003843]]],[[[104.787345,29.8738430000001],[104.774537382813,29.8688430000001],[104.787345,29.863843],[104.792779570313,29.8511452460938],[104.810343046875,29.8597902656251],[104.787345,29.863843],[104.802330351563,29.8812917304688],[104.821353789063,29.8720021796875],[104.830704375,29.8904836250001],[104.857345,29.893843],[104.860767851563,29.8816506171875],[104.869537382813,29.8904201484376],[104.857345,29.893843],[104.87634890625,29.91757346875],[104.887345,29.9038430000001],[104.875152617188,29.9004201484375],[104.883922148438,29.8916506171876],[104.887345,29.9038430000001],[104.893985625,29.907202375],[104.900704375,29.9204836250001],[104.927205839844,29.9338893867188],[104.917347441406,29.9540773750001],[104.930704375,29.980483625],[104.957345,29.993843],[104.972806425781,29.9893044257813],[105.002078886719,29.9783058906251],[105.023516875,29.9804909492188],[105.046419707031,29.9529177070313],[105.062894316406,29.9392336250001],[105.061793242188,29.9284352851563],[105.101883574219,29.9037087226563],[105.092806425781,29.8883815742188],[105.073267851563,29.8721486640625],[105.112806425781,29.8393044257813],[105.117345,29.8338430000001],[105.101429472656,29.8097585273437],[105.091707792969,29.7599733710938],[105.058822050781,29.73448753125],[104.989466582031,29.7166872382813],[104.993568144531,29.6983913398438],[104.977345,29.6738430000001],[104.945657988281,29.6561037421875],[104.918060332031,29.6099587226563],[104.902857695313,29.6296584296875],[104.888836699219,29.6275856757813],[104.89343875,29.5964357734375],[104.837345,29.573843],[104.795523710938,29.5776784492188],[104.787345,29.593843],[104.799537382813,29.5972658515625],[104.790767851563,29.6060353828125],[104.787345,29.593843],[104.711302519531,29.6108596015625],[104.712769804688,29.6291213203126],[104.691073027344,29.6680080390625],[104.693524199219,29.6985182929688],[104.68197390625,29.70847190625],[104.672691679688,29.7292726875],[104.662345,29.7284401679687],[104.650484648438,29.7293947578125],[104.632345,29.7700490546875],[104.612345,29.7684401679687],[104.602020292969,29.7692702460938],[104.592345,29.7580397773438],[104.58271609375,29.7692140937501],[104.568624296875,29.7813552070313],[104.523199492188,29.7777053046876],[104.497345,29.7938430000001],[104.493170195313,29.8096681953126],[104.481519804688,29.8180178046876],[104.473170195313,29.8465163398438],[104.501390410156,29.8909670234375],[104.47127078125,29.9384108710938],[104.473455839844,29.9494631171875],[104.456436796875,29.9616603828125],[104.475125761719,29.991098859375],[104.457345,30.003843],[104.457345,30.033843],[104.467345,30.033843],[104.479420195313,30.0193044257813],[104.492806425781,30.0283815742188],[104.503192167969,30.0408815742188],[104.529234648438,30.0095290351562],[104.571600371094,29.9911550117188],[104.573363066406,29.973843],[104.570748320313,29.9481716132813],[104.591954375,29.9503322578125],[104.60396609375,29.9358718085938],[104.632806425781,29.9483815742188],[104.647081328125,29.9655641914063],[104.675819121094,29.8993044257813],[104.705921660156,29.9383913398438],[104.662806425781,29.9510427070312],[104.684647246094,29.96050315625],[104.722806425781,29.9493044257813],[104.74095828125,29.9274562812501],[104.762806425781,29.9093044257813],[104.771883574219,29.8883815742188],[104.782806425781,29.8793044257813],[104.787345,29.8738430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"峨边彝族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.241783476563,29.3311428046876],[103.262345,29.3281032539063],[103.272857695313,29.3296584296875],[103.282857695313,29.3167018867188],[103.306737089844,29.3202297187501],[103.333167753906,29.3094142890625],[103.328836699219,29.2801003242188],[103.34490359375,29.2777248359375],[103.370074492188,29.310337140625],[103.41170046875,29.29819846875],[103.437345,29.2938430000001],[103.449176054688,29.3020119453125],[103.464010039063,29.3234963203126],[103.510142851563,29.254985578125],[103.542015410156,29.2621315742188],[103.567345,29.213843],[103.561429472656,29.2097585273438],[103.546951933594,29.153344953125],[103.585706816406,29.138843],[103.581224394531,29.118843],[103.589620390625,29.0813845039063],[103.557345,29.063843],[103.528895292969,29.0700490546876],[103.427420683594,29.0578346992188],[103.391363554688,29.0377175117188],[103.372020292969,29.0392702460938],[103.348831816406,29.0123561835938],[103.320330839844,28.9878005195313],[103.274527617188,28.99147971875],[103.24271609375,28.9350612617188],[103.266766386719,28.891958234375],[103.231710234375,28.8617555976563],[103.232747832031,28.848843],[103.231929960938,28.8386721015625],[103.237345,28.813843],[103.219324980469,28.806274640625],[103.182791777344,28.8300637031251],[103.172345,28.8277223945313],[103.149027128906,28.8329494453125],[103.113004179688,28.8178200507813],[103.103260527344,28.7679274726563],[103.065990019531,28.7421950507813],[103.074339628906,28.7049416328126],[103.046197539063,28.661723859375],[102.999144316406,28.6814870429687],[102.982066679688,28.6776589179688],[102.967345,28.6838430000001],[102.961883574219,28.6883815742187],[102.939835234375,28.7392165351563],[102.942886992188,28.769165265625],[102.931883574219,28.7883815742188],[102.922806425781,28.8134596992188],[102.947554960938,28.8566701484375],[102.929403105469,28.9049782539063],[102.947078886719,28.9358376289062],[102.903951445313,29.036977765625],[102.94728640625,29.0496950507812],[102.967345,29.0738430000001],[102.994595976563,29.0785842109375],[103.011790800781,29.1193971992188],[103.030543242188,29.1344118476563],[103.054146757813,29.1732741523438],[103.115496855469,29.2224025703125],[103.132515898438,29.2819313789063],[103.168428984375,29.2774636054688],[103.191790800781,29.2482888007813],[103.214107695313,29.2393971992188],[103.231790800781,29.2774074531251],[103.197345,29.323843],[103.241783476563,29.3311428046876]]]]}},{"type":"Feature","properties":{"name":"峨眉山市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.547345,29.503843],[103.535152617188,29.5004201484375],[103.543922148438,29.4916506171875],[103.557345,29.503843],[103.557345,29.473843],[103.55287234375,29.4682595039063],[103.502750273438,29.4281716132813],[103.491846953125,29.4295265937501],[103.482899199219,29.4082888007813],[103.471790800781,29.3993971992188],[103.462899199219,29.3882888007812],[103.433863554688,29.3760549140626],[103.426988554688,29.3207839179688],[103.437345,29.2938430000001],[103.41170046875,29.29819846875],[103.370074492188,29.310337140625],[103.34490359375,29.2777248359375],[103.328836699219,29.2801003242188],[103.333167753906,29.3094142890625],[103.306737089844,29.3202297187501],[103.282857695313,29.3167018867188],[103.272857695313,29.3296584296875],[103.262345,29.3281032539063],[103.241783476563,29.3311428046876],[103.197345,29.323843],[103.19197390625,29.32847190625],[103.180672636719,29.366001203125],[103.187345,29.433843],[103.193072539063,29.4899904609375],[103.268782988281,29.4839064765626],[103.288402128906,29.5066774726563],[103.2619153125,29.5184963203126],[103.263148222656,29.533843],[103.261138945313,29.558843],[103.264100371094,29.5957033515626],[103.315709257813,29.6187306953125],[103.346600371094,29.6545876289063],[103.36271609375,29.66847190625],[103.367345,29.6738430000001],[103.377345,29.6738430000001],[103.3963684375,29.6658522773438],[103.423573027344,29.7135134101563],[103.4636340625,29.7224953437501],[103.513260527344,29.7097585273438],[103.531519804688,29.6833132148438],[103.593260527344,29.6497585273438],[103.617345,29.633843],[103.604029570313,29.5819557929687],[103.571051054688,29.5696169257813],[103.576158476563,29.54683128125],[103.551073027344,29.5295143867188],[103.553529082031,29.5185646796875],[103.547345,29.503843]]]]}},{"type":"Feature","properties":{"name":"金口河区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.024964628906,29.4513356757813],[103.081219511719,29.4359401679688],[103.127884550781,29.4396901679688],[103.187345,29.433843],[103.180672636719,29.366001203125],[103.19197390625,29.32847190625],[103.197345,29.323843],[103.231790800781,29.2774074531251],[103.214107695313,29.2393971992188],[103.191790800781,29.2482888007813],[103.168428984375,29.2774636054688],[103.132515898438,29.2819313789063],[103.115496855469,29.2224025703125],[103.054146757813,29.1732741523438],[103.030543242188,29.1344118476563],[103.011790800781,29.1193971992188],[102.994595976563,29.0785842109375],[102.967345,29.0738430000001],[102.928260527344,29.12620628125],[102.937086210938,29.185923078125],[102.962413359375,29.205473859375],[102.972042265625,29.2511037421875],[102.997345,29.2473659492188],[103.020513945313,29.2507888007813],[103.03170046875,29.2842751289063],[102.997345,29.2938430000001],[102.972916289063,29.3329811835937],[102.996119414063,29.3745705390626],[102.967345,29.4138430000001],[102.99271609375,29.4284719062501],[103.024964628906,29.4513356757813]]]]}},{"type":"Feature","properties":{"name":"井研县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.947345,29.7538430000001],[103.959537382813,29.7572658515625],[103.950767851563,29.7660353828125],[103.897345,29.7538430000001],[103.905513945313,29.7856740546875],[103.923260527344,29.7979274726562],[103.932074003906,29.8322658515625],[103.953118925781,29.8275490546876],[103.961429472656,29.8497585273437],[103.967345,29.853843],[103.98271609375,29.8584719062501],[104.018563261719,29.87847190625],[104.06025515625,29.8549660468751],[104.041405058594,29.8387258125],[104.081793242188,29.8207033515625],[104.082769804688,29.8085646796875],[104.06271609375,29.7726247382813],[104.127271757813,29.7193288398438],[104.18388796875,29.7090016914063],[104.202345,29.6676369453125],[104.225257597656,29.669477765625],[104.247345,29.6438430000001],[104.234537382813,29.6388430000001],[104.247345,29.633843],[104.24255984375,29.6251149726563],[104.215443144531,29.6139382148438],[104.184671660156,29.6372096992188],[104.166722441406,29.6044655585938],[104.139198027344,29.5893776679688],[104.1650403125,29.558843],[104.139198027344,29.5283083320313],[104.156073027344,29.5190578437501],[104.16490359375,29.4976345039063],[104.152879667969,29.4756960273438],[104.122310820313,29.501567609375],[104.082879667969,29.4665627265626],[104.059581328125,29.4761647773438],[104.047345,29.4538430000001],[104.02170046875,29.44948753125],[104.012345,29.4373659492188],[103.99490359375,29.4599611640625],[103.982345,29.4581032539062],[103.972310820313,29.4595876289063],[103.937345,29.4538430000001],[103.933260527344,29.4597585273438],[103.873260527344,29.4751564765625],[103.881429472656,29.4897585273438],[103.887345,29.4938430000001],[103.892345,29.4810353828125],[103.897345,29.4938430000001],[103.909598417969,29.5115895820312],[103.941698027344,29.5337526679688],[103.951429472656,29.5597585273438],[103.96408328125,29.5791896796876],[103.950103789063,29.588843],[103.989071074219,29.6157472968751],[103.971073027344,29.6281716132813],[103.973465605469,29.6388430000001],[103.970103789063,29.653843],[103.974586210938,29.6738430000001],[103.971124296875,29.6892897773438],[103.989454375,29.7174416328125],[103.953206816406,29.7310036445313],[103.947345,29.7538430000001]]]]}},{"type":"Feature","properties":{"name":"马边彝族自治县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.592806425781,29.0493044257813],[103.604908476563,29.0214064765625],[103.632806425781,29.0093044257813],[103.651883574219,28.9783815742188],[103.671663847656,28.96194846875],[103.633094511719,28.8593044257813],[103.722806425781,28.8683815742188],[103.807198515625,28.9183815742187],[103.812869902344,28.8889846015625],[103.811803007813,28.878520734375],[103.822806425781,28.8593044257813],[103.827345,28.8438430000001],[103.801790800781,28.8393971992188],[103.782899199219,28.8282888007813],[103.76166140625,28.8193410468751],[103.764039335938,28.80022971875],[103.745740996094,28.7691017890625],[103.694202910156,28.7543679023438],[103.712899199219,28.7393971992188],[103.725819121094,28.7232595039063],[103.71134890625,28.6986428046875],[103.723436308594,28.6889650703125],[103.682808867188,28.6381642890625],[103.672127714844,28.6394924140625],[103.625150175781,28.6260768867188],[103.607345,28.603843],[103.60170046875,28.60819846875],[103.5351965625,28.6180275703125],[103.52298953125,28.5881984687501],[103.51170046875,28.57948753125],[103.498631621094,28.5625563789062],[103.45170046875,28.54948753125],[103.4179309375,28.5244484687501],[103.435516386719,28.495298078125],[103.430179472656,28.4591872382813],[103.381990996094,28.4219924140625],[103.340181914063,28.447212140625],[103.315264921875,28.4794948554688],[103.292034941406,28.5362502265625],[103.247345,28.543843],[103.241688261719,28.5585597968751],[103.245736113281,28.5911061835938],[103.272899199219,28.6282888007812],[103.281790800781,28.6493971992188],[103.308675566406,28.6951296210938],[103.339852324219,28.7378102851563],[103.293057890625,28.7752834296876],[103.27900515625,28.8086330390625],[103.237345,28.813843],[103.231929960938,28.8386721015625],[103.232747832031,28.848843],[103.231710234375,28.8617555976563],[103.266766386719,28.891958234375],[103.24271609375,28.9350612617188],[103.274527617188,28.99147971875],[103.320330839844,28.9878005195313],[103.348831816406,29.0123561835938],[103.372020292969,29.0392702460938],[103.391363554688,29.0377175117188],[103.427420683594,29.0578346992188],[103.528895292969,29.0700490546876],[103.557345,29.063843],[103.561883574219,29.0583815742188],[103.592806425781,29.0493044257813]]]]}},{"type":"Feature","properties":{"name":"沙湾区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.667345,29.213843],[103.661910429688,29.2265407539063],[103.644346953125,29.217895734375],[103.662979765625,29.19683128125],[103.620067167969,29.187212140625],[103.591429472656,29.1979274726563],[103.567345,29.213843],[103.542015410156,29.2621315742188],[103.510142851563,29.254985578125],[103.464010039063,29.3234963203126],[103.449176054688,29.3020119453125],[103.437345,29.2938430000001],[103.426988554688,29.3207839179688],[103.433863554688,29.3760549140626],[103.462899199219,29.3882888007812],[103.471790800781,29.3993971992188],[103.482899199219,29.4082888007813],[103.491846953125,29.4295265937501],[103.502750273438,29.4281716132813],[103.55287234375,29.4682595039063],[103.557345,29.473843],[103.563260527344,29.4779274726563],[103.5850403125,29.5160842109376],[103.608377714844,29.5213161445313],[103.631673613281,29.4875710273438],[103.663016386719,29.4945973945313],[103.677345,29.473843],[103.664947539063,29.3983669257813],[103.682147246094,29.33659690625],[103.710877714844,29.3408425117187],[103.737345,29.323843],[103.729176054688,29.3120119453125],[103.693314238281,29.2872512031251],[103.707345,29.253843],[103.703985625,29.2472023750001],[103.68406375,29.23712425],[103.673985625,29.217202375],[103.667345,29.213843]]]]}},{"type":"Feature","properties":{"name":"市中区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.547345,29.503843],[103.543922148438,29.4916506171875],[103.535152617188,29.5004201484375],[103.547345,29.503843]]],[[[103.547345,29.503843],[103.553529082031,29.5185646796875],[103.551073027344,29.5295143867188],[103.576158476563,29.54683128125],[103.571051054688,29.5696169257813],[103.604029570313,29.5819557929687],[103.617345,29.633843],[103.627850371094,29.6490602851563],[103.673260527344,29.6579274726563],[103.7056653125,29.679028546875],[103.701073027344,29.6995143867188],[103.713260527344,29.7079274726563],[103.717345,29.7238430000001],[103.735101347656,29.7311403632812],[103.772203398438,29.7075856757813],[103.837635527344,29.7368849921875],[103.893170195313,29.7480178046876],[103.897345,29.7538430000001],[103.947345,29.7538430000001],[103.953206816406,29.7310036445313],[103.989454375,29.7174416328125],[103.971124296875,29.6892897773438],[103.974586210938,29.6738430000001],[103.970103789063,29.653843],[103.973465605469,29.6388430000001],[103.971073027344,29.6281716132813],[103.989071074219,29.6157472968751],[103.950103789063,29.588843],[103.96408328125,29.5791896796876],[103.951429472656,29.5597585273438],[103.941698027344,29.5337526679688],[103.909598417969,29.5115895820312],[103.897345,29.4938430000001],[103.887345,29.4938430000001],[103.8600403125,29.5279421210937],[103.776182890625,29.495708234375],[103.75095828125,29.5105373359375],[103.725133085938,29.5073244453125],[103.712899199219,29.4782888007813],[103.677345,29.473843],[103.663016386719,29.4945973945313],[103.631673613281,29.4875710273438],[103.608377714844,29.5213161445313],[103.5850403125,29.5160842109376],[103.563260527344,29.4779274726563],[103.557345,29.473843],[103.557345,29.503843],[103.547345,29.503843]]],[[[103.947345,29.7538430000001],[103.950767851563,29.7660353828125],[103.959537382813,29.7572658515625],[103.947345,29.7538430000001]]]]}},{"type":"Feature","properties":{"name":"五通桥区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.917345,29.3738430000001],[103.920767851563,29.3860353828125],[103.929537382813,29.3772658515625],[103.917345,29.3738430000001]]],[[[103.887345,29.4938430000001],[103.897345,29.4938430000001],[103.892345,29.4810353828125],[103.887345,29.4938430000001]]],[[[103.887345,29.4938430000001],[103.881429472656,29.4897585273438],[103.873260527344,29.4751564765625],[103.933260527344,29.4597585273438],[103.937345,29.4538430000001],[103.943031035156,29.4083278632813],[103.902899199219,29.3968532539063],[103.911790800781,29.3782888007813],[103.917345,29.3738430000001],[103.91048953125,29.3564040351563],[103.91459109375,29.3286452460938],[103.881517363281,29.3194362617188],[103.884407988281,29.2998854804688],[103.86978640625,29.2977248359376],[103.843516875,29.3317580390626],[103.772396269531,29.3180861640625],[103.737345,29.323843],[103.710877714844,29.3408425117187],[103.682147246094,29.33659690625],[103.664947539063,29.3983669257813],[103.677345,29.473843],[103.712899199219,29.4782888007813],[103.725133085938,29.5073244453125],[103.75095828125,29.5105373359375],[103.776182890625,29.495708234375],[103.8600403125,29.5279421210937],[103.887345,29.4938430000001]]]]}},{"type":"Feature","properties":{"name":"沐川县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.987345,28.8038430000001],[103.999537382813,28.8004201484375],[103.990767851563,28.7916506171875],[103.987345,28.8038430000001]]],[[[103.667345,29.213843],[103.644346953125,29.217895734375],[103.661910429688,29.2265407539063],[103.667345,29.213843]]],[[[103.987345,28.833843],[103.983922148438,28.8460353828125],[103.975152617188,28.8372658515625],[103.987345,28.8038430000001],[103.961790800781,28.7893971992188],[103.931019316406,28.7669167304688],[103.852899199219,28.8293971992188],[103.827345,28.8438430000001],[103.822806425781,28.8593044257813],[103.811803007813,28.878520734375],[103.812869902344,28.8889846015625],[103.807198515625,28.9183815742187],[103.722806425781,28.8683815742188],[103.633094511719,28.8593044257813],[103.671663847656,28.96194846875],[103.651883574219,28.9783815742188],[103.632806425781,29.0093044257813],[103.604908476563,29.0214064765625],[103.592806425781,29.0493044257813],[103.561883574219,29.0583815742188],[103.557345,29.063843],[103.589620390625,29.0813845039063],[103.581224394531,29.118843],[103.585706816406,29.138843],[103.546951933594,29.153344953125],[103.561429472656,29.2097585273438],[103.567345,29.213843],[103.591429472656,29.1979274726563],[103.620067167969,29.187212140625],[103.662979765625,29.19683128125],[103.667345,29.213843],[103.673985625,29.217202375],[103.68406375,29.23712425],[103.703985625,29.2472023750001],[103.707345,29.253843],[103.772220488281,29.2671315742188],[103.742193632813,29.208843],[103.752445097656,29.1889430976563],[103.762244902344,29.1487429023438],[103.802159453125,29.1293776679688],[103.822511015625,29.0983351875],[103.881829863281,29.099546125],[103.892496367188,29.078843],[103.877357207031,29.0494557929688],[103.912345,29.0487404609375],[103.939664335938,29.0492995429688],[104.030416289063,29.0376979804688],[104.052252226563,29.0489479804688],[104.062345,29.0487404609375],[104.092056914063,29.0493483710938],[104.111676054688,29.0289284492188],[104.127345,29.023843],[104.121519804688,29.0096681953126],[104.1104309375,28.9543556953125],[104.053392363281,28.9777956367188],[104.078431425781,28.9168654609375],[104.031519804688,28.8896681953126],[104.023170195313,28.8580178046875],[104.017345,28.853843],[103.997345,28.853843],[103.997345,28.833843],[103.987345,28.833843]],[[103.867345,29.0738430000001],[103.879537382813,29.0772658515625],[103.870767851563,29.0860353828126],[103.844620390625,29.0698366523438],[103.861783476563,29.0608449531251],[103.867345,29.0738430000001]]]]}},{"type":"Feature","properties":{"name":"犍为县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.867345,29.0738430000001],[103.861783476563,29.0608449531251],[103.844620390625,29.0698366523438],[103.867345,29.0738430000001]]],[[[103.867345,29.0738430000001],[103.870767851563,29.0860353828126],[103.879537382813,29.0772658515625],[103.867345,29.0738430000001]]],[[[104.147345,29.353843],[104.159537382813,29.3504201484376],[104.150767851563,29.3416506171875],[104.147345,29.353843]]],[[[104.097345,29.423843],[104.109537382813,29.4204201484375],[104.100767851563,29.4116506171875],[104.097345,29.423843]]],[[[104.097345,29.423843],[104.083624296875,29.415708234375],[104.097095976563,29.3828664375],[104.125711699219,29.4034645820313],[104.141500273438,29.3768361640625],[104.160914335938,29.3835036445313],[104.147345,29.353843],[104.124075957031,29.3451003242187],[104.072806425781,29.3503249335937],[104.085426054688,29.3198122382813],[104.140953398438,29.3075002265625],[104.142894316406,29.288452375],[104.102806425781,29.2551540351563],[104.112916289063,29.2364723945313],[104.139410429688,29.2683669257812],[104.151883574219,29.1983815742188],[104.177345,29.193843],[104.183204375,29.1685573554688],[104.170714140625,29.1478493476563],[104.141073027344,29.0724513984375],[104.14373171875,29.0544509101563],[104.13298953125,29.02819846875],[104.127345,29.023843],[104.111676054688,29.0289284492188],[104.092056914063,29.0493483710938],[104.062345,29.0487404609375],[104.052252226563,29.0489479804688],[104.030416289063,29.0376979804688],[103.939664335938,29.0492995429688],[103.912345,29.0487404609375],[103.877357207031,29.0494557929688],[103.892496367188,29.078843],[103.881829863281,29.099546125],[103.822511015625,29.0983351875],[103.802159453125,29.1293776679688],[103.762244902344,29.1487429023438],[103.752445097656,29.1889430976563],[103.742193632813,29.208843],[103.772220488281,29.2671315742188],[103.707345,29.253843],[103.693314238281,29.2872512031251],[103.729176054688,29.3120119453125],[103.737345,29.323843],[103.772396269531,29.3180861640625],[103.843516875,29.3317580390626],[103.86978640625,29.2977248359376],[103.884407988281,29.2998854804688],[103.881517363281,29.3194362617188],[103.91459109375,29.3286452460938],[103.91048953125,29.3564040351563],[103.917345,29.3738430000001],[103.929537382813,29.3772658515625],[103.920767851563,29.3860353828125],[103.917345,29.3738430000001],[103.911790800781,29.3782888007813],[103.902899199219,29.3968532539063],[103.943031035156,29.4083278632813],[103.937345,29.4538430000001],[103.972310820313,29.4595876289063],[103.982345,29.4581032539062],[103.99490359375,29.4599611640625],[104.012345,29.4373659492188],[104.02170046875,29.44948753125],[104.047345,29.4538430000001],[104.053985625,29.450483625],[104.061116972656,29.42577659375],[104.093685332031,29.4419655585937],[104.097345,29.423843]]]]}},{"type":"Feature","properties":{"name":"夹江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.513922148438,29.8660353828125],[103.517345,29.853843],[103.505152617188,29.8572658515626],[103.513922148438,29.8660353828125]]],[[[103.527345,29.8738430000001],[103.517345,29.8738430000001],[103.517345,29.883843],[103.527345,29.883843],[103.527345,29.8738430000001]]],[[[103.707345,29.7238430000001],[103.695152617188,29.7204201484375],[103.703922148438,29.7116506171875],[103.717345,29.7238430000001],[103.713260527344,29.7079274726563],[103.701073027344,29.6995143867188],[103.7056653125,29.679028546875],[103.673260527344,29.6579274726563],[103.627850371094,29.6490602851563],[103.617345,29.633843],[103.593260527344,29.6497585273438],[103.531519804688,29.6833132148438],[103.513260527344,29.7097585273438],[103.4636340625,29.7224953437501],[103.423573027344,29.7135134101563],[103.3963684375,29.6658522773438],[103.377345,29.6738430000001],[103.372345,29.6866506171875],[103.367345,29.6738430000001],[103.361883574219,29.6783815742187],[103.352489042969,29.7000368476563],[103.333192167969,29.6768044257813],[103.322735625,29.6893923164063],[103.30818484375,29.6879103828126],[103.292806425781,29.7134596992188],[103.312886992188,29.748520734375],[103.31158328125,29.7613210273438],[103.334410429688,29.8011794257813],[103.372345,29.7973146796875],[103.401954375,29.8003322578125],[103.434678984375,29.7609352851563],[103.428267851563,29.8238454414063],[103.482345,29.8183327460938],[103.495582304688,29.81968284375],[103.511883574219,29.8393044257813],[103.522806425781,29.8483815742188],[103.527345,29.8738430000001],[103.580250273438,29.8776540351563],[103.569420195313,29.8998342109375],[103.583985625,29.907202375],[103.587345,29.923843],[103.606453886719,29.9158180976563],[103.656500273438,29.9313307929688],[103.673260527344,29.9197585273438],[103.693682890625,29.8901808906251],[103.717345,29.8738430000001],[103.731429472656,29.8179274726563],[103.74572390625,29.7959767890626],[103.733016386719,29.7775710273437],[103.720067167969,29.780473859375],[103.685235625,29.7674416328125],[103.703260527344,29.7397585273438],[103.707345,29.7238430000001]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"高坪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.307345,30.8938430000001],[106.297345,30.8938430000001],[106.293922148438,30.9060353828125],[106.285152617188,30.8972658515625],[106.297345,30.8938430000001],[106.302345,30.8810353828126],[106.351539335938,30.8760427070313],[106.37298953125,30.85948753125],[106.394881621094,30.8228835273438],[106.465028105469,30.8033498359375],[106.48298953125,30.78948753125],[106.487345,30.7838430000001],[106.451610136719,30.7595778632813],[106.433079863281,30.7281081367188],[106.421610136719,30.7195778632813],[106.413079863281,30.6981081367188],[106.386009550781,30.6873513007813],[106.364407988281,30.6910695625],[106.352345,30.7214260078126],[106.324266386719,30.7165920234376],[106.302552519531,30.6874001289063],[106.262178984375,30.7177809882813],[106.209888945313,30.7281081367188],[106.213612089844,30.70647971875],[106.2328528125,30.709790265625],[106.241610136719,30.70149925],[106.211610136719,30.6895778632813],[106.198814726563,30.6723732734376],[106.170628691406,30.6514089179688],[106.183470488281,30.6082643867188],[106.1543371875,30.5966872382813],[106.137345,30.573843],[106.121790800781,30.5782888007813],[106.097706328125,30.592446515625],[106.11322390625,30.618843],[106.101678496094,30.6384841132813],[106.106607695313,30.6781056953125],[106.066033964844,30.6542555976563],[106.042899199219,30.6762575507813],[106.087928496094,30.7123171210938],[106.112711210938,30.69774925],[106.121790800781,30.7239943671875],[106.071197539063,30.7384596992187],[106.087345,30.763843],[106.095557890625,30.7695143867188],[106.090472441406,30.7921950507813],[106.121698027344,30.8137526679688],[106.131429472656,30.8397585273437],[106.150584746094,30.86917503125],[106.172713652344,30.8844533515625],[106.181868925781,30.9425539375],[106.210716582031,30.9679274726563],[106.253861113281,30.9398317695313],[106.277345,30.9738430000001],[106.303626738281,30.9595607734375],[106.300350371094,30.9449416328125],[106.32408328125,30.9084963203125],[106.311429472656,30.8997585273438],[106.307345,30.8938430000001]]]]}},{"type":"Feature","properties":{"name":"嘉陵区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.941910429688,30.4965407539063],[105.947345,30.4838430000001],[105.924346953125,30.487895734375],[105.941910429688,30.4965407539063]]],[[[105.853260527344,30.9097585273438],[105.86509890625,30.8926125312501],[105.892691679688,30.91058128125],[105.90201296875,30.8970827460938],[105.932691679688,30.8771047187501],[105.941429472656,30.8897585273438],[105.957345,30.8938430000001],[105.96170046875,30.88819846875],[105.97298953125,30.87948753125],[105.98170046875,30.8681984687501],[105.99298953125,30.85948753125],[106.00170046875,30.84819846875],[106.033162871094,30.8293825507813],[106.029871855469,30.80710471875],[106.087345,30.763843],[106.071197539063,30.7384596992187],[106.121790800781,30.7239943671875],[106.112711210938,30.69774925],[106.087928496094,30.7123171210938],[106.042899199219,30.6762575507813],[106.066033964844,30.6542555976563],[106.106607695313,30.6781056953125],[106.101678496094,30.6384841132813],[106.11322390625,30.618843],[106.097706328125,30.592446515625],[106.121790800781,30.5782888007813],[106.137345,30.573843],[106.121429472656,30.5497585273438],[106.117345,30.533843],[106.112843046875,30.5115480781251],[106.077345,30.4939015937501],[106.032369414063,30.5162575507813],[106.022345,30.4815163398438],[106.002345,30.49128440625],[105.992345,30.48640159375],[105.982330351563,30.4912917304688],[105.967345,30.4838430000001],[105.952684355469,30.5092726875001],[105.942345,30.5084401679688],[105.922345,30.5100490546875],[105.91271609375,30.48847190625],[105.901541777344,30.4788430000001],[105.913360625,30.4686598945313],[105.881170683594,30.4592140937501],[105.883524199219,30.4885182929687],[105.870330839844,30.4998854804688],[105.840765410156,30.4975099921875],[105.881678496094,30.5552150703125],[105.85197390625,30.56847190625],[105.814920683594,30.6114772773438],[105.79271609375,30.70921409375],[105.781304960938,30.7509084296875],[105.782747832031,30.768843],[105.781219511719,30.7878615546876],[105.792996855469,30.8089723945313],[105.78197390625,30.81847190625],[105.77271609375,30.82921409375],[105.76197390625,30.8384719062501],[105.75271609375,30.84921409375],[105.728590117188,30.8700026679688],[105.737345,30.8938430000001],[105.773660917969,30.897973859375],[105.769383574219,30.9170583320313],[105.817867460938,30.9279274726563],[105.853260527344,30.9097585273438]]]]}},{"type":"Feature","properties":{"name":"南部县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.167345,31.0938430000001],[106.177345,31.0938430000001],[106.177345,31.073843],[106.167345,31.073843],[106.167345,31.0938430000001]]],[[[106.167345,31.0938430000001],[106.150704375,31.097202375],[106.131317167969,31.1126052070313],[106.122320585938,31.0814284492188],[106.083985625,31.1004836250001],[106.067345,31.103843],[106.062806425781,31.1093044257812],[106.041883574219,31.1183815742188],[106.032806425781,31.1293044257813],[106.011883574219,31.1383815742188],[106.002806425781,31.1517678046875],[106.022894316406,31.1684523750001],[106.021302519531,31.1840651679688],[105.979178496094,31.2100490546876],[105.962345,31.2083327460938],[105.931568632813,31.211469953125],[105.932855253906,31.1988430000001],[105.931685820313,31.1873805976563],[105.907345,31.1898610664063],[105.820013457031,31.1809596992188],[105.823450957031,31.2146901679688],[105.765777617188,31.239702375],[105.752022734375,31.2383010078125],[105.728136015625,31.2519802070313],[105.684212675781,31.247505109375],[105.667345,31.253843],[105.641065703125,31.2675637031251],[105.628685332031,31.2884499335938],[105.594110136719,31.2998610664063],[105.604061308594,31.328843],[105.600279570313,31.3398610664063],[105.623624296875,31.3475637031251],[105.641065703125,31.3821486640625],[105.617335234375,31.407563703125],[105.571612578125,31.3866457343751],[105.561500273438,31.4037038398438],[105.542345,31.3971266914063],[105.532345,31.4005593085938],[105.5146496875,31.3944826484376],[105.473624296875,31.4297805],[105.494542265625,31.458843],[105.475628691406,31.485122296875],[105.451500273438,31.4768361640625],[105.447345,31.483843],[105.453985625,31.4972023750001],[105.457345,31.533843],[105.504256621094,31.5711965156251],[105.542345,31.5673146796875],[105.562345,31.5693532539063],[105.572735625,31.5682936835938],[105.589058867188,31.5879470039063],[105.605819121094,31.5493044257813],[105.612806425781,31.5583815742188],[105.634107695313,31.6074929023438],[105.652445097656,31.6093630195313],[105.687345,31.603843],[105.697655058594,31.5704567695313],[105.742166777344,31.5585353828126],[105.752345,31.5591408515626],[105.772345,31.5579494453126],[105.832064238281,31.561509015625],[105.822625761719,31.5285622382813],[105.793121367188,31.5150197578125],[105.812830839844,31.47874534375],[105.792625761719,31.4606911445313],[105.804271269531,31.4580641914063],[105.831995878906,31.4597170234375],[105.832940703125,31.443843],[105.832030058594,31.4285768867188],[105.852625761719,31.4191237617188],[105.862254667969,31.3981447578125],[105.880496855469,31.4185622382812],[105.883033476563,31.3954030585938],[105.8819934375,31.3779274726563],[105.90259890625,31.3791555],[105.920496855469,31.3591237617188],[105.941041289063,31.3751100898438],[105.960657988281,31.4178493476563],[106.030069609375,31.4219850898438],[106.050496855469,31.3991237617188],[106.092625761719,31.4085622382813],[106.131668730469,31.4297780585938],[106.225975371094,31.4241555],[106.272625761719,31.4385622382813],[106.286783476563,31.4544045234375],[106.297345,31.463843],[106.301429472656,31.4479274726563],[106.313260527344,31.4397585273438],[106.321429472656,31.4279274726563],[106.3567590625,31.4035353828125],[106.351051054688,31.3780690742188],[106.381429472656,31.3667018867188],[106.371556425781,31.3440114570313],[106.332174101563,31.3274709296876],[106.290736113281,31.3381056953126],[106.311429472656,31.3873757148438],[106.256363554688,31.3789870429688],[106.237762480469,31.3065065742188],[106.19748171875,31.3155373359375],[106.203465605469,31.288843],[106.200980253906,31.2777565742188],[106.231898222656,31.257622296875],[106.260081816406,31.26394065625],[106.264586210938,31.2438430000001],[106.259132109375,31.2195143867188],[106.267345,31.213843],[106.274852324219,31.1987404609375],[106.253985625,31.157202375],[106.229300566406,31.1500783515626],[106.235269804688,31.1378517890625],[106.220704375,31.130483625],[106.213985625,31.1172023750001],[106.170704375,31.1104836250001],[106.167345,31.0938430000001]]]]}},{"type":"Feature","properties":{"name":"蓬安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.297345,30.8938430000001],[106.307345,30.8938430000001],[106.302345,30.8810353828126],[106.297345,30.8938430000001]]],[[[106.297345,30.8938430000001],[106.285152617188,30.8972658515625],[106.293922148438,30.9060353828125],[106.297345,30.8938430000001]]],[[[106.617345,30.8238430000001],[106.613922148438,30.8360353828126],[106.605152617188,30.8272658515625],[106.611019316406,30.8091042304688],[106.62093875,30.7697292304688],[106.581339140625,30.759848859375],[106.577345,30.7438430000001],[106.532347441406,30.7382204414062],[106.516727324219,30.7401638007813],[106.492899199219,30.7793971992188],[106.487345,30.7838430000001],[106.48298953125,30.78948753125],[106.465028105469,30.8033498359375],[106.394881621094,30.8228835273438],[106.37298953125,30.85948753125],[106.351539335938,30.8760427070313],[106.307345,30.8938430000001],[106.311429472656,30.8997585273438],[106.32408328125,30.9084963203125],[106.300350371094,30.9449416328125],[106.303626738281,30.9595607734375],[106.277345,30.9738430000001],[106.265184355469,30.9901930976563],[106.252345,30.9879811835938],[106.242345,30.9897048164063],[106.185648222656,30.9799416328125],[106.203277617188,31.0084279609375],[106.201385527344,31.0194118476563],[106.214066191406,31.028843],[106.183350859375,31.0516921210938],[106.177345,31.073843],[106.177345,31.0938430000001],[106.167345,31.0938430000001],[106.170704375,31.1104836250001],[106.213985625,31.1172023750001],[106.220704375,31.130483625],[106.235269804688,31.1378517890625],[106.229300566406,31.1500783515626],[106.253985625,31.157202375],[106.274852324219,31.1987404609375],[106.267345,31.213843],[106.279947539063,31.2284719062501],[106.3027746875,31.2191921210938],[106.30080203125,31.1946413398437],[106.334718046875,31.2340090156251],[106.362066679688,31.2492678046876],[106.372640410156,31.2484181953125],[106.40306765625,31.2699904609376],[106.432345,31.2676369453125],[106.452381621094,31.2692482734376],[106.507345,31.263843],[106.502625761719,31.2285622382812],[106.492064238281,31.2191237617188],[106.482625761719,31.1985622382813],[106.433509550781,31.1833962226563],[106.431048613281,31.1420827460937],[106.456783476563,31.1132814765626],[106.473043242188,31.0987526679688],[106.442625761719,31.0847927070313],[106.480047636719,31.0204347968751],[106.565482207031,31.0071218085938],[106.582064238281,30.9885622382813],[106.592940703125,30.9788430000001],[106.57115359375,30.9593752265626],[106.5826575,30.94909690625],[106.581485625,30.9294289375],[106.625806914063,30.9175588203125],[106.652545195313,30.9191530585937],[106.667345,30.913843],[106.683861113281,30.8888503242187],[106.671124296875,30.8692897773438],[106.673529082031,30.8585646796875],[106.667345,30.843843],[106.661329375,30.8351296210938],[106.617345,30.8238430000001]]]]}},{"type":"Feature","properties":{"name":"顺庆区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.167345,31.0938430000001],[106.167345,31.073843],[106.177345,31.073843],[106.183350859375,31.0516921210938],[106.214066191406,31.028843],[106.201385527344,31.0194118476563],[106.203277617188,31.0084279609375],[106.185648222656,30.9799416328125],[106.242345,30.9897048164063],[106.252345,30.9879811835938],[106.265184355469,30.9901930976563],[106.277345,30.9738430000001],[106.253861113281,30.9398317695313],[106.210716582031,30.9679274726563],[106.181868925781,30.9425539375],[106.172713652344,30.8844533515625],[106.150584746094,30.86917503125],[106.131429472656,30.8397585273437],[106.121698027344,30.8137526679688],[106.090472441406,30.7921950507813],[106.095557890625,30.7695143867188],[106.087345,30.763843],[106.029871855469,30.80710471875],[106.033162871094,30.8293825507813],[106.00170046875,30.84819846875],[105.99298953125,30.85948753125],[105.98170046875,30.8681984687501],[105.97298953125,30.87948753125],[105.96170046875,30.88819846875],[105.957345,30.8938430000001],[105.962987089844,30.9186818671875],[105.9609778125,30.93483909375],[106.015577421875,30.95784690625],[106.010535917969,30.9983888984375],[106.022899199219,31.0082888007813],[106.063441191406,31.0750368476563],[106.061688261719,31.089126203125],[106.067345,31.103843],[106.083985625,31.1004836250001],[106.122320585938,31.0814284492188],[106.131317167969,31.1126052070313],[106.150704375,31.097202375],[106.167345,31.0938430000001]]]]}},{"type":"Feature","properties":{"name":"西充县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.667345,31.253843],[105.684212675781,31.247505109375],[105.728136015625,31.2519802070313],[105.752022734375,31.2383010078125],[105.765777617188,31.239702375],[105.823450957031,31.2146901679688],[105.820013457031,31.1809596992188],[105.907345,31.1898610664063],[105.931685820313,31.1873805976563],[105.932855253906,31.1988430000001],[105.931568632813,31.211469953125],[105.962345,31.2083327460938],[105.979178496094,31.2100490546876],[106.021302519531,31.1840651679688],[106.022894316406,31.1684523750001],[106.002806425781,31.1517678046875],[106.011883574219,31.1383815742188],[106.032806425781,31.1293044257813],[106.041883574219,31.1183815742188],[106.062806425781,31.1093044257812],[106.067345,31.103843],[106.061688261719,31.089126203125],[106.063441191406,31.0750368476563],[106.022899199219,31.0082888007813],[106.010535917969,30.9983888984375],[106.015577421875,30.95784690625],[105.9609778125,30.93483909375],[105.962987089844,30.9186818671875],[105.957345,30.8938430000001],[105.941429472656,30.8897585273438],[105.932691679688,30.8771047187501],[105.90201296875,30.8970827460938],[105.892691679688,30.91058128125],[105.86509890625,30.8926125312501],[105.853260527344,30.9097585273438],[105.817867460938,30.9279274726563],[105.769383574219,30.9170583320313],[105.773660917969,30.897973859375],[105.737345,30.8938430000001],[105.729771757813,30.9088137031251],[105.700704375,30.9172023750001],[105.678873320313,30.9345436835938],[105.657345,30.923843],[105.653260527344,30.9397585273438],[105.641429472656,30.9479274726563],[105.617345,30.983843],[105.62197390625,30.99921409375],[105.6627746875,31.0084841132812],[105.6619153125,31.0191970039063],[105.700401640625,31.030786359375],[105.713829375,31.0753786445313],[105.711541777344,31.103843],[105.713951445313,31.133843],[105.711317167969,31.166626203125],[105.662733183594,31.1812526679687],[105.682996855469,31.1987136054688],[105.67197390625,31.21847190625],[105.667345,31.253843]]]]}},{"type":"Feature","properties":{"name":"仪陇县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.407345,31.6638430000001],[106.450479765625,31.646469953125],[106.453084746094,31.6288430000001],[106.451605253906,31.618843],[106.453084746094,31.608843],[106.450699492188,31.5927028632813],[106.48298953125,31.5794875312501],[106.501954375,31.5680471015625],[106.535479765625,31.5730007148438],[106.55298953125,31.55948753125],[106.566912871094,31.50948753125],[106.630523710938,31.5215138984376],[106.634561796875,31.5488430000001],[106.630667753906,31.5751930976563],[106.641832304688,31.5896584296876],[106.652345,31.5881032539063],[106.673436308594,31.5912209296875],[106.670282011719,31.5698854804688],[106.682345,31.5681032539063],[106.702345,31.5710597968751],[106.732345,31.5666262031251],[106.773658476563,31.5727321601562],[106.768836699219,31.5401003242188],[106.782345,31.5381032539063],[106.813658476563,31.5427321601563],[106.809967070313,31.5177516914063],[106.82490359375,31.5199611640625],[106.837345,31.5038430000001],[106.841073027344,31.4520754218751],[106.864295683594,31.440327375],[106.874793730469,31.4188283515625],[106.867345,31.403843],[106.831519804688,31.3996681953125],[106.823170195313,31.3880178046875],[106.805601835938,31.3754274726563],[106.78252078125,31.3900807929688],[106.746827421875,31.3754103828125],[106.764925566406,31.3469020820312],[106.760831328125,31.3261794257813],[106.741724882813,31.3299538398438],[106.712965117188,31.289829328125],[106.656112089844,31.3010622382813],[106.589522734375,31.2808351875],[106.572965117188,31.2577321601563],[106.544920683594,31.2632741523437],[106.527345,31.2877956367188],[106.513170195313,31.2680178046876],[106.507345,31.263843],[106.452381621094,31.2692482734376],[106.432345,31.2676369453125],[106.40306765625,31.2699904609376],[106.372640410156,31.2484181953125],[106.362066679688,31.2492678046876],[106.334718046875,31.2340090156251],[106.30080203125,31.1946413398437],[106.3027746875,31.2191921210938],[106.279947539063,31.2284719062501],[106.267345,31.213843],[106.259132109375,31.2195143867188],[106.264586210938,31.2438430000001],[106.260081816406,31.26394065625],[106.231898222656,31.257622296875],[106.200980253906,31.2777565742188],[106.203465605469,31.288843],[106.19748171875,31.3155373359375],[106.237762480469,31.3065065742188],[106.256363554688,31.3789870429688],[106.311429472656,31.3873757148438],[106.290736113281,31.3381056953126],[106.332174101563,31.3274709296876],[106.371556425781,31.3440114570313],[106.381429472656,31.3667018867188],[106.351051054688,31.3780690742188],[106.3567590625,31.4035353828125],[106.321429472656,31.4279274726563],[106.313260527344,31.4397585273438],[106.301429472656,31.4479274726563],[106.297345,31.463843],[106.292713652344,31.4932326484376],[106.267191191406,31.51085471875],[106.279845,31.5672951484375],[106.245408964844,31.580180890625],[106.240186796875,31.6034743476563],[106.25201296875,31.6206032539063],[106.281898222656,31.640063703125],[106.302345,31.6354811835938],[106.332345,31.6422048164063],[106.353016386719,31.6375710273438],[106.36435671875,31.6539968085938],[106.393016386719,31.6475710273438],[106.401429472656,31.6597585273438],[106.407345,31.6638430000001]]]]}},{"type":"Feature","properties":{"name":"营山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.913531523438,31.3800295234376],[106.931158476563,31.3476564765625],[106.944366484375,31.339516828125],[106.928975859375,31.305161359375],[106.954696074219,31.2893141914063],[106.939993925781,31.2683718085938],[106.953531523438,31.2600295234376],[106.957345,31.253843],[106.95298953125,31.2181984687501],[106.937550078125,31.20628440625],[106.945103789063,31.1551760078125],[106.9226184375,31.1175807929687],[106.88298953125,31.08819846875],[106.843018828125,31.0718410468751],[106.803089628906,31.0005153632813],[106.77298953125,30.97819846875],[106.74170046875,30.9694875312501],[106.73298953125,30.95819846875],[106.72170046875,30.94948753125],[106.702884550781,30.9180251289063],[106.673880644531,30.922309796875],[106.667345,30.913843],[106.652545195313,30.9191530585937],[106.625806914063,30.9175588203125],[106.581485625,30.9294289375],[106.5826575,30.94909690625],[106.57115359375,30.9593752265626],[106.592940703125,30.9788430000001],[106.582064238281,30.9885622382813],[106.565482207031,31.0071218085938],[106.480047636719,31.0204347968751],[106.442625761719,31.0847927070313],[106.473043242188,31.0987526679688],[106.456783476563,31.1132814765626],[106.431048613281,31.1420827460937],[106.433509550781,31.1833962226563],[106.482625761719,31.1985622382813],[106.492064238281,31.2191237617188],[106.502625761719,31.2285622382812],[106.507345,31.263843],[106.513170195313,31.2680178046876],[106.527345,31.2877956367188],[106.544920683594,31.2632741523437],[106.572965117188,31.2577321601563],[106.589522734375,31.2808351875],[106.656112089844,31.3010622382813],[106.712965117188,31.289829328125],[106.741724882813,31.3299538398438],[106.760831328125,31.3261794257813],[106.764925566406,31.3469020820312],[106.746827421875,31.3754103828125],[106.78252078125,31.3900807929688],[106.805601835938,31.3754274726563],[106.823170195313,31.3880178046875],[106.831519804688,31.3996681953125],[106.867345,31.403843],[106.873641386719,31.3936257148438],[106.913531523438,31.3800295234376]]]]}},{"type":"Feature","properties":{"name":"阆中市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.907345,31.633843],[105.910767851563,31.6216506171875],[105.919537382813,31.6304201484375],[105.911883574219,31.6393044257813],[105.922894316406,31.648452375],[105.921087675781,31.6661672187501],[105.957345,31.6698610664062],[105.972628203125,31.6683034492187],[106.046776152344,31.6999196601563],[106.062738066406,31.6982936835937],[106.111883574219,31.7593044257812],[106.127047148438,31.7719020820313],[106.109940214844,31.8017702460938],[106.122200957031,31.8300368476563],[106.135076933594,31.8145339179688],[106.193016386719,31.8204396796875],[106.188968535156,31.7807155585938],[106.212345,31.7783327460938],[106.222345,31.7793532539063],[106.232345,31.7783327460938],[106.247345,31.7798610664063],[106.262779570313,31.7782888007813],[106.271883574219,31.8093044257813],[106.31373171875,31.8274562812501],[106.339420195313,31.8583815742188],[106.352806425781,31.8493044257813],[106.361883574219,31.8383815742188],[106.372806425781,31.8293044257813],[106.381883574219,31.8083815742188],[106.397345,31.803843],[106.401429472656,31.7879274726563],[106.415179472656,31.75519065625],[106.403260527344,31.7379274726563],[106.380814238281,31.7295290351563],[106.36047,31.698286359375],[106.391607695313,31.6866359687501],[106.407345,31.6638430000001],[106.401429472656,31.6597585273438],[106.393016386719,31.6475710273438],[106.36435671875,31.6539968085938],[106.353016386719,31.6375710273438],[106.332345,31.6422048164063],[106.302345,31.6354811835938],[106.281898222656,31.640063703125],[106.25201296875,31.6206032539063],[106.240186796875,31.6034743476563],[106.245408964844,31.580180890625],[106.279845,31.5672951484375],[106.267191191406,31.51085471875],[106.292713652344,31.4932326484376],[106.297345,31.463843],[106.286783476563,31.4544045234375],[106.272625761719,31.4385622382813],[106.225975371094,31.4241555],[106.131668730469,31.4297780585938],[106.092625761719,31.4085622382813],[106.050496855469,31.3991237617188],[106.030069609375,31.4219850898438],[105.960657988281,31.4178493476563],[105.941041289063,31.3751100898438],[105.920496855469,31.3591237617188],[105.90259890625,31.3791555],[105.8819934375,31.3779274726563],[105.883033476563,31.3954030585938],[105.880496855469,31.4185622382812],[105.862254667969,31.3981447578125],[105.852625761719,31.4191237617188],[105.832030058594,31.4285768867188],[105.832940703125,31.443843],[105.831995878906,31.4597170234375],[105.804271269531,31.4580641914063],[105.792625761719,31.4606911445313],[105.812830839844,31.47874534375],[105.793121367188,31.5150197578125],[105.822625761719,31.5285622382813],[105.832064238281,31.561509015625],[105.772345,31.5579494453126],[105.752345,31.5591408515626],[105.742166777344,31.5585353828126],[105.697655058594,31.5704567695313],[105.687345,31.603843],[105.694154082031,31.6080373359375],[105.684307890625,31.6396486640625],[105.725155058594,31.6648171210938],[105.717672148438,31.688843],[105.723902617188,31.708843],[105.720535917969,31.7196486640625],[105.727345,31.723843],[105.764869414063,31.7300075507813],[105.790413847656,31.6969118476563],[105.830260039063,31.666157453125],[105.849127226563,31.6200563789063],[105.868485136719,31.6171974921875],[105.882147246094,31.6505763984375],[105.89170046875,31.6381984687501],[105.907345,31.633843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"彭山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.707345,30.273843],[103.69795046875,30.2401027656251],[103.687345,30.2538430000001],[103.677345,30.273843],[103.707345,30.273843]]],[[[103.943065214844,30.3348635078125],[103.971656523438,30.312798078125],[103.987345,30.273843],[103.969901152344,30.2603786445313],[103.973140898438,30.238452375],[103.960233183594,30.2170510078125],[103.983519316406,30.199077375],[103.971534453125,30.1792116523438],[103.977345,30.143843],[103.951961699219,30.1380763984376],[103.942799101563,30.1495217109375],[103.932345,30.1482204414063],[103.902843046875,30.1518898750001],[103.889451933594,30.12011253125],[103.872899199219,30.1593971992188],[103.841790800781,30.1682888007813],[103.812899199219,30.1793971992187],[103.776063261719,30.189926984375],[103.762127714844,30.1881935859375],[103.715824003906,30.2014162421875],[103.723941679688,30.2666799140625],[103.717345,30.2838430000001],[103.739888945313,30.28839378125],[103.729417753906,30.3098366523438],[103.763985625,30.327202375],[103.767345,30.3338430000001],[103.770975371094,30.3402126289063],[103.794564238281,30.3536598945313],[103.827345,30.3413039375],[103.869691191406,30.3572658515625],[103.884998808594,30.3304201484375],[103.912205839844,30.3406740546876],[103.917345,30.3638430000001],[103.93298953125,30.3594875312501],[103.943065214844,30.3348635078125]]]]}},{"type":"Feature","properties":{"name":"丹棱县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.507345,30.1338430000001],[103.503260527344,30.1079274726563],[103.487576933594,30.083843],[103.503260527344,30.0597585273438],[103.515797148438,30.0262551093751],[103.532345,30.0299636054688],[103.542345,30.0277223945313],[103.560560332031,30.0318044257813],[103.563565703125,30.0183962226562],[103.534058867188,29.9730837226562],[103.551429472656,29.9479274726563],[103.577435332031,29.9381960273437],[103.587345,29.923843],[103.583985625,29.907202375],[103.569420195313,29.8998342109375],[103.580250273438,29.8776540351563],[103.527345,29.8738430000001],[103.527345,29.883843],[103.517345,29.883843],[103.5120325,29.88858909375],[103.5126575,29.8990798164063],[103.477076445313,29.9500197578125],[103.452345,29.9485451484375],[103.427806425781,29.9500075507813],[103.39224734375,29.9693288398437],[103.378128691406,29.9535280585938],[103.296168242188,29.9980666328125],[103.282625761719,29.9685622382813],[103.270985136719,29.9591237617188],[103.252625761719,29.9991237617188],[103.237345,30.003843],[103.243482695313,30.025884015625],[103.286712675781,30.0818923164062],[103.330809355469,30.075376203125],[103.351204863281,30.1017995429688],[103.36189578125,30.0879470039063],[103.387345,30.0938430000001],[103.422264433594,30.116919171875],[103.463973417969,30.0897585273438],[103.463260527344,30.1197585273438],[103.433260527344,30.1309841132812],[103.473260527344,30.1297585273438],[103.482003203125,30.1170973945313],[103.507345,30.1338430000001]]]]}},{"type":"Feature","properties":{"name":"东坡区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.723941679688,30.2666799140625],[103.715824003906,30.2014162421875],[103.762127714844,30.1881935859375],[103.776063261719,30.189926984375],[103.812899199219,30.1793971992187],[103.841790800781,30.1682888007813],[103.872899199219,30.1593971992188],[103.889451933594,30.12011253125],[103.902843046875,30.1518898750001],[103.932345,30.1482204414063],[103.942799101563,30.1495217109375],[103.951961699219,30.1380763984376],[103.977345,30.143843],[103.971871367188,30.1187477851563],[103.987271757813,30.07681175],[103.96146609375,29.9911061835938],[103.9209778125,29.9789162421875],[103.9510559375,29.965493390625],[103.957345,29.9038430000001],[103.952691679688,29.898032453125],[103.912498808594,29.9095095039063],[103.839683867188,29.8977712226563],[103.790767851563,29.9265261054688],[103.792967558594,29.9088430000001],[103.791666289063,29.8983888984375],[103.811790800781,29.8822731757812],[103.798311796875,29.876235578125],[103.767332792969,29.8800881171875],[103.717345,29.8738430000001],[103.693682890625,29.8901808906251],[103.673260527344,29.9197585273438],[103.656500273438,29.9313307929688],[103.606453886719,29.9158180976563],[103.587345,29.923843],[103.577435332031,29.9381960273437],[103.551429472656,29.9479274726563],[103.534058867188,29.9730837226562],[103.563565703125,30.0183962226562],[103.560560332031,30.0318044257813],[103.542345,30.0277223945313],[103.532345,30.0299636054688],[103.515797148438,30.0262551093751],[103.503260527344,30.0597585273438],[103.487576933594,30.083843],[103.503260527344,30.1079274726563],[103.507345,30.1338430000001],[103.510704375,30.140483625],[103.545272246094,30.1578493476563],[103.533985625,30.1809596992188],[103.552218046875,30.1913454414063],[103.563336210938,30.1859181953125],[103.571353789063,30.2017678046875],[103.582345,30.19640159375],[103.597345,30.2037258125],[103.612735625,30.1962111640626],[103.631954375,30.2114748359375],[103.643580351563,30.2057985664063],[103.652386503906,30.236313703125],[103.687345,30.2538430000001],[103.69795046875,30.2401027656251],[103.707345,30.273843],[103.707345,30.2838430000001],[103.717345,30.2838430000001],[103.723941679688,30.2666799140625]]]]}},{"type":"Feature","properties":{"name":"洪雅县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.367345,29.6738430000001],[103.372345,29.6866506171875],[103.377345,29.6738430000001],[103.367345,29.6738430000001]]],[[[103.197345,29.963843],[103.184537382813,29.968843],[103.197345,29.973843],[103.197345,29.963843]]],[[[103.367345,29.6738430000001],[103.36271609375,29.66847190625],[103.346600371094,29.6545876289063],[103.315709257813,29.6187306953125],[103.264100371094,29.5957033515626],[103.261138945313,29.558843],[103.263148222656,29.533843],[103.2619153125,29.5184963203126],[103.288402128906,29.5066774726563],[103.268782988281,29.4839064765626],[103.193072539063,29.4899904609375],[103.187345,29.433843],[103.127884550781,29.4396901679688],[103.081219511719,29.4359401679688],[103.024964628906,29.4513356757813],[102.99271609375,29.4284719062501],[102.967345,29.4138430000001],[102.937615996094,29.4065407539063],[102.913529082031,29.4119411445313],[102.893260527344,29.4697585273438],[102.86490359375,29.4893361640625],[102.847345,29.4938430000001],[102.851790800781,29.5093971992188],[102.865355253906,29.5324709296876],[102.902899199219,29.5482888007813],[102.923980742188,29.5606838203125],[102.921722441406,29.578843],[102.922967558594,29.588843],[102.92172,29.5988771796875],[102.93297,29.6788088203125],[102.931722441406,29.688843],[102.933001738281,29.6991262031251],[102.927345,29.7138430000001],[102.954366484375,29.7196169257813],[102.990594511719,29.71745628125],[103.013160429688,29.7297194648438],[103.032064238281,29.7085622382813],[103.042625761719,29.6991237617188],[103.052113066406,29.6784523750001],[103.102467070313,29.6892116523438],[103.122064238281,29.6785622382813],[103.143221464844,29.6691237617188],[103.141549101563,29.6972023750001],[103.154908476563,29.7470851875001],[103.14115359375,29.7593752265625],[103.162796660156,29.7787136054687],[103.131920195313,29.8529518867188],[103.083040800781,29.8966237617188],[103.152625761719,29.9285622382813],[103.171585722656,29.9497829414063],[103.192615996094,29.9485280585938],[103.197345,29.963843],[103.207345,29.963843],[103.207345,29.973843],[103.227345,29.973843],[103.227345,29.9838430000001],[103.227345,29.993843],[103.227345,30.003843],[103.237345,30.003843],[103.252625761719,29.9991237617188],[103.270985136719,29.9591237617188],[103.282625761719,29.9685622382813],[103.296168242188,29.9980666328125],[103.378128691406,29.9535280585938],[103.39224734375,29.9693288398437],[103.427806425781,29.9500075507813],[103.452345,29.9485451484375],[103.477076445313,29.9500197578125],[103.5126575,29.8990798164063],[103.5120325,29.88858909375],[103.517345,29.883843],[103.517345,29.8738430000001],[103.527345,29.8738430000001],[103.522806425781,29.8483815742188],[103.511883574219,29.8393044257813],[103.495582304688,29.81968284375],[103.482345,29.8183327460938],[103.428267851563,29.8238454414063],[103.434678984375,29.7609352851563],[103.401954375,29.8003322578125],[103.372345,29.7973146796875],[103.334410429688,29.8011794257813],[103.31158328125,29.7613210273438],[103.312886992188,29.748520734375],[103.292806425781,29.7134596992188],[103.30818484375,29.6879103828126],[103.322735625,29.6893923164063],[103.333192167969,29.6768044257813],[103.352489042969,29.7000368476563],[103.361883574219,29.6783815742187],[103.367345,29.6738430000001]],[[103.517345,29.853843],[103.513922148438,29.8660353828125],[103.505152617188,29.8572658515626],[103.517345,29.853843]]]]}},{"type":"Feature","properties":{"name":"青神县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.707345,29.7238430000001],[103.703922148438,29.7116506171875],[103.695152617188,29.7204201484375],[103.707345,29.7238430000001]]],[[[103.987345,29.883843],[103.990767851563,29.8960353828125],[103.999537382813,29.8872658515626],[103.987345,29.883843]]],[[[103.987345,29.883843],[103.987345,29.8738430000001],[103.967345,29.8738430000001],[103.967345,29.853843],[103.961429472656,29.8497585273437],[103.953118925781,29.8275490546876],[103.932074003906,29.8322658515625],[103.923260527344,29.7979274726562],[103.905513945313,29.7856740546875],[103.897345,29.7538430000001],[103.893170195313,29.7480178046876],[103.837635527344,29.7368849921875],[103.772203398438,29.7075856757813],[103.735101347656,29.7311403632812],[103.717345,29.7238430000001],[103.707345,29.7238430000001],[103.703260527344,29.7397585273438],[103.685235625,29.7674416328125],[103.720067167969,29.780473859375],[103.733016386719,29.7775710273437],[103.74572390625,29.7959767890626],[103.731429472656,29.8179274726563],[103.717345,29.8738430000001],[103.767332792969,29.8800881171875],[103.798311796875,29.876235578125],[103.811790800781,29.8822731757812],[103.791666289063,29.8983888984375],[103.792967558594,29.9088430000001],[103.790767851563,29.9265261054688],[103.839683867188,29.8977712226563],[103.912498808594,29.9095095039063],[103.952691679688,29.898032453125],[103.957345,29.9038430000001],[103.987345,29.883843]]]]}},{"type":"Feature","properties":{"name":"仁寿县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.457345,30.003843],[104.445152617188,30.0004201484376],[104.453922148438,29.9916506171875],[104.475125761719,29.991098859375],[104.456436796875,29.9616603828125],[104.473455839844,29.9494631171875],[104.47127078125,29.9384108710938],[104.501390410156,29.8909670234375],[104.473170195313,29.8465163398438],[104.481519804688,29.8180178046876],[104.493170195313,29.8096681953126],[104.497345,29.7938430000001],[104.463038359375,29.7842897773438],[104.45298953125,29.74819846875],[104.426143828125,29.72948753125],[104.392447539063,29.7498122382813],[104.340391875,29.7270632148438],[104.343436308594,29.7064650703125],[104.317738066406,29.7102638984376],[104.29298953125,29.67819846875],[104.28170046875,29.6694875312501],[104.267345,29.633843],[104.247345,29.633843],[104.247345,29.6438430000001],[104.225257597656,29.669477765625],[104.202345,29.6676369453125],[104.18388796875,29.7090016914063],[104.127271757813,29.7193288398438],[104.06271609375,29.7726247382813],[104.082769804688,29.8085646796875],[104.081793242188,29.8207033515625],[104.041405058594,29.8387258125],[104.06025515625,29.8549660468751],[104.018563261719,29.87847190625],[103.98271609375,29.8584719062501],[103.967345,29.853843],[103.967345,29.8738430000001],[103.987345,29.8738430000001],[103.987345,29.883843],[103.999537382813,29.8872658515626],[103.990767851563,29.8960353828125],[103.987345,29.883843],[103.957345,29.9038430000001],[103.9510559375,29.965493390625],[103.9209778125,29.9789162421875],[103.96146609375,29.9911061835938],[103.987271757813,30.07681175],[103.971871367188,30.1187477851563],[103.977345,30.143843],[103.971534453125,30.1792116523438],[103.983519316406,30.199077375],[103.960233183594,30.2170510078125],[103.973140898438,30.238452375],[103.969901152344,30.2603786445313],[103.987345,30.273843],[104.002193632813,30.2686379218751],[104.017345,30.2692385078126],[104.032345,30.2686452460938],[104.042503691406,30.269048078125],[104.133433867188,30.2293654609376],[104.158365507813,30.2821950507813],[104.182154570313,30.3190334296876],[104.187345,30.3238430000001],[104.222806425781,30.3193044257813],[104.23408328125,30.280884015625],[104.231239042969,30.2529958320313],[104.262806425781,30.2393044257813],[104.275325957031,30.224233625],[104.351085234375,30.1913796210937],[104.366419707031,30.1729177070312],[104.382806425781,30.1593044257813],[104.391883574219,30.1283815742188],[104.412806425781,30.1193044257812],[104.425631132813,30.0897389960938],[104.437345,30.1038430000001],[104.476820097656,30.0879445625],[104.461449003906,30.048843],[104.467345,30.033843],[104.457345,30.033843],[104.457345,30.003843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"长宁县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.877345,28.623843],[104.865152617188,28.6272658515625],[104.873922148438,28.6360353828126],[104.877345,28.623843]]],[[[104.877345,28.623843],[104.890767851563,28.6314968085938],[104.877025175781,28.6679592109376],[104.893714628906,28.6774733710938],[104.897345,28.703843],[104.930819121094,28.7124343085938],[104.962296171875,28.734165265625],[104.978658476563,28.7979274726563],[105.003260527344,28.7897585273438],[105.007345,28.773843],[105.012064238281,28.7585622382813],[105.062064238281,28.6729689765626],[105.045924101563,28.6483327460937],[105.022694121094,28.6497170234375],[105.021495390625,28.6296047187501],[105.041849394531,28.5921511054688],[105.0426575,28.578618390625],[105.031859160156,28.55874534375],[105.042940703125,28.548843],[105.030672636719,28.5378810859375],[105.012625761719,28.4985622382813],[105.00115359375,28.4883107734375],[105.02787234375,28.4644362617187],[104.953428984375,28.4471144843751],[104.993043242188,28.4289333320313],[104.97400515625,28.4119240546876],[105.017345,28.393843],[105.033143339844,28.3692458320313],[105.030867949219,28.353843],[105.033084746094,28.338843],[105.031605253906,28.328843],[105.0343371875,28.3103615546876],[105.0114465625,28.2544289375],[104.97170046875,28.2781984687501],[104.930784941406,28.3085329414062],[104.887345,28.3138430000001],[104.881429472656,28.3179274726563],[104.841710234375,28.32683128125],[104.829888945313,28.3728932929688],[104.833465605469,28.3888430000001],[104.82896609375,28.4089138007812],[104.789622832031,28.436079328125],[104.752345,28.4277223945313],[104.734842558594,28.431645734375],[104.723260527344,28.4529592109375],[104.771185332031,28.4708913398437],[104.757345,28.5038430000001],[104.767252226563,28.5237721992188],[104.738844023438,28.5381423164062],[104.753985625,28.5572023750001],[104.760704375,28.5904836250001],[104.787252226563,28.6039138007813],[104.777345,28.623843],[104.787345,28.623843],[104.787345,28.633843],[104.797345,28.633843],[104.815155058594,28.6228688789063],[104.810526152344,28.6080007148438],[104.845579863281,28.5889162421875],[104.831158476563,28.5800295234375],[104.829051542969,28.5600295234376],[104.872095976563,28.5734377265625],[104.884119902344,28.6087209296875],[104.877345,28.623843]]]]}},{"type":"Feature","properties":{"name":"翠屏区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.787345,28.623843],[104.777345,28.623843],[104.777345,28.633843],[104.787345,28.633843],[104.787345,28.623843]]],[[[104.877345,28.623843],[104.873922148438,28.6360353828126],[104.865152617188,28.6272658515625],[104.884119902344,28.6087209296875],[104.872095976563,28.5734377265625],[104.829051542969,28.5600295234376],[104.831158476563,28.5800295234375],[104.845579863281,28.5889162421875],[104.810526152344,28.6080007148438],[104.815155058594,28.6228688789063],[104.797345,28.633843],[104.817437773438,28.6768752265626],[104.801073027344,28.6881716132813],[104.806900664063,28.7141677070313],[104.787840605469,28.7434377265626],[104.731710234375,28.73085471875],[104.723160429688,28.6975392890625],[104.69435671875,28.7039968085938],[104.683260527344,28.6879274726563],[104.642957792969,28.6775856757813],[104.623016386719,28.682055890625],[104.609176054688,28.6620119453125],[104.591429472656,28.6497585273438],[104.583260527344,28.6379274726563],[104.557345,28.633843],[104.551883574219,28.6690529609375],[104.566766386719,28.695727765625],[104.551766386719,28.7086501289063],[104.562962675781,28.7391408515626],[104.531129179688,28.7487258125],[104.532747832031,28.7688430000001],[104.530848417969,28.7924733710938],[104.482345,28.7746633125],[104.424039335938,28.7960744453125],[104.406085234375,28.8169118476563],[104.44271609375,28.84847190625],[104.45197390625,28.86921409375],[104.46271609375,28.87847190625],[104.487723417969,28.91839378125],[104.553189726563,28.8943532539063],[104.551942167969,28.8788430000001],[104.553074980469,28.8647536445313],[104.60197390625,28.8740090156251],[104.581925078125,28.9286037421875],[104.583729277344,28.9510744453125],[104.630186796875,28.9718044257813],[104.651995878906,29.0292726875001],[104.662345,29.0284401679688],[104.67982546875,29.0298464179688],[104.707345,29.023843],[104.713985625,29.020483625],[104.72406375,29.0005617500001],[104.737345,28.9938430000001],[104.743128691406,28.960610578125],[104.767345,28.9576003242188],[104.80656375,28.9624782539063],[104.823023710938,28.9492971015626],[104.821678496094,28.9384841132813],[104.833258085938,28.9187819648438],[104.808485136719,28.8848708320313],[104.814154082031,28.8392971015626],[104.792999296875,28.8223561835938],[104.873485136719,28.8049416328125],[104.91107546875,28.77483909375],[104.887142363281,28.7556716132812],[104.892899199219,28.7093971992188],[104.897345,28.703843],[104.893714628906,28.6774733710938],[104.877025175781,28.6679592109376],[104.890767851563,28.6314968085938],[104.877345,28.623843]]]]}},{"type":"Feature","properties":{"name":"高县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.806900664063,28.7141677070313],[104.801073027344,28.6881716132813],[104.817437773438,28.6768752265626],[104.797345,28.633843],[104.787345,28.633843],[104.777345,28.633843],[104.777345,28.623843],[104.787252226563,28.6039138007813],[104.760704375,28.5904836250001],[104.753985625,28.5572023750001],[104.738844023438,28.5381423164062],[104.767252226563,28.5237721992188],[104.757345,28.5038430000001],[104.731790800781,28.4993971992188],[104.647437773438,28.4889040351563],[104.632899199219,28.4644167304688],[104.700050078125,28.3804543281251],[104.675740996094,28.3391017890625],[104.641790800781,28.3293971992188],[104.632899199219,28.3082888007813],[104.62146609375,28.288843],[104.63334109375,28.2686428046876],[104.621790800781,28.2593971992188],[104.617345,28.2338430000001],[104.596297636719,28.2055495429688],[104.544107695313,28.1965627265625],[104.51623171875,28.2138161445313],[104.437454863281,28.2002541328125],[104.427345,28.213843],[104.443260527344,28.2179274726563],[104.456197539063,28.2366628242188],[104.449115019531,28.2682570625],[104.395513945313,28.2820119453125],[104.383260527344,28.3297585273438],[104.357345,28.3438430000001],[104.371883574219,28.3793044257813],[104.382806425781,28.3883815742188],[104.401883574219,28.4193044257813],[104.433265410156,28.4453737617188],[104.461883574219,28.4937087226563],[104.409920683594,28.5089553046875],[104.466905546875,28.5191115546876],[104.460855742188,28.5784523750001],[104.475985136719,28.591020734375],[104.513516875,28.5871950507813],[104.536419707031,28.6147682929688],[104.552806425781,28.6283815742188],[104.557345,28.633843],[104.583260527344,28.6379274726563],[104.591429472656,28.6497585273438],[104.609176054688,28.6620119453125],[104.623016386719,28.682055890625],[104.642957792969,28.6775856757813],[104.683260527344,28.6879274726563],[104.69435671875,28.7039968085938],[104.723160429688,28.6975392890625],[104.731710234375,28.73085471875],[104.787840605469,28.7434377265626],[104.806900664063,28.7141677070313]]]]}},{"type":"Feature","properties":{"name":"江安县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.047345,28.8038430000001],[105.035152617188,28.8072658515625],[105.043922148438,28.8160353828126],[105.047345,28.8038430000001]]],[[[105.047345,28.8038430000001],[105.053350859375,28.8078371406251],[105.061339140625,28.819848859375],[105.090982695313,28.8395607734376],[105.07982546875,28.8838430000001],[105.090260039063,28.9252565742188],[105.071339140625,28.937837140625],[105.067345,28.943843],[105.147345,28.943843],[105.147345,28.933843],[105.167345,28.933843],[105.167345,28.9238430000001],[105.177345,28.9238430000001],[105.18170046875,28.90819846875],[105.195084257813,28.8978688789063],[105.21170046875,28.83819846875],[105.235440703125,28.7778102851563],[105.21170046875,28.7594875312501],[105.207345,28.753843],[105.200867949219,28.748843],[105.215811796875,28.7373073554688],[105.208511992188,28.6878981757813],[105.17170046875,28.65948753125],[105.16298953125,28.6199513984375],[105.203949003906,28.5647023750001],[105.201522246094,28.5482717109375],[105.235384550781,28.5344142890625],[105.228511992188,28.4878981757813],[105.19170046875,28.45948753125],[105.187345,28.453843],[105.111158476563,28.4500295234375],[105.0957825,28.4049123359375],[105.105682402344,28.3731325507813],[105.054617949219,28.3890358710938],[105.069129667969,28.4356276679688],[105.038529082031,28.4260964179688],[105.044168730469,28.4079909492188],[105.017345,28.393843],[104.97400515625,28.4119240546876],[104.993043242188,28.4289333320313],[104.953428984375,28.4471144843751],[105.02787234375,28.4644362617187],[105.00115359375,28.4883107734375],[105.012625761719,28.4985622382813],[105.030672636719,28.5378810859375],[105.042940703125,28.548843],[105.031859160156,28.55874534375],[105.0426575,28.578618390625],[105.041849394531,28.5921511054688],[105.021495390625,28.6296047187501],[105.022694121094,28.6497170234375],[105.045924101563,28.6483327460937],[105.062064238281,28.6729689765626],[105.012064238281,28.7585622382813],[105.007345,28.773843],[105.04298953125,28.78819846875],[105.047345,28.8038430000001]]]]}},{"type":"Feature","properties":{"name":"南溪区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.047345,28.8038430000001],[105.043922148438,28.8160353828126],[105.035152617188,28.8072658515625],[105.04298953125,28.78819846875],[105.007345,28.773843],[105.003260527344,28.7897585273438],[104.978658476563,28.7979274726563],[104.962296171875,28.734165265625],[104.930819121094,28.7124343085938],[104.897345,28.703843],[104.892899199219,28.7093971992188],[104.887142363281,28.7556716132812],[104.91107546875,28.77483909375],[104.873485136719,28.8049416328125],[104.792999296875,28.8223561835938],[104.814154082031,28.8392971015626],[104.808485136719,28.8848708320313],[104.833258085938,28.9187819648438],[104.821678496094,28.9384841132813],[104.823023710938,28.9492971015626],[104.80656375,28.9624782539063],[104.767345,28.9576003242188],[104.743128691406,28.960610578125],[104.737345,28.9938430000001],[104.759288359375,29.0019020820313],[104.815809355469,28.9973586250001],[104.85271609375,29.00847190625],[104.86197390625,29.01921409375],[104.87271609375,29.02847190625],[104.881990996094,29.0592726875001],[104.902345,29.0576369453125],[104.9324621875,29.0600588203125],[104.94197390625,29.02847190625],[104.96271609375,29.01921409375],[104.97197390625,29.00847190625],[105.00271609375,28.98921409375],[105.016600371094,28.9730983710938],[105.067345,28.943843],[105.071339140625,28.937837140625],[105.090260039063,28.9252565742188],[105.07982546875,28.8838430000001],[105.090982695313,28.8395607734376],[105.061339140625,28.819848859375],[105.053350859375,28.8078371406251],[105.047345,28.8038430000001]]]]}},{"type":"Feature","properties":{"name":"屏山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.377345,28.6538430000001],[104.387345,28.6538430000001],[104.387345,28.643843],[104.377345,28.643843],[104.377345,28.6538430000001]]],[[[103.987345,28.833843],[103.975152617188,28.8372658515625],[103.983922148438,28.8460353828125],[103.987345,28.833843]]],[[[104.377345,28.6538430000001],[104.333360625,28.6425563789063],[104.320094023438,28.6233425117188],[104.277345,28.633843],[104.266600371094,28.6430983710938],[104.247345,28.6654494453125],[104.23271609375,28.64847190625],[104.197916289063,28.6379933906251],[104.124610625,28.6438845039063],[104.093294707031,28.60753440625],[104.059212675781,28.6316994453126],[103.943673125,28.60649925],[103.923316679688,28.6301271796875],[103.875638457031,28.626294171875],[103.86271609375,28.6692140937501],[103.847769804688,28.67847190625],[103.830860625,28.6223073554688],[103.833629179688,28.5878713203126],[103.802977324219,28.5614650703125],[103.79271609375,28.53847190625],[103.78197390625,28.52921409375],[103.777345,28.523843],[103.741790800781,28.5193971992188],[103.723826933594,28.4767629218751],[103.682899199219,28.5042653632813],[103.711334257813,28.552641828125],[103.686239042969,28.5727370429688],[103.665025664063,28.5992263007813],[103.607345,28.603843],[103.625150175781,28.6260768867188],[103.672127714844,28.6394924140625],[103.682808867188,28.6381642890625],[103.723436308594,28.6889650703125],[103.71134890625,28.6986428046875],[103.725819121094,28.7232595039063],[103.712899199219,28.7393971992188],[103.694202910156,28.7543679023438],[103.745740996094,28.7691017890625],[103.764039335938,28.80022971875],[103.76166140625,28.8193410468751],[103.782899199219,28.8282888007813],[103.801790800781,28.8393971992188],[103.827345,28.8438430000001],[103.852899199219,28.8293971992188],[103.931019316406,28.7669167304688],[103.961790800781,28.7893971992188],[103.987345,28.8038430000001],[103.990767851563,28.7916506171875],[103.999537382813,28.8004201484375],[103.987345,28.8038430000001],[103.987345,28.833843],[103.997345,28.833843],[103.997345,28.853843],[104.017345,28.853843],[104.022064238281,28.8485622382813],[104.052625761719,28.8291237617188],[104.062064238281,28.8085622382813],[104.072625761719,28.7991237617188],[104.090985136719,28.7591237617188],[104.155784941406,28.7835158515625],[104.172625761719,28.7985622382813],[104.190377226563,28.8184279609375],[104.207345,28.819438703125],[104.242078886719,28.8173683906251],[104.256007109375,28.8477150703125],[104.302659941406,28.8585695625],[104.300284453125,28.8984230781251],[104.333780546875,28.9004177070313],[104.371966582031,28.8457521796876],[104.351910429688,28.8088430000001],[104.362830839844,28.78874534375],[104.342760039063,28.7708107734375],[104.341405058594,28.7480837226563],[104.369813261719,28.7227028632813],[104.386490507813,28.6920143867188],[104.371749296875,28.678843],[104.382779570313,28.6689870429688],[104.377345,28.6538430000001]]]]}},{"type":"Feature","properties":{"name":"兴文县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.296317167969,28.3750124335938],[105.311790800781,28.3382888007813],[105.333248320313,28.321108625],[105.330479765625,28.298843],[105.332967558594,28.278843],[105.329808378906,28.2534499335937],[105.344881621094,28.2142360664063],[105.341688261719,28.188559796875],[105.356514921875,28.1499831367188],[105.342345,28.1482204414062],[105.332093535156,28.1494972968751],[105.241070585938,28.12347190625],[105.205213652344,28.0786916328126],[105.177345,28.0738430000001],[105.1062121875,28.0785646796875],[105.044329863281,28.1028908515625],[105.037345,28.093843],[105.019386015625,28.1012233710938],[104.990484648438,28.0955104804688],[104.973170195313,28.1196681953125],[104.957503691406,28.1280178046875],[104.943170195313,28.1080178046876],[104.885172148438,28.0996681953125],[104.90369265625,28.128843],[104.891519804688,28.1480178046876],[104.881344023438,28.1987770820313],[104.889078398438,28.2379177070313],[104.904666777344,28.2490895820313],[104.874542265625,28.260708234375],[104.887345,28.3138430000001],[104.930784941406,28.3085329414062],[104.97170046875,28.2781984687501],[105.0114465625,28.2544289375],[105.0343371875,28.3103615546876],[105.031605253906,28.328843],[105.033084746094,28.338843],[105.030867949219,28.353843],[105.033143339844,28.3692458320313],[105.017345,28.393843],[105.044168730469,28.4079909492188],[105.038529082031,28.4260964179688],[105.069129667969,28.4356276679688],[105.054617949219,28.3890358710938],[105.105682402344,28.3731325507813],[105.0957825,28.4049123359375],[105.111158476563,28.4500295234375],[105.187345,28.453843],[105.247345,28.453843],[105.295406523438,28.4491506171875],[105.321790800781,28.4042653632813],[105.312899199219,28.3882888007813],[105.296317167969,28.3750124335938]]]]}},{"type":"Feature","properties":{"name":"宜宾县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.697345,29.1138430000001],[104.685152617188,29.1104201484375],[104.693922148438,29.1016506171875],[104.703985625,29.110483625],[104.71406375,29.09056175],[104.7372278125,29.078843],[104.711180449219,29.0656642890626],[104.707345,29.023843],[104.67982546875,29.0298464179688],[104.662345,29.0284401679688],[104.651995878906,29.0292726875001],[104.630186796875,28.9718044257813],[104.583729277344,28.9510744453125],[104.581925078125,28.9286037421875],[104.60197390625,28.8740090156251],[104.553074980469,28.8647536445313],[104.551942167969,28.8788430000001],[104.553189726563,28.8943532539063],[104.487723417969,28.91839378125],[104.46271609375,28.87847190625],[104.45197390625,28.86921409375],[104.44271609375,28.84847190625],[104.406085234375,28.8169118476563],[104.424039335938,28.7960744453125],[104.482345,28.7746633125],[104.530848417969,28.7924733710938],[104.532747832031,28.7688430000001],[104.531129179688,28.7487258125],[104.562962675781,28.7391408515626],[104.551766386719,28.7086501289063],[104.566766386719,28.695727765625],[104.551883574219,28.6690529609375],[104.557345,28.633843],[104.552806425781,28.6283815742188],[104.536419707031,28.6147682929688],[104.513516875,28.5871950507813],[104.475985136719,28.591020734375],[104.460855742188,28.5784523750001],[104.466905546875,28.5191115546876],[104.409920683594,28.5089553046875],[104.461883574219,28.4937087226563],[104.433265410156,28.4453737617188],[104.401883574219,28.4193044257813],[104.382806425781,28.3883815742188],[104.371883574219,28.3793044257813],[104.357345,28.3438430000001],[104.331158476563,28.3300295234376],[104.323531523438,28.3176564765625],[104.288043242188,28.3100295234375],[104.29404421875,28.3292995429688],[104.274969511719,28.3564675117188],[104.263531523438,28.3900295234375],[104.257345,28.393843],[104.250960722656,28.4090407539063],[104.263565703125,28.4283962226563],[104.258983183594,28.448843],[104.264798613281,28.4747927070313],[104.249891386719,28.5228932929688],[104.254608183594,28.5439406562501],[104.282345,28.5377223945313],[104.322415800781,28.5467043281251],[104.331429472656,28.5597585273438],[104.353260527344,28.5679274726563],[104.373905058594,28.597827375],[104.413260527344,28.6079274726563],[104.430426054688,28.6327883125],[104.387345,28.643843],[104.387345,28.6538430000001],[104.377345,28.6538430000001],[104.382779570313,28.6689870429688],[104.371749296875,28.678843],[104.386490507813,28.6920143867188],[104.369813261719,28.7227028632813],[104.341405058594,28.7480837226563],[104.342760039063,28.7708107734375],[104.362830839844,28.78874534375],[104.351910429688,28.8088430000001],[104.371966582031,28.8457521796876],[104.333780546875,28.9004177070313],[104.300284453125,28.8984230781251],[104.302659941406,28.8585695625],[104.256007109375,28.8477150703125],[104.242078886719,28.8173683906251],[104.207345,28.819438703125],[104.190377226563,28.8184279609375],[104.172625761719,28.7985622382813],[104.155784941406,28.7835158515625],[104.090985136719,28.7591237617188],[104.072625761719,28.7991237617188],[104.062064238281,28.8085622382813],[104.052625761719,28.8291237617188],[104.022064238281,28.8485622382813],[104.017345,28.853843],[104.023170195313,28.8580178046875],[104.031519804688,28.8896681953126],[104.078431425781,28.9168654609375],[104.053392363281,28.9777956367188],[104.1104309375,28.9543556953125],[104.121519804688,29.0096681953126],[104.127345,29.023843],[104.13298953125,29.02819846875],[104.14373171875,29.0544509101563],[104.141073027344,29.0724513984375],[104.170714140625,29.1478493476563],[104.183204375,29.1685573554688],[104.177345,29.193843],[104.19005984375,29.2420412421876],[104.232454863281,29.2096681953125],[104.267022734375,29.2236013007813],[104.243170195313,29.2611696601563],[104.283170195313,29.2596681953125],[104.295445585938,29.2425392890625],[104.332965117188,29.2499538398438],[104.342034941406,29.2372975898438],[104.3619153125,29.2499196601563],[104.422630644531,29.2377956367188],[104.437345,29.243843],[104.441429472656,29.2279274726562],[104.459176054688,29.2156740546875],[104.471429472656,29.1979274726563],[104.483260527344,29.1897585273438],[104.497254667969,29.1694899726563],[104.523260527344,29.1597585273438],[104.542352324219,29.1473268867187],[104.595811796875,29.1826540351562],[104.617345,29.213843],[104.641429472656,29.2079274726563],[104.687345,29.203843],[104.687345,29.173843],[104.679888945313,29.158843],[104.693985625,29.130483625],[104.697345,29.1138430000001]]]]}},{"type":"Feature","properties":{"name":"珙县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.734842558594,28.431645734375],[104.752345,28.4277223945313],[104.789622832031,28.436079328125],[104.82896609375,28.4089138007812],[104.833465605469,28.3888430000001],[104.829888945313,28.3728932929688],[104.841710234375,28.32683128125],[104.881429472656,28.3179274726563],[104.887345,28.3138430000001],[104.874542265625,28.260708234375],[104.904666777344,28.2490895820313],[104.889078398438,28.2379177070313],[104.881344023438,28.1987770820313],[104.891519804688,28.1480178046876],[104.90369265625,28.128843],[104.885172148438,28.0996681953125],[104.943170195313,28.1080178046876],[104.957503691406,28.1280178046875],[104.973170195313,28.1196681953125],[104.990484648438,28.0955104804688],[105.019386015625,28.1012233710938],[105.037345,28.093843],[105.026204863281,28.0813747382813],[105.002625761719,28.0685622382813],[104.974010039063,28.0554274726563],[104.959032011719,28.0069240546875],[104.942625761719,27.9885622382812],[104.902725859375,27.9702492500001],[104.9020325,27.95858909375],[104.912940703125,27.948843],[104.896783476563,27.9344045234376],[104.874346953125,27.9092971015625],[104.787345,27.903843],[104.776058378906,27.9125563789063],[104.761182890625,27.9659743476563],[104.765150175781,27.9928200507812],[104.78298953125,28.03819846875],[104.79170046875,28.0742482734376],[104.75170046875,28.1281984687501],[104.742916289063,28.1496657539062],[104.718148222656,28.1460060859376],[104.658819609375,28.1899904609375],[104.664632597656,28.2293288398438],[104.617345,28.2338430000001],[104.621790800781,28.2593971992188],[104.63334109375,28.2686428046876],[104.62146609375,28.288843],[104.632899199219,28.3082888007813],[104.641790800781,28.3293971992188],[104.675740996094,28.3391017890625],[104.700050078125,28.3804543281251],[104.632899199219,28.4644167304688],[104.647437773438,28.4889040351563],[104.731790800781,28.4993971992188],[104.757345,28.5038430000001],[104.771185332031,28.4708913398437],[104.723260527344,28.4529592109375],[104.734842558594,28.431645734375]]]]}},{"type":"Feature","properties":{"name":"筠连县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.664632597656,28.2293288398438],[104.658819609375,28.1899904609375],[104.718148222656,28.1460060859376],[104.742916289063,28.1496657539062],[104.75170046875,28.1281984687501],[104.79170046875,28.0742482734376],[104.78298953125,28.03819846875],[104.765150175781,27.9928200507812],[104.761182890625,27.9659743476563],[104.776058378906,27.9125563789063],[104.787345,27.903843],[104.783829375,27.8968923164063],[104.762330351563,27.8863942695313],[104.747345,27.8938430000001],[104.738033476563,27.9059059882813],[104.673338652344,27.880473859375],[104.635484648438,27.8576393867188],[104.607515898438,27.8617726875],[104.570250273438,27.8471218085938],[104.535928984375,27.8915895820313],[104.502857695313,27.8867018867188],[104.49298953125,27.89948753125],[104.47170046875,27.90819846875],[104.447345,27.9238430000001],[104.442625761719,27.9291237617188],[104.395303984375,27.9634670234376],[104.362906523438,28.0144045234376],[104.292625761719,28.0466628242188],[104.340811796875,28.059233625],[104.379598417969,28.0569216132813],[104.392625761719,28.0685622382813],[104.404422636719,28.0942653632813],[104.452064238281,28.1245632148438],[104.442625761719,28.1691237617188],[104.402030058594,28.1785695625],[104.402642851563,28.1888430000001],[104.4020325,28.1991042304688],[104.427345,28.213843],[104.437454863281,28.2002541328125],[104.51623171875,28.2138161445313],[104.544107695313,28.1965627265625],[104.596297636719,28.2055495429688],[104.617345,28.2338430000001],[104.664632597656,28.2293288398438]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"广安区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.617345,30.8238430000001],[106.605152617188,30.8272658515625],[106.613922148438,30.8360353828126],[106.617345,30.8238430000001]]],[[[106.617345,30.8238430000001],[106.661329375,30.8351296210938],[106.667345,30.843843],[106.682154570313,30.8386525703125],[106.722535429688,30.8290334296875],[106.732154570313,30.8186525703125],[106.752550078125,30.8090261054688],[106.752117949219,30.7981081367188],[106.792535429688,30.7790334296876],[106.802154570313,30.7686525703125],[106.822535429688,30.7590334296875],[106.841009550781,30.7390944648438],[106.852345,30.7386452460938],[106.862508574219,30.7390480781251],[106.900150175781,30.7191286445313],[106.952154570313,30.7067433906251],[106.922359648438,30.6885451484375],[106.88435671875,30.7086525703125],[106.9057825,30.6536916328125],[106.9923059375,30.6386257148438],[107.037345,30.643843],[107.011595488281,30.5478810859375],[106.972962675781,30.5494142890625],[106.971785917969,30.5197072578125],[106.977345,30.503843],[106.960679960938,30.4740724921876],[106.93298953125,30.43819846875],[106.897345,30.423843],[106.872806425781,30.4393044257813],[106.849234648438,30.4495290351563],[106.830394316406,30.4722121406251],[106.792345,30.4683327460938],[106.781954375,30.4693923164063],[106.772806425781,30.4583815742188],[106.741883574219,30.4493044257813],[106.703880644531,30.4350270820313],[106.731449003906,30.4121291328125],[106.701883574219,30.3993044257813],[106.682667265625,30.3883010078125],[106.661673613281,30.3904396796875],[106.663834257813,30.369233625],[106.657345,30.3638430000001],[106.632352324219,30.3803591132813],[106.607669707031,30.3642873359375],[106.5750403125,30.3716017890625],[106.553260527344,30.4097585273438],[106.539132109375,30.4195143867188],[106.544586210938,30.4438430000001],[106.541112089844,30.4593483710938],[106.570797148438,30.49765159375],[106.540833769531,30.5183400703126],[106.553529082031,30.5485646796875],[106.547633085938,30.5748610664063],[106.577056914063,30.6128249335938],[106.571224394531,30.6388430000001],[106.573465605469,30.648843],[106.571160917969,30.6591213203126],[106.583529082031,30.6885646796875],[106.577862578125,30.7138430000001],[106.583616972656,30.7395143867187],[106.577345,30.7438430000001],[106.581339140625,30.759848859375],[106.62093875,30.7697292304688],[106.611019316406,30.8091042304688],[106.617345,30.8238430000001]]]]}},{"type":"Feature","properties":{"name":"华蓥市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.637345,30.263843],[106.627345,30.263843],[106.627345,30.273843],[106.637345,30.273843],[106.637345,30.263843]]],[[[106.637345,30.263843],[106.663260527344,30.2679274726563],[106.700150175781,30.2834206367188],[106.726046171875,30.3209304023438],[106.685516386719,30.3489138007813],[106.661429472656,30.3579274726563],[106.657345,30.3638430000001],[106.663834257813,30.369233625],[106.661673613281,30.3904396796875],[106.682667265625,30.3883010078125],[106.701883574219,30.3993044257813],[106.731449003906,30.4121291328125],[106.703880644531,30.4350270820313],[106.741883574219,30.4493044257813],[106.772806425781,30.4583815742188],[106.781954375,30.4693923164063],[106.792345,30.4683327460938],[106.830394316406,30.4722121406251],[106.849234648438,30.4495290351563],[106.872806425781,30.4393044257813],[106.897345,30.423843],[106.89298953125,30.40819846875],[106.85170046875,30.3594875312501],[106.808863554688,30.3027346015626],[106.782066679688,30.2820485664063],[106.77298953125,30.21819846875],[106.72170046875,30.1594875312501],[106.697345,30.123843],[106.667345,30.123843],[106.663260527344,30.1597585273438],[106.621102324219,30.2083034492188],[106.623465605469,30.218843],[106.619449492188,30.2367604804688],[106.637345,30.263843]]]]}},{"type":"Feature","properties":{"name":"邻水县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.257345,30.343843],[107.257345,30.353843],[107.267345,30.353843],[107.267345,30.343843],[107.257345,30.343843]]],[[[107.277345,30.3338430000001],[107.277345,30.353843],[107.267345,30.353843],[107.267345,30.3638430000001],[107.297345,30.3638430000001],[107.297345,30.353843],[107.287345,30.353843],[107.287345,30.3338430000001],[107.277345,30.3338430000001]]],[[[107.263922148438,30.3860353828126],[107.267345,30.373843],[107.255152617188,30.3772658515625],[107.263922148438,30.3860353828126]]],[[[107.243922148438,30.3960353828125],[107.247345,30.383843],[107.235152617188,30.3872658515626],[107.243922148438,30.3960353828125]]],[[[107.217345,30.413843],[107.213922148438,30.4260353828126],[107.205152617188,30.4172658515625],[107.206278105469,30.3901540351563],[107.230767851563,30.3761891914063],[107.217664824219,30.3414235664063],[107.242491484375,30.3507839179688],[107.257345,30.343843],[107.261004667969,30.3257204414063],[107.277345,30.3338430000001],[107.267923613281,30.3025490546875],[107.25271609375,30.2684719062501],[107.227345,30.223843],[107.092445097656,30.0987429023438],[107.072039824219,30.088843],[107.072550078125,30.0638430000001],[107.072232695313,30.0483351875],[107.042249785156,30.0489479804688],[107.027345,30.0334352851563],[107.012445097656,30.0489430976563],[106.997144804688,30.0636428046876],[106.982056914063,30.0793483710938],[106.952042265625,30.0787355781251],[106.952447539063,30.0588430000001],[106.952108183594,30.042270734375],[106.857345,30.033843],[106.853441191406,30.0399391914063],[106.833157988281,30.05292503125],[106.823114042969,30.0372316718751],[106.769027128906,30.0199391914063],[106.722957792969,30.0328859687501],[106.713441191406,30.0599391914063],[106.701248808594,30.0777468085938],[106.697345,30.123843],[106.72170046875,30.1594875312501],[106.77298953125,30.21819846875],[106.782066679688,30.2820485664063],[106.808863554688,30.3027346015626],[106.85170046875,30.3594875312501],[106.89298953125,30.40819846875],[106.897345,30.423843],[106.93298953125,30.43819846875],[106.960679960938,30.4740724921876],[106.977345,30.503843],[106.993260527344,30.5079274726563],[107.017891875,30.5239675117188],[107.073260527344,30.5097585273438],[107.083035917969,30.4836330390625],[107.107345,30.493843],[107.12396609375,30.469770734375],[107.141429472656,30.4850954414063],[107.107345,30.493843],[107.103260527344,30.4997585273438],[107.083260527344,30.5135671210938],[107.102157011719,30.520005109375],[107.112345,30.5177223945313],[107.135662871094,30.5229494453126],[107.175247832031,30.5063234687501],[107.197069121094,30.5379274726563],[107.209283476563,30.5020851875],[107.163260527344,30.4703102851563],[107.187025175781,30.4342873359375],[107.220560332031,30.4418044257813],[107.225557890625,30.4195143867188],[107.217345,30.413843]]]]}},{"type":"Feature","properties":{"name":"武胜县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.241910429688,30.1965407539062],[106.247345,30.183843],[106.224346953125,30.1878957343751],[106.241910429688,30.1965407539062]]],[[[105.987345,30.4038430000001],[105.983922148438,30.3916506171876],[105.975152617188,30.4004201484375],[105.987345,30.4038430000001]]],[[[105.987345,30.4038430000001],[105.97334109375,30.4317702460938],[105.959119902344,30.4248244453125],[105.943985625,30.4470851875],[105.963985625,30.4572023750001],[105.967345,30.4838430000001],[105.982330351563,30.4912917304688],[105.992345,30.48640159375],[106.002345,30.49128440625],[106.022345,30.4815163398438],[106.032369414063,30.5162575507813],[106.077345,30.4939015937501],[106.112843046875,30.5115480781251],[106.117345,30.533843],[106.154930449219,30.5482888007813],[106.163875761719,30.5270803046876],[106.136317167969,30.5050124335938],[106.153116484375,30.4651467109375],[106.190716582031,30.44304221875],[106.251890898438,30.4506520820312],[106.262222929688,30.4377516914063],[106.303287382813,30.4705910468751],[106.322345,30.4682204414063],[106.334893828125,30.4697829414063],[106.403719511719,30.4548903632813],[106.401217070313,30.4347658515625],[106.4384778125,30.404926984375],[106.444039335938,30.36022971875],[106.423355742188,30.325044171875],[106.437345,30.313843],[106.432178984375,30.2952931953125],[106.411170683594,30.279077375],[106.427603789063,30.2518361640625],[106.402345,30.2481032539063],[106.392345,30.2495827460938],[106.382345,30.2481032539063],[106.372203398438,30.2496022773438],[106.318592558594,30.2371804023437],[106.294835234375,30.2406911445313],[106.291605253906,30.218843],[106.293436308594,30.2064650703125],[106.271773710938,30.2096657539063],[106.262542753906,30.1871096015625],[106.246851835938,30.2074391914063],[106.227345,30.2103200507813],[106.193602324219,30.2053346992188],[106.191605253906,30.218843],[106.193160429688,30.2293556953125],[106.18170046875,30.23819846875],[106.167166777344,30.3070778632813],[106.099075957031,30.3186452460938],[106.08298953125,30.33948753125],[106.05170046875,30.34819846875],[106.02298953125,30.36948753125],[105.997345,30.373843],[105.997345,30.4038430000001],[105.987345,30.4038430000001]]]]}},{"type":"Feature","properties":{"name":"岳池县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.516727324219,30.7401638007813],[106.532347441406,30.7382204414062],[106.577345,30.7438430000001],[106.583616972656,30.7395143867187],[106.577862578125,30.7138430000001],[106.583529082031,30.6885646796875],[106.571160917969,30.6591213203126],[106.573465605469,30.648843],[106.571224394531,30.6388430000001],[106.577056914063,30.6128249335938],[106.547633085938,30.5748610664063],[106.553529082031,30.5485646796875],[106.540833769531,30.5183400703126],[106.570797148438,30.49765159375],[106.541112089844,30.4593483710938],[106.544586210938,30.4438430000001],[106.539132109375,30.4195143867188],[106.553260527344,30.4097585273438],[106.5750403125,30.3716017890625],[106.607669707031,30.3642873359375],[106.632352324219,30.3803591132813],[106.657345,30.3638430000001],[106.661429472656,30.3579274726563],[106.685516386719,30.3489138007813],[106.726046171875,30.3209304023438],[106.700150175781,30.2834206367188],[106.663260527344,30.2679274726563],[106.637345,30.263843],[106.637345,30.273843],[106.627345,30.273843],[106.62170046875,30.27819846875],[106.61298953125,30.28948753125],[106.558953886719,30.3116017890625],[106.509193144531,30.2970925117188],[106.492345,30.2995827460938],[106.481832304688,30.2980275703125],[106.472857695313,30.3096584296875],[106.454783964844,30.30698753125],[106.437345,30.313843],[106.423355742188,30.325044171875],[106.444039335938,30.36022971875],[106.4384778125,30.404926984375],[106.401217070313,30.4347658515625],[106.403719511719,30.4548903632813],[106.334893828125,30.4697829414063],[106.322345,30.4682204414063],[106.303287382813,30.4705910468751],[106.262222929688,30.4377516914063],[106.251890898438,30.4506520820312],[106.190716582031,30.44304221875],[106.153116484375,30.4651467109375],[106.136317167969,30.5050124335938],[106.163875761719,30.5270803046876],[106.154930449219,30.5482888007813],[106.117345,30.533843],[106.121429472656,30.5497585273438],[106.137345,30.573843],[106.1543371875,30.5966872382813],[106.183470488281,30.6082643867188],[106.170628691406,30.6514089179688],[106.198814726563,30.6723732734376],[106.211610136719,30.6895778632813],[106.241610136719,30.70149925],[106.2328528125,30.709790265625],[106.213612089844,30.70647971875],[106.209888945313,30.7281081367188],[106.262178984375,30.7177809882813],[106.302552519531,30.6874001289063],[106.324266386719,30.7165920234376],[106.352345,30.7214260078126],[106.364407988281,30.6910695625],[106.386009550781,30.6873513007813],[106.413079863281,30.6981081367188],[106.421610136719,30.7195778632813],[106.433079863281,30.7281081367188],[106.451610136719,30.7595778632813],[106.487345,30.7838430000001],[106.492899199219,30.7793971992188],[106.516727324219,30.7401638007813]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"达县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.377345,31.5538430000001],[107.381492949219,31.5275319648438],[107.392345,31.5299636054688],[107.412345,31.5254811835938],[107.432345,31.5299636054688],[107.442345,31.5277223945312],[107.46060671875,31.5318166328125],[107.491839628906,31.5076100898438],[107.524847441406,31.5150075507813],[107.521224394531,31.498843],[107.527498808594,31.4708547187501],[107.505513945313,31.4556740546875],[107.497345,31.423843],[107.466058378906,31.4151296210938],[107.45298953125,31.39819846875],[107.412271757813,31.3815334296876],[107.40298953125,31.34819846875],[107.375648222656,31.3028713203125],[107.405440703125,31.2798757148438],[107.37298953125,31.1973244453126],[107.412198515625,31.1880812812501],[107.431832304688,31.1909841132813],[107.444810820313,31.1741701484375],[107.468631621094,31.1925563789062],[107.48170046875,31.20948753125],[107.51298953125,31.2181984687501],[107.528426542969,31.23819846875],[107.547237578125,31.2269460273438],[107.539049101563,31.1715456367187],[107.562735625,31.1680471015625],[107.58170046875,31.17948753125],[107.597345,31.183843],[107.599923125,31.1661525703126],[107.642308378906,31.12397971875],[107.653582792969,31.134868390625],[107.661624785156,31.1112990546876],[107.684801054688,31.1163869453125],[107.689888945313,31.1312990546875],[107.697345,31.133843],[107.722056914063,31.1184181953126],[107.760289335938,31.121489484375],[107.774173613281,31.0966042304688],[107.771344023438,31.0613918281251],[107.829937773438,31.0246926093751],[107.791710234375,30.9917555976562],[107.792772246094,30.9785182929688],[107.725350371094,30.9204323554688],[107.717345,30.8938430000001],[107.711883574219,30.8893044257813],[107.702806425781,30.8783815742188],[107.676588164063,30.8670095039063],[107.63720828125,30.8196022773438],[107.602806425781,30.8393044257813],[107.57634890625,30.8507790351563],[107.547345,30.8478249335938],[107.532345,30.8493532539063],[107.522078886719,30.8483058906251],[107.507345,30.853843],[107.511158476563,30.8600295234375],[107.523531523438,30.8676564765625],[107.538831816406,30.8924831367188],[107.517994414063,30.9221608710938],[107.497345,30.915727765625],[107.474593535156,30.9228151679688],[107.442430449219,30.896762921875],[107.423531523438,30.9100295234375],[107.401158476563,30.9176564765626],[107.370096464844,30.9428151679687],[107.331107207031,30.930669171875],[107.303531523438,30.9500295234375],[107.256776152344,30.9659645820313],[107.263968535156,30.9890554023437],[107.257345,31.003843],[107.252159453125,31.0219802070313],[107.231790800781,31.0382888007813],[107.220499296875,31.0904787421875],[107.181319609375,31.0856056953125],[107.184210234375,31.108843],[107.180650664063,31.1374562812501],[107.195064726563,31.1619753242188],[107.19166140625,31.189341046875],[107.212899199219,31.1982888007813],[107.221790800781,31.210639875],[107.186951933594,31.2063063789063],[107.152174101563,31.2196755195313],[107.122738066406,31.1981716132813],[107.111890898438,31.1995217109376],[107.096143828125,31.1798537421875],[107.062899199219,31.1993971992188],[107.025213652344,31.2101711250001],[107.012899199219,31.2393971992188],[106.997345,31.263843],[107.008038359375,31.30124534375],[107.03431765625,31.2979763007813],[107.031678496094,31.3192018867188],[107.043011503906,31.3384841132813],[107.040655546875,31.357426984375],[107.07263796875,31.36972190625],[107.096261015625,31.3402223945313],[107.129823027344,31.3360475898438],[107.144039335938,31.36022971875],[107.141615019531,31.379712140625],[107.171790800781,31.4293971992188],[107.212899199219,31.4382888007813],[107.23634890625,31.4675734687501],[107.254654570313,31.4447170234376],[107.281790800781,31.4893971992188],[107.319476347656,31.500171125],[107.333116484375,31.5325392890625],[107.361790800781,31.5493971992188],[107.377345,31.5538430000001]]]]}},{"type":"Feature","properties":{"name":"大竹县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.257345,30.343843],[107.267345,30.343843],[107.267345,30.353843],[107.277345,30.353843],[107.277345,30.3338430000001],[107.261004667969,30.3257204414063],[107.257345,30.343843]]],[[[107.217345,30.413843],[107.205152617188,30.4172658515625],[107.213922148438,30.4260353828126],[107.217345,30.413843]]],[[[107.107345,30.493843],[107.141429472656,30.4850954414063],[107.12396609375,30.469770734375],[107.107345,30.493843]]],[[[107.267345,30.353843],[107.257345,30.353843],[107.257345,30.343843],[107.242491484375,30.3507839179688],[107.217664824219,30.3414235664063],[107.230767851563,30.3761891914063],[107.206278105469,30.3901540351563],[107.217345,30.413843],[107.225557890625,30.4195143867188],[107.220560332031,30.4418044257813],[107.187025175781,30.4342873359375],[107.163260527344,30.4703102851563],[107.209283476563,30.5020851875],[107.197069121094,30.5379274726563],[107.175247832031,30.5063234687501],[107.135662871094,30.5229494453126],[107.112345,30.5177223945313],[107.102157011719,30.520005109375],[107.083260527344,30.5135671210938],[107.103260527344,30.4997585273438],[107.107345,30.493843],[107.083035917969,30.4836330390625],[107.073260527344,30.5097585273438],[107.017891875,30.5239675117188],[106.993260527344,30.5079274726563],[106.977345,30.503843],[106.971785917969,30.5197072578125],[106.972962675781,30.5494142890625],[107.011595488281,30.5478810859375],[107.037345,30.643843],[107.05744265625,30.69374534375],[107.101383085938,30.7530080390625],[107.079569121094,30.7698439765625],[107.092689238281,30.801899640625],[107.12170046875,30.83948753125],[107.134486113281,30.8493556953125],[107.131141386719,30.8719826484375],[107.15298953125,30.9081984687501],[107.16170046875,30.9294875312501],[107.17298953125,30.93819846875],[107.187779570313,30.9743361640625],[107.22170046875,30.9994875312501],[107.257345,31.003843],[107.263968535156,30.9890554023437],[107.256776152344,30.9659645820313],[107.303531523438,30.9500295234375],[107.331107207031,30.930669171875],[107.370096464844,30.9428151679687],[107.401158476563,30.9176564765626],[107.423531523438,30.9100295234375],[107.442430449219,30.896762921875],[107.474593535156,30.9228151679688],[107.497345,30.915727765625],[107.517994414063,30.9221608710938],[107.538831816406,30.8924831367188],[107.523531523438,30.8676564765625],[107.511158476563,30.8600295234375],[107.507345,30.853843],[107.481365996094,30.8460207343751],[107.484276152344,30.8098146796876],[107.47197390625,30.7992140937501],[107.453963652344,30.7783107734375],[107.441998320313,30.7792726875001],[107.43271609375,30.75847190625],[107.419051542969,30.7466970039063],[107.45271609375,30.69921409375],[107.47197390625,30.66847190625],[107.516922636719,30.6484133125],[107.431917753906,30.5491506171875],[107.433204375,30.533149640625],[107.40197390625,30.51921409375],[107.397345,30.5138430000001],[107.344586210938,30.44315940625],[107.331263457031,30.380024640625],[107.297345,30.353843],[107.297345,30.3638430000001],[107.267345,30.3638430000001],[107.267345,30.353843]],[[107.267345,30.373843],[107.263922148438,30.3860353828126],[107.255152617188,30.3772658515625],[107.267345,30.373843]],[[107.247345,30.383843],[107.243922148438,30.3960353828125],[107.235152617188,30.3872658515626],[107.247345,30.383843]]]]}},{"type":"Feature","properties":{"name":"开江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.937345,31.213843],[107.925152617188,31.2104201484375],[107.933922148438,31.2016506171875],[107.972318144531,31.222817609375],[108.017345,31.2438430000001],[108.02298953125,31.23948753125],[108.033880644531,31.225376203125],[108.079642363281,31.2321388984376],[108.084398222656,31.1999440742188],[108.051539335938,31.1592873359375],[108.053167753906,31.1482717109376],[108.029173613281,31.138452375],[108.007591582031,31.1026735664062],[108.02170046875,31.0681984687501],[108.05170046875,31.0559206367188],[108.03298953125,31.03819846875],[108.005030546875,31.0267580390625],[107.972857695313,30.98507346875],[107.93298953125,30.9909645820312],[107.942640410156,30.9214382148438],[107.987345,30.913843],[107.978453398438,30.9023244453125],[107.899837675781,30.8429836250001],[107.877345,30.813843],[107.86170046875,30.8094875312501],[107.838245878906,30.7953395820313],[107.782662382813,30.8196291328125],[107.771954375,30.8180471015625],[107.749093046875,30.8318361640625],[107.754066191406,30.8654982734376],[107.717345,30.8938430000001],[107.725350371094,30.9204323554688],[107.792772246094,30.9785182929688],[107.791710234375,30.9917555976562],[107.829937773438,31.0246926093751],[107.771344023438,31.0613918281251],[107.774173613281,31.0966042304688],[107.760289335938,31.121489484375],[107.722056914063,31.1184181953126],[107.697345,31.133843],[107.734366484375,31.1823513007813],[107.796046171875,31.2539430976562],[107.836766386719,31.2250710273437],[107.882537871094,31.2082643867188],[107.899947539063,31.2284719062501],[107.93271609375,31.2192140937501],[107.937345,31.213843]]]]}},{"type":"Feature","properties":{"name":"渠县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.062899199219,31.1993971992188],[107.096143828125,31.1798537421875],[107.111890898438,31.1995217109376],[107.122738066406,31.1981716132813],[107.152174101563,31.2196755195313],[107.186951933594,31.2063063789063],[107.221790800781,31.210639875],[107.212899199219,31.1982888007813],[107.19166140625,31.189341046875],[107.195064726563,31.1619753242188],[107.180650664063,31.1374562812501],[107.184210234375,31.108843],[107.181319609375,31.0856056953125],[107.220499296875,31.0904787421875],[107.231790800781,31.0382888007813],[107.252159453125,31.0219802070313],[107.257345,31.003843],[107.22170046875,30.9994875312501],[107.187779570313,30.9743361640625],[107.17298953125,30.93819846875],[107.16170046875,30.9294875312501],[107.15298953125,30.9081984687501],[107.131141386719,30.8719826484375],[107.134486113281,30.8493556953125],[107.12170046875,30.83948753125],[107.092689238281,30.801899640625],[107.079569121094,30.7698439765625],[107.101383085938,30.7530080390625],[107.05744265625,30.69374534375],[107.037345,30.643843],[106.9923059375,30.6386257148438],[106.9057825,30.6536916328125],[106.88435671875,30.7086525703125],[106.922359648438,30.6885451484375],[106.952154570313,30.7067433906251],[106.900150175781,30.7191286445313],[106.862508574219,30.7390480781251],[106.852345,30.7386452460938],[106.841009550781,30.7390944648438],[106.822535429688,30.7590334296875],[106.802154570313,30.7686525703125],[106.792535429688,30.7790334296876],[106.752117949219,30.7981081367188],[106.752550078125,30.8090261054688],[106.732154570313,30.8186525703125],[106.722535429688,30.8290334296875],[106.682154570313,30.8386525703125],[106.667345,30.843843],[106.673529082031,30.8585646796875],[106.671124296875,30.8692897773438],[106.683861113281,30.8888503242187],[106.667345,30.913843],[106.673880644531,30.922309796875],[106.702884550781,30.9180251289063],[106.72170046875,30.94948753125],[106.73298953125,30.95819846875],[106.74170046875,30.9694875312501],[106.77298953125,30.97819846875],[106.803089628906,31.0005153632813],[106.843018828125,31.0718410468751],[106.88298953125,31.08819846875],[106.9226184375,31.1175807929687],[106.945103789063,31.1551760078125],[106.937550078125,31.20628440625],[106.95298953125,31.2181984687501],[106.957345,31.253843],[106.997345,31.263843],[107.012899199219,31.2393971992188],[107.025213652344,31.2101711250001],[107.062899199219,31.1993971992188]]]]}},{"type":"Feature","properties":{"name":"通川区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.504105253906,31.4140529609375],[107.532345,31.4077223945313],[107.561400175781,31.4142360664063],[107.544845,31.3403908515625],[107.573260527344,31.3297585273438],[107.581429472656,31.3079274726563],[107.593616972656,31.2995143867188],[107.589757109375,31.2822951484375],[107.631429472656,31.2667018867187],[107.622349882813,31.190259015625],[107.597345,31.183843],[107.58170046875,31.17948753125],[107.562735625,31.1680471015625],[107.539049101563,31.1715456367187],[107.547237578125,31.2269460273438],[107.528426542969,31.23819846875],[107.51298953125,31.2181984687501],[107.48170046875,31.20948753125],[107.468631621094,31.1925563789062],[107.444810820313,31.1741701484375],[107.431832304688,31.1909841132813],[107.412198515625,31.1880812812501],[107.37298953125,31.1973244453126],[107.405440703125,31.2798757148438],[107.375648222656,31.3028713203125],[107.40298953125,31.34819846875],[107.412271757813,31.3815334296876],[107.45298953125,31.39819846875],[107.466058378906,31.4151296210938],[107.497345,31.423843],[107.504105253906,31.4140529609375]]]]}},{"type":"Feature","properties":{"name":"万源市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.497345,31.863843],[107.487345,31.863843],[107.492345,31.8766506171876],[107.497345,31.863843]]],[[[107.667345,32.213843],[107.670767851563,32.2016506171875],[107.679537382813,32.2104201484376],[107.670794707031,32.2203932929688],[107.68502078125,32.22788596875],[107.674224882813,32.2519167304688],[107.693895292969,32.2772927070313],[107.700794707031,32.3203932929688],[107.707345,32.333843],[107.745179472656,32.3397121406251],[107.831339140625,32.2197194648438],[107.863902617188,32.2077638984375],[107.90088015625,32.2107350898438],[107.975252714844,32.14921409375],[108.009349394531,32.1672853828125],[108.025167265625,32.2198220039063],[108.042623320313,32.2184181953125],[108.065843535156,32.2313747382813],[108.140079375,32.2254103828125],[108.15197390625,32.23921409375],[108.157345,32.243843],[108.178038359375,32.2198244453125],[108.219742460938,32.2682326484375],[108.251373320313,32.2707741523438],[108.26197390625,32.2584719062501],[108.28271609375,32.2492140937501],[108.312345,32.2326833320313],[108.356182890625,32.2571413398438],[108.392345,32.2600490546875],[108.412489042969,32.2584304023438],[108.472615996094,32.26933128125],[108.486600371094,32.2530983710937],[108.508504667969,32.2342287421875],[108.497345,32.203843],[108.484947539063,32.1894533515625],[108.457345,32.1872365546876],[108.383096953125,32.1932009101563],[108.381170683594,32.1692214179688],[108.43197390625,32.0984719062501],[108.45197390625,32.0812404609376],[108.430474882813,32.0669850898438],[108.338687773438,32.0743605781251],[108.356766386719,32.0419582343751],[108.329935332031,32.018843],[108.37197390625,31.9826247382813],[108.340467558594,31.9781520820313],[108.298055449219,32.0018141914063],[108.254752226563,31.9746926093751],[108.27271609375,31.95921409375],[108.28197390625,31.91847190625],[108.30271609375,31.9092140937501],[108.342977324219,31.862485578125],[108.374967070313,31.8482106757813],[108.397818632813,31.8216872382813],[108.456358671875,31.8083864570313],[108.447345,31.783843],[108.41197390625,31.77921409375],[108.372547636719,31.7684255195313],[108.351373320313,31.7701271796876],[108.32572390625,31.7403542304688],[108.281922636719,31.7129201484376],[108.238707304688,31.7370314765625],[108.212735625,31.7068874335938],[108.17271609375,31.72921409375],[108.101412382813,31.7422219062501],[108.103524199219,31.7685182929688],[108.09197390625,31.77847190625],[108.077345,31.8112526679688],[108.022345,31.8068337226563],[107.992066679688,31.8092678046875],[107.968453398438,31.7960915351563],[107.923504667969,31.8125978828126],[107.90271609375,31.78847190625],[107.89197390625,31.77921409375],[107.866422148438,31.7384206367188],[107.888175078125,31.6994313789063],[107.852186308594,31.7195095039063],[107.84271609375,31.7064455390625],[107.872877226563,31.6804616523437],[107.871422148438,31.6623561835938],[107.834288359375,31.645786359375],[107.82271609375,31.65921409375],[107.799947539063,31.66847190625],[107.781800566406,31.647407453125],[107.736771269531,31.6725319648438],[107.721173125,31.7243386054688],[107.656400175781,31.761684796875],[107.581844511719,31.7200881171875],[107.583363066406,31.7011721015625],[107.527345,31.693843],[107.510250273438,31.6871218085938],[107.490667753906,31.7124929023438],[107.493602324219,31.7323513007813],[107.522345,31.7281032539063],[107.534407988281,31.7298854804688],[107.530203886719,31.7583303046875],[107.545640898438,31.7702468085938],[107.5716028125,31.8336818671875],[107.51170046875,31.8581984687501],[107.507345,31.863843],[107.511983671875,31.8892726875],[107.541785917969,31.886880109375],[107.542772246094,31.8991677070313],[107.51271609375,31.9250612617188],[107.55197390625,31.9492140937501],[107.573551054688,31.958843],[107.570897246094,31.9918752265626],[107.60197390625,32.00921409375],[107.688016386719,32.020473859375],[107.76197390625,32.0667946601563],[107.727979765625,32.1124050117187],[107.69197390625,32.12847190625],[107.67271609375,32.1392140937501],[107.618795195313,32.1554494453125],[107.633289824219,32.2035890937501],[107.667345,32.213843]]]]}},{"type":"Feature","properties":{"name":"宣汉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.937345,31.213843],[107.933922148438,31.2016506171875],[107.925152617188,31.2104201484375],[107.937345,31.213843]]],[[[107.937345,31.213843],[107.93271609375,31.2192140937501],[107.899947539063,31.2284719062501],[107.882537871094,31.2082643867188],[107.836766386719,31.2250710273437],[107.796046171875,31.2539430976562],[107.734366484375,31.1823513007813],[107.697345,31.133843],[107.689888945313,31.1312990546875],[107.684801054688,31.1163869453125],[107.661624785156,31.1112990546876],[107.653582792969,31.134868390625],[107.642308378906,31.12397971875],[107.599923125,31.1661525703126],[107.597345,31.183843],[107.622349882813,31.190259015625],[107.631429472656,31.2667018867187],[107.589757109375,31.2822951484375],[107.593616972656,31.2995143867188],[107.581429472656,31.3079274726563],[107.573260527344,31.3297585273438],[107.544845,31.3403908515625],[107.561400175781,31.4142360664063],[107.532345,31.4077223945313],[107.504105253906,31.4140529609375],[107.497345,31.423843],[107.505513945313,31.4556740546875],[107.527498808594,31.4708547187501],[107.521224394531,31.498843],[107.524847441406,31.5150075507813],[107.491839628906,31.5076100898438],[107.46060671875,31.5318166328125],[107.442345,31.5277223945312],[107.432345,31.5299636054688],[107.412345,31.5254811835938],[107.392345,31.5299636054688],[107.381492949219,31.5275319648438],[107.377345,31.5538430000001],[107.381158476563,31.5600295234375],[107.414720488281,31.5714675117188],[107.441888457031,31.59054221875],[107.452801542969,31.58714378125],[107.471158476563,31.6000295234375],[107.49420046875,31.6078835273438],[107.490614042969,31.619399640625],[107.523531523438,31.6576564765625],[107.527345,31.693843],[107.583363066406,31.7011721015625],[107.581844511719,31.7200881171875],[107.656400175781,31.761684796875],[107.721173125,31.7243386054688],[107.736771269531,31.6725319648438],[107.781800566406,31.647407453125],[107.799947539063,31.66847190625],[107.82271609375,31.65921409375],[107.834288359375,31.645786359375],[107.871422148438,31.6623561835938],[107.872877226563,31.6804616523437],[107.84271609375,31.7064455390625],[107.852186308594,31.7195095039063],[107.888175078125,31.6994313789063],[107.866422148438,31.7384206367188],[107.89197390625,31.77921409375],[107.90271609375,31.78847190625],[107.923504667969,31.8125978828126],[107.968453398438,31.7960915351563],[107.992066679688,31.8092678046875],[108.022345,31.8068337226563],[108.077345,31.8112526679688],[108.09197390625,31.77847190625],[108.103524199219,31.7685182929688],[108.101412382813,31.7422219062501],[108.17271609375,31.72921409375],[108.212735625,31.7068874335938],[108.238707304688,31.7370314765625],[108.281922636719,31.7129201484376],[108.32572390625,31.7403542304688],[108.351373320313,31.7701271796876],[108.372547636719,31.7684255195313],[108.41197390625,31.77921409375],[108.447345,31.783843],[108.489454375,31.7790529609375],[108.524129667969,31.7592629218751],[108.511124296875,31.7392897773438],[108.515706816406,31.718843],[108.511121855469,31.6983913398438],[108.527345,31.673843],[108.52271609375,31.66847190625],[108.487896757813,31.652934796875],[108.47197390625,31.6392140937501],[108.462669707031,31.6284157539063],[108.42900515625,31.6311208320313],[108.383819609375,31.5921901679688],[108.381942167969,31.568843],[108.383565703125,31.5486647773438],[108.34197390625,31.53921409375],[108.326998320313,31.5056569648437],[108.278604765625,31.5095461250001],[108.18271609375,31.4920534492188],[108.198990507813,31.4681716132813],[108.221229277344,31.4699587226563],[108.200789824219,31.4020729804687],[108.154700957031,31.3815065742188],[108.181793242188,31.3329470039063],[108.11197390625,31.28921409375],[108.080345488281,31.2667897773438],[108.02197390625,31.24921409375],[108.017345,31.2438430000001],[107.972318144531,31.222817609375],[107.937345,31.213843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"石棉县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.175323515625,29.5130544257813],[102.170985136719,29.4705104804687],[102.211009550781,29.466430890625],[102.262806425781,29.4983815742188],[102.291883574219,29.5193044257813],[102.307345,29.5238430000001],[102.317735625,29.4833571601563],[102.342293730469,29.4673659492188],[102.431846953125,29.4453688789062],[102.478992949219,29.4559377265626],[102.497254667969,29.4294899726563],[102.53322390625,29.4160305],[102.566356230469,29.3429274726562],[102.549442167969,29.2977248359376],[102.493260527344,29.2767018867188],[102.501429472656,29.2479274726563],[102.520369902344,29.2188430000001],[102.496434355469,29.1820900703125],[102.490103789063,29.153843],[102.494586210938,29.133843],[102.487345,29.1015407539063],[102.517345,29.093843],[102.52312625,29.07913596875],[102.520128203125,29.058843],[102.523160429688,29.0383303046875],[102.504852324219,29.0241994453126],[102.471541777344,28.9792726875],[102.473084746094,28.968843],[102.471549101563,28.9584523750001],[102.484407988281,28.9371315742187],[102.46170046875,28.89948753125],[102.457345,28.8738430000001],[102.437345,28.8738430000001],[102.437345,28.853843],[102.427345,28.853843],[102.34170046875,28.8581984687501],[102.310865507813,28.898149640625],[102.25170046875,28.90819846875],[102.24298953125,28.92948753125],[102.231549101563,28.948452375],[102.233162871094,28.9593825507813],[102.20170046875,28.97819846875],[102.19298953125,28.99948753125],[102.181549101563,29.018452375],[102.183172636719,29.0294362617188],[102.167345,29.0338430000001],[102.160748320313,29.0510060859375],[102.164039335938,29.07745628125],[102.150650664063,29.1002297187501],[102.155140410156,29.1363259101563],[102.121024199219,29.183032453125],[102.06396609375,29.1759352851562],[102.052899199219,29.1879201484375],[102.12677859375,29.2327956367188],[102.108541289063,29.2638210273437],[102.048580351563,29.300239484375],[102.027345,29.2976003242188],[101.986334257813,29.3027004218751],[101.957345,29.313843],[101.948490019531,29.3498903632813],[101.973565703125,29.3883962226563],[101.971224394531,29.398843],[101.978099394531,29.4295143867188],[101.951429472656,29.4479274726563],[101.937345,29.503843],[101.981016875,29.4941213203125],[102.037345,29.4998610664062],[102.052345,29.4983327460938],[102.067345,29.4998610664062],[102.082611113281,29.498305890625],[102.116346464844,29.5109841132813],[102.142767363281,29.5082912421875],[102.155819121094,29.5383815742188],[102.175323515625,29.5130544257813]]]]}},{"type":"Feature","properties":{"name":"芦山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.127345,30.4438430000001],[103.139537382813,30.4404201484375],[103.130767851563,30.4316506171875],[103.127345,30.4438430000001]]],[[[103.127345,30.4438430000001],[103.114879179688,30.4338600898438],[103.123924589844,30.3611428046876],[103.061441679688,30.3111086250001],[103.063587675781,30.2938430000001],[103.0608996875,30.2722194648438],[103.067345,30.243843],[103.063985625,30.2372023750001],[103.017235136719,30.2137184882813],[102.980704375,30.140483625],[102.973922148438,30.106889875],[102.947330351563,30.0539528632813],[102.920704375,30.0404836250001],[102.913985625,30.027202375],[102.907345,30.0238430000001],[102.891429472656,30.0279274726562],[102.883260527344,30.0841188789063],[102.917889433594,30.1080275703125],[102.891429472656,30.1179274726563],[102.883260527344,30.1297585273438],[102.869132109375,30.1395143867188],[102.873465605469,30.158843],[102.864483671875,30.1989138007812],[102.857345,30.203843],[102.86244265625,30.2231618476563],[102.884320097656,30.238843],[102.866041289063,30.2519435859375],[102.87447390625,30.2946169257813],[102.919564238281,30.3269362617187],[102.931519804688,30.3636843085937],[102.888328886719,30.3946413398438],[102.908363066406,30.4261965156251],[102.959505644531,30.4396901679687],[102.94099734375,30.468843],[102.96125125,30.5007472968751],[102.971519804688,30.5396681953125],[102.996370878906,30.5788088203126],[103.023170195313,30.5980178046875],[103.036815214844,30.617055890625],[103.007706328125,30.6379177070313],[102.981519804688,30.6480178046875],[102.952830839844,30.669926984375],[102.914132109375,30.6622805],[102.926917753906,30.7269826484375],[102.907821074219,30.740669171875],[102.917345,30.763843],[102.930704375,30.770483625],[102.973985625,30.777202375],[102.987345,30.7838430000001],[103.001429472656,30.7579274726563],[103.023260527344,30.7297585273438],[103.032345,30.7054811835937],[103.07033328125,30.7139968085937],[103.089598417969,30.6860964179688],[103.126314726563,30.660747296875],[103.133465605469,30.6288430000001],[103.125250273438,30.5921950507813],[103.164818144531,30.5648757148438],[103.156800566406,30.5291139960938],[103.177345,30.523843],[103.172713652344,30.4944533515626],[103.133360625,30.4672829414063],[103.127345,30.4438430000001]]]]}},{"type":"Feature","properties":{"name":"名山县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.207345,29.993843],[103.203922148438,30.0060353828126],[103.195152617188,29.9972658515625],[103.207345,29.9838430000001],[103.227345,29.9838430000001],[103.227345,29.973843],[103.207345,29.973843],[103.197345,29.973843],[103.193260527344,29.9797585273438],[103.147584257813,29.9914797187501],[103.127345,30.0455690742188],[103.091898222656,30.037622296875],[103.073260527344,30.0497585273438],[103.051429472656,30.0579274726563],[103.033260527344,30.0741188789062],[103.053260527344,30.0879274726563],[103.061429472656,30.1097585273438],[103.073260527344,30.1179274726563],[103.086864042969,30.1542848945313],[103.123260527344,30.1979274726563],[103.127345,30.2138430000001],[103.155213652344,30.2186916328126],[103.1839465625,30.2545729804688],[103.202899199219,30.2393971992188],[103.222345,30.2151125312501],[103.25625125,30.2574513984375],[103.307345,30.263843],[103.313531523438,30.2600295234375],[103.322345,30.2341701484375],[103.345240507813,30.2413014960938],[103.375714140625,30.222524640625],[103.354764433594,30.1757595039063],[103.371158476563,30.1276564765625],[103.383531523438,30.1100295234375],[103.387345,30.0938430000001],[103.36189578125,30.0879470039063],[103.351204863281,30.1017995429688],[103.330809355469,30.075376203125],[103.286712675781,30.0818923164062],[103.243482695313,30.025884015625],[103.237345,30.003843],[103.227345,30.003843],[103.227345,29.993843],[103.207345,29.993843]]]]}},{"type":"Feature","properties":{"name":"汉源县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.337345,29.7238430000001],[102.343316679688,29.7169118476562],[102.372515898438,29.7192580390626],[102.429696074219,29.7067873359376],[102.459295683594,29.7233010078126],[102.522650175781,29.6476613593751],[102.547345,29.6496462226563],[102.582345,29.6468337226563],[102.6336340625,29.6509548164063],[102.685184355469,29.5843190742188],[102.70271609375,29.56921409375],[102.714066191406,29.5192555976563],[102.740726347656,29.4883107734375],[102.7524621875,29.48925315625],[102.822569609375,29.4783791328125],[102.847345,29.4938430000001],[102.86490359375,29.4893361640625],[102.893260527344,29.4697585273438],[102.913529082031,29.4119411445313],[102.937615996094,29.4065407539063],[102.967345,29.4138430000001],[102.996119414063,29.3745705390626],[102.972916289063,29.3329811835937],[102.997345,29.2938430000001],[102.937811308594,29.3079128242188],[102.912496367188,29.2738820625],[102.900909453125,29.2175588203125],[102.847957792969,29.1995778632813],[102.83048953125,29.2230593085938],[102.833961210938,29.2432326484376],[102.78500125,29.2581081367188],[102.767249785156,29.2134377265625],[102.774928007813,29.168843],[102.740931425781,29.1553346992188],[102.6925403125,29.1697365546875],[102.677345,29.1671218085938],[102.654407988281,29.1710695625001],[102.637345,29.2140090156251],[102.588597441406,29.2056154609375],[102.594964628906,29.1686208320313],[102.561610136719,29.1595778632813],[102.553079863281,29.1281081367188],[102.521610136719,29.1095778632813],[102.517345,29.093843],[102.487345,29.1015407539063],[102.494586210938,29.133843],[102.490103789063,29.153843],[102.496434355469,29.1820900703125],[102.520369902344,29.2188430000001],[102.501429472656,29.2479274726563],[102.493260527344,29.2767018867188],[102.549442167969,29.2977248359376],[102.566356230469,29.3429274726562],[102.53322390625,29.4160305],[102.497254667969,29.4294899726563],[102.478992949219,29.4559377265626],[102.431846953125,29.4453688789062],[102.342293730469,29.4673659492188],[102.317735625,29.4833571601563],[102.307345,29.5238430000001],[102.321663847656,29.5619484687501],[102.283372832031,29.593755109375],[102.281065703125,29.6163869453125],[102.292877226563,29.65862815625],[102.29107546875,29.6762966132813],[102.315494414063,29.7056935859376],[102.337345,29.7238430000001]]]]}},{"type":"Feature","properties":{"name":"天全县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.560130644531,30.3585451484376],[102.626046171875,30.3079982734375],[102.659281035156,30.3093166328125],[102.674119902344,30.2624440742188],[102.722572050781,30.2395778632813],[102.721949492188,30.223843],[102.722542753906,30.2088430000001],[102.721995878906,30.19503440625],[102.772535429688,30.1790334296875],[102.786536894531,30.1493654609376],[102.824620390625,30.2083376289063],[102.842496367188,30.209048078125],[102.857345,30.203843],[102.864483671875,30.1989138007812],[102.873465605469,30.158843],[102.869132109375,30.1395143867188],[102.883260527344,30.1297585273438],[102.891429472656,30.1179274726563],[102.917889433594,30.1080275703125],[102.883260527344,30.0841188789063],[102.891429472656,30.0279274726562],[102.907345,30.0238430000001],[102.904801054688,29.9663869453126],[102.879888945313,29.9412990546875],[102.877345,29.913843],[102.841790800781,29.9093971992188],[102.774940214844,29.86056175],[102.712713652344,29.8971388984376],[102.701890898438,29.9106520820313],[102.672799101563,29.9070339179688],[102.645516386719,29.9411037421876],[102.607345,29.9363552070313],[102.573287382813,29.9405910468751],[102.532899199219,29.9082888007813],[102.501790800781,29.8993971992188],[102.492899199219,29.8782888007813],[102.458665800781,29.8638649726563],[102.391790800781,29.8493971992188],[102.372799101563,29.8256764960938],[102.332799101563,29.8306520820313],[102.327345,29.823843],[102.293748808594,29.83319846875],[102.28298953125,29.8594875312501],[102.271549101563,29.8784523750001],[102.276285429688,29.9105080390625],[102.29298953125,29.93819846875],[102.30170046875,29.975044171875],[102.279605742188,30.01167503125],[102.267345,30.083843],[102.282159453125,30.0957057929688],[102.294032011719,30.1372267890625],[102.332645292969,30.2008010078125],[102.371951933594,30.2295143867188],[102.390504179688,30.2272072578126],[102.402899199219,30.2482888007813],[102.411790800781,30.3093971992188],[102.417345,30.313843],[102.442535429688,30.3186525703125],[102.482154570313,30.3290334296875],[102.522535429688,30.3386525703126],[102.560130644531,30.3585451484376]]]]}},{"type":"Feature","properties":{"name":"荥经县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.645516386719,29.9411037421876],[102.672799101563,29.9070339179688],[102.701890898438,29.9106520820313],[102.712713652344,29.8971388984376],[102.774940214844,29.86056175],[102.841790800781,29.9093971992188],[102.877345,29.913843],[102.89170046875,29.9027614570313],[102.88298953125,29.88819846875],[102.86298953125,29.8727614570313],[102.88170046875,29.85819846875],[102.930201445313,29.8383498359376],[102.935516386719,29.802387921875],[102.921549101563,29.779233625],[102.923084746094,29.768843],[102.920824003906,29.7535451484375],[102.927345,29.7138430000001],[102.933001738281,29.6991262031251],[102.931722441406,29.688843],[102.93297,29.6788088203125],[102.92172,29.5988771796875],[102.922967558594,29.588843],[102.921722441406,29.578843],[102.923980742188,29.5606838203125],[102.902899199219,29.5482888007813],[102.865355253906,29.5324709296876],[102.851790800781,29.5093971992188],[102.847345,29.4938430000001],[102.822569609375,29.4783791328125],[102.7524621875,29.48925315625],[102.740726347656,29.4883107734375],[102.714066191406,29.5192555976563],[102.70271609375,29.56921409375],[102.685184355469,29.5843190742188],[102.6336340625,29.6509548164063],[102.582345,29.6468337226563],[102.547345,29.6496462226563],[102.522650175781,29.6476613593751],[102.459295683594,29.7233010078126],[102.429696074219,29.7067873359376],[102.372515898438,29.7192580390626],[102.343316679688,29.7169118476562],[102.337345,29.7238430000001],[102.330780058594,29.7391384101563],[102.361285429688,29.77792503125],[102.331339140625,29.7978371406251],[102.327345,29.823843],[102.332799101563,29.8306520820313],[102.372799101563,29.8256764960938],[102.391790800781,29.8493971992188],[102.458665800781,29.8638649726563],[102.492899199219,29.8782888007813],[102.501790800781,29.8993971992188],[102.532899199219,29.9082888007813],[102.573287382813,29.9405910468751],[102.607345,29.9363552070313],[102.645516386719,29.9411037421876]]]]}},{"type":"Feature","properties":{"name":"雨城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.197345,29.963843],[103.197345,29.973843],[103.207345,29.973843],[103.207345,29.963843],[103.197345,29.963843]]],[[[103.207345,29.993843],[103.227345,29.993843],[103.227345,29.9838430000001],[103.207345,29.9838430000001],[103.207345,29.993843]]],[[[103.207345,29.993843],[103.195152617188,29.9972658515625],[103.203922148438,30.0060353828126],[103.207345,29.993843]]],[[[103.197345,29.973843],[103.184537382813,29.968843],[103.197345,29.963843],[103.192615996094,29.9485280585938],[103.171585722656,29.9497829414063],[103.152625761719,29.9285622382813],[103.083040800781,29.8966237617188],[103.131920195313,29.8529518867188],[103.162796660156,29.7787136054687],[103.14115359375,29.7593752265625],[103.154908476563,29.7470851875001],[103.141549101563,29.6972023750001],[103.143221464844,29.6691237617188],[103.122064238281,29.6785622382813],[103.102467070313,29.6892116523438],[103.052113066406,29.6784523750001],[103.042625761719,29.6991237617188],[103.032064238281,29.7085622382813],[103.013160429688,29.7297194648438],[102.990594511719,29.71745628125],[102.954366484375,29.7196169257813],[102.927345,29.7138430000001],[102.920824003906,29.7535451484375],[102.923084746094,29.768843],[102.921549101563,29.779233625],[102.935516386719,29.802387921875],[102.930201445313,29.8383498359376],[102.88170046875,29.85819846875],[102.86298953125,29.8727614570313],[102.88298953125,29.88819846875],[102.89170046875,29.9027614570313],[102.877345,29.913843],[102.879888945313,29.9412990546875],[102.904801054688,29.9663869453126],[102.907345,30.0238430000001],[102.913985625,30.027202375],[102.920704375,30.0404836250001],[102.947330351563,30.0539528632813],[102.973922148438,30.106889875],[102.980704375,30.140483625],[103.017235136719,30.2137184882813],[103.063985625,30.2372023750001],[103.067345,30.243843],[103.07298953125,30.2394875312501],[103.087567167969,30.2206008125001],[103.127345,30.2138430000001],[103.123260527344,30.1979274726563],[103.086864042969,30.1542848945313],[103.073260527344,30.1179274726563],[103.061429472656,30.1097585273438],[103.053260527344,30.0879274726563],[103.033260527344,30.0741188789062],[103.051429472656,30.0579274726563],[103.073260527344,30.0497585273438],[103.091898222656,30.037622296875],[103.127345,30.0455690742188],[103.147584257813,29.9914797187501],[103.193260527344,29.9797585273438],[103.197345,29.973843]]]]}},{"type":"Feature","properties":{"name":"宝兴县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.86298953125,30.9294875312501],[102.897345,30.9038430000001],[102.86271609375,30.7883400703126],[102.89197390625,30.7684719062501],[102.917345,30.763843],[102.907821074219,30.740669171875],[102.926917753906,30.7269826484375],[102.914132109375,30.6622805],[102.952830839844,30.669926984375],[102.981519804688,30.6480178046875],[103.007706328125,30.6379177070313],[103.036815214844,30.617055890625],[103.023170195313,30.5980178046875],[102.996370878906,30.5788088203126],[102.971519804688,30.5396681953125],[102.96125125,30.5007472968751],[102.94099734375,30.468843],[102.959505644531,30.4396901679687],[102.908363066406,30.4261965156251],[102.888328886719,30.3946413398438],[102.931519804688,30.3636843085937],[102.919564238281,30.3269362617187],[102.87447390625,30.2946169257813],[102.866041289063,30.2519435859375],[102.884320097656,30.238843],[102.86244265625,30.2231618476563],[102.857345,30.203843],[102.842496367188,30.209048078125],[102.824620390625,30.2083376289063],[102.786536894531,30.1493654609376],[102.772535429688,30.1790334296875],[102.721995878906,30.19503440625],[102.722542753906,30.2088430000001],[102.721949492188,30.223843],[102.722572050781,30.2395778632813],[102.674119902344,30.2624440742188],[102.659281035156,30.3093166328125],[102.626046171875,30.3079982734375],[102.560130644531,30.3585451484376],[102.522535429688,30.3386525703126],[102.482154570313,30.3290334296875],[102.442535429688,30.3186525703125],[102.417345,30.313843],[102.425423613281,30.3630153632813],[102.420867949219,30.393843],[102.425301542969,30.423843],[102.414073515625,30.4998122382813],[102.436275664063,30.6153005195313],[102.458631621094,30.6325563789063],[102.474022246094,30.6524929023438],[102.471549101563,30.6692336250001],[102.48298953125,30.6881984687501],[102.49170046875,30.735044171875],[102.467345,30.753843],[102.47568484375,30.7837941718751],[102.501954375,30.7996388984375],[102.521832304688,30.7967018867188],[102.538365507813,30.8181227851563],[102.566324492188,30.8295632148438],[102.582857695313,30.8509841132813],[102.618280058594,30.8457497382813],[102.681995878906,30.8634914375001],[102.693236113281,30.9167580390625],[102.722345,30.9210597968751],[102.742735625,30.9180471015625],[102.761954375,30.9296388984376],[102.772554960938,30.9280739570313],[102.813338652344,30.9399636054687],[102.86298953125,30.9294875312501]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"巴州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.947345,31.763843],[106.950767851563,31.7760353828125],[106.959537382813,31.7672658515625],[106.947345,31.763843]]],[[[107.057345,31.8938430000001],[107.060767851563,31.9060353828126],[107.069537382813,31.8972658515625],[107.057345,31.8938430000001]]],[[[106.417345,31.913843],[106.404346953125,31.9194045234375],[106.413338652344,31.9365676093751],[106.417345,31.913843]]],[[[107.057345,31.8938430000001],[107.074368925781,31.851577375],[107.097345,31.833843],[107.117345,31.833843],[107.094803496094,31.806704328125],[107.062181425781,31.7880226875001],[107.047345,31.8058815742188],[107.026490507813,31.7807765937501],[106.932806425781,31.7903249335937],[106.941883574219,31.7683815742188],[106.947345,31.763843],[106.943260527344,31.7579274726563],[106.913260527344,31.7372145820313],[106.921732207031,31.7275856757813],[106.941429472656,31.7319997382813],[106.933260527344,31.7179274726563],[106.895618925781,31.691938703125],[106.913260527344,31.6797585273437],[106.921429472656,31.6679274726562],[106.938834257813,31.6559108710938],[106.919891386719,31.5947927070313],[106.927777128906,31.5596169257813],[106.901429472656,31.5497585273438],[106.882791777344,31.537622296875],[106.864129667969,31.5418044257813],[106.861224394531,31.528843],[106.865223417969,31.5109987617188],[106.837345,31.5038430000001],[106.82490359375,31.5199611640625],[106.809967070313,31.5177516914063],[106.813658476563,31.5427321601563],[106.782345,31.5381032539063],[106.768836699219,31.5401003242188],[106.773658476563,31.5727321601562],[106.732345,31.5666262031251],[106.702345,31.5710597968751],[106.682345,31.5681032539063],[106.670282011719,31.5698854804688],[106.673436308594,31.5912209296875],[106.652345,31.5881032539063],[106.641832304688,31.5896584296876],[106.630667753906,31.5751930976563],[106.634561796875,31.5488430000001],[106.630523710938,31.5215138984376],[106.566912871094,31.50948753125],[106.55298953125,31.55948753125],[106.535479765625,31.5730007148438],[106.501954375,31.5680471015625],[106.48298953125,31.5794875312501],[106.450699492188,31.5927028632813],[106.453084746094,31.608843],[106.451605253906,31.618843],[106.453084746094,31.6288430000001],[106.450479765625,31.646469953125],[106.407345,31.6638430000001],[106.391607695313,31.6866359687501],[106.36047,31.698286359375],[106.380814238281,31.7295290351563],[106.403260527344,31.7379274726563],[106.415179472656,31.75519065625],[106.401429472656,31.7879274726563],[106.397345,31.803843],[106.4133996875,31.8385158515625],[106.40123171875,31.8994606757813],[106.413170195313,31.9080178046875],[106.417345,31.913843],[106.423985625,31.9172023750001],[106.437423125,31.943764875],[106.457345,31.953843],[106.481842070313,31.9444264960938],[106.535753203125,31.9511330390626],[106.565272246094,31.92749534375],[106.589578886719,31.869809796875],[106.609251738281,31.8673610664063],[106.629578886719,31.8836403632813],[106.643941679688,31.9210060859376],[106.641131621094,31.9435964179688],[106.667142363281,31.9760768867188],[106.702061796875,31.9894997382813],[106.773070097656,31.9806667304688],[106.822061796875,31.9994997382813],[106.832371855469,31.9982180000001],[106.912899199219,32.0082888007813],[106.967345,32.0438430000001],[106.970767851563,32.0316506171875],[106.979537382813,32.0404201484375],[106.967345,32.0438430000001],[106.967345,32.053843],[106.997345,32.053843],[107.013018828125,32.060864484375],[107.021158476563,32.0476564765625],[107.038199492188,32.0371559882813],[107.04857546875,32.0038430000001],[107.040777617188,31.9788112617188],[107.055511503906,31.9340114570313],[107.045311308594,31.9012575507813],[107.057345,31.8938430000001]]]]}},{"type":"Feature","properties":{"name":"南江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.967345,32.0438430000001],[106.979537382813,32.0404201484375],[106.970767851563,32.0316506171875],[106.967345,32.0438430000001]]],[[[106.967345,32.0438430000001],[106.912899199219,32.0082888007813],[106.832371855469,31.9982180000001],[106.822061796875,31.9994997382813],[106.773070097656,31.9806667304688],[106.702061796875,31.9894997382813],[106.667142363281,31.9760768867188],[106.641131621094,31.9435964179688],[106.643941679688,31.9210060859376],[106.629578886719,31.8836403632813],[106.609251738281,31.8673610664063],[106.589578886719,31.869809796875],[106.565272246094,31.92749534375],[106.535753203125,31.9511330390626],[106.481842070313,31.9444264960938],[106.457345,31.953843],[106.444705839844,31.9792726875],[106.467345,31.983843],[106.481920195313,31.9973464179688],[106.492154570313,32.0190334296875],[106.502535429688,32.0286525703125],[106.512154570313,32.0690334296876],[106.52334109375,32.0793971992188],[106.54240359375,32.0786428046876],[106.562154570313,32.080122296875],[106.536156035156,32.1042092109375],[106.562933378906,32.1290212226563],[106.558824492188,32.232671125],[106.655577421875,32.2511428046875],[106.672523222656,32.2694313789063],[106.697345,32.2684474921875],[106.7129309375,32.2690651679688],[106.712139921875,32.2890309882813],[106.771824980469,32.30042503125],[106.75134890625,32.3193971992188],[106.732166777344,32.3186379218751],[106.703939238281,32.3491042304688],[106.692157011719,32.348637921875],[106.681317167969,32.4279396796875],[106.682542753906,32.4588430000001],[106.682064238281,32.4709401679688],[106.651756621094,32.4990212226563],[106.653929472656,32.553843],[106.651949492188,32.603843],[106.652550078125,32.6190065742188],[106.642154570313,32.6386525703125],[106.637345,32.683843],[106.641790800781,32.6893971992188],[106.662899199219,32.6982888007813],[106.728392363281,32.7399562812501],[106.752345,32.736977765625],[106.772860136719,32.7395290351563],[106.781849394531,32.708091046875],[106.880484648438,32.7266921210938],[106.912266875,32.7080104804688],[106.982899199219,32.7182888007813],[107.002230253906,32.729653546875],[107.031790800781,32.7182888007813],[107.064232207031,32.7090138984376],[107.060479765625,32.678843],[107.086888457031,32.6677150703125],[107.096488066406,32.5905397773438],[107.082899199219,32.5582888007813],[107.070553007813,32.537290265625],[107.111419707031,32.5045632148438],[107.117345,32.483843],[107.107374296875,32.4498659492188],[107.092345,32.4483327460938],[107.055225859375,32.4521169257813],[107.050203886719,32.4028444648438],[107.064486113281,32.3648415351563],[107.06107546875,32.3313893867187],[107.071883574219,32.3183815742188],[107.101422148438,32.293843],[107.049940214844,32.251079328125],[107.076292753906,32.2144631171876],[107.061883574219,32.1893044257813],[107.052806425781,32.1683815742188],[107.041883574219,32.1493044257813],[107.032806425781,32.1183815742187],[106.988123808594,32.1052687812501],[106.992806425781,32.0593044257813],[106.997345,32.053843],[106.967345,32.053843],[106.967345,32.0438430000001]]]]}},{"type":"Feature","properties":{"name":"平昌县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.117345,31.833843],[107.097345,31.833843],[107.107345,31.8477956367188],[107.117345,31.833843]]],[[[106.947345,31.763843],[106.959537382813,31.7672658515625],[106.950767851563,31.7760353828125],[106.941883574219,31.7683815742188],[106.932806425781,31.7903249335937],[107.026490507813,31.7807765937501],[107.047345,31.8058815742188],[107.062181425781,31.7880226875001],[107.094803496094,31.806704328125],[107.117345,31.833843],[107.12298953125,31.83819846875],[107.138426542969,31.8581984687501],[107.19170046875,31.8293556953125],[107.172733183594,31.8180471015625],[107.15298953125,31.8209645820313],[107.1766028125,31.7543776679688],[107.234813261719,31.7305544257813],[107.230667753906,31.7024929023438],[107.251204863281,31.6758864570313],[107.267345,31.6967995429687],[107.28170046875,31.6781984687501],[107.31298953125,31.66948753125],[107.322110625,31.6576686835938],[107.34170046875,31.66948753125],[107.414085722656,31.6986403632813],[107.384429960938,31.721528546875],[107.37298953125,31.74948753125],[107.36099734375,31.7693679023438],[107.387345,31.7738430000001],[107.390767851563,31.7616506171876],[107.399537382813,31.7704201484375],[107.387345,31.7738430000001],[107.391429472656,31.7797585273438],[107.404586210938,31.788843],[107.390584746094,31.7985109687501],[107.367401152344,31.8341115546876],[107.391898222656,31.8500637031251],[107.402623320313,31.8476589179688],[107.437345,31.8622438789063],[107.457345,31.8538430000001],[107.467345,31.8398903632813],[107.481519804688,31.8596681953126],[107.487345,31.863843],[107.497345,31.863843],[107.507345,31.863843],[107.51170046875,31.8581984687501],[107.5716028125,31.8336818671875],[107.545640898438,31.7702468085938],[107.530203886719,31.7583303046875],[107.534407988281,31.7298854804688],[107.522345,31.7281032539063],[107.493602324219,31.7323513007813],[107.490667753906,31.7124929023438],[107.510250273438,31.6871218085938],[107.527345,31.693843],[107.523531523438,31.6576564765625],[107.490614042969,31.619399640625],[107.49420046875,31.6078835273438],[107.471158476563,31.6000295234375],[107.452801542969,31.58714378125],[107.441888457031,31.59054221875],[107.414720488281,31.5714675117188],[107.381158476563,31.5600295234375],[107.377345,31.5538430000001],[107.361790800781,31.5493971992188],[107.333116484375,31.5325392890625],[107.319476347656,31.500171125],[107.281790800781,31.4893971992188],[107.254654570313,31.4447170234376],[107.23634890625,31.4675734687501],[107.212899199219,31.4382888007813],[107.171790800781,31.4293971992188],[107.141615019531,31.379712140625],[107.144039335938,31.36022971875],[107.129823027344,31.3360475898438],[107.096261015625,31.3402223945313],[107.07263796875,31.36972190625],[107.040655546875,31.357426984375],[107.043011503906,31.3384841132813],[107.031678496094,31.3192018867188],[107.03431765625,31.2979763007813],[107.008038359375,31.30124534375],[106.997345,31.263843],[106.957345,31.253843],[106.953531523438,31.2600295234376],[106.939993925781,31.2683718085938],[106.954696074219,31.2893141914063],[106.928975859375,31.305161359375],[106.944366484375,31.339516828125],[106.931158476563,31.3476564765625],[106.913531523438,31.3800295234376],[106.873641386719,31.3936257148438],[106.867345,31.403843],[106.874793730469,31.4188283515625],[106.864295683594,31.440327375],[106.841073027344,31.4520754218751],[106.837345,31.5038430000001],[106.865223417969,31.5109987617188],[106.861224394531,31.528843],[106.864129667969,31.5418044257813],[106.882791777344,31.537622296875],[106.901429472656,31.5497585273438],[106.927777128906,31.5596169257813],[106.919891386719,31.5947927070313],[106.938834257813,31.6559108710938],[106.921429472656,31.6679274726562],[106.913260527344,31.6797585273437],[106.895618925781,31.691938703125],[106.933260527344,31.7179274726563],[106.941429472656,31.7319997382813],[106.921732207031,31.7275856757813],[106.913260527344,31.7372145820313],[106.943260527344,31.7579274726563],[106.947345,31.763843]]],[[[107.457345,31.8538430000001],[107.461397734375,31.876841046875],[107.470042753906,31.8592775703125],[107.457345,31.8538430000001]]]]}},{"type":"Feature","properties":{"name":"通江县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.387345,31.7738430000001],[107.399537382813,31.7704201484375],[107.390767851563,31.7616506171876],[107.387345,31.7738430000001]]],[[[107.667345,32.213843],[107.679537382813,32.2104201484376],[107.670767851563,32.2016506171875],[107.667345,32.213843]]],[[[107.667345,32.213843],[107.633289824219,32.2035890937501],[107.618795195313,32.1554494453125],[107.67271609375,32.1392140937501],[107.69197390625,32.12847190625],[107.727979765625,32.1124050117187],[107.76197390625,32.0667946601563],[107.688016386719,32.020473859375],[107.60197390625,32.00921409375],[107.570897246094,31.9918752265626],[107.573551054688,31.958843],[107.55197390625,31.9492140937501],[107.51271609375,31.9250612617188],[107.542772246094,31.8991677070313],[107.541785917969,31.886880109375],[107.511983671875,31.8892726875],[107.507345,31.863843],[107.497345,31.863843],[107.492345,31.8766506171876],[107.487345,31.863843],[107.481519804688,31.8596681953126],[107.467345,31.8398903632813],[107.457345,31.8538430000001],[107.470042753906,31.8592775703125],[107.461397734375,31.876841046875],[107.457345,31.8538430000001],[107.437345,31.8622438789063],[107.402623320313,31.8476589179688],[107.391898222656,31.8500637031251],[107.367401152344,31.8341115546876],[107.390584746094,31.7985109687501],[107.404586210938,31.788843],[107.391429472656,31.7797585273438],[107.387345,31.7738430000001],[107.36099734375,31.7693679023438],[107.37298953125,31.74948753125],[107.384429960938,31.721528546875],[107.414085722656,31.6986403632813],[107.34170046875,31.66948753125],[107.322110625,31.6576686835938],[107.31298953125,31.66948753125],[107.28170046875,31.6781984687501],[107.267345,31.6967995429687],[107.251204863281,31.6758864570313],[107.230667753906,31.7024929023438],[107.234813261719,31.7305544257813],[107.1766028125,31.7543776679688],[107.15298953125,31.8209645820313],[107.172733183594,31.8180471015625],[107.19170046875,31.8293556953125],[107.138426542969,31.8581984687501],[107.12298953125,31.83819846875],[107.117345,31.833843],[107.107345,31.8477956367188],[107.097345,31.833843],[107.074368925781,31.851577375],[107.057345,31.8938430000001],[107.069537382813,31.8972658515625],[107.060767851563,31.9060353828126],[107.057345,31.8938430000001],[107.045311308594,31.9012575507813],[107.055511503906,31.9340114570313],[107.040777617188,31.9788112617188],[107.04857546875,32.0038430000001],[107.038199492188,32.0371559882813],[107.021158476563,32.0476564765625],[107.013018828125,32.060864484375],[106.997345,32.053843],[106.992806425781,32.0593044257813],[106.988123808594,32.1052687812501],[107.032806425781,32.1183815742187],[107.041883574219,32.1493044257813],[107.052806425781,32.1683815742188],[107.061883574219,32.1893044257813],[107.076292753906,32.2144631171876],[107.049940214844,32.251079328125],[107.101422148438,32.293843],[107.071883574219,32.3183815742188],[107.06107546875,32.3313893867187],[107.064486113281,32.3648415351563],[107.050203886719,32.4028444648438],[107.055225859375,32.4521169257813],[107.092345,32.4483327460938],[107.107374296875,32.4498659492188],[107.117345,32.483843],[107.152310820313,32.4780983710938],[107.175928984375,32.4815895820313],[107.210181914063,32.437212140625],[107.267584257813,32.4025856757813],[107.285147734375,32.4858180976563],[107.34298953125,32.5181984687501],[107.377345,32.5438430000001],[107.413985625,32.540483625],[107.427345,32.5338430000001],[107.431248808594,32.4877468085938],[107.455975371094,32.4567653632813],[107.448040800781,32.4285231757813],[107.483441191406,32.4199391914063],[107.498084746094,32.3970656562501],[107.532613554688,32.3873610664063],[107.597159453125,32.4173268867188],[107.632345,32.40743675],[107.652764921875,32.4131764960938],[107.677269316406,32.3974904609375],[107.697420683594,32.3401955390625],[107.707345,32.333843],[107.700794707031,32.3203932929688],[107.693895292969,32.2772927070313],[107.674224882813,32.2519167304688],[107.68502078125,32.22788596875],[107.670794707031,32.2203932929688],[107.667345,32.213843]]]]}}]}
\ No newline at end of file
{"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"简阳市"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.847345,30.343843],[104.847345,30.353843],[104.837345,30.353843],[104.833922148438,30.3660353828125],[104.825152617188,30.3572658515625],[104.837345,30.353843],[104.837345,30.343843],[104.84271609375,30.3084719062501],[104.787345,30.2838430000001],[104.772857695313,30.30261253125],[104.732857695313,30.2967018867188],[104.722857695313,30.3096584296875],[104.707838164063,30.3074391914063],[104.69298953125,30.28819846875],[104.640074492188,30.2792092109376],[104.644605742188,30.248540265625],[104.60170046875,30.2394875312501],[104.588631621094,30.2225563789063],[104.57170046875,30.20948753125],[104.56298953125,30.19819846875],[104.548695097656,30.1871657539063],[104.527345,30.1903200507813],[104.512345,30.1881032539063],[104.492147246094,30.19108909375],[104.482938261719,30.1580153632813],[104.472345,30.1595827460938],[104.459000273438,30.1576100898438],[104.437345,30.1038430000001],[104.425631132813,30.0897389960938],[104.412806425781,30.1193044257812],[104.391883574219,30.1283815742188],[104.382806425781,30.1593044257813],[104.366419707031,30.1729177070312],[104.351085234375,30.1913796210937],[104.275325957031,30.224233625],[104.262806425781,30.2393044257813],[104.231239042969,30.2529958320313],[104.23408328125,30.280884015625],[104.222806425781,30.3193044257813],[104.187345,30.3238430000001],[104.20170046875,30.3594875312501],[104.218631621094,30.3875563789063],[104.23170046875,30.41948753125],[104.248631621094,30.4325563789063],[104.2682825,30.458012921875],[104.247345,30.463843],[104.252349882813,30.483344953125],[104.295545683594,30.5014870429688],[104.321673613281,30.495630109375],[104.332615996094,30.51147971875],[104.342557402344,30.4849147773438],[104.393260527344,30.4979274726563],[104.401429472656,30.5097585273438],[104.414586210938,30.5188430000001],[104.395250273438,30.5321950507813],[104.403465605469,30.568843],[104.400186796875,30.5834743476562],[104.411429472656,30.5997585273438],[104.427345,30.603843],[104.437069121094,30.5897585273438],[104.494569121094,30.5981179023438],[104.523260527344,30.6179274726563],[104.532274199219,30.630981671875],[104.572623320313,30.6400270820313],[104.601429472656,30.6279274726563],[104.633260527344,30.6197585273438],[104.651898222656,30.607622296875],[104.674525175781,30.6126955390625],[104.695557890625,30.5981716132813],[104.68709109375,30.5604030585937],[104.723260527344,30.5397585273438],[104.731429472656,30.5179274726563],[104.763624296875,30.4995510078125],[104.759598417969,30.4815895820313],[104.803260527344,30.4979274726563],[104.815697050781,30.5159377265625],[104.852386503906,30.5077126289063],[104.877345,30.5138430000001],[104.865208769531,30.48675315625],[104.873902617188,30.458843],[104.870787382813,30.448843],[104.873902617188,30.4388430000001],[104.870777617188,30.4288112617188],[104.887967558594,30.376548078125],[104.861158476563,30.3600295234375],[104.853531523438,30.3476564765626],[104.847345,30.343843]]]]}},{"type":"Feature","properties":{"name":"乐至县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.847345,30.343843],[104.837345,30.343843],[104.837345,30.353843],[104.847345,30.353843],[104.847345,30.343843]]],[[[104.837345,30.353843],[104.825152617188,30.3572658515625],[104.833922148438,30.3660353828125],[104.837345,30.353843]]],[[[104.847345,30.343843],[104.853531523438,30.3476564765626],[104.861158476563,30.3600295234375],[104.887967558594,30.376548078125],[104.870777617188,30.4288112617188],[104.873902617188,30.4388430000001],[104.870787382813,30.448843],[104.873902617188,30.458843],[104.865208769531,30.48675315625],[104.877345,30.5138430000001],[104.890797148438,30.5420412421875],[104.860885039063,30.5773830390625],[104.857345,30.5938430000001],[104.863822050781,30.6190871406251],[104.915697050781,30.6307155585938],[104.931673613281,30.6075710273438],[104.957948027344,30.613462140625],[104.964586210938,30.583843],[104.960186796875,30.5642116523438],[104.982274199219,30.53222190625],[105.006976347656,30.526684796875],[105.023616972656,30.5381716132813],[105.019188261719,30.5579274726563],[105.043260527344,30.5497585273438],[105.051429472656,30.5379274726563],[105.057345,30.533843],[105.061429472656,30.5179274726563],[105.074835234375,30.49733909375],[105.085557890625,30.4495143867188],[105.069495878906,30.438423078125],[105.087345,30.433843],[105.081449003906,30.40839378125],[105.09298953125,30.39948753125],[105.12170046875,30.34819846875],[105.14298953125,30.33948753125],[105.152081328125,30.3277053046875],[105.20205203125,30.30806175],[105.212916289063,30.3096657539063],[105.221773710938,30.2880202460938],[105.232486601563,30.2896022773438],[105.257345,30.2838430000001],[105.264586210938,30.278843],[105.251429472656,30.2697585273438],[105.243016386719,30.2575710273438],[105.225574980469,30.2614821601562],[105.198682890625,30.2201833320313],[105.204586210938,30.193843],[105.198538847656,30.1668679023438],[105.215697050781,30.1707155585938],[105.231429472656,30.1479274726563],[105.251429472656,30.1341188789063],[105.239166289063,30.0947951484375],[105.210230742188,30.0759548164063],[105.192066679688,30.0800270820313],[105.162623320313,30.0676589179688],[105.152345,30.0699636054688],[105.132345,30.0654811835938],[105.100369902344,30.0726491523437],[105.106151152344,30.0468679023438],[105.092345,30.0499636054688],[105.077074003906,30.0465407539063],[105.047345,30.053843],[105.052987089844,30.0786818671875],[105.051722441406,30.088843],[105.052967558594,30.0988430000001],[105.049583769531,30.1260329414063],[105.013502226563,30.154926984375],[104.961532011719,30.1768263984375],[104.891888457031,30.1681642890625],[104.84482546875,30.2300026679688],[104.773905058594,30.2730812812501],[104.787345,30.2838430000001],[104.84271609375,30.3084719062501],[104.847345,30.343843]]]]}},{"type":"Feature","properties":{"name":"安岳县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.557345,29.733843],[105.569537382813,29.7304201484376],[105.560767851563,29.7216506171875],[105.557345,29.733843]]],[[[105.557345,29.733843],[105.541610136719,29.7295778632813],[105.53048953125,29.7146266914062],[105.534730253906,29.6899880195313],[105.485765410156,29.7202931953125],[105.464185820313,29.716577375],[105.477345,29.6838430000001],[105.471673613281,29.675630109375],[105.452345,29.6799636054687],[105.442303496094,29.6777126289063],[105.417345,29.6838430000001],[105.412899199219,29.7193971992188],[105.391673613281,29.7484499335938],[105.397547636719,29.7956716132813],[105.381790800781,29.8082888007812],[105.35834109375,29.8375734687501],[105.341890898438,29.8170339179688],[105.294610625,29.8229152656251],[105.282899199219,29.8082888007812],[105.230548125,29.7993971992187],[105.232967558594,29.818843],[105.230618925781,29.8377248359375],[105.173551054688,29.85007346875],[105.142899199219,29.8382888007813],[105.117345,29.8338430000001],[105.112806425781,29.8393044257813],[105.073267851563,29.8721486640625],[105.092806425781,29.8883815742188],[105.101883574219,29.9037087226563],[105.061793242188,29.9284352851563],[105.062894316406,29.9392336250001],[105.046419707031,29.9529177070313],[105.023516875,29.9804909492188],[105.002078886719,29.9783058906251],[104.972806425781,29.9893044257813],[104.957345,29.993843],[104.962074003906,30.0122658515625],[104.988377714844,30.0063698554688],[105.015513945313,30.0456740546875],[105.047345,30.053843],[105.077074003906,30.0465407539063],[105.092345,30.0499636054688],[105.106151152344,30.0468679023438],[105.100369902344,30.0726491523437],[105.132345,30.0654811835938],[105.152345,30.0699636054688],[105.162623320313,30.0676589179688],[105.192066679688,30.0800270820313],[105.210230742188,30.0759548164063],[105.239166289063,30.0947951484375],[105.251429472656,30.1341188789063],[105.231429472656,30.1479274726563],[105.215697050781,30.1707155585938],[105.198538847656,30.1668679023438],[105.204586210938,30.193843],[105.198682890625,30.2201833320313],[105.225574980469,30.2614821601562],[105.243016386719,30.2575710273438],[105.251429472656,30.2697585273438],[105.264586210938,30.278843],[105.257345,30.2838430000001],[105.261803007813,30.2894118476562],[105.332127714844,30.3094924140625],[105.342345,30.3082204414063],[105.352843046875,30.3095265937501],[105.36334109375,30.284614484375],[105.412345,30.290708234375],[105.422596464844,30.2663771796876],[105.465904570313,30.248130109375],[105.485369902344,30.2238210273438],[105.512345,30.2079640937501],[105.538741484375,30.223481671875],[105.552899199219,30.1993971992188],[105.557345,30.183843],[105.53271609375,30.1764284492188],[105.54922,30.1444118476563],[105.569947539063,30.16847190625],[105.59439578125,30.1585329414063],[105.562935820313,30.1314284492188],[105.632117949219,30.1005568671875],[105.64197390625,30.0784719062501],[105.67271609375,30.06921409375],[105.685858183594,30.0397658515626],[105.702345,30.0384401679688],[105.720330839844,30.0398854804688],[105.749754667969,30.0145363593751],[105.722955351563,29.9914455390625],[105.721942167969,29.9788430000001],[105.72412234375,29.9517116523438],[105.71271609375,29.93847190625],[105.699288359375,29.926899640625],[105.71197390625,29.89847190625],[105.72271609375,29.8892140937501],[105.737345,29.863843],[105.72170046875,29.8594875312501],[105.700767851563,29.846860578125],[105.677345,29.8503200507813],[105.612689238281,29.840766828125],[105.60298953125,29.82819846875],[105.578734160156,29.8182717109376],[105.583140898438,29.788452375],[105.571549101563,29.769233625],[105.573143339844,29.7584401679688],[105.557345,29.733843]]]]}},{"type":"Feature","properties":{"name":"雁江区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.787345,29.863843],[104.810343046875,29.8597902656251],[104.792779570313,29.8511452460938],[104.787345,29.863843]]],[[[104.787345,29.863843],[104.774537382813,29.8688430000001],[104.787345,29.8738430000001],[104.787345,29.863843]]],[[[104.857345,29.893843],[104.869537382813,29.8904201484376],[104.860767851563,29.8816506171875],[104.857345,29.893843]]],[[[104.887345,29.9038430000001],[104.883922148438,29.8916506171876],[104.875152617188,29.9004201484375],[104.887345,29.9038430000001]]],[[[104.887345,29.9038430000001],[104.87634890625,29.91757346875],[104.857345,29.893843],[104.830704375,29.8904836250001],[104.821353789063,29.8720021796875],[104.802330351563,29.8812917304688],[104.787345,29.8738430000001],[104.782806425781,29.8793044257813],[104.771883574219,29.8883815742188],[104.762806425781,29.9093044257813],[104.74095828125,29.9274562812501],[104.722806425781,29.9493044257813],[104.684647246094,29.96050315625],[104.662806425781,29.9510427070312],[104.705921660156,29.9383913398438],[104.675819121094,29.8993044257813],[104.647081328125,29.9655641914063],[104.632806425781,29.9483815742188],[104.60396609375,29.9358718085938],[104.591954375,29.9503322578125],[104.570748320313,29.9481716132813],[104.573363066406,29.973843],[104.571600371094,29.9911550117188],[104.529234648438,30.0095290351562],[104.503192167969,30.0408815742188],[104.492806425781,30.0283815742188],[104.479420195313,30.0193044257813],[104.467345,30.033843],[104.461449003906,30.048843],[104.476820097656,30.0879445625],[104.437345,30.1038430000001],[104.459000273438,30.1576100898438],[104.472345,30.1595827460938],[104.482938261719,30.1580153632813],[104.492147246094,30.19108909375],[104.512345,30.1881032539063],[104.527345,30.1903200507813],[104.548695097656,30.1871657539063],[104.56298953125,30.19819846875],[104.57170046875,30.20948753125],[104.588631621094,30.2225563789063],[104.60170046875,30.2394875312501],[104.644605742188,30.248540265625],[104.640074492188,30.2792092109376],[104.69298953125,30.28819846875],[104.707838164063,30.3074391914063],[104.722857695313,30.3096584296875],[104.732857695313,30.2967018867188],[104.772857695313,30.30261253125],[104.787345,30.2838430000001],[104.773905058594,30.2730812812501],[104.84482546875,30.2300026679688],[104.891888457031,30.1681642890625],[104.961532011719,30.1768263984375],[105.013502226563,30.154926984375],[105.049583769531,30.1260329414063],[105.052967558594,30.0988430000001],[105.051722441406,30.088843],[105.052987089844,30.0786818671875],[105.047345,30.053843],[105.015513945313,30.0456740546875],[104.988377714844,30.0063698554688],[104.962074003906,30.0122658515625],[104.957345,29.993843],[104.930704375,29.980483625],[104.917347441406,29.9540773750001],[104.927205839844,29.9338893867188],[104.900704375,29.9204836250001],[104.893985625,29.907202375],[104.887345,29.9038430000001]]]]}}]}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment