Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Add notes on field name and datetime format changes #3582

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions csse_covid_19_data/csse_covid_19_daily_reports/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Daily reports (csse_covid_19_daily_reports)

### Fields

Some field names had previously called differently,
the list below shows the previous label follows by the current label:

- "Province/State" -> "Province_State"
- "Country/Region" -> "Country_Region"
- "Last Update" -> "Last_Update"
- "Latitude" -> "Lat"
- "Longitude" -> "Long_"
- "Incidence_Rate" -> "Incident_Rate"
- "Case-Fatality_Ratio" -> "Case_Fatality_Ratio"

### Datetime format

- 22 Jan 2020 to 1 Feb 2020: `m/d/yyyy HH:MM` (e.g. 2/1/2020 11:03)
- 2 Feb 2020 to 21 Mar 2020: `yyyy-mm-ddTHH:MM:SS` (e.g. 2020-03-21T22:43:04)
- 22 Mar, 28-30 Mar, 2 Apr, 4 Apr, 6 Apr 2020: `m/d/yy HH:MM` (e.g. 3/22/20 23:45)
- 23-27 Mar, 1 Apr, 3 Apr, 5 Apr 2020, and since 7 Apr 2020: `yyyy-mm-dd HH:MM:SS` (e.g. 2020-03-23 23:19:34)

If time is not required, using the date from filename can be more convenient.