geohex-v3 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ *.gem
2
+ .bundle
3
+ .rspec
4
+ Gemfile.lock
5
+ coverage/
6
+ vendor/bundle/
7
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in geohex.gemspec
4
+ gemspec
@@ -0,0 +1,29 @@
1
+ The idea of GeoHex is licensed by sa2da.
2
+ You should follow original license of GeoHex.
3
+ (The license is opened by CC-BY-SA license)
4
+ You must attribute this work to sa2da (with link).
5
+ http://geogames.net
6
+
7
+ This ruby code is covered by MIT License.
8
+ (The MIT License)
9
+
10
+ Copyright (c) 2012 Toshiwo
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining
13
+ a copy of this software and associated documentation files (the
14
+ 'Software'), to deal in the Software without restriction, including
15
+ without limitation the rights to use, copy, modify, merge, publish,
16
+ distribute, sublicense, and/or sell copies of the Software, and to
17
+ permit persons to whom the Software is furnished to do so, subject to
18
+ the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be
21
+ included in all copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
24
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
26
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
27
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
28
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
29
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,14 @@
1
+ GeoHex V3 for Ruby
2
+
3
+ ### Install
4
+
5
+ gem install geohex-v3
6
+
7
+ ### Usage
8
+
9
+ ```ruby
10
+ require 'geohex/v3' # or require 'geohex'
11
+
12
+ Geohex::V3::Zone.encode 35.360556, 138.727778, 7 # => "XM5633055"
13
+ ```
14
+
@@ -0,0 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ Dir['tasks/**/*.rake'].each { |t| load t }
4
+
5
+ task :default => :spec
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "geohex/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "geohex-v3"
7
+ s.version = Geohex::VERSION
8
+ s.authors = ["toshiwo"]
9
+ s.email = ["toshiwo@toshiwo.com"]
10
+ s.homepage = "https://github.com/toshiwo/geohex-v3"
11
+ s.summary = %q{The GeoHex is a latitude/longitude encoding system}
12
+ s.description = %q{The GeoHex is a latitude/longitude encoding system}
13
+
14
+ s.rubyforge_project = "geohex"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ # specify any dependencies here; for example:
22
+ # s.add_development_dependency "rspec"
23
+ # s.add_runtime_dependency "rest-client"
24
+
25
+ s.add_development_dependency 'rake'
26
+ s.add_development_dependency "rspec"
27
+ s.add_development_dependency "rr"
28
+ s.add_development_dependency "simplecov"
29
+
30
+ end
@@ -0,0 +1,6 @@
1
+ require "geohex/version"
2
+ require "geohex/v3"
3
+
4
+ module Geohex
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,8 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ require "geohex/v3/zone"
4
+
5
+ module Geohex
6
+ module V3
7
+ end
8
+ end
@@ -0,0 +1,231 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ require 'ostruct'
4
+
5
+ module Geohex
6
+ module V3
7
+ class Zone
8
+
9
+ H_KEY = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
10
+ H_BASE = 20037508.34
11
+ H_DEG = Math::PI * (30.0 / 180)
12
+ H_K = Math.tan(H_DEG)
13
+
14
+ attr_reader :latitude, :longitude, :level, :code
15
+ attr_reader :x, :y
16
+ alias_method :lat, :latitude
17
+ alias_method :lon, :longitude
18
+
19
+ class << self
20
+ def encode latitude, longitude, level
21
+ instance = self.new
22
+ instance.encode latitude, longitude, level
23
+ end
24
+
25
+ def decode code
26
+ instance = self.new
27
+ instance.decode code
28
+
29
+ instance
30
+ end
31
+ end
32
+
33
+ def calcHexSize level
34
+ H_BASE / (3.0 ** (level + 1))
35
+ end
36
+
37
+ def loc2xy lon, lat
38
+ x = lon * H_BASE / 180
39
+ y = Math.log(Math.tan((90 + lat) * Math::PI / 360)) / (Math::PI / 180)
40
+ y = y * H_BASE / 180
41
+
42
+ OpenStruct.new :x =>x, :y => y
43
+ end
44
+
45
+ def xy2loc x, y
46
+ lon = (x / H_BASE) * 180
47
+ lat = (y / H_BASE) * 180
48
+ lat = 180.0 / Math::PI * (2.0 * Math.atan(Math.exp(lat * Math::PI / 180)) - Math::PI / 2)
49
+
50
+ OpenStruct.new :lon => lon, :lat => lat
51
+ end
52
+
53
+ def encode latitude, longitude, level = 7
54
+ raise ArgumentError, "latitude must be between -90 and 90" unless (-90..90).include? latitude
55
+ raise ArgumentError, "longitude must be between -180 and 180" unless (-180..180).include? longitude
56
+ raise ArgumentError, "level must be between 0 and 15" unless (0..15).include? level
57
+
58
+ @level = level
59
+ level += 2
60
+ h_size = calcHexSize(level)
61
+
62
+ z_xy = loc2xy(longitude, latitude)
63
+ lon_grid = z_xy.x
64
+ lat_grid = z_xy.y
65
+ unit_x = 6 * h_size
66
+ unit_y = 6 * h_size * H_K
67
+ h_pos_x = (lon_grid + lat_grid / H_K) / unit_x
68
+ h_pos_y = (lat_grid - H_K * lon_grid) / unit_y
69
+ h_x_0 = h_pos_x.floor
70
+ h_y_0 = h_pos_y.floor
71
+ h_x_q = h_pos_x - h_x_0
72
+ h_y_q = h_pos_y - h_y_0
73
+ h_x = h_pos_x.round
74
+ h_y = h_pos_y.round
75
+
76
+ if (h_y_q > (-h_x_q) + 1)
77
+ if((h_y_q < 2 * h_x_q) && (h_y_q > 0.5 * h_x_q))
78
+ h_x = h_x_0 + 1
79
+ h_y = h_y_0 + 1
80
+ end
81
+ elsif (h_y_q < (-h_x_q) + 1)
82
+ if ((h_y_q > (2 * h_x_q) - 1) && (h_y_q < (0.5 * h_x_q) + 0.5))
83
+ h_x = h_x_0
84
+ h_y = h_y_0
85
+ end
86
+ end
87
+
88
+ h_lat = (H_K * h_x * unit_x + h_y * unit_y) / 2
89
+ h_lon = (h_lat - h_y * unit_y) / H_K
90
+
91
+ z_loc = xy2loc(h_lon, h_lat)
92
+ z_loc_x = z_loc.lon
93
+ z_loc_y = z_loc.lat
94
+ if ((H_BASE - h_lon) < h_size)
95
+ z_loc_x = 180
96
+ h_xy = h_x
97
+ h_x = h_y
98
+ h_y = h_xy
99
+ end
100
+
101
+ h_code = ''
102
+ code3_x = []
103
+ code3_y = []
104
+ code3 = ''
105
+ code9 = ''
106
+ mod_x = h_x
107
+ mod_y = h_y
108
+
109
+ (level + 1).times do |i|
110
+ h_pow = (3 ** (level - i))
111
+
112
+ if (mod_x >= (h_pow / 2.0).ceil)
113
+ code3_x << 2
114
+ mod_x -= h_pow
115
+ elsif(mod_x <= -(h_pow / 2.0).ceil)
116
+ code3_x << 0
117
+ mod_x += h_pow
118
+ else
119
+ code3_x << 1
120
+ end
121
+
122
+ if (mod_y >= (h_pow / 2.0).ceil)
123
+ code3_y << 2
124
+ mod_y -= h_pow
125
+ elsif (mod_y <= -(h_pow / 2.0).ceil)
126
+ code3_y << 0
127
+ mod_y += h_pow
128
+ else
129
+ code3_y << 1
130
+ end
131
+ end
132
+
133
+ (code3_x.size).to_i.times do |i|
134
+ code3 = "#{ code3_x[i] }#{ code3_y[i] }"
135
+ code9 = code3.to_i(3).to_s
136
+ h_code += code9.to_s
137
+ end
138
+
139
+ h_2 = h_code.slice(3, h_code.size).to_s
140
+ h_1 = h_code.slice(0, 3).to_i
141
+ h_a1 = (h_1 / 30).to_i
142
+ h_a2 = h_1 % 30
143
+
144
+ @code = "#{ H_KEY.slice(h_a1) }#{ H_KEY.slice(h_a2) }#{ h_2 }"
145
+ @x = h_x
146
+ @y = h_y
147
+ @latitude = latitude
148
+ @longitude = longitude
149
+
150
+ @code
151
+ end
152
+
153
+ def decode code
154
+ level = code.length
155
+ @level = code.length - 2
156
+ h_size = calcHexSize(level)
157
+
158
+ unit_x = 6 * h_size
159
+ unit_y = 6 * h_size * H_K
160
+ h_x = 0
161
+ h_y = 0
162
+ h_dec9 = ((H_KEY.index(code.slice(0, 1)) * 30) + H_KEY.index(code.slice(1, 1))).to_s + code.slice(2, code.length)
163
+ if h_dec9.slice(0, 1).match(/[15]/) and h_dec9.slice(1, 1).match(/[^125]/) and h_dec9.slice(2, 1).match(/[^125]/)
164
+ if h_dec9.slice(0, 1) == "5"
165
+ h_dec9 = "7" + h_dec9.slice(1, h_dec9.length)
166
+ else
167
+ h_dec9 = "3" + h_dec9.slice(1, h_dec9.length)
168
+ end
169
+ end
170
+
171
+ d9xlen = h_dec9.length
172
+
173
+ (level + 1 - d9xlen).times do
174
+ h_dec9 = "0" + h_dec9
175
+ d9xlen += 1
176
+ end
177
+
178
+ h_dec3 = ""
179
+ d9xlen.times do |i|
180
+ h_dec0 = h_dec9.slice(i, 1).to_i.to_s(3)
181
+
182
+ if h_dec0.length == 1
183
+ h_dec3 += "0"
184
+ end
185
+ h_dec3 += h_dec0
186
+ end
187
+
188
+ h_decx = []
189
+ h_decy = []
190
+
191
+ (h_dec3.length / 2).times do |i|
192
+ h_decx << h_dec3.slice(i * 2, 1)
193
+ h_decy << h_dec3.slice(i * 2 + 1, 1)
194
+ end
195
+
196
+ (level + 1).times do |i|
197
+ h_pow = (3 ** (level - i))
198
+ case h_decx[i].to_i
199
+ when 0
200
+ h_x -= h_pow
201
+ when 2
202
+ h_x += h_pow
203
+ end
204
+
205
+ case h_decy[i].to_i
206
+ when 0
207
+ h_y -= h_pow
208
+ when 2
209
+ h_y += h_pow
210
+ end
211
+ end
212
+
213
+ h_lat_y = (H_K * h_x * unit_x + h_y * unit_y) / 2
214
+ h_lon_x = (h_lat_y - h_y * unit_y) / H_K
215
+
216
+ h_loc = xy2loc(h_lon_x, h_lat_y)
217
+
218
+ h_loc.lon -= 360 if (h_loc.lon > 180)
219
+ h_loc.lon += 360 if (h_loc.lon < -180)
220
+
221
+ @code = code
222
+ @x = h_x
223
+ @y = h_y
224
+ @latitude = h_loc.lat
225
+ @longitude = h_loc.lon
226
+
227
+ [@latitude, @longitude, @x, @y, @code]
228
+ end
229
+ end
230
+ end
231
+ end
@@ -0,0 +1,3 @@
1
+ module Geohex
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,579 @@
1
+ 32.70505659484853,140,0,XM
2
+ 0,0,0,OY
3
+ -11.469624951364336,179.99999999999997,0,GI
4
+ 11.469624951364349,180,0,QU
5
+ -22.492949287972568,-160.00000000000003,0,GH
6
+ -77.56429515669194,179.99999999999997,0,EU
7
+ -85.44459258668755,120,0,CI
8
+ -85.44459258668755,-80,0,BV
9
+ -49.88876303236152,-100.00000000000006,0,Fb
10
+ 67.44237810333283,-80,0,SV
11
+ 84.42893127178179,179.99999999999994,0,TO
12
+ 81.67153816651363,179.99999999999997,0,TK
13
+ 83.1877023714706,-40.000000000000036,0,bD
14
+ 74.81716117480471,119.99999999999997,0,ZA
15
+ 77.56429515669195,19.99999999999999,0,aX
16
+ 41.870676400014105,40,0,PZ
17
+ -49.88876303236152,60,0,OK
18
+ -78.36652525170464,-13.333333333333325,1,CZ3
19
+ -84.79037346855579,120,1,CI8
20
+ -85.12842640497867,180,1,DO0
21
+ -74.81716117480471,-173.33333333333331,1,EX2
22
+ -78.36652525170464,173.33333333333337,1,LK1
23
+ -49.88876303236154,60,1,OK4
24
+ -15.214003464478495,-173.33333333333331,1,GI3
25
+ -15.214003464478495,173.33333333333337,1,Mc1
26
+ 3.846110061441703,180,1,QU0
27
+ 15.214003464478509,-173.33333333333331,1,QU7
28
+ -15.214003464478495,-160,1,GH8
29
+ -7.674947601297844,0,1,OY0
30
+ -52.30522167274754,-93.33333333333326,1,Fb3
31
+ 32.70505659484853,140,1,XM4
32
+ 35.884127591325736,40,1,PZ0
33
+ 71.48066686818822,-86.66666666666666,1,SW6
34
+ 65.9192675132544,-73.33333333333333,1,SV3
35
+ 75.79318460548843,20.000000000000018,1,aX0
36
+ 79.11767176735405,20.000000000000018,1,aX8
37
+ 81.67153816651366,-33.33333333333335,1,aZ2
38
+ 84.42893127178182,180,1,TO4
39
+ 83.1877023714706,173.33333333333337,1,aB6
40
+ 81.09508214542126,173.33333333333337,1,aA1
41
+ 81.09508214542126,-173.33333333333334,1,TK3
42
+ 74.81716117480471,120.00000000000001,1,ZA4
43
+ 3.8461100614416903,-60,1,PA0
44
+ -84.79037346855579,-80.00000000000003,1,BV8
45
+ -85.12842640497867,131.1111111111111,2,CI76
46
+ -85.01824615280158,111.11111111111113,2,CI55
47
+ -85.01824615280158,-177.7777777777778,2,DO07
48
+ -85.01824615280158,177.77777777777774,2,KE05
49
+ -79.11767176735403,-175.55555555555554,2,EU06
50
+ -78.62242518007724,175.55555555555554,2,LK13
51
+ -26.00162686336427,-157.7777777777778,2,GH32
52
+ -48.20715710294776,51.1111111111111,2,OK51
53
+ -10.209543472783297,-177.77777777777777,2,GI47
54
+ -8.944451331547656,175.55555555555554,2,Mc53
55
+ 6.401642087003743,180,2,QU08
56
+ 6.401642087003718,-166.66666666666666,2,OC58
57
+ 20.10241692335465,173.33333333333334,2,XL60
58
+ 35.884127591325765,137.77777777777777,2,XM56
59
+ 22.492949287972593,128.88888888888889,2,PS62
60
+ 43.75284033840225,142.22222222222223,2,XX03
61
+ 40.9081556333403,46.66666666666667,2,PZ38
62
+ 35.884127591325736,40,2,PZ04
63
+ 40.9081556333403,33.33333333333333,2,PZ18
64
+ -12.72410877326099,0,2,OU88
65
+ 2.5651438499496004,-4.444444444444445,2,OY53
66
+ 3.846110061441703,-60,2,PA04
67
+ -51.51375829311735,-104.44444444444443,2,Fb17
68
+ -52.30522167274754,-93.33333333333337,2,Fb34
69
+ -44.672411393419424,-95.5555555555556,2,Fb86
70
+ -16.44831186596187,-166.66666666666666,2,GH58
71
+ 81.48362471150257,-164.44444444444446,2,TK63
72
+ 83.77015010087217,-177.7777777777778,2,TO07
73
+ 84.42893127178182,175.55555555555554,2,aE42
74
+ 80.47907085748827,175.55555555555554,2,aA02
75
+ 82.55108111056764,-35.555555555555536,2,bD31
76
+ 84.67256857383902,-51.11111111111112,2,bE73
77
+ 85.0182461528016,88.88888888888887,2,bb33
78
+ 85.12842640497868,179.99999999999994,2,TO84
79
+ 84.55210762141155,-177.7777777777778,2,TO47
80
+ 83.03381226166323,171.11111111111111,2,aB61
81
+ 73.41342238844585,120.00000000000003,2,ZA08
82
+ 78.62242518007724,11.111111111111107,2,aX55
83
+ 75.79318460548843,19.99999999999999,2,aX04
84
+ 76.40945269309518,33.33333333333335,2,YF58
85
+ 66.43743994246994,-80,2,SV40
86
+ 48.20715710294777,-108.88888888888889,2,RX15
87
+ -24.842889690285062,0,2,OU40
88
+ -85.12842640497867,-82.22222222222224,2,BV56
89
+ -85.055246359875,128.14814814814815,3,CI771
90
+ -85.09197243860311,179.25925925925932,3,KE045
91
+ -85.01824615280158,179.25925925925924,3,KE056
92
+ -84.9809697867981,-177.03703703703704,3,DO077
93
+ -84.9434152165899,-71.11111111111111,3,BV778
94
+ -85.055246359875,-82.22222222222224,3,BV568
95
+ -78.53774837153644,-11.851851851851855,3,CZ335
96
+ -76.60898893146053,175.55555555555554,3,LK570
97
+ -75.58174046495694,-175.55555555555554,3,EU868
98
+ -49.33454485016383,64.44444444444446,3,OK468
99
+ -0.4276628949350651,0.7407407407407408,3,OY443
100
+ -10.209543472783297,0,3,OY004
101
+ -47.344970082046466,-109.62962962962962,3,Fb526
102
+ -15.626274156012219,-166.66666666666666,3,GH588
103
+ -12.306605159163768,180,3,GI440
104
+ -11.469624951364336,-172.59259259259258,3,GI622
105
+ 6.826461637179052,-173.33333333333334,3,QU340
106
+ 3.8461100614416903,177.037037037037,3,XK026
107
+ 33.77808654808929,137.77777777777777,3,XM454
108
+ 22.492949287972593,128.88888888888889,3,PS624
109
+ 44.36748324231291,142.22222222222223,3,XX038
110
+ 40.25857226491307,135.55555555555557,3,XU630
111
+ 38.940540734971115,45.18518518518519,3,PZ342
112
+ 45.87616409528786,33.33333333333332,3,PZ580
113
+ 7.674947601297857,4.444444444444445,3,OY864
114
+ -3.419303491595713,-7.4074074074074066,3,OY145
115
+ 2.5651438499496133,-59.25925925925927,3,PA032
116
+ 27.90753234300438,-115.55555555555554,3,OI758
117
+ 67.7682415504757,-84.44444444444446,3,SV428
118
+ 67.11199113847319,-74.07407407407408,3,SV385
119
+ 77.09532905324006,23.70370370370368,3,aX355
120
+ 78.53774837153645,17.777777777777768,3,aX568
121
+ 83.62936132439059,-33.33333333333335,3,bD744
122
+ 83.53374630039932,-49.629629629629626,3,bD515
123
+ 85.05524635987501,89.62962962962966,3,bb337
124
+ 84.98096978679811,180,3,TO808
125
+ 84.51135351620655,175.55555555555554,3,aE428
126
+ 84.55210762141155,-177.7777777777778,3,TO474
127
+ 83.72356825638371,-177.03703703703698,3,TO073
128
+ 83.28841126938276,173.33333333333334,3,aB648
129
+ 70.50590211456444,97.77777777777777,3,YG168
130
+ -85.06751874496823,-76.54320987654322,4,BV7511
131
+ -85.03061013890785,-75.80246913580245,4,BV7541
132
+ -85.055246359875,178.02469135802468,4,KE0532
133
+ -84.88020043270879,-177.53086419753086,4,DO3203
134
+ -77.6255431823326,-170.61728395061726,4,EU6235
135
+ -78.3377438281995,171.60493827160496,4,LK1425
136
+ -47.92134973633546,64.69135802469134,4,OK7172
137
+ -78.92765772010968,-16.790123456790113,4,CZ0737
138
+ -55.251983655277314,-104.44444444444443,4,Fb0200
139
+ -45.07649961065172,-95.55555555555554,4,Fb8608
140
+ -23.149924898842006,-160.24691358024694,4,GH4405
141
+ -11.190070126580682,170.12345679012347,4,Mc2651
142
+ -1.4254091619935396,-177.28395061728392,4,OC2121
143
+ 17.946266278655543,-172.8395061728395,4,QU7871
144
+ 11.050191029226413,174.32098765432102,4,XK4212
145
+ -50.70830056151141,63.20987654320988,4,OK4362
146
+ -10.34981081126957,5.185185185185185,4,OX2538
147
+ 3.7038637783779045,-0.4938271604938276,4,OY5663
148
+ -0.14255547494137086,-60.49382716049383,4,OG6663
149
+ 35.420785913410434,44.938271604938265,4,PZ0631
150
+ 70.60082366755294,-82.96296296296296,4,SV8518
151
+ 81.09508214542126,-177.28395061728395,4,TK3246
152
+ 81.5047101156331,171.60493827160494,4,aA1825
153
+ 83.35472580926526,174.32098765432096,4,aB6727
154
+ 85.05524635987501,-171.60493827160496,4,TR1202
155
+ 82.92930196274219,-40.74074074074073,4,bD4054
156
+ 77.74714967960598,20.493827160493833,4,aX4486
157
+ 76.03603270206148,117.53086419753089,4,ZA5685
158
+ 35.420785913410434,139.7530864197531,4,XM4881
159
+ 40.25857226491307,135.06172839506175,4,XU6302
160
+ 43.546541711503515,143.2098765432099,4,XX0337
161
+ 32.82493120891863,151.60493827160496,4,XM6425
162
+ 22.62459744062219,129.62962962962962,4,PS6270
163
+ -85.07976074632226,-79.42386831275724,5,BV80302
164
+ -85.04704785300429,-78.93004115226337,5,BV80373
165
+ -84.93083484773156,-179.50617283950618,5,DO08354
166
+ -84.9601406144117,178.27160493827157,5,KE05758
167
+ -78.72508109998212,-176.1316872427984,5,EU31135
168
+ -77.47186327705677,177.6131687242798,5,LK45042
169
+ -78.21221081913176,-15.47325102880659,5,CZ35087
170
+ -54.569097632502626,64.36213991769546,5,OK06445
171
+ -46.33739563508728,-100.164609053498,5,Fb80457
172
+ -17.674819831740678,-160.65843621399182,5,GH80422
173
+ -7.156617561633078,-172.75720164609058,5,GI74753
174
+ -6.496077810333859,178.51851851851848,5,Mc80240
175
+ 2.612613889744312,176.70781893004116,5,XK01265
176
+ 18.487906116222756,-174.81481481481487,5,QU86344
177
+ 4.556967978746024,9.87654320987654,5,OY77334
178
+ -2.422723288518337,-9.1358024691358,5,OY15454
179
+ 3.466736260749132,-60.493827160493815,5,PA04170
180
+ 21.921032689851973,127.98353909465017,5,PS62113
181
+ 24.454191557293267,133.90946502057614,5,PS68342
182
+ 37.63518586440209,145.84362139917695,5,XM78145
183
+ 34.99370111793707,138.35390946502056,5,XM48257
184
+ 43.546541711503515,141.3991769547325,5,XX03156
185
+ 43.062423615808804,43.62139917695472,5,PZ47685
186
+ 66.49436163127307,-78.7654320987654,5,SV40654
187
+ 25.702285927321487,-115.22633744855965,5,OI71873
188
+ 76.99947013952956,19.012345679012363,5,aX40264
189
+ 74.96578743743133,118.84773662551439,5,ZA44552
190
+ 83.27729497862227,-38.68312757201646,5,bD47117
191
+ 82.02192059895748,172.26337448559673,5,aA51615
192
+ 82.02192059895748,-174.40329218107001,5,TK71615
193
+ 84.32651565973768,-173.58024691358025,5,TO38458
194
+ 85.04294351619683,173.33333333333337,5,aE58484
195
+ -85.03609541431689,-88.4224965706447,6,BV553581
196
+ -85.02099635433396,118.46364883401921,6,CI802417
197
+ -85.11090833582553,124.11522633744853,6,CI750110
198
+ -85.14051760404581,177.8875171467764,6,KE018862
199
+ -85.04978219412602,178.24417009602195,6,KE053505
200
+ -85.01824615280158,-177.119341563786,6,DO074664
201
+ -78.13429857495768,-16.51577503429356,6,CZ351822
202
+ -77.84425402866793,176.13168724279836,6,LK412420
203
+ -77.15180611673658,-173.6076817558299,6,EU708101
204
+ -44.58222868649629,60.82304526748971,6,OK847038
205
+ -21.626844357539948,-166.99588477366254,6,GH501658
206
+ -3.8461100614416903,179.01234567901233,6,Mc842644
207
+ -4.9200310051179015,-176.48834019204386,6,GI836575
208
+ 6.669163764467299,-174.32098765432096,6,QU316588
209
+ 9.476049692387006,174.78737997256516,6,XK175485
210
+ -48.449371535419765,-96.68038408779142,6,Fb711277
211
+ 4.556967978746024,2.469135802469136,6,OY728344
212
+ 2.470198516809545,-60.466392318244175,6,PA016372
213
+ 10.131590386552373,180,6,QU408880
214
+ 32.55832421354656,138.87517146776406,6,XM442337
215
+ 21.935726236625015,127.62688614540467,6,PS387785
216
+ 43.83287620143813,143.07270233196158,6,XX037037
217
+ 39.63929461614907,36.927297668038406,6,PZ173676
218
+ 65.8026708623787,-78.38134430727023,6,SV321726
219
+ 39.773338334546146,-104.6639231824417,6,PC828583
220
+ 24.382077991931016,-114.51303155006859,6,OI713375
221
+ 82.4038568826114,-40.082304526749,6,bD080050
222
+ 78.90329568451087,18.271604938271615,6,aX817100
223
+ 75.49471609617443,123.04526748971193,6,ZA712478
224
+ 81.06807090685717,179.39643347050756,6,aA166315
225
+ 82.83509514206584,-177.09190672153633,6,TK873482
226
+ 84.2508548924535,-177.09190672153625,6,TO433402
227
+ 85.00585148249067,175.00685871056243,6,aE586342
228
+ 85.03883578676745,88.42249657064474,6,bb335332
229
+ -85.04750368112704,-79.67078189300406,7,BV8032788
230
+ -85.05114879997076,128.01097393689983,7,CI7714524
231
+ -85.05251502947527,177.21993598536804,7,KE0514686
232
+ -85.05069330650984,177.3662551440329,7,KE0517300
233
+ -85.05205966144965,-177.3571101966164,7,DO0732687
234
+ -85.05023777122953,-177.39368998628257,7,DO0732768
235
+ -78.20681658015287,-179.46959304983994,7,EU4031833
236
+ -76.32483001774261,-179.817101051669,7,EU8072131
237
+ -75.6434006236876,174.55875628715137,7,LK8255485
238
+ -78.06134107808937,-13.360768175582997,7,CZ3800810
239
+ -52.26646412714779,56.424325560128025,7,OK1624776
240
+ -47.31992145629309,68.02926383173298,7,OK7464515
241
+ -48.45987650641166,-104.59076360310928,7,Fb5316746
242
+ -51.834628009147735,-99.14037494284412,7,Fb4033527
243
+ -21.454956946828297,-162.24965706447188,7,GH4540858
244
+ -12.383971425939675,-178.76543209876544,7,GI4351804
245
+ -4.0989331724795255,-177.53086419753086,7,GI8387484
246
+ 4.330617601639888,-177.1833561957019,7,QU0706771
247
+ 14.714128073890608,-179.99085505258344,7,QU4884047
248
+ 19.172525248647407,174.42158207590305,7,XK8251271
249
+ 5.267123667292918,-60.82304526748971,7,PA0565644
250
+ 6.16022759188225,0.576131687242797,7,OY8320288
251
+ -2.106180802162651,4.215820759030636,7,OY3556486
252
+ 45.333181571987915,39.725651577503434,7,PZ8016814
253
+ 39.907121529314956,36.21399176954731,7,PZ1746604
254
+ 22.42951839128782,128.4042066758116,7,PS6242083
255
+ 35.819935413610864,137.89666209419295,7,XM5643552
256
+ 40.214236183804,135.7475994513032,7,XU6303820
257
+ 38.20164704742394,145.67901234567904,7,XM7851800
258
+ 43.86333785879606,142.12162780064014,7,XX0345653
259
+ 30.851511008998052,156.14083219021487,7,XM6306347
260
+ 21.454956946828297,178.85688157293094,7,XK8827707
261
+ 42.03559230187854,35.15317786922726,7,PZ4253332
262
+ 30.92400736452902,-116.4883401920439,7,OI8776718
263
+ 41.135210942868746,-95.40009144947416,7,PF2148656
264
+ 75.40983806367858,118.12528577960678,7,ZA4587731
265
+ 66.7915979463581,-77.33882030178327,7,SV4335020
266
+ 69.72847884541945,-86.61179698216738,7,SV5843218
267
+ 76.01563273022674,23.90489254686786,7,aX0682573
268
+ 78.67023811301752,17.80521262002741,7,aX8100870
269
+ 83.19521359504485,-41.48148148148148,7,bD4424804
270
+ 84.18168672552544,-48.98948331047094,7,bE6100113
271
+ 81.87401287786506,171.91586648376767,7,aA5027217
272
+ 81.87326653740467,-172.62002743484226,7,TK7070414
273
+ 84.40581802575272,-171.21170553269323,7,TO6240542
274
+ 84.95967676595735,-170.50754458161867,7,TO7775738
275
+ 85.00768966906308,171.78783721993594,7,aE5821675
276
+ 85.05114879997076,89.41929583904891,7,bb3371862
277
+ -85.05099697346348,-86.48376771833561,8,BV54870250
278
+ -84.89431593312257,-74.9672306050907,8,BV78253862
279
+ -84.95936750999883,116.01585124218866,8,CI57758513
280
+ -85.05114879997076,125.85886297820451,8,CI75600226
281
+ -85.04735174306921,179.38424020728547,8,KE05603615
282
+ -85.04461606279176,-178.93918609967994,8,DO07152160
283
+ -78.0252444701795,178.41792409693645,8,LK41063674
284
+ -76.78353577417859,-179.38119189147997,8,EU72201265
285
+ -78.27818254539632,-12.30300259106843,8,CZ34762511
286
+ -50.73615525197652,-94.92150586800796,8,Fb38241503
287
+ -48.05798249478465,58.97881420515164,8,OK48511367
288
+ -16.05801314654258,-177.97286998933092,8,GI32042116
289
+ -8.506078730486957,-175.86648376771834,8,GI71565064
290
+ -21.289426163285523,-162.42341106538638,8,GH45442518
291
+ -5.014711132428624,6.947111720774272,8,OY33228746
292
+ 2.8112649508743917,-59.06416704770615,8,PA03278283
293
+ 11.177984463616795,175.0769699740893,8,XK42174351
294
+ 12.28425065422217,-179.20438957475994,8,QU47122108
295
+ 29.229032433819672,140.97546105776559,8,XM32230826
296
+ 35.235560418824775,138.43316567596403,8,XM56301016
297
+ 21.453318946417433,129.7271757354062,8,PS61272751
298
+ 31.117062330967663,153.37296143880505,8,XM60832123
299
+ 40.581479285547495,134.29660112787687,8,XU63124187
300
+ 43.508260508407346,141.77107148300564,8,XX03173236
301
+ 41.37601173942487,47.1086724584667,8,PZ38755703
302
+ 46.004671100980865,36.12863892699283,8,PZ57757416
303
+ -39.85174798739916,-129.63572626124065,8,Fc51504013
304
+ 0.7022008550131252,-58.3600060966316,8,OW22586402
305
+ 36.09345953973502,-111.351928059747,8,PC52458806
306
+ 66.82209536122706,-93.77533912513334,8,SV20852101
307
+ 77.61799779414096,24.60905349794241,8,aX46486040
308
+ 74.95939479445362,129.37661941777165,8,ZA62754057
309
+ 83.44032235192313,-52.03170248437738,8,bD28367162
310
+ 80.76072843510799,177.89056546258192,8,aA05722747
311
+ 82.50462047799635,-178.85383325712542,8,TK83151057
312
+ 83.83815019303304,-176.04023776863286,8,TO31130720
313
+ 84.61506920309282,172.0073159579332,8,aE51331450
314
+ 85.04932657519551,88.85840573083371,8,bb33488116
315
+ -85.02069085118825,-80.5080526342529,9,BV804240512
316
+ -85.25892235752575,126.56200782401055,9,CI708565326
317
+ -84.99009715358707,124.453589391861,9,CI754848748
318
+ -84.96312883886038,176.7921556673271,9,KE055580431
319
+ -85.05064269354392,178.51140578163896,9,KE053480025
320
+ -85.05064269354392,-177.23111314332166,9,DO073506567
321
+ -78.34947806021368,-12.656607224508448,9,CZ347013544
322
+ -77.91557130594418,178.59371030838793,9,LK413474586
323
+ -78.0620691964047,-175.7811309251639,9,EU354580674
324
+ -48.92264328551308,61.87471422039323,9,OK474555348
325
+ -47.9901039539973,-99.84351978865016,9,Fb484868583
326
+ -25.800037734013387,-165.93710308387952,9,GH147081657
327
+ -9.797044998389046,-170.64675100340395,9,GI730641802
328
+ -6.316518377294901,176.6976578773561,9,Mc576514101
329
+ -8.406852481197332,-0.7031448458060258,9,OY041035522
330
+ 2.810093065032651,-4.005486968449931,9,OY537117080
331
+ 9.100307229345306,-61.66133211400701,9,PA402570238
332
+ 6.315352201442765,177.89056546258192,9,XK058877078
333
+ 17.97695943266528,-179.43504547071078,9,QU832828267
334
+ 40.979941869938415,45.35182644922014,9,PZ382714446
335
+ 36.5981065089872,36.21094345374179,9,PZ028668414
336
+ 20.96054525607148,127.83010719910583,9,PS383657231
337
+ 30.447757019883404,151.73703195651072,9,XM602176827
338
+ 34.88453418992268,138.3772798861962,9,XM482452815
339
+ 43.324172591538805,142.59614896103236,9,XX033123366
340
+ 28.611823502104176,-115.09932428999643,9,OI860616105
341
+ 46.315519731164905,-108.77102067774223,9,RX114077466
342
+ 66.51330668794105,-76.28918355941674,9,SV355072242
343
+ 70.84427362032683,98.29903978052126,9,YG413103084
344
+ 75.49677307800924,121.5028196921201,9,ZA486483578
345
+ 77.54216784091535,16.87547629934462,9,aX426174078
346
+ 78.49020322752219,27.28344256464972,9,aX747576237
347
+ 81.51821910339622,173.32012396484274,9,aA184816376
348
+ 83.82976960028402,-175.91932124168062,9,TO310523631
349
+ 84.40576083787137,176.34608545445306,9,aE423806423
350
+ 84.89703001315176,87.40029467052783,9,bb303856635
351
+ 85.0496809490896,176.89071787837224,9,aE815178640
352
+ 65.94654074919876,-84.37501058442986,10,SV1700305142
353
+ -85.05111506114845,-87.02264221239982,10,BV5482764471
354
+ -85.05017028096445,-74.02597842469812,10,BV7560068257
355
+ -85.14129611826941,110.74226489864347,10,CI5263615540
356
+ -85.1114082947234,123.39853342139577,10,CI7265571616
357
+ -85.08135383503867,124.10167826720179,10,CI7505181555
358
+ -85.05111506114845,116.71865738623856,10,CI5736546251
359
+ -85.11142495914162,176.48427577096982,10,KE0273028158
360
+ -85.05113193058828,178.94528273129094,10,KE0536546500
361
+ -85.05113193058828,-177.89056546258197,10,DO0716764500
362
+ -78.20657677972486,179.64842757709698,10,LK4016113514
363
+ -76.95200706545712,178.87855848532573,10,LK4827777232
364
+ -76.67125372443621,-173.73875933546714,10,EU7445272188
365
+ -51.1793357370083,56.6014665786042,10,OK1777354303
366
+ -78.4202281335297,-14.765703060170377,10,CZ3420476772
367
+ -50.95852020163508,-97.03127910718223,10,Fb4334484641
368
+ -15.961399068408907,-166.99215905434468,10,GH5856584625
369
+ -14.569012270261892,176.24176531355312,10,Mc1730824803
370
+ -8.059072046057983,-177.18742061677594,10,GI7234521114
371
+ 10.487900363316657,-174.37484123355176,10,QU3851424320
372
+ 17.97881945245889,176.48427577096982,10,XK8152020110
373
+ 3.8640599125684467,-61.17190807634337,10,PA0426257051
374
+ 0,-4.218869074836153,10,OY4244664644
375
+ 2.848178749868688,8.194888990499416,10,OY7353226324
376
+ -3.864255017562445,6.679876035157243,10,OY3444432334
377
+ 17.308706606781136,178.94528273129094,10,XK8136543688
378
+ 20.749483042625016,-179.58339683991264,10,QU8831183154
379
+ 21.77982496043273,129.37492590899083,10,PS6206841033
380
+ 27.326562730623966,139.10785957425188,10,XM0565771230
381
+ 34.69969443229734,141.56886653457298,10,XM4863207510
382
+ 43.28817039237169,142.97515622618502,10,XX0330807788
383
+ 30.858393806487317,152.6430591542617,10,XM6054354111
384
+ 40.17883606392535,31.28892953309963,10,PZ1548687734
385
+ 45.91563178433442,43.482870158681784,10,PZ7555070851
386
+ 27.839078765848246,-115.84006503073718,10,OI7581576564
387
+ 47.989842206759874,-108.28125793832243,10,RX1535370770
388
+ 67.74277620854204,-72.77345933038661,10,SV7031782060
389
+ 71.30076217120532,-85.95708648749344,10,SW6431665682
390
+ 76.63925321468737,17.402496231942973,10,aX1617612856
391
+ 78.48040532816346,21.158698707852803,10,aX7255422107
392
+ 75.40885284001867,127.61706379447577,10,ZA7323011017
393
+ 80.13997185555716,178.4829548341208,10,aA0130411728
394
+ 82.4189123646549,-179.4076106284611,10,TK8071386820
395
+ 84.38379583319873,-179.40794933021726,10,TO4434206021
396
+ 85.05113193058828,89.06467510034044,10,bb3372146218
397
+ -85.02070782407576,-85.42972785313896,11,BV57264048634
398
+ -85.02070782407576,114.25776332650283,11,CI57246068382
399
+ -85.02070782407576,177.89056546258192,11,KE05443747884
400
+ -85.08135942391766,-178.94528273129094,11,DO04773823048
401
+ -85.08135942391766,-178.94528273129094,11,DO04773823048
402
+ -85.05113193058828,-179.29685515419396,11,DO07200264504
403
+ -78.20655013493614,-13.007840945655294,11,CZ34837816828
404
+ -77.69287316941559,174.0233817112342,11,LK18781747622
405
+ -77.28205417737901,-177.18990442965446,11,EU47467037811
406
+ -53.33088399648072,-102.6562120724596,11,Fb05827021141
407
+ -47.75412569895254,62.57808486737005,11,OK72311284586
408
+ -20.30343065964378,-168.04687632305365,11,GH51383310718
409
+ -10.351477994498591,-177.8930492754605,11,GI47416263465
410
+ -3.3751218876783606,-177.8930492754605,11,GI87045185255
411
+ 4.002573029443388,-177.8930492754605,11,QU07002763476
412
+ 20.055949967827992,179.91216334456695,11,XK85663663436
413
+ 18.562938073608677,178.41792409693645,11,XK84201138888
414
+ 22.106011968040356,128.23248488543416,11,PS62147032100
415
+ 26.947715856243768,146.15974303826766,11,XM30178015132
416
+ 29.884656543260686,153.10312903972408,11,XM60054311737
417
+ 32.99019885298108,139.74608658345892,11,XM44560457183
418
+ 36.00128269884677,137.72223068976615,11,XM56456700534
419
+ 43.3251683966725,141.67973490942552,11,XX03131786872
420
+ 38.822566699114795,38.67183751347751,11,PZ16386410216
421
+ 28.11665750014962,-113.82072516045996,11,OI78178446320
422
+ 46.412184656537676,-106.08635765776444,11,RX13217487787
423
+ 66.23147555689933,-80.15625441017913,11,SV40163034106
424
+ 77.15715356553575,18.281201488029684,11,aX41314430862
425
+ 75.14076576175513,120.93752646107471,11,ZA47238521110
426
+ 81.06017353309196,170.9449214494177,11,aA11857485652
427
+ 81.48680964730961,-179.91453425686012,11,TK43222807032
428
+ 83.54984670370604,-178.24213788548494,11,TO03574622544
429
+ 84.73838771967266,172.35358205332295,11,aE54114446763
430
+ 85.05041774078212,88.15977690844329,11,bb33540877533
431
+ -85.0506539409143,-79.82665996789856,12,BV803254745602
432
+ -85.05112818182883,120.70679529806696,12,CI803456424553
433
+ -85.05207465365511,178.8683974326407,12,KE053652024200
434
+ -85.05113005620892,178.93433137450816,12,KE053654462750
435
+ -85.05113005620892,-178.25316450932462,12,DO071704644727
436
+ -79.4452281268277,-13.70233007991481,12,CY281612610161
437
+ -77.91566682955617,172.96873970958208,12,LK181655132036
438
+ -76.18499280856993,-179.29689278772244,12,EU832016181016
439
+ -57.36436071706729,-102.999204050873,12,FY636801583240
440
+ -49.8379914216003,61.87501528862095,12,OK446658243285
441
+ -27.745624883854536,-162.06171522332676,12,GH058068815001
442
+ -13.30821393540185,177.54768638475392,12,Mc410587505268
443
+ -2.881445728338333,-178.2335950745238,12,GI871735246286
444
+ 10.418820497790831,-175.42109095835661,12,QU460311054340
445
+ 13.855307445928876,176.14139669314187,12,XK533828300764
446
+ -5.615990333705467,4.921863386528326,12,OY313181386161
447
+ 4.845926929147412,0.3601528673926176,12,OY803527038734
448
+ 3.513407610346112,-59.765618384731326,12,PA043284261600
449
+ 35.403520413948364,44.65703624673294,12,PZ060785824214
450
+ 22.593728295005597,128.32032154086718,12,PS625060382624
451
+ 28.860201911665968,144.85235425945686,12,XM317558565378
452
+ 29.47417206661665,153.99297382023593,12,XL822458403751
453
+ 42.50140031192322,143.09452977847025,12,XP251226173262
454
+ 26.368400819214855,-113.89764809263869,12,OI745463230145
455
+ 43.52956234887475,-107.92106743740132,12,RU681285781273
456
+ 66.37275241126041,-76.99217787110894,12,SV352321156833
457
+ 74.49641524173614,116.71873265329549,12,ZA412658306821
458
+ 77.15715839512343,18.632811544461198,12,aX413323833627
459
+ 82.11838119136951,-43.59373853353431,12,bD023073480358
460
+ 82.26169903937593,175.07813661347168,12,aA570232153327
461
+ 82.29949945404425,-179.99141955551048,12,TK800808780528
462
+ 84.11778702185453,-177.5304502287178,12,TO328348003525
463
+ 84.76413166644133,178.95390080930906,12,aE563763855337
464
+ 85.05089012980277,88.98101576656671,12,bb337212207184
465
+ -85.02070782407576,-79.45312210888258,13,BV8046354823266
466
+ -84.99010031598158,113.55468120324429,13,CI5803560714155
467
+ -85.05397142670375,179.60449670487097,13,KE0482706175341
468
+ -85.05302344313857,179.60449670487097,13,KE0482731186381
469
+ -85.05207652767761,179.7692813815018,13,KE0485035421662
470
+ -85.05207652767761,179.81323734274676,13,KE0485060618642
471
+ -85.05018090449299,179.81323734274676,13,KE0485068654767
472
+ -85.05207652767761,-179.04967813924776,13,DO0712537663424
473
+ -85.05112880662227,-179.0441961886016,13,DO0712564265481
474
+ -77.50412004123892,177.36328209528438,13,LK4501241604860
475
+ -75.97257900135345,-179.8485752259736,13,EU8407181150325
476
+ -78.90392851824576,-12.304683555339782,13,CZ3061211527483
477
+ -49.83798675049283,-97.38281389655668,13,Fb4625116215430
478
+ -47.27922833623412,61.52344286571794,13,OK7250326542858
479
+ -22.593728295005608,-166.28906438657657,13,GH4221515066426
480
+ -11.523081594188353,178.2421880635229,13,Mc4421818162227
481
+ -2.460176832420581,-179.29688024321294,13,GI8724851414563
482
+ 9.44905955464004,-179.29688024321294,13,QU4074815410453
483
+ 20.63278322541268,179.296880243213,13,XK8810462030471
484
+ 3.513422068272812,-60.820310564421405,13,PA0414822216031
485
+ -0.35155967220222734,-3.1640639945607014,13,OY4236836048713
486
+ 0.3555792253075448,6.303766551696238,13,OY7001555744550
487
+ 31.353642691994537,137.46094110164628,13,XM4117607703260
488
+ 22.593721608280728,129.3750011760478,13,PS6246856326218
489
+ 29.232394838443412,153.60845951541816,13,XL5887834871345
490
+ 42.81446731196279,142.0068957168654,13,XX0066438378463
491
+ 42.55307759789627,38.67187514700597,13,PZ4537105130820
492
+ 27.997949854465656,-116.74310663523015,13,OI8337351073052
493
+ 46.3193563989732,-108.30560683123804,13,RX1135780670728
494
+ 66.93005958856028,-80.50781428857267,13,SV4163853373183
495
+ 76.92061301619422,20.742183359331843,13,aX4034808877353
496
+ 75.14077876301411,121.28906125044925,13,ZA4726354081160
497
+ 82.5861070130518,-40.429687083483095,13,bD0853382488383
498
+ 81.92318725325978,168.74999607984083,13,aA2756770452053
499
+ 82.16644549708819,-172.61719237569795,13,TK7434850466772
500
+ 83.90548470121078,-179.32122913612866,13,TO0846631354832
501
+ 84.60821834245287,179.6240786841813,13,aE4805277813220
502
+ 85.05109881644849,88.67683650050841,13,bb3356324634667
503
+ -84.99010031598158,-79.45312629038575,14,BV80717180121576
504
+ -85.14128384950676,118.1250014373917,14,CI56436210413512
505
+ -85.08136459879998,118.82812537568195,14,CI56773820550701
506
+ -85.03594145592328,121.11328340200407,14,CI80611150250021
507
+ -85.05112880662227,177.5390641252327,14,KE05167224507116
508
+ -85.03594145592328,177.71484615518105,14,KE05405867244763
509
+ -85.05136559766956,-178.33969235426784,14,DO07170215584802
510
+ -85.05124730768841,-178.33969235426784,14,DO07170226100057
511
+ -85.05101030272562,-178.33969235426784,14,DO07170227640163
512
+ -78.34941078146068,178.15429704854873,14,LK16473602511456
513
+ -78.09010038610904,-178.18243020182652,14,EU40673078217161
514
+ -78.49055150369068,-15.468751731403659,14,CZ31831222362536
515
+ -53.330873904311716,-97.03124983666004,14,Fb31200035818717
516
+ -49.92565546027554,58.594914581298774,14,OK44243402806508
517
+ -8.407170118467867,-2.8124999346640127,14,OY01571576207503
518
+ 4.079240169372639,-1.1707079849357165,14,OY56733420402656
519
+ -15.961327113736004,-159.60937651906167,14,GH84065825033010
520
+ -10.621567107054151,173.9074160840265,14,Mc50342481388451
521
+ -5.751378038946543,-173.43633630073705,14,GI78081171860100
522
+ 5.480563953528032,-174.13946023902727,14,QU30541311610415
523
+ 12.421722939346756,179.5324159533545,14,XK44828780263624
524
+ 5.615985528497132,-58.35937468965406,14,PA07571045254517
525
+ 21.162545692441366,127.50116507131868,14,PS38383877824230
526
+ 28.184519988899293,145.07928861759297,14,XM31385143063872
527
+ 29.416780398005393,155.62616441795882,14,XL82447011727335
528
+ 41.93183305535667,141.56366474463874,14,XP22503400845082
529
+ 38.27268968795205,34.45312315425837,14,PZ13526267300787
530
+ 28.184519988899318,-112.9675856147092,14,OI78437338044154
531
+ 44.49349196120463,-106.63946180709095,14,RU68880348017456
532
+ 65.3100644125332,-84.84258626806907,14,SV13411223332736
533
+ 77.28260266195558,24.844915365330607,14,aX38226176387034
534
+ 74.01954369731402,123.04687318692636,14,ZA35122807551718
535
+ 82.85338216634169,-37.96875120871575,14,bD32858648748733
536
+ 81.51827215930582,175.07812406896218,14,aA18678460283758
537
+ 81.30832083644431,-177.18750006533594,14,TK35253726505866
538
+ 84.11102995385924,-175.5457122971108,14,TO35083224064751
539
+ 84.52840268072897,177.42303995698072,14,aE45177603556405
540
+ 85.0501290364617,88.7193205726401,14,bb33563401287846
541
+ 85.0511285983578,88.70249838541709,14,bb33563422636071
542
+ -85.05491832726936,-80.24414124365012,15,BV801644720107680
543
+ -85.05112880662227,-80.24414124365016,15,BV801672224571144
544
+ -85.0435409337982,-76.8164069918357,15,BV752066087034602
545
+ -84.92832089229395,113.2031255063539,15,CI584051202811030
546
+ -85.05112880662227,178.70361275600987,15,KE053702425073344
547
+ -85.05101030272562,178.62121623619137,15,KE053474671871414
548
+ -85.05112873720078,-179.47265669782374,15,DO048672464801367
549
+ -85.04923289070342,-179.49462910310865,15,DO048680771383421
550
+ -78.63000548385058,-16.87499960798409,15,CZ312460160330640
551
+ -76.99993502220802,178.59374933575083,15,LK482446631807432
552
+ -77.69287042493717,-179.64843733393772,15,EU443120677000135
553
+ -48.224673018823516,61.171874624318086,15,OK486263022716030
554
+ -47.75409810634945,-101.60156310163558,15,Fb563137601173436
555
+ -24.52713509115225,-160.31250045735192,15,GH405610617770460
556
+ -10.627811533740404,175.5841166159903,15,Mc428447007470857
557
+ -8.895519993960713,-174.9236955818307,15,GI714676472576137
558
+ 9.655313810029215,-177.73619551649472,15,QU430846555413857
559
+ 13.453736454342776,177.18750006533597,15,XK455868523435074
560
+ 28.613458944989343,144.49218745372033,15,XM314886135481601
561
+ 22.268763871961657,129.02343711615106,15,PS624076167125758
562
+ 30.401660908330708,155.41321858173586,15,XL828827023882162
563
+ 42.771513349093496,142.756969572665,15,XP252183615213788
564
+ -0.35155967220222734,-0.35156266606230013,15,OY441655876848342
565
+ 0.6485910111569012,-2.438343213179931,15,OY450583438341310
566
+ 1.4061087624421291,-59.41406268784096,15,PA007023204648554
567
+ 27.01056357503122,-115.28990605347154,15,OI754343508378851
568
+ 47.98992137736064,-108.63281224137836,15,RX153284780083552
569
+ 44.33956527784659,32.695312611615634,15,PZ541437131806627
570
+ 65.07213005846185,-80.85937416696618,15,SV081012647253500
571
+ 73.82482041043065,116.71874937930812,15,ZA162768706170274
572
+ 78.27820151012904,16.171874275859466,15,aX538661552510561
573
+ 83.40004212473188,-38.67187514700599,15,bD475537206875044
574
+ 82.30889241261167,176.13281206714908,15,aA573170435224014
575
+ 82.07002829250126,-177.89062539746055,15,TK720137660817775
576
+ 83.89926648794052,-177.8680313420388,15,TO078855632751174
577
+ 84.50259507567017,-179.97740594457824,15,TO448407012467243
578
+ 84.86090063565264,178.96790605723493,15,aE801157747467437
579
+ 85.05112505786047,89.37952974397285,15,bb337184418811744