当前位置: 首页>后端>正文

python在线问诊数据爬虫 python爬取医院信息

毕设需求了就是说 导师要做关于时间线的- -看发展趋势 不得不今天又现学现卖

 

首先 创建一个python文件 python.file 引入一点资源

# 发送请求
import requests
# 页面提取数据
from bs4 import BeautifulSoup
# 正则模块
import re
# json模块
import json

  打开丁香园 url是这个 https://ncov.dxy.cn/ncovh5/view/pneumonia?from=timeline&isappinstalled=0

  右键 源码

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_json,第1张

 

 

 可以看到 框出来的有个id 这个scrpit里面有想要的数据

# 1 发送请求
respose = requests.get('https://ncov.dxy.cn/ncovh5/view/pneumonia?from=timeline&isappinstalled=0')
home_page = respose.content.decode()

# 2 获取疫情信息
# 构建soup对象 给一个解析器 lxml
soup = BeautifulSoup(home_page,'lxml')
# 拿到script标签
script = soup.find(id="getAreaStat")
# 拿到标签里的内容
text = script.text
# print(text)

  

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_python在线问诊数据爬虫_02,第2张

 

 

 

最终代码

# 发送请求
import requests
# 页面提取数据
from bs4 import BeautifulSoup
# 正则模块
import re
# json模块
import json

# 1 发送请求
respose = requests.get('https://ncov.dxy.cn/ncovh5/view/pneumonia?from=timeline&isappinstalled=0')
home_page = respose.content.decode()

# 2 获取疫情信息
# 构建soup对象 给一个解析器 lxml
soup = BeautifulSoup(home_page,'lxml')
# 拿到script标签
script = soup.find(id="getAreaStat")
# 拿到标签里的内容
text = script.text
# print(text)
# 3 json格式字符串 0索引将其取出来
json_str = re.findall(r'\[.+\]',text)[0]
# print(json_str)

  

 最后数据就长这样

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_ci_03,第3张

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_python在线问诊数据爬虫_04,第4张

