line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Geo::Postcodes::DK; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
################################################################################# |
4
|
|
|
|
|
|
|
# # |
5
|
|
|
|
|
|
|
# This file is written by Arne Sommer - perl@bbop.org # |
6
|
|
|
|
|
|
|
# # |
7
|
|
|
|
|
|
|
################################################################################# |
8
|
|
|
|
|
|
|
|
9
|
7
|
|
|
7
|
|
259723
|
use Geo::Postcodes 0.31; |
|
7
|
|
|
|
|
30825
|
|
|
7
|
|
|
|
|
280
|
|
10
|
7
|
|
|
7
|
|
67
|
use base qw(Geo::Postcodes); |
|
7
|
|
|
|
|
13
|
|
|
7
|
|
|
|
|
923
|
|
11
|
|
|
|
|
|
|
|
12
|
7
|
|
|
7
|
|
38
|
use strict; |
|
7
|
|
|
|
|
17
|
|
|
7
|
|
|
|
|
207
|
|
13
|
7
|
|
|
7
|
|
36
|
use warnings; |
|
7
|
|
|
|
|
13
|
|
|
7
|
|
|
|
|
252485
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
our $VERSION = '0.32'; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
## Which fields are available ################################################## |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
my @valid_fields = qw(postcode location address owner type type_verbose); |
20
|
|
|
|
|
|
|
# Used by the 'get_fields' procedure. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
my %valid_fields; # Used by the 'is_field' procedure/method. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
foreach (@valid_fields) |
25
|
|
|
|
|
|
|
{ |
26
|
|
|
|
|
|
|
$valid_fields{$_} = 1; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
## Private Variables ############################################################ |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
my (%location, %borough, %type, %address, %owner); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
## Type Description ############################################################# |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my %typedesc; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$typedesc{BX} = "Postboks"; |
38
|
|
|
|
|
|
|
$typedesc{ST} = "Gadeadresse"; |
39
|
|
|
|
|
|
|
$typedesc{IO} = "Personlig ejer"; |
40
|
|
|
|
|
|
|
$typedesc{PP} = "Ufrankerede svarforsendelser"; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
## OO Methods ################################################################### |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
sub new |
45
|
|
|
|
|
|
|
{ |
46
|
8
|
|
|
8
|
1
|
4505
|
my $class = shift; |
47
|
8
|
|
|
|
|
24
|
my $postcode = shift; |
48
|
|
|
|
|
|
|
|
49
|
8
|
100
|
|
|
|
28
|
return unless valid($postcode); |
50
|
|
|
|
|
|
|
|
51
|
5
|
|
|
|
|
25
|
my $self = bless \(my $dummy), $class; |
52
|
|
|
|
|
|
|
|
53
|
5
|
|
|
|
|
49
|
$Geo::Postcodes::postcode_of {$self} = $postcode; |
54
|
5
|
|
|
|
|
21
|
$Geo::Postcodes::location_of {$self} = location_of($postcode); |
55
|
5
|
|
|
|
|
19
|
$Geo::Postcodes::type_of {$self} = type_of($postcode); |
56
|
5
|
|
|
|
|
20
|
$Geo::Postcodes::owner_of {$self} = owner_of($postcode); |
57
|
5
|
|
|
|
|
20
|
$Geo::Postcodes::address_of {$self} = address_of($postcode); |
58
|
|
|
|
|
|
|
|
59
|
5
|
|
|
|
|
28
|
return $self; |
60
|
|
|
|
|
|
|
} |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
sub DESTROY |
63
|
|
|
|
|
|
|
{ |
64
|
5
|
|
|
5
|
|
2308
|
my $object_id = $_[0]; |
65
|
|
|
|
|
|
|
|
66
|
5
|
|
|
|
|
17
|
delete $Geo::Postcodes::postcode_of {$object_id}; |
67
|
5
|
|
|
|
|
17
|
delete $Geo::Postcodes::location_of {$object_id}; |
68
|
5
|
|
|
|
|
15
|
delete $Geo::Postcodes::type_of {$object_id}; |
69
|
5
|
|
|
|
|
12
|
delete $Geo::Postcodes::owner_of {$object_id}; |
70
|
5
|
|
|
|
|
271
|
delete $Geo::Postcodes::address_of {$object_id}; |
71
|
|
|
|
|
|
|
} |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
sub get_fields |
74
|
|
|
|
|
|
|
{ |
75
|
3
|
|
|
3
|
1
|
2927
|
return @valid_fields; |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
sub is_field |
79
|
|
|
|
|
|
|
{ |
80
|
63
|
|
|
63
|
1
|
6082
|
my $field = shift; |
81
|
63
|
100
|
|
|
|
234
|
$field = shift if $field =~ /Geo::Postcodes/; # Called on an object. |
82
|
|
|
|
|
|
|
|
83
|
63
|
100
|
|
|
|
263
|
return 1 if $valid_fields{$field}; |
84
|
19
|
|
|
|
|
52
|
return 0; |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
sub type_verbose # Override the one in the base class. |
88
|
|
|
|
|
|
|
{ |
89
|
2
|
|
|
2
|
1
|
5412
|
my $self = shift; |
90
|
2
|
50
|
|
|
|
10
|
return unless $self; |
91
|
2
|
50
|
|
|
|
11
|
return unless $Geo::Postcodes::type_of{$self}; |
92
|
2
|
50
|
|
|
|
11
|
return unless $typedesc{$Geo::Postcodes::type_of{$self}}; |
93
|
2
|
|
|
|
|
14
|
return $typedesc{$Geo::Postcodes::type_of{$self}}; |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
## Global Procedures ############################################################ |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
sub legal # Is it a legal code, i.e. something that follows the syntax rule. |
99
|
|
|
|
|
|
|
{ |
100
|
22
|
|
|
22
|
1
|
49
|
my $postcode = shift; |
101
|
22
|
100
|
|
|
|
98
|
return 0 unless $postcode; |
102
|
19
|
100
|
|
|
|
126
|
return 0 unless $postcode =~ /^\d{3,4}$/; |
103
|
14
|
|
|
|
|
82
|
return 1; |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
sub valid # Is the code in actual use. |
107
|
|
|
|
|
|
|
{ |
108
|
15
|
|
|
15
|
1
|
33
|
my $postcode = shift; |
109
|
15
|
100
|
|
|
|
46
|
return 0 unless legal($postcode); |
110
|
|
|
|
|
|
|
|
111
|
10
|
100
|
|
|
|
72
|
return 1 if $location{$postcode}; |
112
|
2
|
|
|
|
|
10
|
return 0; |
113
|
|
|
|
|
|
|
} |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
sub postcode_of # So that 'selection' does not choke. |
116
|
|
|
|
|
|
|
{ |
117
|
0
|
|
|
0
|
1
|
0
|
my $postcode = shift; |
118
|
0
|
|
|
|
|
0
|
return $postcode; |
119
|
|
|
|
|
|
|
} |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
sub location_of |
122
|
|
|
|
|
|
|
{ |
123
|
5400
|
|
|
5400
|
1
|
48118
|
my $postcode = shift; |
124
|
5400
|
100
|
|
|
|
11381
|
return unless $postcode; |
125
|
|
|
|
|
|
|
|
126
|
5399
|
50
|
|
|
|
24804
|
return $location{$postcode} if $location{$postcode}; |
127
|
0
|
|
|
|
|
0
|
return; |
128
|
|
|
|
|
|
|
} |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
sub address_of |
131
|
|
|
|
|
|
|
{ |
132
|
8
|
|
|
8
|
1
|
892
|
my $postcode = shift; |
133
|
8
|
100
|
|
|
|
37
|
return unless $postcode; |
134
|
|
|
|
|
|
|
|
135
|
7
|
100
|
|
|
|
42
|
return $address{$postcode} if $address{$postcode}; |
136
|
5
|
|
|
|
|
1001
|
return; |
137
|
|
|
|
|
|
|
} |
138
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
sub owner_of |
140
|
|
|
|
|
|
|
{ |
141
|
8
|
|
|
8
|
1
|
19
|
my $postcode = shift; |
142
|
8
|
100
|
|
|
|
35
|
return unless $postcode; |
143
|
|
|
|
|
|
|
|
144
|
7
|
50
|
|
|
|
33
|
return $owner{$postcode} if $owner{$postcode}; |
145
|
7
|
|
|
|
|
29
|
return; |
146
|
|
|
|
|
|
|
} |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
sub type_of |
149
|
|
|
|
|
|
|
{ |
150
|
5403
|
|
|
5403
|
1
|
28972
|
my $postcode = shift; |
151
|
5403
|
100
|
|
|
|
13587
|
return unless $postcode; |
152
|
5401
|
100
|
|
|
|
15450
|
return unless $type{$postcode}; |
153
|
|
|
|
|
|
|
|
154
|
2350
|
|
|
|
|
6184
|
return $type{$postcode}; |
155
|
|
|
|
|
|
|
} |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
sub type_verbose_of |
158
|
|
|
|
|
|
|
{ |
159
|
1351
|
|
|
1351
|
1
|
9467
|
my $postcode = shift; |
160
|
1351
|
100
|
|
|
|
2633
|
return unless $postcode; |
161
|
|
|
|
|
|
|
|
162
|
1350
|
|
|
|
|
2238
|
my $type = type_of($postcode); |
163
|
1350
|
100
|
|
|
|
3253
|
return unless $type; |
164
|
|
|
|
|
|
|
|
165
|
588
|
|
|
|
|
857
|
return type2verbose($type); |
166
|
|
|
|
|
|
|
} |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
sub type2verbose |
169
|
|
|
|
|
|
|
{ |
170
|
588
|
|
|
588
|
1
|
674
|
my $type = shift; |
171
|
588
|
50
|
|
|
|
1174
|
return unless $type; |
172
|
588
|
50
|
|
|
|
1194
|
return unless $typedesc{$type}; |
173
|
588
|
|
|
|
|
1756
|
return $typedesc{$type}; |
174
|
|
|
|
|
|
|
} |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
sub get_postcodes |
177
|
|
|
|
|
|
|
{ |
178
|
9
|
|
|
9
|
1
|
5603
|
return keys %location; |
179
|
|
|
|
|
|
|
} |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
## Returns a list of postcodes if called as a procedure; Geo::Postcodes::DK::selection(xx => 'yy') |
182
|
|
|
|
|
|
|
## Returns a list of objects if called as a method; Geo::Postcodes::DK->selection(xx => 'yy') |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
sub verify_selectionlist |
185
|
|
|
|
|
|
|
{ |
186
|
44
|
|
|
44
|
1
|
23453
|
return Geo::Postcodes::_verify_selectionlist("Geo::Postcodes::DK", @_); |
187
|
|
|
|
|
|
|
} |
188
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
sub selection |
190
|
|
|
|
|
|
|
{ |
191
|
9
|
|
|
9
|
1
|
11094
|
return Geo::Postcodes::_selection("Geo::Postcodes::DK", @_); |
192
|
|
|
|
|
|
|
# Black magic. |
193
|
|
|
|
|
|
|
} |
194
|
|
|
|
|
|
|
|
195
|
|
|
|
|
|
|
sub selection_loop |
196
|
|
|
|
|
|
|
{ |
197
|
0
|
|
|
0
|
1
|
|
return Geo::Postcodes::_selection_loop('Geo::Postcodes::DK', @_); |
198
|
|
|
|
|
|
|
# Black magic. |
199
|
|
|
|
|
|
|
} |
200
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
## misc/update begin |
202
|
|
|
|
|
|
|
## This data structure was auto generated on Tue Nov 16 19:48:17 2010. Do NOT edit it! |
203
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
$location{'0555'} = "Scanning"; $owner{'0555'} = "Data Scanning A/S, \"Læs Ind\"-service"; |
205
|
|
|
|
|
|
|
$location{'0800'} = "Høje Taastrup"; $owner{'0800'} = "BG-Bank A/S"; $type{'0800'} = "IO"; |
206
|
|
|
|
|
|
|
$location{'0877'} = "Københvn C"; $owner{'0877'} = "Aller Press (konkurrencer)"; $type{'0877'} = "IO"; |
207
|
|
|
|
|
|
|
$location{'0892'} = "Sjælland USF P"; $owner{'0892'} = "Ufrankerede svarforsendelser"; |
208
|
|
|
|
|
|
|
$location{'0893'} = "Sjælland USF B"; $owner{'0893'} = "Ufrankerede svarforsendelser"; |
209
|
|
|
|
|
|
|
$location{'0897'} = "eBrevsprækken"; $owner{'0897'} = "(Post til scanning)"; |
210
|
|
|
|
|
|
|
$location{'0899'} = "Kommuneservice"; $owner{'0899'} = "(Post til scanning)"; |
211
|
|
|
|
|
|
|
$location{'0900'} = "København C"; $owner{'0900'} = "Københavns Postcenter + erhvervskunder"; |
212
|
|
|
|
|
|
|
$location{'0910'} = "København C"; $type{'0910'} = "PP"; |
213
|
|
|
|
|
|
|
$location{'0918'} = "Københavns Pakke BRC"; $owner{'0918'} = "(Returpakker)"; |
214
|
|
|
|
|
|
|
$location{'0929'} = "København C"; $type{'0929'} = "PP"; |
215
|
|
|
|
|
|
|
$location{'0999'} = "København C"; $owner{'0999'} = "DR Byen"; $type{'0999'} = "IO"; |
216
|
|
|
|
|
|
|
$location{'1000'} = "København K"; $owner{'1000'} = "Købmagergades Postkontor"; $type{'1000'} = "IO"; |
217
|
|
|
|
|
|
|
$location{'1001'} = "København K"; $type{'1001'} = "BX"; |
218
|
|
|
|
|
|
|
$location{'1002'} = "København K"; $type{'1002'} = "BX"; |
219
|
|
|
|
|
|
|
$location{'1003'} = "København K"; $type{'1003'} = "BX"; |
220
|
|
|
|
|
|
|
$location{'1004'} = "København K"; $type{'1004'} = "BX"; |
221
|
|
|
|
|
|
|
$location{'1005'} = "København K"; $type{'1005'} = "BX"; |
222
|
|
|
|
|
|
|
$location{'1006'} = "København K"; $type{'1006'} = "BX"; |
223
|
|
|
|
|
|
|
$location{'1007'} = "København K"; $type{'1007'} = "BX"; |
224
|
|
|
|
|
|
|
$location{'1008'} = "København K"; $type{'1008'} = "BX"; |
225
|
|
|
|
|
|
|
$location{'1009'} = "København K"; $type{'1009'} = "BX"; |
226
|
|
|
|
|
|
|
$location{'1010'} = "København K"; $type{'1010'} = "BX"; |
227
|
|
|
|
|
|
|
$location{'1011'} = "København K"; $type{'1011'} = "BX"; |
228
|
|
|
|
|
|
|
$location{'1012'} = "København K"; $type{'1012'} = "BX"; |
229
|
|
|
|
|
|
|
$location{'1013'} = "København K"; $type{'1013'} = "BX"; |
230
|
|
|
|
|
|
|
$location{'1014'} = "København K"; $type{'1014'} = "BX"; |
231
|
|
|
|
|
|
|
$location{'1015'} = "København K"; $type{'1015'} = "BX"; |
232
|
|
|
|
|
|
|
$location{'1016'} = "København K"; $type{'1016'} = "BX"; |
233
|
|
|
|
|
|
|
$location{'1017'} = "København K"; $type{'1017'} = "BX"; |
234
|
|
|
|
|
|
|
$location{'1018'} = "København K"; $type{'1018'} = "BX"; |
235
|
|
|
|
|
|
|
$location{'1019'} = "København K"; $type{'1019'} = "BX"; |
236
|
|
|
|
|
|
|
$location{'1020'} = "København K"; $type{'1020'} = "BX"; |
237
|
|
|
|
|
|
|
$location{'1021'} = "København K"; $type{'1021'} = "BX"; |
238
|
|
|
|
|
|
|
$location{'1022'} = "København K"; $type{'1022'} = "BX"; |
239
|
|
|
|
|
|
|
$location{'1023'} = "København K"; $type{'1023'} = "BX"; |
240
|
|
|
|
|
|
|
$location{'1024'} = "København K"; $type{'1024'} = "BX"; |
241
|
|
|
|
|
|
|
$location{'1025'} = "København K"; $type{'1025'} = "BX"; |
242
|
|
|
|
|
|
|
$location{'1026'} = "København K"; $type{'1026'} = "BX"; |
243
|
|
|
|
|
|
|
$location{'1045'} = "København K"; $type{'1045'} = "PP"; |
244
|
|
|
|
|
|
|
$location{'1050'} = "København K"; $address{'1050'} = "Kongens Nytorv"; $type{'1050'} = "ST"; |
245
|
|
|
|
|
|
|
$location{'1051'} = "København K"; $address{'1051'} = "Nyhavn"; $type{'1051'} = "ST"; |
246
|
|
|
|
|
|
|
$location{'1052'} = "København K"; $address{'1052'} = "Herluf Trolles Gade"; $type{'1052'} = "ST"; |
247
|
|
|
|
|
|
|
$location{'1053'} = "København K"; $address{'1053'} = "Cort Adelers Gade"; $type{'1053'} = "ST"; |
248
|
|
|
|
|
|
|
$location{'1054'} = "København K"; $address{'1054'} = "Peder Skrams Gade"; $type{'1054'} = "ST"; |
249
|
|
|
|
|
|
|
$location{'1055'} = "København K"; $address{'1055'} = "Tordenskjoldsgade"; $type{'1055'} = "ST"; |
250
|
|
|
|
|
|
|
$location{'1055'} = "København K"; $address{'1055'} = "Tordenskjoldsgade"; $type{'1055'} = "ST"; |
251
|
|
|
|
|
|
|
$location{'1056'} = "København K"; $address{'1056'} = "Heibergsgade"; $type{'1056'} = "ST"; |
252
|
|
|
|
|
|
|
$location{'1057'} = "København K"; $address{'1057'} = "Holbergsgade"; $type{'1057'} = "ST"; |
253
|
|
|
|
|
|
|
$location{'1058'} = "København K"; $address{'1058'} = "Havnegade"; $type{'1058'} = "ST"; |
254
|
|
|
|
|
|
|
$location{'1059'} = "København K"; $address{'1059'} = "Niels Juels Gade"; $type{'1059'} = "ST"; |
255
|
|
|
|
|
|
|
$location{'1060'} = "København K"; $address{'1060'} = "Holmens Kanal"; $type{'1060'} = "ST"; |
256
|
|
|
|
|
|
|
$location{'1061'} = "København K"; $address{'1061'} = "Ved Stranden"; $type{'1061'} = "ST"; |
257
|
|
|
|
|
|
|
$location{'1062'} = "København K"; $address{'1062'} = "Boldhusgade"; $type{'1062'} = "ST"; |
258
|
|
|
|
|
|
|
$location{'1063'} = "København K"; $address{'1063'} = "Laksegade"; $type{'1063'} = "ST"; |
259
|
|
|
|
|
|
|
$location{'1064'} = "København K"; $address{'1064'} = "Asylgade"; $type{'1064'} = "ST"; |
260
|
|
|
|
|
|
|
$location{'1065'} = "København K"; $address{'1065'} = "Fortunstræde"; $type{'1065'} = "ST"; |
261
|
|
|
|
|
|
|
$location{'1066'} = "København K"; $address{'1066'} = "Admiralgade"; $type{'1066'} = "ST"; |
262
|
|
|
|
|
|
|
$location{'1067'} = "København K"; $address{'1067'} = "Nikolaj Plads"; $type{'1067'} = "ST"; |
263
|
|
|
|
|
|
|
$location{'1068'} = "København K"; $address{'1068'} = "Nikolajgade"; $type{'1068'} = "ST"; |
264
|
|
|
|
|
|
|
$location{'1069'} = "København K"; $address{'1069'} = "Bremerholm"; $type{'1069'} = "ST"; |
265
|
|
|
|
|
|
|
$location{'1070'} = "København K"; $address{'1070'} = "Vingårdstræde"; $type{'1070'} = "ST"; |
266
|
|
|
|
|
|
|
$location{'1071'} = "København K"; $address{'1071'} = "Dybensgade"; $type{'1071'} = "ST"; |
267
|
|
|
|
|
|
|
$location{'1072'} = "København K"; $address{'1072'} = "Lille Kirkestræde"; $type{'1072'} = "ST"; |
268
|
|
|
|
|
|
|
$location{'1073'} = "København K"; $address{'1073'} = "Store Kirkestræde"; $type{'1073'} = "ST"; |
269
|
|
|
|
|
|
|
$location{'1074'} = "København K"; $address{'1074'} = "Lille Kongensgade"; $type{'1074'} = "ST"; |
270
|
|
|
|
|
|
|
$location{'1092'} = "København K"; $owner{'1092'} = "Danske Bank A/S"; $type{'1092'} = "IO"; |
271
|
|
|
|
|
|
|
$location{'1093'} = "København K"; $owner{'1093'} = "Danmarks Nationalbank"; $type{'1093'} = "IO"; |
272
|
|
|
|
|
|
|
$location{'1095'} = "København K"; $owner{'1095'} = "Magasin du Nord"; $type{'1095'} = "IO"; |
273
|
|
|
|
|
|
|
$location{'1098'} = "København K"; $owner{'1098'} = "A.P. Møller"; $type{'1098'} = "IO"; |
274
|
|
|
|
|
|
|
$location{'1100'} = "København K"; $address{'1100'} = "Østergade"; $type{'1100'} = "ST"; |
275
|
|
|
|
|
|
|
$location{'1101'} = "København K"; $address{'1101'} = "Ny Østergade"; $type{'1101'} = "ST"; |
276
|
|
|
|
|
|
|
$location{'1102'} = "København K"; $address{'1102'} = "Pistolstræde"; $type{'1102'} = "ST"; |
277
|
|
|
|
|
|
|
$location{'1103'} = "København K"; $address{'1103'} = "Hovedvagtsgade"; $type{'1103'} = "ST"; |
278
|
|
|
|
|
|
|
$location{'1104'} = "København K"; $address{'1104'} = "Ny Adelgade"; $type{'1104'} = "ST"; |
279
|
|
|
|
|
|
|
$location{'1105'} = "København K"; $address{'1105'} = "Kristen Bernikows Gade"; $type{'1105'} = "ST"; |
280
|
|
|
|
|
|
|
$location{'1106'} = "København K"; $address{'1106'} = "Antonigade"; $type{'1106'} = "ST"; |
281
|
|
|
|
|
|
|
$location{'1107'} = "København K"; $address{'1107'} = "Grønnegade"; $type{'1107'} = "ST"; |
282
|
|
|
|
|
|
|
$location{'1110'} = "København K"; $address{'1110'} = "Store Regnegade"; $type{'1110'} = "ST"; |
283
|
|
|
|
|
|
|
$location{'1111'} = "København K"; $address{'1111'} = "Christian IX's Gade"; $type{'1111'} = "ST"; |
284
|
|
|
|
|
|
|
$location{'1112'} = "København K"; $address{'1112'} = "Pilestræde"; $type{'1112'} = "ST"; |
285
|
|
|
|
|
|
|
$location{'1113'} = "København K"; $address{'1113'} = "Silkegade"; $type{'1113'} = "ST"; |
286
|
|
|
|
|
|
|
$location{'1114'} = "København K"; $address{'1114'} = "Kronprinsensgade"; $type{'1114'} = "ST"; |
287
|
|
|
|
|
|
|
$location{'1115'} = "København K"; $address{'1115'} = "Klareboderne"; $type{'1115'} = "ST"; |
288
|
|
|
|
|
|
|
$location{'1116'} = "København K"; $address{'1116'} = "Møntergade"; $type{'1116'} = "ST"; |
289
|
|
|
|
|
|
|
$location{'1117'} = "København K"; $address{'1117'} = "Gammel Mønt"; $type{'1117'} = "ST"; |
290
|
|
|
|
|
|
|
$location{'1118'} = "København K"; $address{'1118'} = "Sværtegade"; $type{'1118'} = "ST"; |
291
|
|
|
|
|
|
|
$location{'1119'} = "København K"; $address{'1119'} = "Landemærket"; $type{'1119'} = "ST"; |
292
|
|
|
|
|
|
|
$location{'1120'} = "København K"; $address{'1120'} = "Vognmagergade"; $type{'1120'} = "ST"; |
293
|
|
|
|
|
|
|
$location{'1121'} = "København K"; $address{'1121'} = "Lønporten"; $type{'1121'} = "ST"; |
294
|
|
|
|
|
|
|
$location{'1122'} = "København K"; $address{'1122'} = "Sjæleboderne"; $type{'1122'} = "ST"; |
295
|
|
|
|
|
|
|
$location{'1123'} = "København K"; $address{'1123'} = "Gothersgade"; $type{'1123'} = "ST"; |
296
|
|
|
|
|
|
|
$location{'1124'} = "København K"; $address{'1124'} = "Åbenrå"; $type{'1124'} = "ST"; |
297
|
|
|
|
|
|
|
$location{'1125'} = "København K"; $address{'1125'} = "Suhmsgade"; $type{'1125'} = "ST"; |
298
|
|
|
|
|
|
|
$location{'1126'} = "København K"; $address{'1126'} = "Pustervig"; $type{'1126'} = "ST"; |
299
|
|
|
|
|
|
|
$location{'1127'} = "København K"; $address{'1127'} = "Hauser Plads"; $type{'1127'} = "ST"; |
300
|
|
|
|
|
|
|
$location{'1128'} = "København K"; $address{'1128'} = "Hausergade"; $type{'1128'} = "ST"; |
301
|
|
|
|
|
|
|
$location{'1129'} = "København K"; $address{'1129'} = "Sankt Gertruds Stræde"; $type{'1129'} = "ST"; |
302
|
|
|
|
|
|
|
$location{'1130'} = "København K"; $address{'1130'} = "Rosenborggade"; $type{'1130'} = "ST"; |
303
|
|
|
|
|
|
|
$location{'1131'} = "København K"; $address{'1131'} = "Tornebuskegade"; $type{'1131'} = "ST"; |
304
|
|
|
|
|
|
|
$location{'1140'} = "København K"; $owner{'1140'} = "Dagbladet Børsen"; $type{'1140'} = "IO"; |
305
|
|
|
|
|
|
|
$location{'1147'} = "København K"; $owner{'1147'} = "Berlingske Tidende"; $type{'1147'} = "IO"; |
306
|
|
|
|
|
|
|
$location{'1148'} = "København K"; $owner{'1148'} = "Gutenberghus"; $type{'1148'} = "IO"; |
307
|
|
|
|
|
|
|
$location{'1150'} = "København K"; $address{'1150'} = "Købmagergade"; $type{'1150'} = "ST"; |
308
|
|
|
|
|
|
|
$location{'1151'} = "København K"; $address{'1151'} = "Valkendorfsgade"; $type{'1151'} = "ST"; |
309
|
|
|
|
|
|
|
$location{'1152'} = "København K"; $address{'1152'} = "Løvstræde"; $type{'1152'} = "ST"; |
310
|
|
|
|
|
|
|
$location{'1153'} = "København K"; $address{'1153'} = "Niels Hemmingsens Gade"; $type{'1153'} = "ST"; |
311
|
|
|
|
|
|
|
$location{'1154'} = "København K"; $address{'1154'} = "Gråbrødretorv"; $type{'1154'} = "ST"; |
312
|
|
|
|
|
|
|
$location{'1155'} = "København K"; $address{'1155'} = "Kejsergade"; $type{'1155'} = "ST"; |
313
|
|
|
|
|
|
|
$location{'1156'} = "København K"; $address{'1156'} = "Gråbrødrestræde"; $type{'1156'} = "ST"; |
314
|
|
|
|
|
|
|
$location{'1157'} = "København K"; $address{'1157'} = "Klosterstræde"; $type{'1157'} = "ST"; |
315
|
|
|
|
|
|
|
$location{'1158'} = "København K"; $address{'1158'} = "Skoubogade"; $type{'1158'} = "ST"; |
316
|
|
|
|
|
|
|
$location{'1159'} = "København K"; $address{'1159'} = "Skindergade"; $type{'1159'} = "ST"; |
317
|
|
|
|
|
|
|
$location{'1160'} = "København K"; $address{'1160'} = "Amagertorv"; $type{'1160'} = "ST"; |
318
|
|
|
|
|
|
|
$location{'1161'} = "København K"; $address{'1161'} = "Vimmelskaftet"; $type{'1161'} = "ST"; |
319
|
|
|
|
|
|
|
$location{'1162'} = "København K"; $address{'1162'} = "Jorcks Passage"; $type{'1162'} = "ST"; |
320
|
|
|
|
|
|
|
$location{'1163'} = "København K"; $address{'1163'} = "Klostergården"; $type{'1163'} = "ST"; |
321
|
|
|
|
|
|
|
$location{'1164'} = "København K"; $address{'1164'} = "Nygade"; $type{'1164'} = "ST"; |
322
|
|
|
|
|
|
|
$location{'1165'} = "København K"; $address{'1165'} = "Nørregade"; $type{'1165'} = "ST"; |
323
|
|
|
|
|
|
|
$location{'1165'} = "København K"; $address{'1165'} = "Nørregade"; $type{'1165'} = "ST"; |
324
|
|
|
|
|
|
|
$location{'1166'} = "København K"; $address{'1166'} = "Dyrkøb"; $type{'1166'} = "ST"; |
325
|
|
|
|
|
|
|
$location{'1167'} = "København K"; $address{'1167'} = "Bispetorvet"; $type{'1167'} = "ST"; |
326
|
|
|
|
|
|
|
$location{'1168'} = "København K"; $address{'1168'} = "Frue Plads"; $type{'1168'} = "ST"; |
327
|
|
|
|
|
|
|
$location{'1169'} = "København K"; $address{'1169'} = "Store Kannikestræde"; $type{'1169'} = "ST"; |
328
|
|
|
|
|
|
|
$location{'1170'} = "København K"; $address{'1170'} = "Lille Kannikestræde"; $type{'1170'} = "ST"; |
329
|
|
|
|
|
|
|
$location{'1171'} = "København K"; $address{'1171'} = "Fiolstræde"; $type{'1171'} = "ST"; |
330
|
|
|
|
|
|
|
$location{'1172'} = "København K"; $address{'1172'} = "Krystalgade"; $type{'1172'} = "ST"; |
331
|
|
|
|
|
|
|
$location{'1173'} = "København K"; $address{'1173'} = "Peder Hvitfeldts Stræde"; $type{'1173'} = "ST"; |
332
|
|
|
|
|
|
|
$location{'1174'} = "København K"; $address{'1174'} = "Rosengården"; $type{'1174'} = "ST"; |
333
|
|
|
|
|
|
|
$location{'1175'} = "København K"; $address{'1175'} = "Kultorvet"; $type{'1175'} = "ST"; |
334
|
|
|
|
|
|
|
$location{'1200'} = "København K"; $address{'1200'} = "Højbro Plads"; $type{'1200'} = "ST"; |
335
|
|
|
|
|
|
|
$location{'1201'} = "København K"; $address{'1201'} = "Læderstræde"; $type{'1201'} = "ST"; |
336
|
|
|
|
|
|
|
$location{'1202'} = "København K"; $address{'1202'} = "Gammel Strand"; $type{'1202'} = "ST"; |
337
|
|
|
|
|
|
|
$location{'1203'} = "København K"; $address{'1203'} = "Nybrogade"; $type{'1203'} = "ST"; |
338
|
|
|
|
|
|
|
$location{'1204'} = "København K"; $address{'1204'} = "Magstræde"; $type{'1204'} = "ST"; |
339
|
|
|
|
|
|
|
$location{'1205'} = "København K"; $address{'1205'} = "Snaregade"; $type{'1205'} = "ST"; |
340
|
|
|
|
|
|
|
$location{'1206'} = "København K"; $address{'1206'} = "Naboløs"; $type{'1206'} = "ST"; |
341
|
|
|
|
|
|
|
$location{'1207'} = "København K"; $address{'1207'} = "Hyskenstræde"; $type{'1207'} = "ST"; |
342
|
|
|
|
|
|
|
$location{'1208'} = "København K"; $address{'1208'} = "Kompagnistræde"; $type{'1208'} = "ST"; |
343
|
|
|
|
|
|
|
$location{'1209'} = "København K"; $address{'1209'} = "Badstuestræde"; $type{'1209'} = "ST"; |
344
|
|
|
|
|
|
|
$location{'1210'} = "København K"; $address{'1210'} = "Knabrostræde"; $type{'1210'} = "ST"; |
345
|
|
|
|
|
|
|
$location{'1211'} = "København K"; $address{'1211'} = "Brolæggerstræde"; $type{'1211'} = "ST"; |
346
|
|
|
|
|
|
|
$location{'1212'} = "København K"; $address{'1212'} = "Vindebrogade"; $type{'1212'} = "ST"; |
347
|
|
|
|
|
|
|
$location{'1213'} = "København K"; $address{'1213'} = "Bertel Thorvaldsens Plads"; $type{'1213'} = "ST"; |
348
|
|
|
|
|
|
|
$location{'1214'} = "København K"; $address{'1214'} = "Tøjhusgade"; $type{'1214'} = "ST"; |
349
|
|
|
|
|
|
|
$location{'1215'} = "København K"; $address{'1215'} = "Børsgade"; $type{'1215'} = "ST"; |
350
|
|
|
|
|
|
|
$location{'1216'} = "København K"; $address{'1216'} = "Slotsholmsgade"; $type{'1216'} = "ST"; |
351
|
|
|
|
|
|
|
$location{'1217'} = "København K"; $address{'1217'} = "Børsen"; $type{'1217'} = "ST"; |
352
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
353
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
354
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
355
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
356
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
357
|
|
|
|
|
|
|
$location{'1218'} = "København K"; $address{'1218'} = "Rigsdagsgården"; $type{'1218'} = "ST"; |
358
|
|
|
|
|
|
|
$location{'1219'} = "København K"; $address{'1219'} = "Christians Brygge 1-5 + 8"; $type{'1219'} = "ST"; |
359
|
|
|
|
|
|
|
$location{'1220'} = "København K"; $address{'1220'} = "Frederiksholms Kanal"; $type{'1220'} = "ST"; |
360
|
|
|
|
|
|
|
$location{'1221'} = "København K"; $address{'1221'} = "Søren Kierkegaards Plads"; $type{'1221'} = "ST"; |
361
|
|
|
|
|
|
|
$location{'1240'} = "København K"; $owner{'1240'} = "Folketinget"; $type{'1240'} = "IO"; |
362
|
|
|
|
|
|
|
$location{'1250'} = "København K"; $address{'1250'} = "Sankt Annæ Plads"; $type{'1250'} = "ST"; |
363
|
|
|
|
|
|
|
$location{'1251'} = "København K"; $address{'1251'} = "Kvæsthusgade"; $type{'1251'} = "ST"; |
364
|
|
|
|
|
|
|
$location{'1252'} = "København K"; $address{'1252'} = "Kvæsthusbroen"; $type{'1252'} = "ST"; |
365
|
|
|
|
|
|
|
$location{'1253'} = "København K"; $address{'1253'} = "Toldbodgade"; $type{'1253'} = "ST"; |
366
|
|
|
|
|
|
|
$location{'1254'} = "København K"; $address{'1254'} = "Lille Strandstræde"; $type{'1254'} = "ST"; |
367
|
|
|
|
|
|
|
$location{'1255'} = "København K"; $address{'1255'} = "Store Strandstræde"; $type{'1255'} = "ST"; |
368
|
|
|
|
|
|
|
$location{'1256'} = "København K"; $address{'1256'} = "Amaliegade"; $type{'1256'} = "ST"; |
369
|
|
|
|
|
|
|
$location{'1257'} = "København K"; $address{'1257'} = "Amalienborg"; $type{'1257'} = "ST"; |
370
|
|
|
|
|
|
|
$location{'1258'} = "København K"; $address{'1258'} = "Larsens Plads"; $type{'1258'} = "ST"; |
371
|
|
|
|
|
|
|
$location{'1259'} = "København K"; $address{'1259'} = "Trekroner"; $type{'1259'} = "ST"; |
372
|
|
|
|
|
|
|
$location{'1259'} = "København K"; $address{'1259'} = "Trekroner"; $type{'1259'} = "ST"; |
373
|
|
|
|
|
|
|
$location{'1260'} = "København K"; $address{'1260'} = "Bredgade"; $type{'1260'} = "ST"; |
374
|
|
|
|
|
|
|
$location{'1261'} = "København K"; $address{'1261'} = "Palægade"; $type{'1261'} = "ST"; |
375
|
|
|
|
|
|
|
$location{'1263'} = "København K"; $address{'1263'} = "Churchillparken"; $type{'1263'} = "ST"; |
376
|
|
|
|
|
|
|
$location{'1263'} = "København K"; $address{'1263'} = "Churchillparken"; $type{'1263'} = "ST"; |
377
|
|
|
|
|
|
|
$location{'1264'} = "København K"; $address{'1264'} = "Store Kongensgade"; $type{'1264'} = "ST"; |
378
|
|
|
|
|
|
|
$location{'1265'} = "København K"; $address{'1265'} = "Frederiksgade"; $type{'1265'} = "ST"; |
379
|
|
|
|
|
|
|
$location{'1266'} = "København K"; $address{'1266'} = "Bornholmsgade"; $type{'1266'} = "ST"; |
380
|
|
|
|
|
|
|
$location{'1267'} = "København K"; $address{'1267'} = "Hammerensgade"; $type{'1267'} = "ST"; |
381
|
|
|
|
|
|
|
$location{'1268'} = "København K"; $address{'1268'} = "Jens Kofods Gade"; $type{'1268'} = "ST"; |
382
|
|
|
|
|
|
|
$location{'1270'} = "København K"; $address{'1270'} = "Grønningen"; $type{'1270'} = "ST"; |
383
|
|
|
|
|
|
|
$location{'1271'} = "København K"; $address{'1271'} = "Poul Ankers Gade"; $type{'1271'} = "ST"; |
384
|
|
|
|
|
|
|
$location{'1291'} = "København K"; $owner{'1291'} = "J. Lauritzen A/S"; $type{'1291'} = "IO"; |
385
|
|
|
|
|
|
|
$location{'1300'} = "København K"; $address{'1300'} = "Borgergade"; $type{'1300'} = "ST"; |
386
|
|
|
|
|
|
|
$location{'1301'} = "København K"; $address{'1301'} = "Landgreven"; $type{'1301'} = "ST"; |
387
|
|
|
|
|
|
|
$location{'1302'} = "København K"; $address{'1302'} = "Dronningens Tværgade"; $type{'1302'} = "ST"; |
388
|
|
|
|
|
|
|
$location{'1303'} = "København K"; $address{'1303'} = "Hindegade"; $type{'1303'} = "ST"; |
389
|
|
|
|
|
|
|
$location{'1304'} = "København K"; $address{'1304'} = "Adelgade"; $type{'1304'} = "ST"; |
390
|
|
|
|
|
|
|
$location{'1306'} = "København K"; $address{'1306'} = "Kronprinsessegade"; $type{'1306'} = "ST"; |
391
|
|
|
|
|
|
|
$location{'1307'} = "København K"; $address{'1307'} = "Sølvgade"; $type{'1307'} = "ST"; |
392
|
|
|
|
|
|
|
$location{'1307'} = "København K"; $address{'1307'} = "Sølvgade"; $type{'1307'} = "ST"; |
393
|
|
|
|
|
|
|
$location{'1308'} = "København K"; $address{'1308'} = "Klerkegade"; $type{'1308'} = "ST"; |
394
|
|
|
|
|
|
|
$location{'1309'} = "København K"; $address{'1309'} = "Rosengade"; $type{'1309'} = "ST"; |
395
|
|
|
|
|
|
|
$location{'1310'} = "København K"; $address{'1310'} = "Fredericiagade"; $type{'1310'} = "ST"; |
396
|
|
|
|
|
|
|
$location{'1311'} = "København K"; $address{'1311'} = "Olfert Fischers Gade"; $type{'1311'} = "ST"; |
397
|
|
|
|
|
|
|
$location{'1312'} = "København K"; $address{'1312'} = "Gammelvagt"; $type{'1312'} = "ST"; |
398
|
|
|
|
|
|
|
$location{'1313'} = "København K"; $address{'1313'} = "Sankt Pauls Gade"; $type{'1313'} = "ST"; |
399
|
|
|
|
|
|
|
$location{'1314'} = "København K"; $address{'1314'} = "Sankt Pauls Plads"; $type{'1314'} = "ST"; |
400
|
|
|
|
|
|
|
$location{'1315'} = "København K"; $address{'1315'} = "Rævegade"; $type{'1315'} = "ST"; |
401
|
|
|
|
|
|
|
$location{'1316'} = "København K"; $address{'1316'} = "Rigensgade"; $type{'1316'} = "ST"; |
402
|
|
|
|
|
|
|
$location{'1317'} = "København K"; $address{'1317'} = "Stokhusgade"; $type{'1317'} = "ST"; |
403
|
|
|
|
|
|
|
$location{'1318'} = "København K"; $address{'1318'} = "Krusemyntegade"; $type{'1318'} = "ST"; |
404
|
|
|
|
|
|
|
$location{'1319'} = "København K"; $address{'1319'} = "Gernersgade"; $type{'1319'} = "ST"; |
405
|
|
|
|
|
|
|
$location{'1320'} = "København K"; $address{'1320'} = "Haregade"; $type{'1320'} = "ST"; |
406
|
|
|
|
|
|
|
$location{'1321'} = "København K"; $address{'1321'} = "Tigergade"; $type{'1321'} = "ST"; |
407
|
|
|
|
|
|
|
$location{'1322'} = "København K"; $address{'1322'} = "Suensonsgade"; $type{'1322'} = "ST"; |
408
|
|
|
|
|
|
|
$location{'1323'} = "København K"; $address{'1323'} = "Hjertensfrydsgade"; $type{'1323'} = "ST"; |
409
|
|
|
|
|
|
|
$location{'1324'} = "København K"; $address{'1324'} = "Elsdyrsgade"; $type{'1324'} = "ST"; |
410
|
|
|
|
|
|
|
$location{'1325'} = "København K"; $address{'1325'} = "Delfingade"; $type{'1325'} = "ST"; |
411
|
|
|
|
|
|
|
$location{'1326'} = "København K"; $address{'1326'} = "Krokodillegade"; $type{'1326'} = "ST"; |
412
|
|
|
|
|
|
|
$location{'1327'} = "København K"; $address{'1327'} = "Vildandegade"; $type{'1327'} = "ST"; |
413
|
|
|
|
|
|
|
$location{'1328'} = "København K"; $address{'1328'} = "Svanegade"; $type{'1328'} = "ST"; |
414
|
|
|
|
|
|
|
$location{'1329'} = "København K"; $address{'1329'} = "Timiansgade"; $type{'1329'} = "ST"; |
415
|
|
|
|
|
|
|
$location{'1349'} = "København K"; $owner{'1349'} = "DSB"; $type{'1349'} = "IO"; |
416
|
|
|
|
|
|
|
$location{'1350'} = "København K"; $address{'1350'} = "Øster Voldgade"; $type{'1350'} = "ST"; |
417
|
|
|
|
|
|
|
$location{'1352'} = "København K"; $address{'1352'} = "Rørholmsgade"; $type{'1352'} = "ST"; |
418
|
|
|
|
|
|
|
$location{'1353'} = "København K"; $address{'1353'} = "Øster Farimagsgade 3-15 + 2"; $type{'1353'} = "ST"; |
419
|
|
|
|
|
|
|
$location{'1354'} = "København K"; $address{'1354'} = "Ole Suhrs Gade"; $type{'1354'} = "ST"; |
420
|
|
|
|
|
|
|
$location{'1355'} = "København K"; $address{'1355'} = "Gammeltoftsgade"; $type{'1355'} = "ST"; |
421
|
|
|
|
|
|
|
$location{'1356'} = "København K"; $address{'1356'} = "Bartholinsgade"; $type{'1356'} = "ST"; |
422
|
|
|
|
|
|
|
$location{'1357'} = "København K"; $address{'1357'} = "Øster Søgade 8-36"; $type{'1357'} = "ST"; |
423
|
|
|
|
|
|
|
$location{'1358'} = "København K"; $address{'1358'} = "Nørre Voldgade"; $type{'1358'} = "ST"; |
424
|
|
|
|
|
|
|
$location{'1359'} = "København K"; $address{'1359'} = "Ahlefeldtsgade"; $type{'1359'} = "ST"; |
425
|
|
|
|
|
|
|
$location{'1359'} = "København K"; $address{'1359'} = "Ahlefeldtsgade"; $type{'1359'} = "ST"; |
426
|
|
|
|
|
|
|
$location{'1360'} = "København K"; $address{'1360'} = "Frederiksborggade"; $type{'1360'} = "ST"; |
427
|
|
|
|
|
|
|
$location{'1361'} = "København K"; $address{'1361'} = "Linnésgade"; $type{'1361'} = "ST"; |
428
|
|
|
|
|
|
|
$location{'1361'} = "København K"; $address{'1361'} = "Linnésgade"; $type{'1361'} = "ST"; |
429
|
|
|
|
|
|
|
$location{'1362'} = "København K"; $address{'1362'} = "Rømersgade"; $type{'1362'} = "ST"; |
430
|
|
|
|
|
|
|
$location{'1363'} = "København K"; $address{'1363'} = "Vendersgade"; $type{'1363'} = "ST"; |
431
|
|
|
|
|
|
|
$location{'1364'} = "København K"; $address{'1364'} = "Nørre Farimagsgade"; $type{'1364'} = "ST"; |
432
|
|
|
|
|
|
|
$location{'1365'} = "København K"; $address{'1365'} = "Schacksgade"; $type{'1365'} = "ST"; |
433
|
|
|
|
|
|
|
$location{'1366'} = "København K"; $address{'1366'} = "Nansensgade"; $type{'1366'} = "ST"; |
434
|
|
|
|
|
|
|
$location{'1367'} = "København K"; $address{'1367'} = "Kjeld Langes Gade"; $type{'1367'} = "ST"; |
435
|
|
|
|
|
|
|
$location{'1368'} = "København K"; $address{'1368'} = "Turesensgade"; $type{'1368'} = "ST"; |
436
|
|
|
|
|
|
|
$location{'1369'} = "København K"; $address{'1369'} = "Gyldenløvesgade lige nr."; $type{'1369'} = "ST"; |
437
|
|
|
|
|
|
|
$location{'1370'} = "København K"; $address{'1370'} = "Nørre Søgade"; $type{'1370'} = "ST"; |
438
|
|
|
|
|
|
|
$location{'1371'} = "København K"; $address{'1371'} = "Søtorvet"; $type{'1371'} = "ST"; |
439
|
|
|
|
|
|
|
$location{'1400'} = "København K"; $address{'1400'} = "Knippelsbro"; $type{'1400'} = "ST"; |
440
|
|
|
|
|
|
|
$location{'1400'} = "København K"; $address{'1400'} = "Knippelsbro"; $type{'1400'} = "ST"; |
441
|
|
|
|
|
|
|
$location{'1401'} = "København K"; $address{'1401'} = "Strandgade"; $type{'1401'} = "ST"; |
442
|
|
|
|
|
|
|
$location{'1402'} = "København K"; $address{'1402'} = "David Balfours Gade"; $type{'1402'} = "ST"; |
443
|
|
|
|
|
|
|
$location{'1402'} = "København K"; $address{'1402'} = "David Balfours Gade"; $type{'1402'} = "ST"; |
444
|
|
|
|
|
|
|
$location{'1402'} = "København K"; $address{'1402'} = "David Balfours Gade"; $type{'1402'} = "ST"; |
445
|
|
|
|
|
|
|
$location{'1402'} = "København K"; $address{'1402'} = "David Balfours Gade"; $type{'1402'} = "ST"; |
446
|
|
|
|
|
|
|
$location{'1402'} = "København K"; $address{'1402'} = "David Balfours Gade"; $type{'1402'} = "ST"; |
447
|
|
|
|
|
|
|
$location{'1403'} = "København K"; $address{'1403'} = "Wilders Plads"; $type{'1403'} = "ST"; |
448
|
|
|
|
|
|
|
$location{'1404'} = "København K"; $address{'1404'} = "Krøyers Plads"; $type{'1404'} = "ST"; |
449
|
|
|
|
|
|
|
$location{'1406'} = "København K"; $address{'1406'} = "Christianshavns Kanal"; $type{'1406'} = "ST"; |
450
|
|
|
|
|
|
|
$location{'1407'} = "København K"; $address{'1407'} = "Bådsmandsstræde"; $type{'1407'} = "ST"; |
451
|
|
|
|
|
|
|
$location{'1408'} = "København K"; $address{'1408'} = "Wildersgade"; $type{'1408'} = "ST"; |
452
|
|
|
|
|
|
|
$location{'1409'} = "København K"; $address{'1409'} = "Knippelsbrogade"; $type{'1409'} = "ST"; |
453
|
|
|
|
|
|
|
$location{'1410'} = "København K"; $address{'1410'} = "Christianshavns Torv"; $type{'1410'} = "ST"; |
454
|
|
|
|
|
|
|
$location{'1411'} = "København K"; $address{'1411'} = "Langebrogade"; $type{'1411'} = "ST"; |
455
|
|
|
|
|
|
|
$location{'1411'} = "København K"; $address{'1411'} = "Langebrogade"; $type{'1411'} = "ST"; |
456
|
|
|
|
|
|
|
$location{'1412'} = "København K"; $address{'1412'} = "Voldgården"; $type{'1412'} = "ST"; |
457
|
|
|
|
|
|
|
$location{'1413'} = "København K"; $address{'1413'} = "Ved Kanalen"; $type{'1413'} = "ST"; |
458
|
|
|
|
|
|
|
$location{'1414'} = "København K"; $address{'1414'} = "Overgaden Neden Vandet"; $type{'1414'} = "ST"; |
459
|
|
|
|
|
|
|
$location{'1415'} = "København K"; $address{'1415'} = "Overgaden Oven Vandet"; $type{'1415'} = "ST"; |
460
|
|
|
|
|
|
|
$location{'1416'} = "København K"; $address{'1416'} = "Sankt Annæ Gade"; $type{'1416'} = "ST"; |
461
|
|
|
|
|
|
|
$location{'1417'} = "København K"; $address{'1417'} = "Mikkel Vibes Gade"; $type{'1417'} = "ST"; |
462
|
|
|
|
|
|
|
$location{'1418'} = "København K"; $address{'1418'} = "Sofiegade"; $type{'1418'} = "ST"; |
463
|
|
|
|
|
|
|
$location{'1419'} = "København K"; $address{'1419'} = "Store Søndervoldstræde"; $type{'1419'} = "ST"; |
464
|
|
|
|
|
|
|
$location{'1420'} = "København K"; $address{'1420'} = "Dronningensgade"; $type{'1420'} = "ST"; |
465
|
|
|
|
|
|
|
$location{'1421'} = "København K"; $address{'1421'} = "Lille Søndervoldstræde"; $type{'1421'} = "ST"; |
466
|
|
|
|
|
|
|
$location{'1422'} = "København K"; $address{'1422'} = "Prinsessegade"; $type{'1422'} = "ST"; |
467
|
|
|
|
|
|
|
$location{'1423'} = "København K"; $address{'1423'} = "Amagergade"; $type{'1423'} = "ST"; |
468
|
|
|
|
|
|
|
$location{'1424'} = "København K"; $address{'1424'} = "Christianshavns Voldgade"; $type{'1424'} = "ST"; |
469
|
|
|
|
|
|
|
$location{'1425'} = "København K"; $address{'1425'} = "Ved Volden"; $type{'1425'} = "ST"; |
470
|
|
|
|
|
|
|
$location{'1426'} = "København K"; $address{'1426'} = "Voldboligerne"; $type{'1426'} = "ST"; |
471
|
|
|
|
|
|
|
$location{'1427'} = "København K"; $address{'1427'} = "Brobergsgade"; $type{'1427'} = "ST"; |
472
|
|
|
|
|
|
|
$location{'1428'} = "København K"; $address{'1428'} = "Andreas Bjørns Gade"; $type{'1428'} = "ST"; |
473
|
|
|
|
|
|
|
$location{'1429'} = "København K"; $address{'1429'} = "Burmeistersgade"; $type{'1429'} = "ST"; |
474
|
|
|
|
|
|
|
$location{'1430'} = "København K"; $address{'1430'} = "Bodenhoffs Plads"; $type{'1430'} = "ST"; |
475
|
|
|
|
|
|
|
$location{'1431'} = "København K"; $address{'1431'} = "Islands Plads"; $type{'1431'} = "ST"; |
476
|
|
|
|
|
|
|
$location{'1432'} = "København K"; $address{'1432'} = "William Wains Gade"; $type{'1432'} = "ST"; |
477
|
|
|
|
|
|
|
$location{'1432'} = "København K"; $address{'1432'} = "William Wains Gade"; $type{'1432'} = "ST"; |
478
|
|
|
|
|
|
|
$location{'1432'} = "København K"; $address{'1432'} = "William Wains Gade"; $type{'1432'} = "ST"; |
479
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
480
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
481
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
482
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
483
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
484
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
485
|
|
|
|
|
|
|
$location{'1433'} = "København K"; $address{'1433'} = "Refshaleøen"; $type{'1433'} = "ST"; |
486
|
|
|
|
|
|
|
$location{'1434'} = "København K"; $address{'1434'} = "Danneskiold-Samsøes Allé"; $type{'1434'} = "ST"; |
487
|
|
|
|
|
|
|
$location{'1435'} = "København K"; $address{'1435'} = "Philip De Langes Allé"; $type{'1435'} = "ST"; |
488
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
489
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
490
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
491
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
492
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
493
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
494
|
|
|
|
|
|
|
$location{'1436'} = "København K"; $address{'1436'} = "Kuglegårdsvej"; $type{'1436'} = "ST"; |
495
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
496
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
497
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
498
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
499
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
500
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
501
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
502
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
503
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
504
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
505
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
506
|
|
|
|
|
|
|
$location{'1437'} = "København K"; $address{'1437'} = "Per Knutzons Vej"; $type{'1437'} = "ST"; |
507
|
|
|
|
|
|
|
$location{'1438'} = "København K"; $address{'1438'} = "Judichærs Plads"; $type{'1438'} = "ST"; |
508
|
|
|
|
|
|
|
$location{'1438'} = "København K"; $address{'1438'} = "Judichærs Plads"; $type{'1438'} = "ST"; |
509
|
|
|
|
|
|
|
$location{'1438'} = "København K"; $address{'1438'} = "Judichærs Plads"; $type{'1438'} = "ST"; |
510
|
|
|
|
|
|
|
$location{'1438'} = "København K"; $address{'1438'} = "Judichærs Plads"; $type{'1438'} = "ST"; |
511
|
|
|
|
|
|
|
$location{'1438'} = "København K"; $address{'1438'} = "Judichærs Plads"; $type{'1438'} = "ST"; |
512
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
513
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
514
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
515
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
516
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
517
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
518
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
519
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
520
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
521
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
522
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
523
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
524
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
525
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
526
|
|
|
|
|
|
|
$location{'1439'} = "København K"; $address{'1439'} = "Krudtløbsvej"; $type{'1439'} = "ST"; |
527
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
528
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
529
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
530
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
531
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
532
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
533
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
534
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
535
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
536
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
537
|
|
|
|
|
|
|
$location{'1440'} = "København K"; $address{'1440'} = "Sydområdet"; $type{'1440'} = "ST"; |
538
|
|
|
|
|
|
|
$location{'1441'} = "København K"; $address{'1441'} = "Norddyssen"; $type{'1441'} = "ST"; |
539
|
|
|
|
|
|
|
$location{'1441'} = "København K"; $address{'1441'} = "Norddyssen"; $type{'1441'} = "ST"; |
540
|
|
|
|
|
|
|
$location{'1441'} = "København K"; $address{'1441'} = "Norddyssen"; $type{'1441'} = "ST"; |
541
|
|
|
|
|
|
|
$location{'1448'} = "København K"; $owner{'1448'} = "Udenrigsministeriet"; $type{'1448'} = "IO"; |
542
|
|
|
|
|
|
|
$location{'1450'} = "København K"; $address{'1450'} = "Nytorv"; $type{'1450'} = "ST"; |
543
|
|
|
|
|
|
|
$location{'1451'} = "København K"; $address{'1451'} = "Larslejsstræde"; $type{'1451'} = "ST"; |
544
|
|
|
|
|
|
|
$location{'1452'} = "København K"; $address{'1452'} = "Teglgårdstræde"; $type{'1452'} = "ST"; |
545
|
|
|
|
|
|
|
$location{'1453'} = "København K"; $address{'1453'} = "Sankt Peders Stræde"; $type{'1453'} = "ST"; |
546
|
|
|
|
|
|
|
$location{'1454'} = "København K"; $address{'1454'} = "Larsbjørnsstræde"; $type{'1454'} = "ST"; |
547
|
|
|
|
|
|
|
$location{'1455'} = "København K"; $address{'1455'} = "Studiestræde 3-49 + 6-40"; $type{'1455'} = "ST"; |
548
|
|
|
|
|
|
|
$location{'1456'} = "København K"; $address{'1456'} = "Vestergade"; $type{'1456'} = "ST"; |
549
|
|
|
|
|
|
|
$location{'1457'} = "København K"; $address{'1457'} = "Gammeltorv"; $type{'1457'} = "ST"; |
550
|
|
|
|
|
|
|
$location{'1458'} = "København K"; $address{'1458'} = "Kattesundet"; $type{'1458'} = "ST"; |
551
|
|
|
|
|
|
|
$location{'1459'} = "København K"; $address{'1459'} = "Frederiksberggade"; $type{'1459'} = "ST"; |
552
|
|
|
|
|
|
|
$location{'1460'} = "København K"; $address{'1460'} = "Mikkel Bryggers Gade"; $type{'1460'} = "ST"; |
553
|
|
|
|
|
|
|
$location{'1461'} = "København K"; $address{'1461'} = "Slutterigade"; $type{'1461'} = "ST"; |
554
|
|
|
|
|
|
|
$location{'1462'} = "København K"; $address{'1462'} = "Lavendelstræde"; $type{'1462'} = "ST"; |
555
|
|
|
|
|
|
|
$location{'1463'} = "København K"; $address{'1463'} = "Farvergade"; $type{'1463'} = "ST"; |
556
|
|
|
|
|
|
|
$location{'1464'} = "København K"; $address{'1464'} = "Hestemøllestræde"; $type{'1464'} = "ST"; |
557
|
|
|
|
|
|
|
$location{'1465'} = "København K"; $address{'1465'} = "Gåsegade"; $type{'1465'} = "ST"; |
558
|
|
|
|
|
|
|
$location{'1466'} = "København K"; $address{'1466'} = "Rådhusstræde"; $type{'1466'} = "ST"; |
559
|
|
|
|
|
|
|
$location{'1467'} = "København K"; $address{'1467'} = "Vandkunsten"; $type{'1467'} = "ST"; |
560
|
|
|
|
|
|
|
$location{'1468'} = "København K"; $address{'1468'} = "Løngangstræde"; $type{'1468'} = "ST"; |
561
|
|
|
|
|
|
|
$location{'1470'} = "København K"; $address{'1470'} = "Stormgade 2-14"; $type{'1470'} = "ST"; |
562
|
|
|
|
|
|
|
$location{'1471'} = "København K"; $address{'1471'} = "Ny Vestergade"; $type{'1471'} = "ST"; |
563
|
|
|
|
|
|
|
$location{'1472'} = "København K"; $address{'1472'} = "Ny Kongensgade 1-15 + 4-14"; $type{'1472'} = "ST"; |
564
|
|
|
|
|
|
|
$location{'1473'} = "København K"; $address{'1473'} = "Bryghusgade"; $type{'1473'} = "ST"; |
565
|
|
|
|
|
|
|
$location{'1500'} = "København V"; $owner{'1500'} = "Vesterbro Postkontor"; $type{'1500'} = "IO"; |
566
|
|
|
|
|
|
|
$location{'1501'} = "København V"; $type{'1501'} = "BX"; |
567
|
|
|
|
|
|
|
$location{'1502'} = "København V"; $type{'1502'} = "BX"; |
568
|
|
|
|
|
|
|
$location{'1503'} = "København V"; $type{'1503'} = "BX"; |
569
|
|
|
|
|
|
|
$location{'1504'} = "København V"; $type{'1504'} = "BX"; |
570
|
|
|
|
|
|
|
$location{'1505'} = "København V"; $type{'1505'} = "BX"; |
571
|
|
|
|
|
|
|
$location{'1506'} = "København V"; $type{'1506'} = "BX"; |
572
|
|
|
|
|
|
|
$location{'1507'} = "København V"; $type{'1507'} = "BX"; |
573
|
|
|
|
|
|
|
$location{'1508'} = "København V"; $type{'1508'} = "BX"; |
574
|
|
|
|
|
|
|
$location{'1509'} = "København V"; $type{'1509'} = "BX"; |
575
|
|
|
|
|
|
|
$location{'1510'} = "København V"; $type{'1510'} = "BX"; |
576
|
|
|
|
|
|
|
$location{'1532'} = "København V"; $owner{'1532'} = "Internationalt Postcenter, returforsendelser + consignment"; $type{'1532'} = "IO"; |
577
|
|
|
|
|
|
|
$location{'1533'} = "København V"; $owner{'1533'} = "Internationalt Postcenter"; $type{'1533'} = "IO"; |
578
|
|
|
|
|
|
|
$location{'1550'} = "København V"; $address{'1550'} = "Bag Rådhuset"; $type{'1550'} = "ST"; |
579
|
|
|
|
|
|
|
$location{'1550'} = "København V"; $address{'1550'} = "Bag Rådhuset"; $type{'1550'} = "ST"; |
580
|
|
|
|
|
|
|
$location{'1551'} = "København V"; $address{'1551'} = "Jarmers Plads"; $type{'1551'} = "ST"; |
581
|
|
|
|
|
|
|
$location{'1552'} = "København V"; $address{'1552'} = "Vester Voldgade"; $type{'1552'} = "ST"; |
582
|
|
|
|
|
|
|
$location{'1553'} = "København V"; $address{'1553'} = "Langebro"; $type{'1553'} = "ST"; |
583
|
|
|
|
|
|
|
$location{'1553'} = "København V"; $address{'1553'} = "Langebro"; $type{'1553'} = "ST"; |
584
|
|
|
|
|
|
|
$location{'1554'} = "København V"; $address{'1554'} = "Studiestræde 57-69 + 50-54"; $type{'1554'} = "ST"; |
585
|
|
|
|
|
|
|
$location{'1555'} = "København V"; $address{'1555'} = "Stormgade 20 + 35"; $type{'1555'} = "ST"; |
586
|
|
|
|
|
|
|
$location{'1556'} = "København V"; $address{'1556'} = "Dantes Plads"; $type{'1556'} = "ST"; |
587
|
|
|
|
|
|
|
$location{'1557'} = "København V"; $address{'1557'} = "Ny Kongensgade 19-21 + 18-20"; $type{'1557'} = "ST"; |
588
|
|
|
|
|
|
|
$location{'1558'} = "København V"; $address{'1558'} = "Christiansborggade"; $type{'1558'} = "ST"; |
589
|
|
|
|
|
|
|
$location{'1559'} = "København V"; $address{'1559'} = "Christians Brygge 24-30"; $type{'1559'} = "ST"; |
590
|
|
|
|
|
|
|
$location{'1560'} = "København V"; $address{'1560'} = "Kalvebod Brygge"; $type{'1560'} = "ST"; |
591
|
|
|
|
|
|
|
$location{'1561'} = "København V"; $address{'1561'} = "Kalvebod Pladsvej"; $type{'1561'} = "ST"; |
592
|
|
|
|
|
|
|
$location{'1561'} = "København V"; $address{'1561'} = "Kalvebod Pladsvej"; $type{'1561'} = "ST"; |
593
|
|
|
|
|
|
|
$location{'1562'} = "København V"; $address{'1562'} = "Hambrosgade"; $type{'1562'} = "ST"; |
594
|
|
|
|
|
|
|
$location{'1563'} = "København V"; $address{'1563'} = "Otto Mønsteds Plads"; $type{'1563'} = "ST"; |
595
|
|
|
|
|
|
|
$location{'1564'} = "København V"; $address{'1564'} = "Rysensteensgade"; $type{'1564'} = "ST"; |
596
|
|
|
|
|
|
|
$location{'1566'} = "København V"; $owner{'1566'} = "Post Danmark A/S"; $type{'1566'} = "IO"; |
597
|
|
|
|
|
|
|
$location{'1567'} = "København V"; $address{'1567'} = "Polititorvet"; $type{'1567'} = "ST"; |
598
|
|
|
|
|
|
|
$location{'1568'} = "København V"; $address{'1568'} = "Mitchellsgade"; $type{'1568'} = "ST"; |
599
|
|
|
|
|
|
|
$location{'1569'} = "København V"; $address{'1569'} = "Edvard Falcks Gade"; $type{'1569'} = "ST"; |
600
|
|
|
|
|
|
|
$location{'1570'} = "København V"; $address{'1570'} = "Banegårdspladsen"; $type{'1570'} = "ST"; |
601
|
|
|
|
|
|
|
$location{'1570'} = "København V"; $address{'1570'} = "Banegårdspladsen"; $type{'1570'} = "ST"; |
602
|
|
|
|
|
|
|
$location{'1571'} = "København V"; $address{'1571'} = "Otto Mønsteds Gade"; $type{'1571'} = "ST"; |
603
|
|
|
|
|
|
|
$location{'1572'} = "København V"; $address{'1572'} = "Anker Heegaards Gade"; $type{'1572'} = "ST"; |
604
|
|
|
|
|
|
|
$location{'1573'} = "København V"; $address{'1573'} = "Puggaardsgade"; $type{'1573'} = "ST"; |
605
|
|
|
|
|
|
|
$location{'1574'} = "København V"; $address{'1574'} = "Niels Brocks Gade"; $type{'1574'} = "ST"; |
606
|
|
|
|
|
|
|
$location{'1575'} = "København V"; $address{'1575'} = "Ved Glyptoteket"; $type{'1575'} = "ST"; |
607
|
|
|
|
|
|
|
$location{'1576'} = "København V"; $address{'1576'} = "Stoltenbergsgade"; $type{'1576'} = "ST"; |
608
|
|
|
|
|
|
|
$location{'1577'} = "København V"; $address{'1577'} = "Arni Magnussons Gade"; $type{'1577'} = "ST"; |
609
|
|
|
|
|
|
|
$location{'1577'} = "København V"; $address{'1577'} = "Arni Magnussons Gade"; $type{'1577'} = "ST"; |
610
|
|
|
|
|
|
|
$location{'1577'} = "København V"; $address{'1577'} = "Arni Magnussons Gade"; $type{'1577'} = "ST"; |
611
|
|
|
|
|
|
|
$location{'1592'} = "København V"; $owner{'1592'} = "Københavns Socialdirektorat"; $type{'1592'} = "IO"; |
612
|
|
|
|
|
|
|
$location{'1599'} = "København V"; $owner{'1599'} = "Københavns Rådhus"; $type{'1599'} = "IO"; |
613
|
|
|
|
|
|
|
$location{'1600'} = "København V"; $address{'1600'} = "Gyldenløvesgade ulige nr."; $type{'1600'} = "ST"; |
614
|
|
|
|
|
|
|
$location{'1601'} = "København V"; $address{'1601'} = "Vester Søgade"; $type{'1601'} = "ST"; |
615
|
|
|
|
|
|
|
$location{'1602'} = "København V"; $address{'1602'} = "Nyropsgade"; $type{'1602'} = "ST"; |
616
|
|
|
|
|
|
|
$location{'1603'} = "København V"; $address{'1603'} = "Dahlerupsgade"; $type{'1603'} = "ST"; |
617
|
|
|
|
|
|
|
$location{'1604'} = "København V"; $address{'1604'} = "Kampmannsgade"; $type{'1604'} = "ST"; |
618
|
|
|
|
|
|
|
$location{'1605'} = "København V"; $address{'1605'} = "Herholdtsgade"; $type{'1605'} = "ST"; |
619
|
|
|
|
|
|
|
$location{'1606'} = "København V"; $address{'1606'} = "Vester Farimagsgade"; $type{'1606'} = "ST"; |
620
|
|
|
|
|
|
|
$location{'1607'} = "København V"; $address{'1607'} = "Staunings Plads"; $type{'1607'} = "ST"; |
621
|
|
|
|
|
|
|
$location{'1608'} = "København V"; $address{'1608'} = "Jernbanegade"; $type{'1608'} = "ST"; |
622
|
|
|
|
|
|
|
$location{'1609'} = "København V"; $address{'1609'} = "Axeltorv"; $type{'1609'} = "ST"; |
623
|
|
|
|
|
|
|
$location{'1610'} = "København V"; $address{'1610'} = "Gammel Kongevej 1-55 + 10"; $type{'1610'} = "ST"; |
624
|
|
|
|
|
|
|
$location{'1611'} = "København V"; $address{'1611'} = "Hammerichsgade"; $type{'1611'} = "ST"; |
625
|
|
|
|
|
|
|
$location{'1612'} = "København V"; $address{'1612'} = "Ved Vesterport"; $type{'1612'} = "ST"; |
626
|
|
|
|
|
|
|
$location{'1613'} = "København V"; $address{'1613'} = "Meldahlsgade"; $type{'1613'} = "ST"; |
627
|
|
|
|
|
|
|
$location{'1614'} = "København V"; $address{'1614'} = "Trommesalen"; $type{'1614'} = "ST"; |
628
|
|
|
|
|
|
|
$location{'1615'} = "København V"; $address{'1615'} = "Sankt Jørgens Allé"; $type{'1615'} = "ST"; |
629
|
|
|
|
|
|
|
$location{'1616'} = "København V"; $address{'1616'} = "Stenosgade"; $type{'1616'} = "ST"; |
630
|
|
|
|
|
|
|
$location{'1617'} = "København V"; $address{'1617'} = "Bagerstræde"; $type{'1617'} = "ST"; |
631
|
|
|
|
|
|
|
$location{'1618'} = "København V"; $address{'1618'} = "Tullinsgade"; $type{'1618'} = "ST"; |
632
|
|
|
|
|
|
|
$location{'1619'} = "København V"; $address{'1619'} = "Værnedamsvej lige nr."; $type{'1619'} = "ST"; |
633
|
|
|
|
|
|
|
$location{'1620'} = "København V"; $address{'1620'} = "Vesterbros Torv"; $type{'1620'} = "ST"; |
634
|
|
|
|
|
|
|
$location{'1620'} = "København V"; $address{'1620'} = "Vesterbros Torv"; $type{'1620'} = "ST"; |
635
|
|
|
|
|
|
|
$location{'1621'} = "København V"; $address{'1621'} = "Frederiksberg Allé 1 - 13B"; $type{'1621'} = "ST"; |
636
|
|
|
|
|
|
|
$location{'1622'} = "København V"; $address{'1622'} = "Boyesgade ulige nr."; $type{'1622'} = "ST"; |
637
|
|
|
|
|
|
|
$location{'1623'} = "København V"; $address{'1623'} = "Kingosgade 1-9"; $type{'1623'} = "ST"; |
638
|
|
|
|
|
|
|
$location{'1624'} = "København V"; $address{'1624'} = "Brorsonsgade"; $type{'1624'} = "ST"; |
639
|
|
|
|
|
|
|
$location{'1630'} = "København V"; $owner{'1630'} = "Tivoli A/S"; $type{'1630'} = "IO"; |
640
|
|
|
|
|
|
|
$location{'1631'} = "København V"; $address{'1631'} = "Herman Triers Plads"; $type{'1631'} = "ST"; |
641
|
|
|
|
|
|
|
$location{'1632'} = "København V"; $address{'1632'} = "Julius Thomsens Gade lige nr."; $type{'1632'} = "ST"; |
642
|
|
|
|
|
|
|
$location{'1633'} = "København V"; $address{'1633'} = "Kleinsgade"; $type{'1633'} = "ST"; |
643
|
|
|
|
|
|
|
$location{'1634'} = "København V"; $address{'1634'} = "Rosenørns Allé 2-18"; $type{'1634'} = "ST"; |
644
|
|
|
|
|
|
|
$location{'1635'} = "København V"; $address{'1635'} = "Åboulevard 1-13"; $type{'1635'} = "ST"; |
645
|
|
|
|
|
|
|
$location{'1640'} = "København V"; $owner{'1640'} = "Københavns Folkeregister"; $type{'1640'} = "IO"; |
646
|
|
|
|
|
|
|
$location{'1650'} = "København V"; $address{'1650'} = "Istedgade"; $type{'1650'} = "ST"; |
647
|
|
|
|
|
|
|
$location{'1651'} = "København V"; $address{'1651'} = "Reventlowsgade"; $type{'1651'} = "ST"; |
648
|
|
|
|
|
|
|
$location{'1652'} = "København V"; $address{'1652'} = "Colbjørnsensgade"; $type{'1652'} = "ST"; |
649
|
|
|
|
|
|
|
$location{'1653'} = "København V"; $address{'1653'} = "Helgolandsgade"; $type{'1653'} = "ST"; |
650
|
|
|
|
|
|
|
$location{'1654'} = "København V"; $address{'1654'} = "Abel Cathrines Gade"; $type{'1654'} = "ST"; |
651
|
|
|
|
|
|
|
$location{'1655'} = "København V"; $address{'1655'} = "Viktoriagade"; $type{'1655'} = "ST"; |
652
|
|
|
|
|
|
|
$location{'1656'} = "København V"; $address{'1656'} = "Gasværksvej"; $type{'1656'} = "ST"; |
653
|
|
|
|
|
|
|
$location{'1657'} = "København V"; $address{'1657'} = "Eskildsgade"; $type{'1657'} = "ST"; |
654
|
|
|
|
|
|
|
$location{'1658'} = "København V"; $address{'1658'} = "Absalonsgade"; $type{'1658'} = "ST"; |
655
|
|
|
|
|
|
|
$location{'1659'} = "København V"; $address{'1659'} = "Svendsgade"; $type{'1659'} = "ST"; |
656
|
|
|
|
|
|
|
$location{'1660'} = "København V"; $address{'1660'} = "Dannebrogsgade"; $type{'1660'} = "ST"; |
657
|
|
|
|
|
|
|
$location{'1660'} = "København V"; $address{'1660'} = "Dannebrogsgade"; $type{'1660'} = "ST"; |
658
|
|
|
|
|
|
|
$location{'1661'} = "København V"; $address{'1661'} = "Westend"; $type{'1661'} = "ST"; |
659
|
|
|
|
|
|
|
$location{'1662'} = "København V"; $address{'1662'} = "Saxogade"; $type{'1662'} = "ST"; |
660
|
|
|
|
|
|
|
$location{'1663'} = "København V"; $address{'1663'} = "Oehlenschlægersgade"; $type{'1663'} = "ST"; |
661
|
|
|
|
|
|
|
$location{'1664'} = "København V"; $address{'1664'} = "Kaalundsgade"; $type{'1664'} = "ST"; |
662
|
|
|
|
|
|
|
$location{'1665'} = "København V"; $address{'1665'} = "Valdemarsgade"; $type{'1665'} = "ST"; |
663
|
|
|
|
|
|
|
$location{'1666'} = "København V"; $address{'1666'} = "Matthæusgade"; $type{'1666'} = "ST"; |
664
|
|
|
|
|
|
|
$location{'1667'} = "København V"; $address{'1667'} = "Frederiksstadsgade"; $type{'1667'} = "ST"; |
665
|
|
|
|
|
|
|
$location{'1668'} = "København V"; $address{'1668'} = "Mysundegade"; $type{'1668'} = "ST"; |
666
|
|
|
|
|
|
|
$location{'1669'} = "København V"; $address{'1669'} = "Flensborggade"; $type{'1669'} = "ST"; |
667
|
|
|
|
|
|
|
$location{'1670'} = "København V"; $address{'1670'} = "Enghave Plads"; $type{'1670'} = "ST"; |
668
|
|
|
|
|
|
|
$location{'1671'} = "København V"; $address{'1671'} = "Haderslevgade"; $type{'1671'} = "ST"; |
669
|
|
|
|
|
|
|
$location{'1671'} = "København V"; $address{'1671'} = "Haderslevgade"; $type{'1671'} = "ST"; |
670
|
|
|
|
|
|
|
$location{'1672'} = "København V"; $address{'1672'} = "Broagergade"; $type{'1672'} = "ST"; |
671
|
|
|
|
|
|
|
$location{'1673'} = "København V"; $address{'1673'} = "Ullerupgade"; $type{'1673'} = "ST"; |
672
|
|
|
|
|
|
|
$location{'1674'} = "København V"; $address{'1674'} = "Enghavevej 1-77 + 2- 78"; $type{'1674'} = "ST"; |
673
|
|
|
|
|
|
|
$location{'1675'} = "København V"; $address{'1675'} = "Kongshøjgade"; $type{'1675'} = "ST"; |
674
|
|
|
|
|
|
|
$location{'1676'} = "København V"; $address{'1676'} = "Sankelmarksgade"; $type{'1676'} = "ST"; |
675
|
|
|
|
|
|
|
$location{'1677'} = "København V"; $address{'1677'} = "Gråstensgade"; $type{'1677'} = "ST"; |
676
|
|
|
|
|
|
|
$location{'1699'} = "København V"; $address{'1699'} = "Staldgade"; $type{'1699'} = "ST"; |
677
|
|
|
|
|
|
|
$location{'1700'} = "København V"; $address{'1700'} = "Halmtorvet"; $type{'1700'} = "ST"; |
678
|
|
|
|
|
|
|
$location{'1701'} = "København V"; $address{'1701'} = "Reverdilsgade"; $type{'1701'} = "ST"; |
679
|
|
|
|
|
|
|
$location{'1702'} = "København V"; $address{'1702'} = "Stampesgade"; $type{'1702'} = "ST"; |
680
|
|
|
|
|
|
|
$location{'1703'} = "København V"; $address{'1703'} = "Lille Colbjørnsensgade"; $type{'1703'} = "ST"; |
681
|
|
|
|
|
|
|
$location{'1704'} = "København V"; $address{'1704'} = "Tietgensgade"; $type{'1704'} = "ST"; |
682
|
|
|
|
|
|
|
$location{'1705'} = "København V"; $address{'1705'} = "Ingerslevsgade"; $type{'1705'} = "ST"; |
683
|
|
|
|
|
|
|
$location{'1706'} = "København V"; $address{'1706'} = "Lille Istedgade"; $type{'1706'} = "ST"; |
684
|
|
|
|
|
|
|
$location{'1707'} = "København V"; $address{'1707'} = "Maria Kirkeplads"; $type{'1707'} = "ST"; |
685
|
|
|
|
|
|
|
$location{'1708'} = "København V"; $address{'1708'} = "Eriksgade"; $type{'1708'} = "ST"; |
686
|
|
|
|
|
|
|
$location{'1709'} = "København V"; $address{'1709'} = "Skydebanegade"; $type{'1709'} = "ST"; |
687
|
|
|
|
|
|
|
$location{'1710'} = "København V"; $address{'1710'} = "Kvægtorvsgade"; $type{'1710'} = "ST"; |
688
|
|
|
|
|
|
|
$location{'1711'} = "København V"; $address{'1711'} = "Flæsketorvet"; $type{'1711'} = "ST"; |
689
|
|
|
|
|
|
|
$location{'1711'} = "København V"; $address{'1711'} = "Flæsketorvet"; $type{'1711'} = "ST"; |
690
|
|
|
|
|
|
|
$location{'1712'} = "København V"; $address{'1712'} = "Høkerboderne"; $type{'1712'} = "ST"; |
691
|
|
|
|
|
|
|
$location{'1713'} = "København V"; $address{'1713'} = "Kvægtorvet"; $type{'1713'} = "ST"; |
692
|
|
|
|
|
|
|
$location{'1714'} = "København V"; $address{'1714'} = "Kødboderne"; $type{'1714'} = "ST"; |
693
|
|
|
|
|
|
|
$location{'1715'} = "København V"; $address{'1715'} = "Slagtehusgade"; $type{'1715'} = "ST"; |
694
|
|
|
|
|
|
|
$location{'1716'} = "København V"; $address{'1716'} = "Slagterboderne"; $type{'1716'} = "ST"; |
695
|
|
|
|
|
|
|
$location{'1717'} = "København V"; $address{'1717'} = "Skelbækgade"; $type{'1717'} = "ST"; |
696
|
|
|
|
|
|
|
$location{'1718'} = "København V"; $address{'1718'} = "Sommerstedgade"; $type{'1718'} = "ST"; |
697
|
|
|
|
|
|
|
$location{'1719'} = "København V"; $address{'1719'} = "Krusågade"; $type{'1719'} = "ST"; |
698
|
|
|
|
|
|
|
$location{'1720'} = "København V"; $address{'1720'} = "Sønder Boulevard"; $type{'1720'} = "ST"; |
699
|
|
|
|
|
|
|
$location{'1721'} = "København V"; $address{'1721'} = "Dybbølsgade"; $type{'1721'} = "ST"; |
700
|
|
|
|
|
|
|
$location{'1722'} = "København V"; $address{'1722'} = "Godsbanegade"; $type{'1722'} = "ST"; |
701
|
|
|
|
|
|
|
$location{'1723'} = "København V"; $address{'1723'} = "Letlandsgade"; $type{'1723'} = "ST"; |
702
|
|
|
|
|
|
|
$location{'1724'} = "København V"; $address{'1724'} = "Estlandsgade"; $type{'1724'} = "ST"; |
703
|
|
|
|
|
|
|
$location{'1725'} = "København V"; $address{'1725'} = "Esbern Snares Gade"; $type{'1725'} = "ST"; |
704
|
|
|
|
|
|
|
$location{'1726'} = "København V"; $address{'1726'} = "Arkonagade"; $type{'1726'} = "ST"; |
705
|
|
|
|
|
|
|
$location{'1727'} = "København V"; $address{'1727'} = "Asger Rygs Gade"; $type{'1727'} = "ST"; |
706
|
|
|
|
|
|
|
$location{'1728'} = "København V"; $address{'1728'} = "Skjalm Hvides Gade"; $type{'1728'} = "ST"; |
707
|
|
|
|
|
|
|
$location{'1729'} = "København V"; $address{'1729'} = "Sigerstedgade"; $type{'1729'} = "ST"; |
708
|
|
|
|
|
|
|
$location{'1730'} = "København V"; $address{'1730'} = "Knud Lavards Gade"; $type{'1730'} = "ST"; |
709
|
|
|
|
|
|
|
$location{'1731'} = "København V"; $address{'1731'} = "Erik Ejegods Gade"; $type{'1731'} = "ST"; |
710
|
|
|
|
|
|
|
$location{'1732'} = "København V"; $address{'1732'} = "Bodilsgade"; $type{'1732'} = "ST"; |
711
|
|
|
|
|
|
|
$location{'1733'} = "København V"; $address{'1733'} = "Palnatokesgade"; $type{'1733'} = "ST"; |
712
|
|
|
|
|
|
|
$location{'1734'} = "København V"; $address{'1734'} = "Heilsgade"; $type{'1734'} = "ST"; |
713
|
|
|
|
|
|
|
$location{'1735'} = "København V"; $address{'1735'} = "Røddinggade"; $type{'1735'} = "ST"; |
714
|
|
|
|
|
|
|
$location{'1736'} = "København V"; $address{'1736'} = "Bevtoftgade"; $type{'1736'} = "ST"; |
715
|
|
|
|
|
|
|
$location{'1737'} = "København V"; $address{'1737'} = "Bustrupgade"; $type{'1737'} = "ST"; |
716
|
|
|
|
|
|
|
$location{'1738'} = "København V"; $address{'1738'} = "Stenderupgade"; $type{'1738'} = "ST"; |
717
|
|
|
|
|
|
|
$location{'1739'} = "København V"; $address{'1739'} = "Enghave Passage"; $type{'1739'} = "ST"; |
718
|
|
|
|
|
|
|
$location{'1748'} = "København V"; $address{'1748'} = "Kammasvej 2"; $type{'1748'} = "ST"; |
719
|
|
|
|
|
|
|
$location{'1749'} = "København V"; $address{'1749'} = "Rahbeks Allé 3-11"; $type{'1749'} = "ST"; |
720
|
|
|
|
|
|
|
$location{'1750'} = "København V"; $address{'1750'} = "Vesterfælledvej"; $type{'1750'} = "ST"; |
721
|
|
|
|
|
|
|
$location{'1751'} = "København V"; $address{'1751'} = "Sundevedsgade"; $type{'1751'} = "ST"; |
722
|
|
|
|
|
|
|
$location{'1752'} = "København V"; $address{'1752'} = "Tøndergade"; $type{'1752'} = "ST"; |
723
|
|
|
|
|
|
|
$location{'1753'} = "København V"; $address{'1753'} = "Ballumgade"; $type{'1753'} = "ST"; |
724
|
|
|
|
|
|
|
$location{'1754'} = "København V"; $address{'1754'} = "Hedebygade"; $type{'1754'} = "ST"; |
725
|
|
|
|
|
|
|
$location{'1755'} = "København V"; $address{'1755'} = "Møgeltøndergade"; $type{'1755'} = "ST"; |
726
|
|
|
|
|
|
|
$location{'1756'} = "København V"; $address{'1756'} = "Amerikavej"; $type{'1756'} = "ST"; |
727
|
|
|
|
|
|
|
$location{'1757'} = "København V"; $address{'1757'} = "Trøjborggade"; $type{'1757'} = "ST"; |
728
|
|
|
|
|
|
|
$location{'1758'} = "København V"; $address{'1758'} = "Lyrskovgade"; $type{'1758'} = "ST"; |
729
|
|
|
|
|
|
|
$location{'1759'} = "København V"; $address{'1759'} = "Rejsbygade"; $type{'1759'} = "ST"; |
730
|
|
|
|
|
|
|
$location{'1760'} = "København V"; $address{'1760'} = "Ny Carlsberg Vej"; $type{'1760'} = "ST"; |
731
|
|
|
|
|
|
|
$location{'1761'} = "København V"; $address{'1761'} = "Ejderstedgade"; $type{'1761'} = "ST"; |
732
|
|
|
|
|
|
|
$location{'1762'} = "København V"; $address{'1762'} = "Slesvigsgade"; $type{'1762'} = "ST"; |
733
|
|
|
|
|
|
|
$location{'1763'} = "København V"; $address{'1763'} = "Dannevirkegade"; $type{'1763'} = "ST"; |
734
|
|
|
|
|
|
|
$location{'1764'} = "København V"; $address{'1764'} = "Alsgade"; $type{'1764'} = "ST"; |
735
|
|
|
|
|
|
|
$location{'1765'} = "København V"; $address{'1765'} = "Angelgade"; $type{'1765'} = "ST"; |
736
|
|
|
|
|
|
|
$location{'1766'} = "København V"; $address{'1766'} = "Slien"; $type{'1766'} = "ST"; |
737
|
|
|
|
|
|
|
$location{'1770'} = "København V"; $address{'1770'} = "Carstensgade"; $type{'1770'} = "ST"; |
738
|
|
|
|
|
|
|
$location{'1771'} = "København V"; $address{'1771'} = "Lundbyesgade"; $type{'1771'} = "ST"; |
739
|
|
|
|
|
|
|
$location{'1772'} = "København V"; $address{'1772'} = "Ernst Meyers Gade"; $type{'1772'} = "ST"; |
740
|
|
|
|
|
|
|
$location{'1773'} = "København V"; $address{'1773'} = "Bissensgade"; $type{'1773'} = "ST"; |
741
|
|
|
|
|
|
|
$location{'1774'} = "København V"; $address{'1774'} = "Küchlersgade"; $type{'1774'} = "ST"; |
742
|
|
|
|
|
|
|
$location{'1775'} = "København V"; $address{'1775'} = "Freundsgade"; $type{'1775'} = "ST"; |
743
|
|
|
|
|
|
|
$location{'1777'} = "København V"; $address{'1777'} = "Jerichausgade"; $type{'1777'} = "ST"; |
744
|
|
|
|
|
|
|
$location{'1778'} = "København V"; $address{'1778'} = "Pasteursvej"; $type{'1778'} = "ST"; |
745
|
|
|
|
|
|
|
$location{'1780'} = "København V"; $owner{'1780'} = "Erhvervskunder"; |
746
|
|
|
|
|
|
|
$location{'1782'} = "København V"; $type{'1782'} = "PP"; |
747
|
|
|
|
|
|
|
$location{'1785'} = "København V"; $owner{'1785'} = "Politiken og Ekstra Bladet"; $type{'1785'} = "IO"; |
748
|
|
|
|
|
|
|
$location{'1786'} = "København V"; $owner{'1786'} = "Nordea"; $type{'1786'} = "IO"; |
749
|
|
|
|
|
|
|
$location{'1787'} = "København V"; $owner{'1787'} = "Dansk Industri"; $type{'1787'} = "IO"; |
750
|
|
|
|
|
|
|
$location{'1789'} = "København V"; $owner{'1789'} = "Star Tour A/S"; $type{'1789'} = "IO"; |
751
|
|
|
|
|
|
|
$location{'1790'} = "København V"; $owner{'1790'} = "Erhvervskunder"; |
752
|
|
|
|
|
|
|
$location{'1799'} = "København V"; $owner{'1799'} = "Carlsberg"; $type{'1799'} = "IO"; |
753
|
|
|
|
|
|
|
$location{'1800'} = "Frederiksberg C"; $address{'1800'} = "Vesterbrogade 161-191 + 162-208"; $type{'1800'} = "ST"; |
754
|
|
|
|
|
|
|
$location{'1801'} = "Frederiksberg C"; $address{'1801'} = "Rahbeks Alle 2-36"; $type{'1801'} = "ST"; |
755
|
|
|
|
|
|
|
$location{'1802'} = "Frederiksberg C"; $address{'1802'} = "Halls Alle"; $type{'1802'} = "ST"; |
756
|
|
|
|
|
|
|
$location{'1803'} = "Frederiksberg C"; $address{'1803'} = "Brøndsteds Alle"; $type{'1803'} = "ST"; |
757
|
|
|
|
|
|
|
$location{'1804'} = "Frederiksberg C"; $address{'1804'} = "Bakkegårds Alle"; $type{'1804'} = "ST"; |
758
|
|
|
|
|
|
|
$location{'1805'} = "Frederiksberg C"; $address{'1805'} = "Kammasvej 3 "; $type{'1805'} = "ST"; |
759
|
|
|
|
|
|
|
$location{'1806'} = "Frederiksberg C"; $address{'1806'} = "Jacobys Alle"; $type{'1806'} = "ST"; |
760
|
|
|
|
|
|
|
$location{'1807'} = "Frederiksberg C"; $address{'1807'} = "Schlegels Alle"; $type{'1807'} = "ST"; |
761
|
|
|
|
|
|
|
$location{'1808'} = "Frederiksberg C"; $address{'1808'} = "Asmussens Alle"; $type{'1808'} = "ST"; |
762
|
|
|
|
|
|
|
$location{'1809'} = "Frederiksberg C"; $address{'1809'} = "Frydendalsvej"; $type{'1809'} = "ST"; |
763
|
|
|
|
|
|
|
$location{'1810'} = "Frederiksberg C"; $address{'1810'} = "Platanvej"; $type{'1810'} = "ST"; |
764
|
|
|
|
|
|
|
$location{'1811'} = "Frederiksberg C"; $address{'1811'} = "Asgårdsvej"; $type{'1811'} = "ST"; |
765
|
|
|
|
|
|
|
$location{'1812'} = "Frederiksberg C"; $address{'1812'} = "Kochsvej"; $type{'1812'} = "ST"; |
766
|
|
|
|
|
|
|
$location{'1813'} = "Frederiksberg C"; $address{'1813'} = "Henrik Ibsens Vej"; $type{'1813'} = "ST"; |
767
|
|
|
|
|
|
|
$location{'1814'} = "Frederiksberg C"; $address{'1814'} = "Carit Etlars Vej"; $type{'1814'} = "ST"; |
768
|
|
|
|
|
|
|
$location{'1815'} = "Frederiksberg C"; $address{'1815'} = "Paludan Müllers Vej"; $type{'1815'} = "ST"; |
769
|
|
|
|
|
|
|
$location{'1816'} = "Frederiksberg C"; $address{'1816'} = "Engtoftevej"; $type{'1816'} = "ST"; |
770
|
|
|
|
|
|
|
$location{'1817'} = "Frederiksberg C"; $address{'1817'} = "Carl Bernhards Vej"; $type{'1817'} = "ST"; |
771
|
|
|
|
|
|
|
$location{'1818'} = "Frederiksberg C"; $address{'1818'} = "Kingosgade 8-10 + 11-17"; $type{'1818'} = "ST"; |
772
|
|
|
|
|
|
|
$location{'1819'} = "Frederiksberg C"; $address{'1819'} = "Værnedamsvej ulige nr."; $type{'1819'} = "ST"; |
773
|
|
|
|
|
|
|
$location{'1820'} = "Frederiksberg C"; $address{'1820'} = "Frederiksberg Allé 15-63 + 2-104"; $type{'1820'} = "ST"; |
774
|
|
|
|
|
|
|
$location{'1822'} = "Frederiksberg C"; $address{'1822'} = "Boyesgade lige nr."; $type{'1822'} = "ST"; |
775
|
|
|
|
|
|
|
$location{'1823'} = "Frederiksberg C"; $address{'1823'} = "Haveselskabetsvej"; $type{'1823'} = "ST"; |
776
|
|
|
|
|
|
|
$location{'1824'} = "Frederiksberg C"; $address{'1824'} = "Sankt Thomas Allé"; $type{'1824'} = "ST"; |
777
|
|
|
|
|
|
|
$location{'1825'} = "Frederiksberg C"; $address{'1825'} = "Hauchsvej"; $type{'1825'} = "ST"; |
778
|
|
|
|
|
|
|
$location{'1826'} = "Frederiksberg C"; $address{'1826'} = "Alhambravej"; $type{'1826'} = "ST"; |
779
|
|
|
|
|
|
|
$location{'1827'} = "Frederiksberg C"; $address{'1827'} = "Mynstersvej"; $type{'1827'} = "ST"; |
780
|
|
|
|
|
|
|
$location{'1828'} = "Frederiksberg C"; $address{'1828'} = "Martensens Alle"; $type{'1828'} = "ST"; |
781
|
|
|
|
|
|
|
$location{'1829'} = "Frederiksberg C"; $address{'1829'} = "Madvigs Alle"; $type{'1829'} = "ST"; |
782
|
|
|
|
|
|
|
$location{'1835'} = "Frederiksberg C"; $owner{'1835'} = "Inkl. Frederiksberg C Postkontor"; $type{'1835'} = "BX"; |
783
|
|
|
|
|
|
|
$location{'1850'} = "Frederiksberg C"; $address{'1850'} = "Gammel Kongevej 85-179 + 60-178"; $type{'1850'} = "ST"; |
784
|
|
|
|
|
|
|
$location{'1851'} = "Frederiksberg C"; $address{'1851'} = "Nyvej"; $type{'1851'} = "ST"; |
785
|
|
|
|
|
|
|
$location{'1852'} = "Frederiksberg C"; $address{'1852'} = "Amicisvej"; $type{'1852'} = "ST"; |
786
|
|
|
|
|
|
|
$location{'1853'} = "Frederiksberg C"; $address{'1853'} = "Maglekildevej"; $type{'1853'} = "ST"; |
787
|
|
|
|
|
|
|
$location{'1854'} = "Frederiksberg C"; $address{'1854'} = "Dr. Priemes Vej"; $type{'1854'} = "ST"; |
788
|
|
|
|
|
|
|
$location{'1855'} = "Frederiksberg C"; $address{'1855'} = "Hollændervej"; $type{'1855'} = "ST"; |
789
|
|
|
|
|
|
|
$location{'1856'} = "Frederiksberg C"; $address{'1856'} = "Edisonsvej"; $type{'1856'} = "ST"; |
790
|
|
|
|
|
|
|
$location{'1857'} = "Frederiksberg C"; $address{'1857'} = "Hortensiavej"; $type{'1857'} = "ST"; |
791
|
|
|
|
|
|
|
$location{'1860'} = "Frederiksberg C"; $address{'1860'} = "Christian Winthers Vej"; $type{'1860'} = "ST"; |
792
|
|
|
|
|
|
|
$location{'1861'} = "Frederiksberg C"; $address{'1861'} = "Sagasvej"; $type{'1861'} = "ST"; |
793
|
|
|
|
|
|
|
$location{'1862'} = "Frederiksberg C"; $address{'1862'} = "Rathsacksvej"; $type{'1862'} = "ST"; |
794
|
|
|
|
|
|
|
$location{'1863'} = "Frederiksberg C"; $address{'1863'} = "Ceresvej"; $type{'1863'} = "ST"; |
795
|
|
|
|
|
|
|
$location{'1864'} = "Frederiksberg C"; $address{'1864'} = "Grundtvigsvej"; $type{'1864'} = "ST"; |
796
|
|
|
|
|
|
|
$location{'1865'} = "Frederiksberg C"; $address{'1865'} = "Grundtvigs Sidevej"; $type{'1865'} = "ST"; |
797
|
|
|
|
|
|
|
$location{'1866'} = "Frederiksberg C"; $address{'1866'} = "Henrik Steffens Vej"; $type{'1866'} = "ST"; |
798
|
|
|
|
|
|
|
$location{'1867'} = "Frederiksberg C"; $address{'1867'} = "Acaciavej"; $type{'1867'} = "ST"; |
799
|
|
|
|
|
|
|
$location{'1868'} = "Frederiksberg C"; $address{'1868'} = "Bianco Lunos Alle"; $type{'1868'} = "ST"; |
800
|
|
|
|
|
|
|
$location{'1870'} = "Frederiksberg C"; $address{'1870'} = "Bülowsvej"; $type{'1870'} = "ST"; |
801
|
|
|
|
|
|
|
$location{'1871'} = "Frederiksberg C"; $address{'1871'} = "Thorvaldsensvej"; $type{'1871'} = "ST"; |
802
|
|
|
|
|
|
|
$location{'1872'} = "Frederiksberg C"; $address{'1872'} = "Bomhoffs Have"; $type{'1872'} = "ST"; |
803
|
|
|
|
|
|
|
$location{'1873'} = "Frederiksberg C"; $address{'1873'} = "Helenevej"; $type{'1873'} = "ST"; |
804
|
|
|
|
|
|
|
$location{'1874'} = "Frederiksberg C"; $address{'1874'} = "Harsdorffsvej"; $type{'1874'} = "ST"; |
805
|
|
|
|
|
|
|
$location{'1875'} = "Frederiksberg C"; $address{'1875'} = "Amalievej"; $type{'1875'} = "ST"; |
806
|
|
|
|
|
|
|
$location{'1876'} = "Frederiksberg C"; $address{'1876'} = "Kastanievej"; $type{'1876'} = "ST"; |
807
|
|
|
|
|
|
|
$location{'1877'} = "Frederiksberg C"; $address{'1877'} = "Lindevej"; $type{'1877'} = "ST"; |
808
|
|
|
|
|
|
|
$location{'1878'} = "Frederiksberg C"; $address{'1878'} = "Uraniavej"; $type{'1878'} = "ST"; |
809
|
|
|
|
|
|
|
$location{'1879'} = "Frederiksberg C"; $address{'1879'} = "H.C. Ørsteds Vej"; $type{'1879'} = "ST"; |
810
|
|
|
|
|
|
|
$location{'1900'} = "Frederiksberg C"; $address{'1900'} = "Vodroffsvej"; $type{'1900'} = "ST"; |
811
|
|
|
|
|
|
|
$location{'1901'} = "Frederiksberg C"; $address{'1901'} = "Tårnborgvej"; $type{'1901'} = "ST"; |
812
|
|
|
|
|
|
|
$location{'1902'} = "Frederiksberg C"; $address{'1902'} = "Lykkesholms Alle"; $type{'1902'} = "ST"; |
813
|
|
|
|
|
|
|
$location{'1903'} = "Frederiksberg C"; $address{'1903'} = "Sankt Knuds Vej"; $type{'1903'} = "ST"; |
814
|
|
|
|
|
|
|
$location{'1904'} = "Frederiksberg C"; $address{'1904'} = "Forhåbningsholms Allé"; $type{'1904'} = "ST"; |
815
|
|
|
|
|
|
|
$location{'1905'} = "Frederiksberg C"; $address{'1905'} = "Svanholmsvej"; $type{'1905'} = "ST"; |
816
|
|
|
|
|
|
|
$location{'1906'} = "Frederiksberg C"; $address{'1906'} = "Schønbergsgade"; $type{'1906'} = "ST"; |
817
|
|
|
|
|
|
|
$location{'1908'} = "Frederiksberg C"; $address{'1908'} = "Prinsesse Maries Alle"; $type{'1908'} = "ST"; |
818
|
|
|
|
|
|
|
$location{'1909'} = "Frederiksberg C"; $address{'1909'} = "Vodroffs Tværgade"; $type{'1909'} = "ST"; |
819
|
|
|
|
|
|
|
$location{'1910'} = "Frederiksberg C"; $address{'1910'} = "Danasvej"; $type{'1910'} = "ST"; |
820
|
|
|
|
|
|
|
$location{'1911'} = "Frederiksberg C"; $address{'1911'} = "Niels Ebbesens Vej"; $type{'1911'} = "ST"; |
821
|
|
|
|
|
|
|
$location{'1912'} = "Frederiksberg C"; $address{'1912'} = "Svend Trøsts Vej"; $type{'1912'} = "ST"; |
822
|
|
|
|
|
|
|
$location{'1913'} = "Frederiksberg C"; $address{'1913'} = "Carl Plougs Vej"; $type{'1913'} = "ST"; |
823
|
|
|
|
|
|
|
$location{'1914'} = "Frederiksberg C"; $address{'1914'} = "Vodroffslund"; $type{'1914'} = "ST"; |
824
|
|
|
|
|
|
|
$location{'1915'} = "Frederiksberg C"; $address{'1915'} = "Danas Plads"; $type{'1915'} = "ST"; |
825
|
|
|
|
|
|
|
$location{'1916'} = "Frederiksberg C"; $address{'1916'} = "Norsvej"; $type{'1916'} = "ST"; |
826
|
|
|
|
|
|
|
$location{'1917'} = "Frederiksberg C"; $address{'1917'} = "Sveasvej"; $type{'1917'} = "ST"; |
827
|
|
|
|
|
|
|
$location{'1920'} = "Frederiksberg C"; $address{'1920'} = "Forchhammersvej"; $type{'1920'} = "ST"; |
828
|
|
|
|
|
|
|
$location{'1921'} = "Frederiksberg C"; $address{'1921'} = "Sankt Markus Plads"; $type{'1921'} = "ST"; |
829
|
|
|
|
|
|
|
$location{'1922'} = "Frederiksberg C"; $address{'1922'} = "Sankt Markus Alle"; $type{'1922'} = "ST"; |
830
|
|
|
|
|
|
|
$location{'1923'} = "Frederiksberg C"; $address{'1923'} = "Johnstrups Alle"; $type{'1923'} = "ST"; |
831
|
|
|
|
|
|
|
$location{'1924'} = "Frederiksberg C"; $address{'1924'} = "Steenstrups Alle"; $type{'1924'} = "ST"; |
832
|
|
|
|
|
|
|
$location{'1925'} = "Frederiksberg C"; $address{'1925'} = "Julius Thomsens Plads"; $type{'1925'} = "ST"; |
833
|
|
|
|
|
|
|
$location{'1926'} = "Frederiksberg C"; $address{'1926'} = "Martinsvej"; $type{'1926'} = "ST"; |
834
|
|
|
|
|
|
|
$location{'1927'} = "Frederiksberg C"; $address{'1927'} = "Suomisvej"; $type{'1927'} = "ST"; |
835
|
|
|
|
|
|
|
$location{'1928'} = "Frederiksberg C"; $address{'1928'} = "Filippavej"; $type{'1928'} = "ST"; |
836
|
|
|
|
|
|
|
$location{'1931'} = "Frederiksberg C"; $type{'1931'} = "PP"; |
837
|
|
|
|
|
|
|
$location{'1950'} = "Frederiksberg C"; $address{'1950'} = "Hostrupsvej"; $type{'1950'} = "ST"; |
838
|
|
|
|
|
|
|
$location{'1951'} = "Frederiksberg C"; $address{'1951'} = "Christian Richardts Vej"; $type{'1951'} = "ST"; |
839
|
|
|
|
|
|
|
$location{'1952'} = "Frederiksberg C"; $address{'1952'} = "Falkonervænget"; $type{'1952'} = "ST"; |
840
|
|
|
|
|
|
|
$location{'1953'} = "Frederiksberg C"; $address{'1953'} = "Sankt Nikolaj Vej"; $type{'1953'} = "ST"; |
841
|
|
|
|
|
|
|
$location{'1954'} = "Frederiksberg C"; $address{'1954'} = "Hostrups Have"; $type{'1954'} = "ST"; |
842
|
|
|
|
|
|
|
$location{'1955'} = "Frederiksberg C"; $address{'1955'} = "Dr. Abildgaards Alle"; $type{'1955'} = "ST"; |
843
|
|
|
|
|
|
|
$location{'1956'} = "Frederiksberg C"; $address{'1956'} = "L.I. Brandes Alle"; $type{'1956'} = "ST"; |
844
|
|
|
|
|
|
|
$location{'1957'} = "Frederiksberg C"; $address{'1957'} = "N.J. Fjords Alle"; $type{'1957'} = "ST"; |
845
|
|
|
|
|
|
|
$location{'1958'} = "Frederiksberg C"; $address{'1958'} = "Rolighedsvej"; $type{'1958'} = "ST"; |
846
|
|
|
|
|
|
|
$location{'1959'} = "Frederiksberg C"; $address{'1959'} = "Falkonergårdsvej"; $type{'1959'} = "ST"; |
847
|
|
|
|
|
|
|
$location{'1960'} = "Frederiksberg C"; $address{'1960'} = "Åboulevard 15-55"; $type{'1960'} = "ST"; |
848
|
|
|
|
|
|
|
$location{'1961'} = "Frederiksberg C"; $address{'1961'} = "J.M. Thieles Vej"; $type{'1961'} = "ST"; |
849
|
|
|
|
|
|
|
$location{'1962'} = "Frederiksberg C"; $address{'1962'} = "Fuglevangsvej"; $type{'1962'} = "ST"; |
850
|
|
|
|
|
|
|
$location{'1963'} = "Frederiksberg C"; $address{'1963'} = "Bille Brahes Vej"; $type{'1963'} = "ST"; |
851
|
|
|
|
|
|
|
$location{'1964'} = "Frederiksberg C"; $address{'1964'} = "Ingemannsvej"; $type{'1964'} = "ST"; |
852
|
|
|
|
|
|
|
$location{'1965'} = "Frederiksberg C"; $address{'1965'} = "Erik Menveds Vej"; $type{'1965'} = "ST"; |
853
|
|
|
|
|
|
|
$location{'1966'} = "Frederiksberg C"; $address{'1966'} = "Steenwinkelsvej"; $type{'1966'} = "ST"; |
854
|
|
|
|
|
|
|
$location{'1967'} = "Frederiksberg C"; $address{'1967'} = "Svanemosegårdsvej"; $type{'1967'} = "ST"; |
855
|
|
|
|
|
|
|
$location{'1970'} = "Frederiksberg C"; $address{'1970'} = "Rosenørns Alle 1-67 + 20-70"; $type{'1970'} = "ST"; |
856
|
|
|
|
|
|
|
$location{'1971'} = "Frederiksberg C"; $address{'1971'} = "Adolph Steens Alle"; $type{'1971'} = "ST"; |
857
|
|
|
|
|
|
|
$location{'1972'} = "Frederiksberg C"; $address{'1972'} = "Worsaaesvej"; $type{'1972'} = "ST"; |
858
|
|
|
|
|
|
|
$location{'1973'} = "Frederiksberg C"; $address{'1973'} = "Jakob Dannefærds Vej"; $type{'1973'} = "ST"; |
859
|
|
|
|
|
|
|
$location{'1974'} = "Frederiksberg C"; $address{'1974'} = "Julius Thomsens Gade ulige nr."; $type{'1974'} = "ST"; |
860
|
|
|
|
|
|
|
$location{'2000'} = "Frederiksberg"; |
861
|
|
|
|
|
|
|
$location{'2100'} = "København Ø"; |
862
|
|
|
|
|
|
|
$location{'2200'} = "København N"; |
863
|
|
|
|
|
|
|
$location{'2300'} = "København S"; |
864
|
|
|
|
|
|
|
$location{'2400'} = "København NV"; |
865
|
|
|
|
|
|
|
$location{'2450'} = "København SV"; |
866
|
|
|
|
|
|
|
$location{'2500'} = "Valby"; |
867
|
|
|
|
|
|
|
$location{'2600'} = "Glostrup"; |
868
|
|
|
|
|
|
|
$location{'2605'} = "Brøndby"; |
869
|
|
|
|
|
|
|
$location{'2610'} = "Rødovre"; |
870
|
|
|
|
|
|
|
$location{'2620'} = "Albertslund"; |
871
|
|
|
|
|
|
|
$location{'2625'} = "Vallensbæk"; |
872
|
|
|
|
|
|
|
$location{'2630'} = "Taastrup"; |
873
|
|
|
|
|
|
|
$location{'2635'} = "Ishøj"; |
874
|
|
|
|
|
|
|
$location{'2640'} = "Hedehusene"; |
875
|
|
|
|
|
|
|
$location{'2650'} = "Hvidovre"; |
876
|
|
|
|
|
|
|
$location{'2660'} = "Brøndby Strand"; |
877
|
|
|
|
|
|
|
$location{'2665'} = "Vallensbæk Strand"; |
878
|
|
|
|
|
|
|
$location{'2670'} = "Greve"; |
879
|
|
|
|
|
|
|
$location{'2680'} = "Solrød Strand"; |
880
|
|
|
|
|
|
|
$location{'2690'} = "Karlslunde"; |
881
|
|
|
|
|
|
|
$location{'2700'} = "Brønshøj"; |
882
|
|
|
|
|
|
|
$location{'2720'} = "Vanløse"; |
883
|
|
|
|
|
|
|
$location{'2730'} = "Herlev"; |
884
|
|
|
|
|
|
|
$location{'2740'} = "Skovlunde"; |
885
|
|
|
|
|
|
|
$location{'2750'} = "Ballerup"; |
886
|
|
|
|
|
|
|
$location{'2760'} = "Måløv"; |
887
|
|
|
|
|
|
|
$location{'2765'} = "Smørum"; |
888
|
|
|
|
|
|
|
$location{'2770'} = "Kastrup"; |
889
|
|
|
|
|
|
|
$location{'2791'} = "Dragør"; |
890
|
|
|
|
|
|
|
$location{'2800'} = "Kongens Lyngby"; |
891
|
|
|
|
|
|
|
$location{'2820'} = "Gentofte"; |
892
|
|
|
|
|
|
|
$location{'2830'} = "Virum"; |
893
|
|
|
|
|
|
|
$location{'2840'} = "Holte"; |
894
|
|
|
|
|
|
|
$location{'2850'} = "Nærum"; |
895
|
|
|
|
|
|
|
$location{'2860'} = "Søborg"; |
896
|
|
|
|
|
|
|
$location{'2870'} = "Dyssegård "; |
897
|
|
|
|
|
|
|
$location{'2880'} = "Bagsværd"; |
898
|
|
|
|
|
|
|
$location{'2900'} = "Hellerup"; |
899
|
|
|
|
|
|
|
$location{'2920'} = "Charlottenlund"; |
900
|
|
|
|
|
|
|
$location{'2930'} = "Klampenborg"; |
901
|
|
|
|
|
|
|
$location{'2942'} = "Skodsborg"; |
902
|
|
|
|
|
|
|
$location{'2950'} = "Vedbæk"; |
903
|
|
|
|
|
|
|
$location{'2960'} = "Rungsted Kyst"; |
904
|
|
|
|
|
|
|
$location{'2970'} = "Hørsholm"; |
905
|
|
|
|
|
|
|
$location{'2980'} = "Kokkedal"; |
906
|
|
|
|
|
|
|
$location{'2990'} = "Nivå"; |
907
|
|
|
|
|
|
|
$location{'3000'} = "Helsingør"; |
908
|
|
|
|
|
|
|
$location{'3050'} = "Humlebæk"; |
909
|
|
|
|
|
|
|
$location{'3060'} = "Espergærde"; |
910
|
|
|
|
|
|
|
$location{'3070'} = "Snekkersten"; |
911
|
|
|
|
|
|
|
$location{'3080'} = "Tikøb"; |
912
|
|
|
|
|
|
|
$location{'3100'} = "Hornbæk"; |
913
|
|
|
|
|
|
|
$location{'3120'} = "Dronningmølle"; |
914
|
|
|
|
|
|
|
$location{'3140'} = "Ålsgårde"; |
915
|
|
|
|
|
|
|
$location{'3150'} = "Hellebæk"; |
916
|
|
|
|
|
|
|
$location{'3200'} = "Helsinge"; |
917
|
|
|
|
|
|
|
$location{'3210'} = "Vejby"; |
918
|
|
|
|
|
|
|
$location{'3220'} = "Tisvildeleje"; |
919
|
|
|
|
|
|
|
$location{'3230'} = "Græsted"; |
920
|
|
|
|
|
|
|
$location{'3250'} = "Gilleleje"; |
921
|
|
|
|
|
|
|
$location{'3300'} = "Frederiksværk"; |
922
|
|
|
|
|
|
|
$location{'3310'} = "Ølsted"; |
923
|
|
|
|
|
|
|
$location{'3320'} = "Skævinge"; |
924
|
|
|
|
|
|
|
$location{'3330'} = "Gørløse"; |
925
|
|
|
|
|
|
|
$location{'3360'} = "Liseleje"; |
926
|
|
|
|
|
|
|
$location{'3370'} = "Melby"; |
927
|
|
|
|
|
|
|
$location{'3390'} = "Hundested"; |
928
|
|
|
|
|
|
|
$location{'3400'} = "Hillerød"; |
929
|
|
|
|
|
|
|
$location{'3450'} = "Allerød"; |
930
|
|
|
|
|
|
|
$location{'3460'} = "Birkerød"; |
931
|
|
|
|
|
|
|
$location{'3480'} = "Fredensborg"; |
932
|
|
|
|
|
|
|
$location{'3490'} = "Kvistgård"; |
933
|
|
|
|
|
|
|
$location{'3500'} = "Værløse"; |
934
|
|
|
|
|
|
|
$location{'3520'} = "Farum"; |
935
|
|
|
|
|
|
|
$location{'3540'} = "Lynge"; |
936
|
|
|
|
|
|
|
$location{'3550'} = "Slangerup"; |
937
|
|
|
|
|
|
|
$location{'3600'} = "Frederikssund"; |
938
|
|
|
|
|
|
|
$location{'3630'} = "Jægerspris"; |
939
|
|
|
|
|
|
|
$location{'3650'} = "Ølstykke"; |
940
|
|
|
|
|
|
|
$location{'3660'} = "Stenløse"; |
941
|
|
|
|
|
|
|
$location{'3670'} = "Veksø Sjælland"; |
942
|
|
|
|
|
|
|
$location{'3700'} = "Rønne"; |
943
|
|
|
|
|
|
|
$location{'3720'} = "Aakirkeby"; |
944
|
|
|
|
|
|
|
$location{'3730'} = "Nexø"; |
945
|
|
|
|
|
|
|
$location{'3740'} = "Svaneke"; |
946
|
|
|
|
|
|
|
$location{'3751'} = "Østermarie"; |
947
|
|
|
|
|
|
|
$location{'3760'} = "Gudhjem"; |
948
|
|
|
|
|
|
|
$location{'3770'} = "Allinge"; |
949
|
|
|
|
|
|
|
$location{'3782'} = "Klemensker"; |
950
|
|
|
|
|
|
|
$location{'3790'} = "Hasle"; |
951
|
|
|
|
|
|
|
$location{'4000'} = "Roskilde"; |
952
|
|
|
|
|
|
|
$location{'4030'} = "Tune"; |
953
|
|
|
|
|
|
|
$location{'4040'} = "Jyllinge"; |
954
|
|
|
|
|
|
|
$location{'4050'} = "Skibby"; |
955
|
|
|
|
|
|
|
$location{'4060'} = "Kirke Såby"; |
956
|
|
|
|
|
|
|
$location{'4070'} = "Kirke Hyllinge"; |
957
|
|
|
|
|
|
|
$location{'4100'} = "Ringsted"; |
958
|
|
|
|
|
|
|
$location{'4105'} = "Ringsted"; $owner{'4105'} = "Midtsjællands Postcenter + erhvervskunder"; |
959
|
|
|
|
|
|
|
$location{'4129'} = "Ringsted"; $type{'4129'} = "PP"; |
960
|
|
|
|
|
|
|
$location{'4130'} = "Viby Sjælland"; |
961
|
|
|
|
|
|
|
$location{'4140'} = "Borup"; |
962
|
|
|
|
|
|
|
$location{'4160'} = "Herlufmagle"; |
963
|
|
|
|
|
|
|
$location{'4171'} = "Glumsø"; |
964
|
|
|
|
|
|
|
$location{'4173'} = "Fjenneslev"; |
965
|
|
|
|
|
|
|
$location{'4174'} = "Jystrup Midtsj"; |
966
|
|
|
|
|
|
|
$location{'4180'} = "Sorø"; |
967
|
|
|
|
|
|
|
$location{'4190'} = "Munke Bjergby"; |
968
|
|
|
|
|
|
|
$location{'4200'} = "Slagelse"; |
969
|
|
|
|
|
|
|
$location{'4220'} = "Korsør"; |
970
|
|
|
|
|
|
|
$location{'4230'} = "Skælskør"; |
971
|
|
|
|
|
|
|
$location{'4241'} = "Vemmelev"; |
972
|
|
|
|
|
|
|
$location{'4242'} = "Boeslunde"; |
973
|
|
|
|
|
|
|
$location{'4243'} = "Rude"; |
974
|
|
|
|
|
|
|
$location{'4250'} = "Fuglebjerg"; |
975
|
|
|
|
|
|
|
$location{'4261'} = "Dalmose"; |
976
|
|
|
|
|
|
|
$location{'4262'} = "Sandved"; |
977
|
|
|
|
|
|
|
$location{'4270'} = "Høng"; |
978
|
|
|
|
|
|
|
$location{'4281'} = "Gørlev"; |
979
|
|
|
|
|
|
|
$location{'4291'} = "Ruds Vedby"; |
980
|
|
|
|
|
|
|
$location{'4293'} = "Dianalund"; |
981
|
|
|
|
|
|
|
$location{'4295'} = "Stenlille"; |
982
|
|
|
|
|
|
|
$location{'4296'} = "Nyrup"; |
983
|
|
|
|
|
|
|
$location{'4300'} = "Holbæk"; |
984
|
|
|
|
|
|
|
$location{'4320'} = "Lejre"; |
985
|
|
|
|
|
|
|
$location{'4330'} = "Hvalsø"; |
986
|
|
|
|
|
|
|
$location{'4340'} = "Tølløse"; |
987
|
|
|
|
|
|
|
$location{'4350'} = "Ugerløse"; |
988
|
|
|
|
|
|
|
$location{'4360'} = "Kirke Eskilstrup"; |
989
|
|
|
|
|
|
|
$location{'4370'} = "Store Merløse"; |
990
|
|
|
|
|
|
|
$location{'4390'} = "Vipperød"; |
991
|
|
|
|
|
|
|
$location{'4400'} = "Kalundborg"; |
992
|
|
|
|
|
|
|
$location{'4420'} = "Regstrup"; |
993
|
|
|
|
|
|
|
$location{'4440'} = "Mørkøv"; |
994
|
|
|
|
|
|
|
$location{'4450'} = "Jyderup"; |
995
|
|
|
|
|
|
|
$location{'4460'} = "Snertinge"; |
996
|
|
|
|
|
|
|
$location{'4470'} = "Svebølle"; |
997
|
|
|
|
|
|
|
$location{'4480'} = "Store Fuglede"; |
998
|
|
|
|
|
|
|
$location{'4490'} = "Jerslev Sjælland"; |
999
|
|
|
|
|
|
|
$location{'4500'} = "Nykøbing Sj"; |
1000
|
|
|
|
|
|
|
$location{'4520'} = "Svinninge"; |
1001
|
|
|
|
|
|
|
$location{'4532'} = "Gislinge"; |
1002
|
|
|
|
|
|
|
$location{'4534'} = "Hørve"; |
1003
|
|
|
|
|
|
|
$location{'4540'} = "Fårevejle"; |
1004
|
|
|
|
|
|
|
$location{'4550'} = "Asnæs"; |
1005
|
|
|
|
|
|
|
$location{'4560'} = "Vig"; |
1006
|
|
|
|
|
|
|
$location{'4571'} = "Grevinge"; |
1007
|
|
|
|
|
|
|
$location{'4572'} = "Nørre Asmindrup"; |
1008
|
|
|
|
|
|
|
$location{'4573'} = "Højby"; |
1009
|
|
|
|
|
|
|
$location{'4581'} = "Rørvig"; |
1010
|
|
|
|
|
|
|
$location{'4583'} = "Sjællands Odde"; |
1011
|
|
|
|
|
|
|
$location{'4591'} = "Føllenslev"; |
1012
|
|
|
|
|
|
|
$location{'4592'} = "Sejerø"; |
1013
|
|
|
|
|
|
|
$location{'4593'} = "Eskebjerg"; |
1014
|
|
|
|
|
|
|
$location{'4600'} = "Køge"; |
1015
|
|
|
|
|
|
|
$location{'4621'} = "Gadstrup"; |
1016
|
|
|
|
|
|
|
$location{'4622'} = "Havdrup"; |
1017
|
|
|
|
|
|
|
$location{'4623'} = "Lille Skensved"; |
1018
|
|
|
|
|
|
|
$location{'4632'} = "Bjæverskov"; |
1019
|
|
|
|
|
|
|
$location{'4640'} = "Faxe"; |
1020
|
|
|
|
|
|
|
$location{'4652'} = "Hårlev"; |
1021
|
|
|
|
|
|
|
$location{'4653'} = "Karise"; |
1022
|
|
|
|
|
|
|
$location{'4654'} = "Faxe Ladeplads"; |
1023
|
|
|
|
|
|
|
$location{'4660'} = "Store Heddinge"; |
1024
|
|
|
|
|
|
|
$location{'4671'} = "Strøby"; |
1025
|
|
|
|
|
|
|
$location{'4672'} = "Klippinge"; |
1026
|
|
|
|
|
|
|
$location{'4673'} = "Rødvig Stevns"; |
1027
|
|
|
|
|
|
|
$location{'4681'} = "Herfølge"; |
1028
|
|
|
|
|
|
|
$location{'4682'} = "Tureby"; |
1029
|
|
|
|
|
|
|
$location{'4683'} = "Rønnede"; |
1030
|
|
|
|
|
|
|
$location{'4684'} = "Holmegaard "; |
1031
|
|
|
|
|
|
|
$location{'4690'} = "Haslev"; |
1032
|
|
|
|
|
|
|
$location{'4700'} = "Næstved"; |
1033
|
|
|
|
|
|
|
$location{'4720'} = "Præstø"; |
1034
|
|
|
|
|
|
|
$location{'4733'} = "Tappernøje"; |
1035
|
|
|
|
|
|
|
$location{'4735'} = "Mern"; |
1036
|
|
|
|
|
|
|
$location{'4736'} = "Karrebæksminde"; |
1037
|
|
|
|
|
|
|
$location{'4750'} = "Lundby"; |
1038
|
|
|
|
|
|
|
$location{'4760'} = "Vordingborg"; |
1039
|
|
|
|
|
|
|
$location{'4771'} = "Kalvehave"; |
1040
|
|
|
|
|
|
|
$location{'4772'} = "Langebæk"; |
1041
|
|
|
|
|
|
|
$location{'4773'} = "Stensved"; |
1042
|
|
|
|
|
|
|
$location{'4780'} = "Stege"; |
1043
|
|
|
|
|
|
|
$location{'4791'} = "Borre"; |
1044
|
|
|
|
|
|
|
$location{'4792'} = "Askeby"; |
1045
|
|
|
|
|
|
|
$location{'4793'} = "Bogø By"; |
1046
|
|
|
|
|
|
|
$location{'4800'} = "Nykøbing F"; |
1047
|
|
|
|
|
|
|
$location{'4840'} = "Nørre Alslev"; |
1048
|
|
|
|
|
|
|
$location{'4850'} = "Stubbekøbing"; |
1049
|
|
|
|
|
|
|
$location{'4862'} = "Guldborg"; |
1050
|
|
|
|
|
|
|
$location{'4863'} = "Eskilstrup"; |
1051
|
|
|
|
|
|
|
$location{'4871'} = "Horbelev"; |
1052
|
|
|
|
|
|
|
$location{'4872'} = "Idestrup"; |
1053
|
|
|
|
|
|
|
$location{'4873'} = "Væggerløse"; |
1054
|
|
|
|
|
|
|
$location{'4874'} = "Gedser"; |
1055
|
|
|
|
|
|
|
$location{'4880'} = "Nysted"; |
1056
|
|
|
|
|
|
|
$location{'4891'} = "Toreby L"; |
1057
|
|
|
|
|
|
|
$location{'4892'} = "Kettinge"; |
1058
|
|
|
|
|
|
|
$location{'4894'} = "Øster Ulslev"; |
1059
|
|
|
|
|
|
|
$location{'4895'} = "Errindlev"; |
1060
|
|
|
|
|
|
|
$location{'4900'} = "Nakskov"; |
1061
|
|
|
|
|
|
|
$location{'4912'} = "Harpelunde"; |
1062
|
|
|
|
|
|
|
$location{'4913'} = "Horslunde"; |
1063
|
|
|
|
|
|
|
$location{'4920'} = "Søllested"; |
1064
|
|
|
|
|
|
|
$location{'4930'} = "Maribo"; |
1065
|
|
|
|
|
|
|
$location{'4941'} = "Bandholm"; |
1066
|
|
|
|
|
|
|
$location{'4943'} = "Torrig L"; |
1067
|
|
|
|
|
|
|
$location{'4944'} = "Fejø"; |
1068
|
|
|
|
|
|
|
$location{'4951'} = "Nørreballe"; |
1069
|
|
|
|
|
|
|
$location{'4952'} = "Stokkemarke"; |
1070
|
|
|
|
|
|
|
$location{'4953'} = "Vesterborg"; |
1071
|
|
|
|
|
|
|
$location{'4960'} = "Holeby"; |
1072
|
|
|
|
|
|
|
$location{'4970'} = "Rødby"; |
1073
|
|
|
|
|
|
|
$location{'4983'} = "Dannemare"; |
1074
|
|
|
|
|
|
|
$location{'4990'} = "Sakskøbing"; |
1075
|
|
|
|
|
|
|
$location{'4992'} = "Midtsjælland USF P"; $owner{'4992'} = "Ufrankerede svarforsendelser"; |
1076
|
|
|
|
|
|
|
$location{'5000'} = "Odense C"; |
1077
|
|
|
|
|
|
|
$location{'5029'} = "Odense C"; $type{'5029'} = "PP"; |
1078
|
|
|
|
|
|
|
$location{'5100'} = "Odense C"; $type{'5100'} = "BX"; |
1079
|
|
|
|
|
|
|
$location{'5200'} = "Odense V"; |
1080
|
|
|
|
|
|
|
$location{'5210'} = "Odense NV"; |
1081
|
|
|
|
|
|
|
$location{'5220'} = "Odense SØ"; |
1082
|
|
|
|
|
|
|
$location{'5230'} = "Odense M"; |
1083
|
|
|
|
|
|
|
$location{'5240'} = "Odense NØ"; |
1084
|
|
|
|
|
|
|
$location{'5250'} = "Odense SV"; |
1085
|
|
|
|
|
|
|
$location{'5260'} = "Odense S"; |
1086
|
|
|
|
|
|
|
$location{'5270'} = "Odense N"; |
1087
|
|
|
|
|
|
|
$location{'5290'} = "Marslev"; |
1088
|
|
|
|
|
|
|
$location{'5300'} = "Kerteminde"; |
1089
|
|
|
|
|
|
|
$location{'5320'} = "Agedrup"; |
1090
|
|
|
|
|
|
|
$location{'5330'} = "Munkebo"; |
1091
|
|
|
|
|
|
|
$location{'5350'} = "Rynkeby"; |
1092
|
|
|
|
|
|
|
$location{'5370'} = "Mesinge"; |
1093
|
|
|
|
|
|
|
$location{'5380'} = "Dalby"; |
1094
|
|
|
|
|
|
|
$location{'5390'} = "Martofte"; |
1095
|
|
|
|
|
|
|
$location{'5400'} = "Bogense"; |
1096
|
|
|
|
|
|
|
$location{'5450'} = "Otterup"; |
1097
|
|
|
|
|
|
|
$location{'5462'} = "Morud"; |
1098
|
|
|
|
|
|
|
$location{'5463'} = "Harndrup"; |
1099
|
|
|
|
|
|
|
$location{'5464'} = "Brenderup Fyn"; |
1100
|
|
|
|
|
|
|
$location{'5466'} = "Asperup"; |
1101
|
|
|
|
|
|
|
$location{'5471'} = "Søndersø"; |
1102
|
|
|
|
|
|
|
$location{'5474'} = "Veflinge"; |
1103
|
|
|
|
|
|
|
$location{'5485'} = "Skamby"; |
1104
|
|
|
|
|
|
|
$location{'5491'} = "Blommenslyst"; |
1105
|
|
|
|
|
|
|
$location{'5492'} = "Vissenbjerg"; |
1106
|
|
|
|
|
|
|
$location{'5500'} = "Middelfart"; |
1107
|
|
|
|
|
|
|
$location{'5540'} = "Ullerslev"; |
1108
|
|
|
|
|
|
|
$location{'5550'} = "Langeskov"; |
1109
|
|
|
|
|
|
|
$location{'5560'} = "Aarup"; |
1110
|
|
|
|
|
|
|
$location{'5580'} = "Nørre Aaby"; |
1111
|
|
|
|
|
|
|
$location{'5591'} = "Gelsted"; |
1112
|
|
|
|
|
|
|
$location{'5592'} = "Ejby"; |
1113
|
|
|
|
|
|
|
$location{'5600'} = "Faaborg"; |
1114
|
|
|
|
|
|
|
$location{'5610'} = "Assens"; |
1115
|
|
|
|
|
|
|
$location{'5620'} = "Glamsbjerg"; |
1116
|
|
|
|
|
|
|
$location{'5631'} = "Ebberup"; |
1117
|
|
|
|
|
|
|
$location{'5642'} = "Millinge"; |
1118
|
|
|
|
|
|
|
$location{'5672'} = "Broby"; |
1119
|
|
|
|
|
|
|
$location{'5683'} = "Haarby"; |
1120
|
|
|
|
|
|
|
$location{'5690'} = "Tommerup"; |
1121
|
|
|
|
|
|
|
$location{'5700'} = "Svendborg"; |
1122
|
|
|
|
|
|
|
$location{'5750'} = "Ringe"; |
1123
|
|
|
|
|
|
|
$location{'5762'} = "Vester Skerninge"; |
1124
|
|
|
|
|
|
|
$location{'5771'} = "Stenstrup"; |
1125
|
|
|
|
|
|
|
$location{'5772'} = "Kværndrup"; |
1126
|
|
|
|
|
|
|
$location{'5792'} = "Årslev"; |
1127
|
|
|
|
|
|
|
$location{'5800'} = "Nyborg"; |
1128
|
|
|
|
|
|
|
$location{'5853'} = "Ørbæk"; |
1129
|
|
|
|
|
|
|
$location{'5854'} = "Gislev"; |
1130
|
|
|
|
|
|
|
$location{'5856'} = "Ryslinge"; |
1131
|
|
|
|
|
|
|
$location{'5863'} = "Ferritslev Fyn"; |
1132
|
|
|
|
|
|
|
$location{'5871'} = "Frørup"; |
1133
|
|
|
|
|
|
|
$location{'5874'} = "Hesselager"; |
1134
|
|
|
|
|
|
|
$location{'5881'} = "Skårup Fyn"; |
1135
|
|
|
|
|
|
|
$location{'5882'} = "Vejstrup"; |
1136
|
|
|
|
|
|
|
$location{'5883'} = "Oure"; |
1137
|
|
|
|
|
|
|
$location{'5884'} = "Gudme"; |
1138
|
|
|
|
|
|
|
$location{'5892'} = "Gudbjerg Sydfyn"; |
1139
|
|
|
|
|
|
|
$location{'5900'} = "Rudkøbing"; |
1140
|
|
|
|
|
|
|
$location{'5932'} = "Humble"; |
1141
|
|
|
|
|
|
|
$location{'5935'} = "Bagenkop"; |
1142
|
|
|
|
|
|
|
$location{'5953'} = "Tranekær"; |
1143
|
|
|
|
|
|
|
$location{'5960'} = "Marstal"; |
1144
|
|
|
|
|
|
|
$location{'5970'} = "Ærøskøbing"; |
1145
|
|
|
|
|
|
|
$location{'5985'} = "Søby Ærø"; |
1146
|
|
|
|
|
|
|
$location{'6000'} = "Kolding"; |
1147
|
|
|
|
|
|
|
$location{'6040'} = "Egtved"; |
1148
|
|
|
|
|
|
|
$location{'6051'} = "Almind"; |
1149
|
|
|
|
|
|
|
$location{'6052'} = "Viuf"; |
1150
|
|
|
|
|
|
|
$location{'6064'} = "Jordrup"; |
1151
|
|
|
|
|
|
|
$location{'6070'} = "Christiansfeld"; |
1152
|
|
|
|
|
|
|
$location{'6091'} = "Bjert"; |
1153
|
|
|
|
|
|
|
$location{'6092'} = "Sønder Stenderup"; |
1154
|
|
|
|
|
|
|
$location{'6093'} = "Sjølund"; |
1155
|
|
|
|
|
|
|
$location{'6094'} = "Hejls"; |
1156
|
|
|
|
|
|
|
$location{'6100'} = "Haderslev"; |
1157
|
|
|
|
|
|
|
$location{'6200'} = "Aabenraa"; |
1158
|
|
|
|
|
|
|
$location{'6230'} = "Rødekro"; |
1159
|
|
|
|
|
|
|
$location{'6240'} = "Løgumkloster"; |
1160
|
|
|
|
|
|
|
$location{'6261'} = "Bredebro"; |
1161
|
|
|
|
|
|
|
$location{'6270'} = "Tønder"; |
1162
|
|
|
|
|
|
|
$location{'6280'} = "Højer"; |
1163
|
|
|
|
|
|
|
$location{'6300'} = "Gråsten"; |
1164
|
|
|
|
|
|
|
$location{'6310'} = "Broager"; |
1165
|
|
|
|
|
|
|
$location{'6320'} = "Egernsund"; |
1166
|
|
|
|
|
|
|
$location{'6330'} = "Padborg"; |
1167
|
|
|
|
|
|
|
$location{'6340'} = "Kruså"; |
1168
|
|
|
|
|
|
|
$location{'6360'} = "Tinglev"; |
1169
|
|
|
|
|
|
|
$location{'6372'} = "Bylderup-Bov"; |
1170
|
|
|
|
|
|
|
$location{'6392'} = "Bolderslev"; |
1171
|
|
|
|
|
|
|
$location{'6400'} = "Sønderborg"; |
1172
|
|
|
|
|
|
|
$location{'6430'} = "Nordborg"; |
1173
|
|
|
|
|
|
|
$location{'6440'} = "Augustenborg"; |
1174
|
|
|
|
|
|
|
$location{'6470'} = "Sydals"; |
1175
|
|
|
|
|
|
|
$location{'6500'} = "Vojens"; |
1176
|
|
|
|
|
|
|
$location{'6510'} = "Gram"; |
1177
|
|
|
|
|
|
|
$location{'6520'} = "Toftlund"; |
1178
|
|
|
|
|
|
|
$location{'6534'} = "Agerskov"; |
1179
|
|
|
|
|
|
|
$location{'6535'} = "Branderup J"; |
1180
|
|
|
|
|
|
|
$location{'6541'} = "Bevtoft"; |
1181
|
|
|
|
|
|
|
$location{'6560'} = "Sommersted"; |
1182
|
|
|
|
|
|
|
$location{'6580'} = "Vamdrup"; |
1183
|
|
|
|
|
|
|
$location{'6600'} = "Vejen"; |
1184
|
|
|
|
|
|
|
$location{'6621'} = "Gesten"; |
1185
|
|
|
|
|
|
|
$location{'6622'} = "Bække"; |
1186
|
|
|
|
|
|
|
$location{'6623'} = "Vorbasse"; |
1187
|
|
|
|
|
|
|
$location{'6630'} = "Rødding"; |
1188
|
|
|
|
|
|
|
$location{'6640'} = "Lunderskov"; |
1189
|
|
|
|
|
|
|
$location{'6650'} = "Brørup"; |
1190
|
|
|
|
|
|
|
$location{'6660'} = "Lintrup"; |
1191
|
|
|
|
|
|
|
$location{'6670'} = "Holsted"; |
1192
|
|
|
|
|
|
|
$location{'6682'} = "Hovborg"; |
1193
|
|
|
|
|
|
|
$location{'6683'} = "Føvling"; |
1194
|
|
|
|
|
|
|
$location{'6690'} = "Gørding"; |
1195
|
|
|
|
|
|
|
$location{'6700'} = "Esbjerg"; |
1196
|
|
|
|
|
|
|
$location{'6701'} = "Esbjerg"; $type{'6701'} = "BX"; |
1197
|
|
|
|
|
|
|
$location{'6705'} = "Esbjerg Ø"; |
1198
|
|
|
|
|
|
|
$location{'6710'} = "Esbjerg V"; |
1199
|
|
|
|
|
|
|
$location{'6715'} = "Esbjerg N"; |
1200
|
|
|
|
|
|
|
$location{'6720'} = "Fanø"; |
1201
|
|
|
|
|
|
|
$location{'6731'} = "Tjæreborg"; |
1202
|
|
|
|
|
|
|
$location{'6740'} = "Bramming"; |
1203
|
|
|
|
|
|
|
$location{'6752'} = "Glejbjerg"; |
1204
|
|
|
|
|
|
|
$location{'6753'} = "Agerbæk"; |
1205
|
|
|
|
|
|
|
$location{'6760'} = "Ribe"; |
1206
|
|
|
|
|
|
|
$location{'6771'} = "Gredstedbro"; |
1207
|
|
|
|
|
|
|
$location{'6780'} = "Skærbæk"; |
1208
|
|
|
|
|
|
|
$location{'6792'} = "Rømø"; |
1209
|
|
|
|
|
|
|
$location{'6800'} = "Varde"; |
1210
|
|
|
|
|
|
|
$location{'6818'} = "Årre"; |
1211
|
|
|
|
|
|
|
$location{'6823'} = "Ansager"; |
1212
|
|
|
|
|
|
|
$location{'6830'} = "Nørre Nebel"; |
1213
|
|
|
|
|
|
|
$location{'6840'} = "Oksbøl"; |
1214
|
|
|
|
|
|
|
$location{'6851'} = "Janderup Vestj"; |
1215
|
|
|
|
|
|
|
$location{'6852'} = "Billum"; |
1216
|
|
|
|
|
|
|
$location{'6853'} = "Vejers Strand"; |
1217
|
|
|
|
|
|
|
$location{'6854'} = "Henne"; |
1218
|
|
|
|
|
|
|
$location{'6855'} = "Outrup"; |
1219
|
|
|
|
|
|
|
$location{'6857'} = "Blåvand"; |
1220
|
|
|
|
|
|
|
$location{'6862'} = "Tistrup"; |
1221
|
|
|
|
|
|
|
$location{'6870'} = "Ølgod"; |
1222
|
|
|
|
|
|
|
$location{'6880'} = "Tarm"; |
1223
|
|
|
|
|
|
|
$location{'6893'} = "Hemmet"; |
1224
|
|
|
|
|
|
|
$location{'6900'} = "Skjern"; |
1225
|
|
|
|
|
|
|
$location{'6920'} = "Videbæk"; |
1226
|
|
|
|
|
|
|
$location{'6933'} = "Kibæk"; |
1227
|
|
|
|
|
|
|
$location{'6940'} = "Lem St"; |
1228
|
|
|
|
|
|
|
$location{'6950'} = "Ringkøbing"; |
1229
|
|
|
|
|
|
|
$location{'6960'} = "Hvide Sande"; |
1230
|
|
|
|
|
|
|
$location{'6971'} = "Spjald"; |
1231
|
|
|
|
|
|
|
$location{'6973'} = "Ørnhøj"; |
1232
|
|
|
|
|
|
|
$location{'6980'} = "Tim"; |
1233
|
|
|
|
|
|
|
$location{'6990'} = "Ulfborg"; |
1234
|
|
|
|
|
|
|
$location{'7000'} = "Fredericia"; |
1235
|
|
|
|
|
|
|
$location{'7007'} = "Fredericia"; $owner{'7007'} = "Sydjyllands Postcenter + erhvervskunder"; |
1236
|
|
|
|
|
|
|
$location{'7029'} = "Fredericia"; $type{'7029'} = "PP"; |
1237
|
|
|
|
|
|
|
$location{'7080'} = "Børkop"; |
1238
|
|
|
|
|
|
|
$location{'7100'} = "Vejle"; |
1239
|
|
|
|
|
|
|
$location{'7120'} = "Vejle Øst"; |
1240
|
|
|
|
|
|
|
$location{'7130'} = "Juelsminde"; |
1241
|
|
|
|
|
|
|
$location{'7140'} = "Stouby"; |
1242
|
|
|
|
|
|
|
$location{'7150'} = "Barrit"; |
1243
|
|
|
|
|
|
|
$location{'7160'} = "Tørring"; |
1244
|
|
|
|
|
|
|
$location{'7171'} = "Uldum"; |
1245
|
|
|
|
|
|
|
$location{'7173'} = "Vonge"; |
1246
|
|
|
|
|
|
|
$location{'7182'} = "Bredsten"; |
1247
|
|
|
|
|
|
|
$location{'7183'} = "Randbøl"; |
1248
|
|
|
|
|
|
|
$location{'7184'} = "Vandel"; |
1249
|
|
|
|
|
|
|
$location{'7190'} = "Billund"; |
1250
|
|
|
|
|
|
|
$location{'7200'} = "Grindsted"; |
1251
|
|
|
|
|
|
|
$location{'7250'} = "Hejnsvig"; |
1252
|
|
|
|
|
|
|
$location{'7260'} = "Sønder Omme"; |
1253
|
|
|
|
|
|
|
$location{'7270'} = "Stakroge"; |
1254
|
|
|
|
|
|
|
$location{'7280'} = "Sønder Felding"; |
1255
|
|
|
|
|
|
|
$location{'7300'} = "Jelling"; |
1256
|
|
|
|
|
|
|
$location{'7321'} = "Gadbjerg"; |
1257
|
|
|
|
|
|
|
$location{'7323'} = "Give"; |
1258
|
|
|
|
|
|
|
$location{'7330'} = "Brande"; |
1259
|
|
|
|
|
|
|
$location{'7361'} = "Ejstrupholm"; |
1260
|
|
|
|
|
|
|
$location{'7362'} = "Hampen"; |
1261
|
|
|
|
|
|
|
$location{'7400'} = "Herning"; |
1262
|
|
|
|
|
|
|
$location{'7429'} = "Herning"; $type{'7429'} = "PP"; |
1263
|
|
|
|
|
|
|
$location{'7430'} = "Ikast"; |
1264
|
|
|
|
|
|
|
$location{'7441'} = "Bording"; |
1265
|
|
|
|
|
|
|
$location{'7442'} = "Engesvang"; |
1266
|
|
|
|
|
|
|
$location{'7451'} = "Sunds"; |
1267
|
|
|
|
|
|
|
$location{'7470'} = "Karup J"; |
1268
|
|
|
|
|
|
|
$location{'7480'} = "Vildbjerg"; |
1269
|
|
|
|
|
|
|
$location{'7490'} = "Aulum"; |
1270
|
|
|
|
|
|
|
$location{'7500'} = "Holstebro"; |
1271
|
|
|
|
|
|
|
$location{'7540'} = "Haderup"; |
1272
|
|
|
|
|
|
|
$location{'7550'} = "Sørvad"; |
1273
|
|
|
|
|
|
|
$location{'7560'} = "Hjerm"; |
1274
|
|
|
|
|
|
|
$location{'7570'} = "Vemb"; |
1275
|
|
|
|
|
|
|
$location{'7600'} = "Struer"; |
1276
|
|
|
|
|
|
|
$location{'7620'} = "Lemvig"; |
1277
|
|
|
|
|
|
|
$location{'7650'} = "Bøvlingbjerg"; |
1278
|
|
|
|
|
|
|
$location{'7660'} = "Bækmarksbro"; |
1279
|
|
|
|
|
|
|
$location{'7673'} = "Harboøre"; |
1280
|
|
|
|
|
|
|
$location{'7680'} = "Thyborøn"; |
1281
|
|
|
|
|
|
|
$location{'7700'} = "Thisted"; |
1282
|
|
|
|
|
|
|
$location{'7730'} = "Hanstholm"; |
1283
|
|
|
|
|
|
|
$location{'7741'} = "Frøstrup"; |
1284
|
|
|
|
|
|
|
$location{'7742'} = "Vesløs"; |
1285
|
|
|
|
|
|
|
$location{'7752'} = "Snedsted"; |
1286
|
|
|
|
|
|
|
$location{'7755'} = "Bedsted Thy"; |
1287
|
|
|
|
|
|
|
$location{'7760'} = "Hurup Thy"; |
1288
|
|
|
|
|
|
|
$location{'7770'} = "Vestervig"; |
1289
|
|
|
|
|
|
|
$location{'7790'} = "Thyholm"; |
1290
|
|
|
|
|
|
|
$location{'7800'} = "Skive"; |
1291
|
|
|
|
|
|
|
$location{'7830'} = "Vinderup"; |
1292
|
|
|
|
|
|
|
$location{'7840'} = "Højslev"; |
1293
|
|
|
|
|
|
|
$location{'7850'} = "Stoholm Jyll"; |
1294
|
|
|
|
|
|
|
$location{'7860'} = "Spøttrup"; |
1295
|
|
|
|
|
|
|
$location{'7870'} = "Roslev"; |
1296
|
|
|
|
|
|
|
$location{'7884'} = "Fur"; |
1297
|
|
|
|
|
|
|
$location{'7900'} = "Nykøbing M"; |
1298
|
|
|
|
|
|
|
$location{'7950'} = "Erslev"; |
1299
|
|
|
|
|
|
|
$location{'7960'} = "Karby"; |
1300
|
|
|
|
|
|
|
$location{'7970'} = "Redsted M"; |
1301
|
|
|
|
|
|
|
$location{'7980'} = "Vils"; |
1302
|
|
|
|
|
|
|
$location{'7990'} = "Øster Assels"; |
1303
|
|
|
|
|
|
|
$location{'7992'} = "Sydjylland/Fyn USF P"; $owner{'7992'} = "Ufrankerede svarforsendelser"; |
1304
|
|
|
|
|
|
|
$location{'7993'} = "Sydjylland/Fyn USF B"; $owner{'7993'} = "Ufrankerede svarforsendelser"; |
1305
|
|
|
|
|
|
|
$location{'7996'} = "Fakturaservice"; $owner{'7996'} = "(Post til scanning)"; |
1306
|
|
|
|
|
|
|
$location{'7997'} = "Fakturascanning"; $owner{'7997'} = "(Post til scanning)"; |
1307
|
|
|
|
|
|
|
$location{'7999'} = "Kommunepost"; $owner{'7999'} = "(Post til scanning)"; |
1308
|
|
|
|
|
|
|
$location{'8000'} = "Århus C"; |
1309
|
|
|
|
|
|
|
$location{'8100'} = "Århus C"; $type{'8100'} = "BX"; |
1310
|
|
|
|
|
|
|
$location{'8200'} = "Århus N"; |
1311
|
|
|
|
|
|
|
$location{'8210'} = "Århus V"; |
1312
|
|
|
|
|
|
|
$location{'8220'} = "Brabrand"; |
1313
|
|
|
|
|
|
|
$location{'8229'} = "Risskov Ø"; $type{'8229'} = "PP"; |
1314
|
|
|
|
|
|
|
$location{'8230'} = "Åbyhøj"; |
1315
|
|
|
|
|
|
|
$location{'8240'} = "Risskov"; |
1316
|
|
|
|
|
|
|
$location{'8245'} = "Risskov Ø"; $owner{'8245'} = "Østjyllands Postcenter + erhvervskunder"; |
1317
|
|
|
|
|
|
|
$location{'8250'} = "Egå"; |
1318
|
|
|
|
|
|
|
$location{'8260'} = "Viby J"; |
1319
|
|
|
|
|
|
|
$location{'8270'} = "Højbjerg"; |
1320
|
|
|
|
|
|
|
$location{'8300'} = "Odder"; |
1321
|
|
|
|
|
|
|
$location{'8305'} = "Samsø"; |
1322
|
|
|
|
|
|
|
$location{'8310'} = "Tranbjerg J"; |
1323
|
|
|
|
|
|
|
$location{'8320'} = "Mårslet"; |
1324
|
|
|
|
|
|
|
$location{'8330'} = "Beder"; |
1325
|
|
|
|
|
|
|
$location{'8340'} = "Malling"; |
1326
|
|
|
|
|
|
|
$location{'8350'} = "Hundslund"; |
1327
|
|
|
|
|
|
|
$location{'8355'} = "Solbjerg"; |
1328
|
|
|
|
|
|
|
$location{'8361'} = "Hasselager"; |
1329
|
|
|
|
|
|
|
$location{'8362'} = "Hørning"; |
1330
|
|
|
|
|
|
|
$location{'8370'} = "Hadsten"; |
1331
|
|
|
|
|
|
|
$location{'8380'} = "Trige"; |
1332
|
|
|
|
|
|
|
$location{'8381'} = "Tilst"; |
1333
|
|
|
|
|
|
|
$location{'8382'} = "Hinnerup"; |
1334
|
|
|
|
|
|
|
$location{'8400'} = "Ebeltoft"; |
1335
|
|
|
|
|
|
|
$location{'8410'} = "Rønde"; |
1336
|
|
|
|
|
|
|
$location{'8420'} = "Knebel"; |
1337
|
|
|
|
|
|
|
$location{'8444'} = "Balle"; |
1338
|
|
|
|
|
|
|
$location{'8450'} = "Hammel"; |
1339
|
|
|
|
|
|
|
$location{'8462'} = "Harlev J"; |
1340
|
|
|
|
|
|
|
$location{'8464'} = "Galten"; |
1341
|
|
|
|
|
|
|
$location{'8471'} = "Sabro"; |
1342
|
|
|
|
|
|
|
$location{'8472'} = "Sporup"; |
1343
|
|
|
|
|
|
|
$location{'8500'} = "Grenaa"; |
1344
|
|
|
|
|
|
|
$location{'8520'} = "Lystrup"; |
1345
|
|
|
|
|
|
|
$location{'8530'} = "Hjortshøj"; |
1346
|
|
|
|
|
|
|
$location{'8541'} = "Skødstrup"; |
1347
|
|
|
|
|
|
|
$location{'8543'} = "Hornslet"; |
1348
|
|
|
|
|
|
|
$location{'8544'} = "Mørke"; |
1349
|
|
|
|
|
|
|
$location{'8550'} = "Ryomgård"; |
1350
|
|
|
|
|
|
|
$location{'8560'} = "Kolind"; |
1351
|
|
|
|
|
|
|
$location{'8570'} = "Trustrup"; |
1352
|
|
|
|
|
|
|
$location{'8581'} = "Nimtofte"; |
1353
|
|
|
|
|
|
|
$location{'8585'} = "Glesborg"; |
1354
|
|
|
|
|
|
|
$location{'8586'} = "Ørum Djurs"; |
1355
|
|
|
|
|
|
|
$location{'8592'} = "Anholt"; |
1356
|
|
|
|
|
|
|
$location{'8600'} = "Silkeborg"; |
1357
|
|
|
|
|
|
|
$location{'8620'} = "Kjellerup"; |
1358
|
|
|
|
|
|
|
$location{'8632'} = "Lemming"; |
1359
|
|
|
|
|
|
|
$location{'8641'} = "Sorring"; |
1360
|
|
|
|
|
|
|
$location{'8643'} = "Ans By"; |
1361
|
|
|
|
|
|
|
$location{'8653'} = "Them"; |
1362
|
|
|
|
|
|
|
$location{'8654'} = "Bryrup"; |
1363
|
|
|
|
|
|
|
$location{'8660'} = "Skanderborg"; |
1364
|
|
|
|
|
|
|
$location{'8670'} = "Låsby"; |
1365
|
|
|
|
|
|
|
$location{'8680'} = "Ry"; |
1366
|
|
|
|
|
|
|
$location{'8700'} = "Horsens"; |
1367
|
|
|
|
|
|
|
$location{'8721'} = "Daugård"; |
1368
|
|
|
|
|
|
|
$location{'8722'} = "Hedensted"; |
1369
|
|
|
|
|
|
|
$location{'8723'} = "Løsning"; |
1370
|
|
|
|
|
|
|
$location{'8732'} = "Hovedgård"; |
1371
|
|
|
|
|
|
|
$location{'8740'} = "Brædstrup"; |
1372
|
|
|
|
|
|
|
$location{'8751'} = "Gedved"; |
1373
|
|
|
|
|
|
|
$location{'8752'} = "Østbirk"; |
1374
|
|
|
|
|
|
|
$location{'8762'} = "Flemming"; |
1375
|
|
|
|
|
|
|
$location{'8763'} = "Rask Mølle"; |
1376
|
|
|
|
|
|
|
$location{'8765'} = "Klovborg"; |
1377
|
|
|
|
|
|
|
$location{'8766'} = "Nørre Snede"; |
1378
|
|
|
|
|
|
|
$location{'8781'} = "Stenderup"; |
1379
|
|
|
|
|
|
|
$location{'8783'} = "Hornsyld"; |
1380
|
|
|
|
|
|
|
$location{'8800'} = "Viborg"; |
1381
|
|
|
|
|
|
|
$location{'8830'} = "Tjele"; |
1382
|
|
|
|
|
|
|
$location{'8831'} = "Løgstrup"; |
1383
|
|
|
|
|
|
|
$location{'8832'} = "Skals"; |
1384
|
|
|
|
|
|
|
$location{'8840'} = "Rødkærsbro"; |
1385
|
|
|
|
|
|
|
$location{'8850'} = "Bjerringbro"; |
1386
|
|
|
|
|
|
|
$location{'8860'} = "Ulstrup"; |
1387
|
|
|
|
|
|
|
$location{'8870'} = "Langå"; |
1388
|
|
|
|
|
|
|
$location{'8881'} = "Thorsø"; |
1389
|
|
|
|
|
|
|
$location{'8882'} = "Fårvang"; |
1390
|
|
|
|
|
|
|
$location{'8883'} = "Gjern"; |
1391
|
|
|
|
|
|
|
$location{'8900'} = "Randers C"; |
1392
|
|
|
|
|
|
|
$location{'8920'} = "Randers NV"; |
1393
|
|
|
|
|
|
|
$location{'8930'} = "Randers NØ"; |
1394
|
|
|
|
|
|
|
$location{'8940'} = "Randers SV"; |
1395
|
|
|
|
|
|
|
$location{'8950'} = "Ørsted"; |
1396
|
|
|
|
|
|
|
$location{'8960'} = "Randers SØ"; |
1397
|
|
|
|
|
|
|
$location{'8961'} = "Allingåbro"; |
1398
|
|
|
|
|
|
|
$location{'8963'} = "Auning"; |
1399
|
|
|
|
|
|
|
$location{'8970'} = "Havndal"; |
1400
|
|
|
|
|
|
|
$location{'8981'} = "Spentrup"; |
1401
|
|
|
|
|
|
|
$location{'8983'} = "Gjerlev J"; |
1402
|
|
|
|
|
|
|
$location{'8990'} = "Fårup"; |
1403
|
|
|
|
|
|
|
$location{'9000'} = "Aalborg"; |
1404
|
|
|
|
|
|
|
$location{'9029'} = "Aalborg"; $type{'9029'} = "PP"; |
1405
|
|
|
|
|
|
|
$location{'9100'} = "Aalborg"; $type{'9100'} = "BX"; |
1406
|
|
|
|
|
|
|
$location{'9200'} = "Aalborg SV"; |
1407
|
|
|
|
|
|
|
$location{'9210'} = "Aalborg SØ"; |
1408
|
|
|
|
|
|
|
$location{'9220'} = "Aalborg Øst"; |
1409
|
|
|
|
|
|
|
$location{'9230'} = "Svenstrup J"; |
1410
|
|
|
|
|
|
|
$location{'9240'} = "Nibe"; |
1411
|
|
|
|
|
|
|
$location{'9260'} = "Gistrup"; |
1412
|
|
|
|
|
|
|
$location{'9270'} = "Klarup"; |
1413
|
|
|
|
|
|
|
$location{'9280'} = "Storvorde"; |
1414
|
|
|
|
|
|
|
$location{'9293'} = "Kongerslev"; |
1415
|
|
|
|
|
|
|
$location{'9300'} = "Sæby"; |
1416
|
|
|
|
|
|
|
$location{'9310'} = "Vodskov"; |
1417
|
|
|
|
|
|
|
$location{'9320'} = "Hjallerup"; |
1418
|
|
|
|
|
|
|
$location{'9330'} = "Dronninglund"; |
1419
|
|
|
|
|
|
|
$location{'9340'} = "Asaa"; |
1420
|
|
|
|
|
|
|
$location{'9352'} = "Dybvad"; |
1421
|
|
|
|
|
|
|
$location{'9362'} = "Gandrup"; |
1422
|
|
|
|
|
|
|
$location{'9370'} = "Hals"; |
1423
|
|
|
|
|
|
|
$location{'9380'} = "Vestbjerg"; |
1424
|
|
|
|
|
|
|
$location{'9381'} = "Sulsted"; |
1425
|
|
|
|
|
|
|
$location{'9382'} = "Tylstrup"; |
1426
|
|
|
|
|
|
|
$location{'9400'} = "Nørresundby"; |
1427
|
|
|
|
|
|
|
$location{'9430'} = "Vadum"; |
1428
|
|
|
|
|
|
|
$location{'9440'} = "Aabybro"; |
1429
|
|
|
|
|
|
|
$location{'9460'} = "Brovst"; |
1430
|
|
|
|
|
|
|
$location{'9480'} = "Løkken"; |
1431
|
|
|
|
|
|
|
$location{'9490'} = "Pandrup"; |
1432
|
|
|
|
|
|
|
$location{'9492'} = "Blokhus"; |
1433
|
|
|
|
|
|
|
$location{'9493'} = "Saltum"; |
1434
|
|
|
|
|
|
|
$location{'9500'} = "Hobro"; |
1435
|
|
|
|
|
|
|
$location{'9510'} = "Arden"; |
1436
|
|
|
|
|
|
|
$location{'9520'} = "Skørping"; |
1437
|
|
|
|
|
|
|
$location{'9530'} = "Støvring"; |
1438
|
|
|
|
|
|
|
$location{'9541'} = "Suldrup"; |
1439
|
|
|
|
|
|
|
$location{'9550'} = "Mariager"; |
1440
|
|
|
|
|
|
|
$location{'9560'} = "Hadsund"; |
1441
|
|
|
|
|
|
|
$location{'9574'} = "Bælum"; |
1442
|
|
|
|
|
|
|
$location{'9575'} = "Terndrup"; |
1443
|
|
|
|
|
|
|
$location{'9600'} = "Aars"; |
1444
|
|
|
|
|
|
|
$location{'9610'} = "Nørager"; |
1445
|
|
|
|
|
|
|
$location{'9620'} = "Aalestrup"; |
1446
|
|
|
|
|
|
|
$location{'9631'} = "Gedsted"; |
1447
|
|
|
|
|
|
|
$location{'9632'} = "Møldrup"; |
1448
|
|
|
|
|
|
|
$location{'9640'} = "Farsø"; |
1449
|
|
|
|
|
|
|
$location{'9670'} = "Løgstør"; |
1450
|
|
|
|
|
|
|
$location{'9681'} = "Ranum"; |
1451
|
|
|
|
|
|
|
$location{'9690'} = "Fjerritslev"; |
1452
|
|
|
|
|
|
|
$location{'9700'} = "Brønderslev"; |
1453
|
|
|
|
|
|
|
$location{'9740'} = "Jerslev J"; |
1454
|
|
|
|
|
|
|
$location{'9750'} = "Østervrå"; |
1455
|
|
|
|
|
|
|
$location{'9760'} = "Vrå"; |
1456
|
|
|
|
|
|
|
$location{'9800'} = "Hjørring"; |
1457
|
|
|
|
|
|
|
$location{'9830'} = "Tårs"; |
1458
|
|
|
|
|
|
|
$location{'9850'} = "Hirtshals"; |
1459
|
|
|
|
|
|
|
$location{'9870'} = "Sindal"; |
1460
|
|
|
|
|
|
|
$location{'9881'} = "Bindslev"; |
1461
|
|
|
|
|
|
|
$location{'9900'} = "Frederikshavn"; |
1462
|
|
|
|
|
|
|
$location{'9940'} = "Læsø"; |
1463
|
|
|
|
|
|
|
$location{'9970'} = "Strandby"; |
1464
|
|
|
|
|
|
|
$location{'9981'} = "Jerup"; |
1465
|
|
|
|
|
|
|
$location{'9982'} = "Ålbæk"; |
1466
|
|
|
|
|
|
|
$location{'9990'} = "Skagen"; |
1467
|
|
|
|
|
|
|
$location{'9992'} = "Jylland USF P"; $owner{'9992'} = "Ufrankerede svarforsendelser"; |
1468
|
|
|
|
|
|
|
$location{'9993'} = "Jylland USF B"; $owner{'9993'} = "Ufrankerede svarforsendelser"; |
1469
|
|
|
|
|
|
|
$location{'9996'} = "Fakturaservice"; |
1470
|
|
|
|
|
|
|
$location{'9997'} = "Fakturascanning"; $owner{'9997'} = "(Post til scanning)"; |
1471
|
|
|
|
|
|
|
$location{'9998'} = "Borgerservice"; $owner{'9998'} = "(Post til scanning)"; |
1472
|
|
|
|
|
|
|
$location{'2412'} = "Santa Claus/Julemanden"; |
1473
|
|
|
|
|
|
|
$location{'3900'} = "Nuuk"; |
1474
|
|
|
|
|
|
|
$location{'3905'} = "Nuussuaq"; |
1475
|
|
|
|
|
|
|
$location{'3910'} = "Kangerlussuaq"; |
1476
|
|
|
|
|
|
|
$location{'3911'} = "Sisimiut"; |
1477
|
|
|
|
|
|
|
$location{'3912'} = "Maniitsoq"; |
1478
|
|
|
|
|
|
|
$location{'3913'} = "Tasiilaq"; |
1479
|
|
|
|
|
|
|
$location{'3915'} = "Kulusuk"; |
1480
|
|
|
|
|
|
|
$location{'3919'} = "Alluitsup Paa"; |
1481
|
|
|
|
|
|
|
$location{'3920'} = "Qaqortoq"; |
1482
|
|
|
|
|
|
|
$location{'3921'} = "Narsaq"; |
1483
|
|
|
|
|
|
|
$location{'3922'} = "Nanortalik"; |
1484
|
|
|
|
|
|
|
$location{'3923'} = "Narsarsuaq"; |
1485
|
|
|
|
|
|
|
$location{'3924'} = "Ikerasassuaq"; |
1486
|
|
|
|
|
|
|
$location{'3930'} = "Kangilinnguit"; |
1487
|
|
|
|
|
|
|
$location{'3932'} = "Arsuk"; |
1488
|
|
|
|
|
|
|
$location{'3940'} = "Paamiut"; |
1489
|
|
|
|
|
|
|
$location{'3950'} = "Aasiaat"; |
1490
|
|
|
|
|
|
|
$location{'3951'} = "Qasigiannguit"; |
1491
|
|
|
|
|
|
|
$location{'3952'} = "Ilulissat"; |
1492
|
|
|
|
|
|
|
$location{'3953'} = "Qeqertarsuaq"; |
1493
|
|
|
|
|
|
|
$location{'3955'} = "Kangaatsiaq"; |
1494
|
|
|
|
|
|
|
$location{'3961'} = "Uummannaq"; |
1495
|
|
|
|
|
|
|
$location{'3962'} = "Upernavik"; |
1496
|
|
|
|
|
|
|
$location{'3964'} = "Qaarsut"; |
1497
|
|
|
|
|
|
|
$location{'3970'} = "Pituffik"; |
1498
|
|
|
|
|
|
|
$location{'3971'} = "Qaanaaq"; |
1499
|
|
|
|
|
|
|
$location{'3972'} = "Station Nord"; |
1500
|
|
|
|
|
|
|
$location{'3980'} = "Ittoqqortoormiit"; |
1501
|
|
|
|
|
|
|
$location{'3982'} = "Mestersvig"; |
1502
|
|
|
|
|
|
|
$location{'3984'} = "Danmarkshavn"; |
1503
|
|
|
|
|
|
|
$location{'3985'} = "Constable Pynt"; |
1504
|
|
|
|
|
|
|
$location{'3992'} = "Slædepatruljen Sirius"; |
1505
|
|
|
|
|
|
|
$location{'100'} = "Tórshavn"; |
1506
|
|
|
|
|
|
|
$location{'110'} = "Tórshavn "; $type{'110'} = "BX"; |
1507
|
|
|
|
|
|
|
$location{'160'} = "Argir"; |
1508
|
|
|
|
|
|
|
$location{'165'} = "Argir "; $type{'165'} = "BX"; |
1509
|
|
|
|
|
|
|
$location{'175'} = "Kirkjubøur"; |
1510
|
|
|
|
|
|
|
$location{'176'} = "Velbastadur"; |
1511
|
|
|
|
|
|
|
$location{'177'} = "Sydradalur, Streymoy"; |
1512
|
|
|
|
|
|
|
$location{'178'} = "Nordradalur"; |
1513
|
|
|
|
|
|
|
$location{'180'} = "Kaldbak"; |
1514
|
|
|
|
|
|
|
$location{'185'} = "Kaldbaksbotnur"; |
1515
|
|
|
|
|
|
|
$location{'186'} = "Sund"; |
1516
|
|
|
|
|
|
|
$location{'187'} = "Hvitanes"; |
1517
|
|
|
|
|
|
|
$location{'188'} = "Hoyvík"; |
1518
|
|
|
|
|
|
|
$location{'210'} = "Sandur"; |
1519
|
|
|
|
|
|
|
$location{'215'} = "Sandur"; $type{'215'} = "BX"; |
1520
|
|
|
|
|
|
|
$location{'220'} = "Skálavík"; |
1521
|
|
|
|
|
|
|
$location{'230'} = "Húsavík"; |
1522
|
|
|
|
|
|
|
$location{'235'} = "Dalur"; |
1523
|
|
|
|
|
|
|
$location{'236'} = "Skarvanes"; |
1524
|
|
|
|
|
|
|
$location{'240'} = "Skopun"; |
1525
|
|
|
|
|
|
|
$location{'260'} = "Skúvoy"; |
1526
|
|
|
|
|
|
|
$location{'270'} = "Nólsoy"; |
1527
|
|
|
|
|
|
|
$location{'280'} = "Hestur"; |
1528
|
|
|
|
|
|
|
$location{'285'} = "Koltur"; |
1529
|
|
|
|
|
|
|
$location{'286'} = "Stóra Dimun"; |
1530
|
|
|
|
|
|
|
$location{'330'} = "Stykkid"; |
1531
|
|
|
|
|
|
|
$location{'335'} = "Leynar"; |
1532
|
|
|
|
|
|
|
$location{'336'} = "Skællingur"; |
1533
|
|
|
|
|
|
|
$location{'340'} = "Kvívík"; |
1534
|
|
|
|
|
|
|
$location{'350'} = "Vestmanna"; |
1535
|
|
|
|
|
|
|
$location{'355'} = "Vestmanna"; $type{'355'} = "BX"; |
1536
|
|
|
|
|
|
|
$location{'358'} = "Válur"; |
1537
|
|
|
|
|
|
|
$location{'360'} = "Sandavágur"; |
1538
|
|
|
|
|
|
|
$location{'370'} = "Midvágur"; |
1539
|
|
|
|
|
|
|
$location{'375'} = "Midvágur"; $type{'375'} = "BX"; |
1540
|
|
|
|
|
|
|
$location{'380'} = "Sørvágur"; |
1541
|
|
|
|
|
|
|
$location{'385'} = "Vatnsoyrar"; |
1542
|
|
|
|
|
|
|
$location{'386'} = "Bøur"; |
1543
|
|
|
|
|
|
|
$location{'387'} = "Gásadalur"; |
1544
|
|
|
|
|
|
|
$location{'388'} = "Mykines"; |
1545
|
|
|
|
|
|
|
$location{'400'} = "Oyrarbakki"; |
1546
|
|
|
|
|
|
|
$location{'405'} = "Oyrarbakki"; $type{'405'} = "BX"; |
1547
|
|
|
|
|
|
|
$location{'410'} = "Kollafjørdur"; |
1548
|
|
|
|
|
|
|
$location{'415'} = "Oyrareingir"; |
1549
|
|
|
|
|
|
|
$location{'416'} = "Signabøur"; |
1550
|
|
|
|
|
|
|
$location{'420'} = "Hósvík"; |
1551
|
|
|
|
|
|
|
$location{'430'} = "Hvalvík"; |
1552
|
|
|
|
|
|
|
$location{'435'} = "Streymnes"; |
1553
|
|
|
|
|
|
|
$location{'436'} = "Saksun"; |
1554
|
|
|
|
|
|
|
$location{'437'} = "Nesvík"; |
1555
|
|
|
|
|
|
|
$location{'438'} = "Langasandur"; |
1556
|
|
|
|
|
|
|
$location{'440'} = "Haldarsvík"; |
1557
|
|
|
|
|
|
|
$location{'445'} = "Tjørnuvík"; |
1558
|
|
|
|
|
|
|
$location{'450'} = "Oyri"; |
1559
|
|
|
|
|
|
|
$location{'460'} = "Nordskáli"; |
1560
|
|
|
|
|
|
|
$location{'465'} = "Svináir"; |
1561
|
|
|
|
|
|
|
$location{'466'} = "Ljósá"; |
1562
|
|
|
|
|
|
|
$location{'470'} = "Eidi"; |
1563
|
|
|
|
|
|
|
$location{'475'} = "Funningur"; |
1564
|
|
|
|
|
|
|
$location{'476'} = "Gjógv"; |
1565
|
|
|
|
|
|
|
$location{'477'} = "Funningsfjørdur"; |
1566
|
|
|
|
|
|
|
$location{'478'} = "Elduvík"; |
1567
|
|
|
|
|
|
|
$location{'480'} = "Skáli"; |
1568
|
|
|
|
|
|
|
$location{'485'} = "Skálafjørdur"; |
1569
|
|
|
|
|
|
|
$location{'490'} = "Strendur"; |
1570
|
|
|
|
|
|
|
$location{'494'} = "Innan Glyvur"; |
1571
|
|
|
|
|
|
|
$location{'495'} = "Kolbanargjógv"; |
1572
|
|
|
|
|
|
|
$location{'496'} = "Morskranes"; |
1573
|
|
|
|
|
|
|
$location{'497'} = "Selatrad"; |
1574
|
|
|
|
|
|
|
$location{'510'} = "Gøta"; |
1575
|
|
|
|
|
|
|
$location{'511'} = "Gøtugjógv"; |
1576
|
|
|
|
|
|
|
$location{'512'} = "Nordragøta"; |
1577
|
|
|
|
|
|
|
$location{'513'} = "Sydrugøta"; |
1578
|
|
|
|
|
|
|
$location{'515'} = "Gøta"; $type{'515'} = "BX"; |
1579
|
|
|
|
|
|
|
$location{'520'} = "Leirvík"; |
1580
|
|
|
|
|
|
|
$location{'530'} = "Fuglafjørdur"; |
1581
|
|
|
|
|
|
|
$location{'535'} = "Fuglafjørdur"; $type{'535'} = "BX"; |
1582
|
|
|
|
|
|
|
$location{'600'} = "Saltangará"; |
1583
|
|
|
|
|
|
|
$location{'610'} = "Saltangará"; $type{'610'} = "BX"; |
1584
|
|
|
|
|
|
|
$location{'620'} = "Runavík"; |
1585
|
|
|
|
|
|
|
$location{'625'} = "Glyvrar"; |
1586
|
|
|
|
|
|
|
$location{'626'} = "Lambareidi"; |
1587
|
|
|
|
|
|
|
$location{'627'} = "Lambi"; |
1588
|
|
|
|
|
|
|
$location{'640'} = "Rituvík"; |
1589
|
|
|
|
|
|
|
$location{'645'} = "Æduvík"; |
1590
|
|
|
|
|
|
|
$location{'650'} = "Toftir"; |
1591
|
|
|
|
|
|
|
$location{'655'} = "Nes, Eysturoy"; |
1592
|
|
|
|
|
|
|
$location{'656'} = "Saltnes"; |
1593
|
|
|
|
|
|
|
$location{'660'} = "Søldarfjørdur"; |
1594
|
|
|
|
|
|
|
$location{'665'} = "Skipanes"; |
1595
|
|
|
|
|
|
|
$location{'666'} = "Gøtueidi"; |
1596
|
|
|
|
|
|
|
$location{'690'} = "Oyndarfjørdur"; |
1597
|
|
|
|
|
|
|
$location{'695'} = "Hellur"; |
1598
|
|
|
|
|
|
|
$location{'700'} = "Klaksvík"; |
1599
|
|
|
|
|
|
|
$location{'710'} = "Klaksvík"; $type{'710'} = "BX"; |
1600
|
|
|
|
|
|
|
$location{'725'} = "Nordoyri"; |
1601
|
|
|
|
|
|
|
$location{'726'} = "Ánir"; |
1602
|
|
|
|
|
|
|
$location{'727'} = "Árnafjørdur"; |
1603
|
|
|
|
|
|
|
$location{'730'} = "Norddepil"; |
1604
|
|
|
|
|
|
|
$location{'735'} = "Depil"; |
1605
|
|
|
|
|
|
|
$location{'736'} = "Nordtoftir"; |
1606
|
|
|
|
|
|
|
$location{'737'} = "Múli"; |
1607
|
|
|
|
|
|
|
$location{'740'} = "Hvannasund"; |
1608
|
|
|
|
|
|
|
$location{'750'} = "Vidareidi"; |
1609
|
|
|
|
|
|
|
$location{'765'} = "Svinoy"; |
1610
|
|
|
|
|
|
|
$location{'766'} = "Kirkja"; |
1611
|
|
|
|
|
|
|
$location{'767'} = "Hattarvík"; |
1612
|
|
|
|
|
|
|
$location{'780'} = "Kunoy"; |
1613
|
|
|
|
|
|
|
$location{'785'} = "Haraldssund"; |
1614
|
|
|
|
|
|
|
$location{'795'} = "Sydradalur, Kalsoy"; |
1615
|
|
|
|
|
|
|
$location{'796'} = "Húsar"; |
1616
|
|
|
|
|
|
|
$location{'797'} = "Mikladalur"; |
1617
|
|
|
|
|
|
|
$location{'798'} = "Trøllanes"; |
1618
|
|
|
|
|
|
|
$location{'800'} = "Tvøroyri"; |
1619
|
|
|
|
|
|
|
$location{'810'} = "Tvøroyri"; $type{'810'} = "BX"; |
1620
|
|
|
|
|
|
|
$location{'825'} = "Frodba"; |
1621
|
|
|
|
|
|
|
$location{'826'} = "Trongisvágur"; |
1622
|
|
|
|
|
|
|
$location{'827'} = "Øravík"; |
1623
|
|
|
|
|
|
|
$location{'850'} = "Hvalba"; |
1624
|
|
|
|
|
|
|
$location{'860'} = "Sandvík"; |
1625
|
|
|
|
|
|
|
$location{'870'} = "Fámjin"; |
1626
|
|
|
|
|
|
|
$location{'900'} = "Vágur"; |
1627
|
|
|
|
|
|
|
$location{'910'} = "Vágur"; $type{'910'} = "BX"; |
1628
|
|
|
|
|
|
|
$location{'925'} = "Nes, Vágur"; |
1629
|
|
|
|
|
|
|
$location{'926'} = "Lopra"; |
1630
|
|
|
|
|
|
|
$location{'927'} = "Akrar"; |
1631
|
|
|
|
|
|
|
$location{'928'} = "Vikarbyrgi"; |
1632
|
|
|
|
|
|
|
$location{'950'} = "Porkeri"; |
1633
|
|
|
|
|
|
|
$location{'960'} = "Hov"; |
1634
|
|
|
|
|
|
|
$location{'970'} = "Sumba"; |
1635
|
|
|
|
|
|
|
|
1636
|
|
|
|
|
|
|
## misc/update end |
1637
|
|
|
|
|
|
|
|
1638
|
|
|
|
|
|
|
1; |
1639
|
|
|
|
|
|
|
__END__ |