-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFiberDB-Data.sql
More file actions
320 lines (318 loc) · 55.9 KB
/
FiberDB-Data.sql
File metadata and controls
320 lines (318 loc) · 55.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
USE [FiberDB]
GO
-- Skapar administrator konto
INSERT INTO [dbo].[User](Name, Username, Description, IsAdmin) VALUES ('Administrator', 'admin', '', true)
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('HouseYes', 'HouseYes.png', 'HouseYes.png', 'Fastighet skall ha fiber')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('HouseMaybe', 'HouseNotDecided.png', 'HouseNotDecided.png', 'Fastighet osäker om de skall ha fiber')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('HouseNo', 'HouseNo.png', 'HouseNo.png', 'Fastighet skall inte ha fiber')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('HouseNotContacted', 'HouseNotContacted.png', 'HouseNotContacted.png', 'Fastighet inte kontaktad')
-- Fastigheter som inte har fiber, visas på den publika kartan. Motsvarar HouseNo och HouseNotContacted --
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('HouseNoFiber', 'HouseNoFiber.png', 'HouseNoFiber.png', 'Fastighet skall inte ha fiber')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('FiberNode', 'FiberNode.png', 'FiberNode.png', 'Central fibernod')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('FiberBox', 'FiberBox.png', 'FiberBox.png', 'Kopplingsskåp')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('RoadCrossing_Existing', 'RoadCrossing_Existing.png', 'RoadCrossing_Existing.png', 'Befintlig väggenomgång')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('RoadCrossing_ToBeMade', 'RoadCrossing_ToBeMade.png', 'RoadCrossing_ToBeMade.png', 'Väggenomgång som skall göras')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('Fornlamning', 'Fornlamning.png', 'Fornlamning.png', 'Fornlämning')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('Observe', 'Observe.png', 'Observe.png', 'Känslig plats, iaktag försiktighet')
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('Note', 'Note.png', 'Note.png', 'Info-ruta')
-- Övriga okända symboler, allt som inte matchar de ovanför. --
INSERT INTO [dbo].[MarkerType](Name, SourceIcon, DestIcon, Description) VALUES ('Unknown', 'UnknownSymbol.png', 'UnknownSymbol.png', 'Okänd markör')
GO
-- Kommuner. --
PRINT 'Inserting values into [Municipality]'
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0114', N'Upplands Väsby', N'SWEREF 99 18 00', N'59.51961', N'17.928339999999935')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0115', N'Vallentuna', N'SWEREF 99 18 00', N'59.53569999999999', N'18.078017000000045')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0117', N'Österåker', N'SWEREF 99 18 00', N'59.47811499999999', N'18.766665999999987')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0120', N'Värmdö', N'SWEREF 99 18 00', N'59.314449', N'18.39852810000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0123', N'Järfälla', N'SWEREF 99 18 00', N'59.410065', N'17.83680400000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0125', N'Ekerö', NULL, N'59.28951550000001', N'17.81005289999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0126', N'Huddinge', N'SWEREF 99 18 00', N'59.23633', N'17.982156099999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0127', N'Botkyrka', N'SWEREF 99 18 00', N'59.2459411', N'17.840858300000036')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0128', N'Salem', N'SWEREF 99 18 00', N'59.2', N'17.766666699999973')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0136', N'Haninge', N'SWEREF 99 18 00', N'59.1827236', N'18.151090599999975')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0138', N'Tyresö', N'SWEREF 99 18 00', N'59.2425954', N'18.28339189999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0139', N'Upplands-Bro', N'SWEREF 99 18 00', N'59.5094727', N'17.614411700000005')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0140', N'Nykvarn', N'SWEREF 99 18 00', N'59.178177', N'17.427816000000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0160', N'Täby', N'SWEREF 99 18 00', N'59.4419', N'18.070329899999933')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0162', N'Danderyd', N'SWEREF 99 18 00', N'59.413708', N'18.045147000000043')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0163', N'Sollentuna', N'SWEREF 99 18 00', N'59.43911', N'17.941479999999956')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0180', N'Stockholm', N'SWEREF 99 18 00', N'59.32893000000001', N'18.064910000000054')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0181', N'Södertälje', N'SWEREF 99 18 00', N'59.19536300000001', N'17.625688999999966')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0182', N'Nacka', N'SWEREF 99 18 00', N'59.3106799', N'18.163524800000005')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0183', N'Sundbyberg', N'SWEREF 99 18 00', N'59.3670471', N'17.966309300000034')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0184', N'Solna', N'SWEREF 99 18 00', N'59.36887909999999', N'18.008433400000058')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0186', N'Lidingö', N'SWEREF 99 18 00', N'59.36295999999999', N'18.146799999999985')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0187', N'Vaxholm', N'SWEREF 99 18 00', N'59.40329679999999', N'18.326380400000062')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0188', N'Norrtälje', NULL, N'59.7595841', N'18.701358400000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0191', N'Sigtuna', N'SWEREF 99 18 00', N'59.6191463', N'17.7234191')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0192', N'Nynäshamn', N'SWEREF 99 18 00', N'58.90292600000001', N'17.946528899999976')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0305', N'Håbo', N'SWEREF 99 18 00', N'59.62707139999999', N'17.452298100000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0319', N'Älvkarleby', N'SWEREF 99 16 30', N'60.56860669999999', N'17.448912899999982')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0330', N'Knivsta', N'SWEREF 99 18 00', N'59.7261195', N'17.79203640000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0331', N'Heby', N'SWEREF 99 16 30', N'59.9396372', N'16.858758800000032')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0360', N'Tierp', NULL, N'60.3458956', N'17.516906000000063')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0380', N'Uppsala', N'SWEREF 99 18 00', N'59.85856380000001', N'17.638926699999956')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0381', N'Enköping', N'SWEREF 99 16 30', N'59.63569090000001', N'17.077822800000035')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0382', N'Östhammar', N'SWEREF 99 18 00', N'60.25971149999999', N'18.366614700000014')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0428', N'Vingåker', N'SWEREF 99 16 30', N'59.04647799999999', N'15.876965000000041')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0461', N'Gnesta', N'SWEREF 99 16 30', N'59.04834830000001', N'17.307227600000033')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0480', N'Nyköping', N'SWEREF 99 16 30', N'58.75284389999999', N'17.009159299999965')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0481', N'Oxelösund', N'SWEREF 99 16 30', N'58.6701741', N'17.10373329999993')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0482', N'Flen', N'SWEREF 99 16 30', N'59.0579376', N'16.587912200000005')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0483', N'Katrineholm', N'SWEREF 99 16 30', N'58.99555109999999', N'16.2054756')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0484', N'Eskilstuna', N'SWEREF 99 16 30', N'59.37124859999999', N'16.509804499999973')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0486', N'Strängnäs', N'SWEREF 99 16 30', N'59.37745229999999', N'17.032119299999977')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0488', N'Trosa', N'SWEREF 99 18 00', N'58.8985136', N'17.551352700000052')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0509', N'Ödeshög', N'SWEREF 99 15 00', N'58.22912059999999', N'14.652996099999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0512', N'Ydre', N'SWEREF 99 15 00', N'57.8595195', N'15.297345800000016')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0513', N'Kinda', N'SWEREF 99 15 00', N'57.9975708', N'15.68522340000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0560', N'Boxholm', N'SWEREF 99 15 00', N'58.19668949999999', N'15.04748810000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0561', N'Åtvidaberg', NULL, N'58.20218980000001', N'15.997269800000026')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0562', N'Finspång', N'SWEREF 99 16 30', N'58.7074884', N'15.773595')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0563', N'Valdemarsvik', N'SWEREF 99 16 30', N'58.20245139999999', N'16.601362600000016')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0580', N'Linköping', N'SWEREF 99 15 00', N'58.41080700000001', N'15.621372699999938')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0581', N'Norrköping', N'SWEREF 99 16 30', N'58.587745', N'16.192420999999968')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0582', N'Söderköping', N'SWEREF 99 16 30', N'58.4759013', N'16.323430700000017')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0583', N'Motala', N'SWEREF 99 15 00', N'58.5380335', N'15.04709360000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0584', N'Vadstena', N'SWEREF 99 15 00', N'58.44760219999999', N'14.890233500000022')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0586', N'Mjölby', N'SWEREF 99 15 00', N'58.3226908', N'15.133534800000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0604', N'Aneby', N'SWEREF 99 15 00', N'57.83852100000001', N'14.817802099999994')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0617', N'Gnosjö', N'SWEREF 99 13 30', N'57.35803979999999', N'13.73718980000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0642', N'Mullsjö', NULL, N'57.9165989', N'13.877317400000038')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0643', N'Habo', N'SWEREF 99 13 30', N'57.90930939999999', N'14.074366499999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0662', N'Gislaved', N'SWEREF 99 13 30', N'57.2985', N'13.543260000000032')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0665', N'Vaggeryd', N'SWEREF 99 13 30', N'57.4989621', N'14.148629700000015')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0680', N'Jönköping', NULL, N'57.78261370000001', N'14.161787600000025')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0682', N'Nässjö', N'SWEREF 99 15 00', N'57.65303549999999', N'14.696724700000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0683', N'Värnamo', N'SWEREF 99 13 30', N'57.1831605', N'14.047821399999975')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0684', N'Sävsjö', N'SWEREF 99 15 00', N'57.39899579999999', N'14.665813599999979')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0685', N'Vetlanda', N'SWEREF 99 15 00', N'57.42746', N'15.085329999999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0686', N'Eksjö', N'SWEREF 99 15 00', N'57.6651652', N'14.973221400000057')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0687', N'Tranås', N'SWEREF 99 15 00', N'58.035518', N'14.97569599999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0760', N'Uppvidinge', N'SWEREF 99 15 00', N'57.16061', N'15.421352999999954')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0761', N'Lessebo', N'SWEREF 99 15 00', N'56.75126419999999', N'15.270000799999934')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0763', N'Tingsryd', N'SWEREF 99 15 00', N'56.5247452', N'14.978534200000013')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0764', N'Alvesta', N'SWEREF 99 15 00', N'56.89921039999999', N'14.556000600000061')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0765', N'Älmhult', N'SWEREF 99 13 30', N'56.5524461', N'14.137404699999934')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0767', N'Markaryd', N'SWEREF 99 13 30', N'56.4617744', N'13.59627439999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0780', N'Växjö', N'SWEREF 99 15 00', N'56.8790044', N'14.805852200000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0781', N'Ljungby', N'SWEREF 99 13 30', N'56.8338774', N'13.941041700000028')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0821', N'Högsby', N'SWEREF 99 16 30', N'57.17260400000001', N'16.02061900000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0834', N'Torsås', NULL, N'56.4126384', N'15.998274600000059')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0840', N'Mörbylånga', N'SWEREF 99 16 30', N'56.509745', N'16.44603200000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0860', N'Hultsfred', N'SWEREF 99 16 30', N'57.49484', N'15.841651299999967')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0861', N'Mönsterås', NULL, N'57.0415797', N'16.44312000000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0862', N'Emmaboda', N'SWEREF 99 15 00', N'56.63068550000001', N'15.540005999999948')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0880', N'Kalmar', N'SWEREF 99 16 30', N'56.6634447', N'16.35677899999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0881', N'Nybro', N'SWEREF 99 16 30', N'56.7437998', N'15.908680600000025')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0882', N'Oskarshamn', N'SWEREF 99 16 30', N'57.26569929999999', N'16.447398399999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0883', N'Västervik', N'SWEREF 99 16 30', N'57.75771559999999', N'16.63697590000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0884', N'Vimmerby', N'SWEREF 99 16 30', N'57.6690339', N'15.858856999999944')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0885', N'Borgholm', N'SWEREF 99 16 30', N'56.88022969999999', N'16.65623549999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'0980', N'Gotland', N'SWEREF 99 18 45', N'57.46841209999999', N'18.48674470000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1060', N'Olofström', N'SWEREF 99 15 00', N'56.277708', N'14.530937999999992')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1080', N'Karlskrona', N'SWEREF 99 15 00', N'56.161224', N'15.586900000000014')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1081', N'Ronneby', N'SWEREF 99 15 00', N'56.210434', N'15.276022900000044')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1082', N'Karlshamn', N'SWEREF 99 15 00', N'56.170303', N'14.863072999999986')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1083', N'Sölvesborg', NULL, N'56.0537433', N'14.579687799999988')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1214', N'Svalöv', N'SWEREF 99 13 30', N'55.9129296', N'13.101816800000051')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1230', N'Staffanstorp', N'SWEREF 99 13 30', N'55.641065', N'13.21222899999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1231', N'Burlöv', N'SWEREF 99 13 30', N'55.633333', N'13.100000000000023')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1233', N'Vellinge', N'SWEREF 99 13 30', N'55.47089279999999', N'13.019989900000041')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1256', N'Östra Göinge', N'SWEREF 99 13 30', N'56.24406699999999', N'14.235148999999979')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1257', N'Örkelljunga', N'SWEREF 99 13 30', N'56.283635', N'13.278831999999966')
GO
print 'Processed 100 total records'
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1260', N'Bjuv', N'SWEREF 99 13 30', N'56.0871019', N'12.9125047')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1261', N'Kävlinge', N'SWEREF 99 13 30', N'55.7939999', N'13.110429299999964')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1262', N'Lomma', N'SWEREF 99 13 30', N'55.6731375', N'13.06740549999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1263', N'Svedala', N'SWEREF 99 13 30', N'55.5089084', N'13.237109700000019')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1264', N'Skurup', N'SWEREF 99 13 30', N'55.48045', N'13.502348999999981')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1265', N'Sjöbo', N'SWEREF 99 13 30', N'55.634822', N'13.70336999999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1266', N'Hörby', N'SWEREF 99 13 30', N'55.851716', N'13.661925500000052')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1267', N'Höör', N'SWEREF 99 13 30', N'55.9348588', N'13.539590399999952')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1270', N'Tomelilla', N'SWEREF 99 13 30', N'55.54355', N'13.95483999999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1272', N'Bromölla', N'SWEREF 99 13 30', N'56.0743618', N'14.477659000000017')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1273', N'Osby', N'SWEREF 99 13 30', N'56.3815355', N'13.992941299999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1275', N'Perstorp', N'SWEREF 99 13 30', N'56.137972', N'13.394986199999948')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1276', N'Klippan', N'SWEREF 99 13 30', N'56.1348998', N'13.129040900000064')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1277', N'Åstorp', N'SWEREF 99 13 30', N'56.134262', N'12.945908000000031')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1278', N'Båstad', N'SWEREF 99 13 30', N'58.19668949999999', N'15.04748810000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1280', N'Malmö', N'SWEREF 99 13 30', N'55.604981', N'13.003822000000014')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1281', N'Lund', N'SWEREF 99 13 30', N'55.7046601', N'13.191007300000024')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1282', N'Landskrona', N'SWEREF 99 13 30', N'55.8703477', N'12.830080199999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1283', N'Helsingborg', N'SWEREF 99 13 30', N'56.0464674', N'12.694512099999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1284', N'Höganäs', N'SWEREF 99 13 30', N'56.2006388', N'12.555328799999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1285', N'Eslöv', N'SWEREF 99 13 30', N'55.8391198', N'13.30339140000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1286', N'Ystad', N'SWEREF 99 13 30', N'55.4295051', N'13.82003080000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1287', N'Trelleborg', N'SWEREF 99 13 30', N'55.3762427', N'13.15742309999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1290', N'Kristianstad', N'SWEREF 99 13 30', N'56.0293936', N'14.156677800000011')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1291', N'Simrishamn', N'SWEREF 99 13 30', N'55.5573959', N'14.348965099999987')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1292', N'Ängelholm', N'SWEREF 99 13 30', N'56.245748', N'12.863880999999992')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1293', N'Hässleholm', N'SWEREF 99 13 30', N'56.15891449999999', N'13.76676550000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1315', N'Hylte', N'SWEREF 99 13 30', N'56.968476', N'13.527671000000055')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1380', N'Halmstad', N'SWEREF 99 13 30', N'56.6743748', N'12.857788400000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1381', N'Laholm', N'SWEREF 99 13 30', N'56.50575569999999', N'13.045604799999978')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1382', N'Falkenberg', N'SWEREF 99 12 00', N'56.90273329999999', N'12.488801299999977')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1383', N'Varberg', N'SWEREF 99 12 00', N'57.107118', N'12.252090700000053')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1384', N'Kungsbacka', N'SWEREF 99 12 00', N'57.48749189999999', N'12.076192699999979')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1401', N'Härryda', N'SWEREF 99 12 00', N'57.6917444', N'12.29441589999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1402', N'Partille', N'SWEREF 99 12 00', N'57.7366497', N'12.125196800000026')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1407', N'Öckerö', N'SWEREF 99 12 00', N'57.711741', N'11.648788599999989')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1415', N'Stenungsund', N'SWEREF 99 12 00', N'58.0678388', N'11.829434600000013')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1419', N'Tjörn', N'SWEREF 99 12 00', N'57.99809', N'11.556133999999929')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1421', N'Orust', N'SWEREF 99 12 00', N'58.18026709999999', N'11.675983900000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1427', N'Sotenäs', N'SWEREF 99 12 00', N'58.441682', N'11.35293189999993')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1430', N'Munkedal', N'SWEREF 99 12 00', N'58.47150509999999', N'11.680192300000044')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1435', N'Tanum', N'SWEREF 99 12 00', N'58.7164707', N'11.331675000000018')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1438', N'Dals-Ed', N'SWEREF 99 12 00', N'58.92542899999999', N'11.951639999999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1439', N'Färgelanda', N'SWEREF 99 12 00', N'58.567559', N'11.994925999999964')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1440', N'Ale', N'SWEREF 99 12 00', N'57.84117500000001', N'12.029249100000015')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1441', N'Lerum', N'SWEREF 99 12 00', N'57.7694839', N'12.268819699999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1442', N'Vårgårda', N'SWEREF 99 13 30', N'58.0323039', N'12.808976400000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1443', N'Bollebygd', N'SWEREF 99 13 30', N'57.66896910000001', N'12.570143400000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1444', N'Grästorp', N'SWEREF 99 13 30', N'58.3340403', N'12.680217699999957')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1445', N'Essunga', N'SWEREF 99 13 30', N'58.19501349999999', N'12.778249599999981')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1446', N'Karlsborg', N'SWEREF 99 13 30', N'58.5300853', N'14.510565499999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1447', N'Gullspång', N'SWEREF 99 13 30', N'58.985467', N'14.096623000000022')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1452', N'Tranemo', N'SWEREF 99 13 30', N'57.4855688', N'13.352409999999963')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1460', N'Bengtsfors', N'SWEREF 99 12 00', N'59.028612', N'12.226943000000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1461', N'Mellerud', N'SWEREF 99 12 00', N'58.7025681', N'12.451842400000032')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1462', N'Lilla Edet', N'SWEREF 99 12 00', N'58.1344545', N'12.125908799999934')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1463', N'Mark', N'SWEREF 99 12 00', N'62.6', N'17.75')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1465', N'Svenljunga', N'SWEREF 99 13 30', N'57.4955715', N'13.114622499999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1466', N'Herrljunga', N'SWEREF 99 13 30', N'58.0780287', N'13.01883870000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1470', N'Vara', N'SWEREF 99 13 30', N'58.261781', N'12.960194000000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1471', N'Götene', N'SWEREF 99 13 30', N'58.528002', N'13.491428000000042')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1472', N'Tibro', N'SWEREF 99 13 30', N'58.424323', N'14.161641799999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1473', N'Töreboda', N'SWEREF 99 13 30', N'58.70550919999999', N'14.126146800000015')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1480', N'Göteborg', N'SWEREF 99 12 00', N'57.70887', N'11.974559999999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1481', N'Mölndal', N'SWEREF 99 12 00', N'57.65', N'12.016666999999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1482', N'Kungälv', N'SWEREF 99 12 00', N'57.86975400000001', N'11.974031700000069')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1484', N'Lysekil', N'SWEREF 99 12 00', N'58.27557299999999', N'11.435558000000015')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1485', N'Uddevalla', N'SWEREF 99 12 00', N'58.3498003', N'11.935649000000012')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1486', N'Strömstad', N'SWEREF 99 12 00', N'58.9383459', N'11.179187100000036')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1487', N'Vänersborg', N'SWEREF 99 12 00', N'58.3797283', N'12.32480320000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1488', N'Trollhättan', N'SWEREF 99 12 00', N'58.2861851', N'12.299504800000022')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1489', N'Alingsås', N'SWEREF 99 12 00', N'57.9300205', N'12.53621129999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1490', N'Borås', N'SWEREF 99 13 30', N'57.72103500000001', N'12.939818999999943')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1491', N'Ulricehamn', N'SWEREF 99 13 30', N'57.79242300000001', N'13.41573500000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1492', N'Åmål', N'SWEREF 99 12 00', N'59.05111699999999', N'12.697732299999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1493', N'Mariestad', N'SWEREF 99 13 30', N'58.7101119', N'13.82133269999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1494', N'Lidköping', N'SWEREF 99 13 30', N'58.5035047', N'13.157076800000027')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1495', N'Skara', N'SWEREF 99 13 30', N'58.3860128', N'13.439328199999977')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1496', N'Skövde', N'SWEREF 99 13 30', N'58.3902782', N'13.846120799999994')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1497', N'Hjo', N'SWEREF 99 13 30', N'58.3070702', N'14.287466300000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1498', N'Tidaholm', N'SWEREF 99 13 30', N'58.1817692', N'13.95947369999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1499', N'Falköping', N'SWEREF 99 13 30', N'58.17502899999999', N'13.553217000000018')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1715', N'Kil', N'SWEREF 99 13 30', N'59.50368019999999', N'13.31704769999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1730', N'Eda', N'SWEREF 99 12 00', N'59.83305600000001', N'12.316667000000052')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1737', N'Torsby', N'SWEREF 99 13 30', N'60.14090719999999', N'13.010213199999953')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1760', N'Storfors', N'SWEREF 99 13 30', N'59.5332079', N'14.272208500000033')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1761', N'Hammarö', N'SWEREF 99 13 30', N'59.28930599999999', N'13.517713200000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1762', N'Munkfors', N'SWEREF 99 13 30', N'59.83534749999999', N'13.53441470000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1763', N'Forshaga', N'SWEREF 99 13 30', N'59.52976049999999', N'13.486083600000029')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1764', N'Grums', N'SWEREF 99 13 30', N'59.35317870000001', N'13.111731899999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1765', N'Årjäng', N'SWEREF 99 12 00', N'59.3891592', N'12.132716999999957')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1766', N'Sunne', N'SWEREF 99 13 30', N'59.83655749999999', N'13.14404639999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1780', N'Karlstad', N'SWEREF 99 13 30', N'59.3791363', N'13.500804099999982')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1781', N'Kristinehamn', N'SWEREF 99 13 30', N'59.3100677', N'14.108919199999946')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1782', N'Filipstad', N'SWEREF 99 13 30', N'59.7139973', N'14.169844499999954')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1783', N'Hagfors', N'SWEREF 99 13 30', N'60.03437', N'13.694508000000042')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1784', N'Arvika', N'SWEREF 99 12 00', N'59.6548534', N'12.592135999999982')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1785', N'Säffle', N'SWEREF 99 13 30', N'59.132661', N'12.930107000000021')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1814', N'Lekeberg', NULL, N'59.166291', N'14.64461700000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1860', N'Laxå', NULL, N'58.98269', N'14.622889999999984')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1861', N'Hallsberg', N'SWEREF 99 15 00', N'59.0665316', N'15.102290000000039')
GO
print 'Processed 200 total records'
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1862', N'Degerfors', N'SWEREF 99 15 00', N'59.2391027', N'14.433917899999983')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1863', N'Hällefors', N'SWEREF 99 15 00', N'59.783688', N'14.52256920000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1864', N'Ljusnarsberg', NULL, N'59.883333', N'14.983333000000016')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1880', N'Örebro', N'SWEREF 99 15 00', N'59.2752626', N'15.213410500000009')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1881', N'Kumla', NULL, N'59.12653590000001', N'15.14010529999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1882', N'Askersund', NULL, N'58.88942679999999', N'14.910986699999967')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1883', N'Karlskoga', N'SWEREF 99 15 00', N'59.32863399999999', N'14.536414000000036')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1884', N'Nora', NULL, N'59.51920639999999', N'15.037866699999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1885', N'Lindesberg', NULL, N'59.5976983', N'15.222910800000022')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1904', N'Skinnskatteberg', N'SWEREF 99 16 30', N'59.8317789', N'15.692722900000035')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1907', N'Surahammar', N'SWEREF 99 16 30', N'59.70722619999999', N'16.22684090000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1960', N'Kungsör', NULL, N'59.422397', N'16.097786000000042')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1961', N'Hallstahammar', N'SWEREF 99 16 30', N'59.6132041', N'16.229475500000035')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1962', N'Norberg', N'SWEREF 99 16 30', N'60.06504200000001', N'15.923796000000038')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1980', N'Västerås', N'SWEREF 99 16 30', N'59.60990049999999', N'16.544809100000066')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1981', N'Sala', NULL, N'59.9208594', N'16.606327999999962')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1982', N'Fagersta', N'SWEREF 99 16 30', N'59.989144', N'15.81664180000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1983', N'Köping', N'SWEREF 99 16 30', N'59.5120962', N'15.994510200000036')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'1984', N'Arboga', N'SWEREF 99 16 30', N'59.39368829999999', N'15.838174699999968')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2021', N'Vansbro', N'SWEREF 99 13 30', N'60.5099434', N'14.225341699999944')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2023', N'Malung', N'SWEREF 99 13 30', N'60.686372', N'13.720965999999976')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2026', N'Gagnef', N'SWEREF 99 15 00', N'60.59098299999999', N'15.070049100000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2029', N'Leksand', N'SWEREF 99 15 00', N'60.7303082', N'14.999892199999977')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2031', N'Rättvik', N'SWEREF 99 15 00', N'60.889025', N'15.123373000000015')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2034', N'Orsa', N'SWEREF 99 15 00', N'61.1169365', N'14.628070799999932')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2039', N'Älvdalen', N'SWEREF 99 13 30', N'61.22730600000001', N'14.041987100000028')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2061', N'Smedjebacken', N'SWEREF 99 15 00', N'60.1431933', N'15.415991500000018')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2062', N'Mora', N'SWEREF 99 15 00', N'61.004878', N'14.537003000000027')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2080', N'Falun', N'SWEREF 99 15 45', N'60.60646000000001', N'15.635499999999979')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2081', N'Borlänge', N'SWEREF 99 15 45', N'60.484304', N'15.433968999999934')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2082', N'Säter', N'SWEREF 99 15 45', N'60.34665', N'15.747899999999959')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2083', N'Hedemora', N'SWEREF 99 15 45', N'60.2775453', N'15.985892000000035')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2084', N'Avesta', N'SWEREF 99 16 30', N'60.14532999999999', N'16.17383989999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2085', N'Ludvika', N'SWEREF 99 15 00', N'60.152358', N'15.19163900000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2101', N'Ockelbo', N'SWEREF 99 16 30', N'60.89178399999999', N'16.72018730000002')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2104', N'Hofors', N'SWEREF 99 16 30', N'60.54595', N'16.284099999999967')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2121', N'Ovanåker', N'SWEREF 99 16 30', N'61.57379499999999', N'15.605375999999978')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2132', N'Nordanstig', NULL, N'62.0366675', N'17.20524899999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2161', N'Ljusdal', N'SWEREF 99 16 30', N'61.8308392', N'16.081750100000022')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2180', N'Gävle', N'SWEREF 99 16 30', N'60.6748796', N'17.14127259999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2181', N'Sandviken', N'SWEREF 99 16 30', N'60.621607', N'16.775918000000047')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2182', N'Söderhamn', N'SWEREF 99 16 30', N'61.3055762', N'17.062810200000058')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2183', N'Bollnäs', N'SWEREF 99 16 30', N'61.34837950000001', N'16.394268499999953')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2184', N'Hudiksvall', N'SWEREF 99 16 30', N'61.7273909', N'17.10740099999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2260', N'Ånge', N'SWEREF 99 15 45', N'62.5228738', N'15.658941899999945')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2262', N'Timrå', N'SWEREF 99 17 15', N'62.4854563', N'17.32486510000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2280', N'Härnösand', N'SWEREF 99 17 15', N'62.6322698', N'17.940871399999992')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2281', N'Sundsvall', N'SWEREF 99 17 15', N'62.390811', N'17.306926999999973')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2282', N'Kramfors', N'SWEREF 99 17 15', N'62.9284332', N'17.786294699999985')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2283', N'Sollefteå', N'SWEREF 99 17 15', N'63.1654065', N'17.277135000000044')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2284', N'Örnsköldsvik', N'SWEREF 99 18 45', N'63.29004740000001', N'18.716616599999952')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2303', N'Ragunda', NULL, N'63.1246168', N'16.36658890000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2305', N'Bräcke', NULL, N'62.7507414', N'15.422574800000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2309', N'Krokom', NULL, N'63.3262424', N'14.44865440000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2313', N'Strömsund', N'SWEREF 99 15 45', N'63.85366209999999', N'15.556869099999972')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2321', N'Åre', N'SWEREF 99 14 15', N'63.3990428', N'13.081505900000025')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2326', N'Berg', NULL, N'58.21247', N'16.027330000000006')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2361', N'Härjedalen', N'SWEREF 99 14 15', N'62.12071299999999', N'13.17492500000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2380', N'Östersund', N'SWEREF 99 14 15', N'63.1766832', N'14.636068099999989')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2401', N'Nordmaling', N'SWEREF 99 20 15', N'63.569863', N'19.50428199999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2403', N'Bjurholm', N'SWEREF 99 18 45', N'63.9304056', N'19.219212500000026')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2404', N'Vindeln', N'SWEREF 99 20 15', N'64.2019528', N'19.71887019999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2409', N'Robertsfors', N'SWEREF 99 20 15', N'64.191835', N'20.848909999999933')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2417', N'Norsjö', N'SWEREF 99 18 45', N'64.9135093', N'19.48264130000007')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2418', N'Malå', NULL, N'65.18512', N'18.74906999999996')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2421', N'Storuman', NULL, N'65.0956204', N'17.11227710000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2422', N'Sorsele', NULL, N'65.5326259', N'17.539694000000054')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2425', N'Dorotea', NULL, N'64.2617939', N'16.41523380000001')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2460', N'Vännäs', N'SWEREF 99 20 15', N'63.908007', N'19.752965000000017')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2462', N'Vilhelmina', NULL, N'64.624471', N'16.65549699999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2463', N'Åsele', N'SWEREF 99 17 15', N'64.1602339', N'17.35361499999999')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2480', N'Umeå', N'SWEREF 99 20 15', N'63.8258471', N'20.263035400000035')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2481', N'Lycksele', N'SWEREF 99 18 45', N'64.5958098', N'18.676367000000027')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2482', N'Skellefteå', N'SWEREF 99 20 15', N'64.750244', N'20.950917000000004')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2505', N'Arvidsjaur', N'SWEREF 99 18 45', N'65.5920768', N'19.180282799999986')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2506', N'Arjeplog', N'SWEREF 99 17 15', N'66.0515051', N'17.890054299999974')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2510', N'Jokkmokk', NULL, N'66.60696089999999', N'19.822920599999975')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2513', N'Överkalix', NULL, N'66.3271757', N'22.84275230000003')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2514', N'Kalix', N'SWEREF 99 23 15', N'65.8552807', N'23.14396499999998')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2518', N'Övertorneå', N'SWEREF 99 23 15', N'66.38972480000001', N'23.649496399999975')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2521', N'Pajala', NULL, N'67.21278199999999', N'23.367391999999995')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2523', N'Gällivare', NULL, N'67.1379', N'20.659361799999942')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2560', N'Älvsbyn', N'SWEREF 99 21 45', N'65.6771363', N'20.99286589999997')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2580', N'Luleå', N'SWEREF 99 21 45', N'65.58388959999999', N'22.153173599999946')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2581', N'Piteå', N'SWEREF 99 21 45', N'65.316698', N'21.480036400000017')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2582', N'Boden', N'SWEREF 99 21 45', N'65.8251188', N'21.688702799999987')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2583', N'Haparanda', N'SWEREF 99 23 15', N'65.84178589999999', N'24.127615600000013')
INSERT [dbo].[Municipality] ([Code], [Name], [Referencesystem], [CenterLatitude], [CenterLongitude]) VALUES (N'2584', N'Kiruna', N'SWEREF 99 20 15', N'67.8557995', N'20.22528209999996')
GO
PRINT 'Done'