[{"provinceName":"香港","provinceShortName":"香港","currentConfirmedCount":261201,"confirmedCount":329498,"suspectedCount":181,"curedCount":59015,"deadCount":9282,"comment":"","locationId":810000,"statisticsData":"https://file1.dxycdn.com/2020/0223/331/3398299755968040033-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"台湾","provinceShortName":"台湾","currentConfirmedCount":73846,"confirmedCount":88446,"suspectedCount":485,"curedCount":13742,"deadCount":858,"comment":"","locationId":710000,"statisticsData":"https://file1.dxycdn.com/2020/0223/045/3398299749526003760-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"上海市","provinceShortName":"上海","currentConfirmedCount":21217,"confirmedCount":50813,"suspectedCount":393,"curedCount":29304,"deadCount":292,"comment":"因未公布分区死亡和治愈,仅展示累计确诊和现存确诊","locationId":310000,"statisticsData":"https://file1.dxycdn.com/2020/0223/128/3398299755968454977-135.json","highDangerCount":0,"midDangerCount":13,"detectOrgCount":130,"vaccinationOrgCount":17,"cities":[{"cityName":"浦东新区","currentConfirmedCount":14806,"confirmedCount":14904,"suspectedCount":0,"curedCount":97,"deadCount":1,"highDangerCount":0,"midDangerCount":5,"locationId":310115,"currentConfirmedCountStr":"14806"},{"cityName":"闵行区","currentConfirmedCount":4870,"confirmedCount":4889,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":3,"locationId":310112,"currentConfirmedCountStr":"4870"},{"cityName":"黄浦区","currentConfirmedCount":4249,"confirmedCount":4271,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":1,"locationId":310101,"currentConfirmedCountStr":"4249"},{"cityName":"徐汇区","currentConfirmedCount":3459,"confirmedCount":3477,"suspectedCount":0,"curedCount":17,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310104,"currentConfirmedCountStr":"3459"},{"cityName":"虹口区","currentConfirmedCount":2706,"confirmedCount":2713,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310109,"currentConfirmedCountStr":"2706"},{"cityName":"松江区","currentConfirmedCount":2399,"confirmedCount":2415,"suspectedCount":0,"curedCount":16,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310117,"currentConfirmedCountStr":"2399"},{"cityName":"静安区","currentConfirmedCount":2136,"confirmedCount":2153,"suspectedCount":0,"curedCount":16,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310106,"currentConfirmedCountStr":"2136"},{"cityName":"嘉定区","currentConfirmedCount":2123,"confirmedCount":2132,"suspectedCount":0,"curedCount":7,"deadCount":2,"highDangerCount":0,"midDangerCount":2,"locationId":310114,"currentConfirmedCountStr":"2123"},{"cityName":"宝山区","currentConfirmedCount":2093,"confirmedCount":2120,"suspectedCount":0,"curedCount":26,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310113,"currentConfirmedCountStr":"2093"},{"cityName":"长宁区","currentConfirmedCount":1942,"confirmedCount":1956,"suspectedCount":0,"curedCount":14,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310105,"currentConfirmedCountStr":"1942"},{"cityName":"杨浦区","currentConfirmedCount":1578,"confirmedCount":1587,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310110,"currentConfirmedCountStr":"1578"},{"cityName":"普陀区","currentConfirmedCount":1522,"confirmedCount":1534,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310107,"currentConfirmedCountStr":"1522"},{"cityName":"青浦区","currentConfirmedCount":1037,"confirmedCount":1044,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310118,"currentConfirmedCountStr":"1037"},{"cityName":"崇明区","currentConfirmedCount":372,"confirmedCount":376,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":2,"locationId":310151,"currentConfirmedCountStr":"372"},{"cityName":"金山区","currentConfirmedCount":314,"confirmedCount":318,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310116,"currentConfirmedCountStr":"314"},{"cityName":"奉贤区","currentConfirmedCount":220,"confirmedCount":231,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310120,"currentConfirmedCountStr":"220"},{"cityName":"境外输入","currentConfirmedCount":6,"confirmedCount":4579,"suspectedCount":8,"curedCount":4573,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"6"},{"cityName":"外地来沪","currentConfirmedCount":0,"confirmedCount":113,"suspectedCount":0,"curedCount":112,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"境外来沪","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-24615,"confirmedCount":0,"suspectedCount":0,"curedCount":24330,"deadCount":285,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-24615"}],"dangerAreas":[{"cityName":"浦东新区","areaName":"北蔡镇联勤村冯桥南宅","dangerLevel":2},{"cityName":"浦东新区","areaName":"北蔡镇鹏飞路411弄6号","dangerLevel":2},{"cityName":"浦东新区","areaName":"北蔡镇御北路235号","dangerLevel":2},{"cityName":"浦东新区","areaName":"浦东新区康桥镇苗桥路935弄19号","dangerLevel":2},{"cityName":"浦东新区","areaName":"浦东新区日京路88号","dangerLevel":2},{"cityName":"闵行区","areaName":"华漕镇许浦村三队、","dangerLevel":2},{"cityName":"闵行区","areaName":"梅陇镇许泾村八组","dangerLevel":2},{"cityName":"闵行区","areaName":"闵行区梅陇镇行南村三队、","dangerLevel":2},{"cityName":"嘉定区","areaName":"嘉定区马陆镇康年路261号工地宿舍","dangerLevel":2},{"cityName":"嘉定区","areaName":"江桥镇增建村柴中村民组","dangerLevel":2},{"cityName":"崇明区","areaName":"崇明区长兴镇长明村21队","dangerLevel":2},{"cityName":"崇明区","areaName":"长兴镇新港村15队","dangerLevel":2},{"cityName":"黄浦区","areaName":"打浦桥街道顺昌路612弄20号","dangerLevel":2}]},{"provinceName":"吉林省","provinceShortName":"吉林","currentConfirmedCount":1929,"confirmedCount":40133,"suspectedCount":19,"curedCount":38199,"deadCount":5,"comment":"","locationId":220000,"statisticsData":"https://file1.dxycdn.com/2020/0223/046/3398299755968039975-135.json","highDangerCount":1,"midDangerCount":11,"detectOrgCount":91,"vaccinationOrgCount":0,"cities":[{"cityName":"长春","currentConfirmedCount":1615,"confirmedCount":25109,"suspectedCount":1,"curedCount":23494,"deadCount":0,"highDangerCount":1,"midDangerCount":10,"locationId":220100,"currentConfirmedCountStr":"1615"},{"cityName":"吉林市","currentConfirmedCount":260,"confirmedCount":14112,"suspectedCount":12,"curedCount":13849,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":220200,"currentConfirmedCountStr":"260"},{"cityName":"延边","currentConfirmedCount":49,"confirmedCount":171,"suspectedCount":1,"curedCount":122,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":222400,"currentConfirmedCountStr":"49"},{"cityName":"白城","currentConfirmedCount":23,"confirmedCount":138,"suspectedCount":0,"curedCount":115,"deadCount":0,"highDangerCount":0,"midDangerCount":1,"locationId":220800,"currentConfirmedCountStr":"23"},{"cityName":"四平","currentConfirmedCount":12,"confirmedCount":244,"suspectedCount":0,"curedCount":231,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":220300,"currentConfirmedCountStr":"12"},{"cityName":"松原","currentConfirmedCount":1,"confirmedCount":18,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":220700,"currentConfirmedCountStr":"1"},{"cityName":"辽源","currentConfirmedCount":1,"confirmedCount":9,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":220400,"currentConfirmedCountStr":"1"},{"cityName":"通化","currentConfirmedCount":0,"confirmedCount":313,"suspectedCount":0,"curedCount":312,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":220500,"currentConfirmedCountStr":"0"},{"cityName":"白山","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":220600,"currentConfirmedCountStr":"0"},{"cityName":"公主岭","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":220381,"currentConfirmedCountStr":"0"},{"cityName":"梅河口","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":220581,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-32,"confirmedCount":0,"suspectedCount":0,"curedCount":32,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"-32"}],"dangerAreas":[{"cityName":"长春","areaName":"团山街道小南街社区","dangerLevel":1},{"cityName":"长春","areaName":"经开区兴隆山镇金色家园","dangerLevel":2},{"cityName":"长春","areaName":"经开区兴隆山镇中海寰宇天下","dangerLevel":2},{"cityName":"长春","areaName":"净月区德容街道福临花园","dangerLevel":2},{"cityName":"长春","areaName":"净月区德正街道保利香槟","dangerLevel":2},{"cityName":"长春","areaName":"宽城区凯旋街道友谊花园小区","dangerLevel":2},{"cityName":"长春","areaName":"绿园区林园街道3535小区","dangerLevel":2},{"cityName":"长春","areaName":"绿园区青年街道133厂小区","dangerLevel":2},{"cityName":"长春","areaName":"绿园区青年街道宇航社区日鑫小区B区","dangerLevel":2},{"cityName":"长春","areaName":"南关区鸿城街道卫星花园","dangerLevel":2},{"cityName":"长春","areaName":"南关区明珠街道万科金域长春","dangerLevel":2},{"cityName":"白城","areaName":"白城师范学院校园整体","dangerLevel":2}]},{"provinceName":"浙江省","provinceShortName":"浙江","currentConfirmedCount":788,"confirmedCount":3069,"suspectedCount":68,"curedCount":2280,"deadCount":1,"comment":"2月10日通报核减的12例在浙江省治愈的外省病例,根据国家最新要求重新纳入累计病例。","locationId":330000,"statisticsData":"https://file1.dxycdn.com/2020/0223/537/3398299755968455045-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":519,"vaccinationOrgCount":217,"cities":[{"cityName":"境外输入","currentConfirmedCount":286,"confirmedCount":592,"suspectedCount":68,"curedCount":306,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"286"},{"cityName":"杭州","currentConfirmedCount":271,"confirmedCount":501,"suspectedCount":0,"curedCount":230,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330100,"currentConfirmedCountStr":"271"},{"cityName":"嘉兴","currentConfirmedCount":126,"confirmedCount":172,"suspectedCount":0,"curedCount":46,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330400,"currentConfirmedCountStr":"126"},{"cityName":"衢州","currentConfirmedCount":92,"confirmedCount":114,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330800,"currentConfirmedCountStr":"92"},{"cityName":"金华","currentConfirmedCount":81,"confirmedCount":138,"suspectedCount":0,"curedCount":57,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330700,"currentConfirmedCountStr":"81"},{"cityName":"宁波","currentConfirmedCount":61,"confirmedCount":330,"suspectedCount":0,"curedCount":269,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330200,"currentConfirmedCountStr":"61"},{"cityName":"湖州","currentConfirmedCount":26,"confirmedCount":36,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330500,"currentConfirmedCountStr":"26"},{"cityName":"绍兴","currentConfirmedCount":19,"confirmedCount":448,"suspectedCount":0,"curedCount":429,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330600,"currentConfirmedCountStr":"19"},{"cityName":"舟山","currentConfirmedCount":10,"confirmedCount":20,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330900,"currentConfirmedCountStr":"10"},{"cityName":"温州","currentConfirmedCount":8,"confirmedCount":512,"suspectedCount":0,"curedCount":503,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":330300,"currentConfirmedCountStr":"8"},{"cityName":"丽水","currentConfirmedCount":4,"confirmedCount":21,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":331100,"currentConfirmedCountStr":"4"},{"cityName":"台州","currentConfirmedCount":2,"confirmedCount":149,"suspectedCount":0,"curedCount":147,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":331000,"currentConfirmedCountStr":"2"},{"cityName":"省十里丰监狱","currentConfirmedCount":0,"confirmedCount":36,"suspectedCount":0,"curedCount":36,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-198,"confirmedCount":0,"suspectedCount":0,"curedCount":198,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-198"}],"dangerAreas":[]},{"provinceName":"黑龙江省","provinceShortName":"黑龙江","currentConfirmedCount":397,"confirmedCount":2931,"suspectedCount":430,"curedCount":2521,"deadCount":13,"comment":"黑龙江卫健委未明确部分治愈病例的地市归属,因此各地市的现存确诊存在一定偏差。","locationId":230000,"statisticsData":"https://file1.dxycdn.com/2020/0223/643/3398299753820971199-135.json","highDangerCount":2,"midDangerCount":36,"detectOrgCount":315,"vaccinationOrgCount":1,"cities":[{"cityName":"哈尔滨","currentConfirmedCount":387,"confirmedCount":1299,"suspectedCount":8,"curedCount":908,"deadCount":4,"highDangerCount":2,"midDangerCount":36,"locationId":230100,"currentConfirmedCountStr":"387"},{"cityName":"牡丹江","currentConfirmedCount":11,"confirmedCount":94,"suspectedCount":0,"curedCount":83,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":231000,"currentConfirmedCountStr":"11"},{"cityName":"境外输入","currentConfirmedCount":1,"confirmedCount":431,"suspectedCount":386,"curedCount":430,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"1"},{"cityName":"绥化","currentConfirmedCount":0,"confirmedCount":539,"suspectedCount":0,"curedCount":535,"deadCount":4,"highDangerCount":0,"midDangerCount":0,"locationId":231200,"currentConfirmedCountStr":"0"},{"cityName":"黑河","currentConfirmedCount":0,"confirmedCount":297,"suspectedCount":0,"curedCount":297,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":231100,"currentConfirmedCountStr":"0"},{"cityName":"佳木斯","currentConfirmedCount":0,"confirmedCount":56,"suspectedCount":0,"curedCount":56,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":230800,"currentConfirmedCountStr":"0"},{"cityName":"双鸭山","currentConfirmedCount":0,"confirmedCount":52,"suspectedCount":0,"curedCount":49,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":230500,"currentConfirmedCountStr":"0"},{"cityName":"鸡西","currentConfirmedCount":0,"confirmedCount":52,"suspectedCount":0,"curedCount":52,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":230300,"currentConfirmedCountStr":"0"},{"cityName":"齐齐哈尔","currentConfirmedCount":0,"confirmedCount":45,"suspectedCount":0,"curedCount":44,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":230200,"currentConfirmedCountStr":"0"},{"cityName":"大庆","currentConfirmedCount":0,"confirmedCount":37,"suspectedCount":0,"curedCount":36,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":230600,"currentConfirmedCountStr":"0"},{"cityName":"七台河","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":230900,"currentConfirmedCountStr":"0"},{"cityName":"鹤岗","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":230400,"currentConfirmedCountStr":"0"},{"cityName":"大兴安岭","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":232700,"currentConfirmedCountStr":"0"},{"cityName":"伊春","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":230700,"currentConfirmedCountStr":"0"},{"cityName":"待明确","currentConfirmedCount":-2,"confirmedCount":2,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"}],"dangerAreas":[{"cityName":"哈尔滨","areaName":"哈尔滨市南岗区王岗镇","dangerLevel":1},{"cityName":"哈尔滨","areaName":"跃进街道","dangerLevel":1},{"cityName":"哈尔滨","areaName":"承恩街道承恩村六组二委","dangerLevel":2},{"cityName":"哈尔滨","areaName":"承旭街道党校家属楼小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"朝阳镇平安村居民区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"朝阳镇前进村居民区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"道里区城乡路街道汇智广场B座(东方大街与规划路交叉口)","dangerLevel":2},{"cityName":"哈尔滨","areaName":"道里区城乡路街道悦庭清湾小区(顾新路497号)","dangerLevel":2},{"cityName":"哈尔滨","areaName":"道里区群力新苑小区C区(工农大街625号)","dangerLevel":2},{"cityName":"哈尔滨","areaName":"大众新城220栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"建筑街78号所在居民楼和海关街144号所在居民楼及其合围区域","dangerLevel":2},{"cityName":"哈尔滨","areaName":"联兴镇安乐村","dangerLevel":2},{"cityName":"哈尔滨","areaName":"南岗区海城街176号院","dangerLevel":2},{"cityName":"哈尔滨","areaName":"南岗区建筑街84号居民楼","dangerLevel":2},{"cityName":"哈尔滨","areaName":"南岗区鲁商凤凰城3栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"南岗区新境街10号新华印刷厂家属楼小区10栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"松北区浦江国际小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区承旭街道枫桥郡小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区承旭街道金园一品小区2栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区承旭街道金园一品小区4幢","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区承旭街道律政花园","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区承旭街道社保局东边胡同平房片区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区乐群满族乡乐民村","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区幸福街道庆宁村","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区永治街道车站街一委四组","dangerLevel":2},{"cityName":"哈尔滨","areaName":"双城区永治街道团结大街235号幸福e家1栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"上夹树街75号院","dangerLevel":2},{"cityName":"哈尔滨","areaName":"文汇家园小区1栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"幸福街道永支村","dangerLevel":2},{"cityName":"哈尔滨","areaName":"新香坊街道办事处金源蓝城小区11号楼","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永胜村居民区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道财富名苑小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道奋斗社区温馨小区1栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道明城华都5栋","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道民乐小区B区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道天富名苑小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道洗涤剂家属楼小区","dangerLevel":2},{"cityName":"哈尔滨","areaName":"永治街道鑫马家园小区","dangerLevel":2}]},{"provinceName":"江西省","provinceShortName":"江西","currentConfirmedCount":274,"confirmedCount":1358,"suspectedCount":0,"curedCount":1083,"deadCount":1,"comment":"","locationId":360000,"statisticsData":"https://file1.dxycdn.com/2020/0223/161/3398299751673072165-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":143,"vaccinationOrgCount":4,"cities":[{"cityName":"上饶","currentConfirmedCount":162,"confirmedCount":308,"suspectedCount":0,"curedCount":146,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":361100,"currentConfirmedCountStr":"162"},{"cityName":"南昌","currentConfirmedCount":113,"confirmedCount":449,"suspectedCount":0,"curedCount":336,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360100,"currentConfirmedCountStr":"113"},{"cityName":"境外输入","currentConfirmedCount":4,"confirmedCount":15,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"4"},{"cityName":"赣州","currentConfirmedCount":1,"confirmedCount":76,"suspectedCount":0,"curedCount":74,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":360700,"currentConfirmedCountStr":"1"},{"cityName":"新余","currentConfirmedCount":0,"confirmedCount":129,"suspectedCount":0,"curedCount":129,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360500,"currentConfirmedCountStr":"0"},{"cityName":"九江","currentConfirmedCount":0,"confirmedCount":121,"suspectedCount":0,"curedCount":121,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360400,"currentConfirmedCountStr":"0"},{"cityName":"宜春","currentConfirmedCount":0,"confirmedCount":106,"suspectedCount":0,"curedCount":106,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360900,"currentConfirmedCountStr":"0"},{"cityName":"抚州","currentConfirmedCount":0,"confirmedCount":73,"suspectedCount":0,"curedCount":73,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":361000,"currentConfirmedCountStr":"0"},{"cityName":"萍乡","currentConfirmedCount":0,"confirmedCount":33,"suspectedCount":0,"curedCount":33,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360300,"currentConfirmedCountStr":"0"},{"cityName":"吉安","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360800,"currentConfirmedCountStr":"0"},{"cityName":"鹰潭","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360600,"currentConfirmedCountStr":"0"},{"cityName":"景德镇","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":360200,"currentConfirmedCountStr":"0"},{"cityName":"赣江新区","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-6,"confirmedCount":0,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-6"}],"dangerAreas":[]},{"provinceName":"北京市","provinceShortName":"北京","currentConfirmedCount":184,"confirmedCount":2003,"suspectedCount":164,"curedCount":1810,"deadCount":9,"comment":"北京卫健委未明确大部分治愈与死亡病例的分区归属,因此北京市下辖分区的现存确诊暂无法获取。","locationId":110000,"statisticsData":"https://file1.dxycdn.com/2020/0223/004/3398299758115524169-135.json","highDangerCount":5,"midDangerCount":16,"detectOrgCount":300,"vaccinationOrgCount":2,"cities":[{"cityName":"境外输入","currentConfirmedCount":233,"confirmedCount":705,"suspectedCount":3,"curedCount":472,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"233"},{"cityName":"朝阳区","currentConfirmedCount":162,"confirmedCount":242,"suspectedCount":0,"curedCount":80,"deadCount":0,"highDangerCount":3,"midDangerCount":14,"locationId":110105,"currentConfirmedCountStr":"162"},{"cityName":"丰台区","currentConfirmedCount":80,"confirmedCount":366,"suspectedCount":0,"curedCount":286,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110106,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"房山区","currentConfirmedCount":45,"confirmedCount":65,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":2,"midDangerCount":2,"locationId":110111,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"海淀区","currentConfirmedCount":33,"confirmedCount":115,"suspectedCount":0,"curedCount":82,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110108,"currentConfirmedCountStr":"33"},{"cityName":"昌平区","currentConfirmedCount":26,"confirmedCount":76,"suspectedCount":0,"curedCount":50,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110114,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"东城区","currentConfirmedCount":23,"confirmedCount":42,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110101,"currentConfirmedCountStr":"23"},{"cityName":"顺义区","currentConfirmedCount":22,"confirmedCount":67,"suspectedCount":0,"curedCount":45,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110113,"currentConfirmedCountStr":"22"},{"cityName":"通州区","currentConfirmedCount":14,"confirmedCount":34,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110112,"currentConfirmedCountStr":"14"},{"cityName":"大兴区","currentConfirmedCount":13,"confirmedCount":147,"suspectedCount":0,"curedCount":134,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110115,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"西城区","currentConfirmedCount":11,"confirmedCount":70,"suspectedCount":0,"curedCount":59,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110102,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"经济开发区","currentConfirmedCount":3,"confirmedCount":3,"suspectedCount":0,"curedCount":0,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"外地来京","currentConfirmedCount":2,"confirmedCount":27,"suspectedCount":0,"curedCount":25,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"门头沟区","currentConfirmedCount":1,"confirmedCount":6,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110109,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"延庆区","currentConfirmedCount":1,"confirmedCount":2,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110119,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"石景山区","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110107,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"怀柔区","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110116,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"密云区","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":110118,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"待明确地区","currentConfirmedCount":-485,"confirmedCount":6,"suspectedCount":0,"curedCount":482,"deadCount":9,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-485"}],"dangerAreas":[{"cityName":"朝阳区","areaName":"高碑店乡方家园社区","dangerLevel":1},{"cityName":"朝阳区","areaName":"潘家园街道松榆里社区","dangerLevel":1},{"cityName":"朝阳区","areaName":"十八里店乡周家庄中路19号院","dangerLevel":1},{"cityName":"房山区","areaName":"窦店镇燕都世界名园社区","dangerLevel":1},{"cityName":"房山区","areaName":"窦店镇于庄村","dangerLevel":1},{"cityName":"朝阳区","areaName":"八里庄街道红庙北里社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"朝阳区十八里店乡弘善家园","dangerLevel":2},{"cityName":"朝阳区","areaName":"朝阳区双井街道广和南里二条","dangerLevel":2},{"cityName":"朝阳区","areaName":"垡头街道垡头西里三区","dangerLevel":2},{"cityName":"朝阳区","areaName":"垡头街道垡头西里社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"南磨房乡南新园社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"南磨房乡双龙南里","dangerLevel":2},{"cityName":"朝阳区","areaName":"潘家园街道松榆东里社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"潘家园街道松榆西里社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"潘家园街道武圣东里","dangerLevel":2},{"cityName":"朝阳区","areaName":"十八里店乡周家庄中路20号院","dangerLevel":2},{"cityName":"朝阳区","areaName":"孙河乡康营家园三社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"三间房乡艺水芳园社区","dangerLevel":2},{"cityName":"朝阳区","areaName":"双井街道黄木厂社区","dangerLevel":2},{"cityName":"房山区","areaName":"窦店镇田家园村","dangerLevel":2},{"cityName":"房山区","areaName":"窦店镇小高舍村","dangerLevel":2}]},{"provinceName":"广东省","provinceShortName":"广东","currentConfirmedCount":172,"confirmedCount":6994,"suspectedCount":25,"curedCount":6814,"deadCount":8,"comment":"广东卫健委未明确部分治愈病例的地市归属,因此各地市的现存确诊存在一定偏差。","locationId":440000,"statisticsData":"https://file1.dxycdn.com/2020/0223/281/3398299758115524068-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":120,"vaccinationOrgCount":42,"cities":[{"cityName":"广州","currentConfirmedCount":144,"confirmedCount":2630,"suspectedCount":3,"curedCount":2485,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440100,"currentConfirmedCountStr":"144"},{"cityName":"深圳","currentConfirmedCount":15,"confirmedCount":2510,"suspectedCount":3,"curedCount":2492,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":440300,"currentConfirmedCountStr":"15"},{"cityName":"湛江","currentConfirmedCount":8,"confirmedCount":56,"suspectedCount":2,"curedCount":48,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440800,"currentConfirmedCountStr":"8"},{"cityName":"佛山","currentConfirmedCount":3,"confirmedCount":368,"suspectedCount":1,"curedCount":365,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440600,"currentConfirmedCountStr":"3"},{"cityName":"珠海","currentConfirmedCount":1,"confirmedCount":348,"suspectedCount":2,"curedCount":346,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440400,"currentConfirmedCountStr":"1"},{"cityName":"惠州","currentConfirmedCount":1,"confirmedCount":108,"suspectedCount":0,"curedCount":107,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441300,"currentConfirmedCountStr":"1"},{"cityName":"肇庆","currentConfirmedCount":1,"confirmedCount":55,"suspectedCount":1,"curedCount":53,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":441200,"currentConfirmedCountStr":"1"},{"cityName":"汕头","currentConfirmedCount":1,"confirmedCount":27,"suspectedCount":0,"curedCount":26,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440500,"currentConfirmedCountStr":"1"},{"cityName":"韶关","currentConfirmedCount":1,"confirmedCount":12,"suspectedCount":0,"curedCount":10,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440200,"currentConfirmedCountStr":"1"},{"cityName":"东莞","currentConfirmedCount":0,"confirmedCount":494,"suspectedCount":1,"curedCount":493,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":441900,"currentConfirmedCountStr":"0"},{"cityName":"中山","currentConfirmedCount":0,"confirmedCount":122,"suspectedCount":0,"curedCount":122,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":442000,"currentConfirmedCountStr":"0"},{"cityName":"江门","currentConfirmedCount":0,"confirmedCount":101,"suspectedCount":0,"curedCount":101,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440700,"currentConfirmedCountStr":"0"},{"cityName":"阳江","currentConfirmedCount":0,"confirmedCount":52,"suspectedCount":0,"curedCount":52,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441700,"currentConfirmedCountStr":"0"},{"cityName":"茂名","currentConfirmedCount":0,"confirmedCount":24,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440900,"currentConfirmedCountStr":"0"},{"cityName":"清远","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441800,"currentConfirmedCountStr":"0"},{"cityName":"梅州","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441400,"currentConfirmedCountStr":"0"},{"cityName":"汕尾","currentConfirmedCount":0,"confirmedCount":13,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441500,"currentConfirmedCountStr":"0"},{"cityName":"揭阳","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445200,"currentConfirmedCountStr":"0"},{"cityName":"潮州","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445100,"currentConfirmedCountStr":"0"},{"cityName":"河源","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441600,"currentConfirmedCountStr":"0"},{"cityName":"云浮","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445300,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-3,"confirmedCount":0,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-3"}],"dangerAreas":[]},{"provinceName":"福建省","provinceShortName":"福建","currentConfirmedCount":70,"confirmedCount":3011,"suspectedCount":15,"curedCount":2940,"deadCount":1,"comment":"","locationId":350000,"statisticsData":"https://file1.dxycdn.com/2020/0223/744/3398299751673071813-135.json","highDangerCount":0,"midDangerCount":2,"detectOrgCount":59,"vaccinationOrgCount":156,"cities":[{"cityName":"宁德","currentConfirmedCount":36,"confirmedCount":76,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":2,"locationId":350900,"currentConfirmedCountStr":"36"},{"cityName":"境外输入人员","currentConfirmedCount":26,"confirmedCount":957,"suspectedCount":15,"curedCount":931,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"26"},{"cityName":"泉州","currentConfirmedCount":9,"confirmedCount":1188,"suspectedCount":0,"curedCount":1179,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350500,"currentConfirmedCountStr":"9"},{"cityName":"莆田","currentConfirmedCount":1,"confirmedCount":322,"suspectedCount":0,"curedCount":321,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350300,"currentConfirmedCountStr":"1"},{"cityName":"厦门","currentConfirmedCount":1,"confirmedCount":311,"suspectedCount":0,"curedCount":310,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350200,"currentConfirmedCountStr":"1"},{"cityName":"福州","currentConfirmedCount":1,"confirmedCount":74,"suspectedCount":0,"curedCount":72,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":350100,"currentConfirmedCountStr":"1"},{"cityName":"南平","currentConfirmedCount":1,"confirmedCount":22,"suspectedCount":0,"curedCount":21,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350700,"currentConfirmedCountStr":"1"},{"cityName":"漳州","currentConfirmedCount":0,"confirmedCount":40,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350600,"currentConfirmedCountStr":"0"},{"cityName":"三明","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350400,"currentConfirmedCountStr":"0"},{"cityName":"龙岩","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":350800,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-5,"confirmedCount":0,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-5"}],"dangerAreas":[{"cityName":"宁德","areaName":"八都村","dangerLevel":2},{"cityName":"宁德","areaName":"下坂村","dangerLevel":2}]},{"provinceName":"江苏省","provinceShortName":"江苏","currentConfirmedCount":70,"confirmedCount":2192,"suspectedCount":3,"curedCount":2122,"deadCount":0,"comment":"","locationId":320000,"statisticsData":"https://file1.dxycdn.com/2020/0223/111/3398299753820971290-135.json","highDangerCount":0,"midDangerCount":4,"detectOrgCount":395,"vaccinationOrgCount":261,"cities":[{"cityName":"徐州","currentConfirmedCount":69,"confirmedCount":148,"suspectedCount":0,"curedCount":79,"deadCount":0,"highDangerCount":0,"midDangerCount":2,"locationId":320300,"currentConfirmedCountStr":"69"},{"cityName":"盐城","currentConfirmedCount":39,"confirmedCount":66,"suspectedCount":0,"curedCount":27,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320900,"currentConfirmedCountStr":"39"},{"cityName":"南京","currentConfirmedCount":28,"confirmedCount":363,"suspectedCount":0,"curedCount":335,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320100,"currentConfirmedCountStr":"28"},{"cityName":"苏州","currentConfirmedCount":23,"confirmedCount":228,"suspectedCount":0,"curedCount":205,"deadCount":0,"highDangerCount":0,"midDangerCount":2,"locationId":320500,"currentConfirmedCountStr":"23"},{"cityName":"无锡","currentConfirmedCount":13,"confirmedCount":68,"suspectedCount":0,"curedCount":55,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320200,"currentConfirmedCountStr":"13"},{"cityName":"宿迁","currentConfirmedCount":13,"confirmedCount":29,"suspectedCount":0,"curedCount":16,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":321300,"currentConfirmedCountStr":"13"},{"cityName":"镇江","currentConfirmedCount":12,"confirmedCount":24,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":321100,"currentConfirmedCountStr":"12"},{"cityName":"泰州","currentConfirmedCount":9,"confirmedCount":46,"suspectedCount":0,"curedCount":37,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":321200,"currentConfirmedCountStr":"9"},{"cityName":"淮安","currentConfirmedCount":4,"confirmedCount":82,"suspectedCount":0,"curedCount":78,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320800,"currentConfirmedCountStr":"4"},{"cityName":"连云港","currentConfirmedCount":2,"confirmedCount":195,"suspectedCount":0,"curedCount":193,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320700,"currentConfirmedCountStr":"2"},{"cityName":"扬州","currentConfirmedCount":1,"confirmedCount":594,"suspectedCount":0,"curedCount":593,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":321000,"currentConfirmedCountStr":"1"},{"cityName":"境外输入","currentConfirmedCount":1,"confirmedCount":224,"suspectedCount":1,"curedCount":223,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"1"},{"cityName":"南通","currentConfirmedCount":1,"confirmedCount":41,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320600,"currentConfirmedCountStr":"1"},{"cityName":"常州","currentConfirmedCount":0,"confirmedCount":84,"suspectedCount":0,"curedCount":84,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":320400,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-145,"confirmedCount":0,"suspectedCount":0,"curedCount":145,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"-145"}],"dangerAreas":[{"cityName":"徐州","areaName":"睢宁县景湖小区一期4号楼","dangerLevel":2},{"cityName":"徐州","areaName":"睢宁县李岳小区18号楼","dangerLevel":2},{"cityName":"苏州","areaName":"昆山市通湖路公园壹号13幢","dangerLevel":2},{"cityName":"苏州","areaName":"昆山市中山路假日花苑3幢、4幢","dangerLevel":2}]},{"provinceName":"山东省","provinceShortName":"山东","currentConfirmedCount":67,"confirmedCount":2702,"suspectedCount":14,"curedCount":2628,"deadCount":7,"comment":"","locationId":370000,"statisticsData":"https://file1.dxycdn.com/2020/0223/601/3398299749526003726-135.json","highDangerCount":0,"midDangerCount":4,"detectOrgCount":221,"vaccinationOrgCount":113,"cities":[{"cityName":"滨州","currentConfirmedCount":87,"confirmedCount":217,"suspectedCount":0,"curedCount":130,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":371600,"currentConfirmedCountStr":"87"},{"cityName":"威海","currentConfirmedCount":39,"confirmedCount":107,"suspectedCount":0,"curedCount":67,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":371000,"currentConfirmedCountStr":"39"},{"cityName":"济南","currentConfirmedCount":36,"confirmedCount":116,"suspectedCount":0,"curedCount":80,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":370100,"currentConfirmedCountStr":"36"},{"cityName":"德州","currentConfirmedCount":36,"confirmedCount":114,"suspectedCount":0,"curedCount":76,"deadCount":2,"highDangerCount":0,"midDangerCount":0,"locationId":371400,"currentConfirmedCountStr":"36"},{"cityName":"淄博","currentConfirmedCount":34,"confirmedCount":77,"suspectedCount":0,"curedCount":42,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":370300,"currentConfirmedCountStr":"34"},{"cityName":"青岛","currentConfirmedCount":9,"confirmedCount":990,"suspectedCount":0,"curedCount":980,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":370200,"currentConfirmedCountStr":"9"},{"cityName":"临沂","currentConfirmedCount":6,"confirmedCount":66,"suspectedCount":0,"curedCount":60,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":371300,"currentConfirmedCountStr":"6"},{"cityName":"境外输入","currentConfirmedCount":5,"confirmedCount":439,"suspectedCount":1,"curedCount":434,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"5"},{"cityName":"烟台","currentConfirmedCount":5,"confirmedCount":90,"suspectedCount":0,"curedCount":85,"deadCount":0,"highDangerCount":0,"midDangerCount":4,"locationId":370600,"currentConfirmedCountStr":"5"},{"cityName":"日照","currentConfirmedCount":4,"confirmedCount":37,"suspectedCount":0,"curedCount":33,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":371100,"currentConfirmedCountStr":"4"},{"cityName":"济宁","currentConfirmedCount":0,"confirmedCount":263,"suspectedCount":0,"curedCount":263,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":370800,"currentConfirmedCountStr":"0"},{"cityName":"潍坊","currentConfirmedCount":0,"confirmedCount":52,"suspectedCount":0,"curedCount":52,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":370700,"currentConfirmedCountStr":"0"},{"cityName":"泰安","currentConfirmedCount":0,"confirmedCount":43,"suspectedCount":0,"curedCount":41,"deadCount":2,"highDangerCount":0,"midDangerCount":0,"locationId":370900,"currentConfirmedCountStr":"0"},{"cityName":"聊城","currentConfirmedCount":0,"confirmedCount":38,"suspectedCount":0,"curedCount":38,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":371500,"currentConfirmedCountStr":"0"},{"cityName":"枣庄","currentConfirmedCount":0,"confirmedCount":33,"suspectedCount":0,"curedCount":33,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":370400,"currentConfirmedCountStr":"0"},{"cityName":"菏泽","currentConfirmedCount":0,"confirmedCount":20,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":371700,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-194,"confirmedCount":0,"suspectedCount":0,"curedCount":194,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-194"}],"dangerAreas":[{"cityName":"烟台","areaName":"蓬莱区登州街道登州路170号家宾馆","dangerLevel":2},{"cityName":"烟台","areaName":"蓬莱区登州街道登州路万祥花园1号欣蘭砂锅店","dangerLevel":2},{"cityName":"烟台","areaName":"招远市金岭镇大户陈家村","dangerLevel":2},{"cityName":"烟台","areaName":"招远市金岭镇西梧桐夼村","dangerLevel":2}]},{"provinceName":"内蒙古自治区","provinceShortName":"内蒙古","currentConfirmedCount":48,"confirmedCount":1739,"suspectedCount":35,"curedCount":1690,"deadCount":1,"comment":"","locationId":150000,"statisticsData":"https://file1.dxycdn.com/2020/0223/783/3398299758115938727-135.json","highDangerCount":0,"midDangerCount":4,"detectOrgCount":248,"vaccinationOrgCount":9,"cities":[{"cityName":"呼伦贝尔","currentConfirmedCount":34,"confirmedCount":645,"suspectedCount":0,"curedCount":611,"deadCount":0,"highDangerCount":0,"midDangerCount":4,"locationId":150700,"currentConfirmedCountStr":"34"},{"cityName":"境外输入人员","currentConfirmedCount":10,"confirmedCount":347,"suspectedCount":35,"curedCount":337,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"10"},{"cityName":"包头","currentConfirmedCount":3,"confirmedCount":39,"suspectedCount":0,"curedCount":36,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150200,"currentConfirmedCountStr":"3"},{"cityName":"赤峰","currentConfirmedCount":1,"confirmedCount":12,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150400,"currentConfirmedCountStr":"1"},{"cityName":"呼和浩特","currentConfirmedCount":0,"confirmedCount":446,"suspectedCount":0,"curedCount":446,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150100,"currentConfirmedCountStr":"0"},{"cityName":"阿拉善盟","currentConfirmedCount":0,"confirmedCount":167,"suspectedCount":0,"curedCount":167,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":152900,"currentConfirmedCountStr":"0"},{"cityName":"锡林郭勒盟","currentConfirmedCount":0,"confirmedCount":29,"suspectedCount":0,"curedCount":29,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":152500,"currentConfirmedCountStr":"0"},{"cityName":"通辽","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150500,"currentConfirmedCountStr":"0"},{"cityName":"鄂尔多斯","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150600,"currentConfirmedCountStr":"0"},{"cityName":"巴彦淖尔","currentConfirmedCount":0,"confirmedCount":13,"suspectedCount":0,"curedCount":12,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":150800,"currentConfirmedCountStr":"0"},{"cityName":"乌兰察布","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150900,"currentConfirmedCountStr":"0"},{"cityName":"兴安盟","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":152200,"currentConfirmedCountStr":"0"},{"cityName":"乌海市","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":150300,"currentConfirmedCountStr":"0"}],"dangerAreas":[{"cityName":"呼伦贝尔","areaName":"满洲里市北区街道","dangerLevel":2},{"cityName":"呼伦贝尔","areaName":"满洲里市东山街道","dangerLevel":2},{"cityName":"呼伦贝尔","areaName":"满洲里市南区街道","dangerLevel":2},{"cityName":"呼伦贝尔","areaName":"满洲里市兴华街道","dangerLevel":2}]},{"provinceName":"湖南省","provinceShortName":"湖南","currentConfirmedCount":46,"confirmedCount":1379,"suspectedCount":2,"curedCount":1329,"deadCount":4,"comment":"","locationId":430000,"statisticsData":"https://file1.dxycdn.com/2020/0223/440/3398299751673072079-135.json","highDangerCount":0,"midDangerCount":4,"detectOrgCount":286,"vaccinationOrgCount":65,"cities":[{"cityName":"邵阳","currentConfirmedCount":46,"confirmedCount":149,"suspectedCount":0,"curedCount":102,"deadCount":1,"highDangerCount":0,"midDangerCount":4,"locationId":430500,"currentConfirmedCountStr":"46"},{"cityName":"娄底","currentConfirmedCount":6,"confirmedCount":82,"suspectedCount":0,"curedCount":76,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":431300,"currentConfirmedCountStr":"6"},{"cityName":"长沙","currentConfirmedCount":2,"confirmedCount":271,"suspectedCount":0,"curedCount":267,"deadCount":2,"highDangerCount":0,"midDangerCount":0,"locationId":430100,"currentConfirmedCountStr":"2"},{"cityName":"境外输入","currentConfirmedCount":1,"confirmedCount":133,"suspectedCount":2,"curedCount":132,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"1"},{"cityName":"永州","currentConfirmedCount":1,"confirmedCount":45,"suspectedCount":0,"curedCount":44,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":431100,"currentConfirmedCountStr":"1"},{"cityName":"郴州","currentConfirmedCount":1,"confirmedCount":40,"suspectedCount":0,"curedCount":39,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":431000,"currentConfirmedCountStr":"1"},{"cityName":"湘西自治州","currentConfirmedCount":1,"confirmedCount":11,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":433100,"currentConfirmedCountStr":"1"},{"cityName":"岳阳","currentConfirmedCount":0,"confirmedCount":158,"suspectedCount":0,"curedCount":157,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":430600,"currentConfirmedCountStr":"0"},{"cityName":"株洲","currentConfirmedCount":0,"confirmedCount":110,"suspectedCount":0,"curedCount":110,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430200,"currentConfirmedCountStr":"0"},{"cityName":"常德","currentConfirmedCount":0,"confirmedCount":82,"suspectedCount":0,"curedCount":82,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430700,"currentConfirmedCountStr":"0"},{"cityName":"张家界","currentConfirmedCount":0,"confirmedCount":77,"suspectedCount":0,"curedCount":77,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430800,"currentConfirmedCountStr":"0"},{"cityName":"益阳","currentConfirmedCount":0,"confirmedCount":65,"suspectedCount":0,"curedCount":65,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430900,"currentConfirmedCountStr":"0"},{"cityName":"怀化","currentConfirmedCount":0,"confirmedCount":64,"suspectedCount":0,"curedCount":64,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":431200,"currentConfirmedCountStr":"0"},{"cityName":"衡阳","currentConfirmedCount":0,"confirmedCount":53,"suspectedCount":0,"curedCount":53,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430400,"currentConfirmedCountStr":"0"},{"cityName":"湘潭","currentConfirmedCount":0,"confirmedCount":39,"suspectedCount":0,"curedCount":39,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":430300,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-12,"confirmedCount":0,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"-12"}],"dangerAreas":[{"cityName":"邵阳","areaName":"北塔区陈家桥镇杨旗岭社区的云山路以北、资兴路以东、龙源路以南、宝苑路以西的围合区域","dangerLevel":2},{"cityName":"邵阳","areaName":"大祥区城北路街道西外街社区的西外街路以南、民族二巷路以西、红旗西路以北、恒大未来城三期围墙以东的围合区域","dangerLevel":2},{"cityName":"邵阳","areaName":"双清区龙须塘街道","dangerLevel":2},{"cityName":"邵阳","areaName":"双清区石桥街道","dangerLevel":2}]},{"provinceName":"河南省","provinceShortName":"河南","currentConfirmedCount":44,"confirmedCount":2900,"suspectedCount":1,"curedCount":2834,"deadCount":22,"comment":"","locationId":410000,"statisticsData":"https://file1.dxycdn.com/2020/0223/958/3398299751673487456-135.json","highDangerCount":0,"midDangerCount":3,"detectOrgCount":197,"vaccinationOrgCount":234,"cities":[{"cityName":"周口","currentConfirmedCount":81,"confirmedCount":182,"suspectedCount":0,"curedCount":100,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":411600,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"安阳","currentConfirmedCount":24,"confirmedCount":550,"suspectedCount":0,"curedCount":526,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":410500,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"郑州","currentConfirmedCount":21,"confirmedCount":509,"suspectedCount":0,"curedCount":483,"deadCount":5,"highDangerCount":0,"midDangerCount":0,"locationId":410100,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"信阳","currentConfirmedCount":10,"confirmedCount":287,"suspectedCount":0,"curedCount":275,"deadCount":2,"highDangerCount":0,"midDangerCount":2,"locationId":411500,"currentConfirmedCountStr":"10"},{"cityName":"濮阳","currentConfirmedCount":9,"confirmedCount":26,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":410900,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"漯河","currentConfirmedCount":8,"confirmedCount":44,"suspectedCount":0,"curedCount":36,"deadCount":0,"highDangerCount":0,"midDangerCount":1,"locationId":411100,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"洛阳","currentConfirmedCount":4,"confirmedCount":45,"suspectedCount":0,"curedCount":40,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":410300,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"开封","currentConfirmedCount":4,"confirmedCount":37,"suspectedCount":0,"curedCount":33,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":410200,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"境外输入","currentConfirmedCount":2,"confirmedCount":211,"suspectedCount":1,"curedCount":209,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"2"},{"cityName":"许昌","currentConfirmedCount":1,"confirmedCount":406,"suspectedCount":0,"curedCount":404,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":411000,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"商丘","currentConfirmedCount":1,"confirmedCount":110,"suspectedCount":0,"curedCount":106,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":411400,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"南阳","currentConfirmedCount":0,"confirmedCount":156,"suspectedCount":0,"curedCount":153,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":411300,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"驻马店","currentConfirmedCount":0,"confirmedCount":143,"suspectedCount":0,"curedCount":143,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":411700,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"平顶山","currentConfirmedCount":0,"confirmedCount":59,"suspectedCount":0,"curedCount":58,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":410400,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"新乡","currentConfirmedCount":0,"confirmedCount":57,"suspectedCount":0,"curedCount":54,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":410700,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"焦作","currentConfirmedCount":0,"confirmedCount":46,"suspectedCount":0,"curedCount":45,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":410800,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"鹤壁","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":410600,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"三门峡","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":7,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":411200,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"济源","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":419001,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"待明确地区","currentConfirmedCount":-121,"confirmedCount":0,"suspectedCount":0,"curedCount":121,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-121"}],"dangerAreas":[{"cityName":"信阳","areaName":"固始县石佛店镇漂桥村","dangerLevel":2},{"cityName":"信阳","areaName":"固始县张广庙镇龙井村","dangerLevel":2},{"cityName":"漯河","areaName":"郾城区海河路沙澧文景苑小区","dangerLevel":2}]},{"provinceName":"广西壮族自治区","provinceShortName":"广西","currentConfirmedCount":44,"confirmedCount":1579,"suspectedCount":0,"curedCount":1533,"deadCount":2,"comment":"","locationId":450000,"statisticsData":"https://file1.dxycdn.com/2020/0223/536/3398299758115523880-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":270,"vaccinationOrgCount":15,"cities":[{"cityName":"境外输入","currentConfirmedCount":40,"confirmedCount":947,"suspectedCount":0,"curedCount":907,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"40"},{"cityName":"百色","currentConfirmedCount":4,"confirmedCount":283,"suspectedCount":0,"curedCount":279,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451000,"currentConfirmedCountStr":"4"},{"cityName":"防城港","currentConfirmedCount":0,"confirmedCount":90,"suspectedCount":0,"curedCount":90,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450600,"currentConfirmedCountStr":"0"},{"cityName":"南宁","currentConfirmedCount":0,"confirmedCount":60,"suspectedCount":0,"curedCount":60,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450100,"currentConfirmedCountStr":"0"},{"cityName":"北海","currentConfirmedCount":0,"confirmedCount":44,"suspectedCount":0,"curedCount":43,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":450500,"currentConfirmedCountStr":"0"},{"cityName":"桂林","currentConfirmedCount":0,"confirmedCount":34,"suspectedCount":0,"curedCount":34,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450300,"currentConfirmedCountStr":"0"},{"cityName":"河池","currentConfirmedCount":0,"confirmedCount":28,"suspectedCount":0,"curedCount":27,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":451200,"currentConfirmedCountStr":"0"},{"cityName":"钦州","currentConfirmedCount":0,"confirmedCount":27,"suspectedCount":0,"curedCount":27,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450700,"currentConfirmedCountStr":"0"},{"cityName":"柳州","currentConfirmedCount":0,"confirmedCount":24,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450200,"currentConfirmedCountStr":"0"},{"cityName":"玉林","currentConfirmedCount":0,"confirmedCount":12,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450900,"currentConfirmedCountStr":"0"},{"cityName":"来宾","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451300,"currentConfirmedCountStr":"0"},{"cityName":"贵港","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450800,"currentConfirmedCountStr":"0"},{"cityName":"梧州","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450400,"currentConfirmedCountStr":"0"},{"cityName":"贺州","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451100,"currentConfirmedCountStr":"0"},{"cityName":"崇左","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451400,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"山西省","provinceShortName":"山西","currentConfirmedCount":42,"confirmedCount":418,"suspectedCount":64,"curedCount":376,"deadCount":0,"comment":"","locationId":140000,"statisticsData":"https://file1.dxycdn.com/2020/0223/196/3398299755968040081-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":183,"vaccinationOrgCount":70,"cities":[{"cityName":"太原","currentConfirmedCount":35,"confirmedCount":108,"suspectedCount":0,"curedCount":73,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140100,"currentConfirmedCountStr":"35"},{"cityName":"朔州","currentConfirmedCount":7,"confirmedCount":20,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140600,"currentConfirmedCountStr":"7"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":137,"suspectedCount":64,"curedCount":137,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"晋中","currentConfirmedCount":0,"confirmedCount":59,"suspectedCount":0,"curedCount":59,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140700,"currentConfirmedCountStr":"0"},{"cityName":"运城","currentConfirmedCount":0,"confirmedCount":32,"suspectedCount":0,"curedCount":32,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140800,"currentConfirmedCountStr":"0"},{"cityName":"大同","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140200,"currentConfirmedCountStr":"0"},{"cityName":"忻州","currentConfirmedCount":0,"confirmedCount":14,"suspectedCount":0,"curedCount":14,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140900,"currentConfirmedCountStr":"0"},{"cityName":"晋城","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140500,"currentConfirmedCountStr":"0"},{"cityName":"长治","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140400,"currentConfirmedCountStr":"0"},{"cityName":"吕梁","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":141100,"currentConfirmedCountStr":"0"},{"cityName":"阳泉","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":140300,"currentConfirmedCountStr":"0"},{"cityName":"临汾","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":141000,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"青海省","provinceShortName":"青海","currentConfirmedCount":39,"confirmedCount":95,"suspectedCount":0,"curedCount":56,"deadCount":0,"comment":"","locationId":630000,"statisticsData":"https://file1.dxycdn.com/2020/0223/581/3398299758115524121-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":59,"vaccinationOrgCount":0,"cities":[{"cityName":"西宁","currentConfirmedCount":43,"confirmedCount":85,"suspectedCount":0,"curedCount":42,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":630100,"currentConfirmedCountStr":"43"},{"cityName":"海东","currentConfirmedCount":2,"confirmedCount":5,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":630200,"currentConfirmedCountStr":"2"},{"cityName":"海北州","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":632200,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-6,"confirmedCount":2,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"-6"}],"dangerAreas":[]},{"provinceName":"海南省","provinceShortName":"海南","currentConfirmedCount":36,"confirmedCount":288,"suspectedCount":18,"curedCount":246,"deadCount":6,"comment":"","locationId":460000,"statisticsData":"https://file1.dxycdn.com/2020/0223/126/3398299753820555862-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":38,"vaccinationOrgCount":16,"cities":[{"cityName":"三亚","currentConfirmedCount":27,"confirmedCount":130,"suspectedCount":0,"curedCount":102,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":460200,"currentConfirmedCountStr":"27"},{"cityName":"海口","currentConfirmedCount":10,"confirmedCount":51,"suspectedCount":0,"curedCount":41,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":460100,"currentConfirmedCountStr":"10"},{"cityName":"陵水","currentConfirmedCount":6,"confirmedCount":10,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469028,"currentConfirmedCountStr":"6"},{"cityName":"琼海","currentConfirmedCount":5,"confirmedCount":11,"suspectedCount":0,"curedCount":5,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":469002,"currentConfirmedCountStr":"5"},{"cityName":"儋州","currentConfirmedCount":1,"confirmedCount":16,"suspectedCount":0,"curedCount":14,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":460400,"currentConfirmedCountStr":"1"},{"cityName":"万宁","currentConfirmedCount":1,"confirmedCount":14,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469006,"currentConfirmedCountStr":"1"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":18,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"澄迈","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":8,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":469023,"currentConfirmedCountStr":"0"},{"cityName":"昌江","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469026,"currentConfirmedCountStr":"0"},{"cityName":"临高","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469024,"currentConfirmedCountStr":"0"},{"cityName":"定安","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":2,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":469021,"currentConfirmedCountStr":"0"},{"cityName":"文昌","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469005,"currentConfirmedCountStr":"0"},{"cityName":"东方","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":2,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":469007,"currentConfirmedCountStr":"0"},{"cityName":"保亭","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469029,"currentConfirmedCountStr":"0"},{"cityName":"乐东","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469027,"currentConfirmedCountStr":"0"},{"cityName":"琼中","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":469030,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-14,"confirmedCount":0,"suspectedCount":0,"curedCount":14,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-14"}],"dangerAreas":[]},{"provinceName":"四川省","provinceShortName":"四川","currentConfirmedCount":34,"confirmedCount":2011,"suspectedCount":22,"curedCount":1974,"deadCount":3,"comment":"","locationId":510000,"statisticsData":"https://file1.dxycdn.com/2020/0223/926/3398299755968455035-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":413,"vaccinationOrgCount":131,"cities":[{"cityName":"成都","currentConfirmedCount":24,"confirmedCount":1577,"suspectedCount":0,"curedCount":1550,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":510100,"currentConfirmedCountStr":"24"},{"cityName":"巴中","currentConfirmedCount":7,"confirmedCount":31,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511900,"currentConfirmedCountStr":"7"},{"cityName":"广安","currentConfirmedCount":2,"confirmedCount":33,"suspectedCount":0,"curedCount":31,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511600,"currentConfirmedCountStr":"2"},{"cityName":"遂宁","currentConfirmedCount":1,"confirmedCount":22,"suspectedCount":0,"curedCount":21,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510900,"currentConfirmedCountStr":"1"},{"cityName":"甘孜州","currentConfirmedCount":0,"confirmedCount":78,"suspectedCount":0,"curedCount":78,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":513300,"currentConfirmedCountStr":"0"},{"cityName":"达州","currentConfirmedCount":0,"confirmedCount":42,"suspectedCount":0,"curedCount":42,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511700,"currentConfirmedCountStr":"0"},{"cityName":"南充","currentConfirmedCount":0,"confirmedCount":40,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511300,"currentConfirmedCountStr":"0"},{"cityName":"泸州","currentConfirmedCount":0,"confirmedCount":25,"suspectedCount":0,"curedCount":25,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510500,"currentConfirmedCountStr":"0"},{"cityName":"绵阳","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510700,"currentConfirmedCountStr":"0"},{"cityName":"内江","currentConfirmedCount":0,"confirmedCount":22,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511000,"currentConfirmedCountStr":"0"},{"cityName":"德阳","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510600,"currentConfirmedCountStr":"0"},{"cityName":"攀枝花","currentConfirmedCount":0,"confirmedCount":16,"suspectedCount":0,"curedCount":16,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510400,"currentConfirmedCountStr":"0"},{"cityName":"凉山州","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":1,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":513400,"currentConfirmedCountStr":"0"},{"cityName":"宜宾","currentConfirmedCount":0,"confirmedCount":13,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511500,"currentConfirmedCountStr":"0"},{"cityName":"乐山","currentConfirmedCount":0,"confirmedCount":12,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511100,"currentConfirmedCountStr":"0"},{"cityName":"自贡","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510300,"currentConfirmedCountStr":"0"},{"cityName":"广元","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":510800,"currentConfirmedCountStr":"0"},{"cityName":"眉山","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511400,"currentConfirmedCountStr":"0"},{"cityName":"雅安","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":511800,"currentConfirmedCountStr":"0"},{"cityName":"资阳","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":512000,"currentConfirmedCountStr":"0"},{"cityName":"阿坝州","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":513200,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"辽宁省","provinceShortName":"辽宁","currentConfirmedCount":34,"confirmedCount":1643,"suspectedCount":0,"curedCount":1607,"deadCount":2,"comment":"","locationId":210000,"statisticsData":"https://file1.dxycdn.com/2020/0223/815/3398299758115938736-135.json","highDangerCount":0,"midDangerCount":5,"detectOrgCount":192,"vaccinationOrgCount":204,"cities":[{"cityName":"营口","currentConfirmedCount":197,"confirmedCount":208,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210800,"currentConfirmedCountStr":"197"},{"cityName":"沈阳","currentConfirmedCount":160,"confirmedCount":241,"suspectedCount":0,"curedCount":81,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210100,"currentConfirmedCountStr":"160"},{"cityName":"大连","currentConfirmedCount":150,"confirmedCount":620,"suspectedCount":0,"curedCount":470,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210200,"currentConfirmedCountStr":"150"},{"cityName":"丹东","currentConfirmedCount":29,"confirmedCount":40,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":5,"locationId":210600,"currentConfirmedCountStr":"29"},{"cityName":"鞍山","currentConfirmedCount":15,"confirmedCount":19,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210300,"currentConfirmedCountStr":"15"},{"cityName":"铁岭","currentConfirmedCount":6,"confirmedCount":14,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":211200,"currentConfirmedCountStr":"6"},{"cityName":"锦州","currentConfirmedCount":3,"confirmedCount":15,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210700,"currentConfirmedCountStr":"3"},{"cityName":"盘锦","currentConfirmedCount":3,"confirmedCount":14,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":211100,"currentConfirmedCountStr":"3"},{"cityName":"阜新","currentConfirmedCount":2,"confirmedCount":10,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210900,"currentConfirmedCountStr":"2"},{"cityName":"境外输入","currentConfirmedCount":1,"confirmedCount":211,"suspectedCount":0,"curedCount":210,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"1"},{"cityName":"本溪","currentConfirmedCount":1,"confirmedCount":4,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210500,"currentConfirmedCountStr":"1"},{"cityName":"葫芦岛","currentConfirmedCount":0,"confirmedCount":227,"suspectedCount":0,"curedCount":226,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":211400,"currentConfirmedCountStr":"0"},{"cityName":"辽阳","currentConfirmedCount":0,"confirmedCount":12,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":211000,"currentConfirmedCountStr":"0"},{"cityName":"朝阳","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":6,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":211300,"currentConfirmedCountStr":"0"},{"cityName":"抚顺","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":210400,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-533,"confirmedCount":0,"suspectedCount":0,"curedCount":533,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-533"}],"dangerAreas":[{"cityName":"丹东","areaName":"振兴区丹建锦园93号楼","dangerLevel":2},{"cityName":"丹东","areaName":"振兴区丹建锦园95号楼","dangerLevel":2},{"cityName":"丹东","areaName":"振兴区福临花园小区","dangerLevel":2},{"cityName":"丹东","areaName":"振兴区文安新村小区","dangerLevel":2},{"cityName":"丹东","areaName":"振兴区知春园小区一期","dangerLevel":2}]},{"provinceName":"云南省","provinceShortName":"云南","currentConfirmedCount":31,"confirmedCount":2117,"suspectedCount":22,"curedCount":2084,"deadCount":2,"comment":"云南卫健委未明确部分治愈病例的地市归属,因此各地市的现存确诊存在一定偏差。","locationId":530000,"statisticsData":"https://file1.dxycdn.com/2020/0223/159/3398299758115523929-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":397,"vaccinationOrgCount":2,"cities":[{"cityName":"德宏州","currentConfirmedCount":84,"confirmedCount":379,"suspectedCount":0,"curedCount":295,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":533100,"currentConfirmedCountStr":"84"},{"cityName":"红河州","currentConfirmedCount":29,"confirmedCount":38,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":532500,"currentConfirmedCountStr":"29"},{"cityName":"境外输入","currentConfirmedCount":18,"confirmedCount":1487,"suspectedCount":22,"curedCount":1469,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"18"},{"cityName":"临沧","currentConfirmedCount":12,"confirmedCount":13,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530900,"currentConfirmedCountStr":"12"},{"cityName":"昆明","currentConfirmedCount":8,"confirmedCount":66,"suspectedCount":0,"curedCount":58,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530100,"currentConfirmedCountStr":"8"},{"cityName":"文山州","currentConfirmedCount":8,"confirmedCount":13,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":532600,"currentConfirmedCountStr":"8"},{"cityName":"西双版纳","currentConfirmedCount":6,"confirmedCount":21,"suspectedCount":0,"curedCount":14,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":532800,"currentConfirmedCountStr":"6"},{"cityName":"普洱","currentConfirmedCount":6,"confirmedCount":10,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530800,"currentConfirmedCountStr":"6"},{"cityName":"曲靖","currentConfirmedCount":2,"confirmedCount":15,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530300,"currentConfirmedCountStr":"2"},{"cityName":"保山","currentConfirmedCount":2,"confirmedCount":11,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530500,"currentConfirmedCountStr":"2"},{"cityName":"昭通","currentConfirmedCount":1,"confirmedCount":26,"suspectedCount":0,"curedCount":25,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530600,"currentConfirmedCountStr":"1"},{"cityName":"玉溪","currentConfirmedCount":0,"confirmedCount":14,"suspectedCount":0,"curedCount":13,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":530400,"currentConfirmedCountStr":"0"},{"cityName":"大理州","currentConfirmedCount":0,"confirmedCount":13,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":532900,"currentConfirmedCountStr":"0"},{"cityName":"丽江","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":530700,"currentConfirmedCountStr":"0"},{"cityName":"楚雄州","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":532300,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-145,"confirmedCount":0,"suspectedCount":0,"curedCount":145,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-145"}],"dangerAreas":[]},{"provinceName":"河北省","provinceShortName":"河北","currentConfirmedCount":19,"confirmedCount":1998,"suspectedCount":0,"curedCount":1972,"deadCount":7,"comment":"河北卫健委未明确部分治愈病例的地市归属,因此各地市的现存确诊存在一定偏差。","locationId":130000,"statisticsData":"https://file1.dxycdn.com/2020/0223/473/3398299751673487477-135.json","highDangerCount":0,"midDangerCount":4,"detectOrgCount":566,"vaccinationOrgCount":178,"cities":[{"cityName":"廊坊","currentConfirmedCount":101,"confirmedCount":314,"suspectedCount":0,"curedCount":213,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":131000,"currentConfirmedCountStr":"101"},{"cityName":"沧州","currentConfirmedCount":89,"confirmedCount":138,"suspectedCount":0,"curedCount":46,"deadCount":3,"highDangerCount":0,"midDangerCount":0,"locationId":130900,"currentConfirmedCountStr":"89"},{"cityName":"唐山","currentConfirmedCount":37,"confirmedCount":95,"suspectedCount":0,"curedCount":57,"deadCount":1,"highDangerCount":0,"midDangerCount":1,"locationId":130200,"currentConfirmedCountStr":"37"},{"cityName":"保定","currentConfirmedCount":19,"confirmedCount":59,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":130600,"currentConfirmedCountStr":"19"},{"cityName":"邯郸","currentConfirmedCount":18,"confirmedCount":64,"suspectedCount":0,"curedCount":46,"deadCount":0,"highDangerCount":0,"midDangerCount":2,"locationId":130400,"currentConfirmedCountStr":"18"},{"cityName":"秦皇岛","currentConfirmedCount":12,"confirmedCount":22,"suspectedCount":0,"curedCount":9,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":130300,"currentConfirmedCountStr":"12"},{"cityName":"石家庄","currentConfirmedCount":8,"confirmedCount":1048,"suspectedCount":0,"curedCount":1039,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":130100,"currentConfirmedCountStr":"8"},{"cityName":"邢台","currentConfirmedCount":6,"confirmedCount":136,"suspectedCount":0,"curedCount":129,"deadCount":1,"highDangerCount":0,"midDangerCount":1,"locationId":130500,"currentConfirmedCountStr":"6"},{"cityName":"雄安新区","currentConfirmedCount":2,"confirmedCount":20,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"2"},{"cityName":"衡水","currentConfirmedCount":1,"confirmedCount":14,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":131100,"currentConfirmedCountStr":"1"},{"cityName":"承德","currentConfirmedCount":1,"confirmedCount":8,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":130800,"currentConfirmedCountStr":"1"},{"cityName":"张家口","currentConfirmedCount":0,"confirmedCount":43,"suspectedCount":0,"curedCount":43,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":130700,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":37,"suspectedCount":0,"curedCount":37,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"待明确","currentConfirmedCount":-275,"confirmedCount":0,"suspectedCount":0,"curedCount":275,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"}],"dangerAreas":[{"cityName":"邯郸","areaName":"鸡泽县浮图店镇","dangerLevel":2},{"cityName":"邯郸","areaName":"魏县双井镇野庄村","dangerLevel":2},{"cityName":"邢台","areaName":"南和区史召乡李牌村片区(史召乡果寨村以北、340国道以南、留垒河以西、史召桥村以东合围区域)","dangerLevel":2},{"cityName":"唐山","areaName":"迁安市野鸡坨镇邵家营村","dangerLevel":2}]},{"provinceName":"安徽省","provinceShortName":"安徽","currentConfirmedCount":10,"confirmedCount":1065,"suspectedCount":2,"curedCount":1049,"deadCount":6,"comment":"","locationId":340000,"statisticsData":"https://file1.dxycdn.com/2020/0223/734/3398299753820971301-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":412,"vaccinationOrgCount":161,"cities":[{"cityName":"池州","currentConfirmedCount":4,"confirmedCount":21,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341700,"currentConfirmedCountStr":"4"},{"cityName":"滁州","currentConfirmedCount":2,"confirmedCount":15,"suspectedCount":0,"curedCount":13,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341100,"currentConfirmedCountStr":"2"},{"cityName":"宣城","currentConfirmedCount":2,"confirmedCount":9,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341800,"currentConfirmedCountStr":"2"},{"cityName":"合肥","currentConfirmedCount":1,"confirmedCount":178,"suspectedCount":0,"curedCount":176,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":340100,"currentConfirmedCountStr":"1"},{"cityName":"淮南","currentConfirmedCount":1,"confirmedCount":36,"suspectedCount":0,"curedCount":35,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340400,"currentConfirmedCountStr":"1"},{"cityName":"阜阳","currentConfirmedCount":0,"confirmedCount":163,"suspectedCount":0,"curedCount":163,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341200,"currentConfirmedCountStr":"0"},{"cityName":"蚌埠","currentConfirmedCount":0,"confirmedCount":160,"suspectedCount":0,"curedCount":155,"deadCount":5,"highDangerCount":0,"midDangerCount":0,"locationId":340300,"currentConfirmedCountStr":"0"},{"cityName":"亳州","currentConfirmedCount":0,"confirmedCount":108,"suspectedCount":0,"curedCount":108,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341600,"currentConfirmedCountStr":"0"},{"cityName":"六安","currentConfirmedCount":0,"confirmedCount":84,"suspectedCount":0,"curedCount":84,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341500,"currentConfirmedCountStr":"0"},{"cityName":"安庆","currentConfirmedCount":0,"confirmedCount":83,"suspectedCount":0,"curedCount":83,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340800,"currentConfirmedCountStr":"0"},{"cityName":"宿州","currentConfirmedCount":0,"confirmedCount":42,"suspectedCount":0,"curedCount":42,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341300,"currentConfirmedCountStr":"0"},{"cityName":"马鞍山","currentConfirmedCount":0,"confirmedCount":41,"suspectedCount":0,"curedCount":41,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340500,"currentConfirmedCountStr":"0"},{"cityName":"芜湖","currentConfirmedCount":0,"confirmedCount":40,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340200,"currentConfirmedCountStr":"0"},{"cityName":"铜陵","currentConfirmedCount":0,"confirmedCount":33,"suspectedCount":0,"curedCount":33,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340700,"currentConfirmedCountStr":"0"},{"cityName":"淮北","currentConfirmedCount":0,"confirmedCount":28,"suspectedCount":0,"curedCount":28,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":340600,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":2,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"黄山","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":341000,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"湖北省","provinceShortName":"湖北","currentConfirmedCount":5,"confirmedCount":68398,"suspectedCount":25,"curedCount":63881,"deadCount":4512,"comment":"4.17 武汉市订正数据,武汉死亡核增1290,确诊核增325,治愈核减965","locationId":420000,"statisticsData":"https://file1.dxycdn.com/2020/0223/618/3398299751673487511-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":217,"vaccinationOrgCount":431,"cities":[{"cityName":"武汉","currentConfirmedCount":4,"confirmedCount":50423,"suspectedCount":0,"curedCount":46550,"deadCount":3869,"highDangerCount":0,"midDangerCount":0,"locationId":420100,"currentConfirmedCountStr":"4"},{"cityName":"黄冈","currentConfirmedCount":1,"confirmedCount":2913,"suspectedCount":0,"curedCount":2787,"deadCount":125,"highDangerCount":0,"midDangerCount":0,"locationId":421100,"currentConfirmedCountStr":"1"},{"cityName":"孝感","currentConfirmedCount":0,"confirmedCount":3518,"suspectedCount":0,"curedCount":3389,"deadCount":129,"highDangerCount":0,"midDangerCount":0,"locationId":420900,"currentConfirmedCountStr":"0"},{"cityName":"荆州","currentConfirmedCount":0,"confirmedCount":1582,"suspectedCount":0,"curedCount":1530,"deadCount":52,"highDangerCount":0,"midDangerCount":0,"locationId":421000,"currentConfirmedCountStr":"0"},{"cityName":"鄂州","currentConfirmedCount":0,"confirmedCount":1395,"suspectedCount":0,"curedCount":1336,"deadCount":59,"highDangerCount":0,"midDangerCount":0,"locationId":420700,"currentConfirmedCountStr":"0"},{"cityName":"随州","currentConfirmedCount":0,"confirmedCount":1307,"suspectedCount":0,"curedCount":1262,"deadCount":45,"highDangerCount":0,"midDangerCount":0,"locationId":421300,"currentConfirmedCountStr":"0"},{"cityName":"襄阳","currentConfirmedCount":0,"confirmedCount":1175,"suspectedCount":0,"curedCount":1135,"deadCount":40,"highDangerCount":0,"midDangerCount":0,"locationId":420600,"currentConfirmedCountStr":"0"},{"cityName":"黄石","currentConfirmedCount":0,"confirmedCount":1015,"suspectedCount":0,"curedCount":976,"deadCount":39,"highDangerCount":0,"midDangerCount":0,"locationId":420200,"currentConfirmedCountStr":"0"},{"cityName":"荆门","currentConfirmedCount":0,"confirmedCount":971,"suspectedCount":0,"curedCount":930,"deadCount":41,"highDangerCount":0,"midDangerCount":0,"locationId":420800,"currentConfirmedCountStr":"0"},{"cityName":"宜昌","currentConfirmedCount":0,"confirmedCount":932,"suspectedCount":0,"curedCount":895,"deadCount":37,"highDangerCount":0,"midDangerCount":0,"locationId":420500,"currentConfirmedCountStr":"0"},{"cityName":"咸宁","currentConfirmedCount":0,"confirmedCount":836,"suspectedCount":0,"curedCount":821,"deadCount":15,"highDangerCount":0,"midDangerCount":0,"locationId":421200,"currentConfirmedCountStr":"0"},{"cityName":"十堰","currentConfirmedCount":0,"confirmedCount":673,"suspectedCount":0,"curedCount":665,"deadCount":8,"highDangerCount":0,"midDangerCount":0,"locationId":420300,"currentConfirmedCountStr":"0"},{"cityName":"仙桃","currentConfirmedCount":0,"confirmedCount":575,"suspectedCount":0,"curedCount":553,"deadCount":22,"highDangerCount":0,"midDangerCount":0,"locationId":429004,"currentConfirmedCountStr":"0"},{"cityName":"天门","currentConfirmedCount":0,"confirmedCount":498,"suspectedCount":0,"curedCount":483,"deadCount":15,"highDangerCount":0,"midDangerCount":0,"locationId":429006,"currentConfirmedCountStr":"0"},{"cityName":"恩施州","currentConfirmedCount":0,"confirmedCount":253,"suspectedCount":0,"curedCount":246,"deadCount":7,"highDangerCount":0,"midDangerCount":0,"locationId":422800,"currentConfirmedCountStr":"0"},{"cityName":"潜江","currentConfirmedCount":0,"confirmedCount":198,"suspectedCount":0,"curedCount":189,"deadCount":9,"highDangerCount":0,"midDangerCount":0,"locationId":429005,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":123,"suspectedCount":25,"curedCount":123,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"神农架林区","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":429021,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"陕西省","provinceShortName":"陕西","currentConfirmedCount":5,"confirmedCount":3277,"suspectedCount":4,"curedCount":3269,"deadCount":3,"comment":"","locationId":610000,"statisticsData":"https://file1.dxycdn.com/2020/0223/857/3398299753820971228-135.json","highDangerCount":0,"midDangerCount":1,"detectOrgCount":276,"vaccinationOrgCount":26,"cities":[{"cityName":"西安","currentConfirmedCount":118,"confirmedCount":2332,"suspectedCount":0,"curedCount":2211,"deadCount":3,"highDangerCount":0,"midDangerCount":1,"locationId":610100,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"铜川","currentConfirmedCount":18,"confirmedCount":26,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610200,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"安康","currentConfirmedCount":7,"confirmedCount":33,"suspectedCount":0,"curedCount":26,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610900,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"咸阳","currentConfirmedCount":4,"confirmedCount":36,"suspectedCount":0,"curedCount":32,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610400,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"渭南","currentConfirmedCount":3,"confirmedCount":21,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610500,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"商洛","currentConfirmedCount":1,"confirmedCount":8,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":611000,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"杨凌","currentConfirmedCount":1,"confirmedCount":3,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610403,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":483,"suspectedCount":4,"curedCount":483,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"宝鸡","currentConfirmedCount":0,"confirmedCount":253,"suspectedCount":0,"curedCount":253,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610300,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"汉中","currentConfirmedCount":0,"confirmedCount":57,"suspectedCount":0,"curedCount":57,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610700,"currentConfirmedCountStr":"0"},{"cityName":"延安","currentConfirmedCount":0,"confirmedCount":21,"suspectedCount":0,"curedCount":21,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610600,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"榆林","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610800,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"韩城","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":610581,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"},{"cityName":"待明确地区","currentConfirmedCount":-147,"confirmedCount":0,"suspectedCount":0,"curedCount":147,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-147"}],"dangerAreas":[{"cityName":"西安","areaName":"西咸新区沣东新城三桥街道秦汉酒店(天台路店)","dangerLevel":2}]},{"provinceName":"天津市","provinceShortName":"天津","currentConfirmedCount":2,"confirmedCount":1803,"suspectedCount":50,"curedCount":1798,"deadCount":3,"comment":"","locationId":120000,"statisticsData":"https://file1.dxycdn.com/2020/0223/669/3398299753820555949-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":101,"vaccinationOrgCount":16,"cities":[{"cityName":"西青区","currentConfirmedCount":187,"confirmedCount":205,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120111,"currentConfirmedCountStr":"187"},{"cityName":"武清区","currentConfirmedCount":149,"confirmedCount":151,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120114,"currentConfirmedCountStr":"149"},{"cityName":"滨海新区","currentConfirmedCount":64,"confirmedCount":86,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120116,"currentConfirmedCountStr":"64"},{"cityName":"河北区","currentConfirmedCount":39,"confirmedCount":95,"suspectedCount":0,"curedCount":56,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120105,"currentConfirmedCountStr":"39"},{"cityName":"南开区","currentConfirmedCount":30,"confirmedCount":37,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120104,"currentConfirmedCountStr":"30"},{"cityName":"红桥区","currentConfirmedCount":29,"confirmedCount":36,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120106,"currentConfirmedCountStr":"29"},{"cityName":"东丽区","currentConfirmedCount":27,"confirmedCount":32,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120110,"currentConfirmedCountStr":"27"},{"cityName":"津南区","currentConfirmedCount":20,"confirmedCount":364,"suspectedCount":0,"curedCount":344,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120112,"currentConfirmedCountStr":"20"},{"cityName":"河西区","currentConfirmedCount":18,"confirmedCount":28,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120103,"currentConfirmedCountStr":"18"},{"cityName":"北辰区","currentConfirmedCount":16,"confirmedCount":23,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120113,"currentConfirmedCountStr":"16"},{"cityName":"河东区","currentConfirmedCount":15,"confirmedCount":34,"suspectedCount":0,"curedCount":18,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":120102,"currentConfirmedCountStr":"15"},{"cityName":"静海区","currentConfirmedCount":11,"confirmedCount":11,"suspectedCount":0,"curedCount":0,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120118,"currentConfirmedCountStr":"11"},{"cityName":"宝坻区","currentConfirmedCount":6,"confirmedCount":66,"suspectedCount":0,"curedCount":58,"deadCount":2,"highDangerCount":0,"midDangerCount":0,"locationId":120115,"currentConfirmedCountStr":"6"},{"cityName":"宁河区","currentConfirmedCount":2,"confirmedCount":6,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120117,"currentConfirmedCountStr":"2"},{"cityName":"境外输入","currentConfirmedCount":1,"confirmedCount":614,"suspectedCount":1,"curedCount":613,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"1"},{"cityName":"和平区","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":120101,"currentConfirmedCountStr":"0"},{"cityName":"外地来津","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-612,"confirmedCount":3,"suspectedCount":0,"curedCount":615,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"-612"}],"dangerAreas":[]},{"provinceName":"重庆市","provinceShortName":"重庆","currentConfirmedCount":2,"confirmedCount":696,"suspectedCount":15,"curedCount":688,"deadCount":6,"comment":"","locationId":500000,"statisticsData":"https://file1.dxycdn.com/2020/0223/368/3398299751673487486-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":80,"vaccinationOrgCount":261,"cities":[{"cityName":"巫山县","currentConfirmedCount":1,"confirmedCount":11,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500237,"currentConfirmedCountStr":"1"},{"cityName":"彭水县","currentConfirmedCount":1,"confirmedCount":3,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500243,"currentConfirmedCountStr":"1"},{"cityName":"万州区","currentConfirmedCount":0,"confirmedCount":118,"suspectedCount":0,"curedCount":114,"deadCount":4,"highDangerCount":0,"midDangerCount":0,"locationId":500101,"currentConfirmedCountStr":"0"},{"cityName":"高新区","currentConfirmedCount":0,"confirmedCount":51,"suspectedCount":0,"curedCount":51,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":45,"suspectedCount":0,"curedCount":45,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"江北区","currentConfirmedCount":0,"confirmedCount":29,"suspectedCount":0,"curedCount":29,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500105,"currentConfirmedCountStr":"0"},{"cityName":"云阳县","currentConfirmedCount":0,"confirmedCount":27,"suspectedCount":0,"curedCount":27,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500235,"currentConfirmedCountStr":"0"},{"cityName":"长寿区","currentConfirmedCount":0,"confirmedCount":24,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500115,"currentConfirmedCountStr":"0"},{"cityName":"合川区","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500117,"currentConfirmedCountStr":"0"},{"cityName":"綦江区","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500110,"currentConfirmedCountStr":"0"},{"cityName":"奉节县","currentConfirmedCount":0,"confirmedCount":22,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500236,"currentConfirmedCountStr":"0"},{"cityName":"九龙坡区","currentConfirmedCount":0,"confirmedCount":22,"suspectedCount":0,"curedCount":21,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":500107,"currentConfirmedCountStr":"0"},{"cityName":"开州区","currentConfirmedCount":0,"confirmedCount":21,"suspectedCount":0,"curedCount":20,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":500154,"currentConfirmedCountStr":"0"},{"cityName":"忠县","currentConfirmedCount":0,"confirmedCount":21,"suspectedCount":0,"curedCount":21,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500233,"currentConfirmedCountStr":"0"},{"cityName":"渝中区","currentConfirmedCount":0,"confirmedCount":20,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500103,"currentConfirmedCountStr":"0"},{"cityName":"垫江县","currentConfirmedCount":0,"confirmedCount":20,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500231,"currentConfirmedCountStr":"0"},{"cityName":"渝北区","currentConfirmedCount":0,"confirmedCount":20,"suspectedCount":0,"curedCount":20,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500112,"currentConfirmedCountStr":"0"},{"cityName":"潼南区","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500152,"currentConfirmedCountStr":"0"},{"cityName":"两江新区","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":18,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"南岸区","currentConfirmedCount":0,"confirmedCount":16,"suspectedCount":0,"curedCount":16,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500108,"currentConfirmedCountStr":"0"},{"cityName":"石柱县","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500240,"currentConfirmedCountStr":"0"},{"cityName":"大足区","currentConfirmedCount":0,"confirmedCount":15,"suspectedCount":0,"curedCount":15,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500111,"currentConfirmedCountStr":"0"},{"cityName":"巫溪县","currentConfirmedCount":0,"confirmedCount":14,"suspectedCount":0,"curedCount":14,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500238,"currentConfirmedCountStr":"0"},{"cityName":"巴南区","currentConfirmedCount":0,"confirmedCount":12,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500113,"currentConfirmedCountStr":"0"},{"cityName":"铜梁区","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500151,"currentConfirmedCountStr":"0"},{"cityName":"丰都县","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500230,"currentConfirmedCountStr":"0"},{"cityName":"沙坪坝区","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500106,"currentConfirmedCountStr":"0"},{"cityName":"璧山区","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500120,"currentConfirmedCountStr":"0"},{"cityName":"荣昌区","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500153,"currentConfirmedCountStr":"0"},{"cityName":"永川区","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500118,"currentConfirmedCountStr":"0"},{"cityName":"大渡口区","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500104,"currentConfirmedCountStr":"0"},{"cityName":"江津区","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500116,"currentConfirmedCountStr":"0"},{"cityName":"涪陵区","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500102,"currentConfirmedCountStr":"0"},{"cityName":"梁平区","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500155,"currentConfirmedCountStr":"0"},{"cityName":"黔江区","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500114,"currentConfirmedCountStr":"0"},{"cityName":"城口县","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500229,"currentConfirmedCountStr":"0"},{"cityName":"武隆区","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500156,"currentConfirmedCountStr":"0"},{"cityName":"秀山县","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500241,"currentConfirmedCountStr":"0"},{"cityName":"酉阳县","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":500242,"currentConfirmedCountStr":"0"},{"cityName":"万盛经开区","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"新疆维吾尔自治区","provinceShortName":"新疆","currentConfirmedCount":0,"confirmedCount":999,"suspectedCount":0,"curedCount":996,"deadCount":3,"comment":"","locationId":650000,"statisticsData":"https://file1.dxycdn.com/2020/0223/497/3398299753820556085-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":216,"vaccinationOrgCount":0,"cities":[{"cityName":"乌鲁木齐","currentConfirmedCount":0,"confirmedCount":848,"suspectedCount":0,"curedCount":848,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":650100,"currentConfirmedCountStr":"0"},{"cityName":"喀什地区","currentConfirmedCount":0,"confirmedCount":80,"suspectedCount":0,"curedCount":80,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":653100,"currentConfirmedCountStr":"0"},{"cityName":"伊犁州","currentConfirmedCount":0,"confirmedCount":31,"suspectedCount":0,"curedCount":31,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":654000,"currentConfirmedCountStr":"0"},{"cityName":"兵团第四师","currentConfirmedCount":0,"confirmedCount":13,"suspectedCount":0,"curedCount":12,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":659008,"currentConfirmedCountStr":"0"},{"cityName":"昌吉州","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":652300,"currentConfirmedCountStr":"0"},{"cityName":"兵团第八师石河子市","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":3,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":659001,"currentConfirmedCountStr":"0"},{"cityName":"兵团第九师","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":3,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":654200,"currentConfirmedCountStr":"0"},{"cityName":"吐鲁番","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":650400,"currentConfirmedCountStr":"0"},{"cityName":"巴州","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":652800,"currentConfirmedCountStr":"0"},{"cityName":"兵团第十二师","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"兵团第六师五家渠市","currentConfirmedCount":0,"confirmedCount":2,"suspectedCount":0,"curedCount":2,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":659004,"currentConfirmedCountStr":"0"},{"cityName":"兵团第七师","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"阿克苏地区","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":652900,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"甘肃省","provinceShortName":"甘肃","currentConfirmedCount":0,"confirmedCount":681,"suspectedCount":0,"curedCount":679,"deadCount":2,"comment":"","locationId":620000,"statisticsData":"https://file1.dxycdn.com/2020/0223/559/3398299755968040166-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":236,"vaccinationOrgCount":1,"cities":[{"cityName":"兰州","currentConfirmedCount":0,"confirmedCount":355,"suspectedCount":0,"curedCount":353,"deadCount":2,"highDangerCount":0,"midDangerCount":0,"locationId":620100,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":184,"suspectedCount":0,"curedCount":184,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"天水","currentConfirmedCount":0,"confirmedCount":55,"suspectedCount":0,"curedCount":55,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620500,"currentConfirmedCountStr":"0"},{"cityName":"白银","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620400,"currentConfirmedCountStr":"0"},{"cityName":"张掖","currentConfirmedCount":0,"confirmedCount":17,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620700,"currentConfirmedCountStr":"0"},{"cityName":"平凉","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620800,"currentConfirmedCountStr":"0"},{"cityName":"定西","currentConfirmedCount":0,"confirmedCount":9,"suspectedCount":0,"curedCount":9,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":621100,"currentConfirmedCountStr":"0"},{"cityName":"甘南","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":623000,"currentConfirmedCountStr":"0"},{"cityName":"陇南","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":621200,"currentConfirmedCountStr":"0"},{"cityName":"嘉峪关","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620200,"currentConfirmedCountStr":"0"},{"cityName":"庆阳","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":621000,"currentConfirmedCountStr":"0"},{"cityName":"临夏","currentConfirmedCount":0,"confirmedCount":3,"suspectedCount":0,"curedCount":3,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":622900,"currentConfirmedCountStr":"0"},{"cityName":"金昌","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620300,"currentConfirmedCountStr":"0"},{"cityName":"省级(湖北输入)","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"酒泉","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":620900,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"贵州省","provinceShortName":"贵州","currentConfirmedCount":0,"confirmedCount":179,"suspectedCount":0,"curedCount":177,"deadCount":2,"comment":"3 月 17 日贵阳市新增 1 例境外输入无症状感染者","locationId":520000,"statisticsData":"https://file1.dxycdn.com/2020/0223/148/3398299753820971243-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":121,"vaccinationOrgCount":13,"cities":[{"cityName":"遵义","currentConfirmedCount":0,"confirmedCount":53,"suspectedCount":0,"curedCount":53,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":520300,"currentConfirmedCountStr":"0"},{"cityName":"贵阳","currentConfirmedCount":0,"confirmedCount":39,"suspectedCount":0,"curedCount":38,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":520100,"currentConfirmedCountStr":"0"},{"cityName":"毕节","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":520500,"currentConfirmedCountStr":"0"},{"cityName":"黔南州","currentConfirmedCount":0,"confirmedCount":17,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":522700,"currentConfirmedCountStr":"0"},{"cityName":"铜仁","currentConfirmedCount":0,"confirmedCount":12,"suspectedCount":0,"curedCount":12,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":520600,"currentConfirmedCountStr":"0"},{"cityName":"黔东南州","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":522600,"currentConfirmedCountStr":"0"},{"cityName":"六盘水","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":9,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":520200,"currentConfirmedCountStr":"0"},{"cityName":"黔西南州","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":522300,"currentConfirmedCountStr":"0"},{"cityName":"安顺","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":520400,"currentConfirmedCountStr":"0"},{"cityName":"境外输入","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"宁夏回族自治区","provinceShortName":"宁夏","currentConfirmedCount":0,"confirmedCount":122,"suspectedCount":0,"curedCount":122,"deadCount":0,"comment":"","locationId":640000,"statisticsData":"https://file1.dxycdn.com/2020/0223/353/3398299755968455019-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":27,"vaccinationOrgCount":5,"cities":[{"cityName":"银川","currentConfirmedCount":0,"confirmedCount":72,"suspectedCount":0,"curedCount":72,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":640100,"currentConfirmedCountStr":"0"},{"cityName":"吴忠","currentConfirmedCount":0,"confirmedCount":38,"suspectedCount":0,"curedCount":38,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":640300,"currentConfirmedCountStr":"0"},{"cityName":"固原","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":640400,"currentConfirmedCountStr":"0"},{"cityName":"中卫","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":640500,"currentConfirmedCountStr":"0"},{"cityName":"宁东","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":-1,"currentConfirmedCountStr":"0"},{"cityName":"石嘴山","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":640200,"currentConfirmedCountStr":"0"}],"dangerAreas":[]},{"provinceName":"澳门","provinceShortName":"澳门","currentConfirmedCount":0,"confirmedCount":82,"suspectedCount":9,"curedCount":82,"deadCount":0,"comment":"确诊病例中含9例境外输入病例","locationId":820000,"statisticsData":"https://file1.dxycdn.com/2020/0223/840/3398299753820971267-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"西藏自治区","provinceShortName":"西藏","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"comment":"","locationId":540000,"statisticsData":"https://file1.dxycdn.com/2020/0223/353/3398299755968039885-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":32,"vaccinationOrgCount":16,"cities":[{"cityName":"拉萨","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":540100,"currentConfirmedCountStr":"0"}],"dangerAreas":[]}]

View Code

 

 

——————————改进——————————

增加代码复用

1-创建一个data文件夹 方便存数据

2- 复制我的代码就可以了- -

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_ci_03,第3张

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_python在线问诊数据爬虫_04,第4张

# -*- coding: utf-8 -*-
"""
Created on Sat Aug  8 21:25:12 2020

@author: admin
"""

# 思路
# 1. 发送请求,获取疫情首页
# 2. 从疫情首页中提取最近一日各国疫情字符串
# 3. 从最近一日各国疫情字符串中,提取json格式字符串
# 4. 把json格式字符串,转换为Python类型
# 5. 把Python类型的数据,以json格式存入文件中


# 》重构原来代码,以提高扩展性
#   把功能封装到一个类中
#   每一个小功能变成一个方法
#   通过run方法启动爬虫
# 》实现采集从01月23日以来的世界各国疫情数据
#   》加载最近一日各国疫情数据
#   》遍历各国疫情数据,获取从01月23日以来的各个国家疫情的URL
#   》发送请求,获取获取从01月23日以来的各个国家疫情的json字符串
#   》解析各个国家疫情的json字符串,添加到列表
#   》以json格式保存从01月23日以来的各个国家疫情数据

# 》发送请求,获取疫情首页内容
# 》解析疫情首页内容,获取最近一日各省疫情信息
# 》以json格式保存疫情信息
# 重构代码提高复用性

#   》采集从01月23日以来全国各省疫情数据
#   》加载最近一日全国疫情信息
#   》遍历最近一日全国疫情信息,获取各省疫情URL
#   》发送请求,获取各省疫情json字符串
#   》解析各省疫情json字符串,并添加列表中
#   》以json格式保存疫情信息
# 代码重构

import requests
from bs4 import BeautifulSoup
import re
import json
from tqdm import tqdm


class CoronaVirusSpider(object):

    def __init__(self):
        self.home_url = 'https://ncov.dxy.cn/ncovh5/view/pneumonia'

    def get_content_from_url(self, url):
        '''
        根据URL,获取响应内容的字符串数据
        :param url: 请求的URL
        :return: 响应内容的字符串
        '''
        response = response = requests.get(url)
        home_page = response.content.decode()
        return home_page

    def parse_home_page(self, home_page, tag_id):
        '''
        解析首页内容,获取解析后的Python数据
        :param home_page: 首页的内容
        :return: 解析后的python数据
        '''
        # 2. 从疫情首页中提取最近一日各国疫情字符串
        soup = BeautifulSoup(home_page, 'lxml')
        script = soup.find(id='getAreaStat')
        text = script.string
        # print(text)

        # 3. 从最近一日各国疫情字符串中,提取json格式字符串
        json_str = re.findall(r'\[.+\]', text)[0]
        # print(json_str)

        # 4. 把json格式字符串,转换为Python类型
        data = json.loads(json_str)
        return data

    def save(self, data, path):
        # 5. 把Python类型的数据,以json格式存入文件中
        with open(path, 'w', encoding="utf-8") as fp:
            json.dump(data, fp, ensure_ascii=False)

    def crawl_last_day_corona_virus(self):
        '''
        采集最近一天的各国疫情信息
        '''
        # 1.发送请求,获取首页内容
        home_page = self.get_content_from_url(self.home_url)
        # 2.解析首页内容,获取最近一天的各国疫情数据
        last_day_corona_virus = self.parse_home_page(home_page, 'getListByCountryTypeService2true')
        # 3.保存数据
        self.save(last_day_corona_virus, 'data/last_day_corona_virus.json')

    def crawl_corona_virus(self):
        '''
        采集从1月23日以来的各国疫情数据
        '''
        #   》加载最近一日各国疫情数据
        with open('data/last_day_corona_virus.json', encoding="utf-8") as fp:
            last_day_corona_virus = json.load(fp)
        # print(last_day_corona_virus)
        #   》遍历各国疫情数据,获取从01月23日以来的各个国家疫情的URL
        corona_virus = []
        for country in tqdm(last_day_corona_virus, '采集1月23日以来各国疫情信息'):
            #   》发送请求,获取获取从01月23日以来的各个国家疫情的json字符串
            statistics_data_url = country['statisticsData']
            statistics_data_json_str = self.get_content_from_url(statistics_data_url)
            #   》解析各个国家疫情的json字符串,添加到列表
            statistics_data = json.loads(statistics_data_json_str)['data']
            for one_day in statistics_data:
                one_day['provinceName'] = country['provinceName']
                one_day['countryShortCode'] = country['countryShortCode']
            # print(statistics_data)
            # append整体放列表,extend元素放列表
            corona_virus.extend(statistics_data)
        #   》以json格式保存从01月23日以来的各个国家疫情数据
        self.save(corona_virus, 'data/corona_virus.json')

    def crawl_last_day_corona_virus_of_china(self):
        '''
        采集最近一日各省疫情数据
        '''
        # 1. 发送相关请求,获取疫情首页内容
        home_page = self.get_content_from_url(self.home_url)
        # 2.解析首页内容,获取最近一天的各国疫情数据
        data = self.parse_home_page(home_page, tag_id='getAreaStat')
        # 保存疫情数据
        # print(data)
        self.save(data, 'data/last_day_corona_virus_of_china.json')

    def run(self):
        self.crawl_last_day_corona_virus()
        # spider.crawl_corona_virus()
        self.crawl_last_day_corona_virus_of_china()


if __name__ == '__main__':
    spider = CoronaVirusSpider()
    spider.run()

View Code

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_ci_03,第3张

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_python在线问诊数据爬虫_04,第4张

# -*- coding: utf-8 -*-
"""
Created on Sat Aug  8 22:59:23 2020

@author: admin
"""

#思路
# 1. 发送请求,获取疫情首页
# 2. 从疫情首页中提取最近一日各国疫情字符串
# 3. 从最近一日各国疫情字符串中,提取json格式字符串
# 4. 把json格式字符串,转换为Python类型
# 5. 把Python类型的数据,以json格式存入文件中


# 》重构原来代码,以提高扩展性
#   把功能封装到一个类中
#   每一个小功能变成一个方法
#   通过run方法启动爬虫
# 》实现采集从01月23日以来的世界各国疫情数据
#   》加载最近一日各国疫情数据
#   》遍历各国疫情数据,获取从01月23日以来的各个国家疫情的URL
#   》发送请求,获取获取从01月23日以来的各个国家疫情的json字符串
#   》解析各个国家疫情的json字符串,添加到列表
#   》以json格式保存从01月23日以来的各个国家疫情数据

# 》发送请求,获取疫情首页内容
# 》解析疫情首页内容,获取最近一日各省疫情信息
# 》以json格式保存疫情信息
# 重构代码提高复用性

#   》采集从01月23日以来全国各省疫情数据
#   》加载最近一日全国疫情信息
#   》遍历最近一日全国疫情信息,获取各省疫情URL
#   》发送请求,获取各省疫情json字符串
#   》解析各省疫情json字符串,并添加列表中
#   》以json格式保存疫情信息
# 代码重构

import requests
from bs4 import BeautifulSoup
import re
import json
from  tqdm import tqdm


class CoronaVirusSpider(object):
    
    def __init__(self):
        self.home_url = 'https://ncov.dxy.cn/ncovh5/view/pneumonia'


    def get_content_from_url(self, url):
        '''
        根据URL,获取响应内容的字符串数据
        :param url: 请求的URL
        :return: 响应内容的字符串
        '''
        response = response = requests.get(url)
        home_page = response.content.decode()
        return home_page


    def parse_home_page(self, home_page):
        '''
        解析首页内容,获取解析后的Python数据
        :param home_page: 首页的内容
        :return: 解析后的python数据
        '''
        # 2. 从疫情首页中提取最近一日各国疫情字符串
        soup = BeautifulSoup(home_page, 'lxml')
        script = soup.find(id='getAreaStat')
        text = script.string
        # print(text)
        
        # 3. 从最近一日各国疫情字符串中,提取json格式字符串
        json_str = re.findall(r'\[.+\]', text)[0]
        # print(json_str)
        
        # 4. 把json格式字符串,转换为Python类型
        data = json.loads(json_str)
        return data
    
    
    def parse_corona_virus(self, last_day_corona_virus_of_china, desc):
        corona_virus = []
        #遍历各省疫情数据,获取统计的URL
        for province in tqdm(last_day_corona_virus_of_china, desc):
            #   》发送请求,获取获取从01月22日以来的各省疫情的json字符串
            statistics_data_url = province['statisticsData']
            statistics_data_json_str = self.get_content_from_url(statistics_data_url)
            #   》解析各省疫情的json字符串,添加到列表
            statistics_data = json.loads(statistics_data_json_str)['data']
            for one_day in statistics_data:
                one_day['provinceName'] = province['provinceName']
                if province.get('countryShortCode'):
                    one_day['countryShortCode'] = province['countryShortCode']
            #append整体放列表,extend元素放列表
            corona_virus.extend(statistics_data)
        return corona_virus
    
    
    def load(self, path):
        '''
        根据路径加载数据
        :param path:对应路径
        '''
        with open(path, encoding="utf-8") as fp:
            data = json.load(fp)
        return data
    
    
    def save(self, data, path):
        # 5. 把Python类型的数据,以json格式存入文件中
        with open(path, 'w', encoding="utf-8") as fp:
            json.dump(data, fp, ensure_ascii=False)
            
            
    def crawl_last_day_corona_virus(self):
        '''
        采集最近一天的各国疫情信息
        '''
        # 1.发送请求,获取首页内容
        home_page = self.get_content_from_url(self.home_url)
        # 2.解析首页内容,获取最近一天的各国疫情数据
        last_day_corona_virus = self.parse_home_page(home_page, 'getListByCountryTypeService2true')
        # 3.保存数据
        self.save(last_day_corona_virus, 'data/last_day_corona_virus.json')
    
    
    def crawl_corona_virus(self):
        '''
        采集从1月23日以来的各国疫情数据
        '''
        #   》加载最近一日各国疫情数据
        last_day_corona_virus = self.load('data/last_day_corona_virus.json')
        # print(last_day_corona_virus)
        #   》遍历各国疫情数据,获取从01月23日以来的各个国家疫情的URL
        corona_virus = self.parse_corona_virus(last_day_corona_virus, '采集1月23日以来各国疫情信息')
        #   》以json格式保存从01月23日以来的各个国家疫情数据
        self.save(corona_virus, 'corona_virus_spider-master/data/corona_virus.json')
        
        
    def crawl_last_day_corona_virus_of_china(self):
        '''
        采集最近一日各省疫情数据
        '''
        # 1. 发送相关请求,获取疫情首页内容
        home_page = self.get_content_from_url(self.home_url)
        # 2.解析首页内容,获取最近一天的各国疫情数据
        data = self.parse_home_page(home_page, tag_id='getAreaStat')
        #保存疫情数据
        self.save(data, 'data/last_day_corona_virus_of_china.json')
        
        
    def crawl_corona_virus_of_china(self):
        '''
        采集从1月22日以来的全国各省疫情数据
        '''
        last_day_corona_virus_of_china = self.load('data/last_day_corona_virus_of_china.json')  
        #遍历最近一日全国疫情信息,获取各省疫情URL
        corona_virus = self.parse_corona_virus(last_day_corona_virus_of_china, '采集1月22日以来各省疫情信息')
        self.save(corona_virus, 'data/corona_virus_of_china.json')
        
        
    def run(self):
        # self.crawl_last_day_corona_virus()
        spider.crawl_corona_virus()
        # self.crawl_last_day_corona_virus_of_china()
        self.crawl_corona_virus_of_china()
        
        
        
        
if __name__ == '__main__':
    spider = CoronaVirusSpider()
    spider.run()

View Code

 里面注释写的蛮清楚了 视频链接 https://www.bilibili.com/video/BV1464y1c7Eq?p=19
可视化那里 我试试 看能不能做一个实时的挂在服务器上 然后我的java那边调用这个url了 

python在线问诊数据爬虫 python爬取医院信息,python在线问诊数据爬虫 python爬取医院信息_python在线问诊数据爬虫_09,第9张

 




https://www.xamrdz.com/backend/32j1964036.html

相关文章: