Hello
I have now adjusted the csv.conf and the datad.csv so that no warnings are
given when running dry.
I can't say which units are behind the "," in [[FieldMap]] and whether they
are correct.
I only entered them on suspicion and hope that they are correct.
I also entered the inside temperature although they are not shown in these
NOAA files but are inside the database.
Can I actually import all the data in my CSV file that is also in the
database?
[[FieldMap]]
dateTime = Zeit, unix_epoch
usUnits =
interval =
barometer = Absoluter Luftdruck, inHg
pressure =
altimeter =
inTemp = Innentemperatur, degree_C
outTemp = Aussentemperatur, degree_C
inHumidity = Innenluftfeuchtigkeit, percent
outHumidity = Aussenluftfeuchtigkeit, percent
windSpeed = Windgeschwindigkeit, km_per_hour
windDir = Windrichtung, degree_compass
windGust = Windboeen, km_per_hour
windGustDir = Windrichtung, degree_compass
rainRate =
rain = 24-Stunden-Niederschlag, mm
dewpoint =
windchill =
heatindex =
ET =
radiation =
UV =
Thanks Günther
--
You received this message because you are subscribed to the Google Groups
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/9e57c17c-faf7-42ec-a24f-7cdc3de581b5%40googlegroups.com.
# EXAMPLE CONFIGURATION FILE FOR IMPORTING FROM CSV FILES
#
# Copyright (c) 2009-2016 Tom Keffer <[email protected]> and Gary Roderick.
# See the file LICENSE.txt for your rights.
##############################################################################
# Specify the source. Available options are:
# CSV - import obs from a single CSV format file
# WU - import obs from a Weather Underground PWS history
# Cumulus - import obs from a one or more Cumulus monthly log files
# Format is:
# source = (CSV | WU | Cumulus)
source = CSV
##############################################################################
[CSV]
# Parameters used when importing from a CSV file
# Path and name of our CSV source file. Format is:
# file = full path and filename
file = /var/tmp/datad.csv
# If there is no mapped interval field how will the interval field be
# determined for the imported records. Available options are:
# derive - Derive the interval field from the timestamp of successive
# records. This setting is best used when the imported records
# are equally spaced in time and there are no missing records.
# conf - Use the interval setting from weewx.conf. This setting is
# best used if the records to be imported have been produced by
# WeeWX using the same archive interval as set in weewx.conf on
# this machine.
# x - Use a fixed interval of x minutes for every record. This
# setting is best used if the records to be imported are
# equally based in time but there are some missing records.
#
# Note: If there is a mapped interval field then this setting will be
# ignored.
# Format is:
# interval = (derive | conf | x)
interval = derive
# Should the [StdQC] max/min limits in weewx.conf be applied to the
# imported data. This may be useful if the source has extreme values that
# are clearly incorrect for some observations. Available options are:
# True - weewx.conf [StdQC] max/min limits are applied.
# False - weewx.conf [StdQC] max/min limits are not applied.
# Format is:
# qc = (True | False)
qc = True
# Should any missing derived observations be calculated from the imported
# data if possible. Available options are:
# True - Any missing derived observations are calculated.
# False - Any missing derived observations are not calculated.
# Format is:
# calc_missing = (True | False)
calc_missing = True
# Specify how imported data fields that contain invalid data (eg a numeric
# field containing non-numeric data) are handled. Available options are:
# True - The invalid data is ignored, the WeeWX target field is set to
# None and the import continues.
# False - The import is halted.
# Format is:
# ignore_invalid_data = (True | False)
# Default is True.
ignore_invalid_data = True
# Imported records are written to archive in transactions of tranche
# records at a time. Increase for faster throughput, decrease to reduce
# memory requirements. Format is:
# tranche = x
# where x is an integer
tranche = 250
# Specify whether a UV sensor was used to produce any UV observations.
# Available options are:
# True - UV sensor was used and UV data will be imported.
# False - UV sensor was not used and any UV data will not be imported.
# UV fields will be set to None/NULL.
# For a CSV import UV_sensor should be set to False if a UV sensor was
# NOT present when the import data was created. Otherwise it may be set to
# True or omitted. Format is:
# UV_sensor = (True | False)
UV_sensor = True
# Specify whether a solar radiation sensor was used to produce any solar
# radiation observations. Available options are:
# True - Solar radiation sensor was used and solar radiation data will
# be imported.
# False - Solar radiation sensor was not used and any solar radiation
# data will not be imported. radiation fields will be set to
# None/NULL.
# For a CSV import solar_sensor should be set to False if a solar radiation
# sensor was NOT present when the import data was created. Otherwise it may
# be set to True or omitted. Format is:
# solar_sensor = (True | False)
solar_sensor = True
# Date-time format of CSV field from which the WeeWX archive record
# dateTime field is to be extracted. wee_import first attempts to interpret
# date/time info in this format, if this fails it then attempts to
# interpret it as a timestamp and if this fails it then raises an error.
# Uses Python strptime() format codes.
# raw_datetime_format = Python strptime() format string
raw_datetime_format = %d.%m.%Y %H:%M:%S
# Does the imported rain field represent the total rainfall since the last
# record or a cumulative value. Available options are:
# discrete - rain field represents total rainfall since last record
# cumulative - rain field represents a cumulative rainfall reset at
# midnight
# rain = (discrete | cumulative)
rain = cumulative
# Lower and upper bounds for imported wind direction. It is possible,
# particularly for a calculated direction, to have a value (eg -45) outside
# of the WeeWX limits (0 to 360 inclusive). Format is:
#
# wind_direction = lower,upper
#
# where :
# lower is the lower limit of acceptable wind direction in degrees
# (may be negative)
# upper is the upper limit of acceptable wind direction in degrees
#
# Imported values from lower to upper will be normalised to the range 0 to
# 360. Values outside of the parameter range will be stored as None.
# Default is -360,360.
wind_direction = -360,360
# Map CSV record fields to WeeWX archive fields. Format is:
#
# weewx_archive_field_name = csv_field_name, weewx_unit_name
#
# where:
# weewx_archive_field_name - An observation name in the WeeWX database
# schema.
# csv_field_name - The name of a field from the CSV file.
# weewx_unit_name - The name of the units, as defined in WeeWX,
# used by csv_field_name. wee_import will do
# the necessary conversions to the unit system
# used by the WeeWX archive.
# For example,
# outTemp = Temp, degree_C
# would map the CSV field Temp, in degrees C, to the archive field outTemp.
#
# If a field mapping exists for the WeeWX usUnits archive field then the
# units option may be omitted for each mapped field.
#
# WeeWX archive fields that do not exist in the CSV data may be omitted.
# Any omitted fields that are derived (eg dewpoint) may be calculated
# during import using the equivalent of the WeeWX StdWXCalculate service
# through setting the calc-missing parameter above.
[[FieldMap]]
dateTime = Zeit, unix_epoch
usUnits =
interval =
barometer = Absoluter Luftdruck, inHg
pressure =
altimeter =
inTemp = Innentemperatur, degree_C
outTemp = Aussentemperatur, degree_C
inHumidity = Innenluftfeuchtigkeit, percent
outHumidity = Aussenluftfeuchtigkeit, percent
windSpeed = Windgeschwindigkeit, km_per_hour
windDir = Windrichtung, degree_compass
windGust = Windboeen, km_per_hour
windGustDir = Windrichtung, degree_compass
rainRate =
rain = 24-Stunden-Niederschlag, mm
dewpoint =
windchill =
heatindex =
ET =
radiation =
UV =
NO.,Zeit,Intervall,Innentemperatur,Innenluftfeuchtigkeit,Aussentemperatur,Aussenluftfeuchtigkeit,Relativer Luftdruck,Absoluter Luftdruck,Windgeschwindigkeit,Windboeen,Windrichtung,Taupunkt,Gefuehlte Temperatur,24-Stunden-Niederschlag,WoechentlicherNiederschlag,Monatlicher Niederschlag,Jahr Niederschlag,Gesamter Niederschlag,Beleuchtung,UV(uW/m2),UVI
1,01.05.2019 00:02:00,5, 20.9,51, 12.2,74, 985.2, 988.3, 17.3, 20.9,315, 7.7, 7.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
2,01.05.2019 00:07:00,5, 20.9,51, 12.2,74, 985.0, 988.1, 17.3, 22.0,315, 7.7, 7.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
3,01.05.2019 00:12:00,5, 20.9,51, 12.2,73, 985.0, 988.1, 14.8, 19.4,0, 7.5, 7.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
4,01.05.2019 00:17:00,5, 20.9,51, 12.1,73, 985.0, 988.1, 20.9, 25.6,338, 7.4, 6.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
5,01.05.2019 00:22:00,5, 20.9,51, 12.1,73, 984.9, 988.0, 19.4, 24.5,315, 7.4, 6.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
6,01.05.2019 00:27:00,5, 20.9,51, 12.1,73, 985.1, 988.2, 15.8, 20.9,0, 7.4, 7.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
7,01.05.2019 00:32:00,5, 20.9,51, 12.0,74, 985.2, 988.3, 23.4, 29.5,0, 7.5, 5.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
8,01.05.2019 00:37:00,5, 20.9,51, 12.0,74, 985.2, 988.3, 20.9, 24.5,338, 7.5, 5.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
9,01.05.2019 00:42:00,5, 20.9,51, 11.9,74, 985.1, 988.2, 22.0, 28.1,0, 7.4, 5.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
10,01.05.2019 00:47:00,5, 20.9,51, 11.9,75, 985.2, 988.3, 24.5, 30.6,315, 7.6, 5.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
11,01.05.2019 00:52:00,5, 20.9,51, 11.8,75, 985.2, 988.3, 17.3, 20.9,0, 7.5, 6.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
12,01.05.2019 00:57:00,5, 20.9,51, 11.7,75, 985.1, 988.2, 19.4, 24.5,338, 7.4, 5.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
13,01.05.2019 01:02:00,5, 20.9,51, 11.6,76, 985.1, 988.2, 18.4, 22.0,338, 7.5, 6.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
14,01.05.2019 01:07:00,5, 20.9,51, 11.6,75, 984.8, 987.9, 18.4, 23.4,315, 7.3, 6.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
15,01.05.2019 01:12:00,5, 20.9,51, 11.5,75, 985.2, 988.3, 17.3, 23.4,315, 7.2, 6.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
16,01.05.2019 01:17:00,5, 20.9,51, 11.4,75, 985.0, 988.1, 20.9, 24.5,0, 7.1, 5.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
17,01.05.2019 01:22:00,5, 20.9,51, 11.3,75, 985.1, 988.2, 18.4, 23.4,0, 7.0, 5.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
18,01.05.2019 01:27:00,5, 20.9,51, 11.3,75, 985.0, 988.1, 17.3, 23.4,0, 7.0, 6.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
19,01.05.2019 01:32:00,5, 20.9,51, 11.3,74, 984.9, 988.0, 15.8, 18.4,315, 6.8, 6.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
20,01.05.2019 01:37:00,5, 20.9,51, 11.2,74, 985.1, 988.2, 18.4, 24.5,338, 6.8, 5.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
21,01.05.2019 01:42:00,5, 20.9,51, 11.2,74, 984.9, 988.0, 17.3, 20.9,0, 6.8, 5.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
22,01.05.2019 01:47:00,5, 20.9,51, 11.2,73, 984.9, 988.0, 23.4, 30.6,315, 6.6, 4.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
23,01.05.2019 01:52:00,5, 20.9,51, 11.2,73, 984.8, 987.9, 20.9, 25.6,315, 6.6, 4.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
24,01.05.2019 01:57:00,5, 20.9,51, 11.1,73, 985.0, 988.1, 17.3, 19.4,0, 6.5, 5.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
25,01.05.2019 02:02:00,5, 20.8,51, 11.0,73, 985.0, 988.1, 15.8, 20.9,45, 6.4, 6.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
26,01.05.2019 02:07:00,5, 20.8,51, 11.0,73, 984.8, 987.9, 22.0, 25.6,315, 6.4, 4.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
27,01.05.2019 02:12:00,5, 20.8,51, 10.9,73, 984.9, 988.0, 19.4, 23.4,315, 6.3, 4.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
28,01.05.2019 02:17:00,5, 20.8,51, 10.8,73, 985.0, 988.1, 23.4, 29.5,315, 6.2, 3.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
29,01.05.2019 02:22:00,5, 20.8,51, 10.8,73, 984.8, 987.9, 17.3, 22.0,0, 6.2, 5.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
30,01.05.2019 02:27:00,5, 20.8,51, 10.8,72, 984.9, 988.0, 23.4, 27.0,315, 6.0, 3.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
31,01.05.2019 02:32:00,5, 20.8,51, 10.7,72, 984.9, 988.0, 22.0, 27.0,270, 5.9, 3.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
32,01.05.2019 02:37:00,5, 20.8,51, 10.7,72, 985.0, 988.1, 18.4, 24.5,315, 5.9, 4.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
33,01.05.2019 02:42:00,5, 20.8,51, 10.7,72, 984.9, 988.0, 19.4, 27.0,315, 5.9, 4.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
34,01.05.2019 02:47:00,5, 20.8,51, 10.6,72, 985.0, 988.1, 19.4, 24.5,0, 5.8, 4.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
35,01.05.2019 02:52:00,5, 20.8,51, 10.5,72, 985.0, 988.1, 23.4, 27.0,0, 5.7, 3.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
36,01.05.2019 02:57:00,5, 20.8,51, 10.4,72, 984.8, 987.9, 18.4, 23.4,315, 5.6, 4.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
37,01.05.2019 03:02:00,5, 20.8,51, 10.2,72, 985.0, 988.1, 20.9, 23.4,338, 5.4, 3.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
38,01.05.2019 03:07:00,5, 20.8,51, 10.1,73, 985.0, 988.1, 20.9, 25.6,338, 5.5, 3.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
39,01.05.2019 03:12:00,5, 20.8,51, 10.0,73, 985.0, 988.1, 23.4, 28.1,0, 5.4, 2.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
40,01.05.2019 03:17:00,5, 20.8,51, 10.0,73, 984.9, 988.0, 19.4, 24.5,315, 5.4, 3.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
41,01.05.2019 03:22:00,5, 20.8,51, 9.9,73, 985.0, 988.1, 19.4, 25.6,315, 5.3, 3.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
42,01.05.2019 03:27:00,5, 20.7,51, 9.9,73, 985.1, 988.2, 20.9, 24.5,0, 5.3, 3.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
43,01.05.2019 03:32:00,5, 20.7,51, 9.8,73, 985.1, 988.2, 20.9, 25.6,0, 5.2, 3.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
44,01.05.2019 03:37:00,5, 20.7,51, 9.8,73, 985.1, 988.2, 18.4, 24.5,315, 5.2, 3.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
45,01.05.2019 03:42:00,5, 20.7,51, 9.8,73, 984.9, 988.0, 24.5, 28.1,0, 5.2, 2.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
46,01.05.2019 03:47:00,5, 20.7,51, 9.6,73, 985.0, 988.1, 19.4, 23.4,338, 5.0, 3.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
47,01.05.2019 03:52:00,5, 20.7,51, 9.6,73, 985.1, 988.2, 20.9, 25.6,338, 5.0, 2.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
48,01.05.2019 03:57:00,5, 20.7,51, 9.6,73, 985.1, 988.2, 22.0, 25.6,0, 5.0, 2.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
49,01.05.2019 04:02:00,5, 20.7,51, 9.6,73, 984.9, 988.0, 23.4, 25.6,0, 5.0, 2.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
50,01.05.2019 04:07:00,5, 20.7,51, 9.5,72, 985.0, 988.1, 20.9, 24.5,315, 4.7, 2.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
51,01.05.2019 04:12:00,5, 20.7,51, 9.5,72, 985.1, 988.2, 20.9, 28.1,315, 4.7, 2.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
52,01.05.2019 04:17:00,5, 20.7,51, 9.5,72, 984.9, 988.0, 19.4, 23.4,338, 4.7, 3.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
53,01.05.2019 04:22:00,5, 20.7,51, 9.5,72, 985.0, 988.1, 18.4, 27.0,315, 4.7, 3.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
54,01.05.2019 04:27:00,5, 20.7,51, 9.6,72, 984.8, 987.9, 18.4, 23.4,338, 4.8, 3.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
55,01.05.2019 04:32:00,5, 20.7,51, 9.6,71, 985.0, 988.1, 20.9, 30.6,338, 4.6, 2.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
56,01.05.2019 04:37:00,5, 20.7,51, 9.6,71, 985.0, 988.1, 24.5, 29.5,0, 4.6, 1.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
57,01.05.2019 04:42:00,5, 20.7,51, 9.5,71, 985.0, 988.1, 17.3, 23.4,338, 4.5, 3.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
58,01.05.2019 04:47:00,5, 20.7,51, 9.4,71, 985.1, 988.2, 17.3, 24.5,315, 4.4, 3.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
59,01.05.2019 04:52:00,5, 20.7,51, 9.0,72, 984.9, 988.0, 12.2, 17.3,315, 4.2, 5.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
60,01.05.2019 04:57:00,5, 20.7,51, 8.7,73, 985.0, 988.1, 17.3, 20.9,315, 4.1, 2.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
61,01.05.2019 05:02:00,5, 20.7,51, 8.7,74, 984.9, 988.0, 19.4, 23.4,338, 4.3, 2.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
62,01.05.2019 05:07:00,5, 20.7,51, 9.0,73, 984.9, 988.0, 18.4, 23.4,315, 4.4, 2.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
63,01.05.2019 05:12:00,5, 20.7,51, 9.1,72, 984.8, 987.9, 20.9, 27.0,315, 4.3, 2.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
64,01.05.2019 05:17:00,5, 20.7,51, 9.2,71, 984.8, 987.9, 25.6, 33.1,338, 4.2, 1.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
65,01.05.2019 05:22:00,5, 20.7,51, 9.1,71, 984.9, 988.0, 18.4, 28.1,338, 4.1, 2.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
66,01.05.2019 05:27:00,5, 20.7,51, 8.9,72, 985.1, 988.2, 15.8, 19.4,338, 4.1, 3.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
67,01.05.2019 05:32:00,5, 20.7,51, 8.7,72, 984.9, 988.0, 13.3, 18.4,0, 3.9, 4.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.5,0,0
68,01.05.2019 05:37:00,5, 20.7,51, 8.7,73, 985.1, 988.2, 14.8, 17.3,0, 4.1, 3.6, 0.0, 17.1, 0.0, 369.6, 706.5, 11.2,0,0
69,01.05.2019 05:42:00,5, 20.6,51, 8.6,73, 985.1, 988.2, 15.8, 18.4,315, 4.0, 3.1, 0.0, 17.1, 0.0, 369.6, 706.5, 31.2,0,0
70,01.05.2019 05:47:00,5, 20.7,51, 8.6,73, 984.9, 988.0, 18.4, 24.5,338, 4.0, 2.3, 0.0, 17.1, 0.0, 369.6, 706.5, 52.4,0,0
71,01.05.2019 05:52:00,5, 20.6,51, 8.7,72, 985.1, 988.2, 13.3, 23.4,338, 3.9, 4.2, 0.0, 17.1, 0.0, 369.6, 706.5, 85.5,0,0
72,01.05.2019 05:57:00,5, 20.6,51, 8.9,72, 984.9, 988.0, 15.8, 20.9,315, 4.1, 3.5, 0.0, 17.1, 0.0, 369.6, 706.5, 128.8,0,0
73,01.05.2019 06:02:00,5, 20.6,51, 9.0,71, 985.1, 988.2, 22.0, 25.6,315, 4.0, 1.7, 0.0, 17.1, 0.0, 369.6, 706.5, 188.3,0,0
74,01.05.2019 06:07:00,5, 20.6,51, 9.5,70, 984.9, 988.0, 27.0, 31.7,338, 4.3, 1.2, 0.0, 17.1, 0.0, 369.6, 706.5, 230.4,0,0
75,01.05.2019 06:12:00,5, 20.6,51, 9.5,70, 985.0, 988.1, 20.9, 27.0,315, 4.3, 2.7, 0.0, 17.1, 0.0, 369.6, 706.5, 299.0,99,1
76,01.05.2019 06:17:00,5, 20.6,51, 9.5,70, 985.0, 988.1, 19.4, 25.6,315, 4.3, 3.1, 0.0, 17.1, 0.0, 369.6, 706.5, 319.9,99,1
77,01.05.2019 06:22:00,5, 20.6,51, 9.5,70, 985.1, 988.2, 15.8, 20.9,315, 4.3, 4.2, 0.0, 17.1, 0.0, 369.6, 706.5, 331.7,99,1
78,01.05.2019 06:27:00,5, 20.7,51, 9.4,71, 985.1, 988.2, 17.3, 22.0,338, 4.4, 3.6, 0.0, 17.1, 0.0, 369.6, 706.5, 370.2,99,1
79,01.05.2019 06:32:00,5, 20.6,51, 9.6,71, 985.2, 988.3, 17.3, 23.4,0, 4.6, 3.9, 0.0, 17.1, 0.0, 369.6, 706.5, 480.9,99,1
80,01.05.2019 06:37:00,5, 20.7,51, 9.8,70, 985.2, 988.3, 20.9, 24.5,0, 4.6, 3.0, 0.0, 17.1, 0.0, 369.6, 706.5, 551.2,99,1
81,01.05.2019 06:42:00,5, 20.7,51, 10.0,70, 985.0, 988.1, 17.3, 24.5,315, 4.8, 4.3, 0.0, 17.1, 0.0, 369.6, 706.5, 596.6,99,1
82,01.05.2019 06:47:00,5, 20.7,51, 10.1,70, 985.2, 988.3, 18.4, 22.0,315, 4.9, 4.1, 0.0, 17.1, 0.0, 369.6, 706.5, 541.8,99,1
83,01.05.2019 06:52:00,5, 20.7,50, 9.9,70, 985.3, 988.4, 15.8, 18.4,338, 4.7, 4.7, 0.0, 17.1, 0.0, 369.6, 706.5, 501.8,99,1
84,01.05.2019 06:57:00,5, 20.7,50, 9.8,70, 985.3, 988.4, 18.4, 24.5,0, 4.6, 3.8, 0.0, 17.1, 0.0, 369.6, 706.5, 487.9,99,1
85,01.05.2019 07:02:00,5, 20.6,50, 9.8,70, 985.2, 988.3, 22.0, 28.1,315, 4.6, 2.8, 0.0, 17.1, 0.0, 369.6, 706.5, 539.0,99,1
86,01.05.2019 07:07:00,5, 20.7,50, 9.8,70, 985.3, 988.4, 18.4, 23.4,0, 4.6, 3.8, 0.0, 17.1, 0.0, 369.6, 706.5, 633.4,99,1
87,01.05.2019 07:12:00,5, 20.6,50, 9.8,70, 985.3, 988.4, 19.4, 22.0,180, 4.6, 3.4, 0.0, 17.1, 0.0, 369.6, 706.5, 582.7,99,1
88,01.05.2019 07:17:00,5, 20.7,50, 9.9,70, 985.5, 988.6, 18.4, 23.4,338, 4.7, 3.9, 0.0, 17.1, 0.0, 369.6, 706.5, 750.7,99,1
89,01.05.2019 07:22:00,5, 20.7,50, 10.0,70, 985.6, 988.7, 18.4, 22.0,315, 4.8, 4.0, 0.0, 17.1, 0.0, 369.6, 706.5, 808.4,99,1
90,01.05.2019 07:27:00,5, 20.7,50, 10.1,70, 985.5, 988.6, 19.4, 25.6,270, 4.9, 3.8, 0.0, 17.1, 0.0, 369.6, 706.5, 1133.9,99,1
91,01.05.2019 07:32:00,5, 21.0,49, 10.4,70, 985.5, 988.6, 18.4, 23.4,315, 5.2, 4.5, 0.0, 17.1, 0.0, 369.6, 706.5, 1257.4,99,1
92,01.05.2019 07:37:00,5, 21.3,49, 10.5,70, 985.5, 988.6, 17.3, 23.4,0, 5.3, 5.0, 0.0, 17.1, 0.0, 369.6, 706.5, 1344.6,99,1
93,01.05.2019 07:42:00,5, 21.5,49, 10.5,70, 985.5, 988.6, 14.8, 20.9,315, 5.3, 5.8, 0.0, 17.1, 0.0, 369.6, 706.5, 1496.2,99,1
94,01.05.2019 07:47:00,5, 21.6,49, 10.5,69, 985.4, 988.5, 20.9, 28.1,315, 5.1, 4.0, 0.0, 17.1, 0.0, 369.6, 706.5, 1286.1,99,1
95,01.05.2019 07:52:00,5, 21.6,49, 10.4,70, 985.7, 988.8, 14.8, 17.3,338, 5.2, 5.7, 0.0, 17.1, 0.0, 369.6, 706.5, 1057.2,99,1
96,01.05.2019 07:57:00,5, 21.7,49, 10.4,70, 985.5, 988.6, 13.3, 18.4,0, 5.2, 6.2, 0.0, 17.1, 0.0, 369.6, 706.5, 1265.6,540,2
97,01.05.2019 08:02:00,5, 21.6,49, 10.5,70, 985.6, 988.7, 18.4, 20.9,293, 5.3, 4.6, 0.0, 17.1, 0.0, 369.6, 706.5, 1383.2,540,2
98,01.05.2019 08:07:00,5, 21.6,49, 10.9,70, 985.6, 988.7, 18.4, 23.4,338, 5.7, 5.2, 0.0, 17.1, 0.0, 369.6, 706.5, 3056.0,540,2
99,01.05.2019 08:12:00,5, 21.6,48, 11.2,68, 985.7, 988.8, 12.2, 19.4,0, 5.5, 7.6, 0.0, 17.1, 0.0, 369.6, 706.5, 1967.3,540,2
100,01.05.2019 08:17:00,5, 21.6,48, 11.2,66, 985.7, 988.8, 19.4, 23.4,270, 5.1, 5.2, 0.0, 17.1, 0.0, 369.6, 706.5, 4139.9,540,2
101,01.05.2019 08:22:00,5, 21.6,48, 11.5,66, 985.8, 988.9, 22.0, 27.0,315, 5.4, 5.0, 0.0, 17.1, 0.0, 369.6, 706.5, 4157.5,540,2
102,01.05.2019 08:27:00,5, 21.5,48, 11.6,65, 985.8, 988.9, 18.4, 25.6,338, 5.3, 6.0, 0.0, 17.1, 0.0, 369.6, 706.5, 4242.4,540,2
103,01.05.2019 08:32:00,5, 21.5,48, 11.8,65, 985.6, 988.7, 17.3, 27.0,315, 5.4, 6.6, 0.0, 17.1, 0.0, 369.6, 706.5, 4399.8,540,2
104,01.05.2019 08:37:00,5, 21.5,48, 11.9,64, 985.9, 989.0, 22.0, 28.1,315, 5.3, 5.5, 0.0, 17.1, 0.0, 369.6, 706.5, 4611.7,540,2
105,01.05.2019 08:42:00,5, 21.4,48, 12.1,64, 985.7, 988.8, 19.4, 23.4,315, 5.5, 6.4, 0.0, 17.1, 0.0, 369.6, 706.5, 4769.7,1000,3
106,01.05.2019 08:47:00,5, 21.4,48, 12.3,63, 986.0, 989.1, 15.8, 20.9,315, 5.5, 7.6, 0.0, 17.1, 0.0, 369.6, 706.5, 4863.9,1000,3
107,01.05.2019 08:52:00,5, 21.4,49, 12.6,61, 985.9, 989.0, 18.4, 28.1,315, 5.3, 7.3, 0.0, 17.1, 0.0, 369.6, 706.5, 5120.9,1000,3
108,01.05.2019 08:57:00,5, 21.4,49, 12.8,59, 985.9, 989.0, 14.8, 19.4,315, 5.0, 8.6, 0.0, 17.1, 0.0, 369.6, 706.5, 5354.4,1000,3
109,01.05.2019 09:02:00,5, 21.4,49, 12.9,59, 985.8, 988.9, 22.0, 29.5,315, 5.1, 6.8, 0.0, 17.1, 0.0, 369.6, 706.5, 5506.6,1000,3
110,01.05.2019 09:07:00,5, 21.4,49, 13.1,59, 985.9, 989.0, 19.4, 23.4,315, 5.3, 7.7, 0.0, 17.1, 0.0, 369.6, 706.5, 5658.2,1000,3
111,01.05.2019 09:12:00,5, 21.4,49, 13.6,60, 985.8, 988.9, 14.8, 20.9,315, 6.0, 9.6, 0.0, 17.1, 0.0, 369.6, 706.5, 5964.9,1000,3
112,01.05.2019 09:17:00,5, 21.4,49, 13.7,59, 985.9, 989.0, 14.8, 18.4,315, 5.9, 9.7, 0.0, 17.1, 0.0, 369.6, 706.5, 5994.1,1000,3
113,01.05.2019 09:22:00,5, 21.4,49, 14.0,55, 985.8, 988.9, 22.0, 25.6,315, 5.1, 8.2, 0.0, 17.1, 0.0, 369.6, 706.5, 6207.2,1400,4
114,01.05.2019 09:27:00,5, 21.4,49, 14.1,53, 985.6, 988.7, 18.4, 25.6,315, 4.7, 9.2, 0.0, 17.1, 0.0, 369.6, 706.5, 6455.3,1400,4
115,01.05.2019 09:32:00,5, 21.5,49, 14.2,52, 985.8, 988.9, 19.4, 23.4,0, 4.5, 9.1, 0.0, 17.1, 0.0, 369.6, 706.5, 6677.7,1400,4
116,01.05.2019 09:37:00,5, 21.5,49, 14.5,52, 985.7, 988.8, 17.3, 24.5,315, 4.8, 10.0, 0.0, 17.1, 0.0, 369.6, 706.5, 6821.1,1400,4
117,01.05.2019 09:42:00,5, 21.5,49, 14.7,51, 985.8, 988.9, 14.8, 19.4,315, 4.7, 10.9, 0.0, 17.1, 0.0, 369.6, 706.5, 6962.8,1400,4
118,01.05.2019 09:47:00,5, 21.5,49, 14.7,48, 985.8, 988.9, 18.4, 25.6,315, 3.8, 9.9, 0.0, 17.1, 0.0, 369.6, 706.5, 7093.9,1400,4
119,01.05.2019 09:52:00,5, 21.5,49, 14.6,44, 985.8, 988.9, 31.7, 37.8,0, 2.5, 7.5, 0.0, 17.1, 0.0, 369.6, 706.5, 7290.5,1843,5
120,01.05.2019 09:57:00,5, 21.6,49, 14.7,43, 985.7, 988.8, 23.4, 34.2,315, 2.3, 8.9, 0.0, 17.1, 0.0, 369.6, 706.5, 7513.5,1843,5
121,01.05.2019 10:02:00,5, 21.6,49, 14.8,41, 985.7, 988.8, 19.4, 28.1,0, 1.7, 9.8, 0.0, 17.1, 0.0, 369.6, 706.5, 7667.5,1843,5
122,01.05.2019 10:07:00,5, 21.6,49, 14.7,38, 985.7, 988.8, 25.6, 31.7,315, 0.5, 8.5, 0.0, 17.1, 0.0, 369.6, 706.5, 7863.5,1843,5
123,01.05.2019 10:12:00,5, 21.6,49, 15.0,40, 985.7, 988.8, 23.4, 28.1,315, 1.5, 9.3, 0.0, 17.1, 0.0, 369.6, 706.5, 8038.5,1843,5
124,01.05.2019 10:17:00,5, 21.6,49, 15.2,41, 985.8, 988.9, 23.4, 29.5,315, 2.1, 9.5, 0.0, 17.1, 0.0, 369.6, 706.5, 8169.1,1843,5
125,01.05.2019 10:22:00,5, 21.7,49, 15.4,40, 985.6, 988.7, 15.8, 20.9,315, 1.9, 11.4, 0.0, 17.1, 0.0, 369.6, 706.5, 8321.8,2292,6
126,01.05.2019 10:27:00,5, 21.7,49, 15.7,40, 985.8, 988.9, 15.8, 19.4,338, 2.2, 11.8, 0.0, 17.1, 0.0, 369.6, 706.5, 8358.7,2292,6
127,01.05.2019 10:32:00,5, 21.8,49, 15.8,40, 985.8, 988.9, 23.4, 34.2,338, 2.2, 10.3, 0.0, 17.1, 0.0, 369.6, 706.5, 8640.8,2292,6
128,01.05.2019 10:37:00,5, 21.8,49, 15.6,34, 986.0, 989.1, 28.1, 33.1,315, -0.2, 9.3, 0.0, 17.1, 0.0, 369.6, 706.5, 8721.6,2292,6
129,01.05.2019 10:42:00,5, 21.8,48, 15.4,34, 986.0, 989.1, 20.9, 25.6,315, -0.4, 10.3, 0.0, 17.1, 0.0, 369.6, 706.5, 8786.0,2292,6
130,01.05.2019 10:47:00,5, 21.8,48, 15.9,34, 985.8, 988.9, 17.3, 22.0,45, 0.1, 11.7, 0.0, 17.1, 0.0, 369.6, 706.5, 9008.4,2734,7
131,01.05.2019 10:52:00,5, 21.8,48, 15.7,31, 985.7, 988.8, 29.5, 37.8,315, -1.4, 9.3, 0.0, 17.1, 0.0, 369.6, 706.5, 9098.5,2734,7
132,01.05.2019 10:57:00,5, 21.8,47, 15.8,33, 985.8, 988.9, 20.9, 28.1,0, -0.4, 10.8, 0.0, 17.1, 0.0, 369.6, 706.5, 9105.5,2734,7
133,01.05.2019 11:02:00,5, 21.8,47, 16.1,32, 985.8, 988.9, 18.4, 23.4,315, -0.6, 11.7, 0.0, 17.1, 0.0, 369.6, 706.5, 9355.3,2734,7
134,01.05.2019 11:07:00,5, 21.9,46, 15.8,31, 985.6, 988.7, 30.6, 39.2,315, -1.3, 9.3, 0.0, 17.1, 0.0, 369.6, 706.5, 9426.7,2734,7
135,01.05.2019 11:12:00,5, 21.9,46, 15.8,32, 985.8, 988.9, 19.4, 27.0,0, -0.8, 11.1, 0.0, 17.1, 0.0, 369.6, 706.5, 9427.3,2734,7
136,01.05.2019 11:17:00,5, 21.9,46, 16.0,32, 985.8, 988.9, 23.4, 27.0,315, -0.7, 10.6, 0.0, 17.1, 0.0, 369.6, 706.5, 9575.9,3138,8
137,01.05.2019 11:22:00,5, 21.9,45, 16.3,32, 985.6, 988.7, 22.0, 29.5,315, -0.4, 11.2, 0.0, 17.1, 0.0, 369.6, 706.5, 9657.3,3138,8
138,01.05.2019 11:27:00,5, 22.9,45, 16.5,32, 985.6, 988.7, 17.3, 24.5,315, -0.2, 12.4, 0.0, 17.1, 0.0, 369.6, 706.5, 9796.6,3138,8
139,01.05.2019 11:32:00,5, 22.9,44, 16.5,30, 985.7, 988.8, 24.5, 29.5,338, -1.1, 11.1, 0.0, 17.1, 0.0, 369.6, 706.5, 9913.6,3138,8
140,01.05.2019 11:37:00,5, 23.0,44, 16.6,31, 985.6, 988.7, 17.3, 22.0,315, -0.6, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 9942.3,3138,8
141,01.05.2019 11:42:00,5, 23.0,43, 16.7,31, 985.6, 988.7, 25.6, 40.3,315, -0.5, 11.2, 0.0, 17.1, 0.0, 369.6, 706.5, 10097.4,3138,8
142,01.05.2019 11:47:00,5, 23.1,43, 16.4,30, 985.7, 988.8, 27.0, 37.8,0, -1.2, 10.6, 0.0, 17.1, 0.0, 369.6, 706.5, 9999.1,3138,8
143,01.05.2019 11:52:00,5, 23.1,43, 16.6,31, 985.7, 988.8, 25.6, 31.7,338, -0.6, 11.0, 0.0, 17.1, 0.0, 369.6, 706.5, 10069.3,3138,8
144,01.05.2019 11:57:00,5, 23.1,43, 17.0,31, 985.7, 988.8, 19.4, 25.6,0, -0.2, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10148.3,3138,8
145,01.05.2019 12:02:00,5, 23.2,42, 16.9,30, 985.7, 988.8, 24.5, 30.6,315, -0.8, 11.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10211.0,3648,9
146,01.05.2019 12:07:00,5, 23.3,42, 17.0,26, 985.7, 988.8, 23.4, 30.6,338, -2.6, 11.9, 0.0, 17.1, 0.0, 369.6, 706.5, 10214.5,3648,9
147,01.05.2019 12:12:00,5, 23.3,42, 17.0,26, 985.6, 988.7, 25.6, 31.7,315, -2.6, 11.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10327.4,3648,9
148,01.05.2019 12:17:00,5, 23.3,42, 17.3,30, 985.6, 988.7, 24.5, 30.6,315, -0.4, 12.1, 0.0, 17.1, 0.0, 369.6, 706.5, 10247.8,3648,9
149,01.05.2019 12:22:00,5, 23.3,42, 17.0,24, 985.6, 988.7, 19.4, 24.5,315, -3.7, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10356.1,3648,9
150,01.05.2019 12:27:00,5, 23.3,42, 16.9,26, 985.7, 988.8, 20.9, 29.5,338, -2.7, 12.2, 0.0, 17.1, 0.0, 369.6, 706.5, 3592.1,1843,5
151,01.05.2019 12:32:00,5, 23.3,41, 16.7,30, 985.6, 988.7, 18.4, 23.4,338, -0.9, 12.5, 0.0, 17.1, 0.0, 369.6, 706.5, 7631.2,2734,7
152,01.05.2019 12:37:00,5, 23.3,41, 17.0,28, 985.4, 988.5, 19.4, 25.6,315, -1.6, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10866.5,3648,9
153,01.05.2019 12:42:00,5, 23.3,41, 17.5,27, 985.6, 988.7, 27.0, 31.7,315, -1.7, 12.1, 0.0, 17.1, 0.0, 369.6, 706.5, 8918.8,3138,8
154,01.05.2019 12:47:00,5, 23.3,41, 17.5,30, 985.3, 988.4, 23.4, 28.1,315, -0.2, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 11565.3,3648,9
155,01.05.2019 12:52:00,5, 23.3,41, 18.1,32, 985.4, 988.5, 18.4, 27.0,0, 1.2, 14.2, 0.0, 17.1, 0.0, 369.6, 706.5, 10741.2,3648,9
156,01.05.2019 12:57:00,5, 23.3,40, 18.1,31, 985.4, 988.5, 18.4, 24.5,315, 0.7, 14.2, 0.0, 17.1, 0.0, 369.6, 706.5, 10443.9,3138,8
157,01.05.2019 13:02:00,5, 23.4,40, 18.1,31, 985.2, 988.3, 22.0, 25.6,315, 0.7, 13.6, 0.0, 17.1, 0.0, 369.6, 706.5, 10384.2,3138,8
158,01.05.2019 13:07:00,5, 23.4,40, 17.8,31, 985.4, 988.5, 12.2, 15.8,315, 0.5, 15.3, 0.0, 17.1, 0.0, 369.6, 706.5, 10237.9,3138,8
159,01.05.2019 13:12:00,5, 23.4,40, 18.0,32, 985.3, 988.4, 19.4, 24.5,315, 1.1, 13.9, 0.0, 17.1, 0.0, 369.6, 706.5, 10076.3,3138,8
160,01.05.2019 13:17:00,5, 23.4,40, 18.1,34, 985.5, 988.6, 20.9, 29.5,293, 2.0, 13.8, 0.0, 17.1, 0.0, 369.6, 706.5, 10304.0,3138,8
161,01.05.2019 13:22:00,5, 23.4,40, 18.3,34, 985.2, 988.3, 20.9, 30.6,338, 2.2, 14.0, 0.0, 17.1, 0.0, 369.6, 706.5, 10109.1,3138,8
162,01.05.2019 13:27:00,5, 23.4,40, 18.2,34, 985.4, 988.5, 22.0, 27.0,315, 2.1, 13.7, 0.0, 17.1, 0.0, 369.6, 706.5, 10344.4,3138,8
163,01.05.2019 13:32:00,5, 23.4,40, 18.2,35, 985.5, 988.6, 12.2, 14.8,270, 2.5, 15.8, 0.0, 17.1, 0.0, 369.6, 706.5, 10713.1,3138,8
164,01.05.2019 13:37:00,5, 23.4,40, 18.7,36, 985.2, 988.3, 19.4, 24.5,0, 3.3, 14.8, 0.0, 17.1, 0.0, 369.6, 706.5, 12823.1,3648,9
165,01.05.2019 13:42:00,5, 23.5,40, 18.9,34, 985.4, 988.5, 12.2, 15.8,315, 2.7, 16.6, 0.0, 17.1, 0.0, 369.6, 706.5, 13085.9,3648,9
166,01.05.2019 13:47:00,5, 23.6,40, 19.0,30, 985.2, 988.3, 20.9, 27.0,0, 1.1, 14.9, 0.0, 17.1, 0.0, 369.6, 706.5, 5904.6,1843,5
167,01.05.2019 13:52:00,5, 23.6,40, 18.7,30, 984.9, 988.0, 17.3, 22.0,315, 0.8, 15.2, 0.0, 17.1, 0.0, 369.6, 706.5, 5481.4,1843,5
168,01.05.2019 13:57:00,5, 23.6,39, 18.2,23, 985.0, 988.1, 22.0, 31.7,0, -3.3, 13.7, 0.0, 17.1, 0.0, 369.6, 706.5, 4963.4,1843,5
169,01.05.2019 14:02:00,5, 23.5,39, 18.1,25, 985.1, 988.2, 18.4, 28.1,0, -2.2, 14.2, 0.0, 17.1, 0.0, 369.6, 706.5, 3344.5,1400,4
170,01.05.2019 14:07:00,5, 23.4,39, 17.7,32, 985.0, 988.1, 23.4, 25.6,293, 0.8, 12.8, 0.0, 17.1, 0.0, 369.6, 706.5, 5271.3,1843,5
171,01.05.2019 14:12:00,5, 23.4,39, 17.9,32, 984.9, 988.0, 13.3, 18.4,338, 1.0, 15.1, 0.0, 17.1, 0.0, 369.6, 706.5, 6869.1,2292,6
172,01.05.2019 14:17:00,5, 23.4,39, 18.3,33, 984.9, 988.0, 15.8, 19.4,0, 1.8, 15.0, 0.0, 17.1, 0.0, 369.6, 706.5, 9578.9,2734,7
173,01.05.2019 14:22:00,5, 23.4,39, 19.0,33, 984.9, 988.0, 19.4, 23.4,270, 2.4, 15.2, 0.0, 17.1, 0.0, 369.6, 706.5, 9755.6,2734,7
174,01.05.2019 14:27:00,5, 23.6,39, 19.1,32, 984.7, 987.8, 18.4, 24.5,338, 2.0, 15.5, 0.0, 17.1, 0.0, 369.6, 706.5, 9182.8,2734,7
175,01.05.2019 14:32:00,5, 23.6,39, 19.0,32, 984.8, 987.9, 14.8, 18.4,315, 2.0, 16.1, 0.0, 17.1, 0.0, 369.6, 706.5, 9438.4,2734,7
176,01.05.2019 14:37:00,5, 23.6,39, 19.0,31, 984.8, 987.9, 19.4, 22.0,315, 1.5, 15.2, 0.0, 17.1, 0.0, 369.6, 706.5, 6711.1,2292,6
177,01.05.2019 14:42:00,5, 23.6,39, 18.7,32, 984.9, 988.0, 20.9, 24.5,270, 1.7, 14.5, 0.0, 17.1, 0.0, 369.6, 706.5, 9708.2,2734,7
178,01.05.2019 14:47:00,5, 23.6,39, 19.2,35, 984.8, 987.9, 14.8, 19.4,315, 3.4, 16.3, 0.0, 17.1, 0.0, 369.6, 706.5, 8120.5,2292,6
179,01.05.2019 14:52:00,5, 23.7,39, 19.1,37, 984.9, 988.0, 12.2, 18.4,315, 4.1, 16.8, 0.0, 17.1, 0.0, 369.6, 706.5, 6880.8,2734,7
180,01.05.2019 14:57:00,5, 23.7,39, 19.2,37, 984.8, 987.9, 11.2, 13.3,315, 4.2, 17.2, 0.0, 17.1, 0.0, 369.6, 706.5, 4736.9,1400,4
181,01.05.2019 15:02:00,5, 23.7,38, 18.7,38, 984.6, 987.7, 19.4, 30.6,315, 4.1, 14.8, 0.0, 17.1, 0.0, 369.6, 706.5, 2366.5,540,2
182,01.05.2019 15:07:00,5, 23.6,38, 18.4,41, 984.7, 987.8, 13.3, 18.4,0, 4.9, 15.7, 0.0, 17.1, 0.0, 369.6, 706.5, 2225.4,540,2
183,01.05.2019 15:12:00,5, 23.6,38, 18.5,41, 984.5, 987.6, 22.0, 25.6,293, 5.0, 14.1, 0.0, 17.1, 0.0, 369.6, 706.5, 1976.1,540,2
184,01.05.2019 15:17:00,5, 23.6,38, 18.3,41, 984.5, 987.6, 18.4, 25.6,315, 4.8, 14.5, 0.0, 17.1, 0.0, 369.6, 706.5, 2083.2,540,2
185,01.05.2019 15:22:00,5, 23.5,38, 18.2,41, 984.5, 987.6, 20.9, 30.6,315, 4.8, 13.9, 0.0, 17.1, 0.0, 369.6, 706.5, 2932.5,1000,3
186,01.05.2019 15:27:00,5, 23.4,38, 18.0,47, 984.7, 987.8, 20.9, 27.0,315, 6.5, 13.6, 0.0, 17.1, 0.0, 369.6, 706.5, 7554.5,1400,4
187,01.05.2019 15:32:00,5, 23.4,38, 17.7,49, 984.7, 987.8, 24.5, 28.1,315, 6.9, 12.7, 0.0, 17.1, 0.0, 369.6, 706.5, 3198.8,1000,3
188,01.05.2019 15:37:00,5, 23.4,39, 17.8,50, 984.5, 987.6, 14.8, 19.4,0, 7.3, 14.6, 0.0, 17.1, 0.0, 369.6, 706.5, 3056.6,1000,3
189,01.05.2019 15:42:00,5, 23.4,39, 17.6,50, 984.5, 987.6, 22.0, 29.5,315, 7.1, 12.9, 0.0, 17.1, 0.0, 369.6, 706.5, 2087.3,540,2
190,01.05.2019 15:47:00,5, 23.4,39, 17.3,53, 984.4, 987.5, 14.8, 19.4,293, 7.7, 14.0, 0.0, 17.1, 0.0, 369.6, 706.5, 1985.5,540,2
191,01.05.2019 15:52:00,5, 23.4,39, 17.0,54, 984.5, 987.6, 15.8, 19.4,270, 7.6, 13.4, 0.0, 17.1, 0.0, 369.6, 706.5, 5855.4,1400,4
192,01.05.2019 15:57:00,5, 23.4,39, 17.0,55, 984.7, 987.8, 17.3, 19.4,315, 7.9, 13.1, 0.0, 17.1, 0.0, 369.6, 706.5, 2122.4,540,2
193,01.05.2019 16:02:00,5, 23.4,39, 17.0,56, 984.4, 987.5, 15.8, 19.4,270, 8.2, 13.4, 0.0, 17.1, 0.0, 369.6, 706.5, 2098.4,540,2
194,01.05.2019 16:07:00,5, 23.4,39, 17.3,55, 984.2, 987.3, 15.8, 17.3,315, 8.2, 13.8, 0.0, 17.1, 0.0, 369.6, 706.5, 2812.5,540,2
195,01.05.2019 16:12:00,5, 23.4,40, 18.3,49, 984.2, 987.3, 23.4, 28.1,315, 7.4, 13.6, 0.0, 17.1, 0.0, 369.6, 706.5, 6705.8,1400,4
196,01.05.2019 16:17:00,5, 23.5,40, 18.7,47, 984.3, 987.4, 27.0, 35.6,315, 7.2, 13.7, 0.0, 17.1, 0.0, 369.6, 706.5, 5880.6,1400,4
197,01.05.2019 16:22:00,5, 23.6,40, 18.6,48, 984.2, 987.3, 23.4, 31.7,315, 7.4, 14.0, 0.0, 17.1, 0.0, 369.6, 706.5, 2813.7,1000,3
198,01.05.2019 16:27:00,5, 23.7,41, 17.9,48, 984.2, 987.3, 25.6, 30.6,338, 6.8, 12.8, 0.0, 17.1, 0.0, 369.6, 706.5, 4189.7,1000,3
199,01.05.2019 16:32:00,5, 23.7,40, 17.7,48, 984.2, 987.3, 31.7, 42.8,0, 6.6, 11.8, 0.0, 17.1, 0.0, 369.6, 706.5, 5049.5,1000,3
200,01.05.2019 16:37:00,5, 23.6,40, 17.9,48, 984.3, 987.4, 28.1, 37.8,315, 6.8, 12.5, 0.0, 17.1, 0.0, 369.6, 706.5, 5082.8,1000,3
201,01.05.2019 16:42:00,5, 23.6,40, 18.1,48, 984.1, 987.2, 34.2, 40.3,315, 6.9, 12.1, 0.0, 17.1, 0.0, 369.6, 706.5, 4549.0,1000,3
202,01.05.2019 16:47:00,5, 23.6,40, 18.0,46, 984.1, 987.2, 24.5, 30.6,315, 6.2, 13.1, 0.0, 17.1, 0.0, 369.6, 706.5, 4150.5,1000,3
203,01.05.2019 16:52:00,5, 23.6,40, 18.3,50, 984.2, 987.3, 20.9, 24.5,315, 7.7, 14.0, 0.0, 17.1, 0.0, 369.6, 706.5, 3960.8,1000,3
204,01.05.2019 16:57:00,5, 23.6,40, 17.9,48, 984.2, 987.3, 36.7, 43.9,315, 6.8, 11.6, 0.0, 17.1, 0.0, 369.6, 706.5, 3693.9,1000,3
205,01.05.2019 17:02:00,5, 23.6,40, 17.6,49, 984.4, 987.5, 30.6, 37.8,315, 6.8, 11.8, 0.0, 17.1, 0.0, 369.6, 706.5, 3391.3,540,2
206,01.05.2019 17:07:00,5, 23.6,40, 17.7,51, 984.3, 987.4, 23.4, 29.5,270, 7.5, 12.8, 0.0, 17.1, 0.0, 369.6, 706.5, 3276.0,540,2
207,01.05.2019 17:12:00,5, 23.6,40, 17.7,50, 984.3, 987.4, 27.0, 36.7,0, 7.2, 12.3, 0.0, 17.1, 0.0, 369.6, 706.5, 2990.4,540,2
208,01.05.2019 17:17:00,5, 23.5,40, 17.6,52, 984.3, 987.4, 14.8, 22.0,315, 7.7, 14.4, 0.0, 17.1, 0.0, 369.6, 706.5, 1968.5,540,2
209,01.05.2019 17:22:00,5, 23.5,40, 17.4,54, 984.4, 987.5, 25.6, 29.5,315, 8.0, 12.1, 0.0, 17.1, 0.0, 369.6, 706.5, 3122.1,540,2
210,01.05.2019 17:27:00,5, 23.4,40, 17.5,51, 984.2, 987.3, 20.9, 30.6,270, 7.3, 13.0, 0.0, 17.1, 0.0, 369.6, 706.5, 3159.6,540,2
211,01.05.2019 17:32:00,5, 23.4,40, 17.5,52, 984.3, 987.4, 22.0, 28.1,338, 7.6, 12.8, 0.0, 17.1, 0.0, 369.6, 706.5, 2640.4,540,2
212,01.05.2019 17:37:00,5, 23.4,40, 17.1,56, 984.5, 987.6, 20.9, 27.0,270, 8.3, 12.5, 0.0, 17.1, 0.0, 369.6, 706.5, 2737.6,540,2
213,01.05.2019 17:42:00,5, 23.4,40, 17.2,55, 984.5, 987.6, 20.9, 25.6,315, 8.1, 12.6, 0.0, 17.1, 0.0, 369.6, 706.5, 2683.1,540,2
214,01.05.2019 17:47:00,5, 23.4,40, 17.2,55, 984.4, 987.5, 22.0, 29.5,315, 8.1, 12.4, 0.0, 17.1, 0.0, 369.6, 706.5, 2625.2,540,2
215,01.05.2019 17:52:00,5, 23.3,40, 17.2,55, 984.4, 987.5, 19.4, 25.6,315, 8.1, 12.9, 0.0, 17.1, 0.0, 369.6, 706.5, 2334.3,540,2
216,01.05.2019 17:57:00,5, 23.3,40, 17.2,54, 984.5, 987.6, 22.0, 28.1,338, 7.8, 12.4, 0.0, 17.1, 0.0, 369.6, 706.5, 2205.5,540,2
217,01.05.2019 18:02:00,5, 23.3,40, 17.2,54, 984.5, 987.6, 24.5, 31.7,338, 7.8, 12.0, 0.0, 17.1, 0.0, 369.6, 706.5, 1852.6,540,2
218,01.05.2019 18:07:00,5, 23.2,40, 17.2,55, 984.3, 987.4, 18.4, 24.5,315, 8.1, 13.1, 0.0, 17.1, 0.0, 369.6, 706.5, 1608.6,99,1
219,01.05.2019 18:12:00,5, 23.2,40, 17.1,55, 984.4, 987.5, 19.4, 24.5,315, 8.0, 12.7, 0.0, 17.1, 0.0, 369.6, 706.5, 1487.4,99,1
220,01.05.2019 18:17:00,5, 23.1,40, 17.0,55, 984.3, 987.4, 15.8, 23.4,270, 7.9, 13.4, 0.0, 17.1, 0.0, 369.6, 706.5, 1341.1,99,1
221,01.05.2019 18:22:00,5, 23.1,40, 16.9,56, 984.5, 987.6, 19.4, 24.5,0, 8.1, 12.5, 0.0, 17.1, 0.0, 369.6, 706.5, 1071.3,99,1
222,01.05.2019 18:27:00,5, 23.1,40, 16.7,56, 984.4, 987.5, 19.4, 27.0,315, 7.9, 12.2, 0.0, 17.1, 0.0, 369.6, 706.5, 1036.7,99,1
223,01.05.2019 18:32:00,5, 23.0,40, 16.7,57, 984.2, 987.3, 14.8, 19.4,315, 8.2, 13.3, 0.0, 17.1, 0.0, 369.6, 706.5, 805.1,99,1
224,01.05.2019 18:37:00,5, 23.0,40, 16.6,57, 984.5, 987.6, 11.2, 15.8,315, 8.1, 14.2, 0.0, 17.1, 0.0, 369.6, 706.5, 788.3,99,1
225,01.05.2019 18:42:00,5, 23.0,40, 16.6,57, 984.4, 987.5, 14.8, 18.4,113, 8.1, 13.2, 0.0, 17.1, 0.0, 369.6, 706.5, 771.6,99,1
226,01.05.2019 18:47:00,5, 22.9,40, 16.4,56, 984.4, 987.5, 23.4, 30.6,315, 7.6, 11.1, 0.0, 17.1, 0.0, 369.6, 706.5, 682.9,99,1
227,01.05.2019 18:52:00,5, 22.9,40, 16.4,57, 984.4, 987.5, 19.4, 24.5,315, 7.9, 11.9, 0.0, 17.1, 0.0, 369.6, 706.5, 796.5,99,1
228,01.05.2019 18:57:00,5, 22.9,40, 16.3,56, 984.7, 987.8, 20.9, 28.1,315, 7.5, 11.4, 0.0, 17.1, 0.0, 369.6, 706.5, 785.1,99,1
229,01.05.2019 19:02:00,5, 22.8,40, 16.3,57, 984.3, 987.4, 17.3, 19.4,315, 7.8, 12.2, 0.0, 17.1, 0.0, 369.6, 706.5, 644.9,99,1
230,01.05.2019 19:07:00,5, 22.8,41, 15.9,58, 984.4, 987.5, 17.3, 20.9,315, 7.7, 11.7, 0.0, 17.1, 0.0, 369.6, 706.5, 565.6,99,1
231,01.05.2019 19:12:00,5, 22.8,41, 15.8,59, 984.4, 987.5, 15.8, 20.9,315, 7.8, 11.9, 0.0, 17.1, 0.0, 369.6, 706.5, 390.6,99,1
232,01.05.2019 19:17:00,5, 22.8,41, 15.6,60, 984.6, 987.7, 15.8, 19.4,338, 7.9, 11.7, 0.0, 17.1, 0.0, 369.6, 706.5, 287.2,99,1
233,01.05.2019 19:22:00,5, 22.8,41, 15.4,60, 984.5, 987.6, 15.8, 20.9,0, 7.7, 11.4, 0.0, 17.1, 0.0, 369.6, 706.5, 206.7,99,1
234,01.05.2019 19:27:00,5, 22.8,42, 15.2,61, 984.7, 987.8, 14.8, 25.6,0, 7.7, 11.5, 0.0, 17.1, 0.0, 369.6, 706.5, 127.8,0,0
235,01.05.2019 19:32:00,5, 22.7,42, 15.1,62, 984.6, 987.7, 17.3, 20.9,0, 7.9, 10.7, 0.0, 17.1, 0.0, 369.6, 706.5, 74.5,0,0
236,01.05.2019 19:37:00,5, 22.7,42, 14.8,64, 984.7, 987.8, 17.3, 23.4,315, 8.1, 10.3, 0.0, 17.1, 0.0, 369.6, 706.5, 54.7,0,0
237,01.05.2019 19:42:00,5, 22.7,42, 14.5,68, 984.6, 987.7, 19.4, 24.5,315, 8.7, 9.4, 0.0, 17.1, 0.0, 369.6, 706.5, 67.6,0,0
238,01.05.2019 19:47:00,5, 22.7,42, 14.2,70, 984.7, 987.8, 12.2, 15.8,315, 8.8, 11.1, 0.0, 17.1, 0.0, 369.6, 706.5, 65.3,0,0
239,01.05.2019 19:52:00,5, 22.7,43, 14.1,71, 984.6, 987.7, 12.2, 14.8,315, 8.9, 11.0, 0.0, 17.1, 0.0, 369.6, 706.5, 50.6,0,0
240,01.05.2019 19:57:00,5, 22.7,43, 13.9,71, 984.5, 987.6, 7.2, 12.2,315, 8.7, 13.0, 0.0, 17.1, 0.0, 369.6, 706.5, 30.7,0,0
241,01.05.2019 20:02:00,5, 22.7,43, 13.9,71, 984.6, 987.7, 7.2, 9.7,0, 8.7, 13.0, 0.0, 17.1, 0.0, 369.6, 706.5, 12.8,0,0
242,01.05.2019 20:07:00,5, 22.7,43, 13.7,71, 984.5, 987.6, 9.7, 13.3,315, 8.6, 11.5, 0.0, 17.1, 0.0, 369.6, 706.5, 1.5,0,0
243,01.05.2019 20:12:00,5, 22.7,43, 13.6,71, 984.6, 987.7, 7.2, 9.7,315, 8.5, 12.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
244,01.05.2019 20:17:00,5, 21.9,44, 13.7,70, 984.3, 987.4, 7.2, 9.7,315, 8.3, 12.8, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
245,01.05.2019 20:22:00,5, 21.9,44, 13.7,70, 984.6, 987.7, 11.2, 14.8,315, 8.3, 10.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
246,01.05.2019 20:27:00,5, 21.8,44, 13.7,70, 984.4, 987.5, 13.3, 17.3,0, 8.3, 10.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
247,01.05.2019 20:32:00,5, 21.8,44, 13.7,70, 984.6, 987.7, 11.2, 15.8,0, 8.3, 10.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
248,01.05.2019 20:37:00,5, 21.8,44, 13.7,70, 984.8, 987.9, 11.2, 14.8,315, 8.3, 10.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
249,01.05.2019 20:42:00,5, 21.7,45, 13.7,70, 984.8, 987.9, 14.8, 17.3,315, 8.3, 9.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
250,01.05.2019 20:47:00,5, 21.7,45, 13.6,70, 984.7, 987.8, 9.7, 14.8,315, 8.2, 11.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
251,01.05.2019 20:52:00,5, 21.6,45, 13.5,70, 984.9, 988.0, 14.8, 18.4,338, 8.2, 9.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
252,01.05.2019 20:57:00,5, 21.6,46, 13.5,70, 985.0, 988.1, 9.7, 12.2,315, 8.2, 11.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
253,01.05.2019 21:02:00,5, 21.6,46, 13.5,70, 984.7, 987.8, 14.8, 17.3,0, 8.2, 9.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
254,01.05.2019 21:07:00,5, 21.6,46, 13.4,70, 984.9, 988.0, 11.2, 13.3,315, 8.1, 10.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
255,01.05.2019 21:12:00,5, 21.6,46, 13.3,70, 984.9, 988.0, 12.2, 18.4,0, 8.0, 10.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
256,01.05.2019 21:17:00,5, 21.6,47, 13.2,70, 985.0, 988.1, 13.3, 19.4,315, 7.9, 9.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
257,01.05.2019 21:22:00,5, 21.6,47, 13.2,70, 985.1, 988.2, 15.8, 18.4,338, 7.9, 8.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
258,01.05.2019 21:27:00,5, 21.6,47, 13.1,70, 985.0, 988.1, 11.2, 14.8,338, 7.8, 10.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
259,01.05.2019 21:32:00,5, 21.6,47, 13.0,70, 985.1, 988.2, 12.2, 15.8,315, 7.7, 9.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
260,01.05.2019 21:37:00,5, 21.6,48, 12.8,71, 985.0, 988.1, 11.2, 14.8,338, 7.7, 9.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
261,01.05.2019 21:42:00,5, 21.6,48, 12.8,71, 984.9, 988.0, 11.2, 14.8,315, 7.7, 9.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
262,01.05.2019 21:47:00,5, 21.6,48, 12.7,71, 985.0, 988.1, 9.7, 11.2,315, 7.6, 10.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
263,01.05.2019 21:52:00,5, 21.6,48, 12.6,71, 985.0, 988.1, 9.7, 13.3,0, 7.5, 10.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
264,01.05.2019 21:57:00,5, 21.6,48, 12.5,72, 985.1, 988.2, 11.2, 15.8,315, 7.6, 9.6, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
265,01.05.2019 22:02:00,5, 21.5,48, 12.5,72, 984.8, 987.9, 8.6, 12.2,315, 7.6, 10.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
266,01.05.2019 22:07:00,5, 21.5,48, 12.3,75, 985.0, 988.1, 9.7, 12.2,315, 8.0, 10.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
267,01.05.2019 22:12:00,5, 21.5,49, 12.4,75, 985.1, 988.2, 12.2, 14.8,315, 8.1, 9.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
268,01.05.2019 22:17:00,5, 21.5,49, 12.3,75, 985.0, 988.1, 7.2, 9.7,315, 8.0, 11.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
269,01.05.2019 22:22:00,5, 21.5,49, 12.2,75, 984.9, 988.0, 11.2, 12.2,315, 7.9, 9.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
270,01.05.2019 22:27:00,5, 21.5,49, 12.1,76, 984.7, 987.8, 11.2, 15.8,315, 8.0, 9.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
271,01.05.2019 22:32:00,5, 21.5,49, 12.1,76, 984.8, 987.9, 14.8, 18.4,315, 8.0, 7.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
272,01.05.2019 22:37:00,5, 21.4,49, 12.0,76, 985.1, 988.2, 13.3, 17.3,315, 7.9, 8.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
273,01.05.2019 22:42:00,5, 21.4,48, 12.0,76, 984.9, 988.0, 12.2, 17.3,315, 7.9, 8.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
274,01.05.2019 22:47:00,5, 21.4,48, 11.9,76, 984.8, 987.9, 7.2, 11.2,315, 7.8, 10.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
275,01.05.2019 22:52:00,5, 21.3,48, 11.9,76, 985.0, 988.1, 12.2, 15.8,315, 7.8, 8.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
276,01.05.2019 22:57:00,5, 21.3,48, 12.0,76, 985.1, 988.2, 7.2, 11.2,0, 7.9, 11.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
277,01.05.2019 23:02:00,5, 21.3,48, 12.0,76, 984.8, 987.9, 13.3, 17.3,315, 7.9, 8.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
278,01.05.2019 23:07:00,5, 21.3,48, 12.1,75, 984.9, 988.0, 11.2, 14.8,338, 7.8, 9.1, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
279,01.05.2019 23:12:00,5, 21.3,48, 12.1,75, 985.0, 988.1, 9.7, 13.3,315, 7.8, 9.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
280,01.05.2019 23:17:00,5, 21.3,48, 12.1,75, 985.0, 988.1, 12.2, 14.8,315, 7.8, 8.7, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
281,01.05.2019 23:22:00,5, 21.3,48, 12.2,74, 985.0, 988.1, 9.7, 14.8,315, 7.7, 9.9, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
282,01.05.2019 23:27:00,5, 21.2,49, 12.3,74, 984.9, 988.0, 9.7, 17.3,315, 7.8, 10.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
283,01.05.2019 23:32:00,5, 21.2,49, 12.2,74, 984.8, 987.9, 6.1, 8.6,315, 7.7, 12.2, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
284,01.05.2019 23:37:00,5, 21.1,49, 12.3,74, 984.7, 987.8, 13.3, 17.3,315, 7.8, 8.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
285,01.05.2019 23:42:00,5, 21.1,49, 12.3,73, 984.8, 987.9, 9.7, 14.8,315, 7.6, 10.0, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
286,01.05.2019 23:47:00,5, 21.1,49, 12.3,73, 984.7, 987.8, 13.3, 17.3,338, 7.6, 8.5, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
287,01.05.2019 23:52:00,5, 21.1,49, 12.2,72, 984.8, 987.9, 8.6, 11.2,270, 7.3, 10.4, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0
288,01.05.2019 23:57:00,5, 21.1,49, 12.3,72, 984.9, 988.0, 11.2, 18.4,315, 7.4, 9.3, 0.0, 17.1, 0.0, 369.6, 706.5, 0.0,0,0