w-gis 1.0.50 → 1.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/.github/workflows/ci-test.yml +1 -1
  2. package/README.md +1 -2
  3. package/calcContours1.json +1 -0
  4. package/calcContours2.json +1 -0
  5. package/calcContours3.json +1 -0
  6. package/calcContours4.json +1 -0
  7. package/calcContours5.json +1 -0
  8. package/calcContours6.json +1 -0
  9. package/calcContours7.json +1 -0
  10. package/dist/interp2.wk.umd.js +1 -1
  11. package/dist/w-gis.umd.js +2 -2
  12. package/dist/w-gis.umd.js.map +1 -1
  13. package/docs/-_class.mjs.html +2 -2
  14. package/docs/bufferMultiPolygon.mjs.html +3 -3
  15. package/docs/calcContours.mjs.html +19 -12
  16. package/docs/calcDelaunay.mjs.html +238 -0
  17. package/docs/calcVoronoi.mjs.html +456 -0
  18. package/docs/convertCoordinate.mjs.html +3 -3
  19. package/docs/examples/ex-convertCoordinate.html +1 -1
  20. package/docs/examples/ex-getCenterOfMassMultiPolygon.html +1 -1
  21. package/docs/examples/ex-getCentroidMultiPolygon.html +1 -1
  22. package/docs/fixCloseMultiPolygon.mjs.html +5 -5
  23. package/docs/fixNoCloseMultiPolygon.mjs.html +6 -6
  24. package/docs/getAreaMultiPolygon.mjs.html +3 -3
  25. package/docs/getAreaMultiPolygonSm.mjs.html +2 -2
  26. package/docs/getAreaPolygon.mjs.html +5 -5
  27. package/docs/getAreaRingString.mjs.html +5 -5
  28. package/docs/getBoxPolygon.mjs.html +2 -2
  29. package/docs/getCenterOfMassMultiPolygon.mjs.html +3 -3
  30. package/docs/getCentroidMultiPolygon.mjs.html +3 -3
  31. package/docs/importTurf.mjs.html +2 -2
  32. package/docs/index.html +2 -2
  33. package/docs/interp1.mjs.html +8 -8
  34. package/docs/interp2.mjs.html +3 -3
  35. package/docs/interp2Kriging.mjs.html +10 -8
  36. package/docs/interp2NaturalNeighbor.mjs.html +10 -37
  37. package/docs/interp3.mjs.html +7 -7
  38. package/docs/normalizeArray.mjs.html +11 -11
  39. package/docs/ptsXYZVtoArr.mjs.html +7 -7
  40. package/docs/ptsXYZtoArr.mjs.html +7 -7
  41. package/docs/ptsXYtoArr.mjs.html +7 -7
  42. package/docs/ptsXtoArr.mjs.html +7 -7
  43. package/docs/toMultiPoint.mjs.html +3 -3
  44. package/docs/toMultiPolygon.mjs.html +4 -4
  45. package/docs/toPolygon.mjs.html +3 -3
  46. package/docs/w-gis.html +905 -6
  47. package/{g-calcContours.mjs → g_calcContours.mjs} +1 -1
  48. package/g_calcDelaunay.mjs +38 -0
  49. package/g_calcVoronoi.mjs +123 -0
  50. package/{g-convertCoordinate.mjs → g_convertCoordinate.mjs} +1 -1
  51. package/{g-interp1.mjs → g_interp1.mjs} +1 -1
  52. package/{g-interp2.mjs → g_interp2.mjs} +1 -1
  53. package/{g-interp2Kriging.mjs → g_interp2Kriging.mjs} +1 -1
  54. package/{g-interp2NaturalNeighbor.mjs → g_interp2NaturalNeighbor.mjs} +1 -1
  55. package/{g-interp3.mjs → g_interp3.mjs} +1 -1
  56. package/package.json +5 -5
  57. package/script.txt +21 -0
  58. package/src/WGis.mjs +2 -0
  59. package/src/_convertTurfCode.mjs +1 -1
  60. package/src/bufferMultiPolygon.mjs +1 -1
  61. package/src/calcContours.mjs +17 -10
  62. package/src/calcDelaunay.mjs +166 -0
  63. package/src/calcVoronoi.mjs +384 -0
  64. package/src/clipMultiPolygon.mjs +1 -1
  65. package/src/clipPolygon.mjs +1 -1
  66. package/src/convertCoordinate.mjs +1 -1
  67. package/src/distilMultiPolygon.mjs +1 -1
  68. package/src/fixCloseMultiPolygon.mjs +3 -3
  69. package/src/fixGeometryMultiPolygon.mjs +4 -4
  70. package/src/fixNoCloseMultiPolygon.mjs +4 -4
  71. package/src/getAreaMultiPolygon.mjs +1 -1
  72. package/src/getAreaPolygon.mjs +3 -3
  73. package/src/getAreaRingString.mjs +3 -3
  74. package/src/getCenterOfMassMultiPolygon.mjs +1 -1
  75. package/src/getCentroidMultiPolygon.mjs +1 -1
  76. package/src/getPointDepth.mjs +2 -2
  77. package/src/interp1.mjs +6 -6
  78. package/src/interp2.mjs +1 -1
  79. package/src/interp2Kriging.mjs +8 -6
  80. package/src/interp2NaturalNeighbor.mjs +8 -35
  81. package/src/interp2Normalize.mjs +5 -5
  82. package/src/interp3.mjs +5 -5
  83. package/src/intersectMultiPolygon.mjs +1 -1
  84. package/src/intersectPolygon.mjs +1 -1
  85. package/src/invCoordMultiPolygon.mjs +1 -1
  86. package/src/invCoordPolygon.mjs +1 -1
  87. package/src/normalizeArray.mjs +9 -9
  88. package/src/parseGeometryCollection.mjs +2 -2
  89. package/src/ptsXYZVtoArr.mjs +5 -5
  90. package/src/ptsXYZtoArr.mjs +5 -5
  91. package/src/ptsXYtoArr.mjs +5 -5
  92. package/src/ptsXtoArr.mjs +5 -5
  93. package/src/simplifyMultiPolygon.mjs +1 -1
  94. package/src/splineMultiPolygon.mjs +3 -3
  95. package/src/toMultiPoint.mjs +1 -1
  96. package/src/toMultiPolygon.mjs +2 -2
  97. package/src/toPolygon.mjs +1 -1
  98. package/src/unionMultiPolygon.mjs +1 -1
  99. package/src/unionPolygon.mjs +1 -1
  100. package/test/calcContours6.json +1 -1
  101. package/test/calcContours7.json +1 -1
@@ -9,7 +9,7 @@ jobs:
9
9
 
10
10
  strategy:
11
11
  matrix:
12
- node-version: [18.x]
12
+ node-version: [20.x]
13
13
 
14
14
  steps:
15
15
  - uses: actions/checkout@v2
