The first two lines of my data file are...Parsing line 1 finished.
Checking validity of data based on your limits in Main settings...
Checking date and time...
There seems to be a problem with the date and time. Either it has not been parsed correctly or it is a date/time in the future! Check the format you specified and also the actual values.
and when I show field numbers I get the following which looks OK.Date,Time,temp,pressure,humidity,wind_speed,wind_deg,rain_1h,snow_1h,Daily Rain
1979-01-01,00:00,-5.9,1015,85,1,40,,,0
I've set the date/time as being in two fields: 0=Date as 'Y-m-d' and 1=Time as 'H:i'.Loading CSV/text file from https://blackpool.weather-watch.com/data/part.csv
File loaded successfully.
Header row in the file, skipping first line, using for field labels.
Starting to parse data....
The tested file has 17 data sets.
Field delimiter is comma (,)
First dataset is: 1979-01-01,00:00,-5.9,1015,85,1,40,,,0
The header row contains 10 columns.
The data row contains 10 fields.
Loaded data:
Field Field Number Value (first data set)
Date 0 1979-01-01
Time 1 00:00
temp 2 -5.9
pressure 3 1015
humidity 4 85
wind_speed 5 1
wind_deg 6 40
rain_1h 7 null
snow_1h 8 null
Daily Rain 9 0
I think I have everything correct and all the data is definitely in the past (the 17 lines of test data are all from 1979).
Can anyone suggest what I'm doing wrong?
Thanks,
Chris

