-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstation_names.json
More file actions
8389 lines (8389 loc) · 212 KB
/
station_names.json
File metadata and controls
8389 lines (8389 loc) · 212 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
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
[
{
"city": "北京",
"stations": [
{
"station_name": "万寿西宫",
"station_code": "1001A"
},
{
"station_name": "定陵",
"station_code": "1002A"
},
{
"station_name": "东四",
"station_code": "1003A"
},
{
"station_name": "天坛",
"station_code": "1004A"
},
{
"station_name": "农展馆",
"station_code": "1005A"
},
{
"station_name": "官园",
"station_code": "1006A"
},
{
"station_name": "海淀区万柳",
"station_code": "1007A"
},
{
"station_name": "顺义新城",
"station_code": "1008A"
},
{
"station_name": "怀柔镇",
"station_code": "1009A"
},
{
"station_name": "昌平镇",
"station_code": "1010A"
},
{
"station_name": "奥体中心",
"station_code": "1011A"
},
{
"station_name": "古城",
"station_code": "1012A"
}
]
},
{
"city": "天津",
"stations": [
{
"station_name": "市监测中心",
"station_code": "1013A"
},
{
"station_name": "南京路",
"station_code": "1016A"
},
{
"station_name": "北辰科技园区",
"station_code": "1019A"
},
{
"station_name": "天山路",
"station_code": "1020A"
},
{
"station_name": "永明路",
"station_code": "1024A"
},
{
"station_name": "团泊洼",
"station_code": "1027A"
},
{
"station_name": "南口路",
"station_code": "1014A"
},
{
"station_name": "勤俭路",
"station_code": "1015A"
},
{
"station_name": "大直沽八号路",
"station_code": "1017A"
},
{
"station_name": "前进路",
"station_code": "1018A"
},
{
"station_name": "跃进路",
"station_code": "1021A"
},
{
"station_name": "第四大街",
"station_code": "1023A"
},
{
"station_name": "航天路",
"station_code": "1025A"
},
{
"station_name": "汉北路",
"station_code": "1026A"
},
{
"station_name": "河西一经路",
"station_code": "2858A"
},
{
"station_name": "津沽路",
"station_code": "2859A"
},
{
"station_name": "宾水西道",
"station_code": "2860A"
},
{
"station_name": "大理道",
"station_code": "2922A"
},
{
"station_name": "中山北路",
"station_code": "3020A"
},
{
"station_name": "勤俭道",
"station_code": "1015A"
},
{
"station_name": "前进道",
"station_code": "1018A"
},
{
"station_name": " 淮河道",
"station_code": "1019A"
},
{
"station_name": "西四道",
"station_code": "3051A"
}
]
},
{
"city": "石家庄",
"stations": [
{
"station_name": "化工学校",
"station_code": "1028A"
},
{
"station_name": "职工医院",
"station_code": "1029A"
},
{
"station_name": "高新区",
"station_code": "1030A"
},
{
"station_name": "西北水源",
"station_code": "1031A"
},
{
"station_name": "西南高教",
"station_code": "1032A"
},
{
"station_name": "世纪公园",
"station_code": "1033A"
},
{
"station_name": "人民会堂",
"station_code": "1034A"
},
{
"station_name": "封龙山",
"station_code": "1035A"
},
{
"station_name": "22中南校区",
"station_code": "2862A"
}
]
},
{
"city": "唐山",
"stations": [
{
"station_name": "供销社",
"station_code": "1036A"
},
{
"station_name": "雷达站",
"station_code": "1037A"
},
{
"station_name": "物资局",
"station_code": "1038A"
},
{
"station_name": "陶瓷公司",
"station_code": "1039A"
},
{
"station_name": "十二中",
"station_code": "1040A"
},
{
"station_name": "小山",
"station_code": "1041A"
}
]
},
{
"city": "秦皇岛",
"stations": [
{
"station_name": "北戴河环保局",
"station_code": "1042A"
},
{
"station_name": "第一关",
"station_code": "1043A"
},
{
"station_name": "监测站",
"station_code": "1044A"
},
{
"station_name": "市政府",
"station_code": "1045A"
},
{
"station_name": "建设大厦",
"station_code": "1046A"
},
{
"station_name": "文明里(启用171012)",
"station_code": "3132A"
}
]
},
{
"city": "邯郸",
"stations": [
{
"station_name": "环保局",
"station_code": "1047A"
},
{
"station_name": "东污水处理厂",
"station_code": "1048A"
},
{
"station_name": "矿院",
"station_code": "1049A"
},
{
"station_name": "丛台公园",
"station_code": "1050A"
}
]
},
{
"city": "保定",
"stations": [
{
"station_name": "游泳馆",
"station_code": "1051A"
},
{
"station_name": "华电二区",
"station_code": "1052A"
},
{
"station_name": "接待中心",
"station_code": "1053A"
},
{
"station_name": "地表水厂",
"station_code": "1054A"
},
{
"station_name": "胶片厂",
"station_code": "1055A"
},
{
"station_name": "监测站",
"station_code": "1056A"
}
]
},
{
"city": "张家口",
"stations": [
{
"station_name": "人民公园",
"station_code": "1057A"
},
{
"station_name": "探机厂",
"station_code": "1058A"
},
{
"station_name": "五金库",
"station_code": "1059A"
},
{
"station_name": "世纪豪园",
"station_code": "1060A"
},
{
"station_name": "北泵房",
"station_code": "1061A"
},
{
"station_name": "烟厂",
"station_code": "3131A"
}
]
},
{
"city": "承德",
"stations": [
{
"station_name": "铁路",
"station_code": "1062A"
},
{
"station_name": "中国银行",
"station_code": "1063A"
},
{
"station_name": "开发区",
"station_code": "1064A"
},
{
"station_name": "文化中心",
"station_code": "1065A"
},
{
"station_name": "离宫",
"station_code": "1066A"
}
]
},
{
"city": "廊坊",
"stations": [
{
"station_name": "药材公司",
"station_code": "1067A"
},
{
"station_name": "开发区",
"station_code": "1068A"
},
{
"station_name": "环境监测监理中心",
"station_code": "1069A"
},
{
"station_name": "北华航天学院",
"station_code": "1070A"
},
{
"station_name": "河北工业大学",
"station_code": "2919A"
}
]
},
{
"city": "沧州",
"stations": [
{
"station_name": "沧县城建局",
"station_code": "1071A"
},
{
"station_name": "电视转播站",
"station_code": "1072A"
},
{
"station_name": "市环保局",
"station_code": "1073A"
}
]
},
{
"city": "衡水",
"stations": [
{
"station_name": "电机北厂",
"station_code": "1074A"
},
{
"station_name": "市监测站",
"station_code": "1075A"
},
{
"station_name": "市环保局",
"station_code": "1076A"
}
]
},
{
"city": "邢台",
"stations": [
{
"station_name": "达活泉",
"station_code": "1077A"
},
{
"station_name": "邢师高专",
"station_code": "1078A"
},
{
"station_name": "路桥公司",
"station_code": "1079A"
},
{
"station_name": "市环保局",
"station_code": "1080A"
}
]
},
{
"city": "太原",
"stations": [
{
"station_name": "尖草坪",
"station_code": "1081A"
},
{
"station_name": "涧河",
"station_code": "1082A"
},
{
"station_name": "上兰",
"station_code": "1083A"
},
{
"station_name": "晋源",
"station_code": "1084A"
},
{
"station_name": "小店",
"station_code": "1085A"
},
{
"station_name": "桃园",
"station_code": "1086A"
},
{
"station_name": "坞城",
"station_code": "1087A"
},
{
"station_name": "南寨",
"station_code": "1088A"
},
{
"station_name": "金胜",
"station_code": "1089A"
}
]
},
{
"city": "呼和浩特",
"stations": [
{
"station_name": "呼市一监",
"station_code": "1090A"
},
{
"station_name": "小召",
"station_code": "1091A"
},
{
"station_name": "兴松小区",
"station_code": "1092A"
},
{
"station_name": "糖厂",
"station_code": "1093A"
},
{
"station_name": "如意水处理厂",
"station_code": "1094A"
},
{
"station_name": "二十九中",
"station_code": "1095A"
},
{
"station_name": "工大金川校区",
"station_code": "1096A"
},
{
"station_name": "化肥厂生活区",
"station_code": "1097A"
}
]
},
{
"city": "沈阳",
"stations": [
{
"station_name": "小河沿",
"station_code": "1105A"
},
{
"station_name": "太原街",
"station_code": "1106A"
},
{
"station_name": "浑南东路",
"station_code": "1099A"
},
{
"station_name": "新秀街",
"station_code": "1100A"
},
{
"station_name": "沧海路",
"station_code": "1101A"
},
{
"station_name": "东陵路",
"station_code": "1102A"
},
{
"station_name": "陵东街",
"station_code": "1103A"
},
{
"station_name": "文化路",
"station_code": "1104A"
},
{
"station_name": "南十东路",
"station_code": "1107A"
},
{
"station_name": "京沈街",
"station_code": "1108A"
},
{
"station_name": "森林路",
"station_code": "1098A"
},
{
"station_name": "沈辽西路",
"station_code": "2897A"
},
{
"station_name": "裕农路",
"station_code": "2900A"
}
]
},
{
"city": "大连",
"stations": [
{
"station_name": "甘井子",
"station_code": "1109A"
},
{
"station_name": "周水子",
"station_code": "1110A"
},
{
"station_name": "星海三站",
"station_code": "1111A"
},
{
"station_name": "青泥洼桥",
"station_code": "1112A"
},
{
"station_name": "傅家庄",
"station_code": "1113A"
},
{
"station_name": "七贤岭",
"station_code": "1114A"
},
{
"station_name": "旅顺",
"station_code": "1115A"
},
{
"station_name": "金州",
"station_code": "1116A"
},
{
"station_name": "开发区",
"station_code": "1117A"
},
{
"station_name": "双D港",
"station_code": "1118A"
}
]
},
{
"city": "长春",
"stations": [
{
"station_name": "食品厂",
"station_code": "1119A"
},
{
"station_name": "客车厂",
"station_code": "1120A"
},
{
"station_name": "邮电学院",
"station_code": "1121A"
},
{
"station_name": "劳动公园",
"station_code": "1122A"
},
{
"station_name": "园林处",
"station_code": "1123A"
},
{
"station_name": "净月潭",
"station_code": "1124A"
},
{
"station_name": "甩湾子",
"station_code": "1125A"
},
{
"station_name": "经开区环卫处",
"station_code": "1126A"
},
{
"station_name": "高新区管委会",
"station_code": "1127A"
},
{
"station_name": "岱山公园",
"station_code": "1128A"
}
]
},
{
"city": "哈尔滨",
"stations": [
{
"station_name": "岭北",
"station_code": "1129A"
},
{
"station_name": "松北商大",
"station_code": "1130A"
},
{
"station_name": "阿城会宁",
"station_code": "1131A"
},
{
"station_name": "南岗学府路",
"station_code": "1132A"
},
{
"station_name": "太平宏伟公园",
"station_code": "1133A"
},
{
"station_name": "道外承德广场",
"station_code": "1134A"
},
{
"station_name": "香坊红旗大街",
"station_code": "1135A"
},
{
"station_name": "动力和平路",
"station_code": "1136A"
},
{
"station_name": "道里建国路",
"station_code": "1137A"
},
{
"station_name": "平房东轻厂",
"station_code": "1138A"
},
{
"station_name": "呼兰师专",
"station_code": "1139A"
},
{
"station_name": "省农科院",
"station_code": "1140A"
}
]
},
{
"city": "上海",
"stations": [
{
"station_name": "十五厂",
"station_code": "1142A"
},
{
"station_name": "虹口",
"station_code": "1143A"
},
{
"station_name": "徐汇上师大",
"station_code": "1144A"
},
{
"station_name": "杨浦四漂",
"station_code": "1145A"
},
{
"station_name": "青浦淀山湖",
"station_code": "1146A"
},
{
"station_name": "静安监测站",
"station_code": "1147A"
},
{
"station_name": "浦东川沙",
"station_code": "1148A"
},
{
"station_name": "浦东新区监测站",
"station_code": "1149A"
},
{
"station_name": "浦东张江",
"station_code": "1150A"
},
{
"station_name": "普陀",
"station_code": "1141A"
}
]
},
{
"city": "南京",
"stations": [
{
"station_name": "迈皋桥",
"station_code": "1151A"
},
{
"station_name": "草场门",
"station_code": "1152A"
},
{
"station_name": "山西路",
"station_code": "1153A"
},
{
"station_name": "中华门",
"station_code": "1154A"
},
{
"station_name": "瑞金路",
"station_code": "1155A"
},
{
"station_name": "玄武湖",
"station_code": "1156A"
},
{
"station_name": "浦口",
"station_code": "1157A"
},
{
"station_name": "奥体中心",
"station_code": "1158A"
},
{
"station_name": "仙林大学城",
"station_code": "1159A"
}
]
},
{
"city": "苏州",
"stations": [
{
"station_name": "上方山",
"station_code": "1160A"
},
{
"station_name": "南门",
"station_code": "1161A"
},
{
"station_name": "彩香",
"station_code": "1162A"
},
{
"station_name": "轧钢厂",
"station_code": "1163A"
},
{
"station_name": "吴中区",
"station_code": "1164A"
},
{
"station_name": "苏州新区",
"station_code": "1165A"
},
{
"station_name": "苏州工业园区",
"station_code": "1166A"
},
{
"station_name": "相城区",
"station_code": "1167A"
}
]
},
{
"city": "南通",
"stations": [
{
"station_name": "南郊",
"station_code": "1168A"
},
{
"station_name": "虹桥",
"station_code": "1169A"
},
{
"station_name": "城中",
"station_code": "1170A"
},
{
"station_name": "星湖花园",
"station_code": "1171A"
},
{
"station_name": "紫琅学院",
"station_code": "1172A"
}
]
},
{
"city": "连云港",
"stations": [
{
"station_name": "市环境监测站",
"station_code": "1173A"
},
{
"station_name": "洪门派出所",
"station_code": "1174A"
},
{
"station_name": "墟沟核电专家村",
"station_code": "1175A"
},
{
"station_name": "开发区恒瑞医药公司",
"station_code": "1176A"
},
{
"station_name": "胡沟管理处",
"station_code": "3008A"
},
{
"station_name": "矿山设计院",
"station_code": "3009A"
},
{
"station_name": "德源药业(直管站)",
"station_code": "3000A"
}
]
},
{
"city": "徐州",
"stations": [
{
"station_name": "黄河新村",
"station_code": "1177A"
},
{
"station_name": "淮塔",
"station_code": "1178A"
},
{
"station_name": "铜山兽医院",
"station_code": "1179A"
},
{
"station_name": "新城区",
"station_code": "1180A"
},
{
"station_name": "桃园路",
"station_code": "1181A"
},
{
"station_name": "农科院",
"station_code": "1182A"
},
{
"station_name": "铜山区环保局",
"station_code": "1183A"
},
{
"station_name": "鼓楼区政府",
"station_code": "3005A"
},
{
"station_name": "铜山区招生办",
"station_code": "3006A"
}
]
},
{
"city": "扬州",
"stations": [
{
"station_name": "城东财政所",
"station_code": "1184A"
},
{
"station_name": "市监测站",
"station_code": "1185A"
},
{
"station_name": "邗江监测站",
"station_code": "1186A"
},
{
"station_name": "第四医院",
"station_code": "1187A"
},
{
"station_name": "五台山医院",
"station_code": "2869A"
}
]
},
{
"city": "无锡",
"stations": [
{
"station_name": "曹张",
"station_code": "1190A"
},
{
"station_name": "漆塘",
"station_code": "1191A"
},
{
"station_name": "东亭",
"station_code": "1192A"
},
{
"station_name": "旺庄",
"station_code": "1193A"
},
{
"station_name": "堰桥",
"station_code": "1195A"
},
{
"station_name": "雪浪",
"station_code": "1188A"
},
{
"station_name": "黄巷",
"station_code": "1189A"
},
{
"station_name": "荣巷",
"station_code": "1194A"
}
]
},
{
"city": "常州",
"stations": [
{