package/README.md CHANGED
@@ -4,7 +4,6 @@ A tool for geotech analysis.
4
4
  ![language](https://img.shields.io/badge/language-JavaScript-orange.svg)
5
5
  [![npm version](http://img.shields.io/npm/v/w-gis.svg?style=flat)](https://npmjs.org/package/w-gis)
6
6
  [![license](https://img.shields.io/npm/l/w-gis.svg?style=flat)](https://npmjs.org/package/w-gis)
7
- [![gzip file size](http://img.badgesize.io/yuda-lyu/w-gis/master/dist/w-gis.umd.js.svg?compression=gzip)](https://github.com/yuda-lyu/w-gis)
8
7
  [![npm download](https://img.shields.io/npm/dt/w-gis.svg)](https://npmjs.org/package/w-gis)
9
8
  [![npm download](https://img.shields.io/npm/dm/w-gis.svg)](https://npmjs.org/package/w-gis)
10
9
  [![jsdelivr download](https://img.shields.io/jsdelivr/npm/hm/w-gis.svg)](https://www.jsdelivr.com/package/npm/w-gis)
@@ -32,6 +31,6 @@ npm i w-gis
32
31
 
33
32
  Add script for w-gis.
34
33
  ```alias
35
- <script src="https://cdn.jsdelivr.net/npm/w-gis@1.0.50/dist/w-gis.umd.js"></script>
34
+ <script src="https://cdn.jsdelivr.net/npm/w-gis@1.0.52/dist/w-gis.umd.js"></script>
36
35
 
37
36
  ```
@@ -0,0 +1 @@
1
+ [{"sepZone":"","latLngs":[[[[24.153327048114434,120.9111355656697],[24.217,120.851],[24.211910611273375,120.89522113315802],[24.153327048114434,120.9111355656697]]],[[[24.261932201149804,120.88163259102623],[24.28,120.842],[24.297729475859477,120.87190813451062],[24.261932201149804,120.88163259102623]]]],"effectArea":8816415983.520641,"effectAreaCentroid":[23.973333333333333,121.13616666666665],"range":{"text":"0 - 10","low":0,"up":10},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.001,121.055],[24.00968906767619,121.04679365830583],[24.001078059027193,121.0553741449924],[24.001,121.055]]],[[[24.036648894668414,121.02133159947984],[24.153327048114434,120.9111355656697],[24.211910611273375,120.89522113315802],[24.202584508725796,120.9762546019603],[24.036648894668414,121.02133159947984]]],[[[24.244308326413222,120.96492017904522],[24.249,120.91],[24.261932201149804,120.88163259102623],[24.297729475859477,120.87190813451062],[24.33780975014089,120.93952018598534],[24.244308326413222,120.96492017904522]]]],"effectArea":6313849792.51668,"effectAreaCentroid":[23.80531082115246,121.00212446033244],"range":{"text":"10 - 20","low":10,"up":20},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.001078059027193,121.0553741449924],[24.00968906767619,121.04679365830583],[24.036648894668414,121.02133159947984],[24.202584508725796,120.9762546019603],[24.193258406178217,121.05728807076262],[24.12542857142857,121.0757142857143],[24.025993582165178,121.17479682486068],[24.001078059027193,121.0553741449924]]],[[[24.23744297490531,121.04528517610841],[24.244308326413222,120.96492017904522],[24.337809750140895,120.93952018598534],[24.37789002442232,121.00713223746008],[24.23744297490531,121.04528517610841]]]],"effectArea":4644527033.145393,"effectAreaCentroid":[23.791076270349798,120.96719391394832],"range":{"text":"20 - 30","low":20,"up":30},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.025993582165178,121.17479682486068],[24.12542857142857,121.0757142857143],[24.193258406178217,121.05728807076262],[24.18089733796504,121.1646920190149],[24.050909105303163,121.29421950472894],[24.025993582165178,121.17479682486068]]],[[[24.232,121.109],[24.23744297490531,121.04528517610841],[24.37789002442232,121.00713223746008],[24.417970298703736,121.07474428893481],[24.24491331198536,121.1217558325709],[24.232,121.109]]]],"effectArea":3211476473.817216,"effectAreaCentroid":[24.025569342289934,121.2215115677248],"range":{"text":"30 - 40","low":30,"up":40},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.050909105303163,121.29421950472894],[24.18089733796504,121.1646920190149],[24.172,121.242],[24.059,121.333],[24.050909105303163,121.29421950472894]]],[[[24.24491331198536,121.1217558325709],[24.417970298703736,121.07474428893481],[24.45805057298516,121.14235634040955],[24.307241689539488,121.18332410795973],[24.24491331198536,121.1217558325709]]]],"effectArea":2077979122.6009896,"effectAreaCentroid":[24.155744629924033,121.28620957869633],"range":{"text":"40 - 50","low":40,"up":50},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.307241689539488,121.18332410795973],[24.45805057298516,121.14235634040955],[24.494,121.203],[24.314,121.19],[24.307241689539488,121.18332410795973]]]],"effectArea":1165016840.7246127,"effectAreaCentroid":[24.45565142857143,121.3283007142857],"range":{"text":"50 - 60","low":50,"up":60},"center":[23.973333333333333,121.13616666666665]}]
@@ -0,0 +1 @@
1
+ [{"sepZone":"","latLngs":[[[[23.162,121.247],[23.17111764705882,120.98464705882353],[23.191499999999998,121.073],[23.20172972972973,121.19875675675677],[23.519238095238094,120.9547619047619],[23.66247619047619,120.80009523809524],[23.5482,120.68360000000001],[23.484272727272725,120.58245454545454],[23.810454545454522,120.5900909090909],[24.325,120.786],[24.604499999999955,121.00999999999996],[24.35675,120.855875],[24.297729475859477,120.87190813451062],[24.28,120.842],[24.261932201149804,120.88163259102623],[24.211910611273375,120.89522113315802],[24.217,120.851],[24.153327048114434,120.9111355656697],[23.944,120.968],[23.627000000000002,121.11566666666667],[23.675666666666665,121.42166666666667],[23.875,121.51575],[23.612,121.434],[23.162,121.247]]]],"effectArea":8816415983.520641,"effectAreaCentroid":[23.973333333333333,121.13616666666665],"range":{"text":"0 - 10","low":0,"up":10},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.17111764705882,120.98464705882353],[23.193,120.355],[23.189352941176473,120.4599411764706],[23.250500000000002,120.72500000000001],[23.28118918918919,121.10227027027027],[23.49947619047619,120.9345238095238],[23.59795238095238,120.82819047619049],[23.369400000000002,120.5952],[23.241545454545456,120.39290909090909],[23.295909090909092,120.39418181818182],[23.810454545454547,120.5900909090909],[23.484272727272725,120.58245454545454],[23.5482,120.68360000000001],[23.66247619047619,120.80009523809524],[23.519238095238094,120.9547619047619],[23.20172972972973,121.19875675675677],[23.191499999999998,121.073],[23.17111764705882,120.98464705882353]]],[[[23.627000000000002,121.11566666666667],[23.944,120.968],[24.153327048114434,120.9111355656697],[24.036648894668414,121.02133159947984],[24.034714285714287,121.02185714285714],[24.00968906767619,121.04679365830583],[24.001,121.055],[24.001078059027193,121.0553741449924],[23.8735,121.1825],[23.715,121.25633333333333],[23.739333333333335,121.40933333333334],[24.137999999999998,121.5975],[23.875,121.51575],[23.675666666666665,121.42166666666667],[23.627000000000002,121.11566666666667]]],[[[24.202584508725796,120.9762546019603],[24.211910611273375,120.89522113315802],[24.261932201149804,120.88163259102623],[24.249,120.91],[24.244308326413222,120.96492017904522],[24.202584508725796,120.9762546019603]]],[[[24.297729475859477,120.87190813451062],[24.35675,120.855875],[24.6045,121.00999999999999],[24.884,121.234],[24.3885,120.92575],[24.33780975014089,120.93952018598534],[24.297729475859477,120.87190813451062]]]],"effectArea":6313849792.51668,"effectAreaCentroid":[23.80531082115246,121.00212446033244],"range":{"text":"10 - 20","low":10,"up":20},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.189352941176473,120.4599411764706],[23.193,120.355],[23.295909090909092,120.39418181818182],[23.241545454545456,120.39290909090909],[23.369400000000002,120.5952],[23.59795238095238,120.82819047619049],[23.49947619047619,120.9345238095238],[23.28118918918919,121.10227027027027],[23.250500000000002,120.72500000000001],[23.189352941176473,120.4599411764706]],[[23.331764705882353,120.65070588235292],[23.36064864864865,121.00578378378378],[23.479714285714287,120.91428571428571],[23.533428571428573,120.85628571428572],[23.331764705882353,120.65070588235292]]],[[[23.715,121.25633333333333],[23.8735,121.1825],[24.001078059027193,121.0553741449924],[24.025993582165178,121.17479682486068],[23.803,121.397],[24.401,121.67925],[24.137999999999998,121.5975],[23.739333333333335,121.40933333333334],[23.715,121.25633333333333]]],[[[24.00968906767619,121.04679365830583],[24.034714285714287,121.02185714285714],[24.036648894668414,121.02133159947984],[24.00968906767619,121.04679365830583]]],[[[24.193258406178217,121.05728807076262],[24.202584508725796,120.9762546019603],[24.244308326413222,120.96492017904522],[24.23744297490531,121.04528517610841],[24.193258406178217,121.05728807076262]]],[[[24.337809750140895,120.93952018598534],[24.3885,120.92575],[24.884,121.234],[24.774,121.4975],[24.833166666666667,121.2525],[24.42025,120.995625],[24.37789002442232,121.00713223746008],[24.337809750140895,120.93952018598534]]]],"effectArea":4644527033.145393,"effectAreaCentroid":[23.791076270349798,120.96719391394832],"range":{"text":"20 - 30","low":20,"up":30},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.331764705882353,120.65070588235292],[23.533428571428573,120.85628571428572],[23.479714285714287,120.91428571428571],[23.36064864864865,121.00578378378378],[23.331764705882353,120.65070588235292]],[[23.435294117647057,120.85011764705882],[23.440108108108106,120.9092972972973],[23.45995238095238,120.89404761904761],[23.46890476190476,120.88438095238095],[23.435294117647057,120.85011764705882]]],[[[23.803,121.397],[24.025993582165178,121.17479682486068],[24.050909105303163,121.29421950472894],[23.9582,121.38660000000002],[24.664,121.761],[24.401,121.67925],[23.803,121.397]]],[[[24.18089733796504,121.1646920190149],[24.193258406178217,121.05728807076262],[24.23744297490531,121.04528517610841],[24.232,121.109],[24.24491331198536,121.1217558325709],[24.216142857142856,121.12957142857142],[24.18089733796504,121.1646920190149]]],[[[24.37789002442232,121.00713223746008],[24.42025,120.995625],[24.833166666666667,121.2525],[24.774,121.4975],[24.664,121.761],[24.782333333333334,121.27100000000002],[24.451999999999998,121.0655],[24.417970298703736,121.07474428893481],[24.37789002442232,121.00713223746008]]]],"effectArea":3211476473.817216,"effectAreaCentroid":[24.025569342289934,121.2215115677248],"range":{"text":"30 - 40","low":30,"up":40},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.435294117647057,120.85011764705882],[23.46890476190476,120.88438095238095],[23.45995238095238,120.89404761904761],[23.440108108108106,120.9092972972973],[23.435294117647057,120.85011764705882]]],[[[23.9582,121.38660000000002],[24.050909105303163,121.29421950472894],[24.059,121.333],[24.172,121.242],[24.18089733796504,121.1646920190149],[24.216142857142856,121.12957142857142],[24.24491331198536,121.1217558325709],[24.307241689539488,121.18332410795973],[24.30685714285714,121.18342857142856],[24.113400000000002,121.37620000000001],[24.64275,121.65700000000001],[24.7315,121.2895],[24.48375,121.13537500000001],[24.45805057298516,121.14235634040955],[24.417970298703736,121.07474428893481],[24.451999999999998,121.0655],[24.782333333333334,121.27100000000002],[24.664,121.761],[23.9582,121.38660000000002]]]],"effectArea":2077979122.6009896,"effectAreaCentroid":[24.155744629924033,121.28620957869633],"range":{"text":"40 - 50","low":40,"up":50},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.113400000000002,121.37620000000001],[24.30685714285714,121.18342857142856],[24.307241689539488,121.18332410795973],[24.314,121.19],[24.494,121.203],[24.45805057298516,121.14235634040955],[24.48375,121.13537500000001],[24.7315,121.2895],[24.64275,121.65700000000001],[24.113400000000002,121.37620000000001]],[[24.2686,121.36580000000001],[24.6215,121.553],[24.680666666666667,121.30799999999999],[24.5155,121.20524999999999],[24.39757142857143,121.23728571428572],[24.2686,121.36580000000001]]]],"effectArea":1165016840.7246127,"effectAreaCentroid":[24.45565142857143,121.3283007142857],"range":{"text":"50 - 60","low":50,"up":60},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.2686,121.36580000000001],[24.39757142857143,121.23728571428572],[24.5155,121.20524999999999],[24.680666666666667,121.30799999999999],[24.6215,121.553],[24.2686,121.36580000000001]],[[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554]]]],"effectArea":517569529.67260885,"effectAreaCentroid":[24.49676761904762,121.33386714285714],"range":{"text":"60 - 70","low":60,"up":70},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"top","latLngs":[[[[24.423800000000004,121.3554],[24.488285714285716,121.29114285714286],[24.54725,121.275125],[24.629833333333334,121.3265],[24.60025,121.44899999999998],[24.423800000000004,121.3554]]]],"effectArea":129338350.80859056,"effectAreaCentroid":[24.537883809523812,121.33943357142857],"range":{"text":"70 - 80","low":70,"up":80},"center":[23.973333333333333,121.13616666666665]}]
@@ -0,0 +1 @@
1
+ [{"sepZone":"","latLngs":[[[[24.41904113103788,120.89462624347613],[24.442268692794485,120.87998278062958],[24.604499999999955,121.00999999999996],[24.41904113103788,120.89462624347613]]]],"effectArea":8816415983.520641,"effectAreaCentroid":[23.973333333333333,121.13616666666665],"range":{"text":"0 - 10","low":0,"up":10},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.975574198019004,121.52083665115529],[24.137999999999998,121.5975],[23.97845552832847,121.54790775452796],[23.975574198019004,121.52083665115529]]],[[[24.355416984732848,120.9347371183206],[24.419041131037872,120.89462624347613],[24.6045,121.00999999999999],[24.6964661917299,121.08370456868514],[24.713174505536475,121.12772964950881],[24.3885,120.92575],[24.355416984732848,120.9347371183206]]]],"effectArea":6313849792.51668,"effectAreaCentroid":[23.80531082115246,121.00212446033244],"range":{"text":"10 - 20","low":10,"up":20},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.941,121.196],[24.11445780374204,121.0866461672061],[23.947109540075456,121.25340126024382],[23.941,121.196]]],[[[23.97082448865302,121.47621147478648],[24.245175771855898,121.60570252776978],[24.158285106933057,121.60380535167975],[24.137999999999998,121.5975],[23.975574198019007,121.52083665115529],[23.97082448865302,121.47621147478648]]],[[[24.13662070610682,121.07267390267178],[24.35541698473284,120.9347371183206],[24.3885,120.92575],[24.713174505536475,121.12772964950881],[24.7380765418787,121.19334453891848],[24.42025,120.995625],[24.13662070610682,121.07267390267178]]],[[[24.774,121.4975],[24.804919014781575,121.36946915005939],[24.81564699301502,121.39773652127766],[24.774,121.4975]]]],"effectArea":4644527033.145393,"effectAreaCentroid":[23.791076270349798,120.96719391394832],"range":{"text":"20 - 30","low":20,"up":30},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.947109540075456,121.25340126024382],[24.11445780374204,121.0866461672061],[24.13662070610682,121.07267390267178],[24.42025,120.995625],[24.738076541878698,121.19334453891848],[24.762978578220928,121.25895942832817],[24.451999999999998,121.0655],[24.216142857142856,121.12957142857142],[23.960990660710834,121.38381923086459],[23.947109540075456,121.25340126024382]]],[[[23.96147133331351,121.38833531764323],[24.37665268840486,121.6085732028036],[24.245175771855898,121.60570252776978],[23.97082448865302,121.47621147478648],[23.96147133331351,121.38833531764323]]],[[[24.69911028205848,121.615613761617],[24.776583773261187,121.29480803748187],[24.804919014781575,121.3694691500594],[24.774,121.4975],[24.72446147656077,121.61616728114761],[24.69911028205848,121.615613761617]]]],"effectArea":3211476473.817216,"effectAreaCentroid":[24.025569342289934,121.2215115677248],"range":{"text":"30 - 40","low":30,"up":40},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.960990660710834,121.38381923086459],[24.216142857142856,121.12957142857142],[24.451999999999998,121.0655],[24.76297857822093,121.25895942832817],[24.776583773261187,121.29480803748186],[24.69911028205848,121.615613761617],[24.65298783262659,121.61460672123638],[24.7315,121.2895],[24.48375,121.13537500000001],[24.30685714285714,121.18342857142856],[24.113400000000002,121.37620000000001],[24.55896218887073,121.61255375958233],[24.376652688404857,121.6085732028036],[23.96147133331351,121.38833531764323],[23.960990660710834,121.38381923086459]]]],"effectArea":2077979122.6009896,"effectAreaCentroid":[24.155744629924033,121.28620957869633],"range":{"text":"40 - 50","low":40,"up":50},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.113400000000002,121.37620000000001],[24.30685714285714,121.18342857142856],[24.48375,121.13537500000001],[24.7315,121.2895],[24.65298783262659,121.61460672123638],[24.55896218887073,121.61255375958233],[24.113400000000002,121.37620000000001]],[[24.2686,121.36580000000001],[24.6215,121.553],[24.680666666666667,121.30799999999999],[24.5155,121.20524999999999],[24.39757142857143,121.23728571428572],[24.2686,121.36580000000001]]]],"effectArea":1165016840.7246127,"effectAreaCentroid":[24.45565142857143,121.3283007142857],"range":{"text":"50 - 60","low":50,"up":60},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.2686,121.36580000000001],[24.39757142857143,121.23728571428572],[24.5155,121.20524999999999],[24.680666666666667,121.30799999999999],[24.6215,121.553],[24.2686,121.36580000000001]],[[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554]]]],"effectArea":517569529.67260885,"effectAreaCentroid":[24.49676761904762,121.33386714285714],"range":{"text":"60 - 70","low":60,"up":70},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"top","latLngs":[[[[24.423800000000004,121.3554],[24.488285714285716,121.29114285714286],[24.54725,121.275125],[24.629833333333334,121.3265],[24.60025,121.44899999999998],[24.423800000000004,121.3554]]]],"effectArea":129338350.80859056,"effectAreaCentroid":[24.537883809523812,121.33943357142857],"range":{"text":"70 - 80","low":70,"up":80},"center":[23.973333333333333,121.13616666666665]}]
@@ -0,0 +1 @@
1
+ [{"sepZone":"","latLngs":[[[[23.162,121.247],[23.529119047619048,120.96488095238094],[23.694738095238094,120.78604761904762],[23.6376,120.72780000000002],[23.605636363636364,120.67722727272727],[24.067727272727275,120.68804545454546],[24.325,120.786],[24.46475,120.898],[24.340875,120.8209375],[24.1345,120.87700000000001],[23.8355,120.87],[23.741500000000002,120.97149999999999],[23.583000000000002,121.04533333333333],[23.643833333333333,121.42783333333334],[23.743499999999997,121.474875],[23.612,121.434],[23.162,121.247]]]],"effectArea":8816415983.520641,"effectAreaCentroid":[23.973333333333333,121.13616666666665],"range":{"text":"0 - 5","low":0,"up":5},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.162,121.247],[23.17111764705882,120.98464705882353],[23.191499999999998,121.073],[23.20172972972973,121.19875675675677],[23.519238095238094,120.9547619047619],[23.66247619047619,120.80009523809524],[23.5482,120.68360000000001],[23.484272727272725,120.58245454545454],[23.81045454545452,120.5900909090909],[24.067727272727275,120.68804545454546],[23.605636363636364,120.67722727272727],[23.6376,120.72780000000002],[23.694738095238094,120.78604761904762],[23.529119047619048,120.96488095238094],[23.162,121.247]]],[[[23.583000000000002,121.04533333333333],[23.741500000000002,120.97149999999999],[23.8355,120.87],[24.1345,120.87700000000001],[24.340875,120.8209375],[24.46475,120.898],[24.6045,121.00999999999999],[24.35675,120.855875],[23.944,120.968],[23.627000000000002,121.11566666666667],[23.675666666666665,121.42166666666667],[23.875,121.51575],[23.743499999999997,121.474875],[23.643833333333333,121.42783333333334],[23.583000000000002,121.04533333333333]]]],"effectArea":7186533231.875366,"effectAreaCentroid":[23.802593637502845,121.01686739291412],"range":{"text":"5 - 10","low":5,"up":10},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.17111764705882,120.98464705882353],[23.193,120.355],[23.189352941176473,120.4599411764706],[23.250500000000002,120.72500000000001],[23.28118918918919,121.10227027027027],[23.49947619047619,120.9345238095238],[23.59795238095238,120.82819047619049],[23.369400000000002,120.5952],[23.241545454545456,120.39290909090909],[23.295909090909092,120.39418181818182],[23.810454545454547,120.5900909090909],[23.484272727272725,120.58245454545454],[23.5482,120.68360000000001],[23.66247619047619,120.80009523809524],[23.519238095238094,120.9547619047619],[23.20172972972973,121.19875675675677],[23.191499999999998,121.073],[23.17111764705882,120.98464705882353]]],[[[23.627000000000002,121.11566666666667],[23.944,120.968],[24.35675,120.855875],[24.6045,121.00999999999999],[24.884,121.234],[24.3885,120.92575],[24.034714285714287,121.02185714285714],[23.8735,121.1825],[23.715,121.25633333333333],[23.739333333333335,121.40933333333334],[24.137999999999998,121.5975],[23.875,121.51575],[23.675666666666665,121.42166666666667],[23.627000000000002,121.11566666666667]]]],"effectArea":6313849792.51668,"effectAreaCentroid":[23.80531082115246,121.00212446033244],"range":{"text":"10 - 20","low":10,"up":20},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.189352941176473,120.4599411764706],[23.193,120.355],[23.295909090909092,120.39418181818182],[23.241545454545456,120.39290909090909],[23.369400000000002,120.5952],[23.59795238095238,120.82819047619049],[23.49947619047619,120.9345238095238],[23.28118918918919,121.10227027027027],[23.250500000000002,120.72500000000001],[23.189352941176473,120.4599411764706]],[[23.331764705882353,120.65070588235292],[23.36064864864865,121.00578378378378],[23.479714285714287,120.91428571428571],[23.533428571428573,120.85628571428572],[23.331764705882353,120.65070588235292]]],[[[23.715,121.25633333333333],[23.8735,121.1825],[24.034714285714287,121.02185714285714],[24.3885,120.92575],[24.884,121.234],[24.774,121.4975],[24.833166666666667,121.2525],[24.42025,120.995625],[24.12542857142857,121.0757142857143],[23.803,121.397],[24.401,121.67925],[24.137999999999998,121.5975],[23.739333333333335,121.40933333333334],[23.715,121.25633333333333]]]],"effectArea":4644527033.145393,"effectAreaCentroid":[23.791076270349798,120.96719391394832],"range":{"text":"20 - 30","low":20,"up":30},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.331764705882353,120.65070588235292],[23.533428571428573,120.85628571428572],[23.479714285714287,120.91428571428571],[23.36064864864865,121.00578378378378],[23.331764705882353,120.65070588235292]],[[23.435294117647057,120.85011764705882],[23.440108108108106,120.9092972972973],[23.45995238095238,120.89404761904761],[23.46890476190476,120.88438095238095],[23.435294117647057,120.85011764705882]]],[[[23.803,121.397],[24.12542857142857,121.0757142857143],[24.42025,120.995625],[24.833166666666667,121.2525],[24.774,121.4975],[24.664,121.761],[24.401,121.67925],[23.803,121.397]],[[24.664,121.761],[24.782333333333334,121.27100000000002],[24.451999999999998,121.0655],[24.216142857142856,121.12957142857142],[23.9582,121.38660000000002],[24.664,121.761]]]],"effectArea":3211476473.817216,"effectAreaCentroid":[24.025569342289934,121.2215115677248],"range":{"text":"30 - 40","low":30,"up":40},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[23.435294117647057,120.85011764705882],[23.46890476190476,120.88438095238095],[23.45995238095238,120.89404761904761],[23.440108108108106,120.9092972972973],[23.435294117647057,120.85011764705882]]],[[[23.9582,121.38660000000002],[24.216142857142856,121.12957142857142],[24.451999999999998,121.0655],[24.782333333333334,121.27100000000002],[24.664,121.761],[23.9582,121.38660000000002]],[[24.191000000000003,121.37100000000001],[24.632125000000002,121.60499999999999],[24.706083333333332,121.29874999999998],[24.499625,121.17031250000001],[24.352214285714286,121.21035714285715],[24.191000000000003,121.37100000000001]]]],"effectArea":2077979122.6009896,"effectAreaCentroid":[24.155744629924033,121.28620957869633],"range":{"text":"40 - 55","low":40,"up":55},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"","latLngs":[[[[24.191000000000003,121.37100000000001],[24.352214285714286,121.21035714285715],[24.499625,121.17031250000001],[24.706083333333332,121.29874999999998],[24.632125000000002,121.60499999999999],[24.191000000000003,121.37100000000001]],[[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554]]]],"effectArea":808871008.3417139,"effectAreaCentroid":[24.476209523809523,121.33108392857142],"range":{"text":"55 - 70","low":55,"up":70},"center":[23.973333333333333,121.13616666666665]},{"sepZone":"top","latLngs":[[[[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286]]]],"effectArea":129338350.80859056,"effectAreaCentroid":[24.537883809523812,121.33943357142857],"range":{"text":"70 - 85","low":70,"up":85},"center":[23.973333333333333,121.13616666666665]}]
@@ -0,0 +1 @@
1
+ [{"sepZone":"","latLngs":[[[[23.162,121.247],[23.17111764705882,120.98464705882353],[23.191499999999998,121.073],[23.20172972972973,121.19875675675677],[23.519238095238094,120.9547619047619],[23.66247619047619,120.80009523809524],[23.5482,120.68360000000001],[23.484272727272725,120.58245454545454],[23.810454545454522,120.5900909090909],[24.325,120.786],[24.604499999999955,121.00999999999996],[24.35675,120.855875],[23.944,120.968],[23.627000000000002,121.11566666666667],[23.675666666666665,121.42166666666667],[23.875,121.51575],[23.612,121.434],[23.162,121.247]]]],"effectArea":8816415983.520641,"effectAreaCentroid":[23.973333333333333,121.13616666666665],"range":{"text":"0 - 10","low":0,"up":10},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(255, 255, 255, 1)","weight":1,"fillColor":"rgba(255, 255, 255, 1)","fillOpacity":0.2,"stroke":"rgba(255, 255, 255, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(255, 255, 255, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[23.17111764705882,120.98464705882353],[23.193,120.355],[23.189352941176473,120.4599411764706],[23.250500000000002,120.72500000000001],[23.28118918918919,121.10227027027027],[23.49947619047619,120.9345238095238],[23.59795238095238,120.82819047619049],[23.369400000000002,120.5952],[23.241545454545456,120.39290909090909],[23.295909090909092,120.39418181818182],[23.810454545454547,120.5900909090909],[23.484272727272725,120.58245454545454],[23.5482,120.68360000000001],[23.66247619047619,120.80009523809524],[23.519238095238094,120.9547619047619],[23.20172972972973,121.19875675675677],[23.191499999999998,121.073],[23.17111764705882,120.98464705882353]]],[[[23.627000000000002,121.11566666666667],[23.944,120.968],[24.35675,120.855875],[24.6045,121.00999999999999],[24.884,121.234],[24.3885,120.92575],[24.034714285714287,121.02185714285714],[23.8735,121.1825],[23.715,121.25633333333333],[23.739333333333335,121.40933333333334],[24.137999999999998,121.5975],[23.875,121.51575],[23.675666666666665,121.42166666666667],[23.627000000000002,121.11566666666667]]]],"effectArea":6313849792.51668,"effectAreaCentroid":[23.80531082115246,121.00212446033244],"range":{"text":"10 - 20","low":10,"up":20},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(254, 200, 127, 1)","weight":1,"fillColor":"rgba(254, 200, 127, 1)","fillOpacity":0.2,"stroke":"rgba(254, 200, 127, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(254, 200, 127, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[23.189352941176473,120.4599411764706],[23.193,120.355],[23.295909090909092,120.39418181818182],[23.241545454545456,120.39290909090909],[23.369400000000002,120.5952],[23.59795238095238,120.82819047619049],[23.49947619047619,120.9345238095238],[23.28118918918919,121.10227027027027],[23.250500000000002,120.72500000000001],[23.189352941176473,120.4599411764706]],[[23.331764705882353,120.65070588235292],[23.36064864864865,121.00578378378378],[23.479714285714287,120.91428571428571],[23.533428571428573,120.85628571428572],[23.331764705882353,120.65070588235292]]],[[[23.715,121.25633333333333],[23.8735,121.1825],[24.034714285714287,121.02185714285714],[24.3885,120.92575],[24.884,121.234],[24.774,121.4975],[24.833166666666667,121.2525],[24.42025,120.995625],[24.12542857142857,121.0757142857143],[23.803,121.397],[24.401,121.67925],[24.137999999999998,121.5975],[23.739333333333335,121.40933333333334],[23.715,121.25633333333333]]]],"effectArea":4644527033.145393,"effectAreaCentroid":[23.791076270349798,120.96719391394832],"range":{"text":"20 - 30","low":20,"up":30},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(253, 135, 61, 1)","weight":1,"fillColor":"rgba(253, 135, 61, 1)","fillOpacity":0.2,"stroke":"rgba(253, 135, 61, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(253, 135, 61, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[23.331764705882353,120.65070588235292],[23.533428571428573,120.85628571428572],[23.479714285714287,120.91428571428571],[23.36064864864865,121.00578378378378],[23.331764705882353,120.65070588235292]],[[23.435294117647057,120.85011764705882],[23.440108108108106,120.9092972972973],[23.45995238095238,120.89404761904761],[23.46890476190476,120.88438095238095],[23.435294117647057,120.85011764705882]]],[[[23.803,121.397],[24.12542857142857,121.0757142857143],[24.42025,120.995625],[24.833166666666667,121.2525],[24.774,121.4975],[24.664,121.761],[24.401,121.67925],[23.803,121.397]],[[24.664,121.761],[24.782333333333334,121.27100000000002],[24.451999999999998,121.0655],[24.216142857142856,121.12957142857142],[23.9582,121.38660000000002],[24.664,121.761]]]],"effectArea":3211476473.817216,"effectAreaCentroid":[24.025569342289934,121.2215115677248],"range":{"text":"30 - 40","low":30,"up":40},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(247, 75, 41, 1)","weight":1,"fillColor":"rgba(247, 75, 41, 1)","fillOpacity":0.2,"stroke":"rgba(247, 75, 41, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(247, 75, 41, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[23.435294117647057,120.85011764705882],[23.46890476190476,120.88438095238095],[23.45995238095238,120.89404761904761],[23.440108108108106,120.9092972972973],[23.435294117647057,120.85011764705882]]],[[[23.9582,121.38660000000002],[24.216142857142856,121.12957142857142],[24.451999999999998,121.0655],[24.782333333333334,121.27100000000002],[24.664,121.761],[23.9582,121.38660000000002]],[[24.113400000000002,121.37620000000001],[24.64275,121.65700000000001],[24.7315,121.2895],[24.48375,121.13537500000001],[24.30685714285714,121.18342857142856],[24.113400000000002,121.37620000000001]]]],"effectArea":2077979122.6009896,"effectAreaCentroid":[24.155744629924033,121.28620957869633],"range":{"text":"40 - 50","low":40,"up":50},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(225, 61, 39, 1)","weight":1,"fillColor":"rgba(225, 61, 39, 1)","fillOpacity":0.2,"stroke":"rgba(225, 61, 39, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(225, 61, 39, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[24.113400000000002,121.37620000000001],[24.30685714285714,121.18342857142856],[24.48375,121.13537500000001],[24.7315,121.2895],[24.64275,121.65700000000001],[24.113400000000002,121.37620000000001]],[[24.2686,121.36580000000001],[24.6215,121.553],[24.680666666666667,121.30799999999999],[24.5155,121.20524999999999],[24.39757142857143,121.23728571428572],[24.2686,121.36580000000001]]]],"effectArea":1165016840.7246127,"effectAreaCentroid":[24.45565142857143,121.3283007142857],"range":{"text":"50 - 60","low":50,"up":60},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(209, 48, 29, 1)","weight":1,"fillColor":"rgba(209, 48, 29, 1)","fillOpacity":0.2,"stroke":"rgba(209, 48, 29, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(209, 48, 29, 1)","fill-opacity":0.2}},{"sepZone":"","latLngs":[[[[24.2686,121.36580000000001],[24.39757142857143,121.23728571428572],[24.5155,121.20524999999999],[24.680666666666667,121.30799999999999],[24.6215,121.553],[24.2686,121.36580000000001]],[[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554]]]],"effectArea":517569529.67260885,"effectAreaCentroid":[24.49676761904762,121.33386714285714],"range":{"text":"60 - 70","low":60,"up":70},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(194, 37, 34, 1)","weight":1,"fillColor":"rgba(194, 37, 34, 1)","fillOpacity":0.2,"stroke":"rgba(194, 37, 34, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(194, 37, 34, 1)","fill-opacity":0.2}},{"sepZone":"top","latLngs":[[[[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286]]]],"effectArea":129338350.80859056,"effectAreaCentroid":[24.537883809523812,121.33943357142857],"range":{"text":"70 - 80","low":70,"up":80},"center":[23.973333333333333,121.13616666666665],"style":{"color":"rgba(180, 30, 60, 1)","weight":1,"fillColor":"rgba(180, 30, 60, 1)","fillOpacity":0.2,"stroke":"rgba(180, 30, 60, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(180, 30, 60, 1)","fill-opacity":0.2}}]
@@ -0,0 +1 @@
1
+ {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"range":"0 - 10","style":{"color":"rgba(255, 255, 255, 1)","weight":1,"fillColor":"rgba(255, 255, 255, 1)","fillOpacity":0.2,"stroke":"rgba(255, 255, 255, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(255, 255, 255, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.162,121.247],[23.17111764705882,120.98464705882353],[23.191499999999998,121.073],[23.20172972972973,121.19875675675677],[23.519238095238094,120.9547619047619],[23.66247619047619,120.80009523809524],[23.5482,120.68360000000001],[23.484272727272725,120.58245454545454],[23.810454545454522,120.5900909090909],[24.325,120.786],[24.604499999999955,121.00999999999996],[24.35675,120.855875],[23.944,120.968],[23.627000000000002,121.11566666666667],[23.675666666666665,121.42166666666667],[23.875,121.51575],[23.612,121.434],[23.162,121.247]]]]}},{"type":"Feature","properties":{"range":"10 - 20","style":{"color":"rgba(254, 200, 127, 1)","weight":1,"fillColor":"rgba(254, 200, 127, 1)","fillOpacity":0.2,"stroke":"rgba(254, 200, 127, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(254, 200, 127, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.17111764705882,120.98464705882353],[23.193,120.355],[23.189352941176473,120.4599411764706],[23.250500000000002,120.72500000000001],[23.28118918918919,121.10227027027027],[23.49947619047619,120.9345238095238],[23.59795238095238,120.82819047619049],[23.369400000000002,120.5952],[23.241545454545456,120.39290909090909],[23.295909090909092,120.39418181818182],[23.810454545454547,120.5900909090909],[23.484272727272725,120.58245454545454],[23.5482,120.68360000000001],[23.66247619047619,120.80009523809524],[23.519238095238094,120.9547619047619],[23.20172972972973,121.19875675675677],[23.191499999999998,121.073],[23.17111764705882,120.98464705882353]]],[[[23.627000000000002,121.11566666666667],[23.944,120.968],[24.35675,120.855875],[24.6045,121.00999999999999],[24.884,121.234],[24.3885,120.92575],[24.034714285714287,121.02185714285714],[23.8735,121.1825],[23.715,121.25633333333333],[23.739333333333335,121.40933333333334],[24.137999999999998,121.5975],[23.875,121.51575],[23.675666666666665,121.42166666666667],[23.627000000000002,121.11566666666667]]]]}},{"type":"Feature","properties":{"range":"20 - 30","style":{"color":"rgba(253, 135, 61, 1)","weight":1,"fillColor":"rgba(253, 135, 61, 1)","fillOpacity":0.2,"stroke":"rgba(253, 135, 61, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(253, 135, 61, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.189352941176473,120.4599411764706],[23.193,120.355],[23.295909090909092,120.39418181818182],[23.241545454545456,120.39290909090909],[23.369400000000002,120.5952],[23.59795238095238,120.82819047619049],[23.49947619047619,120.9345238095238],[23.28118918918919,121.10227027027027],[23.250500000000002,120.72500000000001],[23.189352941176473,120.4599411764706]],[[23.331764705882353,120.65070588235292],[23.36064864864865,121.00578378378378],[23.479714285714287,120.91428571428571],[23.533428571428573,120.85628571428572],[23.331764705882353,120.65070588235292]]],[[[23.715,121.25633333333333],[23.8735,121.1825],[24.034714285714287,121.02185714285714],[24.3885,120.92575],[24.884,121.234],[24.774,121.4975],[24.833166666666667,121.2525],[24.42025,120.995625],[24.12542857142857,121.0757142857143],[23.803,121.397],[24.401,121.67925],[24.137999999999998,121.5975],[23.739333333333335,121.40933333333334],[23.715,121.25633333333333]]]]}},{"type":"Feature","properties":{"range":"30 - 40","style":{"color":"rgba(247, 75, 41, 1)","weight":1,"fillColor":"rgba(247, 75, 41, 1)","fillOpacity":0.2,"stroke":"rgba(247, 75, 41, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(247, 75, 41, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.331764705882353,120.65070588235292],[23.533428571428573,120.85628571428572],[23.479714285714287,120.91428571428571],[23.36064864864865,121.00578378378378],[23.331764705882353,120.65070588235292]],[[23.435294117647057,120.85011764705882],[23.440108108108106,120.9092972972973],[23.45995238095238,120.89404761904761],[23.46890476190476,120.88438095238095],[23.435294117647057,120.85011764705882]]],[[[23.803,121.397],[24.12542857142857,121.0757142857143],[24.42025,120.995625],[24.833166666666667,121.2525],[24.774,121.4975],[24.664,121.761],[24.401,121.67925],[23.803,121.397]],[[24.664,121.761],[24.782333333333334,121.27100000000002],[24.451999999999998,121.0655],[24.216142857142856,121.12957142857142],[23.9582,121.38660000000002],[24.664,121.761]]]]}},{"type":"Feature","properties":{"range":"40 - 50","style":{"color":"rgba(225, 61, 39, 1)","weight":1,"fillColor":"rgba(225, 61, 39, 1)","fillOpacity":0.2,"stroke":"rgba(225, 61, 39, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(225, 61, 39, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.435294117647057,120.85011764705882],[23.46890476190476,120.88438095238095],[23.45995238095238,120.89404761904761],[23.440108108108106,120.9092972972973],[23.435294117647057,120.85011764705882]]],[[[23.9582,121.38660000000002],[24.216142857142856,121.12957142857142],[24.451999999999998,121.0655],[24.782333333333334,121.27100000000002],[24.664,121.761],[23.9582,121.38660000000002]],[[24.113400000000002,121.37620000000001],[24.64275,121.65700000000001],[24.7315,121.2895],[24.48375,121.13537500000001],[24.30685714285714,121.18342857142856],[24.113400000000002,121.37620000000001]]]]}},{"type":"Feature","properties":{"range":"50 - 60","style":{"color":"rgba(209, 48, 29, 1)","weight":1,"fillColor":"rgba(209, 48, 29, 1)","fillOpacity":0.2,"stroke":"rgba(209, 48, 29, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(209, 48, 29, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.113400000000002,121.37620000000001],[24.30685714285714,121.18342857142856],[24.48375,121.13537500000001],[24.7315,121.2895],[24.64275,121.65700000000001],[24.113400000000002,121.37620000000001]],[[24.2686,121.36580000000001],[24.6215,121.553],[24.680666666666667,121.30799999999999],[24.5155,121.20524999999999],[24.39757142857143,121.23728571428572],[24.2686,121.36580000000001]]]]}},{"type":"Feature","properties":{"range":"60 - 70","style":{"color":"rgba(194, 37, 34, 1)","weight":1,"fillColor":"rgba(194, 37, 34, 1)","fillOpacity":0.2,"stroke":"rgba(194, 37, 34, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(194, 37, 34, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.2686,121.36580000000001],[24.39757142857143,121.23728571428572],[24.5155,121.20524999999999],[24.680666666666667,121.30799999999999],[24.6215,121.553],[24.2686,121.36580000000001]],[[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554]]]]}},{"type":"Feature","properties":{"range":"70 - 80","style":{"color":"rgba(180, 30, 60, 1)","weight":1,"fillColor":"rgba(180, 30, 60, 1)","fillOpacity":0.2,"stroke":"rgba(180, 30, 60, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(180, 30, 60, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.488285714285716,121.29114285714286],[24.423800000000004,121.3554],[24.60025,121.44899999999998],[24.629833333333334,121.3265],[24.54725,121.275125],[24.488285714285716,121.29114285714286]]]]}}]}
@@ -0,0 +1 @@
1
+ {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"range":"0 - 10","style":{"color":"rgba(255, 255, 255, 1)","weight":1,"fillColor":"rgba(255, 255, 255, 1)","fillOpacity":0.2,"stroke":"rgba(255, 255, 255, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(255, 255, 255, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.247,23.162],[120.98464705882353,23.17111764705882],[121.073,23.191499999999998],[121.19875675675677,23.20172972972973],[120.9547619047619,23.519238095238094],[120.80009523809524,23.66247619047619],[120.68360000000001,23.5482],[120.58245454545454,23.484272727272725],[120.5900909090909,23.810454545454522],[120.786,24.325],[121.00999999999996,24.604499999999955],[120.855875,24.35675],[120.968,23.944],[121.11566666666667,23.627000000000002],[121.42166666666667,23.675666666666665],[121.51575,23.875],[121.434,23.612],[121.247,23.162]]]]}},{"type":"Feature","properties":{"range":"10 - 20","style":{"color":"rgba(254, 200, 127, 1)","weight":1,"fillColor":"rgba(254, 200, 127, 1)","fillOpacity":0.2,"stroke":"rgba(254, 200, 127, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(254, 200, 127, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.98464705882353,23.17111764705882],[120.355,23.193],[120.4599411764706,23.189352941176473],[120.72500000000001,23.250500000000002],[121.10227027027027,23.28118918918919],[120.9345238095238,23.49947619047619],[120.82819047619049,23.59795238095238],[120.5952,23.369400000000002],[120.39290909090909,23.241545454545456],[120.39418181818182,23.295909090909092],[120.5900909090909,23.810454545454547],[120.58245454545454,23.484272727272725],[120.68360000000001,23.5482],[120.80009523809524,23.66247619047619],[120.9547619047619,23.519238095238094],[121.19875675675677,23.20172972972973],[121.073,23.191499999999998],[120.98464705882353,23.17111764705882]]],[[[121.11566666666667,23.627000000000002],[120.968,23.944],[120.855875,24.35675],[121.00999999999999,24.6045],[121.234,24.884],[120.92575,24.3885],[121.02185714285714,24.034714285714287],[121.1825,23.8735],[121.25633333333333,23.715],[121.40933333333334,23.739333333333335],[121.5975,24.137999999999998],[121.51575,23.875],[121.42166666666667,23.675666666666665],[121.11566666666667,23.627000000000002]]]]}},{"type":"Feature","properties":{"range":"20 - 30","style":{"color":"rgba(253, 135, 61, 1)","weight":1,"fillColor":"rgba(253, 135, 61, 1)","fillOpacity":0.2,"stroke":"rgba(253, 135, 61, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(253, 135, 61, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4599411764706,23.189352941176473],[120.355,23.193],[120.39418181818182,23.295909090909092],[120.39290909090909,23.241545454545456],[120.5952,23.369400000000002],[120.82819047619049,23.59795238095238],[120.9345238095238,23.49947619047619],[121.10227027027027,23.28118918918919],[120.72500000000001,23.250500000000002],[120.4599411764706,23.189352941176473]],[[120.65070588235292,23.331764705882353],[121.00578378378378,23.36064864864865],[120.91428571428571,23.479714285714287],[120.85628571428572,23.533428571428573],[120.65070588235292,23.331764705882353]]],[[[121.25633333333333,23.715],[121.1825,23.8735],[121.02185714285714,24.034714285714287],[120.92575,24.3885],[121.234,24.884],[121.4975,24.774],[121.2525,24.833166666666667],[120.995625,24.42025],[121.0757142857143,24.12542857142857],[121.397,23.803],[121.67925,24.401],[121.5975,24.137999999999998],[121.40933333333334,23.739333333333335],[121.25633333333333,23.715]]]]}},{"type":"Feature","properties":{"range":"30 - 40","style":{"color":"rgba(247, 75, 41, 1)","weight":1,"fillColor":"rgba(247, 75, 41, 1)","fillOpacity":0.2,"stroke":"rgba(247, 75, 41, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(247, 75, 41, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.65070588235292,23.331764705882353],[120.85628571428572,23.533428571428573],[120.91428571428571,23.479714285714287],[121.00578378378378,23.36064864864865],[120.65070588235292,23.331764705882353]],[[120.85011764705882,23.435294117647057],[120.9092972972973,23.440108108108106],[120.89404761904761,23.45995238095238],[120.88438095238095,23.46890476190476],[120.85011764705882,23.435294117647057]]],[[[121.397,23.803],[121.0757142857143,24.12542857142857],[120.995625,24.42025],[121.2525,24.833166666666667],[121.4975,24.774],[121.761,24.664],[121.67925,24.401],[121.397,23.803]],[[121.761,24.664],[121.27100000000002,24.782333333333334],[121.0655,24.451999999999998],[121.12957142857142,24.216142857142856],[121.38660000000002,23.9582],[121.761,24.664]]]]}},{"type":"Feature","properties":{"range":"40 - 50","style":{"color":"rgba(225, 61, 39, 1)","weight":1,"fillColor":"rgba(225, 61, 39, 1)","fillOpacity":0.2,"stroke":"rgba(225, 61, 39, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(225, 61, 39, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.85011764705882,23.435294117647057],[120.88438095238095,23.46890476190476],[120.89404761904761,23.45995238095238],[120.9092972972973,23.440108108108106],[120.85011764705882,23.435294117647057]]],[[[121.38660000000002,23.9582],[121.12957142857142,24.216142857142856],[121.0655,24.451999999999998],[121.27100000000002,24.782333333333334],[121.761,24.664],[121.38660000000002,23.9582]],[[121.37620000000001,24.113400000000002],[121.65700000000001,24.64275],[121.2895,24.7315],[121.13537500000001,24.48375],[121.18342857142856,24.30685714285714],[121.37620000000001,24.113400000000002]]]]}},{"type":"Feature","properties":{"range":"50 - 60","style":{"color":"rgba(209, 48, 29, 1)","weight":1,"fillColor":"rgba(209, 48, 29, 1)","fillOpacity":0.2,"stroke":"rgba(209, 48, 29, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(209, 48, 29, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.37620000000001,24.113400000000002],[121.18342857142856,24.30685714285714],[121.13537500000001,24.48375],[121.2895,24.7315],[121.65700000000001,24.64275],[121.37620000000001,24.113400000000002]],[[121.36580000000001,24.2686],[121.553,24.6215],[121.30799999999999,24.680666666666667],[121.20524999999999,24.5155],[121.23728571428572,24.39757142857143],[121.36580000000001,24.2686]]]]}},{"type":"Feature","properties":{"range":"60 - 70","style":{"color":"rgba(194, 37, 34, 1)","weight":1,"fillColor":"rgba(194, 37, 34, 1)","fillOpacity":0.2,"stroke":"rgba(194, 37, 34, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(194, 37, 34, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.36580000000001,24.2686],[121.23728571428572,24.39757142857143],[121.20524999999999,24.5155],[121.30799999999999,24.680666666666667],[121.553,24.6215],[121.36580000000001,24.2686]],[[121.3554,24.423800000000004],[121.44899999999998,24.60025],[121.3265,24.629833333333334],[121.275125,24.54725],[121.29114285714286,24.488285714285716],[121.3554,24.423800000000004]]]]}},{"type":"Feature","properties":{"range":"70 - 80","style":{"color":"rgba(180, 30, 60, 1)","weight":1,"fillColor":"rgba(180, 30, 60, 1)","fillOpacity":0.2,"stroke":"rgba(180, 30, 60, 1)","stroke-width":1,"stroke-opacity":1,"fill":"rgba(180, 30, 60, 1)","fill-opacity":0.2}},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.29114285714286,24.488285714285716],[121.3554,24.423800000000004],[121.44899999999998,24.60025],[121.3265,24.629833333333334],[121.275125,24.54725],[121.29114285714286,24.488285714285716]]]]}}]}