@hpcc-js/map 2.79.1 → 2.79.3

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 (89) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +88 -88
  3. package/TopoJSON/BR.json +122 -122
  4. package/TopoJSON/GB_idx.json +1 -1
  5. package/TopoJSON/IE_idx.json +1 -1
  6. package/TopoJSON/ND_idx.json +1 -1
  7. package/TopoJSON/countries.json +257 -257
  8. package/TopoJSON/us-counties.json +16550 -16550
  9. package/TopoJSON/us-states.json +458 -458
  10. package/dist/index.es6.js +19949 -19949
  11. package/dist/index.es6.js.map +1 -1
  12. package/dist/index.js +19947 -19947
  13. package/dist/index.js.map +1 -1
  14. package/dist/index.min.js +2 -2
  15. package/dist/index.min.js.map +1 -1
  16. package/package.json +9 -9
  17. package/src/CanvasPinLayer.ts +99 -99
  18. package/src/CanvasPins.ts +396 -396
  19. package/src/Choropleth.css +27 -27
  20. package/src/Choropleth.ts +195 -195
  21. package/src/ChoroplethContinents.ts +13 -13
  22. package/src/ChoroplethCounties.ts +109 -109
  23. package/src/ChoroplethCountries.ts +100 -100
  24. package/src/ChoroplethStates.ts +104 -104
  25. package/src/ChoroplethStatesHeat.ts +8 -8
  26. package/src/GMap.css +16 -16
  27. package/src/GMap.ts +879 -879
  28. package/src/GMapCounties.ts +93 -93
  29. package/src/GMapGraph.ts +61 -61
  30. package/src/GMapHeat.ts +27 -27
  31. package/src/GMapLayered.ts +94 -94
  32. package/src/GMapPin.ts +115 -115
  33. package/src/GMapPinLine.ts +125 -125
  34. package/src/GeoHash.css +15 -15
  35. package/src/GeoHash.ts +125 -125
  36. package/src/Graph.css +10 -10
  37. package/src/Graph.ts +98 -98
  38. package/src/Graticule.css +13 -13
  39. package/src/Graticule.ts +90 -90
  40. package/src/Heat.css +2 -2
  41. package/src/Heat.ts +82 -82
  42. package/src/IChoropleth.ts +8 -8
  43. package/src/Layer.ts +90 -90
  44. package/src/Layered.css +19 -19
  45. package/src/Layered.ts +206 -206
  46. package/src/Lines.css +9 -9
  47. package/src/Lines.ts +75 -75
  48. package/src/OpenStreet.css +15 -15
  49. package/src/OpenStreet.ts +123 -123
  50. package/src/Pins.css +18 -18
  51. package/src/Pins.ts +319 -319
  52. package/src/Projection.ts +42 -42
  53. package/src/TestHeatMap.ts +8 -8
  54. package/src/TopoJSONChoropleth.ts +114 -114
  55. package/src/Utility.ts +482 -482
  56. package/src/__package__.ts +3 -3
  57. package/src/index.ts +34 -34
  58. package/src/leaflet/AlbersPR.ts +48 -48
  59. package/src/leaflet/Blank.ts +9 -9
  60. package/src/leaflet/Circles.ts +139 -139
  61. package/src/leaflet/ClusterCircles.css +26 -26
  62. package/src/leaflet/ClusterCircles.ts +88 -88
  63. package/src/leaflet/Countries.ts +43 -43
  64. package/src/leaflet/DrawLayer.ts +167 -167
  65. package/src/leaflet/FeatureLayer.ts +138 -138
  66. package/src/leaflet/GMap.ts +44 -44
  67. package/src/leaflet/HeatLayer.ts +77 -77
  68. package/src/leaflet/Icons.ts +60 -60
  69. package/src/leaflet/Leaflet.css +3 -3
  70. package/src/leaflet/Leaflet.ts +238 -238
  71. package/src/leaflet/MapBox.ts +35 -35
  72. package/src/leaflet/Markers.ts +109 -109
  73. package/src/leaflet/OpenStreet.ts +27 -27
  74. package/src/leaflet/Path.ts +138 -138
  75. package/src/leaflet/Pins.ts +73 -73
  76. package/src/leaflet/Polygons.ts +113 -113
  77. package/src/leaflet/Region.ts +138 -138
  78. package/src/leaflet/Text.ts +99 -99
  79. package/src/leaflet/TileLayer.ts +81 -81
  80. package/src/leaflet/TopoJSON.ts +146 -146
  81. package/src/leaflet/US.ts +15 -15
  82. package/src/leaflet/USCounties.ts +43 -43
  83. package/src/leaflet/USStates.ts +41 -41
  84. package/src/leaflet/World.css +3 -3
  85. package/src/leaflet/World.ts +171 -171
  86. package/src/leaflet/index.ts +18 -18
  87. package/src/test.ts +114 -114
  88. package/types/__package__.d.ts +2 -2
  89. package/types-3.4/__package__.d.ts +2 -2
