web-mapping-leaflet 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,206 +1,206 @@
1
- /*
2
- Leaflet.BeautifyIcon, a plugin that adds colorful iconic markers for Leaflet by giving full control of style to end user, It has also ability to adjust font awesome
3
- and glyphicon icons
4
- (c) 2016-2017, Muhammad Arslan Sajid
5
- http://leafletjs.com
6
- */
7
-
8
- /*global L of leaflet*/
9
-
10
- (function (window, document, undefined) {
11
-
12
- 'use strict';
13
-
14
- /*
15
- * Leaflet.BeautifyIcon assumes that you have already included the Leaflet library.
16
- */
17
-
18
- /*
19
- * Default settings for various style markers
20
- */
21
- var defaults = {
22
-
23
- iconColor: '#1EB300',
24
-
25
- iconAnchor: {
26
- 'marker': [14, 36]
27
- , 'circle': [11, 10]
28
- , 'circle-dot': [5, 5]
29
- , 'rectangle-dot': [5, 6]
30
- , 'doughnut': [8, 8]
31
- },
32
-
33
- popupAnchor: {
34
- 'marker': [0, -25]
35
- , 'circle': [-3, -76]
36
- , 'circle-dot': [0, -2]
37
- , 'rectangle-dot': [0, -2]
38
- , 'doughnut': [0, -2]
39
- },
40
-
41
- innerIconAnchor: {
42
- 'marker': [-2, 5]
43
- , 'circle': [0, 2]
44
- },
45
-
46
- iconSize: {
47
- 'marker': [28, 28]
48
- , 'circle': [22, 22]
49
- , 'circle-dot': [2, 2]
50
- , 'rectangle-dot': [2, 2]
51
- , 'doughnut': [15, 15]
52
- }
53
- };
54
-
55
- L.BeautifyIcon = {
56
-
57
- Icon: L.Icon.extend({
58
-
59
- options: {
60
- icon: 'leaf'
61
- , iconSize: defaults.iconSize.circle
62
- , iconAnchor: defaults.iconAnchor.circle
63
- , iconShape: 'circle'
64
- , iconStyle: ''
65
- , innerIconAnchor: [0, 3] // circle with fa or glyphicon or marker with text
66
- , innerIconStyle: ''
67
- , isAlphaNumericIcon: false
68
- , text: 1
69
- , borderColor: defaults.iconColor
70
- , borderWidth: 2
71
- , borderStyle: 'solid'
72
- , backgroundColor: 'white'
73
- , textColor: defaults.iconColor
74
- , customClasses: ''
75
- , spin: false
76
- , prefix: 'fa'
77
- , html: ''
78
- },
79
-
80
- initialize: function (options) {
81
-
82
- this.applyDefaults(options);
83
- this.options = (!options || !options.html) ? L.Util.setOptions(this, options) : options;
84
- },
85
-
86
- applyDefaults: function (options) {
87
-
88
- if (options) {
89
- if (!options.iconSize && options.iconShape) {
90
- options.iconSize = defaults.iconSize[options.iconShape];
91
- }
92
-
93
- if (!options.iconAnchor && options.iconShape) {
94
- options.iconAnchor = defaults.iconAnchor[options.iconShape];
95
- }
96
-
97
- if (!options.popupAnchor && options.iconShape) {
98
- options.popupAnchor = defaults.popupAnchor[options.iconShape];
99
- }
100
-
101
- if (!options.innerIconAnchor) {
102
- // if icon is type of circle or marker
103
- if (options.iconShape === 'circle' || options.iconShape === 'marker') {
104
- if (options.iconShape === 'circle' && options.isAlphaNumericIcon) { // if circle with text
105
- options.innerIconAnchor = [0, -1];
106
- }
107
- else if (options.iconShape === 'marker' && !options.isAlphaNumericIcon) {// marker with icon
108
- options.innerIconAnchor = defaults.innerIconAnchor[options.iconShape];
109
- }
110
- }
111
- }
112
- }
113
- },
114
-
115
- createIcon: function () {
116
-
117
- var iconDiv = document.createElement('div')
118
- , options = this.options;
119
-
120
- iconDiv.innerHTML = !options.html ? this.createIconInnerHtml() : options.html;
121
- this._setIconStyles(iconDiv);
122
-
123
- // having a marker requires an extra parent div for rotation correction
124
- if (this.options.iconShape === 'marker') {
125
- var wrapperDiv = document.createElement('div');
126
- wrapperDiv.className = 'beautify-marker';
127
- wrapperDiv.appendChild(iconDiv);
128
- return wrapperDiv;
129
- }
130
-
131
- return iconDiv;
132
- },
133
-
134
- createIconInnerHtml: function () {
135
-
136
- var options = this.options;
137
-
138
- if (options.iconShape === 'circle-dot' || options.iconShape === 'rectangle-dot' || options.iconShape === 'doughnut') {
139
- return '';
140
- }
141
-
142
- var innerIconStyle = this.getInnerIconStyle(options);
143
- if (options.isAlphaNumericIcon) {
144
- return '<div style="' + innerIconStyle + '">' + options.text + '</div>';
145
- }
146
-
147
- var spinClass = '';
148
- if (options.spin) {
149
- spinClass = ' fa-spin';
150
- }
151
-
152
- return '<i class="' + options.prefix + ' ' + options.prefix + '-' + options.icon + spinClass + '" style="' + innerIconStyle + '"></i>';
153
- },
154
-
155
- getInnerIconStyle: function (options) {
156
-
157
- var innerAnchor = L.point(options.innerIconAnchor)
158
- return 'color:' + options.textColor + ';margin-top:' + innerAnchor.y + 'px; margin-left:' + innerAnchor.x + 'px;' + options.innerIconStyle;
159
- },
160
-
161
- _setIconStyles: function (iconDiv) {
162
-
163
- var options = this.options
164
- , size = L.point(options.iconSize)
165
- , anchor = L.point(options.iconAnchor);
166
-
167
- iconDiv.className = 'beautify-marker ';
168
-
169
- if (options.iconShape) {
170
- iconDiv.className += options.iconShape;
171
- }
172
-
173
- if (options.customClasses) {
174
- iconDiv.className += ' ' + options.customClasses;
175
- }
176
-
177
- iconDiv.style.backgroundColor = options.backgroundColor;
178
- iconDiv.style.color = options.textColor;
179
- iconDiv.style.borderColor = options.borderColor;
180
- iconDiv.style.borderWidth = options.borderWidth + 'px';
181
- iconDiv.style.borderStyle = options.borderStyle;
182
-
183
- if (size) {
184
- iconDiv.style.width = size.x + 'px';
185
- iconDiv.style.height = size.y + 'px';
186
- }
187
-
188
- if (anchor) {
189
- iconDiv.style.marginLeft = (-anchor.x) + 'px';
190
- iconDiv.style.marginTop = (-anchor.y) + 'px';
191
- }
192
-
193
- if (options.iconStyle) {
194
- var cStyle = iconDiv.getAttribute('style');
195
- cStyle += options.iconStyle;
196
- iconDiv.setAttribute('style', cStyle);
197
- }
198
- }
199
- })
200
- };
201
-
202
- L.BeautifyIcon.icon = function (options) {
203
- return new L.BeautifyIcon.Icon(options);
204
- }
205
-
206
- }(this, document));
1
+ /*
2
+ Leaflet.BeautifyIcon, a plugin that adds colorful iconic markers for Leaflet by giving full control of style to end user, It has also ability to adjust font awesome
3
+ and glyphicon icons
4
+ (c) 2016-2017, Muhammad Arslan Sajid
5
+ http://leafletjs.com
6
+ */
7
+
8
+ /*global L of leaflet*/
9
+
10
+ (function (window, document, undefined) {
11
+
12
+ 'use strict';
13
+
14
+ /*
15
+ * Leaflet.BeautifyIcon assumes that you have already included the Leaflet library.
16
+ */
17
+
18
+ /*
19
+ * Default settings for various style markers
20
+ */
21
+ var defaults = {
22
+
23
+ iconColor: '#1EB300',
24
+
25
+ iconAnchor: {
26
+ 'marker': [14, 36]
27
+ , 'circle': [11, 10]
28
+ , 'circle-dot': [5, 5]
29
+ , 'rectangle-dot': [5, 6]
30
+ , 'doughnut': [8, 8]
31
+ },
32
+
33
+ popupAnchor: {
34
+ 'marker': [0, -25]
35
+ , 'circle': [-3, -76]
36
+ , 'circle-dot': [0, -2]
37
+ , 'rectangle-dot': [0, -2]
38
+ , 'doughnut': [0, -2]
39
+ },
40
+
41
+ innerIconAnchor: {
42
+ 'marker': [-2, 5]
43
+ , 'circle': [0, 2]
44
+ },
45
+
46
+ iconSize: {
47
+ 'marker': [28, 28]
48
+ , 'circle': [22, 22]
49
+ , 'circle-dot': [2, 2]
50
+ , 'rectangle-dot': [2, 2]
51
+ , 'doughnut': [15, 15]
52
+ }
53
+ };
54
+
55
+ L.BeautifyIcon = {
56
+
57
+ Icon: L.Icon.extend({
58
+
59
+ options: {
60
+ icon: 'leaf'
61
+ , iconSize: defaults.iconSize.circle
62
+ , iconAnchor: defaults.iconAnchor.circle
63
+ , iconShape: 'circle'
64
+ , iconStyle: ''
65
+ , innerIconAnchor: [0, 3] // circle with fa or glyphicon or marker with text
66
+ , innerIconStyle: ''
67
+ , isAlphaNumericIcon: false
68
+ , text: 1
69
+ , borderColor: defaults.iconColor
70
+ , borderWidth: 2
71
+ , borderStyle: 'solid'
72
+ , backgroundColor: 'white'
73
+ , textColor: defaults.iconColor
74
+ , customClasses: ''
75
+ , spin: false
76
+ , prefix: 'fa'
77
+ , html: ''
78
+ },
79
+
80
+ initialize: function (options) {
81
+
82
+ this.applyDefaults(options);
83
+ this.options = (!options || !options.html) ? L.Util.setOptions(this, options) : options;
84
+ },
85
+
86
+ applyDefaults: function (options) {
87
+
88
+ if (options) {
89
+ if (!options.iconSize && options.iconShape) {
90
+ options.iconSize = defaults.iconSize[options.iconShape];
91
+ }
92
+
93
+ if (!options.iconAnchor && options.iconShape) {
94
+ options.iconAnchor = defaults.iconAnchor[options.iconShape];
95
+ }
96
+
97
+ if (!options.popupAnchor && options.iconShape) {
98
+ options.popupAnchor = defaults.popupAnchor[options.iconShape];
99
+ }
100
+
101
+ if (!options.innerIconAnchor) {
102
+ // if icon is type of circle or marker
103
+ if (options.iconShape === 'circle' || options.iconShape === 'marker') {
104
+ if (options.iconShape === 'circle' && options.isAlphaNumericIcon) { // if circle with text
105
+ options.innerIconAnchor = [0, -1];
106
+ }
107
+ else if (options.iconShape === 'marker' && !options.isAlphaNumericIcon) {// marker with icon
108
+ options.innerIconAnchor = defaults.innerIconAnchor[options.iconShape];
109
+ }
110
+ }
111
+ }
112
+ }
113
+ },
114
+
115
+ createIcon: function () {
116
+
117
+ var iconDiv = document.createElement('div')
118
+ , options = this.options;
119
+
120
+ iconDiv.innerHTML = !options.html ? this.createIconInnerHtml() : options.html;
121
+ this._setIconStyles(iconDiv);
122
+
123
+ // having a marker requires an extra parent div for rotation correction
124
+ if (this.options.iconShape === 'marker') {
125
+ var wrapperDiv = document.createElement('div');
126
+ wrapperDiv.className = 'beautify-marker';
127
+ wrapperDiv.appendChild(iconDiv);
128
+ return wrapperDiv;
129
+ }
130
+
131
+ return iconDiv;
132
+ },
133
+
134
+ createIconInnerHtml: function () {
135
+
136
+ var options = this.options;
137
+
138
+ if (options.iconShape === 'circle-dot' || options.iconShape === 'rectangle-dot' || options.iconShape === 'doughnut') {
139
+ return '';
140
+ }
141
+
142
+ var innerIconStyle = this.getInnerIconStyle(options);
143
+ if (options.isAlphaNumericIcon) {
144
+ return '<div style="' + innerIconStyle + '">' + options.text + '</div>';
145
+ }
146
+
147
+ var spinClass = '';
148
+ if (options.spin) {
149
+ spinClass = ' fa-spin';
150
+ }
151
+
152
+ return '<i class="' + options.prefix + ' ' + options.prefix + '-' + options.icon + spinClass + '" style="' + innerIconStyle + '"></i>';
153
+ },
154
+
155
+ getInnerIconStyle: function (options) {
156
+
157
+ var innerAnchor = L.point(options.innerIconAnchor)
158
+ return 'color:' + options.textColor + ';margin-top:' + innerAnchor.y + 'px; margin-left:' + innerAnchor.x + 'px;' + options.innerIconStyle;
159
+ },
160
+
161
+ _setIconStyles: function (iconDiv) {
162
+
163
+ var options = this.options
164
+ , size = L.point(options.iconSize)
165
+ , anchor = L.point(options.iconAnchor);
166
+
167
+ iconDiv.className = 'beautify-marker ';
168
+
169
+ if (options.iconShape) {
170
+ iconDiv.className += options.iconShape;
171
+ }
172
+
173
+ if (options.customClasses) {
174
+ iconDiv.className += ' ' + options.customClasses;
175
+ }
176
+
177
+ iconDiv.style.backgroundColor = options.backgroundColor;
178
+ iconDiv.style.color = options.textColor;
179
+ iconDiv.style.borderColor = options.borderColor;
180
+ iconDiv.style.borderWidth = options.borderWidth + 'px';
181
+ iconDiv.style.borderStyle = options.borderStyle;
182
+
183
+ if (size) {
184
+ iconDiv.style.width = size.x + 'px';
185
+ iconDiv.style.height = size.y + 'px';
186
+ }
187
+
188
+ if (anchor) {
189
+ iconDiv.style.marginLeft = (-anchor.x) + 'px';
190
+ iconDiv.style.marginTop = (-anchor.y) + 'px';
191
+ }
192
+
193
+ if (options.iconStyle) {
194
+ var cStyle = iconDiv.getAttribute('style');
195
+ cStyle += options.iconStyle;
196
+ iconDiv.setAttribute('style', cStyle);
197
+ }
198
+ }
199
+ })
200
+ };
201
+
202
+ L.BeautifyIcon.icon = function (options) {
203
+ return new L.BeautifyIcon.Icon(options);
204
+ }
205
+
206
+ }(this, document));
@@ -1,8 +1,8 @@
1
- {
2
- "type": "FeatureCollection",
3
- "name": "polyline",
4
- "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
5
- "features": [
6
- { "type": "Feature", "properties": { "id": 1, "Remark": "Just a route" }, "geometry": { "type": "LineString", "coordinates": [ [ -9.048305, 39.755093 ], [ -20.094827002741617, 33.113108009574347 ], [ -25.840755341503833, 20.389980973743732 ], [ -25.019908435966371, 8.077277390681843 ], [ -18.453133191666698, 2.741772504688356 ], [ -12.091569673751387, 0.484443514460338 ], [ -8.192546872448453, 0.894866967229063 ], [ 9.830284, 1.067894 ], [ 9.830284, 1.067894 ], [ -1.215348175380051, -8.750084172836083 ], [ 0.631557362079228, -25.987869189122733 ], [ 8.429602964685095, -32.349432707038034 ], [ 11.712990586834934, -33.375491338959847 ], [ 15.201589935369135, -33.785914791728601 ], [ 19.193278, -34.462599 ], [ 29.976834235043405, -41.994383847103194 ], [ 45.367713713870764, -38.710996224953334 ], [ 51.113642052632976, -35.427608602803502 ], [ 53.165759316476631, -32.965067886191122 ], [ 55.423088306704635, -30.297315443194378 ], [ 60.758593192698122, -28.03998645296636 ], [ 81.787959, 7.523055 ], [ 100.085757, 6.464489 ] ] } }
7
- ]
8
- }
1
+ {
2
+ "type": "FeatureCollection",
3
+ "name": "polyline",
4
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
5
+ "features": [
6
+ { "type": "Feature", "properties": { "id": 1, "Remark": "Just a route" }, "geometry": { "type": "LineString", "coordinates": [ [ -9.048305, 39.755093 ], [ -20.094827002741617, 33.113108009574347 ], [ -25.840755341503833, 20.389980973743732 ], [ -25.019908435966371, 8.077277390681843 ], [ -18.453133191666698, 2.741772504688356 ], [ -12.091569673751387, 0.484443514460338 ], [ -8.192546872448453, 0.894866967229063 ], [ 9.830284, 1.067894 ], [ 9.830284, 1.067894 ], [ -1.215348175380051, -8.750084172836083 ], [ 0.631557362079228, -25.987869189122733 ], [ 8.429602964685095, -32.349432707038034 ], [ 11.712990586834934, -33.375491338959847 ], [ 15.201589935369135, -33.785914791728601 ], [ 19.193278, -34.462599 ], [ 29.976834235043405, -41.994383847103194 ], [ 45.367713713870764, -38.710996224953334 ], [ 51.113642052632976, -35.427608602803502 ], [ 53.165759316476631, -32.965067886191122 ], [ 55.423088306704635, -30.297315443194378 ], [ 60.758593192698122, -28.03998645296636 ], [ 81.787959, 7.523055 ], [ 100.085757, 6.464489 ] ] } }
7
+ ]
8
+ }
@@ -1,362 +1,362 @@
1
- {
2
- "type": "FeatureCollection",
3
- "name": "random",
4
- "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
5
- "features": [
6
- { "type": "Feature", "properties": { "id": 0, "Number": 7513 }, "geometry": { "type": "Point", "coordinates": [ 63.146041539469337, 35.65188908315227 ] } },
7
- { "type": "Feature", "properties": { "id": 1, "Number": 8193 }, "geometry": { "type": "Point", "coordinates": [ 66.625571053867759, 35.907947109134071 ] } },
8
- { "type": "Feature", "properties": { "id": 0, "Number": 9125 }, "geometry": { "type": "Point", "coordinates": [ 14.244847688738808, -8.324462853014204 ] } },
9
- { "type": "Feature", "properties": { "id": 1, "Number": 2769 }, "geometry": { "type": "Point", "coordinates": [ 17.370673513502165, -11.592097283061896 ] } },
10
- { "type": "Feature", "properties": { "id": 0, "Number": 5404 }, "geometry": { "type": "Point", "coordinates": [ 20.715006694190716, 40.869543072192783 ] } },
11
- { "type": "Feature", "properties": { "id": 1, "Number": 2290 }, "geometry": { "type": "Point", "coordinates": [ 20.533276624336125, 40.435210191760582 ] } },
12
- { "type": "Feature", "properties": { "id": 0, "Number": 4427 }, "geometry": { "type": "Point", "coordinates": [ 52.256854282154166, 23.149629554124758 ] } },
13
- { "type": "Feature", "properties": { "id": 1, "Number": 1435 }, "geometry": { "type": "Point", "coordinates": [ 53.188325154046531, 24.049282156555307 ] } },
14
- { "type": "Feature", "properties": { "id": 0, "Number": 2163 }, "geometry": { "type": "Point", "coordinates": [ -62.646166931518067, -39.121036660623744 ] } },
15
- { "type": "Feature", "properties": { "id": 1, "Number": 7852 }, "geometry": { "type": "Point", "coordinates": [ -67.735285893620926, -39.881438091802011 ] } },
16
- { "type": "Feature", "properties": { "id": 0, "Number": 8944 }, "geometry": { "type": "Point", "coordinates": [ 44.668516903350614, 41.160572658672756 ] } },
17
- { "type": "Feature", "properties": { "id": 1, "Number": 4871 }, "geometry": { "type": "Point", "coordinates": [ 44.147531564639188, 40.596678236288206 ] } },
18
- { "type": "Feature", "properties": { "id": 0, "Number": 1781 }, "geometry": { "type": "Point", "coordinates": [ 69.88185409675809, -49.640009337719036 ] } },
19
- { "type": "Feature", "properties": { "id": 1, "Number": 513 }, "geometry": { "type": "Point", "coordinates": [ 70.075707196977618, -49.107624039793457 ] } },
20
- { "type": "Feature", "properties": { "id": 0, "Number": 2279 }, "geometry": { "type": "Point", "coordinates": [ 144.807393251510518, -25.274646935290516 ] } },
21
- { "type": "Feature", "properties": { "id": 1, "Number": 6843 }, "geometry": { "type": "Point", "coordinates": [ 122.258570735142726, -28.960182775800675 ] } },
22
- { "type": "Feature", "properties": { "id": 0, "Number": 8312 }, "geometry": { "type": "Point", "coordinates": [ 12.346720087949796, 47.199015263552646 ] } },
23
- { "type": "Feature", "properties": { "id": 1, "Number": 6333 }, "geometry": { "type": "Point", "coordinates": [ 15.407226491460399, 47.585076271739887 ] } },
24
- { "type": "Feature", "properties": { "id": 0, "Number": 6501 }, "geometry": { "type": "Point", "coordinates": [ 49.138745130032355, 39.370260716309424 ] } },
25
- { "type": "Feature", "properties": { "id": 1, "Number": 2375 }, "geometry": { "type": "Point", "coordinates": [ 45.55236510069637, 41.176802727018206 ] } },
26
- { "type": "Feature", "properties": { "id": 0, "Number": 3359 }, "geometry": { "type": "Point", "coordinates": [ 29.698867202035846, -3.962053702521526 ] } },
27
- { "type": "Feature", "properties": { "id": 1, "Number": 741 }, "geometry": { "type": "Point", "coordinates": [ 30.199962792194174, -3.73919186296129 ] } },
28
- { "type": "Feature", "properties": { "id": 0, "Number": 9715 }, "geometry": { "type": "Point", "coordinates": [ 3.167289078490727, 51.209206106234404 ] } },
29
- { "type": "Feature", "properties": { "id": 1, "Number": 9345 }, "geometry": { "type": "Point", "coordinates": [ 4.176177850886155, 50.300785074215085 ] } },
30
- { "type": "Feature", "properties": { "id": 0, "Number": 181 }, "geometry": { "type": "Point", "coordinates": [ 2.371499645123199, 6.855082195750869 ] } },
31
- { "type": "Feature", "properties": { "id": 1, "Number": 1422 }, "geometry": { "type": "Point", "coordinates": [ 2.399728639242249, 7.297516723577892 ] } },
32
- { "type": "Feature", "properties": { "id": 0, "Number": 1919 }, "geometry": { "type": "Point", "coordinates": [ -0.903978414394377, 13.713268867553897 ] } },
33
- { "type": "Feature", "properties": { "id": 1, "Number": 1301 }, "geometry": { "type": "Point", "coordinates": [ -0.975069153076707, 12.351049315333057 ] } },
34
- { "type": "Feature", "properties": { "id": 0, "Number": 9301 }, "geometry": { "type": "Point", "coordinates": [ 90.238700712148386, 23.573824547564577 ] } },
35
- { "type": "Feature", "properties": { "id": 1, "Number": 8202 }, "geometry": { "type": "Point", "coordinates": [ 91.020951331020299, 24.213608654768919 ] } },
36
- { "type": "Feature", "properties": { "id": 0, "Number": 1205 }, "geometry": { "type": "Point", "coordinates": [ 25.498256532588922, 41.578967776288025 ] } },
37
- { "type": "Feature", "properties": { "id": 1, "Number": 9040 }, "geometry": { "type": "Point", "coordinates": [ 26.105395154828539, 43.609669955322566 ] } },
38
- { "type": "Feature", "properties": { "id": 0, "Number": 4337 }, "geometry": { "type": "Point", "coordinates": [ -77.700813807802717, 24.10108286026577 ] } },
39
- { "type": "Feature", "properties": { "id": 1, "Number": 5433 }, "geometry": { "type": "Point", "coordinates": [ -77.210588144927499, 26.381956623598192 ] } },
40
- { "type": "Feature", "properties": { "id": 0, "Number": 5990 }, "geometry": { "type": "Point", "coordinates": [ 17.343153264971917, 43.84011971410456 ] } },
41
- { "type": "Feature", "properties": { "id": 1, "Number": 3076 }, "geometry": { "type": "Point", "coordinates": [ 17.120535847775447, 44.302270742498052 ] } },
42
- { "type": "Feature", "properties": { "id": 0, "Number": 5687 }, "geometry": { "type": "Point", "coordinates": [ 28.689250263935598, 52.115122566468692 ] } },
43
- { "type": "Feature", "properties": { "id": 1, "Number": 1805 }, "geometry": { "type": "Point", "coordinates": [ 26.776641504449511, 55.503543425889639 ] } },
44
- { "type": "Feature", "properties": { "id": 0, "Number": 9136 }, "geometry": { "type": "Point", "coordinates": [ -89.139972577161799, 17.074283362228741 ] } },
45
- { "type": "Feature", "properties": { "id": 1, "Number": 2610 }, "geometry": { "type": "Point", "coordinates": [ -88.595907302518256, 17.71183332872387 ] } },
46
- { "type": "Feature", "properties": { "id": 0, "Number": 872 }, "geometry": { "type": "Point", "coordinates": [ -64.868598056834543, 32.307171539840581 ] } },
47
- { "type": "Feature", "properties": { "id": 0, "Number": 199 }, "geometry": { "type": "Point", "coordinates": [ -62.485909379013663, -21.117738013769436 ] } },
48
- { "type": "Feature", "properties": { "id": 1, "Number": 9857 }, "geometry": { "type": "Point", "coordinates": [ -62.846609675565205, -20.548549041955116 ] } },
49
- { "type": "Feature", "properties": { "id": 0, "Number": 7839 }, "geometry": { "type": "Point", "coordinates": [ -59.673910377007154, 1.608239876228126 ] } },
50
- { "type": "Feature", "properties": { "id": 1, "Number": 525 }, "geometry": { "type": "Point", "coordinates": [ -40.654610282311026, -12.363758640980755 ] } },
51
- { "type": "Feature", "properties": { "id": 0, "Number": 8734 }, "geometry": { "type": "Point", "coordinates": [ 114.732341963326462, 4.80187723552074 ] } },
52
- { "type": "Feature", "properties": { "id": 1, "Number": 1264 }, "geometry": { "type": "Point", "coordinates": [ 114.963293896313857, 4.382388841919889 ] } },
53
- { "type": "Feature", "properties": { "id": 0, "Number": 2701 }, "geometry": { "type": "Point", "coordinates": [ 89.77714349511551, 27.2288194547797 ] } },
54
- { "type": "Feature", "properties": { "id": 1, "Number": 8011 }, "geometry": { "type": "Point", "coordinates": [ 90.839652253342152, 27.814892672557193 ] } },
55
- { "type": "Feature", "properties": { "id": 0, "Number": 8431 }, "geometry": { "type": "Point", "coordinates": [ 28.047808463289741, -22.690736680190351 ] } },
56
- { "type": "Feature", "properties": { "id": 1, "Number": 6136 }, "geometry": { "type": "Point", "coordinates": [ 25.840356417721953, -19.395559632314374 ] } },
57
- { "type": "Feature", "properties": { "id": 0, "Number": 836 }, "geometry": { "type": "Point", "coordinates": [ 15.709856689558759, 6.809717916333315 ] } },
58
- { "type": "Feature", "properties": { "id": 1, "Number": 9689 }, "geometry": { "type": "Point", "coordinates": [ 19.466182405707901, 6.006202907693435 ] } },
59
- { "type": "Feature", "properties": { "id": 0, "Number": 1703 }, "geometry": { "type": "Point", "coordinates": [ -107.764415733445247, 69.699345029834191 ] } },
60
- { "type": "Feature", "properties": { "id": 1, "Number": 2787 }, "geometry": { "type": "Point", "coordinates": [ -75.545408431224743, 55.836064933147867 ] } },
61
- { "type": "Feature", "properties": { "id": 0, "Number": 5908 }, "geometry": { "type": "Point", "coordinates": [ 9.23683354912934, 47.560893831292411 ] } },
62
- { "type": "Feature", "properties": { "id": 1, "Number": 5557 }, "geometry": { "type": "Point", "coordinates": [ 9.385002075494475, 47.254607799521587 ] } },
63
- { "type": "Feature", "properties": { "id": 0, "Number": 7652 }, "geometry": { "type": "Point", "coordinates": [ -69.659612021035585, -24.737994685288854 ] } },
64
- { "type": "Feature", "properties": { "id": 1, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ -70.56775393993675, -34.033318103477811 ] } },
65
- { "type": "Feature", "properties": { "id": 0, "Number": 2017 }, "geometry": { "type": "Point", "coordinates": [ 124.507860782399973, 44.977289905923087 ] } },
66
- { "type": "Feature", "properties": { "id": 1, "Number": 8142 }, "geometry": { "type": "Point", "coordinates": [ 110.508683917732895, 34.290111705454521 ] } },
67
- { "type": "Feature", "properties": { "id": 0, "Number": 5759 }, "geometry": { "type": "Point", "coordinates": [ -7.37343472898041, 8.919315613683992 ] } },
68
- { "type": "Feature", "properties": { "id": 1, "Number": 8921 }, "geometry": { "type": "Point", "coordinates": [ -7.811320576773527, 8.052020636496225 ] } },
69
- { "type": "Feature", "properties": { "id": 0, "Number": 7478 }, "geometry": { "type": "Point", "coordinates": [ 10.499891946317828, 2.978007554329213 ] } },
70
- { "type": "Feature", "properties": { "id": 1, "Number": 1255 }, "geometry": { "type": "Point", "coordinates": [ 15.320147083524478, 2.887215065632576 ] } },
71
- { "type": "Feature", "properties": { "id": 0, "Number": 1003 }, "geometry": { "type": "Point", "coordinates": [ 24.730150566430307, 3.76147793000542 ] } },
72
- { "type": "Feature", "properties": { "id": 1, "Number": 680 }, "geometry": { "type": "Point", "coordinates": [ 22.53163056954774, 1.908711889730592 ] } },
73
- { "type": "Feature", "properties": { "id": 0, "Number": 2623 }, "geometry": { "type": "Point", "coordinates": [ 16.138122542497836, 0.922303021824288 ] } },
74
- { "type": "Feature", "properties": { "id": 1, "Number": 761 }, "geometry": { "type": "Point", "coordinates": [ 15.805988063714043, 0.289860494818414 ] } },
75
- { "type": "Feature", "properties": { "id": 0, "Number": 823 }, "geometry": { "type": "Point", "coordinates": [ -75.962707413235393, 2.079968123457284 ] } },
76
- { "type": "Feature", "properties": { "id": 1, "Number": 2789 }, "geometry": { "type": "Point", "coordinates": [ -67.804616430777358, 2.178976349026829 ] } },
77
- { "type": "Feature", "properties": { "id": 0, "Number": 7347 }, "geometry": { "type": "Point", "coordinates": [ -84.906909239950636, 10.097475012847044 ] } },
78
- { "type": "Feature", "properties": { "id": 1, "Number": 8766 }, "geometry": { "type": "Point", "coordinates": [ -84.039656184738575, 9.574438449531309 ] } },
79
- { "type": "Feature", "properties": { "id": 0, "Number": 3193 }, "geometry": { "type": "Point", "coordinates": [ -76.458278326804617, 20.927352202859417 ] } },
80
- { "type": "Feature", "properties": { "id": 1, "Number": 8873 }, "geometry": { "type": "Point", "coordinates": [ -75.186545085800944, 20.675247683151344 ] } },
81
- { "type": "Feature", "properties": { "id": 0, "Number": 1362 }, "geometry": { "type": "Point", "coordinates": [ 33.129422743657045, 35.238956825302473 ] } },
82
- { "type": "Feature", "properties": { "id": 1, "Number": 5777 }, "geometry": { "type": "Point", "coordinates": [ 33.784975895396222, 35.141367188181178 ] } },
83
- { "type": "Feature", "properties": { "id": 0, "Number": 6829 }, "geometry": { "type": "Point", "coordinates": [ 33.007586335164447, 34.744689203448978 ] } },
84
- { "type": "Feature", "properties": { "id": 1, "Number": 230 }, "geometry": { "type": "Point", "coordinates": [ 33.241407268415138, 35.023236832857883 ] } },
85
- { "type": "Feature", "properties": { "id": 0, "Number": 1466 }, "geometry": { "type": "Point", "coordinates": [ 13.886993638196389, 50.867556333382268 ] } },
86
- { "type": "Feature", "properties": { "id": 1, "Number": 4521 }, "geometry": { "type": "Point", "coordinates": [ 15.704111334267655, 50.032582663932075 ] } },
87
- { "type": "Feature", "properties": { "id": 0, "Number": 3002 }, "geometry": { "type": "Point", "coordinates": [ 8.924051599319021, 53.075527495149672 ] } },
88
- { "type": "Feature", "properties": { "id": 1, "Number": 7774 }, "geometry": { "type": "Point", "coordinates": [ 6.326798307848037, 49.441262234318572 ] } },
89
- { "type": "Feature", "properties": { "id": 0, "Number": 655 }, "geometry": { "type": "Point", "coordinates": [ 42.519482744215786, 11.757859141020294 ] } },
90
- { "type": "Feature", "properties": { "id": 1, "Number": 4428 }, "geometry": { "type": "Point", "coordinates": [ 41.837475642220674, 11.382568301012869 ] } },
91
- { "type": "Feature", "properties": { "id": 0, "Number": 3196 }, "geometry": { "type": "Point", "coordinates": [ 12.164493629642468, 55.162842565248361 ] } },
92
- { "type": "Feature", "properties": { "id": 1, "Number": 8632 }, "geometry": { "type": "Point", "coordinates": [ 8.437363273425264, 55.448495307614692 ] } },
93
- { "type": "Feature", "properties": { "id": 0, "Number": 3573 }, "geometry": { "type": "Point", "coordinates": [ -71.262336621321907, 19.406174684312557 ] } },
94
- { "type": "Feature", "properties": { "id": 1, "Number": 7564 }, "geometry": { "type": "Point", "coordinates": [ -69.346600810822608, 19.084924412211663 ] } },
95
- { "type": "Feature", "properties": { "id": 0, "Number": 3060 }, "geometry": { "type": "Point", "coordinates": [ 8.716458138083652, 30.154439221379349 ] } },
96
- { "type": "Feature", "properties": { "id": 1, "Number": 8009 }, "geometry": { "type": "Point", "coordinates": [ 2.168472251782795, 33.873348123402778 ] } },
97
- { "type": "Feature", "properties": { "id": 0, "Number": 3660 }, "geometry": { "type": "Point", "coordinates": [ -77.656954035461766, -1.620820854474431 ] } },
98
- { "type": "Feature", "properties": { "id": 1, "Number": 2249 }, "geometry": { "type": "Point", "coordinates": [ -77.952551498075323, -3.097282540885796 ] } },
99
- { "type": "Feature", "properties": { "id": 0, "Number": 7592 }, "geometry": { "type": "Point", "coordinates": [ 31.159768912831851, 30.219041997687874 ] } },
100
- { "type": "Feature", "properties": { "id": 1, "Number": 4445 }, "geometry": { "type": "Point", "coordinates": [ 29.130205825577697, 22.354131876905786 ] } },
101
- { "type": "Feature", "properties": { "id": 0, "Number": 3198 }, "geometry": { "type": "Point", "coordinates": [ 36.490668866099305, 14.966557666246604 ] } },
102
- { "type": "Feature", "properties": { "id": 1, "Number": 1882 }, "geometry": { "type": "Point", "coordinates": [ 38.462251961728384, 16.574377567105028 ] } },
103
- { "type": "Feature", "properties": { "id": 0, "Number": 5815 }, "geometry": { "type": "Point", "coordinates": [ -5.157492083475033, 39.812355686624443 ] } },
104
- { "type": "Feature", "properties": { "id": 1, "Number": 7949 }, "geometry": { "type": "Point", "coordinates": [ -5.606809231335832, 40.702513586131602 ] } },
105
- { "type": "Feature", "properties": { "id": 0, "Number": 3433 }, "geometry": { "type": "Point", "coordinates": [ 26.176473404416328, 57.750464831167847 ] } },
106
- { "type": "Feature", "properties": { "id": 1, "Number": 2695 }, "geometry": { "type": "Point", "coordinates": [ 26.484800846376537, 57.859650342871767 ] } },
107
- { "type": "Feature", "properties": { "id": 0, "Number": 2392 }, "geometry": { "type": "Point", "coordinates": [ 35.795144402700608, 8.726355560164251 ] } },
108
- { "type": "Feature", "properties": { "id": 1, "Number": 7254 }, "geometry": { "type": "Point", "coordinates": [ 40.250088143823092, 9.294517442551918 ] } },
109
- { "type": "Feature", "properties": { "id": 0, "Number": 2660 }, "geometry": { "type": "Point", "coordinates": [ 27.828082598811541, 64.119941528536145 ] } },
110
- { "type": "Feature", "properties": { "id": 1, "Number": 417 }, "geometry": { "type": "Point", "coordinates": [ 28.334199668453884, 63.580431037299071 ] } },
111
- { "type": "Feature", "properties": { "id": 0, "Number": 4714 }, "geometry": { "type": "Point", "coordinates": [ 179.254920340128763, -16.550160433725654 ] } },
112
- { "type": "Feature", "properties": { "id": 0, "Number": 785 }, "geometry": { "type": "Point", "coordinates": [ -58.383562930136314, -51.966574909114712 ] } },
113
- { "type": "Feature", "properties": { "id": 1, "Number": 5128 }, "geometry": { "type": "Point", "coordinates": [ -59.570224866359823, -51.695040374125014 ] } },
114
- { "type": "Feature", "properties": { "id": 0, "Number": 5260 }, "geometry": { "type": "Point", "coordinates": [ 2.738022721565217, 44.259117430025597 ] } },
115
- { "type": "Feature", "properties": { "id": 1, "Number": 5845 }, "geometry": { "type": "Point", "coordinates": [ 3.713381514499718, 45.1356455136481 ] } },
116
- { "type": "Feature", "properties": { "id": 0, "Number": 2868 }, "geometry": { "type": "Point", "coordinates": [ 11.176660943585151, -0.626080963538272 ] } },
117
- { "type": "Feature", "properties": { "id": 1, "Number": 1963 }, "geometry": { "type": "Point", "coordinates": [ 14.297454170999842, -1.284188691228552 ] } },
118
- { "type": "Feature", "properties": { "id": 0, "Number": 2522 }, "geometry": { "type": "Point", "coordinates": [ -3.599708907428481, 53.15027006474098 ] } },
119
- { "type": "Feature", "properties": { "id": 1, "Number": 2891 }, "geometry": { "type": "Point", "coordinates": [ -0.51220300710399, 54.381931208841301 ] } },
120
- { "type": "Feature", "properties": { "id": 0, "Number": 5597 }, "geometry": { "type": "Point", "coordinates": [ 41.757235373152703, 43.121420707977052 ] } },
121
- { "type": "Feature", "properties": { "id": 1, "Number": 8778 }, "geometry": { "type": "Point", "coordinates": [ 44.787594542271059, 41.43575322038398 ] } },
122
- { "type": "Feature", "properties": { "id": 0, "Number": 3072 }, "geometry": { "type": "Point", "coordinates": [ -1.391180197814269, 7.662435728089665 ] } },
123
- { "type": "Feature", "properties": { "id": 1, "Number": 6731 }, "geometry": { "type": "Point", "coordinates": [ -0.677347966224343, 6.646364867748701 ] } },
124
- { "type": "Feature", "properties": { "id": 0, "Number": 8093 }, "geometry": { "type": "Point", "coordinates": [ -10.873432748425113, 10.028479598580862 ] } },
125
- { "type": "Feature", "properties": { "id": 1, "Number": 5387 }, "geometry": { "type": "Point", "coordinates": [ -13.916032858801676, 11.288751192824058 ] } },
126
- { "type": "Feature", "properties": { "id": 0, "Number": 6466 }, "geometry": { "type": "Point", "coordinates": [ -15.699029698524916, 13.41384100154991 ] } },
127
- { "type": "Feature", "properties": { "id": 1, "Number": 7914 }, "geometry": { "type": "Point", "coordinates": [ -15.368699101144141, 13.785388276991005 ] } },
128
- { "type": "Feature", "properties": { "id": 0, "Number": 3013 }, "geometry": { "type": "Point", "coordinates": [ -14.841998848869752, 11.685026412443889 ] } },
129
- { "type": "Feature", "properties": { "id": 1, "Number": 386 }, "geometry": { "type": "Point", "coordinates": [ -14.226984647364116, 11.689598442728331 ] } },
130
- { "type": "Feature", "properties": { "id": 0, "Number": 6192 }, "geometry": { "type": "Point", "coordinates": [ 10.586992019885624, 2.210822161797486 ] } },
131
- { "type": "Feature", "properties": { "id": 1, "Number": 9744 }, "geometry": { "type": "Point", "coordinates": [ 9.932705342254435, 1.271918644157166 ] } },
132
- { "type": "Feature", "properties": { "id": 0, "Number": 6630 }, "geometry": { "type": "Point", "coordinates": [ 21.822756191050622, 39.95306675850707 ] } },
133
- { "type": "Feature", "properties": { "id": 1, "Number": 4621 }, "geometry": { "type": "Point", "coordinates": [ 21.966783206005172, 40.418568859444861 ] } },
134
- { "type": "Feature", "properties": { "id": 0, "Number": 3219 }, "geometry": { "type": "Point", "coordinates": [ -31.415387038737407, 81.190160777240706 ] } },
135
- { "type": "Feature", "properties": { "id": 1, "Number": 170 }, "geometry": { "type": "Point", "coordinates": [ -40.993935411745298, 82.029385791410689 ] } },
136
- { "type": "Feature", "properties": { "id": 0, "Number": 8445 }, "geometry": { "type": "Point", "coordinates": [ -89.735919024353819, 16.787047244213159 ] } },
137
- { "type": "Feature", "properties": { "id": 1, "Number": 9134 }, "geometry": { "type": "Point", "coordinates": [ -89.575968609581381, 14.542066685552154 ] } },
138
- { "type": "Feature", "properties": { "id": 0, "Number": 558 }, "geometry": { "type": "Point", "coordinates": [ -53.777933598977448, 3.836114021564921 ] } },
139
- { "type": "Feature", "properties": { "id": 1, "Number": 9401 }, "geometry": { "type": "Point", "coordinates": [ -52.51845711250094, 4.784217773472477 ] } },
140
- { "type": "Feature", "properties": { "id": 0, "Number": 2151 }, "geometry": { "type": "Point", "coordinates": [ -58.235016274193278, 5.034264795054853 ] } },
141
- { "type": "Feature", "properties": { "id": 1, "Number": 6418 }, "geometry": { "type": "Point", "coordinates": [ -57.961368684174488, 1.99450643195045 ] } },
142
- { "type": "Feature", "properties": { "id": 0, "Number": 4693 }, "geometry": { "type": "Point", "coordinates": [ -86.296103802093768, 15.502274775090752 ] } },
143
- { "type": "Feature", "properties": { "id": 1, "Number": 5955 }, "geometry": { "type": "Point", "coordinates": [ -86.37953718581052, 14.502405674623732 ] } },
144
- { "type": "Feature", "properties": { "id": 0, "Number": 156 }, "geometry": { "type": "Point", "coordinates": [ 17.850723052324565, 45.807433798081462 ] } },
145
- { "type": "Feature", "properties": { "id": 1, "Number": 4747 }, "geometry": { "type": "Point", "coordinates": [ 16.591328819303175, 43.68582732972591 ] } },
146
- { "type": "Feature", "properties": { "id": 0, "Number": 586 }, "geometry": { "type": "Point", "coordinates": [ -72.320150119978294, 19.076099759268175 ] } },
147
- { "type": "Feature", "properties": { "id": 1, "Number": 895 }, "geometry": { "type": "Point", "coordinates": [ -72.754745705789134, 19.280604576550143 ] } },
148
- { "type": "Feature", "properties": { "id": 0, "Number": 475 }, "geometry": { "type": "Point", "coordinates": [ 18.487645742005331, 47.330293013337091 ] } },
149
- { "type": "Feature", "properties": { "id": 1, "Number": 8137 }, "geometry": { "type": "Point", "coordinates": [ 20.57636761294426, 46.240310428854954 ] } },
150
- { "type": "Feature", "properties": { "id": 0, "Number": 4202 }, "geometry": { "type": "Point", "coordinates": [ 124.947028609271371, 1.329103057491681 ] } },
151
- { "type": "Feature", "properties": { "id": 1, "Number": 2691 }, "geometry": { "type": "Point", "coordinates": [ 115.855391498529002, 0.151430108202891 ] } },
152
- { "type": "Feature", "properties": { "id": 0, "Number": 9436 }, "geometry": { "type": "Point", "coordinates": [ 76.427767720424782, 9.428784498459159 ] } },
153
- { "type": "Feature", "properties": { "id": 1, "Number": 2697 }, "geometry": { "type": "Point", "coordinates": [ 86.428768469259779, 26.117994375324546 ] } },
154
- { "type": "Feature", "properties": { "id": 0, "Number": 5153 }, "geometry": { "type": "Point", "coordinates": [ -9.197963547486083, 54.065857476982579 ] } },
155
- { "type": "Feature", "properties": { "id": 1, "Number": 3711 }, "geometry": { "type": "Point", "coordinates": [ -6.480217421915773, 53.353092925074534 ] } },
156
- { "type": "Feature", "properties": { "id": 0, "Number": 1177 }, "geometry": { "type": "Point", "coordinates": [ 47.921794677635425, 34.526306162861182 ] } },
157
- { "type": "Feature", "properties": { "id": 1, "Number": 5441 }, "geometry": { "type": "Point", "coordinates": [ 50.053033989827654, 30.553397885607492 ] } },
158
- { "type": "Feature", "properties": { "id": 0, "Number": 9982 }, "geometry": { "type": "Point", "coordinates": [ 42.92370611071032, 34.80172776793048 ] } },
159
- { "type": "Feature", "properties": { "id": 1, "Number": 4332 }, "geometry": { "type": "Point", "coordinates": [ 42.528053159034378, 36.912934735592536 ] } },
160
- { "type": "Feature", "properties": { "id": 0, "Number": 4191 }, "geometry": { "type": "Point", "coordinates": [ -18.417158506825313, 65.802292194295617 ] } },
161
- { "type": "Feature", "properties": { "id": 1, "Number": 6145 }, "geometry": { "type": "Point", "coordinates": [ -22.314774901023604, 66.327817722151593 ] } },
162
- { "type": "Feature", "properties": { "id": 0, "Number": 2796 }, "geometry": { "type": "Point", "coordinates": [ 34.627443903026347, 31.371049103998878 ] } },
163
- { "type": "Feature", "properties": { "id": 1, "Number": 2273 }, "geometry": { "type": "Point", "coordinates": [ 34.661656258707616, 30.730584821479304 ] } },
164
- { "type": "Feature", "properties": { "id": 0, "Number": 6659 }, "geometry": { "type": "Point", "coordinates": [ 12.181625821670009, 44.455903260014978 ] } },
165
- { "type": "Feature", "properties": { "id": 1, "Number": 8301 }, "geometry": { "type": "Point", "coordinates": [ 7.663107207577118, 44.287178830211978 ] } },
166
- { "type": "Feature", "properties": { "id": 0, "Number": 2690 }, "geometry": { "type": "Point", "coordinates": [ -76.814046470898504, 18.117587772055749 ] } },
167
- { "type": "Feature", "properties": { "id": 1, "Number": 7531 }, "geometry": { "type": "Point", "coordinates": [ -78.062603079290056, 18.073649947945732 ] } },
168
- { "type": "Feature", "properties": { "id": 0, "Number": 1380 }, "geometry": { "type": "Point", "coordinates": [ 35.64281873952595, 31.465723153727321 ] } },
169
- { "type": "Feature", "properties": { "id": 1, "Number": 6259 }, "geometry": { "type": "Point", "coordinates": [ 38.418504926380848, 32.730821074253711 ] } },
170
- { "type": "Feature", "properties": { "id": 0, "Number": 5550 }, "geometry": { "type": "Point", "coordinates": [ 138.044455335925733, 36.299132640534545 ] } },
171
- { "type": "Feature", "properties": { "id": 1, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ 139.594771530620278, 35.463476202010185 ] } },
172
- { "type": "Feature", "properties": { "id": 0, "Number": 4964 }, "geometry": { "type": "Point", "coordinates": [ 66.687569332915828, 52.045121375823044 ] } },
173
- { "type": "Feature", "properties": { "id": 1, "Number": 96 }, "geometry": { "type": "Point", "coordinates": [ 81.266525291453789, 49.629989163042559 ] } },
174
- { "type": "Feature", "properties": { "id": 0, "Number": 5251 }, "geometry": { "type": "Point", "coordinates": [ 34.970769187019826, 1.073554104453572 ] } },
175
- { "type": "Feature", "properties": { "id": 1, "Number": 1520 }, "geometry": { "type": "Point", "coordinates": [ 40.063756959551817, 1.551800129847043 ] } },
176
- { "type": "Feature", "properties": { "id": 0, "Number": 312 }, "geometry": { "type": "Point", "coordinates": [ 72.488567281885281, 41.307564220019138 ] } },
177
- { "type": "Feature", "properties": { "id": 1, "Number": 4414 }, "geometry": { "type": "Point", "coordinates": [ 72.995600878305936, 41.987928278985983 ] } },
178
- { "type": "Feature", "properties": { "id": 0, "Number": 5550 }, "geometry": { "type": "Point", "coordinates": [ 106.850498068469264, 13.683499129548967 ] } },
179
- { "type": "Feature", "properties": { "id": 1, "Number": 6834 }, "geometry": { "type": "Point", "coordinates": [ 104.908011215213548, 12.957769239784216 ] } },
180
- { "type": "Feature", "properties": { "id": 0, "Number": 2309 }, "geometry": { "type": "Point", "coordinates": [ 126.569083689762522, 37.56915119845074 ] } },
181
- { "type": "Feature", "properties": { "id": 1, "Number": 6236 }, "geometry": { "type": "Point", "coordinates": [ 128.241018147318783, 36.147727864384308 ] } },
182
- { "type": "Feature", "properties": { "id": 0, "Number": 509 }, "geometry": { "type": "Point", "coordinates": [ 21.358391096789894, 42.384439775721937 ] } },
183
- { "type": "Feature", "properties": { "id": 1, "Number": 9105 }, "geometry": { "type": "Point", "coordinates": [ 20.8512356746485, 42.23803803408363 ] } },
184
- { "type": "Feature", "properties": { "id": 0, "Number": 2055 }, "geometry": { "type": "Point", "coordinates": [ 47.262426556836388, 29.297082120918194 ] } },
185
- { "type": "Feature", "properties": { "id": 1, "Number": 3718 }, "geometry": { "type": "Point", "coordinates": [ 46.952049574688623, 29.441724130533071 ] } },
186
- { "type": "Feature", "properties": { "id": 0, "Number": 2480 }, "geometry": { "type": "Point", "coordinates": [ 106.755144008136668, 14.930824033204106 ] } },
187
- { "type": "Feature", "properties": { "id": 1, "Number": 9406 }, "geometry": { "type": "Point", "coordinates": [ 102.703838106003374, 18.913524446225182 ] } },
188
- { "type": "Feature", "properties": { "id": 0, "Number": 1231 }, "geometry": { "type": "Point", "coordinates": [ 36.267596130199209, 34.531559236823199 ] } },
189
- { "type": "Feature", "properties": { "id": 1, "Number": 4154 }, "geometry": { "type": "Point", "coordinates": [ 36.494936993896481, 34.232855598175192 ] } },
190
- { "type": "Feature", "properties": { "id": 0, "Number": 522 }, "geometry": { "type": "Point", "coordinates": [ -8.435387177018866, 6.216927770949794 ] } },
191
- { "type": "Feature", "properties": { "id": 1, "Number": 607 }, "geometry": { "type": "Point", "coordinates": [ -8.536130856671562, 5.197120759902772 ] } },
192
- { "type": "Feature", "properties": { "id": 0, "Number": 8922 }, "geometry": { "type": "Point", "coordinates": [ 23.417413130023583, 25.561701478072266 ] } },
193
- { "type": "Feature", "properties": { "id": 1, "Number": 1309 }, "geometry": { "type": "Point", "coordinates": [ 11.555069336590257, 24.155938351492445 ] } },
194
- { "type": "Feature", "properties": { "id": 0, "Number": 2849 }, "geometry": { "type": "Point", "coordinates": [ 81.452206354548949, 7.59476245045565 ] } },
195
- { "type": "Feature", "properties": { "id": 1, "Number": 6137 }, "geometry": { "type": "Point", "coordinates": [ 79.781432614182833, 8.130930013863482 ] } },
196
- { "type": "Feature", "properties": { "id": 0, "Number": 6134 }, "geometry": { "type": "Point", "coordinates": [ 27.222876370660181, -29.752210794266418 ] } },
197
- { "type": "Feature", "properties": { "id": 1, "Number": 131 }, "geometry": { "type": "Point", "coordinates": [ 28.506988615198082, -29.958213236901013 ] } },
198
- { "type": "Feature", "properties": { "id": 0, "Number": 548 }, "geometry": { "type": "Point", "coordinates": [ 23.961032085893802, 55.769964454913321 ] } },
199
- { "type": "Feature", "properties": { "id": 1, "Number": 9092 }, "geometry": { "type": "Point", "coordinates": [ 24.61762208661305, 56.009600114062465 ] } },
200
- { "type": "Feature", "properties": { "id": 0, "Number": 5736 }, "geometry": { "type": "Point", "coordinates": [ 6.028438205863928, 49.967843777173279 ] } },
201
- { "type": "Feature", "properties": { "id": 1, "Number": 5759 }, "geometry": { "type": "Point", "coordinates": [ 6.096848314660864, 49.640477627643428 ] } },
202
- { "type": "Feature", "properties": { "id": 0, "Number": 1752 }, "geometry": { "type": "Point", "coordinates": [ 21.789918601718547, 56.49704445256075 ] } },
203
- { "type": "Feature", "properties": { "id": 1, "Number": 1462 }, "geometry": { "type": "Point", "coordinates": [ 22.504599453403848, 57.439433735380845 ] } },
204
- { "type": "Feature", "properties": { "id": 0, "Number": 6707 }, "geometry": { "type": "Point", "coordinates": [ -5.277512840288219, 30.467439863921982 ] } },
205
- { "type": "Feature", "properties": { "id": 1, "Number": 8887 }, "geometry": { "type": "Point", "coordinates": [ -10.619503597439468, 28.499595042722223 ] } },
206
- { "type": "Feature", "properties": { "id": 0, "Number": 6069 }, "geometry": { "type": "Point", "coordinates": [ 27.943698041219218, 47.301988273202639 ] } },
207
- { "type": "Feature", "properties": { "id": 1, "Number": 528 }, "geometry": { "type": "Point", "coordinates": [ 28.757880706784611, 47.546336039222865 ] } },
208
- { "type": "Feature", "properties": { "id": 0, "Number": 7310 }, "geometry": { "type": "Point", "coordinates": [ 44.38226593930662, -24.952920185674802 ] } },
209
- { "type": "Feature", "properties": { "id": 1, "Number": 2893 }, "geometry": { "type": "Point", "coordinates": [ 47.766853514372968, -17.039706774575489 ] } },
210
- { "type": "Feature", "properties": { "id": 0, "Number": 8031 }, "geometry": { "type": "Point", "coordinates": [ -114.79212410076299, 32.454089443295629 ] } },
211
- { "type": "Feature", "properties": { "id": 1, "Number": 2679 }, "geometry": { "type": "Point", "coordinates": [ -112.190028556999636, 30.159503334342162 ] } },
212
- { "type": "Feature", "properties": { "id": 0, "Number": 4027 }, "geometry": { "type": "Point", "coordinates": [ 22.324451706557497, 42.051892747258307 ] } },
213
- { "type": "Feature", "properties": { "id": 1, "Number": 7529 }, "geometry": { "type": "Point", "coordinates": [ 20.896801361806254, 41.796439940644866 ] } },
214
- { "type": "Feature", "properties": { "id": 0, "Number": 5628 }, "geometry": { "type": "Point", "coordinates": [ -3.987672518818009, 24.083667940353951 ] } },
215
- { "type": "Feature", "properties": { "id": 1, "Number": 632 }, "geometry": { "type": "Point", "coordinates": [ -2.139909532936819, 18.412590840563716 ] } },
216
- { "type": "Feature", "properties": { "id": 0, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ 14.454212259465384, 35.891292377832038 ] } },
217
- { "type": "Feature", "properties": { "id": 0, "Number": 9523 }, "geometry": { "type": "Point", "coordinates": [ 98.609907671851772, 22.246543758637927 ] } },
218
- { "type": "Feature", "properties": { "id": 1, "Number": 3672 }, "geometry": { "type": "Point", "coordinates": [ 98.527764491794585, 16.000478678772922 ] } },
219
- { "type": "Feature", "properties": { "id": 0, "Number": 6159 }, "geometry": { "type": "Point", "coordinates": [ 18.601206566841995, 42.80077581280382 ] } },
220
- { "type": "Feature", "properties": { "id": 1, "Number": 9709 }, "geometry": { "type": "Point", "coordinates": [ 19.427318725032773, 43.337277389943146 ] } },
221
- { "type": "Feature", "properties": { "id": 0, "Number": 2946 }, "geometry": { "type": "Point", "coordinates": [ 90.700840035066079, 47.625505375948478 ] } },
222
- { "type": "Feature", "properties": { "id": 1, "Number": 4841 }, "geometry": { "type": "Point", "coordinates": [ 105.894045876847002, 48.024619132979971 ] } },
223
- { "type": "Feature", "properties": { "id": 0, "Number": 1361 }, "geometry": { "type": "Point", "coordinates": [ 32.074252850765895, -15.328478963019565 ] } },
224
- { "type": "Feature", "properties": { "id": 1, "Number": 3297 }, "geometry": { "type": "Point", "coordinates": [ 31.135445517224774, -15.667004586057764 ] } },
225
- { "type": "Feature", "properties": { "id": 0, "Number": 116 }, "geometry": { "type": "Point", "coordinates": [ -8.978617920397628, 19.189293439417526 ] } },
226
- { "type": "Feature", "properties": { "id": 1, "Number": 4092 }, "geometry": { "type": "Point", "coordinates": [ -6.405364885223396, 20.975033173863011 ] } },
227
- { "type": "Feature", "properties": { "id": 0, "Number": 4043 }, "geometry": { "type": "Point", "coordinates": [ 34.036169582786762, -10.790821953031696 ] } },
228
- { "type": "Feature", "properties": { "id": 1, "Number": 1802 }, "geometry": { "type": "Point", "coordinates": [ 34.433978215680135, -13.183883102308382 ] } },
229
- { "type": "Feature", "properties": { "id": 0, "Number": 9721 }, "geometry": { "type": "Point", "coordinates": [ 115.600187610618576, 3.924636806455275 ] } },
230
- { "type": "Feature", "properties": { "id": 1, "Number": 9129 }, "geometry": { "type": "Point", "coordinates": [ 102.875188934555766, 3.707141212132078 ] } },
231
- { "type": "Feature", "properties": { "id": 0, "Number": 6393 }, "geometry": { "type": "Point", "coordinates": [ 18.795971349195291, -19.113756547844879 ] } },
232
- { "type": "Feature", "properties": { "id": 1, "Number": 3475 }, "geometry": { "type": "Point", "coordinates": [ 16.865248361631576, -20.021791654936202 ] } },
233
- { "type": "Feature", "properties": { "id": 0, "Number": 288 }, "geometry": { "type": "Point", "coordinates": [ 165.335093696675699, -20.961929116626049 ] } },
234
- { "type": "Feature", "properties": { "id": 1, "Number": 9451 }, "geometry": { "type": "Point", "coordinates": [ 166.135101922473922, -22.044589708631179 ] } },
235
- { "type": "Feature", "properties": { "id": 0, "Number": 9703 }, "geometry": { "type": "Point", "coordinates": [ 9.319441725598146, 13.725211879488022 ] } },
236
- { "type": "Feature", "properties": { "id": 1, "Number": 4698 }, "geometry": { "type": "Point", "coordinates": [ 5.486858347677591, 17.607090427516766 ] } },
237
- { "type": "Feature", "properties": { "id": 0, "Number": 483 }, "geometry": { "type": "Point", "coordinates": [ 13.143750850223723, 11.118593521547258 ] } },
238
- { "type": "Feature", "properties": { "id": 1, "Number": 9839 }, "geometry": { "type": "Point", "coordinates": [ 7.411164666317813, 6.999899939360529 ] } },
239
- { "type": "Feature", "properties": { "id": 0, "Number": 7222 }, "geometry": { "type": "Point", "coordinates": [ -84.063150828840364, 13.833969756636055 ] } },
240
- { "type": "Feature", "properties": { "id": 1, "Number": 1344 }, "geometry": { "type": "Point", "coordinates": [ -86.078557388969315, 11.929633302619305 ] } },
241
- { "type": "Feature", "properties": { "id": 0, "Number": 7585 }, "geometry": { "type": "Point", "coordinates": [ 5.914402425595764, 52.163099855769609 ] } },
242
- { "type": "Feature", "properties": { "id": 1, "Number": 2764 }, "geometry": { "type": "Point", "coordinates": [ 6.344215593199195, 53.053640354654313 ] } },
243
- { "type": "Feature", "properties": { "id": 0, "Number": 7092 }, "geometry": { "type": "Point", "coordinates": [ 11.109245514317672, 60.355757742243313 ] } },
244
- { "type": "Feature", "properties": { "id": 1, "Number": 551 }, "geometry": { "type": "Point", "coordinates": [ 17.298196326819877, 78.100632549400103 ] } },
245
- { "type": "Feature", "properties": { "id": 0, "Number": 8506 }, "geometry": { "type": "Point", "coordinates": [ 82.247351293817786, 28.90279598533505 ] } },
246
- { "type": "Feature", "properties": { "id": 1, "Number": 8434 }, "geometry": { "type": "Point", "coordinates": [ 82.52444488927334, 29.555865166500311 ] } },
247
- { "type": "Feature", "properties": { "id": 0, "Number": 4768 }, "geometry": { "type": "Point", "coordinates": [ 174.249201009705985, -35.645807072973021 ] } },
248
- { "type": "Feature", "properties": { "id": 1, "Number": 5139 }, "geometry": { "type": "Point", "coordinates": [ 167.102270415583774, -45.762315720687461 ] } },
249
- { "type": "Feature", "properties": { "id": 0, "Number": 7735 }, "geometry": { "type": "Point", "coordinates": [ 53.521924769536703, 18.516412398250967 ] } },
250
- { "type": "Feature", "properties": { "id": 1, "Number": 1380 }, "geometry": { "type": "Point", "coordinates": [ 52.870717665013252, 18.595036019275735 ] } },
251
- { "type": "Feature", "properties": { "id": 0, "Number": 8925 }, "geometry": { "type": "Point", "coordinates": [ 63.066570341613662, 27.854003259471096 ] } },
252
- { "type": "Feature", "properties": { "id": 1, "Number": 8635 }, "geometry": { "type": "Point", "coordinates": [ 74.435089272206284, 35.80222436211065 ] } },
253
- { "type": "Feature", "properties": { "id": 0, "Number": 5439 }, "geometry": { "type": "Point", "coordinates": [ -80.434335773494936, 7.937713500187415 ] } },
254
- { "type": "Feature", "properties": { "id": 1, "Number": 3274 }, "geometry": { "type": "Point", "coordinates": [ -82.746337142873827, 8.316123736181513 ] } },
255
- { "type": "Feature", "properties": { "id": 0, "Number": 8745 }, "geometry": { "type": "Point", "coordinates": [ -72.296602525188163, -4.373346637829012 ] } },
256
- { "type": "Feature", "properties": { "id": 1, "Number": 6040 }, "geometry": { "type": "Point", "coordinates": [ -77.565160323237166, -3.648893181339735 ] } },
257
- { "type": "Feature", "properties": { "id": 0, "Number": 4336 }, "geometry": { "type": "Point", "coordinates": [ 121.438557543808571, 17.355843045266063 ] } },
258
- { "type": "Feature", "properties": { "id": 1, "Number": 9410 }, "geometry": { "type": "Point", "coordinates": [ 121.024530883943328, 14.705951673631962 ] } },
259
- { "type": "Feature", "properties": { "id": 0, "Number": 855 }, "geometry": { "type": "Point", "coordinates": [ 145.363290452188608, -6.139052341056681 ] } },
260
- { "type": "Feature", "properties": { "id": 1, "Number": 6663 }, "geometry": { "type": "Point", "coordinates": [ 141.504359879215599, -6.030734259505161 ] } },
261
- { "type": "Feature", "properties": { "id": 0, "Number": 3352 }, "geometry": { "type": "Point", "coordinates": [ 22.691811004493353, 53.195283132643205 ] } },
262
- { "type": "Feature", "properties": { "id": 1, "Number": 3799 }, "geometry": { "type": "Point", "coordinates": [ 15.342312984892112, 51.17759611207925 ] } },
263
- { "type": "Feature", "properties": { "id": 0, "Number": 3128 }, "geometry": { "type": "Point", "coordinates": [ -66.421010354095188, 18.262628193144153 ] } },
264
- { "type": "Feature", "properties": { "id": 1, "Number": 9192 }, "geometry": { "type": "Point", "coordinates": [ -65.834308018424025, 18.284563193455828 ] } },
265
- { "type": "Feature", "properties": { "id": 0, "Number": 5206 }, "geometry": { "type": "Point", "coordinates": [ 126.642799353682776, 40.879131064216963 ] } },
266
- { "type": "Feature", "properties": { "id": 1, "Number": 4823 }, "geometry": { "type": "Point", "coordinates": [ 127.753271503986838, 40.525258034872458 ] } },
267
- { "type": "Feature", "properties": { "id": 0, "Number": 2515 }, "geometry": { "type": "Point", "coordinates": [ -8.132561088045932, 36.997476661667918 ] } },
268
- { "type": "Feature", "properties": { "id": 1, "Number": 1349 }, "geometry": { "type": "Point", "coordinates": [ -8.387318371475821, 39.875666843035347 ] } },
269
- { "type": "Feature", "properties": { "id": 0, "Number": 1571 }, "geometry": { "type": "Point", "coordinates": [ -59.531592246490149, -19.83683754821535 ] } },
270
- { "type": "Feature", "properties": { "id": 1, "Number": 2685 }, "geometry": { "type": "Point", "coordinates": [ -58.612183706312564, -23.581512589942477 ] } },
271
- { "type": "Feature", "properties": { "id": 0, "Number": 1759 }, "geometry": { "type": "Point", "coordinates": [ 51.378013690911061, 25.21472467806737 ] } },
272
- { "type": "Feature", "properties": { "id": 1, "Number": 9819 }, "geometry": { "type": "Point", "coordinates": [ 51.264203601777979, 25.629321046866423 ] } },
273
- { "type": "Feature", "properties": { "id": 0, "Number": 8797 }, "geometry": { "type": "Point", "coordinates": [ 25.528062817084987, 44.145706701417069 ] } },
274
- { "type": "Feature", "properties": { "id": 1, "Number": 6615 }, "geometry": { "type": "Point", "coordinates": [ 26.789870301110255, 45.852355415805242 ] } },
275
- { "type": "Feature", "properties": { "id": 0, "Number": 5811 }, "geometry": { "type": "Point", "coordinates": [ 45.710571558752235, 51.377817036453052 ] } },
276
- { "type": "Feature", "properties": { "id": 1, "Number": 140 }, "geometry": { "type": "Point", "coordinates": [ 103.002167752858327, 76.0256352491119 ] } },
277
- { "type": "Feature", "properties": { "id": 0, "Number": 3737 }, "geometry": { "type": "Point", "coordinates": [ 29.325668571523423, -1.822483897392333 ] } },
278
- { "type": "Feature", "properties": { "id": 1, "Number": 6467 }, "geometry": { "type": "Point", "coordinates": [ 29.856511965246572, -2.14375620321588 ] } },
279
- { "type": "Feature", "properties": { "id": 0, "Number": 9649 }, "geometry": { "type": "Point", "coordinates": [ -10.004270492620297, 25.998094161052478 ] } },
280
- { "type": "Feature", "properties": { "id": 1, "Number": 7909 }, "geometry": { "type": "Point", "coordinates": [ -10.258809182488895, 26.473040664666058 ] } },
281
- { "type": "Feature", "properties": { "id": 0, "Number": 4565 }, "geometry": { "type": "Point", "coordinates": [ 39.490344822436157, 26.152486893991245 ] } },
282
- { "type": "Feature", "properties": { "id": 1, "Number": 3354 }, "geometry": { "type": "Point", "coordinates": [ 42.230176638622083, 27.188604434680563 ] } },
283
- { "type": "Feature", "properties": { "id": 0, "Number": 941 }, "geometry": { "type": "Point", "coordinates": [ 28.051442365416403, 19.219760915684759 ] } },
284
- { "type": "Feature", "properties": { "id": 1, "Number": 9148 }, "geometry": { "type": "Point", "coordinates": [ 36.424231912325347, 21.700135320620284 ] } },
285
- { "type": "Feature", "properties": { "id": 0, "Number": 473 }, "geometry": { "type": "Point", "coordinates": [ 32.581928907456266, 4.398963020447265 ] } },
286
- { "type": "Feature", "properties": { "id": 1, "Number": 1807 }, "geometry": { "type": "Point", "coordinates": [ 31.882292868462102, 5.717888201014432 ] } },
287
- { "type": "Feature", "properties": { "id": 0, "Number": 5453 }, "geometry": { "type": "Point", "coordinates": [ -15.011132469680682, 15.227883264093125 ] } },
288
- { "type": "Feature", "properties": { "id": 1, "Number": 1773 }, "geometry": { "type": "Point", "coordinates": [ -13.318415766218672, 15.095292035318103 ] } },
289
- { "type": "Feature", "properties": { "id": 0, "Number": 7389 }, "geometry": { "type": "Point", "coordinates": [ 161.064061726120883, -8.655828148235168 ] } },
290
- { "type": "Feature", "properties": { "id": 1, "Number": 5724 }, "geometry": { "type": "Point", "coordinates": [ 161.549272972899502, -9.647686805051311 ] } },
291
- { "type": "Feature", "properties": { "id": 0, "Number": 75 }, "geometry": { "type": "Point", "coordinates": [ -12.527558136316378, 7.454341218130589 ] } },
292
- { "type": "Feature", "properties": { "id": 1, "Number": 211 }, "geometry": { "type": "Point", "coordinates": [ -11.496692161829674, 7.544533992827796 ] } },
293
- { "type": "Feature", "properties": { "id": 0, "Number": 5094 }, "geometry": { "type": "Point", "coordinates": [ -89.77982853394461, 13.886100922733565 ] } },
294
- { "type": "Feature", "properties": { "id": 1, "Number": 3062 }, "geometry": { "type": "Point", "coordinates": [ -88.957984655593819, 13.815724227290218 ] } },
295
- { "type": "Feature", "properties": { "id": 0, "Number": 1729 }, "geometry": { "type": "Point", "coordinates": [ 43.459600504661353, 10.675738430784799 ] } },
296
- { "type": "Feature", "properties": { "id": 1, "Number": 3380 }, "geometry": { "type": "Point", "coordinates": [ 43.727583836026909, 10.319430765299924 ] } },
297
- { "type": "Feature", "properties": { "id": 0, "Number": 589 }, "geometry": { "type": "Point", "coordinates": [ 44.370181345507945, 1.735762297787968 ] } },
298
- { "type": "Feature", "properties": { "id": 1, "Number": 6080 }, "geometry": { "type": "Point", "coordinates": [ 49.368331694204265, 7.260175769916521 ] } },
299
- { "type": "Feature", "properties": { "id": 0, "Number": 6026 }, "geometry": { "type": "Point", "coordinates": [ 21.230349409599604, 43.292681205635439 ] } },
300
- { "type": "Feature", "properties": { "id": 1, "Number": 2459 }, "geometry": { "type": "Point", "coordinates": [ 19.73977556163355, 44.258926763739808 ] } },
301
- { "type": "Feature", "properties": { "id": 0, "Number": 5865 }, "geometry": { "type": "Point", "coordinates": [ -55.951131913668547, 3.926173483614912 ] } },
302
- { "type": "Feature", "properties": { "id": 1, "Number": 5128 }, "geometry": { "type": "Point", "coordinates": [ -57.907561703652036, 3.899850613154914 ] } },
303
- { "type": "Feature", "properties": { "id": 0, "Number": 2139 }, "geometry": { "type": "Point", "coordinates": [ 21.26747525529802, 48.905393485394328 ] } },
304
- { "type": "Feature", "properties": { "id": 1, "Number": 1508 }, "geometry": { "type": "Point", "coordinates": [ 20.473367087418694, 49.337055572949637 ] } },
305
- { "type": "Feature", "properties": { "id": 0, "Number": 4267 }, "geometry": { "type": "Point", "coordinates": [ 14.03399897362319, 46.387450284364711 ] } },
306
- { "type": "Feature", "properties": { "id": 1, "Number": 584 }, "geometry": { "type": "Point", "coordinates": [ 14.61700620651458, 46.391645681188777 ] } },
307
- { "type": "Feature", "properties": { "id": 0, "Number": 1404 }, "geometry": { "type": "Point", "coordinates": [ 17.564178831312677, 59.609586668572966 ] } },
308
- { "type": "Feature", "properties": { "id": 1, "Number": 9112 }, "geometry": { "type": "Point", "coordinates": [ 12.499483543643723, 62.946145609581748 ] } },
309
- { "type": "Feature", "properties": { "id": 0, "Number": 4072 }, "geometry": { "type": "Point", "coordinates": [ 30.764274010774493, -26.637980054333511 ] } },
310
- { "type": "Feature", "properties": { "id": 1, "Number": 3513 }, "geometry": { "type": "Point", "coordinates": [ 31.827684482193018, -26.962148375565139 ] } },
311
- { "type": "Feature", "properties": { "id": 0, "Number": 9688 }, "geometry": { "type": "Point", "coordinates": [ 40.433940726029704, 36.051801203353179 ] } },
312
- { "type": "Feature", "properties": { "id": 1, "Number": 3970 }, "geometry": { "type": "Point", "coordinates": [ 38.401311123788858, 34.017457534997533 ] } },
313
- { "type": "Feature", "properties": { "id": 0, "Number": 793 }, "geometry": { "type": "Point", "coordinates": [ 17.619885697276903, 19.224474080193378 ] } },
314
- { "type": "Feature", "properties": { "id": 1, "Number": 8415 }, "geometry": { "type": "Point", "coordinates": [ 15.951939799096733, 19.835300202389622 ] } },
315
- { "type": "Feature", "properties": { "id": 0, "Number": 968 }, "geometry": { "type": "Point", "coordinates": [ 1.630271726148552, 7.747724303399842 ] } },
316
- { "type": "Feature", "properties": { "id": 1, "Number": 4668 }, "geometry": { "type": "Point", "coordinates": [ 1.354338949235818, 6.546731480215874 ] } },
317
- { "type": "Feature", "properties": { "id": 0, "Number": 4827 }, "geometry": { "type": "Point", "coordinates": [ 98.929468378897141, 16.874109408670009 ] } },
318
- { "type": "Feature", "properties": { "id": 1, "Number": 2728 }, "geometry": { "type": "Point", "coordinates": [ 100.235541222191472, 7.134402654454476 ] } },
319
- { "type": "Feature", "properties": { "id": 0, "Number": 7394 }, "geometry": { "type": "Point", "coordinates": [ 69.656743636554026, 38.107773808451064 ] } },
320
- { "type": "Feature", "properties": { "id": 1, "Number": 7750 }, "geometry": { "type": "Point", "coordinates": [ 68.636545488937998, 39.420616483496929 ] } },
321
- { "type": "Feature", "properties": { "id": 0, "Number": 8418 }, "geometry": { "type": "Point", "coordinates": [ 60.080332892182327, 40.464914368264658 ] } },
322
- { "type": "Feature", "properties": { "id": 1, "Number": 7919 }, "geometry": { "type": "Point", "coordinates": [ 54.815757065967766, 39.70904587928338 ] } },
323
- { "type": "Feature", "properties": { "id": 0, "Number": 3337 }, "geometry": { "type": "Point", "coordinates": [ 125.316968105650602, -8.900789069749393 ] } },
324
- { "type": "Feature", "properties": { "id": 1, "Number": 3927 }, "geometry": { "type": "Point", "coordinates": [ 125.669501833108683, -8.617265299228171 ] } },
325
- { "type": "Feature", "properties": { "id": 0, "Number": 1418 }, "geometry": { "type": "Point", "coordinates": [ -60.956189477710652, 10.220034222141793 ] } },
326
- { "type": "Feature", "properties": { "id": 1, "Number": 7149 }, "geometry": { "type": "Point", "coordinates": [ -61.585556421813976, 10.779863741521089 ] } },
327
- { "type": "Feature", "properties": { "id": 0, "Number": 9698 }, "geometry": { "type": "Point", "coordinates": [ 9.675978237322742, 36.49047438577648 ] } },
328
- { "type": "Feature", "properties": { "id": 1, "Number": 2079 }, "geometry": { "type": "Point", "coordinates": [ 11.270901563107017, 32.668746910523645 ] } },
329
- { "type": "Feature", "properties": { "id": 0, "Number": 7918 }, "geometry": { "type": "Point", "coordinates": [ 40.30447514349698, 38.021637646292334 ] } },
330
- { "type": "Feature", "properties": { "id": 1, "Number": 2606 }, "geometry": { "type": "Point", "coordinates": [ 30.742632923481413, 40.776392313384477 ] } },
331
- { "type": "Feature", "properties": { "id": 0, "Number": 5901 }, "geometry": { "type": "Point", "coordinates": [ 120.540390662881578, 23.711039726318987 ] } },
332
- { "type": "Feature", "properties": { "id": 1, "Number": 223 }, "geometry": { "type": "Point", "coordinates": [ 120.570681142570322, 22.514394422745056 ] } },
333
- { "type": "Feature", "properties": { "id": 0, "Number": 538 }, "geometry": { "type": "Point", "coordinates": [ 32.116315468127404, -6.961704738683106 ] } },
334
- { "type": "Feature", "properties": { "id": 1, "Number": 6546 }, "geometry": { "type": "Point", "coordinates": [ 32.707375518426062, -2.4908141729062 ] } },
335
- { "type": "Feature", "properties": { "id": 0, "Number": 1073 }, "geometry": { "type": "Point", "coordinates": [ 32.453671082685482, 1.166648047145086 ] } },
336
- { "type": "Feature", "properties": { "id": 1, "Number": 6467 }, "geometry": { "type": "Point", "coordinates": [ 31.569981741016321, 2.203799894070126 ] } },
337
- { "type": "Feature", "properties": { "id": 0, "Number": 373 }, "geometry": { "type": "Point", "coordinates": [ 33.890077905763, 45.897610068696999 ] } },
338
- { "type": "Feature", "properties": { "id": 1, "Number": 2379 }, "geometry": { "type": "Point", "coordinates": [ 33.590309559151009, 49.049443184783129 ] } },
339
- { "type": "Feature", "properties": { "id": 0, "Number": 3319 }, "geometry": { "type": "Point", "coordinates": [ -57.37635696411413, -33.317630943088588 ] } },
340
- { "type": "Feature", "properties": { "id": 1, "Number": 1489 }, "geometry": { "type": "Point", "coordinates": [ -57.496980396202986, -31.912786555565308 ] } },
341
- { "type": "Feature", "properties": { "id": 0, "Number": 7286 }, "geometry": { "type": "Point", "coordinates": [ -152.796239703883231, 64.684491036116711 ] } },
342
- { "type": "Feature", "properties": { "id": 1, "Number": 2076 }, "geometry": { "type": "Point", "coordinates": [ -123.469256515164162, 47.183564573497222 ] } },
343
- { "type": "Feature", "properties": { "id": 0, "Number": 950 }, "geometry": { "type": "Point", "coordinates": [ 65.20900441147154, 38.429395428099596 ] } },
344
- { "type": "Feature", "properties": { "id": 1, "Number": 2865 }, "geometry": { "type": "Point", "coordinates": [ 60.23319036835116, 44.033304145504438 ] } },
345
- { "type": "Feature", "properties": { "id": 0, "Number": 5833 }, "geometry": { "type": "Point", "coordinates": [ -66.328709015795113, 3.570770467155827 ] } },
346
- { "type": "Feature", "properties": { "id": 1, "Number": 9373 }, "geometry": { "type": "Point", "coordinates": [ -62.816304449702457, 6.483116166631244 ] } },
347
- { "type": "Feature", "properties": { "id": 0, "Number": 1879 }, "geometry": { "type": "Point", "coordinates": [ 108.603585623789854, 14.097389988524393 ] } },
348
- { "type": "Feature", "properties": { "id": 1, "Number": 4867 }, "geometry": { "type": "Point", "coordinates": [ 105.976244154272763, 10.748436492025007 ] } },
349
- { "type": "Feature", "properties": { "id": 0, "Number": 1801 }, "geometry": { "type": "Point", "coordinates": [ 166.682076837219256, -15.140060911171533 ] } },
350
- { "type": "Feature", "properties": { "id": 1, "Number": 1202 }, "geometry": { "type": "Point", "coordinates": [ 166.773414020778745, -14.723618808589091 ] } },
351
- { "type": "Feature", "properties": { "id": 0, "Number": 9815 }, "geometry": { "type": "Point", "coordinates": [ 35.179884077555194, 32.200204437554333 ] } },
352
- { "type": "Feature", "properties": { "id": 1, "Number": 8329 }, "geometry": { "type": "Point", "coordinates": [ 35.265948383843458, 31.707077654857475 ] } },
353
- { "type": "Feature", "properties": { "id": 0, "Number": 5253 }, "geometry": { "type": "Point", "coordinates": [ 49.557078338336424, 18.076916374119925 ] } },
354
- { "type": "Feature", "properties": { "id": 1, "Number": 7880 }, "geometry": { "type": "Point", "coordinates": [ 51.4585789322389, 15.438441754980825 ] } },
355
- { "type": "Feature", "properties": { "id": 0, "Number": 7999 }, "geometry": { "type": "Point", "coordinates": [ 28.109679002815632, -31.997611799952708 ] } },
356
- { "type": "Feature", "properties": { "id": 1, "Number": 5788 }, "geometry": { "type": "Point", "coordinates": [ 30.643259814392252, -28.353194678591919 ] } },
357
- { "type": "Feature", "properties": { "id": 0, "Number": 2611 }, "geometry": { "type": "Point", "coordinates": [ 26.448624242691363, -14.336165173504838 ] } },
358
- { "type": "Feature", "properties": { "id": 1, "Number": 3845 }, "geometry": { "type": "Point", "coordinates": [ 30.179527534731506, -10.025814908739907 ] } },
359
- { "type": "Feature", "properties": { "id": 0, "Number": 9251 }, "geometry": { "type": "Point", "coordinates": [ 31.281360737794575, -19.873214944731401 ] } },
360
- { "type": "Feature", "properties": { "id": 1, "Number": 5420 }, "geometry": { "type": "Point", "coordinates": [ 30.829724603375741, -19.340316863359384 ] } }
361
- ]
362
- }
1
+ {
2
+ "type": "FeatureCollection",
3
+ "name": "random",
4
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
5
+ "features": [
6
+ { "type": "Feature", "properties": { "id": 0, "Number": 7513 }, "geometry": { "type": "Point", "coordinates": [ 63.146041539469337, 35.65188908315227 ] } },
7
+ { "type": "Feature", "properties": { "id": 1, "Number": 8193 }, "geometry": { "type": "Point", "coordinates": [ 66.625571053867759, 35.907947109134071 ] } },
8
+ { "type": "Feature", "properties": { "id": 0, "Number": 9125 }, "geometry": { "type": "Point", "coordinates": [ 14.244847688738808, -8.324462853014204 ] } },
9
+ { "type": "Feature", "properties": { "id": 1, "Number": 2769 }, "geometry": { "type": "Point", "coordinates": [ 17.370673513502165, -11.592097283061896 ] } },
10
+ { "type": "Feature", "properties": { "id": 0, "Number": 5404 }, "geometry": { "type": "Point", "coordinates": [ 20.715006694190716, 40.869543072192783 ] } },
11
+ { "type": "Feature", "properties": { "id": 1, "Number": 2290 }, "geometry": { "type": "Point", "coordinates": [ 20.533276624336125, 40.435210191760582 ] } },
12
+ { "type": "Feature", "properties": { "id": 0, "Number": 4427 }, "geometry": { "type": "Point", "coordinates": [ 52.256854282154166, 23.149629554124758 ] } },
13
+ { "type": "Feature", "properties": { "id": 1, "Number": 1435 }, "geometry": { "type": "Point", "coordinates": [ 53.188325154046531, 24.049282156555307 ] } },
14
+ { "type": "Feature", "properties": { "id": 0, "Number": 2163 }, "geometry": { "type": "Point", "coordinates": [ -62.646166931518067, -39.121036660623744 ] } },
15
+ { "type": "Feature", "properties": { "id": 1, "Number": 7852 }, "geometry": { "type": "Point", "coordinates": [ -67.735285893620926, -39.881438091802011 ] } },
16
+ { "type": "Feature", "properties": { "id": 0, "Number": 8944 }, "geometry": { "type": "Point", "coordinates": [ 44.668516903350614, 41.160572658672756 ] } },
17
+ { "type": "Feature", "properties": { "id": 1, "Number": 4871 }, "geometry": { "type": "Point", "coordinates": [ 44.147531564639188, 40.596678236288206 ] } },
18
+ { "type": "Feature", "properties": { "id": 0, "Number": 1781 }, "geometry": { "type": "Point", "coordinates": [ 69.88185409675809, -49.640009337719036 ] } },
19
+ { "type": "Feature", "properties": { "id": 1, "Number": 513 }, "geometry": { "type": "Point", "coordinates": [ 70.075707196977618, -49.107624039793457 ] } },
20
+ { "type": "Feature", "properties": { "id": 0, "Number": 2279 }, "geometry": { "type": "Point", "coordinates": [ 144.807393251510518, -25.274646935290516 ] } },
21
+ { "type": "Feature", "properties": { "id": 1, "Number": 6843 }, "geometry": { "type": "Point", "coordinates": [ 122.258570735142726, -28.960182775800675 ] } },
22
+ { "type": "Feature", "properties": { "id": 0, "Number": 8312 }, "geometry": { "type": "Point", "coordinates": [ 12.346720087949796, 47.199015263552646 ] } },
23
+ { "type": "Feature", "properties": { "id": 1, "Number": 6333 }, "geometry": { "type": "Point", "coordinates": [ 15.407226491460399, 47.585076271739887 ] } },
24
+ { "type": "Feature", "properties": { "id": 0, "Number": 6501 }, "geometry": { "type": "Point", "coordinates": [ 49.138745130032355, 39.370260716309424 ] } },
25
+ { "type": "Feature", "properties": { "id": 1, "Number": 2375 }, "geometry": { "type": "Point", "coordinates": [ 45.55236510069637, 41.176802727018206 ] } },
26
+ { "type": "Feature", "properties": { "id": 0, "Number": 3359 }, "geometry": { "type": "Point", "coordinates": [ 29.698867202035846, -3.962053702521526 ] } },
27
+ { "type": "Feature", "properties": { "id": 1, "Number": 741 }, "geometry": { "type": "Point", "coordinates": [ 30.199962792194174, -3.73919186296129 ] } },
28
+ { "type": "Feature", "properties": { "id": 0, "Number": 9715 }, "geometry": { "type": "Point", "coordinates": [ 3.167289078490727, 51.209206106234404 ] } },
29
+ { "type": "Feature", "properties": { "id": 1, "Number": 9345 }, "geometry": { "type": "Point", "coordinates": [ 4.176177850886155, 50.300785074215085 ] } },
30
+ { "type": "Feature", "properties": { "id": 0, "Number": 181 }, "geometry": { "type": "Point", "coordinates": [ 2.371499645123199, 6.855082195750869 ] } },
31
+ { "type": "Feature", "properties": { "id": 1, "Number": 1422 }, "geometry": { "type": "Point", "coordinates": [ 2.399728639242249, 7.297516723577892 ] } },
32
+ { "type": "Feature", "properties": { "id": 0, "Number": 1919 }, "geometry": { "type": "Point", "coordinates": [ -0.903978414394377, 13.713268867553897 ] } },
33
+ { "type": "Feature", "properties": { "id": 1, "Number": 1301 }, "geometry": { "type": "Point", "coordinates": [ -0.975069153076707, 12.351049315333057 ] } },
34
+ { "type": "Feature", "properties": { "id": 0, "Number": 9301 }, "geometry": { "type": "Point", "coordinates": [ 90.238700712148386, 23.573824547564577 ] } },
35
+ { "type": "Feature", "properties": { "id": 1, "Number": 8202 }, "geometry": { "type": "Point", "coordinates": [ 91.020951331020299, 24.213608654768919 ] } },
36
+ { "type": "Feature", "properties": { "id": 0, "Number": 1205 }, "geometry": { "type": "Point", "coordinates": [ 25.498256532588922, 41.578967776288025 ] } },
37
+ { "type": "Feature", "properties": { "id": 1, "Number": 9040 }, "geometry": { "type": "Point", "coordinates": [ 26.105395154828539, 43.609669955322566 ] } },
38
+ { "type": "Feature", "properties": { "id": 0, "Number": 4337 }, "geometry": { "type": "Point", "coordinates": [ -77.700813807802717, 24.10108286026577 ] } },
39
+ { "type": "Feature", "properties": { "id": 1, "Number": 5433 }, "geometry": { "type": "Point", "coordinates": [ -77.210588144927499, 26.381956623598192 ] } },
40
+ { "type": "Feature", "properties": { "id": 0, "Number": 5990 }, "geometry": { "type": "Point", "coordinates": [ 17.343153264971917, 43.84011971410456 ] } },
41
+ { "type": "Feature", "properties": { "id": 1, "Number": 3076 }, "geometry": { "type": "Point", "coordinates": [ 17.120535847775447, 44.302270742498052 ] } },
42
+ { "type": "Feature", "properties": { "id": 0, "Number": 5687 }, "geometry": { "type": "Point", "coordinates": [ 28.689250263935598, 52.115122566468692 ] } },
43
+ { "type": "Feature", "properties": { "id": 1, "Number": 1805 }, "geometry": { "type": "Point", "coordinates": [ 26.776641504449511, 55.503543425889639 ] } },
44
+ { "type": "Feature", "properties": { "id": 0, "Number": 9136 }, "geometry": { "type": "Point", "coordinates": [ -89.139972577161799, 17.074283362228741 ] } },
45
+ { "type": "Feature", "properties": { "id": 1, "Number": 2610 }, "geometry": { "type": "Point", "coordinates": [ -88.595907302518256, 17.71183332872387 ] } },
46
+ { "type": "Feature", "properties": { "id": 0, "Number": 872 }, "geometry": { "type": "Point", "coordinates": [ -64.868598056834543, 32.307171539840581 ] } },
47
+ { "type": "Feature", "properties": { "id": 0, "Number": 199 }, "geometry": { "type": "Point", "coordinates": [ -62.485909379013663, -21.117738013769436 ] } },
48
+ { "type": "Feature", "properties": { "id": 1, "Number": 9857 }, "geometry": { "type": "Point", "coordinates": [ -62.846609675565205, -20.548549041955116 ] } },
49
+ { "type": "Feature", "properties": { "id": 0, "Number": 7839 }, "geometry": { "type": "Point", "coordinates": [ -59.673910377007154, 1.608239876228126 ] } },
50
+ { "type": "Feature", "properties": { "id": 1, "Number": 525 }, "geometry": { "type": "Point", "coordinates": [ -40.654610282311026, -12.363758640980755 ] } },
51
+ { "type": "Feature", "properties": { "id": 0, "Number": 8734 }, "geometry": { "type": "Point", "coordinates": [ 114.732341963326462, 4.80187723552074 ] } },
52
+ { "type": "Feature", "properties": { "id": 1, "Number": 1264 }, "geometry": { "type": "Point", "coordinates": [ 114.963293896313857, 4.382388841919889 ] } },
53
+ { "type": "Feature", "properties": { "id": 0, "Number": 2701 }, "geometry": { "type": "Point", "coordinates": [ 89.77714349511551, 27.2288194547797 ] } },
54
+ { "type": "Feature", "properties": { "id": 1, "Number": 8011 }, "geometry": { "type": "Point", "coordinates": [ 90.839652253342152, 27.814892672557193 ] } },
55
+ { "type": "Feature", "properties": { "id": 0, "Number": 8431 }, "geometry": { "type": "Point", "coordinates": [ 28.047808463289741, -22.690736680190351 ] } },
56
+ { "type": "Feature", "properties": { "id": 1, "Number": 6136 }, "geometry": { "type": "Point", "coordinates": [ 25.840356417721953, -19.395559632314374 ] } },
57
+ { "type": "Feature", "properties": { "id": 0, "Number": 836 }, "geometry": { "type": "Point", "coordinates": [ 15.709856689558759, 6.809717916333315 ] } },
58
+ { "type": "Feature", "properties": { "id": 1, "Number": 9689 }, "geometry": { "type": "Point", "coordinates": [ 19.466182405707901, 6.006202907693435 ] } },
59
+ { "type": "Feature", "properties": { "id": 0, "Number": 1703 }, "geometry": { "type": "Point", "coordinates": [ -107.764415733445247, 69.699345029834191 ] } },
60
+ { "type": "Feature", "properties": { "id": 1, "Number": 2787 }, "geometry": { "type": "Point", "coordinates": [ -75.545408431224743, 55.836064933147867 ] } },
61
+ { "type": "Feature", "properties": { "id": 0, "Number": 5908 }, "geometry": { "type": "Point", "coordinates": [ 9.23683354912934, 47.560893831292411 ] } },
62
+ { "type": "Feature", "properties": { "id": 1, "Number": 5557 }, "geometry": { "type": "Point", "coordinates": [ 9.385002075494475, 47.254607799521587 ] } },
63
+ { "type": "Feature", "properties": { "id": 0, "Number": 7652 }, "geometry": { "type": "Point", "coordinates": [ -69.659612021035585, -24.737994685288854 ] } },
64
+ { "type": "Feature", "properties": { "id": 1, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ -70.56775393993675, -34.033318103477811 ] } },
65
+ { "type": "Feature", "properties": { "id": 0, "Number": 2017 }, "geometry": { "type": "Point", "coordinates": [ 124.507860782399973, 44.977289905923087 ] } },
66
+ { "type": "Feature", "properties": { "id": 1, "Number": 8142 }, "geometry": { "type": "Point", "coordinates": [ 110.508683917732895, 34.290111705454521 ] } },
67
+ { "type": "Feature", "properties": { "id": 0, "Number": 5759 }, "geometry": { "type": "Point", "coordinates": [ -7.37343472898041, 8.919315613683992 ] } },
68
+ { "type": "Feature", "properties": { "id": 1, "Number": 8921 }, "geometry": { "type": "Point", "coordinates": [ -7.811320576773527, 8.052020636496225 ] } },
69
+ { "type": "Feature", "properties": { "id": 0, "Number": 7478 }, "geometry": { "type": "Point", "coordinates": [ 10.499891946317828, 2.978007554329213 ] } },
70
+ { "type": "Feature", "properties": { "id": 1, "Number": 1255 }, "geometry": { "type": "Point", "coordinates": [ 15.320147083524478, 2.887215065632576 ] } },
71
+ { "type": "Feature", "properties": { "id": 0, "Number": 1003 }, "geometry": { "type": "Point", "coordinates": [ 24.730150566430307, 3.76147793000542 ] } },
72
+ { "type": "Feature", "properties": { "id": 1, "Number": 680 }, "geometry": { "type": "Point", "coordinates": [ 22.53163056954774, 1.908711889730592 ] } },
73
+ { "type": "Feature", "properties": { "id": 0, "Number": 2623 }, "geometry": { "type": "Point", "coordinates": [ 16.138122542497836, 0.922303021824288 ] } },
74
+ { "type": "Feature", "properties": { "id": 1, "Number": 761 }, "geometry": { "type": "Point", "coordinates": [ 15.805988063714043, 0.289860494818414 ] } },
75
+ { "type": "Feature", "properties": { "id": 0, "Number": 823 }, "geometry": { "type": "Point", "coordinates": [ -75.962707413235393, 2.079968123457284 ] } },
76
+ { "type": "Feature", "properties": { "id": 1, "Number": 2789 }, "geometry": { "type": "Point", "coordinates": [ -67.804616430777358, 2.178976349026829 ] } },
77
+ { "type": "Feature", "properties": { "id": 0, "Number": 7347 }, "geometry": { "type": "Point", "coordinates": [ -84.906909239950636, 10.097475012847044 ] } },
78
+ { "type": "Feature", "properties": { "id": 1, "Number": 8766 }, "geometry": { "type": "Point", "coordinates": [ -84.039656184738575, 9.574438449531309 ] } },
79
+ { "type": "Feature", "properties": { "id": 0, "Number": 3193 }, "geometry": { "type": "Point", "coordinates": [ -76.458278326804617, 20.927352202859417 ] } },
80
+ { "type": "Feature", "properties": { "id": 1, "Number": 8873 }, "geometry": { "type": "Point", "coordinates": [ -75.186545085800944, 20.675247683151344 ] } },
81
+ { "type": "Feature", "properties": { "id": 0, "Number": 1362 }, "geometry": { "type": "Point", "coordinates": [ 33.129422743657045, 35.238956825302473 ] } },
82
+ { "type": "Feature", "properties": { "id": 1, "Number": 5777 }, "geometry": { "type": "Point", "coordinates": [ 33.784975895396222, 35.141367188181178 ] } },
83
+ { "type": "Feature", "properties": { "id": 0, "Number": 6829 }, "geometry": { "type": "Point", "coordinates": [ 33.007586335164447, 34.744689203448978 ] } },
84
+ { "type": "Feature", "properties": { "id": 1, "Number": 230 }, "geometry": { "type": "Point", "coordinates": [ 33.241407268415138, 35.023236832857883 ] } },
85
+ { "type": "Feature", "properties": { "id": 0, "Number": 1466 }, "geometry": { "type": "Point", "coordinates": [ 13.886993638196389, 50.867556333382268 ] } },
86
+ { "type": "Feature", "properties": { "id": 1, "Number": 4521 }, "geometry": { "type": "Point", "coordinates": [ 15.704111334267655, 50.032582663932075 ] } },
87
+ { "type": "Feature", "properties": { "id": 0, "Number": 3002 }, "geometry": { "type": "Point", "coordinates": [ 8.924051599319021, 53.075527495149672 ] } },
88
+ { "type": "Feature", "properties": { "id": 1, "Number": 7774 }, "geometry": { "type": "Point", "coordinates": [ 6.326798307848037, 49.441262234318572 ] } },
89
+ { "type": "Feature", "properties": { "id": 0, "Number": 655 }, "geometry": { "type": "Point", "coordinates": [ 42.519482744215786, 11.757859141020294 ] } },
90
+ { "type": "Feature", "properties": { "id": 1, "Number": 4428 }, "geometry": { "type": "Point", "coordinates": [ 41.837475642220674, 11.382568301012869 ] } },
91
+ { "type": "Feature", "properties": { "id": 0, "Number": 3196 }, "geometry": { "type": "Point", "coordinates": [ 12.164493629642468, 55.162842565248361 ] } },
92
+ { "type": "Feature", "properties": { "id": 1, "Number": 8632 }, "geometry": { "type": "Point", "coordinates": [ 8.437363273425264, 55.448495307614692 ] } },
93
+ { "type": "Feature", "properties": { "id": 0, "Number": 3573 }, "geometry": { "type": "Point", "coordinates": [ -71.262336621321907, 19.406174684312557 ] } },
94
+ { "type": "Feature", "properties": { "id": 1, "Number": 7564 }, "geometry": { "type": "Point", "coordinates": [ -69.346600810822608, 19.084924412211663 ] } },
95
+ { "type": "Feature", "properties": { "id": 0, "Number": 3060 }, "geometry": { "type": "Point", "coordinates": [ 8.716458138083652, 30.154439221379349 ] } },
96
+ { "type": "Feature", "properties": { "id": 1, "Number": 8009 }, "geometry": { "type": "Point", "coordinates": [ 2.168472251782795, 33.873348123402778 ] } },
97
+ { "type": "Feature", "properties": { "id": 0, "Number": 3660 }, "geometry": { "type": "Point", "coordinates": [ -77.656954035461766, -1.620820854474431 ] } },
98
+ { "type": "Feature", "properties": { "id": 1, "Number": 2249 }, "geometry": { "type": "Point", "coordinates": [ -77.952551498075323, -3.097282540885796 ] } },
99
+ { "type": "Feature", "properties": { "id": 0, "Number": 7592 }, "geometry": { "type": "Point", "coordinates": [ 31.159768912831851, 30.219041997687874 ] } },
100
+ { "type": "Feature", "properties": { "id": 1, "Number": 4445 }, "geometry": { "type": "Point", "coordinates": [ 29.130205825577697, 22.354131876905786 ] } },
101
+ { "type": "Feature", "properties": { "id": 0, "Number": 3198 }, "geometry": { "type": "Point", "coordinates": [ 36.490668866099305, 14.966557666246604 ] } },
102
+ { "type": "Feature", "properties": { "id": 1, "Number": 1882 }, "geometry": { "type": "Point", "coordinates": [ 38.462251961728384, 16.574377567105028 ] } },
103
+ { "type": "Feature", "properties": { "id": 0, "Number": 5815 }, "geometry": { "type": "Point", "coordinates": [ -5.157492083475033, 39.812355686624443 ] } },
104
+ { "type": "Feature", "properties": { "id": 1, "Number": 7949 }, "geometry": { "type": "Point", "coordinates": [ -5.606809231335832, 40.702513586131602 ] } },
105
+ { "type": "Feature", "properties": { "id": 0, "Number": 3433 }, "geometry": { "type": "Point", "coordinates": [ 26.176473404416328, 57.750464831167847 ] } },
106
+ { "type": "Feature", "properties": { "id": 1, "Number": 2695 }, "geometry": { "type": "Point", "coordinates": [ 26.484800846376537, 57.859650342871767 ] } },
107
+ { "type": "Feature", "properties": { "id": 0, "Number": 2392 }, "geometry": { "type": "Point", "coordinates": [ 35.795144402700608, 8.726355560164251 ] } },
108
+ { "type": "Feature", "properties": { "id": 1, "Number": 7254 }, "geometry": { "type": "Point", "coordinates": [ 40.250088143823092, 9.294517442551918 ] } },
109
+ { "type": "Feature", "properties": { "id": 0, "Number": 2660 }, "geometry": { "type": "Point", "coordinates": [ 27.828082598811541, 64.119941528536145 ] } },
110
+ { "type": "Feature", "properties": { "id": 1, "Number": 417 }, "geometry": { "type": "Point", "coordinates": [ 28.334199668453884, 63.580431037299071 ] } },
111
+ { "type": "Feature", "properties": { "id": 0, "Number": 4714 }, "geometry": { "type": "Point", "coordinates": [ 179.254920340128763, -16.550160433725654 ] } },
112
+ { "type": "Feature", "properties": { "id": 0, "Number": 785 }, "geometry": { "type": "Point", "coordinates": [ -58.383562930136314, -51.966574909114712 ] } },
113
+ { "type": "Feature", "properties": { "id": 1, "Number": 5128 }, "geometry": { "type": "Point", "coordinates": [ -59.570224866359823, -51.695040374125014 ] } },
114
+ { "type": "Feature", "properties": { "id": 0, "Number": 5260 }, "geometry": { "type": "Point", "coordinates": [ 2.738022721565217, 44.259117430025597 ] } },
115
+ { "type": "Feature", "properties": { "id": 1, "Number": 5845 }, "geometry": { "type": "Point", "coordinates": [ 3.713381514499718, 45.1356455136481 ] } },
116
+ { "type": "Feature", "properties": { "id": 0, "Number": 2868 }, "geometry": { "type": "Point", "coordinates": [ 11.176660943585151, -0.626080963538272 ] } },
117
+ { "type": "Feature", "properties": { "id": 1, "Number": 1963 }, "geometry": { "type": "Point", "coordinates": [ 14.297454170999842, -1.284188691228552 ] } },
118
+ { "type": "Feature", "properties": { "id": 0, "Number": 2522 }, "geometry": { "type": "Point", "coordinates": [ -3.599708907428481, 53.15027006474098 ] } },
119
+ { "type": "Feature", "properties": { "id": 1, "Number": 2891 }, "geometry": { "type": "Point", "coordinates": [ -0.51220300710399, 54.381931208841301 ] } },
120
+ { "type": "Feature", "properties": { "id": 0, "Number": 5597 }, "geometry": { "type": "Point", "coordinates": [ 41.757235373152703, 43.121420707977052 ] } },
121
+ { "type": "Feature", "properties": { "id": 1, "Number": 8778 }, "geometry": { "type": "Point", "coordinates": [ 44.787594542271059, 41.43575322038398 ] } },
122
+ { "type": "Feature", "properties": { "id": 0, "Number": 3072 }, "geometry": { "type": "Point", "coordinates": [ -1.391180197814269, 7.662435728089665 ] } },
123
+ { "type": "Feature", "properties": { "id": 1, "Number": 6731 }, "geometry": { "type": "Point", "coordinates": [ -0.677347966224343, 6.646364867748701 ] } },
124
+ { "type": "Feature", "properties": { "id": 0, "Number": 8093 }, "geometry": { "type": "Point", "coordinates": [ -10.873432748425113, 10.028479598580862 ] } },
125
+ { "type": "Feature", "properties": { "id": 1, "Number": 5387 }, "geometry": { "type": "Point", "coordinates": [ -13.916032858801676, 11.288751192824058 ] } },
126
+ { "type": "Feature", "properties": { "id": 0, "Number": 6466 }, "geometry": { "type": "Point", "coordinates": [ -15.699029698524916, 13.41384100154991 ] } },
127
+ { "type": "Feature", "properties": { "id": 1, "Number": 7914 }, "geometry": { "type": "Point", "coordinates": [ -15.368699101144141, 13.785388276991005 ] } },
128
+ { "type": "Feature", "properties": { "id": 0, "Number": 3013 }, "geometry": { "type": "Point", "coordinates": [ -14.841998848869752, 11.685026412443889 ] } },
129
+ { "type": "Feature", "properties": { "id": 1, "Number": 386 }, "geometry": { "type": "Point", "coordinates": [ -14.226984647364116, 11.689598442728331 ] } },
130
+ { "type": "Feature", "properties": { "id": 0, "Number": 6192 }, "geometry": { "type": "Point", "coordinates": [ 10.586992019885624, 2.210822161797486 ] } },
131
+ { "type": "Feature", "properties": { "id": 1, "Number": 9744 }, "geometry": { "type": "Point", "coordinates": [ 9.932705342254435, 1.271918644157166 ] } },
132
+ { "type": "Feature", "properties": { "id": 0, "Number": 6630 }, "geometry": { "type": "Point", "coordinates": [ 21.822756191050622, 39.95306675850707 ] } },
133
+ { "type": "Feature", "properties": { "id": 1, "Number": 4621 }, "geometry": { "type": "Point", "coordinates": [ 21.966783206005172, 40.418568859444861 ] } },
134
+ { "type": "Feature", "properties": { "id": 0, "Number": 3219 }, "geometry": { "type": "Point", "coordinates": [ -31.415387038737407, 81.190160777240706 ] } },
135
+ { "type": "Feature", "properties": { "id": 1, "Number": 170 }, "geometry": { "type": "Point", "coordinates": [ -40.993935411745298, 82.029385791410689 ] } },
136
+ { "type": "Feature", "properties": { "id": 0, "Number": 8445 }, "geometry": { "type": "Point", "coordinates": [ -89.735919024353819, 16.787047244213159 ] } },
137
+ { "type": "Feature", "properties": { "id": 1, "Number": 9134 }, "geometry": { "type": "Point", "coordinates": [ -89.575968609581381, 14.542066685552154 ] } },
138
+ { "type": "Feature", "properties": { "id": 0, "Number": 558 }, "geometry": { "type": "Point", "coordinates": [ -53.777933598977448, 3.836114021564921 ] } },
139
+ { "type": "Feature", "properties": { "id": 1, "Number": 9401 }, "geometry": { "type": "Point", "coordinates": [ -52.51845711250094, 4.784217773472477 ] } },
140
+ { "type": "Feature", "properties": { "id": 0, "Number": 2151 }, "geometry": { "type": "Point", "coordinates": [ -58.235016274193278, 5.034264795054853 ] } },
141
+ { "type": "Feature", "properties": { "id": 1, "Number": 6418 }, "geometry": { "type": "Point", "coordinates": [ -57.961368684174488, 1.99450643195045 ] } },
142
+ { "type": "Feature", "properties": { "id": 0, "Number": 4693 }, "geometry": { "type": "Point", "coordinates": [ -86.296103802093768, 15.502274775090752 ] } },
143
+ { "type": "Feature", "properties": { "id": 1, "Number": 5955 }, "geometry": { "type": "Point", "coordinates": [ -86.37953718581052, 14.502405674623732 ] } },
144
+ { "type": "Feature", "properties": { "id": 0, "Number": 156 }, "geometry": { "type": "Point", "coordinates": [ 17.850723052324565, 45.807433798081462 ] } },
145
+ { "type": "Feature", "properties": { "id": 1, "Number": 4747 }, "geometry": { "type": "Point", "coordinates": [ 16.591328819303175, 43.68582732972591 ] } },
146
+ { "type": "Feature", "properties": { "id": 0, "Number": 586 }, "geometry": { "type": "Point", "coordinates": [ -72.320150119978294, 19.076099759268175 ] } },
147
+ { "type": "Feature", "properties": { "id": 1, "Number": 895 }, "geometry": { "type": "Point", "coordinates": [ -72.754745705789134, 19.280604576550143 ] } },
148
+ { "type": "Feature", "properties": { "id": 0, "Number": 475 }, "geometry": { "type": "Point", "coordinates": [ 18.487645742005331, 47.330293013337091 ] } },
149
+ { "type": "Feature", "properties": { "id": 1, "Number": 8137 }, "geometry": { "type": "Point", "coordinates": [ 20.57636761294426, 46.240310428854954 ] } },
150
+ { "type": "Feature", "properties": { "id": 0, "Number": 4202 }, "geometry": { "type": "Point", "coordinates": [ 124.947028609271371, 1.329103057491681 ] } },
151
+ { "type": "Feature", "properties": { "id": 1, "Number": 2691 }, "geometry": { "type": "Point", "coordinates": [ 115.855391498529002, 0.151430108202891 ] } },
152
+ { "type": "Feature", "properties": { "id": 0, "Number": 9436 }, "geometry": { "type": "Point", "coordinates": [ 76.427767720424782, 9.428784498459159 ] } },
153
+ { "type": "Feature", "properties": { "id": 1, "Number": 2697 }, "geometry": { "type": "Point", "coordinates": [ 86.428768469259779, 26.117994375324546 ] } },
154
+ { "type": "Feature", "properties": { "id": 0, "Number": 5153 }, "geometry": { "type": "Point", "coordinates": [ -9.197963547486083, 54.065857476982579 ] } },
155
+ { "type": "Feature", "properties": { "id": 1, "Number": 3711 }, "geometry": { "type": "Point", "coordinates": [ -6.480217421915773, 53.353092925074534 ] } },
156
+ { "type": "Feature", "properties": { "id": 0, "Number": 1177 }, "geometry": { "type": "Point", "coordinates": [ 47.921794677635425, 34.526306162861182 ] } },
157
+ { "type": "Feature", "properties": { "id": 1, "Number": 5441 }, "geometry": { "type": "Point", "coordinates": [ 50.053033989827654, 30.553397885607492 ] } },
158
+ { "type": "Feature", "properties": { "id": 0, "Number": 9982 }, "geometry": { "type": "Point", "coordinates": [ 42.92370611071032, 34.80172776793048 ] } },
159
+ { "type": "Feature", "properties": { "id": 1, "Number": 4332 }, "geometry": { "type": "Point", "coordinates": [ 42.528053159034378, 36.912934735592536 ] } },
160
+ { "type": "Feature", "properties": { "id": 0, "Number": 4191 }, "geometry": { "type": "Point", "coordinates": [ -18.417158506825313, 65.802292194295617 ] } },
161
+ { "type": "Feature", "properties": { "id": 1, "Number": 6145 }, "geometry": { "type": "Point", "coordinates": [ -22.314774901023604, 66.327817722151593 ] } },
162
+ { "type": "Feature", "properties": { "id": 0, "Number": 2796 }, "geometry": { "type": "Point", "coordinates": [ 34.627443903026347, 31.371049103998878 ] } },
163
+ { "type": "Feature", "properties": { "id": 1, "Number": 2273 }, "geometry": { "type": "Point", "coordinates": [ 34.661656258707616, 30.730584821479304 ] } },
164
+ { "type": "Feature", "properties": { "id": 0, "Number": 6659 }, "geometry": { "type": "Point", "coordinates": [ 12.181625821670009, 44.455903260014978 ] } },
165
+ { "type": "Feature", "properties": { "id": 1, "Number": 8301 }, "geometry": { "type": "Point", "coordinates": [ 7.663107207577118, 44.287178830211978 ] } },
166
+ { "type": "Feature", "properties": { "id": 0, "Number": 2690 }, "geometry": { "type": "Point", "coordinates": [ -76.814046470898504, 18.117587772055749 ] } },
167
+ { "type": "Feature", "properties": { "id": 1, "Number": 7531 }, "geometry": { "type": "Point", "coordinates": [ -78.062603079290056, 18.073649947945732 ] } },
168
+ { "type": "Feature", "properties": { "id": 0, "Number": 1380 }, "geometry": { "type": "Point", "coordinates": [ 35.64281873952595, 31.465723153727321 ] } },
169
+ { "type": "Feature", "properties": { "id": 1, "Number": 6259 }, "geometry": { "type": "Point", "coordinates": [ 38.418504926380848, 32.730821074253711 ] } },
170
+ { "type": "Feature", "properties": { "id": 0, "Number": 5550 }, "geometry": { "type": "Point", "coordinates": [ 138.044455335925733, 36.299132640534545 ] } },
171
+ { "type": "Feature", "properties": { "id": 1, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ 139.594771530620278, 35.463476202010185 ] } },
172
+ { "type": "Feature", "properties": { "id": 0, "Number": 4964 }, "geometry": { "type": "Point", "coordinates": [ 66.687569332915828, 52.045121375823044 ] } },
173
+ { "type": "Feature", "properties": { "id": 1, "Number": 96 }, "geometry": { "type": "Point", "coordinates": [ 81.266525291453789, 49.629989163042559 ] } },
174
+ { "type": "Feature", "properties": { "id": 0, "Number": 5251 }, "geometry": { "type": "Point", "coordinates": [ 34.970769187019826, 1.073554104453572 ] } },
175
+ { "type": "Feature", "properties": { "id": 1, "Number": 1520 }, "geometry": { "type": "Point", "coordinates": [ 40.063756959551817, 1.551800129847043 ] } },
176
+ { "type": "Feature", "properties": { "id": 0, "Number": 312 }, "geometry": { "type": "Point", "coordinates": [ 72.488567281885281, 41.307564220019138 ] } },
177
+ { "type": "Feature", "properties": { "id": 1, "Number": 4414 }, "geometry": { "type": "Point", "coordinates": [ 72.995600878305936, 41.987928278985983 ] } },
178
+ { "type": "Feature", "properties": { "id": 0, "Number": 5550 }, "geometry": { "type": "Point", "coordinates": [ 106.850498068469264, 13.683499129548967 ] } },
179
+ { "type": "Feature", "properties": { "id": 1, "Number": 6834 }, "geometry": { "type": "Point", "coordinates": [ 104.908011215213548, 12.957769239784216 ] } },
180
+ { "type": "Feature", "properties": { "id": 0, "Number": 2309 }, "geometry": { "type": "Point", "coordinates": [ 126.569083689762522, 37.56915119845074 ] } },
181
+ { "type": "Feature", "properties": { "id": 1, "Number": 6236 }, "geometry": { "type": "Point", "coordinates": [ 128.241018147318783, 36.147727864384308 ] } },
182
+ { "type": "Feature", "properties": { "id": 0, "Number": 509 }, "geometry": { "type": "Point", "coordinates": [ 21.358391096789894, 42.384439775721937 ] } },
183
+ { "type": "Feature", "properties": { "id": 1, "Number": 9105 }, "geometry": { "type": "Point", "coordinates": [ 20.8512356746485, 42.23803803408363 ] } },
184
+ { "type": "Feature", "properties": { "id": 0, "Number": 2055 }, "geometry": { "type": "Point", "coordinates": [ 47.262426556836388, 29.297082120918194 ] } },
185
+ { "type": "Feature", "properties": { "id": 1, "Number": 3718 }, "geometry": { "type": "Point", "coordinates": [ 46.952049574688623, 29.441724130533071 ] } },
186
+ { "type": "Feature", "properties": { "id": 0, "Number": 2480 }, "geometry": { "type": "Point", "coordinates": [ 106.755144008136668, 14.930824033204106 ] } },
187
+ { "type": "Feature", "properties": { "id": 1, "Number": 9406 }, "geometry": { "type": "Point", "coordinates": [ 102.703838106003374, 18.913524446225182 ] } },
188
+ { "type": "Feature", "properties": { "id": 0, "Number": 1231 }, "geometry": { "type": "Point", "coordinates": [ 36.267596130199209, 34.531559236823199 ] } },
189
+ { "type": "Feature", "properties": { "id": 1, "Number": 4154 }, "geometry": { "type": "Point", "coordinates": [ 36.494936993896481, 34.232855598175192 ] } },
190
+ { "type": "Feature", "properties": { "id": 0, "Number": 522 }, "geometry": { "type": "Point", "coordinates": [ -8.435387177018866, 6.216927770949794 ] } },
191
+ { "type": "Feature", "properties": { "id": 1, "Number": 607 }, "geometry": { "type": "Point", "coordinates": [ -8.536130856671562, 5.197120759902772 ] } },
192
+ { "type": "Feature", "properties": { "id": 0, "Number": 8922 }, "geometry": { "type": "Point", "coordinates": [ 23.417413130023583, 25.561701478072266 ] } },
193
+ { "type": "Feature", "properties": { "id": 1, "Number": 1309 }, "geometry": { "type": "Point", "coordinates": [ 11.555069336590257, 24.155938351492445 ] } },
194
+ { "type": "Feature", "properties": { "id": 0, "Number": 2849 }, "geometry": { "type": "Point", "coordinates": [ 81.452206354548949, 7.59476245045565 ] } },
195
+ { "type": "Feature", "properties": { "id": 1, "Number": 6137 }, "geometry": { "type": "Point", "coordinates": [ 79.781432614182833, 8.130930013863482 ] } },
196
+ { "type": "Feature", "properties": { "id": 0, "Number": 6134 }, "geometry": { "type": "Point", "coordinates": [ 27.222876370660181, -29.752210794266418 ] } },
197
+ { "type": "Feature", "properties": { "id": 1, "Number": 131 }, "geometry": { "type": "Point", "coordinates": [ 28.506988615198082, -29.958213236901013 ] } },
198
+ { "type": "Feature", "properties": { "id": 0, "Number": 548 }, "geometry": { "type": "Point", "coordinates": [ 23.961032085893802, 55.769964454913321 ] } },
199
+ { "type": "Feature", "properties": { "id": 1, "Number": 9092 }, "geometry": { "type": "Point", "coordinates": [ 24.61762208661305, 56.009600114062465 ] } },
200
+ { "type": "Feature", "properties": { "id": 0, "Number": 5736 }, "geometry": { "type": "Point", "coordinates": [ 6.028438205863928, 49.967843777173279 ] } },
201
+ { "type": "Feature", "properties": { "id": 1, "Number": 5759 }, "geometry": { "type": "Point", "coordinates": [ 6.096848314660864, 49.640477627643428 ] } },
202
+ { "type": "Feature", "properties": { "id": 0, "Number": 1752 }, "geometry": { "type": "Point", "coordinates": [ 21.789918601718547, 56.49704445256075 ] } },
203
+ { "type": "Feature", "properties": { "id": 1, "Number": 1462 }, "geometry": { "type": "Point", "coordinates": [ 22.504599453403848, 57.439433735380845 ] } },
204
+ { "type": "Feature", "properties": { "id": 0, "Number": 6707 }, "geometry": { "type": "Point", "coordinates": [ -5.277512840288219, 30.467439863921982 ] } },
205
+ { "type": "Feature", "properties": { "id": 1, "Number": 8887 }, "geometry": { "type": "Point", "coordinates": [ -10.619503597439468, 28.499595042722223 ] } },
206
+ { "type": "Feature", "properties": { "id": 0, "Number": 6069 }, "geometry": { "type": "Point", "coordinates": [ 27.943698041219218, 47.301988273202639 ] } },
207
+ { "type": "Feature", "properties": { "id": 1, "Number": 528 }, "geometry": { "type": "Point", "coordinates": [ 28.757880706784611, 47.546336039222865 ] } },
208
+ { "type": "Feature", "properties": { "id": 0, "Number": 7310 }, "geometry": { "type": "Point", "coordinates": [ 44.38226593930662, -24.952920185674802 ] } },
209
+ { "type": "Feature", "properties": { "id": 1, "Number": 2893 }, "geometry": { "type": "Point", "coordinates": [ 47.766853514372968, -17.039706774575489 ] } },
210
+ { "type": "Feature", "properties": { "id": 0, "Number": 8031 }, "geometry": { "type": "Point", "coordinates": [ -114.79212410076299, 32.454089443295629 ] } },
211
+ { "type": "Feature", "properties": { "id": 1, "Number": 2679 }, "geometry": { "type": "Point", "coordinates": [ -112.190028556999636, 30.159503334342162 ] } },
212
+ { "type": "Feature", "properties": { "id": 0, "Number": 4027 }, "geometry": { "type": "Point", "coordinates": [ 22.324451706557497, 42.051892747258307 ] } },
213
+ { "type": "Feature", "properties": { "id": 1, "Number": 7529 }, "geometry": { "type": "Point", "coordinates": [ 20.896801361806254, 41.796439940644866 ] } },
214
+ { "type": "Feature", "properties": { "id": 0, "Number": 5628 }, "geometry": { "type": "Point", "coordinates": [ -3.987672518818009, 24.083667940353951 ] } },
215
+ { "type": "Feature", "properties": { "id": 1, "Number": 632 }, "geometry": { "type": "Point", "coordinates": [ -2.139909532936819, 18.412590840563716 ] } },
216
+ { "type": "Feature", "properties": { "id": 0, "Number": 5887 }, "geometry": { "type": "Point", "coordinates": [ 14.454212259465384, 35.891292377832038 ] } },
217
+ { "type": "Feature", "properties": { "id": 0, "Number": 9523 }, "geometry": { "type": "Point", "coordinates": [ 98.609907671851772, 22.246543758637927 ] } },
218
+ { "type": "Feature", "properties": { "id": 1, "Number": 3672 }, "geometry": { "type": "Point", "coordinates": [ 98.527764491794585, 16.000478678772922 ] } },
219
+ { "type": "Feature", "properties": { "id": 0, "Number": 6159 }, "geometry": { "type": "Point", "coordinates": [ 18.601206566841995, 42.80077581280382 ] } },
220
+ { "type": "Feature", "properties": { "id": 1, "Number": 9709 }, "geometry": { "type": "Point", "coordinates": [ 19.427318725032773, 43.337277389943146 ] } },
221
+ { "type": "Feature", "properties": { "id": 0, "Number": 2946 }, "geometry": { "type": "Point", "coordinates": [ 90.700840035066079, 47.625505375948478 ] } },
222
+ { "type": "Feature", "properties": { "id": 1, "Number": 4841 }, "geometry": { "type": "Point", "coordinates": [ 105.894045876847002, 48.024619132979971 ] } },
223
+ { "type": "Feature", "properties": { "id": 0, "Number": 1361 }, "geometry": { "type": "Point", "coordinates": [ 32.074252850765895, -15.328478963019565 ] } },
224
+ { "type": "Feature", "properties": { "id": 1, "Number": 3297 }, "geometry": { "type": "Point", "coordinates": [ 31.135445517224774, -15.667004586057764 ] } },
225
+ { "type": "Feature", "properties": { "id": 0, "Number": 116 }, "geometry": { "type": "Point", "coordinates": [ -8.978617920397628, 19.189293439417526 ] } },
226
+ { "type": "Feature", "properties": { "id": 1, "Number": 4092 }, "geometry": { "type": "Point", "coordinates": [ -6.405364885223396, 20.975033173863011 ] } },
227
+ { "type": "Feature", "properties": { "id": 0, "Number": 4043 }, "geometry": { "type": "Point", "coordinates": [ 34.036169582786762, -10.790821953031696 ] } },
228
+ { "type": "Feature", "properties": { "id": 1, "Number": 1802 }, "geometry": { "type": "Point", "coordinates": [ 34.433978215680135, -13.183883102308382 ] } },
229
+ { "type": "Feature", "properties": { "id": 0, "Number": 9721 }, "geometry": { "type": "Point", "coordinates": [ 115.600187610618576, 3.924636806455275 ] } },
230
+ { "type": "Feature", "properties": { "id": 1, "Number": 9129 }, "geometry": { "type": "Point", "coordinates": [ 102.875188934555766, 3.707141212132078 ] } },
231
+ { "type": "Feature", "properties": { "id": 0, "Number": 6393 }, "geometry": { "type": "Point", "coordinates": [ 18.795971349195291, -19.113756547844879 ] } },
232
+ { "type": "Feature", "properties": { "id": 1, "Number": 3475 }, "geometry": { "type": "Point", "coordinates": [ 16.865248361631576, -20.021791654936202 ] } },
233
+ { "type": "Feature", "properties": { "id": 0, "Number": 288 }, "geometry": { "type": "Point", "coordinates": [ 165.335093696675699, -20.961929116626049 ] } },
234
+ { "type": "Feature", "properties": { "id": 1, "Number": 9451 }, "geometry": { "type": "Point", "coordinates": [ 166.135101922473922, -22.044589708631179 ] } },
235
+ { "type": "Feature", "properties": { "id": 0, "Number": 9703 }, "geometry": { "type": "Point", "coordinates": [ 9.319441725598146, 13.725211879488022 ] } },
236
+ { "type": "Feature", "properties": { "id": 1, "Number": 4698 }, "geometry": { "type": "Point", "coordinates": [ 5.486858347677591, 17.607090427516766 ] } },
237
+ { "type": "Feature", "properties": { "id": 0, "Number": 483 }, "geometry": { "type": "Point", "coordinates": [ 13.143750850223723, 11.118593521547258 ] } },
238
+ { "type": "Feature", "properties": { "id": 1, "Number": 9839 }, "geometry": { "type": "Point", "coordinates": [ 7.411164666317813, 6.999899939360529 ] } },
239
+ { "type": "Feature", "properties": { "id": 0, "Number": 7222 }, "geometry": { "type": "Point", "coordinates": [ -84.063150828840364, 13.833969756636055 ] } },
240
+ { "type": "Feature", "properties": { "id": 1, "Number": 1344 }, "geometry": { "type": "Point", "coordinates": [ -86.078557388969315, 11.929633302619305 ] } },
241
+ { "type": "Feature", "properties": { "id": 0, "Number": 7585 }, "geometry": { "type": "Point", "coordinates": [ 5.914402425595764, 52.163099855769609 ] } },
242
+ { "type": "Feature", "properties": { "id": 1, "Number": 2764 }, "geometry": { "type": "Point", "coordinates": [ 6.344215593199195, 53.053640354654313 ] } },
243
+ { "type": "Feature", "properties": { "id": 0, "Number": 7092 }, "geometry": { "type": "Point", "coordinates": [ 11.109245514317672, 60.355757742243313 ] } },
244
+ { "type": "Feature", "properties": { "id": 1, "Number": 551 }, "geometry": { "type": "Point", "coordinates": [ 17.298196326819877, 78.100632549400103 ] } },
245
+ { "type": "Feature", "properties": { "id": 0, "Number": 8506 }, "geometry": { "type": "Point", "coordinates": [ 82.247351293817786, 28.90279598533505 ] } },
246
+ { "type": "Feature", "properties": { "id": 1, "Number": 8434 }, "geometry": { "type": "Point", "coordinates": [ 82.52444488927334, 29.555865166500311 ] } },
247
+ { "type": "Feature", "properties": { "id": 0, "Number": 4768 }, "geometry": { "type": "Point", "coordinates": [ 174.249201009705985, -35.645807072973021 ] } },
248
+ { "type": "Feature", "properties": { "id": 1, "Number": 5139 }, "geometry": { "type": "Point", "coordinates": [ 167.102270415583774, -45.762315720687461 ] } },
249
+ { "type": "Feature", "properties": { "id": 0, "Number": 7735 }, "geometry": { "type": "Point", "coordinates": [ 53.521924769536703, 18.516412398250967 ] } },
250
+ { "type": "Feature", "properties": { "id": 1, "Number": 1380 }, "geometry": { "type": "Point", "coordinates": [ 52.870717665013252, 18.595036019275735 ] } },
251
+ { "type": "Feature", "properties": { "id": 0, "Number": 8925 }, "geometry": { "type": "Point", "coordinates": [ 63.066570341613662, 27.854003259471096 ] } },
252
+ { "type": "Feature", "properties": { "id": 1, "Number": 8635 }, "geometry": { "type": "Point", "coordinates": [ 74.435089272206284, 35.80222436211065 ] } },
253
+ { "type": "Feature", "properties": { "id": 0, "Number": 5439 }, "geometry": { "type": "Point", "coordinates": [ -80.434335773494936, 7.937713500187415 ] } },
254
+ { "type": "Feature", "properties": { "id": 1, "Number": 3274 }, "geometry": { "type": "Point", "coordinates": [ -82.746337142873827, 8.316123736181513 ] } },
255
+ { "type": "Feature", "properties": { "id": 0, "Number": 8745 }, "geometry": { "type": "Point", "coordinates": [ -72.296602525188163, -4.373346637829012 ] } },
256
+ { "type": "Feature", "properties": { "id": 1, "Number": 6040 }, "geometry": { "type": "Point", "coordinates": [ -77.565160323237166, -3.648893181339735 ] } },
257
+ { "type": "Feature", "properties": { "id": 0, "Number": 4336 }, "geometry": { "type": "Point", "coordinates": [ 121.438557543808571, 17.355843045266063 ] } },
258
+ { "type": "Feature", "properties": { "id": 1, "Number": 9410 }, "geometry": { "type": "Point", "coordinates": [ 121.024530883943328, 14.705951673631962 ] } },
259
+ { "type": "Feature", "properties": { "id": 0, "Number": 855 }, "geometry": { "type": "Point", "coordinates": [ 145.363290452188608, -6.139052341056681 ] } },
260
+ { "type": "Feature", "properties": { "id": 1, "Number": 6663 }, "geometry": { "type": "Point", "coordinates": [ 141.504359879215599, -6.030734259505161 ] } },
261
+ { "type": "Feature", "properties": { "id": 0, "Number": 3352 }, "geometry": { "type": "Point", "coordinates": [ 22.691811004493353, 53.195283132643205 ] } },
262
+ { "type": "Feature", "properties": { "id": 1, "Number": 3799 }, "geometry": { "type": "Point", "coordinates": [ 15.342312984892112, 51.17759611207925 ] } },
263
+ { "type": "Feature", "properties": { "id": 0, "Number": 3128 }, "geometry": { "type": "Point", "coordinates": [ -66.421010354095188, 18.262628193144153 ] } },
264
+ { "type": "Feature", "properties": { "id": 1, "Number": 9192 }, "geometry": { "type": "Point", "coordinates": [ -65.834308018424025, 18.284563193455828 ] } },
265
+ { "type": "Feature", "properties": { "id": 0, "Number": 5206 }, "geometry": { "type": "Point", "coordinates": [ 126.642799353682776, 40.879131064216963 ] } },
266
+ { "type": "Feature", "properties": { "id": 1, "Number": 4823 }, "geometry": { "type": "Point", "coordinates": [ 127.753271503986838, 40.525258034872458 ] } },
267
+ { "type": "Feature", "properties": { "id": 0, "Number": 2515 }, "geometry": { "type": "Point", "coordinates": [ -8.132561088045932, 36.997476661667918 ] } },
268
+ { "type": "Feature", "properties": { "id": 1, "Number": 1349 }, "geometry": { "type": "Point", "coordinates": [ -8.387318371475821, 39.875666843035347 ] } },
269
+ { "type": "Feature", "properties": { "id": 0, "Number": 1571 }, "geometry": { "type": "Point", "coordinates": [ -59.531592246490149, -19.83683754821535 ] } },
270
+ { "type": "Feature", "properties": { "id": 1, "Number": 2685 }, "geometry": { "type": "Point", "coordinates": [ -58.612183706312564, -23.581512589942477 ] } },
271
+ { "type": "Feature", "properties": { "id": 0, "Number": 1759 }, "geometry": { "type": "Point", "coordinates": [ 51.378013690911061, 25.21472467806737 ] } },
272
+ { "type": "Feature", "properties": { "id": 1, "Number": 9819 }, "geometry": { "type": "Point", "coordinates": [ 51.264203601777979, 25.629321046866423 ] } },
273
+ { "type": "Feature", "properties": { "id": 0, "Number": 8797 }, "geometry": { "type": "Point", "coordinates": [ 25.528062817084987, 44.145706701417069 ] } },
274
+ { "type": "Feature", "properties": { "id": 1, "Number": 6615 }, "geometry": { "type": "Point", "coordinates": [ 26.789870301110255, 45.852355415805242 ] } },
275
+ { "type": "Feature", "properties": { "id": 0, "Number": 5811 }, "geometry": { "type": "Point", "coordinates": [ 45.710571558752235, 51.377817036453052 ] } },
276
+ { "type": "Feature", "properties": { "id": 1, "Number": 140 }, "geometry": { "type": "Point", "coordinates": [ 103.002167752858327, 76.0256352491119 ] } },
277
+ { "type": "Feature", "properties": { "id": 0, "Number": 3737 }, "geometry": { "type": "Point", "coordinates": [ 29.325668571523423, -1.822483897392333 ] } },
278
+ { "type": "Feature", "properties": { "id": 1, "Number": 6467 }, "geometry": { "type": "Point", "coordinates": [ 29.856511965246572, -2.14375620321588 ] } },
279
+ { "type": "Feature", "properties": { "id": 0, "Number": 9649 }, "geometry": { "type": "Point", "coordinates": [ -10.004270492620297, 25.998094161052478 ] } },
280
+ { "type": "Feature", "properties": { "id": 1, "Number": 7909 }, "geometry": { "type": "Point", "coordinates": [ -10.258809182488895, 26.473040664666058 ] } },
281
+ { "type": "Feature", "properties": { "id": 0, "Number": 4565 }, "geometry": { "type": "Point", "coordinates": [ 39.490344822436157, 26.152486893991245 ] } },
282
+ { "type": "Feature", "properties": { "id": 1, "Number": 3354 }, "geometry": { "type": "Point", "coordinates": [ 42.230176638622083, 27.188604434680563 ] } },
283
+ { "type": "Feature", "properties": { "id": 0, "Number": 941 }, "geometry": { "type": "Point", "coordinates": [ 28.051442365416403, 19.219760915684759 ] } },
284
+ { "type": "Feature", "properties": { "id": 1, "Number": 9148 }, "geometry": { "type": "Point", "coordinates": [ 36.424231912325347, 21.700135320620284 ] } },
285
+ { "type": "Feature", "properties": { "id": 0, "Number": 473 }, "geometry": { "type": "Point", "coordinates": [ 32.581928907456266, 4.398963020447265 ] } },
286
+ { "type": "Feature", "properties": { "id": 1, "Number": 1807 }, "geometry": { "type": "Point", "coordinates": [ 31.882292868462102, 5.717888201014432 ] } },
287
+ { "type": "Feature", "properties": { "id": 0, "Number": 5453 }, "geometry": { "type": "Point", "coordinates": [ -15.011132469680682, 15.227883264093125 ] } },
288
+ { "type": "Feature", "properties": { "id": 1, "Number": 1773 }, "geometry": { "type": "Point", "coordinates": [ -13.318415766218672, 15.095292035318103 ] } },
289
+ { "type": "Feature", "properties": { "id": 0, "Number": 7389 }, "geometry": { "type": "Point", "coordinates": [ 161.064061726120883, -8.655828148235168 ] } },
290
+ { "type": "Feature", "properties": { "id": 1, "Number": 5724 }, "geometry": { "type": "Point", "coordinates": [ 161.549272972899502, -9.647686805051311 ] } },
291
+ { "type": "Feature", "properties": { "id": 0, "Number": 75 }, "geometry": { "type": "Point", "coordinates": [ -12.527558136316378, 7.454341218130589 ] } },
292
+ { "type": "Feature", "properties": { "id": 1, "Number": 211 }, "geometry": { "type": "Point", "coordinates": [ -11.496692161829674, 7.544533992827796 ] } },
293
+ { "type": "Feature", "properties": { "id": 0, "Number": 5094 }, "geometry": { "type": "Point", "coordinates": [ -89.77982853394461, 13.886100922733565 ] } },
294
+ { "type": "Feature", "properties": { "id": 1, "Number": 3062 }, "geometry": { "type": "Point", "coordinates": [ -88.957984655593819, 13.815724227290218 ] } },
295
+ { "type": "Feature", "properties": { "id": 0, "Number": 1729 }, "geometry": { "type": "Point", "coordinates": [ 43.459600504661353, 10.675738430784799 ] } },
296
+ { "type": "Feature", "properties": { "id": 1, "Number": 3380 }, "geometry": { "type": "Point", "coordinates": [ 43.727583836026909, 10.319430765299924 ] } },
297
+ { "type": "Feature", "properties": { "id": 0, "Number": 589 }, "geometry": { "type": "Point", "coordinates": [ 44.370181345507945, 1.735762297787968 ] } },
298
+ { "type": "Feature", "properties": { "id": 1, "Number": 6080 }, "geometry": { "type": "Point", "coordinates": [ 49.368331694204265, 7.260175769916521 ] } },
299
+ { "type": "Feature", "properties": { "id": 0, "Number": 6026 }, "geometry": { "type": "Point", "coordinates": [ 21.230349409599604, 43.292681205635439 ] } },
300
+ { "type": "Feature", "properties": { "id": 1, "Number": 2459 }, "geometry": { "type": "Point", "coordinates": [ 19.73977556163355, 44.258926763739808 ] } },
301
+ { "type": "Feature", "properties": { "id": 0, "Number": 5865 }, "geometry": { "type": "Point", "coordinates": [ -55.951131913668547, 3.926173483614912 ] } },
302
+ { "type": "Feature", "properties": { "id": 1, "Number": 5128 }, "geometry": { "type": "Point", "coordinates": [ -57.907561703652036, 3.899850613154914 ] } },
303
+ { "type": "Feature", "properties": { "id": 0, "Number": 2139 }, "geometry": { "type": "Point", "coordinates": [ 21.26747525529802, 48.905393485394328 ] } },
304
+ { "type": "Feature", "properties": { "id": 1, "Number": 1508 }, "geometry": { "type": "Point", "coordinates": [ 20.473367087418694, 49.337055572949637 ] } },
305
+ { "type": "Feature", "properties": { "id": 0, "Number": 4267 }, "geometry": { "type": "Point", "coordinates": [ 14.03399897362319, 46.387450284364711 ] } },
306
+ { "type": "Feature", "properties": { "id": 1, "Number": 584 }, "geometry": { "type": "Point", "coordinates": [ 14.61700620651458, 46.391645681188777 ] } },
307
+ { "type": "Feature", "properties": { "id": 0, "Number": 1404 }, "geometry": { "type": "Point", "coordinates": [ 17.564178831312677, 59.609586668572966 ] } },
308
+ { "type": "Feature", "properties": { "id": 1, "Number": 9112 }, "geometry": { "type": "Point", "coordinates": [ 12.499483543643723, 62.946145609581748 ] } },
309
+ { "type": "Feature", "properties": { "id": 0, "Number": 4072 }, "geometry": { "type": "Point", "coordinates": [ 30.764274010774493, -26.637980054333511 ] } },
310
+ { "type": "Feature", "properties": { "id": 1, "Number": 3513 }, "geometry": { "type": "Point", "coordinates": [ 31.827684482193018, -26.962148375565139 ] } },
311
+ { "type": "Feature", "properties": { "id": 0, "Number": 9688 }, "geometry": { "type": "Point", "coordinates": [ 40.433940726029704, 36.051801203353179 ] } },
312
+ { "type": "Feature", "properties": { "id": 1, "Number": 3970 }, "geometry": { "type": "Point", "coordinates": [ 38.401311123788858, 34.017457534997533 ] } },
313
+ { "type": "Feature", "properties": { "id": 0, "Number": 793 }, "geometry": { "type": "Point", "coordinates": [ 17.619885697276903, 19.224474080193378 ] } },
314
+ { "type": "Feature", "properties": { "id": 1, "Number": 8415 }, "geometry": { "type": "Point", "coordinates": [ 15.951939799096733, 19.835300202389622 ] } },
315
+ { "type": "Feature", "properties": { "id": 0, "Number": 968 }, "geometry": { "type": "Point", "coordinates": [ 1.630271726148552, 7.747724303399842 ] } },
316
+ { "type": "Feature", "properties": { "id": 1, "Number": 4668 }, "geometry": { "type": "Point", "coordinates": [ 1.354338949235818, 6.546731480215874 ] } },
317
+ { "type": "Feature", "properties": { "id": 0, "Number": 4827 }, "geometry": { "type": "Point", "coordinates": [ 98.929468378897141, 16.874109408670009 ] } },
318
+ { "type": "Feature", "properties": { "id": 1, "Number": 2728 }, "geometry": { "type": "Point", "coordinates": [ 100.235541222191472, 7.134402654454476 ] } },
319
+ { "type": "Feature", "properties": { "id": 0, "Number": 7394 }, "geometry": { "type": "Point", "coordinates": [ 69.656743636554026, 38.107773808451064 ] } },
320
+ { "type": "Feature", "properties": { "id": 1, "Number": 7750 }, "geometry": { "type": "Point", "coordinates": [ 68.636545488937998, 39.420616483496929 ] } },
321
+ { "type": "Feature", "properties": { "id": 0, "Number": 8418 }, "geometry": { "type": "Point", "coordinates": [ 60.080332892182327, 40.464914368264658 ] } },
322
+ { "type": "Feature", "properties": { "id": 1, "Number": 7919 }, "geometry": { "type": "Point", "coordinates": [ 54.815757065967766, 39.70904587928338 ] } },
323
+ { "type": "Feature", "properties": { "id": 0, "Number": 3337 }, "geometry": { "type": "Point", "coordinates": [ 125.316968105650602, -8.900789069749393 ] } },
324
+ { "type": "Feature", "properties": { "id": 1, "Number": 3927 }, "geometry": { "type": "Point", "coordinates": [ 125.669501833108683, -8.617265299228171 ] } },
325
+ { "type": "Feature", "properties": { "id": 0, "Number": 1418 }, "geometry": { "type": "Point", "coordinates": [ -60.956189477710652, 10.220034222141793 ] } },
326
+ { "type": "Feature", "properties": { "id": 1, "Number": 7149 }, "geometry": { "type": "Point", "coordinates": [ -61.585556421813976, 10.779863741521089 ] } },
327
+ { "type": "Feature", "properties": { "id": 0, "Number": 9698 }, "geometry": { "type": "Point", "coordinates": [ 9.675978237322742, 36.49047438577648 ] } },
328
+ { "type": "Feature", "properties": { "id": 1, "Number": 2079 }, "geometry": { "type": "Point", "coordinates": [ 11.270901563107017, 32.668746910523645 ] } },
329
+ { "type": "Feature", "properties": { "id": 0, "Number": 7918 }, "geometry": { "type": "Point", "coordinates": [ 40.30447514349698, 38.021637646292334 ] } },
330
+ { "type": "Feature", "properties": { "id": 1, "Number": 2606 }, "geometry": { "type": "Point", "coordinates": [ 30.742632923481413, 40.776392313384477 ] } },
331
+ { "type": "Feature", "properties": { "id": 0, "Number": 5901 }, "geometry": { "type": "Point", "coordinates": [ 120.540390662881578, 23.711039726318987 ] } },
332
+ { "type": "Feature", "properties": { "id": 1, "Number": 223 }, "geometry": { "type": "Point", "coordinates": [ 120.570681142570322, 22.514394422745056 ] } },
333
+ { "type": "Feature", "properties": { "id": 0, "Number": 538 }, "geometry": { "type": "Point", "coordinates": [ 32.116315468127404, -6.961704738683106 ] } },
334
+ { "type": "Feature", "properties": { "id": 1, "Number": 6546 }, "geometry": { "type": "Point", "coordinates": [ 32.707375518426062, -2.4908141729062 ] } },
335
+ { "type": "Feature", "properties": { "id": 0, "Number": 1073 }, "geometry": { "type": "Point", "coordinates": [ 32.453671082685482, 1.166648047145086 ] } },
336
+ { "type": "Feature", "properties": { "id": 1, "Number": 6467 }, "geometry": { "type": "Point", "coordinates": [ 31.569981741016321, 2.203799894070126 ] } },
337
+ { "type": "Feature", "properties": { "id": 0, "Number": 373 }, "geometry": { "type": "Point", "coordinates": [ 33.890077905763, 45.897610068696999 ] } },
338
+ { "type": "Feature", "properties": { "id": 1, "Number": 2379 }, "geometry": { "type": "Point", "coordinates": [ 33.590309559151009, 49.049443184783129 ] } },
339
+ { "type": "Feature", "properties": { "id": 0, "Number": 3319 }, "geometry": { "type": "Point", "coordinates": [ -57.37635696411413, -33.317630943088588 ] } },
340
+ { "type": "Feature", "properties": { "id": 1, "Number": 1489 }, "geometry": { "type": "Point", "coordinates": [ -57.496980396202986, -31.912786555565308 ] } },
341
+ { "type": "Feature", "properties": { "id": 0, "Number": 7286 }, "geometry": { "type": "Point", "coordinates": [ -152.796239703883231, 64.684491036116711 ] } },
342
+ { "type": "Feature", "properties": { "id": 1, "Number": 2076 }, "geometry": { "type": "Point", "coordinates": [ -123.469256515164162, 47.183564573497222 ] } },
343
+ { "type": "Feature", "properties": { "id": 0, "Number": 950 }, "geometry": { "type": "Point", "coordinates": [ 65.20900441147154, 38.429395428099596 ] } },
344
+ { "type": "Feature", "properties": { "id": 1, "Number": 2865 }, "geometry": { "type": "Point", "coordinates": [ 60.23319036835116, 44.033304145504438 ] } },
345
+ { "type": "Feature", "properties": { "id": 0, "Number": 5833 }, "geometry": { "type": "Point", "coordinates": [ -66.328709015795113, 3.570770467155827 ] } },
346
+ { "type": "Feature", "properties": { "id": 1, "Number": 9373 }, "geometry": { "type": "Point", "coordinates": [ -62.816304449702457, 6.483116166631244 ] } },
347
+ { "type": "Feature", "properties": { "id": 0, "Number": 1879 }, "geometry": { "type": "Point", "coordinates": [ 108.603585623789854, 14.097389988524393 ] } },
348
+ { "type": "Feature", "properties": { "id": 1, "Number": 4867 }, "geometry": { "type": "Point", "coordinates": [ 105.976244154272763, 10.748436492025007 ] } },
349
+ { "type": "Feature", "properties": { "id": 0, "Number": 1801 }, "geometry": { "type": "Point", "coordinates": [ 166.682076837219256, -15.140060911171533 ] } },
350
+ { "type": "Feature", "properties": { "id": 1, "Number": 1202 }, "geometry": { "type": "Point", "coordinates": [ 166.773414020778745, -14.723618808589091 ] } },
351
+ { "type": "Feature", "properties": { "id": 0, "Number": 9815 }, "geometry": { "type": "Point", "coordinates": [ 35.179884077555194, 32.200204437554333 ] } },
352
+ { "type": "Feature", "properties": { "id": 1, "Number": 8329 }, "geometry": { "type": "Point", "coordinates": [ 35.265948383843458, 31.707077654857475 ] } },
353
+ { "type": "Feature", "properties": { "id": 0, "Number": 5253 }, "geometry": { "type": "Point", "coordinates": [ 49.557078338336424, 18.076916374119925 ] } },
354
+ { "type": "Feature", "properties": { "id": 1, "Number": 7880 }, "geometry": { "type": "Point", "coordinates": [ 51.4585789322389, 15.438441754980825 ] } },
355
+ { "type": "Feature", "properties": { "id": 0, "Number": 7999 }, "geometry": { "type": "Point", "coordinates": [ 28.109679002815632, -31.997611799952708 ] } },
356
+ { "type": "Feature", "properties": { "id": 1, "Number": 5788 }, "geometry": { "type": "Point", "coordinates": [ 30.643259814392252, -28.353194678591919 ] } },
357
+ { "type": "Feature", "properties": { "id": 0, "Number": 2611 }, "geometry": { "type": "Point", "coordinates": [ 26.448624242691363, -14.336165173504838 ] } },
358
+ { "type": "Feature", "properties": { "id": 1, "Number": 3845 }, "geometry": { "type": "Point", "coordinates": [ 30.179527534731506, -10.025814908739907 ] } },
359
+ { "type": "Feature", "properties": { "id": 0, "Number": 9251 }, "geometry": { "type": "Point", "coordinates": [ 31.281360737794575, -19.873214944731401 ] } },
360
+ { "type": "Feature", "properties": { "id": 1, "Number": 5420 }, "geometry": { "type": "Point", "coordinates": [ 30.829724603375741, -19.340316863359384 ] } }
361
+ ]
362
+ }