This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodes.json
7885 lines (7885 loc) · 183 KB
/
nodes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa96"
},
"data": {
"id": "1",
"Gebiet": "Stadt Flensburg",
"Line2": "Fachbereich 2 / Gesundheitsdienste",
"parent": "Schleswig-Holstein",
"Strasse": "Norderstr. 58-60",
"PLZ": "24939",
"Ort": "Flensburg",
"EMail": "[email protected] ",
"Tel": "0461 85-2602",
"Fax": "0461 85-1960",
"Ebene": "Kommune",
"Abkuerzung": "SFF2/G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa97"
},
"data": {
"id": "2",
"Gebiet": "Landeshauptstadt Kiel",
"parent": "Schleswig-Holstein",
"Line2": "Amt für Gesundheit",
"Strasse": "Fleethörn 18-24",
"PLZ": "24103",
"Ort": "Kiel",
"EMail": "[email protected]",
"Tel": "0431 901 2108",
"Fax": "0431 901 621 08",
"Ebene": "Kommune",
"Abkuerzung": "LKAfG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa98"
},
"data": {
"id": "3",
"Gebiet": "Hansestadt Lübeck",
"parent": "Schleswig-Holstein",
"Line2": "Gesundheitsamt",
"Strasse": "Sophienstr. 2 - 8",
"PLZ": "23560",
"Ort": "Lübeck",
"EMail": "[email protected]",
"Tel": "+49 451 122-5315",
"Fax": "+49 451 122 5390",
"Ebene": "Kommune",
"Abkuerzung": "HLG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa99"
},
"data": {
"id": "4",
"Gebiet": "Stadt Neumünster",
"parent": "Schleswig-Holstein",
"Line2": "Gesundheitsamt",
"Strasse": "Meßtorffweg 8",
"PLZ": "24534",
"Ort": "Neumünster",
"EMail": "[email protected] ",
"Tel": "04321 942-2810",
"Fax": "04321 942-2800",
"Ebene": "Kommune",
"Abkuerzung": "SNG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9a"
},
"data": {
"id": "5",
"Gebiet": "Kreis Dithmarschen",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheitsschutz",
"Strasse": "Esmarchstr. 50",
"PLZ": "25746",
"Ort": "Heide",
"EMail": "[email protected]",
"Tel": "0481 9749000",
"Fax": "0481 974931",
"Ebene": "Kommune",
"Abkuerzung": "KDFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9b"
},
"data": {
"id": "6",
"Gebiet": "Kreis Herzogtum Lauenburg",
"parent": "Schleswig-Holstein",
"Line2": "Gesundheitsamt",
"Strasse": "Barlachstr. 4",
"PLZ": "23909",
"Ort": "Ratzeburg",
"EMail": "[email protected]",
"Tel": "+49 4541 888-380",
"Fax": "+49 4541 888-259",
"Ebene": "Kommune",
"Abkuerzung": "KHLG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9c"
},
"data": {
"id": "7",
"Gebiet": "Kreis Nordfriesland",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheit(Gesundheitsamt)",
"Strasse": "Damm 8",
"PLZ": "25813",
"Ort": "Husum",
"EMail": "[email protected]",
"Tel": "+49 4841 67 0",
"Fax": "+49 4841 67 89 4431",
"Ebene": "Kommune",
"Abkuerzung": "KNFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9d"
},
"data": {
"id": "8",
"Gebiet": "Kreis Ostholstein",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheit(Gesundheitsamt)",
"Strasse": "Holstenstr. 52",
"PLZ": "23701",
"Ort": "Eutin",
"EMail": "[email protected]",
"Tel": "04521 788-880",
"Fax": "04521 788-139",
"Ebene": "Kommune",
"Abkuerzung": "KOFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9e"
},
"data": {
"id": "9",
"Gebiet": "Kreisverwaltung Pinneberg",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheit",
"Strasse": "Kurt-Wagener-Straße 11",
"PLZ": "25337",
"Ort": "Elmshorn",
"EMail": "[email protected] ",
"Tel": "+49 4121- 4502-5000",
"Fax": "+49 4121 4502-93510",
"Ebene": "Kommune",
"Abkuerzung": "KPFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fa9f"
},
"data": {
"id": "10",
"Gebiet": "Kreis Plön",
"parent": "Schleswig-Holstein",
"Line2": "Amt für Gesundheit",
"Strasse": "Hamburger Str. 17/18",
"PLZ": "24306",
"Ort": "Plön",
"EMail": "[email protected]",
"Tel": "04522 743-531",
"Fax": "04522 743-467",
"Ebene": "Kommune",
"Abkuerzung": "KPAfG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa0"
},
"data": {
"id": "11",
"Gebiet": "Kreis Rendsburg-Eckernförde",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst 4.3 Gesundheitsdienste",
"Strasse": "Kaiserstr. 8",
"PLZ": "24768",
"Ort": "Rendsburg",
"EMail": "[email protected]",
"Tel": "04331 202-560",
"Fax": "04331 202-604",
"Ebene": "Kommune",
"Abkuerzung": "KRF4G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa1"
},
"data": {
"id": "12",
"Gebiet": "Kreis Schleswig-Flensburg",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheit",
"Strasse": "Moltkestraße 22-26",
"PLZ": "24837",
"Ort": "Schleswig",
"EMail": "[email protected]",
"Tel": "+49 4621 810-0",
"Fax": "+49 4621 810-55",
"Ebene": "Kommune",
"Abkuerzung": "KSFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa2"
},
"data": {
"id": "13",
"Gebiet": "Landkreis Segeberg",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Infektionsschutz und umweltbezogener Gesundheitsschutz",
"Strasse": "Hamburger Str. 30",
"PLZ": "23795",
"Ort": "Bad Segeberg",
"EMail": "[email protected] ",
"Tel": "04551 951-9349",
"Fax": "04551 951-9340",
"Ebene": "Kommune",
"Abkuerzung": "LSFIuuG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa3"
},
"data": {
"id": "14",
"Gebiet": "Landkreis Steinburg",
"parent": "Schleswig-Holstein",
"Line2": "Gesundheitsamt",
"Strasse": "Viktoriastr. 17a",
"PLZ": "25524",
"Ort": "Itzehoe",
"EMail": "[email protected]",
"Tel": "04821 69-390",
"Fax": "04821 69-403",
"Ebene": "Kommune",
"Abkuerzung": "LSG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa4"
},
"data": {
"id": "15",
"Gebiet": "Landkreis Stormarn",
"parent": "Schleswig-Holstein",
"Line2": "Fachdienst Gesundheit/ Gesundheitsamt",
"Strasse": "Reimer-Hansen-Str. 3",
"PLZ": "23843",
"Ort": "Bad Oldesloe",
"EMail": "[email protected]",
"Tel": "+49 4531 160-1282",
"Fax": "+49 4531 160-1626",
"Ebene": "Kommune",
"Abkuerzung": "LSFGG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa5"
},
"data": {
"id": "16",
"Gebiet": "Bezirksamt Hamburg-Altona",
"parent": "Hamburg",
"Line2": "Bezirksamt Altona Fachamt Gesundheit",
"Strasse": "Bahrenfelder Str. 254-260 ",
"PLZ": "22765",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "+49 40 428 11 2000",
"Fax": "+49 40 427 902 055",
"Ebene": "Kommune",
"Abkuerzung": "BHBAFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa6"
},
"data": {
"id": "17",
"Gebiet": "Gesundheitsamt Hamburg-Bergedorf",
"parent": "Hamburg",
"Line2": "Fachamt Gesundheit",
"Strasse": "Herzog-Carl-Friedrich-Platz 1 ",
"PLZ": "21031",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "+49 40 42891 2220",
"Fax": "+49 40 4279 06237",
"Ebene": "Kommune",
"Abkuerzung": "GHFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa7"
},
"data": {
"id": "18",
"Gebiet": "Bezirksamt Hamburg-Eimsbüttel",
"parent": "Hamburg",
"Line2": "Gesundheits- und Umweltamt",
"Strasse": "Grindelberg 66",
"PLZ": "20144",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "+49 40 42801-3400",
"Fax": "+49 40 42790 3371",
"Ebene": "Kommune",
"Abkuerzung": "BHGuU"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa8"
},
"data": {
"id": "19",
"Gebiet": "Bezirksamt Hamburg-Mitte",
"parent": "Hamburg",
"Line2": "Fachamt Gesundheit",
"Strasse": "Caffamacherreihe 1-3",
"PLZ": "20355",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "+49 40 42854-4631",
"Fax": "+49 40 42790-1187",
"Ebene": "Kommune",
"Abkuerzung": "BHFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faa9"
},
"data": {
"id": "20",
"Gebiet": "Bezirksamt Hamburg-Nord",
"parent": "Hamburg",
"Line2": "Fachamt Gesundheit",
"Strasse": "Eppendorfer Landstraße 59",
"PLZ": "20249",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "040 42804-2675",
"Fax": "040 427904-008",
"Ebene": "Kommune",
"Abkuerzung": "BHFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faaa"
},
"data": {
"id": "21",
"Gebiet": "Freie und Hansestadt Hamburg",
"parent": "Hamburg",
"Line2": "Bezirksamt Harburg",
"Strasse": "Harburger Rathauspassage 2",
"PLZ": "21073",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "",
"Fax": "040 427 90 7190",
"Ebene": "Kommune",
"Abkuerzung": "FuHHBH"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faab"
},
"data": {
"id": "22",
"Gebiet": "Bezirksamt Hamburg-Wandsbek",
"parent": "Hamburg",
"Line2": "Gesundheitsamt",
"Strasse": "Robert-Schumann-Brücke 8",
"PLZ": "22041",
"Ort": "Hamburg",
"EMail": "[email protected]",
"Tel": "",
"Fax": "+49 40 4279 054 99",
"Ebene": "Kommune",
"Abkuerzung": "BHG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faac"
},
"data": {
"id": "23",
"Gebiet": "HPHC",
"parent": "Hamburg",
"Line2": "Hafenärztlicher Dienst ",
"Strasse": "",
"PLZ": "",
"Ort": "",
"EMail": "",
"Tel": "",
"Fax": "",
"Ebene": "Kommune",
"Abkuerzung": "HHD"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faad"
},
"data": {
"id": "24",
"Gebiet": "Stadt Braunschweig",
"parent": "Niedersachsen",
"Line2": "Fachbereich Soziales und Gesundheit",
"Strasse": "Hamburger Str. 226",
"PLZ": "38114",
"Ort": "Braunschweig",
"EMail": "[email protected]",
"Tel": "0531 470-7022",
"Fax": "0531 470-7040",
"Ebene": "Kommune",
"Abkuerzung": "SBFSuG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faae"
},
"data": {
"id": "25",
"Gebiet": "Stadt Salzgitter",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Paracelsusstr. 1-9",
"PLZ": "38259",
"Ort": "Salzgitter",
"EMail": "[email protected]",
"Tel": "05341 839-2022",
"Fax": "05341 839-2060",
"Ebene": "Kommune",
"Abkuerzung": "SSG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faaf"
},
"data": {
"id": "26",
"Gebiet": "Stadt Wolfsburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Rosenweg 1a",
"PLZ": "38446",
"Ort": "Wolfsburg",
"EMail": "[email protected]",
"Tel": "05361 28-2020",
"Fax": "05361 28-2002",
"Ebene": "Kommune",
"Abkuerzung": "SWG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab0"
},
"data": {
"id": "27",
"Gebiet": "Landkreis Gifhorn",
"parent": "Niedersachsen",
"Line2": "Fachbereich Gesundheit",
"Strasse": "Allerstr. 21",
"PLZ": "38518",
"Ort": "Gifhorn",
"EMail": "[email protected]",
"Tel": "05371 82-702",
"Fax": "05371 82-358",
"Ebene": "Kommune",
"Abkuerzung": "LGFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab1"
},
"data": {
"id": "28",
"Gebiet": "Landkreis Goslar",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Heinrich-Pieper-Str. 9",
"PLZ": "38640",
"Ort": "Goslar",
"EMail": "[email protected]",
"Tel": "05321 700-800",
"Fax": "05321 700-880",
"Ebene": "Kommune",
"Abkuerzung": "LGG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab2"
},
"data": {
"id": "29",
"Gebiet": "Landkreis Helmstedt",
"parent": "Niedersachsen",
"Line2": "Geschäftsbereich Gesundheit",
"Strasse": "Elzweg 19",
"PLZ": "38350",
"Ort": "Helmstedt",
"EMail": "[email protected]",
"Tel": "05351 121-1425",
"Fax": "05351 121-1614",
"Ebene": "Kommune",
"Abkuerzung": "LHGG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab3"
},
"data": {
"id": "30",
"Gebiet": "Landkreis Northeim",
"parent": "Niedersachsen",
"Line2": "Gesundheitswesen",
"Strasse": "Wolfshof 10",
"PLZ": "37154",
"Ort": "Northeim",
"EMail": "[email protected]",
"Tel": "05551 708-570",
"Fax": "05551-708-9538 ",
"Ebene": "Kommune",
"Abkuerzung": "LNG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab4"
},
"data": {
"id": "31",
"Gebiet": "Landkreis Peine",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Maschweg 21",
"PLZ": "31224",
"Ort": "Peine",
"EMail": "[email protected]",
"Tel": "05171 4017001",
"Fax": "05171 401-7731",
"Ebene": "Kommune",
"Abkuerzung": "LPG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab5"
},
"data": {
"id": "32",
"Gebiet": "Landkreis Wolfenbüttel",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Friedrich-Wilhelm-Str. 2a",
"PLZ": "38300",
"Ort": "Wolfenbüttel",
"EMail": "[email protected]",
"Tel": "05331 84-503",
"Fax": "05331 84-513",
"Ebene": "Kommune",
"Abkuerzung": "LWG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab6"
},
"data": {
"id": "33",
"Gebiet": "Stadt und Landkreis Göttingen",
"parent": "Niedersachsen",
"Line2": "Fachbereich 53 Gesundheitsamt",
"Strasse": "Theaterplatz 4",
"PLZ": "37073",
"Ort": "Göttingen",
"EMail": "[email protected]",
"Tel": "0551 400-4802",
"Fax": "0551 400-4930",
"Ebene": "Kommune",
"Abkuerzung": "SuLGF5G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab7"
},
"data": {
"id": "34",
"Gebiet": "Region Hannover",
"parent": "Niedersachsen",
"Line2": "Fachbereich Gesundheit",
"Strasse": "Weinstr. 2",
"PLZ": "30171",
"Ort": "Hannover",
"EMail": "[email protected] ",
"Tel": "05 11 300 34 34",
"Fax": "0511 616-48576",
"Ebene": "Kommune",
"Abkuerzung": "RHFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab8"
},
"data": {
"id": "35",
"Gebiet": "Landkreis Diepholz",
"parent": "Niedersachsen",
"Line2": "Fachdienst 53 Gesundheitsamt",
"Strasse": "Wellestr. 6",
"PLZ": "49356",
"Ort": "Diepholz",
"EMail": "[email protected]",
"Tel": "05441 976-1801",
"Fax": "05441 976-1756",
"Ebene": "Kommune",
"Abkuerzung": "LDF5G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fab9"
},
"data": {
"id": "36",
"Gebiet": "Landkreis Hameln-Pyrmont",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Hugenottenstr. 6",
"PLZ": "31785",
"Ort": "Hameln",
"EMail": "[email protected]",
"Tel": "05151 903-5555",
"Fax": "05151 903-5002",
"Ebene": "Kommune",
"Abkuerzung": "LHG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faba"
},
"data": {
"id": "37",
"Gebiet": "Landkreis Hildesheim",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Ludolfingerstr. 2",
"PLZ": "31132",
"Ort": "Hildesheim",
"EMail": "[email protected]",
"Tel": "05121 309-7541",
"Fax": "05121 309-7809",
"Ebene": "Kommune",
"Abkuerzung": "LHG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fabb"
},
"data": {
"id": "38",
"Gebiet": "Landkreis Holzminden",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Böntalstr. 32",
"PLZ": "37603",
"Ort": "Holzminden",
"EMail": "[email protected]",
"Tel": "+49 5531 707-372",
"Fax": "+49 5531 7076673",
"Ebene": "Kommune",
"Abkuerzung": "LHG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fabc"
},
"data": {
"id": "39",
"Gebiet": "Landkreis Nienburg (Weser)",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt / Gesundheitsdienste",
"Strasse": "Triemerstr. 17",
"PLZ": "31582",
"Ort": "Nienburg",
"EMail": "[email protected]",
"Tel": "05021967 900",
"Fax": "05021967 933",
"Ebene": "Kommune",
"Abkuerzung": "LN(G/G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fabd"
},
"data": {
"id": "40",
"Gebiet": "Landkreis Schaumburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Probsthäger Str. 6",
"PLZ": "31655",
"Ort": "Stadthagen",
"EMail": "[email protected]",
"Tel": "+49 5721 703-2500",
"Fax": "+49 5721 703-2558",
"Ebene": "Kommune",
"Abkuerzung": "LSG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fabe"
},
"data": {
"id": "41",
"Gebiet": "Landkreis Celle",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Trift 26",
"PLZ": "29221",
"Ort": "Celle",
"EMail": "[email protected]",
"Tel": "05141 916-5000",
"Fax": "05141 916-5099",
"Ebene": "Kommune",
"Abkuerzung": "LCG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fabf"
},
"data": {
"id": "42",
"Gebiet": "Landkreis Cuxhaven",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Vincent-Lübeck-Str. 2",
"PLZ": "27474",
"Ort": "Cuxhaven",
"EMail": "[email protected]",
"Tel": "+49 4721-66 26 00",
"Fax": "+49 4721 66270563",
"Ebene": "Kommune",
"Abkuerzung": "LCG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac0"
},
"data": {
"id": "43",
"Gebiet": "Landkreis Harburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Schloßplatz 6",
"PLZ": "21423",
"Ort": "Winsen(Luhe)",
"EMail": "[email protected]",
"Tel": "04171 693-372",
"Fax": "04171 693-174",
"Ebene": "Kommune",
"Abkuerzung": "LHG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac1"
},
"data": {
"id": "44",
"Gebiet": "Landkreis Lüchow- Dannenberg/",
"parent": "Niedersachsen",
"Line2": "Wendland",
"Strasse": "Königsberger Strasse 10",
"PLZ": "29439",
"Ort": "Lüchow/ Wendland",
"EMail": "[email protected]",
"Tel": "05841-120 850",
"Fax": "05841 120-479",
"Ebene": "Kommune",
"Abkuerzung": "LLDW"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac2"
},
"data": {
"id": "45",
"Gebiet": "Landkreis Lüneburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Am Graalwall 4",
"PLZ": "21335",
"Ort": "Lüneburg",
"EMail": "[email protected]",
"Tel": "+49 4131 26-1500",
"Fax": "+49 4131 261703",
"Ebene": "Kommune",
"Abkuerzung": "LLG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac3"
},
"data": {
"id": "46",
"Gebiet": "Landkreis Osterholz",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Heimstraße 1-3",
"PLZ": "27711",
"Ort": "Osterholz-Scharmbeck",
"EMail": "[email protected]",
"Tel": "+49 47 91 930 2900",
"Fax": "+49 47 91 930 2999",
"Ebene": "Kommune",
"Abkuerzung": "LOG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac4"
},
"data": {
"id": "47",
"Gebiet": "Landkreis Rotenburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Bahnhofstr. 15",
"PLZ": "27356",
"Ort": "Rotenburg (Wümme)",
"EMail": "[email protected]",
"Tel": "04261 983 3203",
"Fax": "04261 983 3249",
"Ebene": "Kommune",
"Abkuerzung": "LRG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac5"
},
"data": {
"id": "48",
"Gebiet": "Landkreis Heidekreis",
"parent": "Niedersachsen",
"Line2": "Fachbereich Gesundheit",
"Strasse": "Dierkingstr. 19",
"PLZ": "29664",
"Ort": "Walsrode",
"EMail": "[email protected]",
"Tel": "05162-970 9110 ",
"Fax": "05162 - 970 9136 ",
"Ebene": "Kommune",
"Abkuerzung": "LHFG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac6"
},
"data": {
"id": "49",
"Gebiet": "Landkreis Stade",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Heckenweg 7",
"PLZ": "21680",
"Ort": "Stade",
"EMail": "[email protected]",
"Tel": "04141 12-5300",
"Fax": "04141 12 5313",
"Ebene": "Kommune",
"Abkuerzung": "LSG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac7"
},
"data": {
"id": "50",
"Gebiet": "Landkreis Uelzen",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt Uelzen",
"Strasse": "Auf dem Rahlande 15",
"PLZ": "29525",
"Ort": "Uelzen",
"EMail": "",
"Tel": "0581 82-462",
"Fax": "0581 82-474",
"Ebene": "Kommune",
"Abkuerzung": "LUGU"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac8"
},
"data": {
"id": "51",
"Gebiet": "Landkreis Verden",
"parent": "Niedersachsen",
"Line2": "Fachdienst Gesundheit und Umweltmedizin",
"Strasse": "Lindhooper Str.67",
"PLZ": "27283",
"Ort": "Verden",
"EMail": "[email protected]",
"Tel": "04231 15-500",
"Fax": "04231 15-607",
"Ebene": "Kommune",
"Abkuerzung": "LVFGuU"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6fac9"
},
"data": {
"id": "52",
"Gebiet": "Stadt Delmenhorst",
"parent": "Niedersachsen",
"Line2": "Städt. Gesundheitsamt",
"Strasse": "Lange Str. 1A (City Center)",
"PLZ": "27749",
"Ort": "Delmenhorst",
"EMail": "[email protected]",
"Tel": "04221 99-2616",
"Fax": "04221 99-1231",
"Ebene": "Kommune",
"Abkuerzung": "SDSG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6faca"
},
"data": {
"id": "53",
"Gebiet": "Stadt Emden",
"parent": "Niedersachsen",
"Line2": "Fachdienst 553 - Gesundheit",
"Strasse": "Ysaac-Brons-Str. 16",
"PLZ": "26721",
"Ort": "Emden",
"EMail": "[email protected]",
"Tel": "04921 87-1650",
"Fax": "04921/87 1679",
"Ebene": "Kommune",
"Abkuerzung": "SEF5-G"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6facb"
},
"data": {
"id": "54",
"Gebiet": "Stadt Oldenburg",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Industriestraße 1b",
"PLZ": "26121",
"Ort": "Oldenburg",
"EMail": "[email protected]",
"Tel": "0441 235-4444",
"Fax": "0441 235-8620",
"Ebene": "Kommune",
"Abkuerzung": "SOG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6facc"
},
"data": {
"id": "55",
"Gebiet": "Stadt Wilhelmshaven",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Gökerstr. 68",
"PLZ": "26384",
"Ort": "Wilhelmshaven",
"EMail": "[email protected]",
"Tel": "04421 16-1570",
"Fax": "04421 16-1569",
"Ebene": "Kommune",
"Abkuerzung": "SWG"
}
},{
"_id": {
"$oid": "625d3854dd0420dfb2f6facd"
},
"data": {
"id": "56",
"Gebiet": "Landkreis Ammerland",
"parent": "Niedersachsen",
"Line2": "Gesundheitsamt",
"Strasse": "Lange Str. 36",