COVID-19 Flight Data by Country COVID-19期间各国航班数据

2020年4月26日 6615点热度 2人点赞 2条评论

COVID-19 Flight Data by Country

Introduction

I am working in a Kaggle competition COVID19 Global Forecasting (Week 4). In order to estimate the international population movement of each country, I compiled a dataset. It is showing daliy internationl depature flight by Country, from January 01 to April 13, 2020.

COVID-19疫情期间,各国为了减少来自其他国家和地区的病毒输入。国际航班数和线路都被限制。

我整理了2020年01月01日至2020年04月13日各国国际航班每日的出发(depature)数量,并以此作为这个国家国家旅客当日出入境的表示。

Data

Github:flightRecords.json

Import Data 导入数据

import json
import pandas as pd

# Load json into dict
with open('flightRecords.json') as f:
    flights = json.load(f)
    print("Load flightRecords :", len(flights))

# Load json into dataframe

flighs_df = pd.read_json('flightRecords.json')
flighs_df.head()

flighs_df.head

Visualization 可视化

这里我们绘制中国的航班数图像。

ChinaFlight = fd['China']
ChinaFlight.plot()

ChinaFlightDuringCOVID19

我们可以看见这份数据并中,有4处的航班数突然变成0。在我的Project中,我对这些数据点做了平滑处理。从图可以看出,2月开始,中国的航班数出现了'腰斩折半'。

Refer this data 引用数据

@misc{COVID19Flight
author = {Dong Wang},
title = {{COVID-19 Flight Data by Country},
howpublished= {\url{https://www.nanguoyu.com/covid-19-flight-data-by-country ‎}}

Dong Wang

I will work as a PhD student of TU Graz in Austria. My research interests include Embedded/Edge AI, federated learning, computer vision, and IoT.

文章评论

  • 赵hill

    你好可以问一下在哪可以查到航班数据吗

    2020年7月14日
    • 南国羽

      @赵hill hi! flightradar24 和 flightaware都有提供每日监控到的航班数据。https://www.icao.int/ 也会提供航班统计数据。不知道你需要哪种?

      2020年7月14日
  • 此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据