Hello everybody.
I'm reading the doc about the importing process from csv file
https://www.weewx.com/docs/utilities.htm#[CSV] and I'm confused about the configuration of the `dateTime` field: in the example csv provided by the doc, the date and time is `23 May 2018 13:00`. Let me quote:
```
date_and_time,temp,humid,wind,dir,rainfall,rad,river
23 May 2018 13:00,17.4,56,3.0,45,0.0,956,340
23 May 2018 13:05,17.6,56,1.0,22.5,0.4,746,341
```
But in the import-config-file the unit system specified is `unix_epoch`. Let me quote:
```
[[FieldMap]]
dateTime = date_and_time, unix_epoch
```
So this is confusing to me, since date and time in the csv are not in unix epoch format.