package/LICENSE CHANGED
@@ -1,43 +1,43 @@
1
- HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
2
-
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
6
-
7
- http://www.apache.org/licenses/LICENSE-2.0
8
-
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.
14
-
15
-
16
- Intersection Algorithms Provided by Kevin Lindsey
17
- Copyright (c) 2000-2011, Kevin Lindsey
18
- All rights reserved.
19
-
20
- Redistribution and use in source and binary forms, with or without
21
- modification, are permitted provided that the following conditions are met:
22
-
23
- - Redistributions of source code must retain the above copyright notice,
24
- this list of conditions and the following disclaimer.
25
-
26
- - Redistributions in binary form must reproduce the above copyright
27
- notice, this list of conditions and the following disclaimer in the
28
- documentation and/or other materials provided with the distribution.
29
-
30
- - Neither the name of this software nor the names of its contributors
31
- may be used to endorse or promote products derived from this software
32
- without specific prior written permission.
33
-
34
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
35
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
36
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
38
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
39
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
40
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
41
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
43
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1
+ HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
14
+
15
+
16
+ Intersection Algorithms Provided by Kevin Lindsey
17
+ Copyright (c) 2000-2011, Kevin Lindsey
18
+ All rights reserved.
19
+
20
+ Redistribution and use in source and binary forms, with or without
21
+ modification, are permitted provided that the following conditions are met:
22
+
23
+ - Redistributions of source code must retain the above copyright notice,
24
+ this list of conditions and the following disclaimer.
25
+
26
+ - Redistributions in binary form must reproduce the above copyright
27
+ notice, this list of conditions and the following disclaimer in the
28
+ documentation and/or other materials provided with the distribution.
29
+
30
+ - Neither the name of this software nor the names of its contributors
31
+ may be used to endorse or promote products derived from this software
32
+ without specific prior written permission.
33
+
34
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
35
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
36
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
38
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
39
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
40
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
41
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
43
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/README.md CHANGED
@@ -1,89 +1,89 @@
1
- # @hpcc-js/map
2
- This package is part of the mono repository "@hpcc-js" (aka Visualization Framework), for more information including [Quick Start](https://github.com/hpcc-systems/Visualization/wiki/Quick-Start), [Gallery](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/gallery.html) and [Tutorials](https://github.com/hpcc-systems/Visualization/wiki/Tutorials), please visit the main page on GitHub: [hpcc-systems/Visualization](https://github.com/hpcc-systems/Visualization).
3
-
4
- ## Exported Widgets
5
- * [GMapPin](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Pins.js)
6
- * [GMapPinLines](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Pin%20Lines.js)
7
- * [Graticule](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Layered.js)
8
- * [Layered](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/Layered.js) / [GMapLayered](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Layered.js)
9
- * [ChoroplethCounties](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/USA/Counties.js)
10
- * [ChoroplethCountries](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/Europe/British%20Isles.js)
11
- * [ChoroplethStates](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/USA/States.js)
12
- * GeoHash
13
-
14
- ## Stand-alone HTML Example
15
- ```html
16
- <html>
17
- <head>
18
- <title>Simple GMap with pins and lines</title>
19
- <script src="https://unpkg.com/@hpcc-js/util"></script>
20
- <script src="https://unpkg.com/@hpcc-js/common"></script>
21
- <script src="https://unpkg.com/@hpcc-js/api"></script>
22
- <script src="https://unpkg.com/@hpcc-js/layout"></script>
23
- <script src="https://unpkg.com/@hpcc-js/map"></script>
24
- </head>
25
- <body>
26
- <div id="placeholder" style="width:400px;height:400px;"></div>
27
- <script>
28
- var widget = new window["@hpcc-js/map"].GMapPinLine()
29
- .target("placeholder")
30
- .columns(["name","lat1", "long1", "lat2", "long2"])
31
- .data([
32
- ["Destination A",40.777,-73.872,33.64,-84.426],
33
- ["Destination B",40.777,-73.872,39.997,-82.891],
34
- ["Destination C",40.777,-73.872,32.895,-97.037],
35
- ["Destination D",40.777,-73.872,26.072,-80.152],
36
- ["Destination E",40.777,-73.872,34.895,-82.218]
37
- ])
38
- .fromLatitudeColumn("lat1")
39
- .fromlongitudeColumn("long1")
40
- .toLatitudeColumn("lat2")
41
- .tolongitudeColumn("long2")
42
- .autoScale(true)
43
- .render(w => {
44
- setTimeout(function () {
45
- w.render();
46
- }, 500);
47
- })
48
- ;
49
- widget.click = function(pinData){
50
- console.log("Clicked pin data:",pinData);
51
- }
52
- </script>
53
- </body>
54
- </html>
55
- ```
56
-
57
- <ClientOnly>
58
- <hpcc-vitepress style="width:100%;height:600px">
59
- <div id="target" style="height:600px">
60
- </div>
61
- <script type="module">
62
- import { Leaflet } from "@hpcc-js/map";
63
-
64
- new Leaflet.ClusterPins()
65
- .target("target")
66
- .columns(["latitude", "longitude", "color", "icon"])
67
- .data([
68
- [51.897969, -8.475438, "green", "fa-plus"],
69
- [35.652930, 139.687128],
70
- [37.665074, -122.384375, "navy"],
71
- [32.690680, -117.178540],
72
- [39.709455, -104.969859],
73
- [41.244123, -95.961610, "navy"],
74
- [32.688980, -117.192040],
75
- [45.786490, -108.526600],
76
- [45.796180, -108.535652],
77
- [45.774320, -108.494370],
78
- [45.777062, -108.549835, "red", "fa-minus"]
79
- ])
80
- .mapType("MapBox")
81
- .latitudeColumn("latitude")
82
- .longitudeColumn("longitude")
83
- .faCharColumn("icon")
84
- .fillColorColumn("color")
85
- .render()
86
- ;
87
- </script>
88
- </hpcc-vitepress>
1
+ # @hpcc-js/map
2
+ This package is part of the mono repository "@hpcc-js" (aka Visualization Framework), for more information including [Quick Start](https://github.com/hpcc-systems/Visualization/wiki/Quick-Start), [Gallery](https://raw.githack.com/hpcc-systems/Visualization/trunk/demos/gallery/gallery.html) and [Tutorials](https://github.com/hpcc-systems/Visualization/wiki/Tutorials), please visit the main page on GitHub: [hpcc-systems/Visualization](https://github.com/hpcc-systems/Visualization).
3
+
4
+ ## Exported Widgets
5
+ * [GMapPin](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Pins.js)
6
+ * [GMapPinLines](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Pin%20Lines.js)
7
+ * [Graticule](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Layered.js)
8
+ * [Layered](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/Layered.js) / [GMapLayered](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Google%20Maps/Layered.js)
9
+ * [ChoroplethCounties](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/USA/Counties.js)
10
+ * [ChoroplethCountries](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/Europe/British%20Isles.js)
11
+ * [ChoroplethStates](https://rawgit.com/hpcc-systems/Visualization/trunk/demos/gallery/playground.html?./samples/geospatial/Choropleth/USA/States.js)
12
+ * GeoHash
13
+
14
+ ## Stand-alone HTML Example
15
+ ```html
16
+ <html>
17
+ <head>
18
+ <title>Simple GMap with pins and lines</title>
19
+ <script src="https://unpkg.com/@hpcc-js/util"></script>
20
+ <script src="https://unpkg.com/@hpcc-js/common"></script>
21
+ <script src="https://unpkg.com/@hpcc-js/api"></script>
22
+ <script src="https://unpkg.com/@hpcc-js/layout"></script>
23
+ <script src="https://unpkg.com/@hpcc-js/map"></script>
24
+ </head>
25
+ <body>
26
+ <div id="placeholder" style="width:400px;height:400px;"></div>
27
+ <script>
28
+ var widget = new window["@hpcc-js/map"].GMapPinLine()
29
+ .target("placeholder")
30
+ .columns(["name","lat1", "long1", "lat2", "long2"])
31
+ .data([
32
+ ["Destination A",40.777,-73.872,33.64,-84.426],
33
+ ["Destination B",40.777,-73.872,39.997,-82.891],
34
+ ["Destination C",40.777,-73.872,32.895,-97.037],
35
+ ["Destination D",40.777,-73.872,26.072,-80.152],
36
+ ["Destination E",40.777,-73.872,34.895,-82.218]
37
+ ])
38
+ .fromLatitudeColumn("lat1")
39
+ .fromlongitudeColumn("long1")
40
+ .toLatitudeColumn("lat2")
41
+ .tolongitudeColumn("long2")
42
+ .autoScale(true)
43
+ .render(w => {
44
+ setTimeout(function () {
45
+ w.render();
46
+ }, 500);
47
+ })
48
+ ;
49
+ widget.click = function(pinData){
50
+ console.log("Clicked pin data:",pinData);
51
+ }
52
+ </script>
53
+ </body>
54
+ </html>
55
+ ```
56
+
57
+ <ClientOnly>
58
+ <hpcc-vitepress style="width:100%;height:600px">
59
+ <div id="target" style="height:600px">
60
+ </div>
61
+ <script type="module">
62
+ import { Leaflet } from "@hpcc-js/map";
63
+
64
+ new Leaflet.ClusterPins()
65
+ .target("target")
66
+ .columns(["latitude", "longitude", "color", "icon"])
67
+ .data([
68
+ [51.897969, -8.475438, "green", "fa-plus"],
69
+ [35.652930, 139.687128],
70
+ [37.665074, -122.384375, "navy"],
71
+ [32.690680, -117.178540],
72
+ [39.709455, -104.969859],
73
+ [41.244123, -95.961610, "navy"],
74
+ [32.688980, -117.192040],
75
+ [45.786490, -108.526600],
76
+ [45.796180, -108.535652],
77
+ [45.774320, -108.494370],
78
+ [45.777062, -108.549835, "red", "fa-minus"]
79
+ ])
80
+ .mapType("MapBox")
81
+ .latitudeColumn("latitude")
82
+ .longitudeColumn("longitude")
83
+ .faCharColumn("icon")
84
+ .fillColorColumn("color")
85
+ .render()
86
+ ;
87
+ </script>
88
+ </hpcc-vitepress>
89
89
  </ClientOnly>
package/TopoJSON/BR.json CHANGED
@@ -1,123 +1,123 @@
1
- {"type":"Topology","objects":{"PolbndA":{"type":"GeometryCollection",
2
- "bbox":[-73.97741220933203,-33.74579986956992,-34.81727575186676,5.24981966486962],
3
- "geometries":
4
- [
5
- {"type":"Polygon","properties":{"name":"Acre" },"id":"AC","arcs":[[0,1,2]]},
6
- {"type":"Polygon","properties":{"name":"Alagoas" },"id":"AL","arcs":[[3,4,5,6]]},
7
- {"type":"Polygon","properties":{"name":"Amazonas" },"id":"AM","arcs":[[7,8,9,10,-1,11]]},
8
- {"type":"Polygon","properties":{"name":"Amap�" },"id":"AP","arcs":[[12,13]]},
9
- {"type":"Polygon","properties":{"name":"Bahia" },"id":"BA","arcs":[[-6,14,15,16,17,18,19,20,21,22,23]]},
10
- {"type":"Polygon","properties":{"name":"Cear�" },"id":"CE","arcs":[[24,25,26,27,28,29]]},
11
- {"type":"Polygon","properties":{"name":"Distrito Federal" },"id":"DF","arcs":[[30]]},
12
- {"type":"Polygon","properties":{"name":"Esp�rito Santo" },"id":"ES","arcs":[[31,32,-17,33]]},
13
- {"type":"Polygon","properties":{"name":"Goi�s" },"id":"GO","arcs":[[34,-21,35,36,37,38,39]]},
14
- {"type":"Polygon","properties":{"name":"Maranh�o" },"id":"MA","arcs":[[40,41,42,43]]},
15
- {"type":"Polygon","properties":{"name":"Minas Gerais" },"id":"MG","arcs":[[-18,-33,44,45,46,-38,-36,-20,47]]},
16
- {"type":"Polygon","properties":{"name":"Mato Grosso do Sul" },"id":"MS","arcs":[[-39,-47,48,49,50,51]]},
17
- {"type":"Polygon","properties":{"name":"Mato Grosso" },"id":"MT","arcs":[[52,-10,53,54,-40,-52,55]]},
18
- {"type":"Polygon","properties":{"name":"Par�" },"id":"PA","arcs":[[-41,56,-54,-9,57,58,-13,59]]},
19
- {"type":"Polygon","properties":{"name":"Para�ba" },"id":"PB","arcs":[[60,61,-26,62]]},
20
- {"type":"Polygon","properties":{"name":"Pernambuco" },"id":"PE","arcs":[[63,-7,-24,64,-27,-62]]},
21
- {"type":"Polygon","properties":{"name":"Piau�" },"id":"PI","arcs":[[65,-28,-65,-23,-43]]},
22
- {"type":"Polygon","properties":{"name":"Paran�" },"id":"PR","arcs":[[66,67,68,69,-50]]},
23
- {"type":"Polygon","properties":{"name":"Rio de Janeiro" },"id":"RJ","arcs":[[70,-45,-32,71]]},
24
- {"type":"Polygon","properties":{"name":"Rio Grande do Norte"},"id":"RN","arcs":[[72,-63,-25]]},
25
- {"type":"Polygon","properties":{"name":"Rond�nia" },"id":"RO","arcs":[[-11,-53,73,-2]]},
26
- {"type":"Polygon","properties":{"name":"Roraima" },"id":"RR","arcs":[[-58,-8,74]]},
27
- {"type":"Polygon","properties":{"name":"Rio Grande do Sul" },"id":"RS","arcs":[[75,76]]},
28
- {"type":"Polygon","properties":{"name":"Santa Catarina" },"id":"SC","arcs":[[-69,77,-76,78]]},
29
- {"type":"Polygon","properties":{"name":"Sergipe" },"id":"SE","arcs":[[-5,79,-15]]},
30
- {"type":"Polygon","properties":{"name":"S�o Paulo" },"id":"SP","arcs":[[80,-67,-49,-46,-71]]},
31
- {"type":"Polygon","properties":{"name":"Tocantins" },"id":"TO","arcs":[[-22,-35,-55,-57,-44]]}
32
- ]}},
33
- "arcs":
34
- [
35
- [[44,6830],[888,-264],[899,-430]],
36
- [[1831,6136],[53,-21]],
37
- [[1884,6115],[-496,-311],[-531,28],[4,388],[-163,-136],[-231,11],[-54,142],[-214,6],[78,87],[-155,194],[-60,108],[-1,33],[-60,45],[-1,64],[49,0],[-5,56]],
38
- [[9922,6376],[-59,-94],[-100,-112],[-79,-103],[-63,-55],[1,-12],[-26,-38]],
39
- [[9596,5962],[-14,24],[-29,-3],[-1,23],[-18,18],[-15,-8],[-64,49],[-2,22],[-265,130]],
40
- [[9188,6217],[-59,46]],
41
- [[9129,6263],[111,120],[215,-137],[14,29],[52,-1],[19,-19],[167,129],[65,-17],[46,25],[104,-16]],
42
- [[2703,9217],[168,-91],[120,-557],[-61,-114],[260,-204],[-27,191],[108,89],[122,-104],[101,52],[-29,45],[90,192],[294,7]],
43
- [[3849,8723],[7,-174],[141,-189],[502,-284],[-524,-1167],[62,-132]],
44
- [[4037,6777],[-63,-376],[-799,-6]],
45
- [[3175,6395],[-154,8],[-180,203],[-183,-1],[-181,-239],[-160,-3],[2,-131],[-360,5],[-128,-101]],
46
- [[44,6830],[27,97],[141,67],[-33,110],[118,239],[340,179],[388,28],[140,845],[-157,212],[-4,196],[228,5],[-1,115],[-175,-2],[0,173],[416,3],[191,112],[91,-88],[5,-169],[395,-133],[549,398]],
47
- [[6087,8820],[-403,-354],[13,-101],[-173,-13],[-324,622],[-188,125],[-105,0],[-34,187]],
48
- [[4873,9286],[56,3],[56,-74],[101,-6],[60,48],[124,-3],[26,-40],[92,0],[383,582],[147,-550],[241,-178],[-6,-154],[-66,-94]],
49
- [[9188,6217],[4,-118],[41,-7],[23,-89],[-27,-12],[0,-83],[-46,-14],[-8,15],[-39,-2],[-17,-28],[66,-136],[138,-69]],
50
- [[9323,5674],[-231,-360],[-50,33],[-95,-89],[-30,-389],[51,-283],[-113,-360],[41,-104],[-34,-52],[-61,-27],[-40,-91]],
51
- [[8761,3952],[-156,102]],
52
- [[8605,4054],[20,51],[-108,94],[32,122],[59,9],[78,221]],
53
- [[8686,4551],[-1086,452],[-466,-253]],
54
- [[7134,4750],[3,94]],
55
- [[7137,4844],[-57,487]],
56
- [[7080,5331],[-81,420],[192,273]],
57
- [[7191,6024],[145,-146],[284,48],[119,154],[-47,124],[94,73],[184,-90],[134,93],[92,0],[159,154]],
58
- [[8355,6434],[133,-126],[-2,-70],[89,-2],[251,232],[190,-118],[36,34],[59,-48],[-17,-30],[35,-43]],
59
- [[9365,7418],[-85,-34],[-239,-361]],
60
- [[9041,7023],[-50,-152],[58,-87],[-44,-118]],
61
- [[9005,6666],[-107,0],[-142,107],[-220,-16]],
62
- [[8536,6757],[40,160],[-78,32],[-88,447],[-72,510]],
63
- [[8338,7906],[-128,50],[128,-50]],
64
- [[8338,7906],[333,19],[395,-220],[147,-163],[151,-84],[1,-40]],
65
- [[6809,4538],[-247,0],[-1,139],[248,-1],[0,-138]],
66
- [[8439,3189],[-202,48],[1,74],[-44,12]],
67
- [[8194,3323],[25,149],[102,4],[125,237],[-41,54],[31,73],[-67,107],[59,53],[51,-2],[40,55],[86,1]],
68
- [[8761,3952],[-35,-114],[28,-142],[-28,-77],[-70,-49],[-38,-113],[-86,-149],[-55,-3],[-38,-116]],
69
- [[5974,5372],[319,-97],[787,56]],
70
- [[7137,4844],[-208,-33],[8,-228],[-128,-45]],
71
- [[6809,4538],[0,138],[-248,1],[1,-139],[247,0]],
72
- [[6809,4538],[7,-515],[-149,-121],[-100,48],[-194,-2],[-98,-84],[-232,-6],[-161,-198]],
73
- [[5882,3660],[-484,217],[-63,162]],
74
- [[5335,4039],[-42,92],[61,205],[189,243],[111,18],[56,192],[132,22],[132,561]],
75
- [[6494,7329],[254,158],[170,251],[207,649]],
76
- [[7125,8387],[333,-125],[88,-218],[107,-36],[117,75],[266,-131],[175,2]],
77
- [[8211,7954],[-298,-387],[17,-624],[-142,-57],[-38,63],[-118,-43],[-124,-131],[-225,-89],[-129,-304],[37,-358]],
78
- [[7191,6024],[-148,36],[-48,105],[-118,179],[62,164],[82,13],[-14,113],[-130,-30],[-161,194],[78,250],[-34,200],[-266,81]],
79
- [[8194,3323],[-19,-45],[-34,1],[-68,-172],[14,-23],[-199,-95],[-67,29],[-358,-110]],
80
- [[7463,2908],[-407,-128],[-283,748],[-898,17]],
81
- [[5875,3545],[7,115]],
82
- [[7134,4750],[467,250],[1085,-449]],
83
- [[5875,3545],[-380,-578],[-163,-105]],
84
- [[5332,2862],[-126,-89],[-93,-129],[-75,-154]],
85
- [[5038,2490],[-113,35],[-168,-25],[-124,443],[-541,16],[7,318],[-83,259],[199,521]],
86
- [[4215,4057],[199,152],[186,44],[219,-125],[255,6],[107,112],[-1,-117],[-96,-91],[251,1]],
87
- [[3397,5141],[213,358],[2,332],[-439,5],[2,559]],
88
- [[4037,6777],[360,-535],[1668,-112]],
89
- [[6065,6130],[-131,-409],[40,-349]],
90
- [[4215,4057],[-217,169],[0,257],[-473,-1],[-3,196],[-100,112],[84,-4],[-5,124],[-33,149],[-71,82]],
91
- [[6494,7329],[-53,-48],[143,-59],[-139,-293],[-76,-20],[-89,-202],[56,-59],[-271,-518]],
92
- [[3849,8723],[6,259]],
93
- [[3855,8982],[444,162],[287,10],[-11,134],[298,-2]],
94
- [[6087,8820],[40,-84],[96,8],[298,-157],[5,-63],[120,-42],[77,60],[402,-155]],
95
- [[9960,6990],[39,-272]],
96
- [[9999,6718],[-63,39],[-105,-17],[-15,-49],[-119,-45],[-62,10],[-87,-35],[-7,-55],[-97,-44],[-84,97],[92,122],[-80,49],[-177,-118],[-190,-6]],
97
- [[9041,7023],[118,-34],[216,129],[24,-39],[-79,-138],[198,-78],[83,131],[359,-4]],
98
- [[9999,6718],[-77,-342]],
99
- [[8355,6434],[181,152],[-1,62],[-43,16],[1,75],[43,18]],
100
- [[8211,7954],[127,-48]],
101
- [[5332,2862],[851,-121],[143,-388],[301,-170]],
102
- [[6627,2183],[-147,-192]],
103
- [[6480,1991],[-146,0],[-90,-58],[-97,48],[-174,-2],[-35,-51],[-138,-19],[-30,-85],[-577,95]],
104
- [[5193,1919],[-79,159],[-163,12],[87,400]],
105
- [[7465,2663],[-31,91],[163,59],[-21,50],[-69,-22],[-44,67]],
106
- [[8439,3189],[-36,-55],[23,-120],[-63,-36],[-85,-28],[-110,-92],[30,-33],[-40,-56],[-254,-6],[-143,-22],[-67,34],[-193,-67],[11,-31],[-47,-14]],
107
- [[9365,7418],[161,-68],[182,9],[152,-44],[100,-325]],
108
- [[3397,5141],[-92,49],[-212,-8],[-79,90],[-419,197],[-101,-39],[-281,219],[1,464],[-330,2]],
109
- [[2703,9217],[-4,55],[-149,-1],[-57,298],[-163,167],[23,19],[49,-43],[117,-7],[33,-50],[204,9],[51,-85],[69,20],[-29,72],[127,52],[73,-19],[338,175],[-3,116],[183,4],[6,-185],[93,-36],[4,-150],[-90,-206],[5,-163],[51,-18],[1,-108],[129,-130],[91,-21]],
110
- [[5143,1686],[528,-63],[306,-244],[184,-48],[-45,-133],[68,-60]],
111
- [[6184,1138],[-135,-303],[-133,-178],[-99,-87],[-222,-158],[-1,77],[49,0],[120,85],[185,255],[-129,25],[-123,-212],[-152,-152],[40,-23],[0,-60],[-59,-68],[-52,-150],[-56,-69],[-157,-120],[-40,34],[30,90],[102,123],[55,-33],[53,110],[-45,29],[-109,-69],[-594,445],[-114,-51],[-363,270],[448,491],[460,247]],
112
- [[6480,1991],[30,-65],[-49,-122],[25,-167],[-2,-126],[-41,-168],[-259,-205]],
113
- [[5143,1686],[50,233]],
114
- [[9596,5962],[-7,-11],[-28,0],[-96,-66],[-142,-211]],
115
- [[7465,2663],[-175,-74],[14,-25],[-36,-24],[-59,19],[-73,-11],[-207,-105],[-302,-260]]
116
- ],
117
- "transform":
118
- {
119
- "scale":[0.003916405286275154,0.0038999519486388173],
120
- "translate":[-73.97741220933203,-33.74579986956992]
121
- }
122
- }
1
+ {"type":"Topology","objects":{"PolbndA":{"type":"GeometryCollection",
2
+ "bbox":[-73.97741220933203,-33.74579986956992,-34.81727575186676,5.24981966486962],
3
+ "geometries":
4
+ [
5
+ {"type":"Polygon","properties":{"name":"Acre" },"id":"AC","arcs":[[0,1,2]]},
6
+ {"type":"Polygon","properties":{"name":"Alagoas" },"id":"AL","arcs":[[3,4,5,6]]},
7
+ {"type":"Polygon","properties":{"name":"Amazonas" },"id":"AM","arcs":[[7,8,9,10,-1,11]]},
8
+ {"type":"Polygon","properties":{"name":"Amap�" },"id":"AP","arcs":[[12,13]]},
9
+ {"type":"Polygon","properties":{"name":"Bahia" },"id":"BA","arcs":[[-6,14,15,16,17,18,19,20,21,22,23]]},
10
+ {"type":"Polygon","properties":{"name":"Cear�" },"id":"CE","arcs":[[24,25,26,27,28,29]]},
11
+ {"type":"Polygon","properties":{"name":"Distrito Federal" },"id":"DF","arcs":[[30]]},
12
+ {"type":"Polygon","properties":{"name":"Esp�rito Santo" },"id":"ES","arcs":[[31,32,-17,33]]},
13
+ {"type":"Polygon","properties":{"name":"Goi�s" },"id":"GO","arcs":[[34,-21,35,36,37,38,39]]},
14
+ {"type":"Polygon","properties":{"name":"Maranh�o" },"id":"MA","arcs":[[40,41,42,43]]},
15
+ {"type":"Polygon","properties":{"name":"Minas Gerais" },"id":"MG","arcs":[[-18,-33,44,45,46,-38,-36,-20,47]]},
16
+ {"type":"Polygon","properties":{"name":"Mato Grosso do Sul" },"id":"MS","arcs":[[-39,-47,48,49,50,51]]},
17
+ {"type":"Polygon","properties":{"name":"Mato Grosso" },"id":"MT","arcs":[[52,-10,53,54,-40,-52,55]]},
18
+ {"type":"Polygon","properties":{"name":"Par�" },"id":"PA","arcs":[[-41,56,-54,-9,57,58,-13,59]]},
19
+ {"type":"Polygon","properties":{"name":"Para�ba" },"id":"PB","arcs":[[60,61,-26,62]]},
20
+ {"type":"Polygon","properties":{"name":"Pernambuco" },"id":"PE","arcs":[[63,-7,-24,64,-27,-62]]},
21
+ {"type":"Polygon","properties":{"name":"Piau�" },"id":"PI","arcs":[[65,-28,-65,-23,-43]]},
22
+ {"type":"Polygon","properties":{"name":"Paran�" },"id":"PR","arcs":[[66,67,68,69,-50]]},
23
+ {"type":"Polygon","properties":{"name":"Rio de Janeiro" },"id":"RJ","arcs":[[70,-45,-32,71]]},
24
+ {"type":"Polygon","properties":{"name":"Rio Grande do Norte"},"id":"RN","arcs":[[72,-63,-25]]},
25
+ {"type":"Polygon","properties":{"name":"Rond�nia" },"id":"RO","arcs":[[-11,-53,73,-2]]},
26
+ {"type":"Polygon","properties":{"name":"Roraima" },"id":"RR","arcs":[[-58,-8,74]]},
27
+ {"type":"Polygon","properties":{"name":"Rio Grande do Sul" },"id":"RS","arcs":[[75,76]]},
28
+ {"type":"Polygon","properties":{"name":"Santa Catarina" },"id":"SC","arcs":[[-69,77,-76,78]]},
29
+ {"type":"Polygon","properties":{"name":"Sergipe" },"id":"SE","arcs":[[-5,79,-15]]},
30
+ {"type":"Polygon","properties":{"name":"S�o Paulo" },"id":"SP","arcs":[[80,-67,-49,-46,-71]]},
31
+ {"type":"Polygon","properties":{"name":"Tocantins" },"id":"TO","arcs":[[-22,-35,-55,-57,-44]]}
32
+ ]}},
33
+ "arcs":
34
+ [
35
+ [[44,6830],[888,-264],[899,-430]],
36
+ [[1831,6136],[53,-21]],
37
+ [[1884,6115],[-496,-311],[-531,28],[4,388],[-163,-136],[-231,11],[-54,142],[-214,6],[78,87],[-155,194],[-60,108],[-1,33],[-60,45],[-1,64],[49,0],[-5,56]],
38
+ [[9922,6376],[-59,-94],[-100,-112],[-79,-103],[-63,-55],[1,-12],[-26,-38]],
39
+ [[9596,5962],[-14,24],[-29,-3],[-1,23],[-18,18],[-15,-8],[-64,49],[-2,22],[-265,130]],
40
+ [[9188,6217],[-59,46]],
41
+ [[9129,6263],[111,120],[215,-137],[14,29],[52,-1],[19,-19],[167,129],[65,-17],[46,25],[104,-16]],
42
+ [[2703,9217],[168,-91],[120,-557],[-61,-114],[260,-204],[-27,191],[108,89],[122,-104],[101,52],[-29,45],[90,192],[294,7]],
43
+ [[3849,8723],[7,-174],[141,-189],[502,-284],[-524,-1167],[62,-132]],
44
+ [[4037,6777],[-63,-376],[-799,-6]],
45
+ [[3175,6395],[-154,8],[-180,203],[-183,-1],[-181,-239],[-160,-3],[2,-131],[-360,5],[-128,-101]],
46
+ [[44,6830],[27,97],[141,67],[-33,110],[118,239],[340,179],[388,28],[140,845],[-157,212],[-4,196],[228,5],[-1,115],[-175,-2],[0,173],[416,3],[191,112],[91,-88],[5,-169],[395,-133],[549,398]],
47
+ [[6087,8820],[-403,-354],[13,-101],[-173,-13],[-324,622],[-188,125],[-105,0],[-34,187]],
48
+ [[4873,9286],[56,3],[56,-74],[101,-6],[60,48],[124,-3],[26,-40],[92,0],[383,582],[147,-550],[241,-178],[-6,-154],[-66,-94]],
49
+ [[9188,6217],[4,-118],[41,-7],[23,-89],[-27,-12],[0,-83],[-46,-14],[-8,15],[-39,-2],[-17,-28],[66,-136],[138,-69]],
50
+ [[9323,5674],[-231,-360],[-50,33],[-95,-89],[-30,-389],[51,-283],[-113,-360],[41,-104],[-34,-52],[-61,-27],[-40,-91]],
51
+ [[8761,3952],[-156,102]],
52
+ [[8605,4054],[20,51],[-108,94],[32,122],[59,9],[78,221]],
53
+ [[8686,4551],[-1086,452],[-466,-253]],
54
+ [[7134,4750],[3,94]],
55
+ [[7137,4844],[-57,487]],
56
+ [[7080,5331],[-81,420],[192,273]],
57
+ [[7191,6024],[145,-146],[284,48],[119,154],[-47,124],[94,73],[184,-90],[134,93],[92,0],[159,154]],
58
+ [[8355,6434],[133,-126],[-2,-70],[89,-2],[251,232],[190,-118],[36,34],[59,-48],[-17,-30],[35,-43]],
59
+ [[9365,7418],[-85,-34],[-239,-361]],
60
+ [[9041,7023],[-50,-152],[58,-87],[-44,-118]],
61
+ [[9005,6666],[-107,0],[-142,107],[-220,-16]],
62
+ [[8536,6757],[40,160],[-78,32],[-88,447],[-72,510]],
63
+ [[8338,7906],[-128,50],[128,-50]],
64
+ [[8338,7906],[333,19],[395,-220],[147,-163],[151,-84],[1,-40]],
65
+ [[6809,4538],[-247,0],[-1,139],[248,-1],[0,-138]],
66
+ [[8439,3189],[-202,48],[1,74],[-44,12]],
67
+ [[8194,3323],[25,149],[102,4],[125,237],[-41,54],[31,73],[-67,107],[59,53],[51,-2],[40,55],[86,1]],
68
+ [[8761,3952],[-35,-114],[28,-142],[-28,-77],[-70,-49],[-38,-113],[-86,-149],[-55,-3],[-38,-116]],
69
+ [[5974,5372],[319,-97],[787,56]],
70
+ [[7137,4844],[-208,-33],[8,-228],[-128,-45]],
71
+ [[6809,4538],[0,138],[-248,1],[1,-139],[247,0]],
72
+ [[6809,4538],[7,-515],[-149,-121],[-100,48],[-194,-2],[-98,-84],[-232,-6],[-161,-198]],
73
+ [[5882,3660],[-484,217],[-63,162]],
74
+ [[5335,4039],[-42,92],[61,205],[189,243],[111,18],[56,192],[132,22],[132,561]],
75
+ [[6494,7329],[254,158],[170,251],[207,649]],
76
+ [[7125,8387],[333,-125],[88,-218],[107,-36],[117,75],[266,-131],[175,2]],
77
+ [[8211,7954],[-298,-387],[17,-624],[-142,-57],[-38,63],[-118,-43],[-124,-131],[-225,-89],[-129,-304],[37,-358]],
78
+ [[7191,6024],[-148,36],[-48,105],[-118,179],[62,164],[82,13],[-14,113],[-130,-30],[-161,194],[78,250],[-34,200],[-266,81]],
79
+ [[8194,3323],[-19,-45],[-34,1],[-68,-172],[14,-23],[-199,-95],[-67,29],[-358,-110]],
80
+ [[7463,2908],[-407,-128],[-283,748],[-898,17]],
81
+ [[5875,3545],[7,115]],
82
+ [[7134,4750],[467,250],[1085,-449]],
83
+ [[5875,3545],[-380,-578],[-163,-105]],
84
+ [[5332,2862],[-126,-89],[-93,-129],[-75,-154]],
85
+ [[5038,2490],[-113,35],[-168,-25],[-124,443],[-541,16],[7,318],[-83,259],[199,521]],
86
+ [[4215,4057],[199,152],[186,44],[219,-125],[255,6],[107,112],[-1,-117],[-96,-91],[251,1]],
87
+ [[3397,5141],[213,358],[2,332],[-439,5],[2,559]],
88
+ [[4037,6777],[360,-535],[1668,-112]],
89
+ [[6065,6130],[-131,-409],[40,-349]],
90
+ [[4215,4057],[-217,169],[0,257],[-473,-1],[-3,196],[-100,112],[84,-4],[-5,124],[-33,149],[-71,82]],
91
+ [[6494,7329],[-53,-48],[143,-59],[-139,-293],[-76,-20],[-89,-202],[56,-59],[-271,-518]],
92
+ [[3849,8723],[6,259]],
93
+ [[3855,8982],[444,162],[287,10],[-11,134],[298,-2]],
94
+ [[6087,8820],[40,-84],[96,8],[298,-157],[5,-63],[120,-42],[77,60],[402,-155]],
95
+ [[9960,6990],[39,-272]],
96
+ [[9999,6718],[-63,39],[-105,-17],[-15,-49],[-119,-45],[-62,10],[-87,-35],[-7,-55],[-97,-44],[-84,97],[92,122],[-80,49],[-177,-118],[-190,-6]],
97
+ [[9041,7023],[118,-34],[216,129],[24,-39],[-79,-138],[198,-78],[83,131],[359,-4]],
98
+ [[9999,6718],[-77,-342]],
99
+ [[8355,6434],[181,152],[-1,62],[-43,16],[1,75],[43,18]],
100
+ [[8211,7954],[127,-48]],
101
+ [[5332,2862],[851,-121],[143,-388],[301,-170]],
102
+ [[6627,2183],[-147,-192]],
103
+ [[6480,1991],[-146,0],[-90,-58],[-97,48],[-174,-2],[-35,-51],[-138,-19],[-30,-85],[-577,95]],
104
+ [[5193,1919],[-79,159],[-163,12],[87,400]],
105
+ [[7465,2663],[-31,91],[163,59],[-21,50],[-69,-22],[-44,67]],
106
+ [[8439,3189],[-36,-55],[23,-120],[-63,-36],[-85,-28],[-110,-92],[30,-33],[-40,-56],[-254,-6],[-143,-22],[-67,34],[-193,-67],[11,-31],[-47,-14]],
107
+ [[9365,7418],[161,-68],[182,9],[152,-44],[100,-325]],
108
+ [[3397,5141],[-92,49],[-212,-8],[-79,90],[-419,197],[-101,-39],[-281,219],[1,464],[-330,2]],
109
+ [[2703,9217],[-4,55],[-149,-1],[-57,298],[-163,167],[23,19],[49,-43],[117,-7],[33,-50],[204,9],[51,-85],[69,20],[-29,72],[127,52],[73,-19],[338,175],[-3,116],[183,4],[6,-185],[93,-36],[4,-150],[-90,-206],[5,-163],[51,-18],[1,-108],[129,-130],[91,-21]],
110
+ [[5143,1686],[528,-63],[306,-244],[184,-48],[-45,-133],[68,-60]],
111
+ [[6184,1138],[-135,-303],[-133,-178],[-99,-87],[-222,-158],[-1,77],[49,0],[120,85],[185,255],[-129,25],[-123,-212],[-152,-152],[40,-23],[0,-60],[-59,-68],[-52,-150],[-56,-69],[-157,-120],[-40,34],[30,90],[102,123],[55,-33],[53,110],[-45,29],[-109,-69],[-594,445],[-114,-51],[-363,270],[448,491],[460,247]],
112
+ [[6480,1991],[30,-65],[-49,-122],[25,-167],[-2,-126],[-41,-168],[-259,-205]],
113
+ [[5143,1686],[50,233]],
114
+ [[9596,5962],[-7,-11],[-28,0],[-96,-66],[-142,-211]],
115
+ [[7465,2663],[-175,-74],[14,-25],[-36,-24],[-59,19],[-73,-11],[-207,-105],[-302,-260]]
116
+ ],
117
+ "transform":
118
+ {
119
+ "scale":[0.003916405286275154,0.0038999519486388173],
120
+ "translate":[-73.97741220933203,-33.74579986956992]
121
+ }
122
+ }
123
123