forked from beoutbreakprepared/nCoV2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovisional-Hubei.csv
We can't make this file beautiful and searchable because it's too large.
3061 lines (3061 loc) · 787 KB
/
provisional-Hubei.csv
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","age","sex","city","province","country","wuhan(0)_not_wuhan(1)","latitude","longitude","geo_resolution","date_onset_symptoms","date_admission_hospital","date_confirmation","symptoms","lives_in_Wuhan","travel_history_dates","travel_history_location","reported_market_exposure","additional_information","chronic_disease_binary","chronic_disease","source","sequence_available","outcome","date_death_or_discharge","notes_for_discussion","location","admin3","admin2","admin1","country_new","admin_id"
"1","30","male","Hefei","Anhui","China","1","31.828313","117.224844","point","18.01.2020","20.01.2020","22.01.2020","","yes","17.01.2020","Wuhan","","","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"2","47","male","Hefei","Anhui","China","1","31.828313","117.224844","point","10.01.2020","21.01.2020","23.01.2020","","no","09.01.2020 - 10.01.2020","Chenzhou","","09.01.2020 went to Chenzhou in Hunnan province, tranfered at Wuhan railway station, 10.01.2020 returned to Hefei","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"3","49","male","Hefei","Anhui","China","1","31.828313","117.224844","point","15.01.2020","20.01.2020","23.01.2020","","no","09.01.2020 - 10.01.2020","Chenzhou","","09.01.2020 went to Chenzhou in Hunnan province, tranfered at Wuhan railway station, 10.01.2020 returned to Hefei","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"4","47","female","Hefei","Anhui","China","1","31.828313","117.224844","point","17.01.2020","20.01.2020","23.01.2020","","no","","","","contacted with confirmed case","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"5","50","female","Hefei","Anhui","China","1","31.828313","117.224844","point","10.01.2020","21.01.2020","23.01.2020","","no","06.01.2020 - 07.01.2020","Wuhan","","06.01.2020 went to Wuhan, 07.01.2020 returned to Hefei","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"6","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","24.01.2020","pneumonia","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678777.html","","","","","","","Lu'an City","Anhui","China",""
"7","42","female","Fuyang","Anhui","China","1","32.8905","115.8145","point","21.01.2020","21.01.2020","22.01.2020","fever","no","19.01.2020","Wuhan","","transportation drivers often travel between Wuhan and Chongqing; 19.01.2020 drove from Wuhan to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"8","","female","Huaibei","Anhui","China","1","33.944142","116.79075","point","","","25.01.2020","","no","13.01.2020","Wuhan","","left Wuhan","","","http://wjw.huaibei.gov.cn/xxfb/tzgg/55968731.html","","","","","","","Huaibei City","Anhui","China",""
"9","59","female","Huainan","Anhui","China","1","32.623046","117.011522","point","19.01.2020","24.01.2020","26.01.2020","fever","yes","22.01.2020","Wuhan","","arrived in Huainan from Wuhan","","","https://baijiahao.baidu.com/s?id=1656845876146001402&wfr=spider&for=pc","","","","","","","Huainan City","Anhui","China",""
"10","30","female","Hefei","Anhui","China","1","31.828313","117.224844","point","17.01.2020","22.01.2020","23.01.2020","","yes","21.01.2020","Wuhan","","arrived in Hefei from Wuhan","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"11","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","23.01.2020","pneumonia","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678777.html","","","","","","","Lu'an City","Anhui","China",""
"12","39","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","","20.01.2020","23.01.2020","","no","17.01.2020","Wuhan","","often travel between Wuhan and Fuyang; 17.01.2020 drove from Wuhan to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"13","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","23.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678777.html","","","","","","","Anqing City","Anhui","China",""
"14","38","female","Chizhou","Anhui","China","1","30.656","117.4892","point","22.01.2020","22.01.2020","23.01.2020","cough","yes","19.01.2020","Wuhan","","drove from Wuhan to Chizhou","","","http://www.chizhou.gov.cn/OpennessContent/show/839042.html","","","","","","","Chizhou City","Anhui","China",""
"15","45","male","Bengbu","Anhui","China","1","32.9163","117.3897","point","21.01.2020","21.01.2020","27.01.2020","fever","yes","19.01.2020","Wuhan","","drove back to Bengbu from Wuhan","","","http://wjw.bengbu.gov.cn/gzdt/article.jsp?articleId=3449287594","","","","","","","Bengbu City","Anhui","China",""
"455","40","female","Hefei","Anhui","China","1","31.828313","117.224844","point","15.01.2020","21.01.2020","24.01.2020","","no","","","","contacted with a confirmed case","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"456","51","male","Hefei","Anhui","China","1","31.828313","117.224844","point","17.01.2020","21.01.2020","24.01.2020","","no","","","","contacted with a confirmed case","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"457","37","male","Hefei","Anhui","China","1","31.828313","117.224844","point","19.01.2020","22.01.2020","25.01.2020","","no","15.01.2020 - 22.01.2020","Wuhan","","15.01.2020 visited Wuhan, 22.01.2020 returned to Hefei","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"458","55","male","Hefei","Anhui","China","1","31.828313","117.224844","point","18.01.2020","18.01.2020","25.01.2020","","","03.01.2020 - 17.01.2020","Bengbu","","03.01.2020-16.01.2020 lived in Bengbu, 17.01.2020 returned to Hefei","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"459","32","male","Hefei","Anhui","China","1","31.828313","117.224844","point","22.01.2020","22.01.2020","25.01.2020","","yes","22.01.2020","Wuhan","","arrived in Hefei from Wuhan","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"460","24","male","Hefei","Anhui","China","1","31.828313","117.224844","point","17.01.2020","21.01.2020","25.01.2020","","yes","21.01.2020","Wuhan","","arrived in Hefei from Wuhan","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"461","39","male","Hefei","Anhui","China","1","31.828313","117.224844","point","23.01.2020","24.01.2020","25.01.2020","","yes","22.01.2020","Wuhan","","arrived in Hefei from Wuhan by car","","","http://ah.people.com.cn/GB/n2/2020/0127/c358266-33746566.html","","","","","","","Hefei City","Anhui","China",""
"462","25","female","Fuyang","Anhui","China","1","32.8905","115.8145","point","22.01.2020","22.01.2020","24.01.2020","fever","yes","19.01.2020","Wuhan","","took a train from Wuhan to Fuyang; there were multiple patients in the same train","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"463","56","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","22.01.2020","22.01.2020","24.01.2020","","no","16.01.2020","Wuhan","","drove from Shantou city in Guangdong province to Fuyang; driver a return trip between Guangdong and Wuhan per month","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"464","44","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","24.01.2020","","yes","18.01.2020","Wuhan","","took a bus from Wuhan to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"465","50","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","","20.01.2020","24.01.2020","","yes","19.01.2020","Wuhan","","took a bus from Wuhan to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"466","42","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","","22.01.2020","24.01.2020","","yes","21.01.2020","Wuhan","","drove from Wuhan to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"467","43","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","23.01.2020","23.01.2020","25.01.2020","fever","yes","21.01.2020","Macheng","","took a train from Wuhan to Macheng (in Hubei province), then took another train from Macheng to Fuyang","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"468","22","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","21.01.2020","23.01.2020","25.01.2020","fever, sore throat","yes","23.01.2020","Wuhan","working in another market in Wuhan","arrived in Fuyang from Wuhan","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"469","43","male","Fuyang","Anhui","China","1","32.8905","115.8145","point","","23.01.2020","25.01.2020","","no","19.01.2020","Wuhan","","transportation drivers often travel between Wuhan and Chongqing","","","https://baijiahao.baidu.com/s?id=1656791146764442962&wfr=spider&for=pc","","","","","","","Fuyang City","Anhui","China",""
"470","51","male","Bozhou","Anhui","China","1","33.853974","115.784566","point","18.01.2020","21.01.2020","25.01.2020","fever, rigor, muscular soreness","yes","20.01.2020","Wuhan","","20.01.2020 arrived in Bozhou from Wuhan","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"471","38","male","Bozhou","Anhui","China","1","33.853974","115.784566","point","20.01.2020","22.01.2020","25.01.2020","chills, headache, muscle pain, lack of energy, dyspnea, diarrhea","yes","19.01.2020 - 20.01.2020","Wuhan","","19.01.2020 left Wuhan, 20.01.2020 arrived in Bozhou","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"472","59","male","Bozhou","Anhui","China","1","33.853974","115.784566","point","19.01.2020","21.01.2020","25.01.2020","fever, lack of power occasionally have a dry cough","yes","17.01.2020","Wuhan","","lived near a railway station in Wuhan; left Wuhan by train, arrived in Fuyang, then took a bus to Bozhou","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"473","60","male","Bozhou","Anhui","China","1","33.853974","115.784566","point","18.01.2020","22.01.2020","25.01.2020","fever, cough, fatigue","yes","16.01.2020","Wuhan","","hypertention and diabetes; left Wuhan by train, arrived in Fuyang, then took a bus to Bozhou","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"474","35","male","Bozhou","Anhui","China","1","33.853974","115.784566","point","19.01.2020","22.01.2020","25.01.2020","fever","no","12.01.2020","Xiangtan","","stopped for a rest at a service area on the border between hunan province and hubei province. 12.01.2020 drove from Xiangtan city in Hunan province and arrived in Bozhou","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"475","25","female","Bozhou","Anhui","China","1","33.853974","115.784566","point","21.01.2020","23.01.2020","25.01.2020","pharyngalgia, fever","yes","19.01.2020","Wuhan","","drove from Wuhan to Bozhou","","","https://baijiahao.baidu.com/s?id=1656779800542651620&wfr=spider&for=pc","","","","","","","Bozhou City","Anhui","China",""
"476","49","male","Anqing","Anhui","China","1","30.5319","117.1151","point","","","25.01.2020","","","19.01.2020","Wuhan","","arrived in Anqing from Wuhan","","","http://ah.people.com.cn/n2/2020/0127/c358428-33746384.html","","","","","","","Anqing City","Anhui","China",""
"477","41","male","Anqing","Anhui","China","1","30.5319","117.1151","point","","","25.01.2020","","","13.01.2020 - 14.01.2020","Wuhan","","13.01.2020 in Wuhan, 14.01.2020 back to Anqing","","","http://ah.people.com.cn/n2/2020/0127/c358428-33746384.html","","","","","","","Anqing City","Anhui","China",""
"478","57","male","Anqing","Anhui","China","1","30.5319","117.1151","point","","","25.01.2020","","","22.01.2020","Wuhan","","","","","http://ah.people.com.cn/n2/2020/0127/c358428-33746384.html","","","","","","","Anqing City","Anhui","China",""
"878","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Anqing City","Anhui","China",""
"879","43","male","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","22.01.2020","22.01.2020","25.01.2020","fever","yes","20.01.2020","Wuhan","","work in a food market in Wuhan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"880","48","female","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","19.01.2020","23.01.2020","25.01.2020","fever","yes","20.01.2020","Wuhan","","work in a food market in Wuhan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"881","54","female","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","18.01.2020","22.01.2020","25.01.2020","fever","yes","16.01.2020","Wuhan","","work in a food market in Wuhan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"882","47","male","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","22.01.2020","23.01.2020","25.01.2020","fever","yes","18.01.2020","Wuhan","","","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"883","55","male","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","18.01.2020","24.01.2020","26.01.2020","fever","no","09.01.2020","Wuhan","","a business trip to Wuhan started from 30.11.2019, 09.01.2020 returned to Ma'anshan from Wuhan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"884","47","female","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","22.01.2020","24.01.2020","26.01.2020","fever, cough","yes","16.01.2020","Wuhan","","work in a restaurant near a railway station in Wuhan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"885","46","female","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","19.01.2020","22.01.2020","26.01.2020","fever","yes","16.01.2020 - 21.01.2020","Wuhan","","16.01.2020 from Wuhan to Taizhou in Jiangsu province, 21.01.2020 from Taizhou in Jiangsu province to Ma'anshan","","","https://www.weibo.com/u/2854308032?is_all=1#_rnd1580172104840","","","","","","","Ma'anshan City","Anhui","China",""
"886","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Tongling City","Anhui","China",""
"887","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Tongling City","Anhui","China",""
"888","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Tongling City","Anhui","China",""
"889","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Lu'an City","Anhui","China",""
"890","N/A","N/A","Xuancheng","Anhui","China","1","30.942957","118.754136","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Xuancheng city","Anhui","China",""
"891","N/A","N/A","Chuzhou","Anhui","China","1","32.251518","118.333664","point","","","24.01.2020","","yes","20.01.2020","Wuhan","","student in a university in Wuhan","","","http://wjw.chuzhou.gov.cn/5341652/170751873.html","","","","","","","Chuzhou City","Anhui","China",""
"892","N/A","N/A","Chuzhou","Anhui","China","1","32.251518","118.333664","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Chuzhou City","Anhui","China",""
"893","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Wuhu City","Anhui","China",""
"894","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Wuhu City","Anhui","China",""
"895","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Wuhu City","Anhui","China",""
"896","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Suzhou City","Anhui","China",""
"897","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Suzhou City","Anhui","China",""
"898","NA","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","26.01.2020","","no","19.01.2020","Tonglu County","","left Tonglu County in Zhejiang Province and arrived in Huangshan by high-speed train","","","https://new.qq.com/omn/TWF20191/20200126A07DZF00","","","","","","","Huangshan City","Anhui","China",""
"1292","44","female","Bengbu","Anhui","China","1","32.9163","117.3897","point","24.01.2020","24.01.2020","27.01.2020","fever","yes","19.01.2020","Wuhan","","arrived in Bengbu from Wuhan","","","http://wjw.bengbu.gov.cn/gzdt/article.jsp?articleId=3449287594","","","","","","","Bengbu City","Anhui","China",""
"1293","53","male","Bengbu","Anhui","China","1","32.9163","117.3897","point","14.01.2020","19.01.2020","27.01.2020","fever","live in Hangzhou","19.01.2020","Hangzhou","","drove from Hangzhou to Bengbu","","","http://wjw.bengbu.gov.cn/gzdt/article.jsp?articleId=3449287594","","","","","","","Bengbu City","Anhui","China",""
"1294","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1295","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1296","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1297","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1298","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1299","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1300","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1301","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Anhui","China",""
"1507","28","male","Huainan","Anhui","China","1","32.623046","117.011522","point","22.01.2020","25.01.2020","26.01.2020","dry cough","yes","19.01.2020","Wuhan","","arrived in Huainan from Wuhan; student in a university in Wuhan","","","https://baijiahao.baidu.com/s?id=1656845876146001402&wfr=spider&for=pc","","","","","","","Huainan City","Anhui","China",""
"1572","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1573","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1574","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1575","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1576","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1577","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1578","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1579","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1580","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1581","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1582","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Fuyang","Anhui","China",""
"1583","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1584","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1585","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1586","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1587","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1588","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","Tongling","Anhui","China",""
"1589","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1590","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1591","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1592","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1593","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1594","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1595","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1596","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1597","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1598","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1599","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1600","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1601","N/A","N/A","Chuzhou","Anhui","China","1","32.251518","118.333664","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1602","N/A","N/A","Chuzhou","Anhui","China","1","32.251518","118.333664","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1603","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1605","N/A","N/A","Huaibei","Anhui","China","1","33.944142","116.79075","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1606","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"1607","N/A","N/A","Xuancheng","Anhui","China","1","30.942957","118.754136","point","","","27.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54089.html","","","","","","","","","",""
"2023","22","male","Hefei","Anhui","China","1","31.828313","117.224844","point","22.01.2020","23.01.2020","28.01.2020","","no","19.01.2020","Wuhan","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2024","22","male","Hefei","Anhui","China","1","31.828313","117.224844","point","24.01.2020","25.01.2020","28.01.2020","","no","","","","met with classmates on 21.01.2020","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2025","22","female","Hefei","Anhui","China","1","31.828313","117.224844","point","25.01.2020","27.01.2020","28.01.2020","","no","06.01.2020","Wuzhou","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2026","22","male","Hefei","Anhui","China","1","31.828313","117.224844","point","24.01.2020","25.01.2020","28.01.2020","","no","","","","met with classmates 0n 21.01.2020","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2027","24","male","Hefei","Anhui","China","1","31.828313","117.224844","point","22.01.2020","25.01.2020","28.01.2020","","no","","","","met with classmates 0n 21.01.2021","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2028","22","male","Hefei","Anhui","China","1","31.828313","117.224844","point","24.01.2020","25.01.2020","28.01.2020","","no","","","","met with classmates 0n 21.01.2022","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2029","30","male","Hefei","Anhui","China","1","31.828313","117.224844","point","22.01.2020","26.01.2020","28.01.2020","","yes","23.01.2020","Wuhan","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2030","30","female","Hefei","Anhui","China","1","31.828313","117.224844","point","23.01.2020","26.01.2020","28.01.2020","","yes","23.01.2020","Wuhan","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2031","64","female","Hefei","Anhui","China","1","31.828313","117.224844","point","23.01.2020","26.01.2020","28.01.2020","","yes","20.01.2020","Wuhan","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2032","52","female","Hefei","Anhui","China","1","31.828313","117.224844","point","24.01.2020","26.01.2020","28.01.2020","","yes","24.01.2020","Wuhan","","","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2033","45","female","Hefei","Anhui","China","1","31.828313","117.224844","point","23.01.2020","26.01.2020","28.01.2020","","yes","22.01.2020","Wuhan","","From Wuhan, temporarily in Hefei","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2034","40","male","Hefei","Anhui","China","1","31.828313","117.224844","point","21.01.2020","26.01.2020","28.01.2020","","no","10.01.2020","Shanghai","","Worked in Shanghai before coming back to Hefei","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2035","52","female","Hefei","Anhui","China","1","31.828313","117.224844","point","20.01.2020","22.01.2020","28.01.2020","","no","","","","has a clothing business; no history of travel","","","http://news.sina.com.cn/o/2020-01-29/doc-iihnzhha5236915.shtml; http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2036","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2037","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2038","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2039","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2040","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2041","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2042","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2043","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2044","N/A","N/A","Bozhou","Anhui","China","1","33.853974","115.784566","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2045","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2046","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2047","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2048","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2049","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2050","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2051","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2052","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2053","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2054","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2055","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2056","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2057","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2058","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2059","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2060","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2061","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2062","N/A","N/A","Huangshan","Anhui","China","1","29.694449","118.315074","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2063","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2064","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2065","N/A","N/A","Susong","Anhui","China","1","30.320556","116.128889","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2066","N/A","N/A","Susong","Anhui","China","1","30.320556","116.128889","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2067","N/A","N/A","Susong","Anhui","China","1","30.320556","116.128889","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2068","N/A","N/A","Susong","Anhui","China","1","30.320556","116.128889","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2912","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2913","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2914","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2915","N/A","N/A","Anqing","Anhui","China","1","30.5319","117.1151","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2916","N/A","N/A","Bengbu","Anhui","China","1","32.9163","117.3897","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2917","N/A","N/A","Bengbu","Anhui","China","1","32.9163","117.3897","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2918","N/A","N/A","Bengbu","Anhui","China","1","32.9163","117.3897","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2919","N/A","N/A","Bengbu","Anhui","China","1","32.9163","117.3897","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2920","N/A","N/A","Bengbu","Anhui","China","1","32.9163","117.3897","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2921","N/A","N/A","Chizhou","Anhui","China","1","30.656","117.4892","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2922","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2923","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2924","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2925","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2926","N/A","N/A","Fuyang","Anhui","China","1","32.8905","115.8145","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2927","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2928","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2929","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2930","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2931","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2932","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2933","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2934","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2935","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2936","N/A","N/A","Hefei","Anhui","China","1","31.828313","117.224844","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2937","N/A","N/A","Huainan","Anhui","China","1","32.623046","117.011522","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2938","N/A","N/A","Huainan","Anhui","China","1","32.623046","117.011522","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2939","N/A","N/A","Huainan","Anhui","China","1","32.623046","117.011522","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2940","N/A","N/A","Huainan","Anhui","China","1","32.623046","117.011522","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2941","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2942","N/A","N/A","Lu'an","Anhui","China","1","31.7345","116.5214","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2943","N/A","N/A","Luzhou City","Anhui","China","1","28.871","105.442","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2944","N/A","N/A","Luzhou City","Anhui","China","1","28.871","105.442","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2945","N/A","N/A","Luzhou City","Anhui","China","1","28.871","105.442","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2946","N/A","N/A","Luzhou City","Anhui","China","1","28.871","105.442","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2947","N/A","N/A","Luzhou City","Anhui","China","1","28.871","105.442","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2948","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2949","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2950","N/A","N/A","Ma'anshan","Anhui","China","1","31.658693","118.493716","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2951","N/A","N/A","Susong","Anhui","China","1","31.833333","117","admin","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2952","N/A","N/A","Susong","Anhui","China","1","31.833333","117","admin","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2953","N/A","N/A","Suzhou","Anhui","China","1","33.645231","116.968248","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2954","N/A","N/A","Tongling","Anhui","China","1","30.94519","117.818238","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2955","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2956","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2957","N/A","N/A","Wuhu","Anhui","China","1","31.347972","118.432605","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2958","N/A","N/A","Xuancheng","Anhui","China","1","30.942957","118.754136","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"2959","N/A","N/A","Xuancheng","Anhui","China","1","30.942957","118.754136","point","","","29.01.2020","","","","","","","","","http://wjw.ah.gov.cn/news_details_54186.html","","","","","","","","","",""
"1062","N/A","N/A","Tempe, Maricopa County","Arizona","United States","1","33.412778","-111.943056","point ","","","26.01.2020","","no","","Wuhan","","Arizona State University community member; recently returned from Wuhan","","","https://azdhs.gov/director/public-information-office/index.php#news-release-012620","","","","","Tempe","","Maricopa County","Arizona","United States",""
"1481","33","male","Starnberg ","Bavaria","Germany","1","47.997222","11.340556","point","","","27.01.2020","","no","","","","Infection acquired locally from colleague from Shanghai attending a conference","","","https://www.sueddeutsche.de/bayern/corona-virus-deutschland-starnberg-1.4774589","","","","","Starnberg ","","","Bavaria","Germany",""
"1877","","male","Starnberg ","Bavaria","Germany","1","47.997222","11.340556","point","","","28.01.2020","","","","","","","","","https://www.merkur.de/lokales/starnberg/coronavirus-bayern-deutschland-webasto-china-was-ist-starnberg-symptome-zr-13502511.html","","","","","","","","","",""
"1878","","male","Starnberg ","Bavaria","Germany","1","47.997222","11.340556","point","","","28.01.2020","","","","","","","","","https://www.merkur.de/lokales/starnberg/coronavirus-bayern-deutschland-webasto-china-was-ist-starnberg-symptome-zr-13502511.html","","","","","","","","","",""
"1879","","female","Starnberg ","Bavaria","Germany","1","47.997222","11.340556","point","","","28.01.2020","","","","","","","","","https://www.merkur.de/lokales/starnberg/coronavirus-bayern-deutschland-webasto-china-was-ist-starnberg-symptome-zr-13502511.html","","","","","","","","","",""
"16","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","","","","","","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Changping District","","Beijing","China",""
"17","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","","","","","","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Changping District","","Beijing","China",""
"18","33","female","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","20.01.2020","22.01.2020","fever","yes","18.01.2020","Wuhan","","arrived in Beijing","","","","","","","","","Chaoyang District","","Beijing","China",""
"19","","female","Daxing district","Beijing","China","1","39.655219","116.403978","point","08.01.2020","08.01.2020","","fever, headache, fatigue","no","08.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml and https://m.weibo.cn/status/4464259805726673?","","","","","","Daxing District","","Beijing","China",""
"20","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","","","","","","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Daxing District","","Beijing","China",""
"21","37","male","Fengtai district","Beijing","China","1","39.857588","116.281814","point","14.01.2020","20.01.2020","21.01.2020","fever","business trip","11.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Fengtai District","","Beijing","China",""
"22","39","male","Haidian district","Beijing","China","1","39.963092","116.287611","point","09.01.2020","14.01.2020","21.01.2020","fever","business trip","03.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Haidian District","","Beijing","China",""
"23","32","female","Haidian district","Beijing","China","1","39.963092","116.287611","point","17.01.2020","20.01.2020","21.01.2020","respiratory symptoms","travel","13.01.2020 - 17.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Haidian District","","Beijing","China",""
"24","45","male","Shijingshan district","Beijing","China","1","39.90916","116.220779","point","19.01.2020","21.01.2020","22.01.2020","fever","no","11.01.2020 - 14.01.2020","Wuhan","","","","","","","","","","","Shijingshan District","","Beijing","China",""
"25","45","male","Shijingshan district","Beijing","China","1","39.90916","116.220779","point","19.01.2020","21.01.2020","23.01.2020","fever","no","11.01.2020 - 14.01.2020","Wuhan","","","","","","","","","","","Shijingshan District","","Beijing","China",""
"26","18","female","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","19.01.2020","20.01.2020","21.01.2020","fever, respiratory symptoms","study trip","12.01.2020 - 17.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Tonghzou District","","Beijing","China",""
"27","56","female","Xicheng district","Beijing","China","1","39.911584","116.364862","point","16.01.2020","20.01.2020","21.01.2020","fever, respiratory symptoms","business trip","08.01.2020","Wuhan","","","","","http://news.xmnn.cn/xmnn/2020/01/22/100656796.shtml","","","","","","Xicheng District","","Beijing","China",""
"28","42","male","Xicheng district","Beijing","China","1","39.911584","116.364862","point","20.01.2020","20.01.2020","22.01.2020","fever","no","11.01.2020 - 18.01.2020","Wuhan","","11 & 18.01.2020 visit Wuhan, 19.01.2020 back to Beijing","","","","","","","","","Xicheng District","","Beijing","China",""
"29","33","female","","Beijing","China","1","39.91011","116.369975","admin","","20.01.2020","22.01.2020","fever","yes","","Wuhan","","","","","","","","","","","","","Beijing","China",""
"30","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"31","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"32","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"33","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"34","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"35","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"36","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"37","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"38","44","male","","Beijing","China","1","39.91011","116.369975","admin","18.01.2020","22.01.2020","23.01.2020","","","","Hubei","","","","","https://3g.163.com/news/article/F3KGVT9A0001899O.html","","","","","","","","Beijing","China",""
"39","65","male","","Beijing","China","1","39.91011","116.369975","admin","22.01.2020","22.01.2020","23.01.2020","","","","Hubei","","","","","https://3g.163.com/news/article/F3KGVT9A0001899O.html","","","","","","","","Beijing","China",""
"40","21","male","","Beijing","China","1","39.91011","116.369975","admin","19.01.2020","19.01.2020","23.01.2020","","","","Hubei","","","","","https://3g.163.com/news/article/F3KGVT9A0001899O.html","","","","","","","","Beijing","China",""
"41","41","male","","Beijing","China","1","39.91011","116.369975","admin","20.01.2020","21.01.2020","23.01.2020","","","","Hubei","","","","","https://3g.163.com/news/article/F3KGVT9A0001899O.html","","","","","","","","Beijing","China",""
"42","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"43","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"44","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"45","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"46","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"47","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","","","","","","","","","","","","","","","","Haidian District","","Beijing","China",""
"48","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","","","","","","","","","","","","","","","","Chaoyang District","","Beijing","China",""
"49","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","","","","","","","","","","","","","","","","Chaoyang District","","Beijing","China",""
"50","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","","","","","","","","","","","","","","","","Chaoyang District","","Beijing","China",""
"51","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","","","","","","","","","","","","","","","","Chaoyang District","","Beijing","China",""
"479","36-45","male","","Beijing","China","1","39.91011","116.369975","admin","10.01.2020 - 22.01.2020","18.01.2020 - 23.01.2020","25.01.2020","","","","","","Three of them had contact history in Hubei and two had contact history in other provinces. This is the first time that Beijing has reported a confirmed patient with no contact history in Hubei.","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"480","36-45","male","","Beijing","China","1","39.91011","116.369975","admin","10.01.2020 - 22.01.2020","18.01.2020 - 23.01.2020","25.01.2020","","","","","","Three of them had contact history in Hubei and two had contact history in other provinces. This is the first time that Beijing has reported a confirmed patient with no contact history in Hubei.","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"481","36-45","male","","Beijing","China","1","39.91011","116.369975","admin","10.01.2020 - 22.01.2020","18.01.2020 - 23.01.2020","25.01.2020","","","","","","Three of them had contact history in Hubei and two had contact history in other provinces. This is the first time that Beijing has reported a confirmed patient with no contact history in Hubei.","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"482","36-45","female","","Beijing","China","1","39.91011","116.369975","admin","10.01.2020 - 22.01.2020","18.01.2020 - 23.01.2020","25.01.2020","","","","","","Three of them had contact history in Hubei and two had contact history in other provinces. This is the first time that Beijing has reported a confirmed patient with no contact history in Hubei.","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"483","36-45","female","","Beijing","China","1","39.91011","116.369975","admin","10.01.2020 - 22.01.2020","18.01.2020 - 23.01.2020","25.01.2020","","","","","","Three of them had contact history in Hubei and two had contact history in other provinces. This is the first time that Beijing has reported a confirmed patient with no contact history in Hubei.","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"851","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"852","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"853","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"854","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"855","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"856","","","Chaoyang district","Beijing","China","1","39.962601","116.519518","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chaoyang District","","Beijing","China",""
"857","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Xicheng District","","Beijing","China",""
"858","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Xicheng District","","Beijing","China",""
"859","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Xicheng District","","Beijing","China",""
"860","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changping District","","Beijing","China",""
"861","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changping District","","Beijing","China",""
"862","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changping District","","Beijing","China",""
"863","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changping District","","Beijing","China",""
"864","","","Changping district","Beijing","China","1","40.219447","116.212228","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changping District","","Beijing","China",""
"865","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Daxing District","","Beijing","China",""
"866","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengtai District","","Beijing","China",""
"867","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengtai District","","Beijing","China",""
"868","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengtai District","","Beijing","China",""
"869","","","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongzhou District","","Beijing","China",""
"870","","","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongzhou District","","Beijing","China",""
"871","","","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongzhou District","","Beijing","China",""
"872","","","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongzhou District","","Beijing","China",""
"873","","","Tongzhou district","Beijing","China","1","39.801259","116.730002","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongzhou District","","Beijing","China",""
"874","","","Shunyi district","Beijing","China","1","40.126078","116.662304","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Shunyi District","","Beijing","China",""
"875","","","Dongcheng district","Beijing","China","1","39.916836","116.41682","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dongcheng District","","Beijing","China",""
"876","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"877","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"1288","","","Shunyi district","Beijing","China","1","40.126078","116.662304","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"1289","","","","Beijing","China","1","39.91011","116.369975","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"1290","","","","Beijing","China","1","39.91011","116.369975","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"1291","","","","Beijing","China","1","39.91011","116.369975","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Beijing","China",""
"1473","","","Dongcheng District","Beijing","China","1","39.923056","116.411111","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Dongcheng District","","Beijing","China",""
"1474","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1475","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1476","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1477","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1478","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1479","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Chaoyang District","","Beijing","China",""
"1480","","","Tongzhou District","Beijing","China","1","39.801259","116.730002","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465486110924457","","","","","","Tongzhou District","","Beijing","China",""
"1921","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1922","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1923","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1924","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1925","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1926","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1927","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1928","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1929","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1930","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"1931","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","28.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2069","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2070","","","Haidian district","Beijing","China","1","39.963092","116.287611","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2071","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2072","","","Chaoyang District","Beijing","China","1","39.962601","116.519518","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2073","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2074","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2075","","","Daxing district","Beijing","China","1","39.655219","116.403978","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2076","","","Xicheng district","Beijing","China","1","39.911584","116.364862","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2077","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2078","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2079","","","Fengtai district","Beijing","China","1","39.857588","116.281814","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"3006","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","Beijing","China",""
"3007","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3008","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3009","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3010","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3011","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3012","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3013","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3014","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3015","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3016","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"3017","","","","Beijing","China","1","39.91011","116.37","admin","","","29.01.2020","","","","","","","","","http://wjw.beijing.gov.cn/wjwh/ztzl/xxgzbd/gzbdyqtb/202001/t20200130_1621748.html","","","","","","","","","",""
"2466","40s","male","Vancouver","British Columbia","Canada","1","49.25","-123.1","point","26.01.2020","26.01.2020","29.01.2020","","","20.01.2020 - 26.01.2020","Wuhan","","","","","https://news.gov.bc.ca/releases/2020HLTH0015-000151","","","","","","","","","",""
"673","50","male","Orange County","California","United States","1","33.67","-117.78","point","","","26.01.2020","","","","Wuhan","","","","","https://www.cnbc.com/2020/01/26/third-us-case-of-coronavirus-confirmed-in-california-health-officials-say.html","","","","https://laist.com/2020/01/26/coronavirus-orange-county-first-case-confirmed.php","","","Orange County","California","United States",""
"1061","","","Los Angeles","California","United States","1","34.05","-118.25","point ","22.01.2020","22.01.2020","26.01.2020","","yes","","Wuhan","","From Wuhan, went through LAX to a vacation (possibly Mexico - not confirmed). Went through LAX to return to China. Presented themselves at LAX as having smptoms. Transported to an LA hospital. Still there as os 26.01.2020","","","https://www.latimes.com/california/story/2020-01-25/los-angeles-area-prepared-for-coronavirus","","","","Most details from listening to LA County Public Health Dept Press Conference live","Los Angeles","","","California","United States",""
"1446","","","","China","China","1","44","113","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Inner Mongolia","China",""
"52","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","","","","","","","","","","https://m.weibo.cn/status/4463874360972840?","","","","","","Changshou District","","Chongqing","China",""
"53","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","21.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200121/249730.html","","","","","","Changshou District","","Chongqing","China",""
"54","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","21.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200121/249730.html","","","","","","Wanzhou District","","Chongqing","China",""
"55","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","21.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200121/249730.html","","","","","","Wanzhou District","","Chongqing","China",""
"56","44","female","Wushan County","Chongqing","China","1","31.0769","109.878216","point","15.01.2020","15.01.2020","21.01.2020","fever, fatigue","","15.01.2020","Wuhan","","","","","http://wsjkw.cq.gov.cn/tzgg/20200121/249730.html","","","","","","Wushan County","","Chongqing","China",""
"57","","","Wushan County","Chongqing","China","1","31.0769","109.878216","point","","","21.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200121/249730.html","","","","","","Wushan County","","Chongqing","China",""
"58","","","Fuling District","Chongqing","China","1","29.7031","107.3893","point","","","22.01.2020","","","","","","","","","https://m.weibo.cn/status/4463874360972840?","","","","","","Fuling District","","Chongqing","China",""
"59","","","Yongchuan District","Chongqing","China","1","29.3561","105.9274","point","","","22.01.2020","","","","","","","","","https://m.weibo.cn/status/4463874360972840?","","","","","","Yongchuan District","","Chongqing","China",""
"60","","","Yongchuan District","Chongqing","China","1","29.3561","105.9274","point","","","24.01.2020","","","","","","","","","https://m.weibo.cn/status/4463874360972840?","","","","","","Yongchuan District","","Chongqing","China",""
"61","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Dadukou District","","Chongqing","China",""
"62","","","Jiulongpo District","Chongqing","China","1","29.517297","106.50228","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Jiulongpo District","","Chongqing","China",""
"63","","","Yubei District","Chongqing","China","1","29.710035","106.634082","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Yubei District","","Chongqing","China",""
"64","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Kaizhou District","","Chongqing","China",""
"65","","","Zhongxian County","Chongqing","China","1","30.297313","108.035562","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Zhongxian County","","Chongqing","China",""
"66","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Yunyang County","","Chongqing","China",""
"67","","","Fengjie County","Chongqing","China","1","31.013937","109.463515","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Fengjie County","","Chongqing","China",""
"68","","","Wuxi County","Chongqing","China","1","31.395703","109.569409","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Wuxi County","","Chongqing","China",""
"69","","","Xiushan County","Chongqing","China","1","28.443715","109.006793","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Xiushan County","","Chongqing","China",""
"70","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","TBD","","Chongqing","China","Liangjiang New District"
"71","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Wanzhou District","","Chongqing","China",""
"72","","","Jiulongpo District","Chongqing","China","1","29.517297","106.50228","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Jiulongpo District","","Chongqing","China",""
"73","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Kaizhou District","","Chongqing","China",""
"74","","","Dianjiang County","Chongqing","China","1","30.323768","107.333062","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Dianjiang County","","Chongqing","China",""
"75","","","Yubei District","Chongqing","China","1","29.710035","106.634082","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Yubei District","","Chongqing","China",""
"76","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Changshou District","","Chongqing","China",""
"77","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Changshou District","","Chongqing","China",""
"78","","","Yongchuan District","Chongqing","China","1","29.3561","105.9274","point","","","24.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/24/678805.html","","","","","","Yongchuan District","","Chongqing","China",""
"406","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"407","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"408","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"409","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"410","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"411","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"412","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"413","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"414","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"415","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanzhou District","","Chongqing","China",""
"416","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Changshou District","","Chongqing","China",""
"417","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Kaizhou District","","Chongqing","China",""
"418","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Kaizhou District","","Chongqing","China",""
"419","","","Wushan County","Chongqing","China","1","31.0769","109.878216","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wushan County","","Chongqing","China",""
"420","","","Jiulongpo District","Chongqing","China","1","29.517297","106.50228","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Jiulongpo District","","Chongqing","China",""
"421","","","Zhongxian County","Chongqing","China","1","30.297313","108.035562","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Zhongxian County","","Chongqing","China",""
"422","","","Zhongxian County","Chongqing","China","1","30.297313","108.035562","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Zhongxian County","","Chongqing","China",""
"423","","","Zhongxian County","Chongqing","China","1","30.297313","108.035562","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Zhongxian County","","Chongqing","China",""
"424","","","Zhongxian County","Chongqing","China","1","30.297313","108.035562","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Zhongxian County","","Chongqing","China",""
"425","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","TBD","","Chongqing","China","Liangjiang New District"
"426","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","TBD","","Chongqing","China","Liangjiang New District"
"427","","","Shizhu County","Chongqing","China","1","30.131126","108.282012","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Shizhu County","","Chongqing","China",""
"428","","","Shizhu County","Chongqing","China","1","30.131126","108.282012","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Shizhu County","","Chongqing","China",""
"429","","","Shizhu County","Chongqing","China","1","30.131126","108.282012","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Shizhu County","","Chongqing","China",""
"430","","","Dianjiang County","Chongqing","China","1","30.323768","107.333062","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dianjiang County","","Chongqing","China",""
"431","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dadukou District","","Chongqing","China",""
"432","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dadukou District","","Chongqing","China",""
"433","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dadukou District","","Chongqing","China",""
"434","","","Yubei District","Chongqing","China","1","29.710035","106.634082","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Yubei District","","Chongqing","China",""
"435","","","Yubei District","Chongqing","China","1","29.710035","106.634082","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Yubei District","","Chongqing","China",""
"807","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Yunyang County","","Chongqing","China",""
"808","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Yunyang County","","Chongqing","China",""
"809","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Yunyang County","","Chongqing","China",""
"810","","","Wuxi County","Chongqing","China","1","31.395703","109.569409","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wuxi County","","Chongqing","China",""
"811","","","Wuxi County","Chongqing","China","1","31.395703","109.569409","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wuxi County","","Chongqing","China",""
"812","","","Hechuan District","Chongqing","China","1","30.099672","106.292279","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Hechuan District","","Chongqing","China",""
"813","","","Hechuan District","Chongqing","China","1","30.099672","106.292279","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Hechuan District","","Chongqing","China",""
"814","","","Bishan District","Chongqing","China","1","29.615014","106.186145","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Bishan District","","Chongqing","China",""
"815","","","Bishan District","Chongqing","China","1","29.615014","106.186145","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Bishan District","","Chongqing","China",""
"816","","","Fengjie County","Chongqing","China","1","31.013937","109.463515","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengjie County","","Chongqing","China",""
"817","","","Fengjie County","Chongqing","China","1","31.013937","109.463515","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengjie County","","Chongqing","China",""
"818","","","Liangping District","Chongqing","China","1","30.696578","107.749967","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Liangping District","","Chongqing","China",""
"819","","","Chengkou County","Chongqing","China","1","31.897163","108.659914","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chengkou County","","Chongqing","China",""
"820","","","Fengdu County","Chongqing","China","1","29.880033","107.766799","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Fengdu County","","Chongqing","China",""
"821","","","Jiangbei District","Chongqing","China","1","29.615908","106.587522","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Jiangbei District","","Chongqing","China",""
"822","","","Jiangbei District","Chongqing","China","1","29.615908","106.587522","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Jiangbei District","","Chongqing","China",""
"823","","","Dazu District","Chongqing","China","1","29.693266","105.677523","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Dazu District","","Chongqing","China",""
"824","","","Tongliang District","Chongqing","China","1","29.842056","106.040454","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Tongliang District","","Chongqing","China",""
"1193","","","Banan District","Chongqing","China","1","29.25765","106.693725","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1194","","","Changshou District","Chongqing","China","1","29.858","107.0813","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1195","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1196","","","Dadukou District","Chongqing","China","1","29.427781","106.472803","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1197","","","Dianjiang County","Chongqing","China","1","30.321126","107.333174","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1198","","","Dianjiang County","Chongqing","China","1","30.321126","107.333174","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1199","","","Fengdu County","Chongqing","China","1","29.880033","107.766799","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1200","","","Fengdu County","Chongqing","China","1","29.880033","107.766799","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1201","","","Hechuan District","Chongqing","China","1","30.099672","106.292279","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1202","","","Jiangbei District","Chongqing","China","1","29.615908","106.587522","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1203","","","Jiangjin District","Chongqing","China","1","29.290555","106.25416","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1204","","","Jiangjin District","Chongqing","China","1","29.290555","106.25416","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1205","","","Jiulongpo District","Chongqing","China","1","29.517297","106.50228","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1206","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1207","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1208","","","Kaizhou District","Chongqing","China","1","31.258944","108.382211","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1209","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1210","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1211","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1212","","","Liangjiang New District","Chongqing","China","1","29.6426","106.567","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1213","","","Luan District","Chongqing","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1214","","","Luan District","Chongqing","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1215","","","Minjiang District","Chongqing","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1216","","","Minshan District","Chongqing","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1217","","","Wanzhou District","Chongqing","China","1","30.8077","108.4087","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1218","","","Wushan County","Chongqing","China","1","31.0769","109.878216","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1219","","","Wushan County","Chongqing","China","1","31.0769","109.878216","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1220","","","Wuxi County","Chongqing","China","1","31.395703","109.569409","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1221","","","Wuxi County","Chongqing","China","1","31.395703","109.569409","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1222","","","Yubei District","Chongqing","China","1","29.710035","106.634082","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1223","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1224","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1225","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1226","","","Yunyang County","Chongqing","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1227","","","Zhong County","Chongqing","China","1","30.2999","108.0375","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","http://wsjkw.cq.gov.cn/tzgg/20200127/249875.html","","","","Chongqing","China",""
"1608","","","Changshou District","Chongqing ","China","1","29.858","107.0813","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1609","","","Dianjiang County","Chongqing ","China","1","30.31936467","107.3332487","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1610","","","Hechuan District","Chongqing ","China","1","30.099672","106.292279","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1611","","","Jiangbei District","Chongqing ","China","1","29.615908","106.587522","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1612","","","Jiulongpo District","Chongqing ","China","1","29.517297","106.50228","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1613","","","Kaizhou District","Chongqing ","China","1","31.258944","108.382211","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1614","","","Kaizhou District","Chongqing ","China","1","31.258944","108.382211","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1615","","","Liangjiang New District","Chongqing ","China","1","29.6426","106.567","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1616","","","Nan'an District","Chongqing ","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1617","","","Qianjiang District","Chongqing ","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1618","","","Qijiang District","Chongqing ","China","1","29.558333","106.566667","admin","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1619","","","Shizhu County","Chongqing ","China","1","30.131126","108.282012","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1620","","","Shizhu County","Chongqing ","China","1","30.131126","108.282012","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1621","","","Shizhu County","Chongqing ","China","1","30.131126","108.282012","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1622","","","Tongliang District","Chongqing ","China","1","29.842056","106.040454","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1623","","","Wanzhou District","Chongqing ","China","1","30.8077","108.4087","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1624","","","Yubei District","Chongqing ","China","1","29.710035","106.634082","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1625","","","Yunyang County","Chongqing ","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1626","","","Yunyang County","Chongqing ","China","1","30.929255","108.704585","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1627","","","Zhongxian County","Chongqing ","China","1","30.297313","108.035562","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1628","","","Zhongxian County","Chongqing ","China","1","30.297313","108.035562","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"1629","","","Zhongxian County","Chongqing ","China","1","30.297313","108.035562","point","","","27.01.2020","","","","","","","","","http://wsjkw.cq.gov.cn/tzgg/20200128/250247.html","","","","","","","","","",""
"2080","","","Wanzhou District","Chongqing ","China","1","30.8077","108.4087","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2081","","","Wanzhou District","Chongqing ","China","1","30.8077","108.4087","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2082","","","Kaizhou District","Chongqing ","China","1","31.258944","108.382211","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2083","","","Kaizhou District","Chongqing ","China","1","31.258944","108.382211","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2084","","","Zhong County","Chongqing ","China","1","30.2999","108.0375","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2085","","","Zhong County","Chongqing ","China","1","30.2999","108.0375","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2086","","","Yunyang County","Chongqing ","China","1","30.929255","108.704585","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2087","","","Shizhu County","Chongqing ","China","1","30.131126","108.282012","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2088","","","Jiangbei District","Chongqing ","China","1","29.615908","106.587522","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2089","","","Hechuan District","Chongqing ","China","1","30.099672","106.292279","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2090","","","Qijiang District","Chongqing ","China","1","29.558333","106.566667","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2091","","","Qijiang District","Chongqing ","China","1","29.558333","106.566667","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2092","","","Qijiang District","Chongqing ","China","1","29.558333","106.566667","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2093","","","Bishan District","Chongqing ","China","1","29.615014","106.186145","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2094","","","Bishan District","Chongqing ","China","1","29.615014","106.186145","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"79","30","female","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","23.01.2020","","yes","","Wuhan","","work in Wuhan","","","","","","","","","","Fuzhou City","Fujian","China",""
"80","70","male","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","20.01.2020","22.01.2020","","yes","","","","","","","http://wjw.fujian.gov.cn/xxgk/gzdt/wsjsyw/202001/t20200122_5186055.htm; https://xw.qq.com/cmsid/20200123A08KDU00","","","","","","","Fuzhou City","Fujian","China",""
"81","43","female","Ningde","Fujian","China","1","26.6656","119.5479","point","21.01.2020","21.01.2020","23.01.2020","","N/A","21.01.2020","Wuhan","N/A","doing business in Wuhan; Xiapu County Hospital ","","N/A","https://xw.qq.com/cmsid/20200123A08KDU00","","","","","","Xiapu County","Ningde City","Fujian","China",""
"82","N/A","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","23.01.2020","","","","","","","","","https://xw.qq.com/cmsid/20200123A08KDU01","","","","","","Shishi County","Quanzhou City","Fujian","China",""
"83","31","male","Xiamen","Fujian","China","1","24.4798","118.0894","point","N/A","21.01.2020","23.01.2020","","N/A","11.01.2020","Wuhan","N/A","Engaged in the clothing trade; admitted to a hospital in Xiamen","","N/A","https://xw.qq.com/cmsid/20200123A08KDU02","","","","","","","Xiamen City","Fujian","China",""
"84","N/A","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","24.01.2020","","return from Wuhan","","","","","","","http://www.nbd.com.cn/articles/2020-01-24/1402676.html","","","","","","","Fuzhou City","Fujian","China",""
"85","N/A","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","24.01.2020","","return from Wuhan","","","","","","","https://m.weibo.cn/status/4464277568378388?","","","","","","","Fuzhou City","Fujian","China",""
"86","N/A","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","24.01.2020","","return from Wuhan","","","","","","","https://m.weibo.cn/status/4464277568378388?","","","","","","","Fuzhou City","Fujian","China",""
"87","N/A","","Xiamen","Fujian","China","1","24.4798","118.0894","point","","","24.01.2020","","return from Wuhan","","","","","","","https://m.weibo.cn/status/4464277568378388?","","","","","","","Xiamen City","Fujian","China",""
"88","N/A","","Xiamen","Fujian","China","1","24.4798","118.0894","point","","","24.01.2020","","return from Wuhan","","","","","","","https://m.weibo.cn/status/4464277568378388?","","","","","","","Xiamen City","Fujian","China",""
"565","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"566","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"567","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"568","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"569","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"570","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"571","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"572","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"972","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"973","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"974","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"975","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"976","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"977","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"978","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"979","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"980","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"981","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"982","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"983","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"984","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"985","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"986","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"987","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"988","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1327","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1328","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1329","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1330","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1331","","","Quanzhou","Fujian","China","1","24.8741","118.6757","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1332","","","Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1333","","","Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1334","","","Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1335","","","Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1336","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1337","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1338","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1339","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1340","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1341","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1342","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1343","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1344","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1345","","","Xiamen","Fujian","China","1","24.4798","118.0894","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1346","","","Nanping","Fujian","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1347","","","Nanping","Fujian","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Fujian","China",""
"1470","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","27.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/_bvLKwgVAxWLChb-dciN0w","","","","","","","Fuzhou City","Fujian","China",""
"1471","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","27.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/_bvLKwgVAxWLChb-dciN0w","","","","","","","Zhangzhou City","Fujian","China",""
"1472","","","Putian City","Fujian","China","1","25.433333","119.016667","point","","","27.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/_bvLKwgVAxWLChb-dciN0w","","","","","","","Putian City","Fujian","China",""
"1848","","","Xiamen ","Fujian","China","1","24.4798","118.0894","point","","","27.01.2020","","yes","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1849","","","Fengze District, Quanzhou","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1850","","","Licheng District, Quanzhou","Fujian","China","1","24.887778","118.565833","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1851","","","Nan'an City, Quanzhou","Fujian","China","1","24.966667","118.383333","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1852","","","Sha County, Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1853","","","Sha County, Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1854","","","Ninghua County, Sanming City","Fujian","China","1","26.262","116.654","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1855","","","Yongan City, Sanming City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1856","","","Licheng District, Putian City","Fujian","China","1","25.431667","119.015833","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1857","","","Licheng District, Putian City","Fujian","China","1","25.431667","119.015833","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1858","","","Licheng District, Putian City","Fujian","China","1","25.431667","119.015833","point","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1859","","","Puitan City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1860","","","Pucheng County, Nanping City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1861","","","Yongding District, Longyan City","Fujian","China","1","25.9","118.3","admin","","","27.01.2020","","","","","","","","","http://headline.fjtv.net/folder875/2020-01-28/2159688.html","","","","","","","","","",""
"1862","","","Lianjiang County, Fuzhou","Fujian","China","1","26.2","119.533333","point","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1863","","","Lianjiang County, Fuzhou","Fujian","China","1","26.2","119.533333","point","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1864","","","Changle District, Fuzhou","Fujian","China","1","25.9","118.3","admin","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1865","","","Changle District, Fuzhou","Fujian","China","1","25.9","118.3","admin","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1866","","","Fuqing City, Fuzhou","Fujian","China","1","25.9","118.3","admin","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1867","","","Fuzhou City","Fujian","China","1","26.0745","119.2965","point","","","28.01.2020","","yes","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"1868","","","Dongshan County, Zhangzhou","Fujian","China","1","25.9","118.3","admin","","","28.01.2020","","","","","","","","","https://mp.weixin.qq.com/s/hd64fZ22-VP_W2D-IYZHbQ","","","","","","","","","",""
"2095","","","Ningde","Fujian","China","1","26.6656","119.5479","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2096","","","Zhangzhou","Fujian","China","1","24.516667","117.65","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2097","","","Xiamen","Fujian","China","1","24.4798","118.0894","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2098","","","Sanming City","Fujian","China","1","25.9","118.3","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"89","43","male","Lanzhou","Gansu","China","1","36.0611","103.8343","point","18.01.2020","21.01.2020","23.01.2020","fever, discomfort","no","17.01.2020","Wuhan","","","","","https://www.thepaper.cn/newsDetail_forward_5610903","","","","","","","Lanzhou City","Gansu","China",""
"90","24","male","Baiyin","Gansu","China","1","36.545","104.1386","point","16.01.2020","22.01.2020","23.01.2020","fever, cough, headache, muscular soreness, weak","work in Wuhan","19.01.2020 - 20.01.2020","Wuhan","","With 14 days before symptoms, he visited farmers market in Wuhan and contacted people with fever; 19.01.2020 left Wuhan, 20.01.2020 arrived in Baiyin city","","","https://baijiahao.baidu.com/s?id=1656529973714798234&wfr=spider&for=pc","","","","","","","Baiyin City","Gansu","China",""
"610","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Lanzhou City","Gansu","China",""
"611","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Lanzhou City","Gansu","China",""
"1043","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Lanzhou City","Gansu","China",""
"1044","","","Dingxi","Gansu","China","1","35.580625","104.626389","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Dingxi City","Gansu","China",""
"1045","","","Linxia","Gansu","China","1","35.6","103.216667","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Linxia Prefecture","Gansu","China",""
"1439","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1440","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1441","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1442","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1443","","","Linxia","Gansu","China","1","35.6","103.216667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1444","","","Zhangye","Gansu","China","1","38","102","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1445","","","Longnan","Gansu","China","1","38","102","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Gansu","China",""
"1630","","","Jinchang","Gansu","China","1","38","102","admin","","","27.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/28/680623.html","","","","","","","","","",""
"1631","","","Tianshui","Gansu","China","1","38","102","admin","","","27.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/28/680623.html","","","","","","","","","",""
"1632","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/28/680623.html","","","","","","","","","",""
"1633","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/28/680623.html","","","","","","","","","",""
"1634","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","27.01.2020","","","","","","","","","http://www.bjnews.com.cn/news/2020/01/28/680623.html","","","","","","","","","",""
"2099","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2100","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2101","","","Lanzhou","Gansu","China","1","36.0611","103.8343","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2102","","","Zhangye","Gansu","China","1","38","102","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2103","","","Pingliang","Gansu","China","1","35.533333","106.683333","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"91","40","male","Foshan","Guangdong","China","1","23.017441","113.121348","point","10.01.2020","20.01.2020","22.01.2020","dizziness, cough","no","","","","","","","http://www.kaixian.tv/gd/2020/0122/253853.html","","","","","","","Foshan City","Guangdong","China",""
"92","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Guangzhou City","Guangdong","China",""
"93","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Guangzhou City","Guangdong","China",""
"94","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Guangzhou City","Guangdong","China",""
"95","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Guangzhou City","Guangdong","China",""
"96","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Guangzhou City","Guangdong","China",""
"97","NA","","Shaoguan","Guangdong","China","1","24.8109","113.5976","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shaoguan City","Guangdong","China",""
"98","NA","","Shaoguan","Guangdong","China","1","24.8109","113.5976","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shaoguan City","Guangdong","China",""
"99","66","male","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","04.01.2020","10.01.2020","19.01.2020","fever, dry cough, weakness, fatigue","no","29.12.2019 - 04.01.2020","Wuhan","no","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://www.bjnews.com.cn/news/2020/01/20/676734.html and http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2876057.html
https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"100","65","female","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","03.01.2020","10.01.2020","21.01.2020","fever, dry cough, weakness","no","29.12.2019 - 04.01.2020","Wuhan","no","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"101","36","male","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","01.01.2020","11.01.2020","21.01.2020","fever, cough, rhinorrhoea, sneezing, diarrhoea","no","29.12.2019 - 04.01.2020","Wuhan","no","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"102","10","male","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","none","11.01.2020","21.01.2020","","no","29.12.2019 - 04.01.2020","Wuhan","no","recovered in 23.01.2020 and left hospital","","","https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"103","63","female","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","08.01.2020","15.01.2020","21.01.2020","fever, anhelation, pleural effusion, dry cough, weakness","no","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"104","37","female","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","02.01.2020","11.01.2020","21.01.2020","fever, nasal congestion, sore throat, pleuritic chest pain, diarrhoea","no","29.12.2019 - 04.01.2020","Wuhan","no","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.thelancet.com/pb-assets/Lancet/pdfs/S0140673620301549.pdf","","","","","","","Shenzhen City","Guangdong","China",""
"105","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://baijiahao.baidu.com/s?id=1656330313797415948&wfr=spider&for=pc","","","","","","","Shenzhen City","Guangdong","China",""
"106","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://baijiahao.baidu.com/s?id=1656330313797415948&wfr=spider&for=pc","","","","","","","Shenzhen City","Guangdong","China",""
"107","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://baijiahao.baidu.com/s?id=1656330313797415948&wfr=spider&for=pc","","","","","","","Shenzhen City","Guangdong","China",""
"108","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://baijiahao.baidu.com/s?id=1656330313797415948&wfr=spider&for=pc","","","","","","","Shenzhen City","Guangdong","China",""
"109","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"110","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"111","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"112","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"113","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"114","N/A","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Shenzhen City","Guangdong","China",""
"115","N/A","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Zhanjiang City","Guangdong","China",""
"116","N/A","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","21.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Zhanjiang City","Guangdong","China",""
"117","N/A","","Zhaoqing","Guangdong","China","1","21.272283","110.358695","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Zhaoqing City","Guangdong","China",""
"118","N/A","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","23.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/con...t_2878571.html","","","","","","","Zhongshan City","Guangdong","China",""
"119","78","male","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","15.01.2020","","20.01.2020","","yes","11.01.2020","Wuhan","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.sinchew.com.my/content/content_2205270.html and http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2877668.html","","","","","","","Zhuhai City","Guangdong","China",""
"120","76","female","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","17.01.2020","","20.01.2020","","yes","11.01.2020","Wuhan","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.sinchew.com.my/content/content_2205270.html and http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2877668.html","","","","","","","Zhuhai City","Guangdong","China",""
"121","48","female","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","17.01.2020","","20.01.2020","","no","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://www.sinchew.com.my/content/content_2205270.html and http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2877668.html","","","","","","","Zhuhai City","Guangdong","China",""
"122","66","female","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","13.01.2020","19.01.2020","21.01.2020","cough","no","12.01.2020","Wuhan","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","https://baijiahao.baidu.com/s?id=1656387834433173903&wfr=spider&for=pc","","","","","","","Zhuhai City","Guangdong","China",""
"123","NA","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Yangjiang City","Guangdong","China",""
"124","NA","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Yangjiang City","Guangdong","China",""
"125","NA","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Yangjiang City","Guangdong","China",""
"126","NA","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Qingyuan City","Guangdong","China",""
"127","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Guangzhou City","Guangdong","China",""
"128","NA","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Guangzhou City","Guangdong","China",""
"129","NA","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Zhuhai City","Guangdong","China",""
"130","NA","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Zhuhai City","Guangdong","China",""
"131","NA","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Zhuhai City","Guangdong","China",""
"132","NA","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Zhuhai City","Guangdong","China",""
"133","NA","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Foshan City","Guangdong","China",""
"134","NA","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Foshan City","Guangdong","China",""
"135","NA","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Foshan City","Guangdong","China",""
"136","NA","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Foshan City","Guangdong","China",""
"137","NA","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Foshan City","Guangdong","China",""
"138","NA","","Shaoguan","Guangdong","China","1","24.8109","113.5976","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Shaoguan City","Guangdong","China",""
"139","NA","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Huizhou City","Guangdong","China",""
"140","NA","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Huizhou City","Guangdong","China",""
"141","NA","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Huizhou City","Guangdong","China",""
"142","NA","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Huizhou City","Guangdong","China",""
"143","NA","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","24.01.2020","","","","","","Among the 53 cases diagnosed in our province, 28 were males and 25 were females, aged between 10-81 years old. Among them, 45 cases had a history of living or traveling in Hubei before the onset, and 8 cases had no Hubei before the onset of the disease. Resident history or travel history, 6 of which are imported family members of Hubei, 1 with dinner with friends in Wuhan, 1 without obvious contact history, epidemiological investigations are being carried out. A total of 10 cluster epidemics were found, all of which were family clusters, involving 27 cases. There were no cases of medical staff infection.","","","http://news.workercn.cn/32843/202001/24/200124091241838.shtml","","","","","","","Zhongshan City","Guangdong","China",""
"362","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"363","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"364","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"365","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"366","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"367","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"368","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"369","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"370","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"371","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guangzhou City","Guangdong","China",""
"372","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"373","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"374","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"375","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"376","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"377","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"378","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"379","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"380","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"381","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"382","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"383","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"384","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"385","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"386","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shenzhen City","Guangdong","China",""
"681","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhuhai City","Guangdong","China",""
"682","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhuhai City","Guangdong","China",""
"683","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhuhai City","Guangdong","China",""
"684","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhuhai City","Guangdong","China",""
"685","","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Foshan City","Guangdong","China",""
"686","","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Foshan City","Guangdong","China",""
"687","","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Foshan City","Guangdong","China",""
"688","","","Foshan","Guangdong","China","1","23.017441","113.121348","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Foshan City","Guangdong","China",""
"689","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Huizhou City","Guangdong","China",""
"690","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Huizhou City","Guangdong","China",""
"691","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Huizhou City","Guangdong","China",""
"692","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Huizhou City","Guangdong","China",""
"693","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Yangjiang City","Guangdong","China",""
"694","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Yangjiang City","Guangdong","China",""
"695","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Yangjiang City","Guangdong","China",""
"696","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Yangjiang City","Guangdong","China",""
"697","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Yangjiang City","Guangdong","China",""
"698","","","Shaoguan","Guangdong","China","1","24.8109","113.5976","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shaoguan City","Guangdong","China",""
"699","","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhanjiang City","Guangdong","China",""
"700","","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhanjiang City","Guangdong","China",""
"701","","","Zhaoqing","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhaoqing City","Guangdong","China",""
"702","","","Zhaoqing","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhaoqing City","Guangdong","China",""
"703","","","Zhaoqing","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Zhaoqing City","Guangdong","China",""
"704","","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Qingyuan City","Guangdong","China",""
"705","","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Qingyuan City","Guangdong","China",""
"706","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Dongguan City","Guangdong","China",""
"707","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Dongguan City","Guangdong","China",""
"708","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shantou City","Guangdong","China",""
"709","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shantou City","Guangdong","China",""
"710","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Jieyang City","Guangdong","China",""
"711","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Jieyang City","Guangdong","China",""
"712","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Jieyang City","Guangdong","China",""
"713","","","Meizhou","Guangdong","China","1","24.289","116.122","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Meizhou City","Guangdong","China",""
"1084","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1085","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1086","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1087","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1088","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1089","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1090","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1091","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1092","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1093","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1094","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1095","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1096","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1097","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1098","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1099","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1100","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1101","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1102","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1103","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1104","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1105","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1106","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1107","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1108","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1109","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1110","","","Shanwei","Guangdong","China","1","22.785017","115.375417","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1111","","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1112","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1113","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1114","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1115","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1116","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1117","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1118","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","26.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879365.html","","","","","","","","Guangdong","China",""
"1119","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","Guangdong","China",""
"1120","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","Guangdong","China",""
"1121","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","Guangdong","China",""
"1122","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","Guangdong","China",""
"1123","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","Guangdong","China",""
"1884","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1885","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1886","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1887","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1888","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1889","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1890","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1891","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1892","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1893","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1894","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1895","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1896","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1897","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1898","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1899","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1900","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1901","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1902","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1903","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1904","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1905","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1906","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1907","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1908","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1909","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1910","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1911","","","Meizhou","Guangdong","China","1","24.289","116.122","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1912","","","Meizhou","Guangdong","China","1","24.289","116.122","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1913","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1914","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1915","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1916","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1917","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1918","","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1919","","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1920","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","27.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879552.html","","","","","","","","","",""
"1933","","","Heyuan City","Guangdong","China","1","23.1123","114.4158","admin","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1934","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1935","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1936","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1937","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1938","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1939","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1940","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1941","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1942","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1943","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1944","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1945","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1946","","","Dongguan","Guangdong","China","1","23.021","113.752","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1947","","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1948","","","Zhanjiang","Guangdong","China","1","21.272283","110.358695","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1949","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1950","","","Meizhou","Guangdong","China","1","24.289","116.122","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"1951","","","Qingyuan City","Guangdong","China","1","23.6818","113.056","point","","","28.01.2020","","","","","","","","","http://wsjkw.gd.gov.cn/zwyw_yqxx/content/post_2879855.html","","","","","","","","","",""
"2104","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2105","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2106","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2107","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2108","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2109","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2110","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2111","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2112","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2113","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2114","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2115","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2116","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2117","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2118","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2119","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2120","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2121","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2122","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2123","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2124","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2125","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2126","","","Shenzhen","Guangdong","China","1","22.545319","114.057003","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2127","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2128","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2129","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2130","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2131","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2132","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2133","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2134","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2135","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2136","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2137","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2138","","","Guangzhou","Guangdong","China","1","23.1291","113.2644","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2139","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2140","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2141","","","Foshan","Guangdong","China","1","23.016667","113.116667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2142","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2143","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2144","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2145","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2146","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2147","","","Zhuhai","Guangdong","China","1","22.267377","113.563631","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2148","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2149","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2150","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2151","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2152","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2153","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2154","","","Zhongshan","Guangdong","China","1","22.5176","113.3928","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2155","","","Huizhou","Guangdong","China","1","23.1123","114.4158","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2156","","","Yangjiang","Guangdong","China","1","21.858","111.9822","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2157","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2158","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2159","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2160","","","Shantou","Guangdong","China","1","23.354","116.682","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2161","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2162","","","Jieyang","Guangdong","China","1","23.396389","116.4825","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2163","","","Zhaoqing","Guangdong","China","1","21.272283","110.358695","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2164","","","Maoming","Guangdong","China","1","21.65","110.916667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2165","","","Maoming","Guangdong","China","1","21.65","110.916667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2166","","","Maoming","Guangdong","China","1","21.65","110.916667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2167","","","Shanwei","Guangdong","China","1","22.785017","115.375417","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2168","","","Jiangmen","Guangdong","China","1","23.1123","114.4158","admin","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"144","66","female","Beihai","Guangxi","China","1","21.477308","109.121131","point","16.01.2020","17.01.2020","22.01.2020","","yes","12.01.2020","Wuhan","","left Wuhan","","","http://www.bbtnews.com.cn/2020/0122/333568.shtml","","","","","","","Beihai City","Guangxi","China",""
"145","63","male","Beihai","Guangxi","China","1","21.477308","109.121131","point","14.01.2020","21.01.2020","22.01.2020","fever, cough","yes","","","","recent travel history, whereabouts and dates unclear","","","http://news.china.com.cn/txt/2020-01/23/content_75642508.htm","","","","","","","Beihai City","Guangxi","China",""
"146","62","female","Beihai","Guangxi","China","1","21.477308","109.121131","point","09.01.2020","21.01.2020","22.01.2020","fever, cough","yes","15.01.2020","Wuhan","","","","","http://news.china.com.cn/txt/2020-01/23/content_75642508.htm","","","","","","","Beihai City","Guangxi","China",""
"147","49","male","Liuzhou","Guangxi","China","1","24.3263","109.4286","point","21.01.2020","21.01.2020","22.01.2020","fever","yes","","","","recent travel history, whereabouts and dates unclear","","","http://news.china.com.cn/txt/2020-01/23/content_75642508.htm","","","","","","","Liuzhou City","Guangxi","China",""
"148","46","male","Wuzhou","Guangxi","China","1","23.480323","111.277462","point","20.01.2020","21.01.2020","22.01.2020","fever","no","","","","contact people from Wuhan","","","http://www.bbtnews.com.cn/2020/0122/333568.shtml","","","","","","","Wuzhou City","Guangxi","China",""
"149","NA","","Luizhou","Guangxi","China","1","24.3263","109.4286","point","","","24.01.2020","","","","","","","","","https://news.sina.com.cn/c/2020-01-24/doc-iihnzhha4410933.shtml","","","","","","","Liuzhou City","Guangxi","China",""
"150","34","male","Guilin","Guangxi","China","1","25.266667","110.283333","point","19.01.2020","22.01.2020","24.01.2020","fever, cough","yes","22.01.2020","Wuhan","","worker in Wuhan; arrived in Guilin from Wuhan","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Guilin City","Guangxi","China",""
"151","41","male","Guilin","Guangxi","China","1","25.266667","110.283333","point","20.01.2020","23.01.2020","24.01.2020","fever","yes","22.01.2020","Wuhan","","drove to Guilin from Wuhan","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Guilin City","Guangxi","China",""
"152","72","female","Beihai","Guangxi","China","1","21.477308","109.121131","point","19.01.2020","19.01.2020","24.01.2020","fever, weak","yes","18.01.2020 ","Wuhan","","arrived in Beihai from Wuhan","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Beihai City","Guangxi","China",""
"153","20","female","Beihai","Guangxi","China","1","21.477308","109.121131","point","22.01.2020","22.01.2020","24.01.2020","fever, cough, muscular soreness","yes","21.01.2020","Wuhan","","student in Wuhan; arrived in Beihai from Wuhan","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Beihai City","Guangxi","China",""
"154","54","male","Beihai","Guangxi","China","1","21.477308","109.121131","point","22.01.2020","22.01.2020","24.01.2020","fever, cough","yes","21.01.2020","Wuhan","","work in Wuhan; arrived in Beihai from Wuhan","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Beihai City","Guangxi","China",""
"155","33","female","Baise","Guangxi","China","1","23.9025","106.6183","point","19.01.2020","21.01.2020","24.01.2020","fever","yes","21.01.2020","Wuhan","","arrived in Baise from Wuhan; visited a private clinic in Wuhan for treatment because of her fever on 19.01.2020","","","https://baijiahao.baidu.com/s?id=1656593400736651054&wfr=spider&for=pc","","","","","","","Baise City","Guangxi","China",""
"156","49","female","Hechi","Guangxi","China","1","24.6929","108.0853","point","21.01.2020","22.01.2020","24.01.2020","cough, muscular soreness, expectoration, chest distress","yes","15.01.2020","Wuhan","","arrived in Hechi from Wuhan by train","","","https://new.qq.com/omn/20200125/20200125A06DOX00.html","","","","","","","Hechi City","Guangxi","China",""
"157","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","24.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"158","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","24.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"159","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","24.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"160","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","24.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"161","42","male","Liuzhou","Guangxi","China","1","24.3263","109.4286","point","","21.01.2020","24.01.2020","","no","13.01.2020 -15.01.2020","Wuhan","","Travelled from Wuhan to Shenzen on 15.01.2020 and to Liuzhou on 18.01.2020","","","http://www.nnnews.net/yaowen/p/3021969.html","","","","","","","Liuzhou City","Guangxi","China",""
"162","33","male","Hechi","Guangxi","China","1","24.692778","108.085","point","19.01.2020","21.01.2020","24.01.2020","cough, headache","no","13.01.2020 - 17.01.2020","Wuhan","","work on software development and maintenance in a hospital in Wuhan during 13.01.2020-17.01.2020","","","http://gx.sina.com.cn/news/gx/2020-01-24/detail-iihnzhha4423379.shtml?from=gx_cnxh","","","","","","","Hechi City","Guangxi","China",""
"163","2","female","Hechi","Guangxi","China","1","24.692778","108.085","point","22.01.2020","23.01.2020","24.01.2020","fever, sneeze","yes","21.01.2020","Wuhan","","arrived in Nanning from Wuhan by plane and then took a bus to Hechi","","","https://new.qq.com/omn/20200125/20200125A06DOX00.html","","","","","","","Hechi City","Guangxi","China",""
"164","29","male","Fangchenggang","Guangxi","China","1","21.6","108.3","point","23.01.2020","23.01.2020","24.01.2020","discomfort","yes","23.01.2020","Wuhan","","arrived in Fangchenggang from Wuhan","","","http://www.fcgs.gov.cn/wjw/zwgk/202001/t20200125_93696.html","","","","","","","Fangchenggang City","Guangxi","China",""
"165","62","male","Fangchenggang","Guangxi","China","1","21.6","108.3","point","15.01.2020","23.01.2020","24.01.2020","cough, muscular stiffness, weak, no fever","no","08.01.2020 - 14.01.2020","Thailand","","","","","http://www.fcgs.gov.cn/wjw/zwgk/202001/t20200125_93696.html","","","","","","","Fangchenggang City","Guangxi","China",""
"166","61","male","Yulin","Guangxi","China","1","22.633333","110.15","point","21.01.2020","22.01.2020","24.01.2020","fever","yes","15.01.2020","Wuhan","","arrived in Yulin from Wuhan","","","https://new.qq.com/omn/20200125/20200125A01X9500.html","","","","","","","Yulin City","Guangxi","China",""
"941","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Beihai City","Guangxi","China",""
"942","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Beihai City","Guangxi","China",""
"943","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Beihai City","Guangxi","China",""
"944","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"945","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"946","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"947","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"948","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Guilin City","Guangxi","China",""
"949","","","Liuzhou","Guangxi","China","1","24.3263","109.4286","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Liuzhou City","Guangxi","China",""
"950","","","Liuzhou","Guangxi","China","1","24.3263","109.4286","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Liuzhou City","Guangxi","China",""
"951","","","Wuzhou","Guangxi","China","1","23.478952","111.27804","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Wuzhou City","Guangxi","China",""
"952","","","Baise","Guangxi","China","1","23.9025","106.6183","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Baise City","Guangxi","China",""
"953","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Nanning City","Guangxi","China",""
"1375","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1376","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1377","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1378","","","Liuzhou","Guangxi","China","1","24.3263","109.4286","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1379","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1380","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1381","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1382","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1383","","","Fangchenggang","Guangxi","China","1","21.6","108.3","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1384","","","Yulin","Guangxi","China","1","22.633333","110.15","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Guangxi","China",""
"1567","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","27.01.2020","","","","","","","","","http://wsjkw.gxzf.gov.cn/gzdt/bt/2020/0128/68043.html","","","","","","","Beihai","Shanxi","China",""
"1568","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","27.01.2020","","","","","","","","","http://wsjkw.gxzf.gov.cn/gzdt/bt/2020/0128/68043.html","","","","","","","Beihai","Shanxi","China",""
"1569","","","Wuzhou","Guangxi","China","1","23.478952","111.27804","point","","","27.01.2020","","","","","","","","","http://wsjkw.gxzf.gov.cn/gzdt/bt/2020/0128/68043.html","","","","","","","Wuzhou","Guangxi","China",""
"1570","","","Wuzhou","Guangxi","China","1","23.478952","111.27804","point","","","27.01.2020","","","","","","","","","http://wsjkw.gxzf.gov.cn/gzdt/bt/2020/0128/68043.html","","","","","","","Wuzhou","Guangxi","China",""
"1571","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","27.01.2020","","","","","","","","","http://wsjkw.gxzf.gov.cn/gzdt/bt/2020/0128/68043.html","","","","","","","Guilin","Guangxi","China",""
"2169","","","Guilin","Guangxi","China","1","25.266667","110.283333","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2170","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2171","","","Beihai","Guangxi","China","1","21.477308","109.121131","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2172","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2173","","","Nanning","Guangxi","China","1","22.816667","108.316667","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2174","","","Fangchenggang","Guangxi","China","1","21.6","108.3","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2175","","","Fangchenggang","Guangxi","China","1","21.6","108.3","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"167","20","male","Guiding county, Qiannan","Guizhou","China","1","26.2541","107.5221","admin","18.01.2020","18.01.2020","22.01.2020","discomfort","no","","Wuhan","","student in a college in Wuhan","","","","","","","","","Guiding County","Qiannan Prefecture","Guizhou","China",""
"168","51","male","Guiyang","Guizhou","China","1","26.64733","106.632564","point","14.01.2020","","22.01.2020","fever","","","Wuhan","","","","","http://www.gzhfpc.gov.cn/xwzx_500663/sndt/202001/t20200122_44600121.html","","","","","","","Guiyang City","Guizhou","China",""
"169","50","female","Tongren","Guizhou","China","1","27.7315","109.1896","point","14.01.2020","21.01.2020","22.01.2020","fever","no","10.01.2020 - 12.01.2020","Changsha","","have meals with people from Wuhan in the same table, study trip","","","","","","","","","","Tongren City","Guizhou","China",""
"608","","","Tongren","Guizhou","China","1","27.7315","109.1896","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Tongren City","Guizhou","China",""
"609","","","Qianxinan Prefecture","Guizhou","China","1","25.0833","104.9","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Qianxinan Prefecture","Guizhou","China",""
"1450","34","male","Liupanshui City","Guizhou","China","1","26.594444","104.833333","point","","","27.01.2020","","1","","Wuhan","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","https://mp.weixin.qq.com/s?__biz=MjM5MTg5OTM0Ng==&mid=2651448627&idx=1&sn=e26391f0e764bfd4fc2a9a1bc15502ff&chksm=bd53ce8e8a2447985560b9a62b2a5f567693ac25032b0209cc489c49d91862fd480e4664094e&token=566312186&lang=zh_CN#rd","","","","Guizhou","China",""
"1451","22","female","Qiannan Prefecture","Guizhou","China","1","26.833333","106.833333","admin","","","27.01.2020","","1","","Wuhan","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","https://mp.weixin.qq.com/s?__biz=MjM5MTg5OTM0Ng==&mid=2651448627&idx=1&sn=e26391f0e764bfd4fc2a9a1bc15502ff&chksm=bd53ce8e8a2447985560b9a62b2a5f567693ac25032b0209cc489c49d91862fd480e4664094e&token=566312186&lang=zh_CN#rd","","","","Guizhou","China",""
"1635","","","Qiannan Prefecture","Guizhou","China","1","26.833333","106.833333","admin","","","27.01.2020","","","","","","","","","https://bnonews.com/index.php/2020/01/the-latest-coronavirus-cases/https://bnonews.com/index.php/2020/01/the-latest-coronavirus-cases/","","","","","","","","","",""
"1636","","","Qiannan Prefecture","Guizhou","China","1","26.833333","106.833333","admin","","","27.01.2020","","","","","","","","","https://bnonews.com/index.php/2020/01/the-latest-coronavirus-cases/","","","","","","","","","",""
"170","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","24.01.2020","","","","","","","","","http://finance.jrj.com.cn/2020/01/24101428733434.shtml","","","","","","","Haikou City","Hainan","China",""
"171","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","24.01.2020","","","","","","","","","http://finance.jrj.com.cn/2020/01/24101428733434.shtml","","","","","","Wanning City","","Hainan","China",""
"172","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","24.01.2020","","","","","","","","","http://finance.jrj.com.cn/2020/01/24101428733434.shtml","","","","","","Wanning City","","Hainan","China",""
"549","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanning City","","Hainan","China",""
"550","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanning City","","Hainan","China",""
"551","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Wanning City","","Hainan","China",""
"552","","","Sanya","Hainan","China","1","19.2","109.7","admin","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","Quzhou","","","Hainan","China",""
"617","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","","","","","","","","Sanya City","Hainan","China",""
"618","","","Lingshui","Hainan","China","1","18.506","110.0375","point","","","25.01.2020","","","","","","","","","","","","","","","Lingshui County","","Hainan","China",""
"619","68","female","Haikou","Hainan","China","1","20.038786","110.197993","point","","","","","","18.01.2020","Wuhan","","","","","https://tech.sina.com.cn/roll/2020-01-22/doc-iihnzahk5804410.shtml","","","","","","","Haikou City","Hainan","China",""
"620","45","male","Haikou","Hainan","China","1","20.038786","110.197993","point","","","","","","19.01.2020","Wuhan","","","","","https://tech.sina.com.cn/roll/2020-01-22/doc-iihnzahk5804410.shtml","","","","","","","Haikou City","Hainan","China",""
"621","65","female","Lingao","Hainan","China","1","19.908121","109.693949","point","16.01.2020","20.01.2020","22.01.2020","discomfort, low fever, cough, other symptoms","","14.01.2020","Wuhan","","","","","https://tech.sina.com.cn/roll/2020-01-22/doc-iihnzahk5804410.shtml","","","","","","Lingao County","","Hainan","China",""
"622","27","male","Sanya","Hainan","China","1","18.255362","109.512909","point","","","","","","20.01.2020","Wuhan","","","","","https://tech.sina.com.cn/roll/2020-01-22/doc-iihnzahk5804410.shtml","","","","","","","Sanya City","Hainan","China",""
"623","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200123_2740707.html","","","","","","","Sanya City","Hainan","China",""
"636","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Sanya City","Hainan","China",""
"637","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Sanya City","Hainan","China",""
"638","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Sanya City","Hainan","China",""
"639","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Sanya City","Hainan","China",""
"640","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Sanya City","Hainan","China",""
"1004","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","Quzhou","","","Hainan","China",""
"1005","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","Quzhou","","","Hainan","China",""
"1006","","","Chengmai","Hainan","China","1","19.752","110.016","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","Chengmai County","","Hainan","China",""
"1398","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1399","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1400","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1401","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1402","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1403","","","Danzhou","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1404","","","Danzhou","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1405","","","Danzhou","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1406","","","Danzhou","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1407","","","Danzhou","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1408","","","Chengmai","Hainan","China","1","19.752","110.016","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hainan","China",""
"1870","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1871","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1872","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1873","","","Sanya","Hainan","China","1","18.255362","109.512909","point","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1874","","","Qionghai","Hainan","China","1","23.6818","113.056","point","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1875","","","Dongfang","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"1876","","","Qiongzhong County","Hainan","China","1","19.2","109.7","admin","","","27.01.2020","","","","","","","","","http://wst.hainan.gov.cn/swjw/rdzt/yqfk/202001/t20200128_2741426.html","","","","","","","","","",""
"2176","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2177","","","Haikou","Hainan","China","1","20.042778","110.341667","point ","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2178","","","Wanning","Hainan","China","1","18.793326","110.3905","point ","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"173","72","male","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","19.01.2020","19.01.2020","23.01.2020","fever, cough","yes","18.01.2020","Wuhan","","","","","http://www.hebwst.gov.cn/index.do?id=394856&templet=content&cid=14","","","","","","","Shijazhuang City","Hebei","China",""
"174","80","male","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","23.01.2020","chest distress, dyspnea","lived in Wuhan for two months and then went back to Cangzhou","","Wuhan","","died on 22.01.2020","","","https://baijiahao.baidu.com/s?id=1656536558334288228&wfr=spider&for=pc","","","","","","","Cangzhou City","Hebei","China",""
"581","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shijazhuang City","Hebei","China",""
"582","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shijazhuang City","Hebei","China",""
"583","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shijazhuang City","Hebei","China",""
"584","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Shijazhuang City","Hebei","China",""
"585","","","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Cangzhou City","Hebei","China",""
"586","","","Baoding","Hebei","China","1","38.866667","115.4666667","point","","","25.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Baoding City","Hebei","China",""
"1035","","","Baoding","Hebei","China","1","38.866667","115.4666667","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Baoding City","Hebei","China",""
"1036","","","Baoding","Hebei","China","1","38.866667","115.4666667","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Baoding City","Hebei","China",""
"1037","","","Chengde","Hebei","China","1","40.966667","117.933333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Chengde City","Hebei","China",""
"1038","","","Handan City","Hebei","China","1","36.6","114.483333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Handan City","Hebei","China",""
"1039","","","Handan City","Hebei","China","1","36.6","114.483333","point","","","26.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","Handan City","Hebei","China",""
"1434","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hebei","China",""
"1435","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hebei","China",""
"1436","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hebei","China",""
"1437","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hebei","China",""
"1438","","","Xingtai City","Hebei","China","1","37.066667","114.483333","point","","","27.01.2020","","","","","","","","","https://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other","","","","","","","","Hebei","China",""
"1637","","","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1638","","","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1639","","","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1640","","","Handan City","Hebei","China","1","36.6","114.483333","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1641","","","Handan City","Hebei","China","1","36.6","114.483333","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1642","","","Hengshui City","Hebei","China","1","37.733333","115.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1643","","","Hengshui City","Hebei","China","1","37.733333","115.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1644","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1645","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1646","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1647","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1648","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1649","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1650","","","Tangshan City","Hebei","China","1","39.631","118.18","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"1651","","","Xingtai City","Hebei","China","1","37.066667","114.483333","point","","","27.01.2020","","","","","","","","","https://m.weibo.cn/status/4465641119066699","","","","","","","","","",""
"2179","","","Shijiazhuang City","Hebei","China","1","38.043611","114.498333","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2180","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2181","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2182","","","Langfang City","Hebei","China","1","39.516667","116.7","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""
"2183","","","Cangzhou City","Hebei","China","1","38.315807","116.832378","point","","","29.01.2020","","","","","","","","","http://news.163.com/special/epidemic/?spssid=7283291fcdba1d8c2d13ee3da2cfb760&spsw=7&spss=other#map_block","","","","","","","","","",""