Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (20 loc) · 420 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 420 Bytes
  1. Import and convert the data contained in data_DD_MN008.csv to the following target JSON (individual readings):
[
  {
    timestamp: <unix-epoch>,
    direction: <degrees>
  },
  ...
]
  1. Import and convert the data contained in data_DD_MN008.csv to the following target JSON (aggregated per day):
[
  {
    day: <YYYY-MM-DD>,
    direction: <mean of all degrees during the day>
  },
  ...
]