GIORGIO COLAZZOedonag
Created February 28, 2019

Pennyworth Home Automation

Pennyworth Home Automation: the first of it's kind, the first home automation system that will follow your habits

53
Pennyworth Home Automation

Things used in this project

Story

Read more

Schematics

Raspberry Lamp connection

NXP IOT Diagram

It's the blockdiagram of the firmware running on the NXP RapidIOT. Here you can see listed all the UUID used as input for the machine learning algorithm.

Events classified database

Events overview events with relative timestamp

Changing label to the class

user “edit category interface” for labeled data

Possible server dashboard

Main user dashboard

Code

Pennyworth_backend firmware.bin

BatchFile
No preview (download only).

alexa_fauxmo_interface.py

Python
#!/usr/bin/env python

"""
The MIT License (MIT)

Copyright (c) 2015 Maker Musings

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""

# For a complete discussion, see http://www.makermusings.com

import email.utils
import requests
import select
import socket
import struct
import sys
import time
import urllib
import uuid

# This XML is the minimum needed to define one of our virtual switches
# to the Amazon Echo

SETUP_XML = """<?xml version="1.0"?>
<root>
  <device>
    <deviceType>urn:MakerMusings:device:controllee:1</deviceType>
    <friendlyName>%(device_name)s</friendlyName>
    <manufacturer>Belkin International Inc.</manufacturer>
    <modelName>Emulated Socket</modelName>
    <modelNumber>3.1415</modelNumber>
    <UDN>uuid:Socket-1_0-%(device_serial)s</UDN>
  </device>
</root>
"""

DEBUG = False


def dbg(msg):
    global DEBUG
    if DEBUG:
        print
        msg
        sys.stdout.flush()


# A simple utility class to wait for incoming data to be
# ready on a socket.

class poller:
    def __init__(self):
        if 'poll' in dir(select):
            self.use_poll = True
            self.poller = select.poll()
        else:
            self.use_poll = False
        self.targets = {}

    def add(self, target, fileno=None):
        if not fileno:
            fileno = target.fileno()
        if self.use_poll:
            self.poller.register(fileno, select.POLLIN)
        self.targets[fileno] = target

    def remove(self, target, fileno=None):
        if not fileno:
            fileno = target.fileno()
        if self.use_poll:
            self.poller.unregister(fileno)
        del (self.targets[fileno])

    def poll(self, timeout=0):
        if self.use_poll:
            ready = self.poller.poll(timeout)
        else:
            ready = []
            if len(self.targets) > 0:
                (rlist, wlist, xlist) = select.select(self.targets.keys(), [], [], timeout)
                ready = [(x, None) for x in rlist]
        for one_ready in ready:
            target = self.targets.get(one_ready[0], None)
            if target:
                target.do_read(one_ready[0])


# Base class for a generic UPnP device. This is far from complete
# but it supports either specified or automatic IP address and port
# selection.

class upnp_device(object):
    this_host_ip = None

    @staticmethod
    def local_ip_address():
        if not upnp_device.this_host_ip:
            temp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
            try:
                temp_socket.connect(('8.8.8.8', 53))
                upnp_device.this_host_ip = temp_socket.getsockname()[0]
            except:
                upnp_device.this_host_ip = '127.0.0.1'
            del (temp_socket)
            dbg("got local address of %s" % upnp_device.this_host_ip)
        return upnp_device.this_host_ip

    def __init__(self, listener, poller, port, root_url, server_version, persistent_uuid, other_headers=None,
                 ip_address=None):
        self.listener = listener
        self.poller = poller
        self.port = port
        self.root_url = root_url
        self.server_version = server_version
        self.persistent_uuid = persistent_uuid
        self.uuid = uuid.uuid4()
        self.other_headers = other_headers

        if ip_address:
            self.ip_address = ip_address
        else:
            self.ip_address = upnp_device.local_ip_address()

        self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        self.socket.bind((self.ip_address, self.port))
        self.socket.listen(5)
        if self.port == 0:
            self.port = self.socket.getsockname()[1]
        self.poller.add(self)
        self.client_sockets = {}
        self.listener.add_device(self)

    def fileno(self):
        return self.socket.fileno()

    def do_read(self, fileno):
        if fileno == self.socket.fileno():
            (client_socket, client_address) = self.socket.accept()
            self.poller.add(self, client_socket.fileno())
            self.client_sockets[client_socket.fileno()] = client_socket
        else:
            data, sender = self.client_sockets[fileno].recvfrom(4096)
            if not data:
                self.poller.remove(self, fileno)
                del (self.client_sockets[fileno])
            else:
                self.handle_request(data, sender, self.client_sockets[fileno])

    def handle_request(self, data, sender, socket):
        pass

    def get_name(self):
        return "unknown"

    def respond_to_search(self, destination, search_target):
        dbg("Responding to search for %s" % self.get_name())
        date_str = email.utils.formatdate(timeval=None, localtime=False, usegmt=True)
        location_url = self.root_url % {'ip_address': self.ip_address, 'port': self.port}
        message = ("HTTP/1.1 200 OK\r\n"
                   "CACHE-CONTROL: max-age=86400\r\n"
                   "DATE: %s\r\n"
                   "EXT:\r\n"
                   "LOCATION: %s\r\n"
                   "OPT: \"http://schemas.upnp.org/upnp/1/0/\"; ns=01\r\n"
                   "01-NLS: %s\r\n"
                   "SERVER: %s\r\n"
                   "ST: %s\r\n"
                   "USN: uuid:%s::%s\r\n" % (
                   date_str, location_url, self.uuid, self.server_version, search_target, self.persistent_uuid,
                   search_target))
        if self.other_headers:
            for header in self.other_headers:
                message += "%s\r\n" % header
        message += "\r\n"
        temp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
        temp_socket.sendto(message, destination)


# This subclass does the bulk of the work to mimic a WeMo switch on the network.

class fauxmo(upnp_device):
    @staticmethod
    def make_uuid(name):
        return ''.join(["%x" % sum([ord(c) for c in name])] + ["%x" % ord(c) for c in "%sfauxmo!" % name])[:14]

    def __init__(self, name, listener, poller, ip_address, port, action_handler=None):
        self.serial = self.make_uuid(name)
        self.name = name
        self.ip_address = ip_address
        persistent_uuid = "Socket-1_0-" + self.serial
        other_headers = ['X-User-Agent: redsonic']
        upnp_device.__init__(self, listener, poller, port, "http://%(ip_address)s:%(port)s/setup.xml",
                             "Unspecified, UPnP/1.0, Unspecified", persistent_uuid, other_headers=other_headers,
                             ip_address=ip_address)
        if action_handler:
            self.action_handler = action_handler
        else:
            self.action_handler = self
        dbg("FauxMo device '%s' ready on %s:%s" % (self.name, self.ip_address, self.port))

    def get_name(self):
        return self.name

    def handle_request(self, data, sender, socket):
        if data.find('GET /setup.xml HTTP/1.1') == 0:
            dbg("Responding to setup.xml for %s" % self.name)
            xml = SETUP_XML % {'device_name': self.name, 'device_serial': self.serial}
            date_str = email.utils.formatdate(timeval=None, localtime=False, usegmt=True)
            message = ("HTTP/1.1 200 OK\r\n"
                       "CONTENT-LENGTH: %d\r\n"
                       "CONTENT-TYPE: text/xml\r\n"
                       "DATE: %s\r\n"
                       "LAST-MODIFIED: Sat, 01 Jan 2000 00:01:15 GMT\r\n"
                       "SERVER: Unspecified, UPnP/1.0, Unspecified\r\n"
                       "X-User-Agent: redsonic\r\n"
                       "CONNECTION: close\r\n"
                       "\r\n"
                       "%s" % (len(xml), date_str, xml))
            socket.send(message)
        elif data.find('SOAPACTION: "urn:Belkin:service:basicevent:1#SetBinaryState"') != -1:
            success = False
            if data.find('<BinaryState>1</BinaryState>') != -1:
                # on
                dbg("Responding to ON for %s" % self.name)
                success = self.action_handler.on()
            elif data.find('<BinaryState>0</BinaryState>') != -1:
                # off
                dbg("Responding to OFF for %s" % self.name)
                success = self.action_handler.off()
            else:
                dbg("Unknown Binary State request:")
                dbg(data)
            if success:
                # The echo is happy with the 200 status code and doesn't
                # appear to care about the SOAP response body
                soap = ""
                date_str = email.utils.formatdate(timeval=None, localtime=False, usegmt=True)
                message = ("HTTP/1.1 200 OK\r\n"
                           "CONTENT-LENGTH: %d\r\n"
                           "CONTENT-TYPE: text/xml charset=\"utf-8\"\r\n"
                           "DATE: %s\r\n"
                           "EXT:\r\n"
                           "SERVER: Unspecified, UPnP/1.0, Unspecified\r\n"
                           "X-User-Agent: redsonic\r\n"
                           "CONNECTION: close\r\n"
                           "\r\n"
                           "%s" % (len(soap), date_str, soap))
                socket.send(message)
        else:
            dbg(data)

    def on(self):
        return False

    def off(self):
        return True


# Since we have a single process managing several virtual UPnP devices,
# we only need a single listener for UPnP broadcasts. When a matching
# search is received, it causes each device instance to respond.
#
# Note that this is currently hard-coded to recognize only the search
# from the Amazon Echo for WeMo devices. In particular, it does not
# support the more common root device general search. The Echo
# doesn't search for root devices.

class upnp_broadcast_responder(object):
    TIMEOUT = 0

    def __init__(self):
        self.devices = []

    def init_socket(self):
        ok = True
        self.ip = '239.255.255.250'
        self.port = 1900
        try:
            # This is needed to join a multicast group
            self.mreq = struct.pack("4sl", socket.inet_aton(self.ip), socket.INADDR_ANY)

            # Set up server socket
            self.ssock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
            self.ssock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)

            try:
                self.ssock.bind(('', self.port))
            except Exception as e:
                dbg("WARNING: Failed to bind %s:%d: %s", (self.ip, self.port, e))
                ok = False

            try:
                self.ssock.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, self.mreq)
            except Exception as e:
                dbg('WARNING: Failed to join multicast group:', e)
                ok = False


        except Exception as e:
            dbg("Failed to initialize UPnP sockets:", e)
            return False
        if ok:
            dbg("Listening for UPnP broadcasts")

    def fileno(self):
        return self.ssock.fileno()

    def do_read(self, fileno):
        data, sender = self.recvfrom(1024)
        if data:
            if data.find('M-SEARCH') == 0 and data.find('urn:Belkin:device:**') != -1:
                for device in self.devices:
                    time.sleep(0.1)
                    device.respond_to_search(sender, 'urn:Belkin:device:**')
            else:
                pass

    # Receive network data
    def recvfrom(self, size):
        if self.TIMEOUT:
            self.ssock.setblocking(0)
            ready = select.select([self.ssock], [], [], self.TIMEOUT)[0]
        else:
            self.ssock.setblocking(1)
            ready = True

        try:
            if ready:
                return self.ssock.recvfrom(size)
            else:
                return False, False
        except Exception as e:
            dbg(e)
            return False, False

    def add_device(self, device):
        self.devices.append(device)
        dbg("UPnP broadcast listener: new device registered")


# This is an example handler class. The fauxmo class expects handlers to be
# instances of objects that have on() and off() methods that return True
# on success and False otherwise.
#
# This example class takes two full URLs that should be requested when an on
# and off command are invoked respectively. It ignores any return data.

class rest_api_handler(object):
    def __init__(self, on_cmd, off_cmd):
        self.on_cmd = on_cmd
        self.off_cmd = off_cmd

    def on(self):
        r = requests.get(self.on_cmd)
        return r.status_code == 200

    def off(self):
        r = requests.get(self.off_cmd)
        return r.status_code == 200


# Each entry is a list with the following elements:
#
# name of the virtual switch
# object with 'on' and 'off' methods
# port # (optional; may be omitted)

# NOTE: As of 2015-08-17, the Echo appears to have a hard-coded limit of
# 16 switches it can control. Only the first 16 elements of the FAUXMOS
# list will be used.

FAUXMOS = [
    ['tv lights',
     rest_api_handler('http://192.168.5.4/ha-api?cmd=on&a=tv', 'http://192.168.5.4/ha-api?cmd=off&a=tv')],
]

if len(sys.argv) > 1 and sys.argv[1] == '-d':
    DEBUG = True

# Set up our singleton for polling the sockets for data ready
p = poller()

# Set up our singleton listener for UPnP broadcasts
u = upnp_broadcast_responder()
u.init_socket()

# Add the UPnP broadcast listener to the poller so we can respond
# when a broadcast is received.
p.add(u)

# Create our FauxMo virtual switch devices
for one_faux in FAUXMOS:
    if len(one_faux) == 2:
        # a fixed port wasn't specified, use a dynamic one
        one_faux.append(0)
    switch = fauxmo(one_faux[0], u, p, None, one_faux[2], action_handler=one_faux[1])

dbg("Entering main loop\n")

while True:
    try:
        # Allow time for a ctrl-c to stop the process
        p.poll(100)
        time.sleep(0.1)
    except Exception as e:
        dbg(e)
        break

main.py

Python
from threading import Thread, Event
import time
#custom import
import lamp
import bleDataRead
import dataProcessing

if __name__ == '__main__':
    lamp.init()
    lamp.lampControllerRun()
    lampThread = Thread(target=lamp.lampControllerRun, args=(stop,))
    lampThread.start()
    jsonDataOut = bleDataRead.save_prk_values()
    classId = dataProcessing.classProviderMethod(jsonDataOut)
    delay = 3
    time.sleep(delay)
    lamp.animationFlag = classId
    while(true):
        time.sleep(1)

lamp.py

Python
#!/usr/bin/env python3

# NeoPixel library strandtest example

# Author: Tony DiCola (tony@tonydicola.com)

#

# Direct port of the Arduino NeoPixel library strandtest example.  Showcases

# various animations on a strip of NeoPixels.



import time

from neopixel import *

import argparse

from enum import Enum



# LED strip configuration:

LED_COUNT = 60  # Number of LED pixels.

LED_PIN = 18  # GPIO pin connected to the pixels (18 uses PWM!).

# LED_PIN        = 10      # GPIO pin connected to the pixels (10 uses SPI /dev/spidev0.0).

LED_FREQ_HZ = 800000  # LED signal frequency in hertz (usually 800khz)

LED_DMA = 10  # DMA channel to use for generating signal (try 10)

LED_BRIGHTNESS = 255  # Set to 0 for darkest and 255 for brightest

LED_INVERT = False  # True to invert the signal (when using NPN transistor level shift)

LED_CHANNEL = 0  # set to '1' for GPIOs 13, 19, 41, 45 or 53





class Animation(Enum):

    Off = 0

    colorWipe = 1

    theaterChase = 2

    wheel = 3

    rainbow = 4

    rainbowCycle = 5

    theaterChaseRainbow = 6



animationFlag = 0



def init():

     animationFlag = 1

# Define functions which animate LEDs in various ways.

def colorWipe(strip, color, wait_ms=50):

    """Wipe color across display a pixel at a time."""

    for i in range(strip.numPixels()):

        strip.setPixelColor(i, color)

        strip.show()

        time.sleep(wait_ms / 1000.0)





def theaterChase(strip, color, wait_ms=50, iterations=10):

    """Movie theater light style chaser animation."""

    for j in range(iterations):

        for q in range(3):

            for i in range(0, strip.numPixels(), 3):

                strip.setPixelColor(i + q, color)

            strip.show()

            time.sleep(wait_ms / 1000.0)

            for i in range(0, strip.numPixels(), 3):

                strip.setPixelColor(i + q, 0)





def wheel(pos):

    """Generate rainbow colors across 0-255 positions."""

    if pos < 85:

        return Color(pos * 3, 255 - pos * 3, 0)

    elif pos < 170:

        pos -= 85

        return Color(255 - pos * 3, 0, pos * 3)

    else:

        pos -= 170

        return Color(0, pos * 3, 255 - pos * 3)





def rainbow(strip, wait_ms=20, iterations=1):

    """Draw rainbow that fades across all pixels at once."""

    for j in range(256 * iterations):

        for i in range(strip.numPixels()):

            strip.setPixelColor(i, wheel((i + j) & 255))

        strip.show()

        time.sleep(wait_ms / 1000.0)





def rainbowCycle(strip, wait_ms=20, iterations=5):

    """Draw rainbow that uniformly distributes itself across all pixels."""

    for j in range(256 * iterations):

        for i in range(strip.numPixels()):

            strip.setPixelColor(i, wheel((int(i * 256 / strip.numPixels()) + j) & 255))

        strip.show()

        time.sleep(wait_ms / 1000.0)





def theaterChaseRainbow(strip, wait_ms=50):

    """Rainbow movie theater light style chaser animation."""

    for j in range(256):

        for q in range(3):

            for i in range(0, strip.numPixels(), 3):

                strip.setPixelColor(i + q, wheel((i + j) % 255))

            strip.show()

            time.sleep(wait_ms / 1000.0)

            for i in range(0, strip.numPixels(), 3):

                strip.setPixelColor(i + q, 0)





# Main program logic follows:

def lampControllerRun():

    # Process arguments

    # Create NeoPixel object with appropriate configuration.

    strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)

    # Intialize the library (must be called once before other functions).

    strip.begin()



    while True:

        if animationFlag == Animation.colorwipe:

            colorWipe(strip, Color(0, 0, 255))

        elif animationFlag== Animation.theaterChase:

            theaterChase(strip, Color(127, 127, 127))

        elif animationFlag == Animation.rainbow:

            rainbow(strip)

        elif  animationFlag == Animation.theaterChaseRainbow:

            theaterChaseRainbow(strip)

        else:

            colorWipe(strip, Color(0, 0, 0), 10)

        time.sleep(1)

bleDataRead.py

Python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import logging
import time
import pygatt
import requests

RPK_ADDRESS = "MAC_ADDRESS" #MAC BT Address
CHAR_UUIDS = {

    "Temperature":"cdc71b53-b280-4e42-a7ca-af4f398046cd",
    "Humidity": "cdc71b53-b280-4e42-a7ca-af4f398046ce",
    "TVOC": "cdc71b53-b280-4e42-a7ca-af4f398046cf",
    "Co2": "cdc71b53-b280-4e42-a7ca-af4f398046d0",
    "Lux": "cdc71b53-b280-4e42-a7ca-af4f398046d7",
    "Gyrox": "cdc71b53-b280-4e42-a7ca-af4f398046d1",
    "Gyroy": "cdc71b53-b280-4e42-a7ca-af4f398046d2",
    "Gyroz": "cdc71b53-b280-4e42-a7ca-af4f398046d3",
    "Accelz": "cdc71b53-b280-4e42-a7ca-af4f398046d4",
    "Magz": "cdc71b53-b280-4e42-a7ca-af4f398046d5"

}

old_values= {
    "Temperature": float(0.0),
    "Humidity": float(0.0),
    "TVOC": float(0.0),
    "Co2": float(0.0),
    "Lux": float(0.0),
    "Gyrox": float(0.0),
    "Gyroy": float(0.0),
    "Gyroz": float(0.0),
    "Accelz": float(0.0),
    "Magz": float(0.0)
    }

def save_prk_values():

    logging.basicConfig(filename='RapidIOTBLE.log', level=logging.WARNING)

    adapter = pygatt.GATTToolBackend()

    try:
        # Connect to the RPK device
        adapter.start()
        conn = adapter.connect(RPK_ADDRESS)

        time_info = int(time.time()*1000000000.0)

        # Get sensor values
        sensor_values = {}
        global old_values

        is_changed = 0
        for sensor in CHAR_UUIDS:
            value = conn.char_read(CHAR_UUIDS[sensor])
            sensor_values[sensor] = float(value.decode("utf-8").rstrip('\x00'))
            if (((sensor in 'Temperature') or (sensor in 'Humidity') or (sensor in 'Co2')) and ((((sensor_values[sensor]-old_values[sensor])>float(1.0)))or ((old_values[sensor]-sensor_values[sensor])>float(1.0)))):
                is_changed = 1
            elif (((sensor in 'Lux') or (sensor in 'TVOC')) and ((((sensor_values[sensor]-old_values[sensor])>float(2.0)))or ((old_values[sensor]-sensor_values[sensor])>float(2.0)))):
                is_changed = 1
            elif ((((sensor_values[sensor]-old_values[sensor])>float(5.0))or((old_values[sensor]-sensor_values[sensor])>float(5.0)))):
                is_changed = 1
            else:
                is_changed = 0

        if (is_changed):
            old_values = sensor_values
            jsonData = {"Temperature":float(sensor_values['Temperature']),
                                                 "Humidity" : float(sensor_values['Humidity']),
                                                 "TVOC" : float(sensor_values['TVOC']),
                                                 "Co2" : float(sensor_values['Co2']),
                                                 "Accelx": float(0.0),
                                                 "Accely": float(0.0),
                                                 "Accelz": float(sensor_values['Accelz']),
                                                 "Magx": float(0.0),
                                                 "Magy": float(0.0),
                                                 "Magz": float(sensor_values['Magz']),
                                                 "Lux": float(sensor_values['Lux']),
                                                 "Gyrox": float(sensor_values['Gyrox']),
                                                 "Gyroy": float(sensor_values['Gyroy']),
                                                 "Gyroz": float(sensor_values['Gyroz'])
                                                }
            r = requests.post("URL SERVER", jsonData)
            return jsonData
            # print(r.status_code, r.reason)

    except Exception as e:
        print ("Error: ", e)
        msg = "RapidIOTBLE: [%d] %s"%(time_info, e)
        logging.warning(msg)

    finally:
        adapter.stop()

Pennyworth_backend source.zip

C/C++
No preview (download only).

_static_actualDataOutput-5.csv

INI
example csv
actualDataID,userID,timestamp,temperature,humidity,pir,lux,acceler_rms,acceler_max,microp,categoryId,tvoc,co2,accelx,accely,accelz,magx,magy,magz,gyrox,gyroy,gyroz
10715,1,2019-02-18 10:09:03,22.116,34.822,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.202,0.0,0.0,99.999,0.5,-0.438,0.0
10716,1,2019-02-18 10:09:56,22.116,34.842,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.202,0.0,0.0,99.999,0.375,-0.438,0.0
10717,1,2019-02-18 10:11:57,22.147,34.256,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.202,0.0,0.0,99.999,0.438,-0.562,0.062
10718,1,2019-02-18 10:13:56,22.147,34.42,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.201,0.0,0.0,99.999,0.438,-0.75,0.062
10719,1,2019-02-18 10:13:56,22.147,34.42,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.201,0.0,0.0,99.999,0.438,-0.75,0.062
10720,1,2019-02-18 10:15:56,22.209,34.564,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.2,0.0,0.0,99.999,0.438,-0.75,0.062
10721,1,2019-02-18 10:16:18,22.241,34.592,None,0.0,None,None,None,0,5.0,5.0,0.0,0.0,0.203,0.0,0.0,99.999,0.5,-0.562,0.062
10722,1,2019-02-18 10:17:59,22.319,36.215,None,7.0,None,None,None,0,4.0,4.0,0.0,0.0,-0.603,0.0,0.0,99.999,0.562,0.188,-0.562
10723,1,2019-02-18 10:18:49,22.506,34.637,None,3.0,None,None,None,0,13.0,13.0,0.0,0.0,0.981,0.0,0.0,99.999,0.438,-0.625,0.0
10724,1,2019-02-18 10:19:07,22.522,34.461,None,3.0,None,None,None,0,17.0,17.0,0.0,0.0,0.978,0.0,0.0,99.999,0.438,-0.375,0.0
10725,1,2019-02-18 10:22:55,23.225,33.449,None,0.0,None,None,None,0,17.0,17.0,0.0,0.0,-0.979,0.0,0.0,99.999,0.625,-0.312,0.062
10726,1,2019-02-18 10:23:06,23.209,33.184,None,0.0,None,None,None,0,15.0,15.0,0.0,0.0,-0.986,0.0,0.0,99.999,0.438,-0.375,0.0
10727,1,2019-02-18 10:23:55,23.303,32.762,None,0.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.982,0.0,0.0,99.999,0.562,-0.438,0.125
10728,1,2019-02-18 10:24:26,23.303,33.055,None,0.0,None,None,None,0,11.0,11.0,0.0,0.0,-0.981,0.0,0.0,99.999,0.5,-0.688,0.0
10729,1,2019-02-18 10:25:55,23.538,32.559,None,0.0,None,None,None,0,12.0,12.0,0.0,0.0,-0.983,0.0,0.0,99.999,0.438,-0.562,0.0
10730,1,2019-02-18 10:27:30,23.663,31.936,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.978,0.0,0.0,99.999,0.5,-0.438,-0.062
10731,1,2019-02-18 10:27:58,23.694,31.836,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.98,0.0,0.0,99.999,0.562,-0.375,-0.062
10732,1,2019-02-18 10:29:20,23.803,31.533,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.978,0.0,0.0,99.999,0.562,-0.5,0.0
10733,1,2019-02-18 10:30:01,23.803,31.783,None,0.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.982,0.0,0.0,99.999,0.5,-0.5,0.0
10734,1,2019-02-18 10:32:49,23.881,31.627,None,0.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.98,0.0,0.0,99.999,0.562,-0.562,0.062
10735,1,2019-02-18 10:35:56,23.975,30.867,None,0.0,None,None,None,0,5.0,5.0,0.0,0.0,-0.983,0.0,0.0,99.999,0.562,-0.5,0.062
10736,1,2019-02-18 10:37:46,24.006,30.893,None,0.0,None,None,None,0,9.0,7.0,0.0,0.0,-0.979,0.0,0.0,99.999,0.562,-0.5,0.0
10737,1,2019-02-18 10:37:57,24.006,30.83,None,0.0,None,None,None,0,8.0,8.0,0.0,0.0,-0.983,0.0,0.0,99.999,0.562,-0.438,0.062
10738,1,2019-02-18 10:39:56,24.225,30.645,None,4.0,None,None,None,0,5.0,5.0,0.0,0.0,-0.576,0.0,0.0,99.999,0.562,-0.5,-0.062
10739,1,2019-02-18 10:40:48,24.428,30.828,None,7.0,None,None,None,0,14.0,14.0,0.0,0.0,-0.58,0.0,0.0,99.999,0.5,-0.375,0.0
10740,1,2019-02-18 10:43:07,24.381,30.432,None,0.0,None,None,None,0,8.0,8.0,0.0,0.0,-0.93,0.0,0.0,99.999,0.5,-0.438,-0.062
10741,1,2019-02-18 10:43:57,24.397,30.891,None,0.0,None,None,None,0,6.0,6.0,0.0,0.0,-0.934,0.0,0.0,99.999,0.688,-0.562,0.062
10742,1,2019-02-18 10:47:42,24.631,29.852,None,4.0,None,None,None,0,5.0,5.0,0.0,0.0,-0.788,0.0,0.0,99.999,0.438,-0.5,0.0
10743,1,2019-02-18 10:47:58,24.631,29.77,None,4.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.784,0.0,0.0,99.999,0.5,-0.688,0.0
10744,1,2019-02-18 10:52:37,24.819,29.854,None,4.0,None,None,None,0,14.0,14.0,0.0,0.0,-0.788,0.0,0.0,99.999,0.625,-0.438,0.0
10745,1,2019-02-18 10:52:58,24.881,29.771,None,0.0,None,None,None,0,10.0,10.0,0.0,0.0,-0.165,0.0,0.0,99.999,1.062,-0.5,4.688
10746,1,2019-02-18 10:53:13,24.897,29.691,None,4.0,None,None,None,0,8.0,8.0,0.0,0.0,-0.793,0.0,0.0,99.999,0.438,-0.562,-0.062
10747,1,2019-02-18 10:53:52,24.975,29.66,None,4.0,None,None,None,0,5.0,5.0,0.0,0.0,-0.794,0.0,0.0,99.999,0.5,-0.75,0.062
10748,1,2019-02-18 10:54:22,25.006,29.576,None,4.0,None,None,None,0,8.0,8.0,0.0,0.0,-0.793,0.0,0.0,99.999,0.438,-0.5,0.0
10749,1,2019-02-18 10:54:38,25.022,29.496,None,4.0,None,None,None,0,8.0,8.0,0.0,0.0,-0.798,0.0,0.0,99.999,0.562,-0.5,0.062
10750,1,2019-02-18 10:54:55,25.022,29.41,None,4.0,None,None,None,0,6.0,6.0,0.0,0.0,-0.794,0.0,0.0,99.999,0.438,-0.688,0.0
10751,1,2019-02-18 10:55:12,25.053,29.494,None,4.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.793,0.0,0.0,99.999,0.438,-0.562,-0.062
10752,1,2019-02-18 10:55:34,25.022,29.369,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.767,0.0,0.0,99.999,1.0,1.062,0.125
10753,1,2019-02-18 10:55:56,24.975,29.578,None,0.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.923,0.0,0.0,99.999,0.5,-0.688,0.0
10754,1,2019-02-18 10:56:18,24.991,29.553,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,-0.927,0.0,0.0,99.999,0.625,-0.5,0.062
10755,1,2019-02-18 10:57:05,24.959,29.465,None,0.0,None,None,None,0,9.0,9.0,0.0,0.0,-0.944,0.0,0.0,99.999,0.75,-0.5,0.062
10756,1,2019-02-18 10:57:52,24.866,29.418,None,0.0,None,None,None,0,13.0,6.0,0.0,0.0,-0.943,0.0,0.0,99.999,0.5,-0.5,0.062
10757,1,2019-02-18 11:00:20,25.147,30.301,None,0.0,None,None,None,0,19.0,19.0,0.0,0.0,-0.796,0.0,0.0,99.999,0.5,-0.5,0.062
10758,1,2019-02-18 11:00:29,25.163,30.176,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,-0.81,0.0,0.0,99.999,0.5,-0.562,-0.062
10759,1,2019-02-18 11:00:43,25.147,30.09,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,-0.808,0.0,0.0,99.999,0.688,-0.625,0.062
10760,1,2019-02-18 11:01:42,24.944,29.252,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.98,0.0,0.0,99.999,0.562,-0.438,0.062
10761,1,2019-02-18 11:02:13,24.803,29.408,None,3.0,None,None,None,0,0.0,0.0,0.0,0.0,0.983,0.0,0.0,99.999,0.438,-0.375,0.062
10762,1,2019-02-18 11:02:29,24.741,29.318,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.983,0.0,0.0,99.999,0.75,-0.438,-0.062
10763,1,2019-02-18 11:02:51,24.647,29.207,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.98,0.0,0.0,99.999,0.562,-0.438,0.0
10764,1,2019-02-18 11:03:06,24.6,29.266,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.978,0.0,0.0,99.999,0.375,-0.562,-0.062
10765,1,2019-02-18 11:03:40,24.491,29.357,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,0.982,0.0,0.0,99.999,0.562,-0.562,0.062
10766,1,2019-02-18 11:04:11,24.428,29.414,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.979,0.0,0.0,99.999,0.562,-0.438,0.0
10767,1,2019-02-18 11:04:26,24.397,29.35,None,0.0,None,None,None,0,5.0,5.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.5,0.062
10768,1,2019-02-18 11:04:41,24.397,29.305,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.981,0.0,0.0,99.999,0.5,-0.5,0.062
10769,1,2019-02-18 11:04:49,24.366,29.406,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.977,0.0,0.0,99.999,0.625,-0.438,0.0
10770,1,2019-02-18 11:06:11,24.225,29.521,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.978,0.0,0.0,99.999,0.5,-0.438,0.062
10771,1,2019-02-18 11:06:18,24.225,29.604,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.5,0.062
10772,1,2019-02-18 11:06:55,24.194,29.533,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.976,0.0,0.0,99.999,0.438,-0.5,0.125
10773,1,2019-02-18 11:07:20,24.163,29.555,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.983,0.0,0.0,99.999,0.562,-0.5,0.0
10774,1,2019-02-18 11:08:00,24.131,29.613,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.978,0.0,0.0,99.999,0.5,-0.562,0.062
10775,1,2019-02-18 11:09:43,24.069,29.754,None,0.0,None,None,None,0,6.0,6.0,0.0,0.0,0.979,0.0,0.0,99.999,0.625,-0.312,0.0
10776,1,2019-02-18 11:09:50,24.038,29.709,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.976,0.0,0.0,99.999,0.562,-0.375,0.0
10777,1,2019-02-18 11:10:19,24.038,29.75,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.981,0.0,0.0,99.999,0.562,-0.375,0.0
10778,1,2019-02-18 11:11:08,24.006,29.936,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.98,0.0,0.0,99.999,0.438,-0.688,0.062
10779,1,2019-02-18 11:12:46,23.975,30.119,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.976,0.0,0.0,99.999,0.438,-0.438,0.062
10780,1,2019-02-18 11:15:57,23.928,30.279,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.981,0.0,0.0,99.999,0.375,-0.438,0.125
10781,1,2019-02-18 11:16:55,23.897,30.133,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,0.977,0.0,0.0,99.999,0.562,-0.438,0.062
10782,1,2019-02-18 11:17:10,23.897,30.217,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.981,0.0,0.0,99.999,0.375,-0.688,0.0
10783,1,2019-02-18 11:17:21,23.866,30.215,None,0.0,None,None,None,0,6.0,6.0,0.0,0.0,0.977,0.0,0.0,99.999,0.5,-0.312,0.062
10784,1,2019-02-18 11:18:05,23.913,30.197,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.625,0.062
10785,1,2019-02-18 11:18:56,23.881,30.133,None,0.0,None,None,None,0,5.0,5.0,0.0,0.0,0.981,0.0,0.0,99.999,0.438,-0.375,0.0
10786,1,2019-02-18 11:20:01,23.928,30.092,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.977,0.0,0.0,99.999,0.375,-0.562,0.0
10787,1,2019-02-18 11:20:48,23.897,30.176,None,0.0,None,None,None,0,0.0,1.0,0.0,0.0,0.98,0.0,0.0,99.999,0.375,-0.562,0.062
10788,1,2019-02-18 11:21:17,23.913,30.133,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.978,0.0,0.0,99.999,0.562,-0.562,0.0
10789,1,2019-02-18 11:21:32,23.897,30.029,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.985,0.0,0.0,99.999,0.625,-0.375,0.0
10790,1,2019-02-18 11:21:38,23.897,30.133,None,0.0,None,None,None,0,5.0,5.0,0.0,0.0,0.983,0.0,0.0,99.999,0.5,-0.375,-0.062
10791,1,2019-02-18 11:21:42,23.897,30.154,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.974,0.0,0.0,99.999,0.438,-0.375,0.062
10792,1,2019-02-18 11:23:04,23.881,30.066,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.982,0.0,0.0,99.999,0.625,-0.375,0.062
10793,1,2019-02-18 11:23:20,23.881,30.137,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.98,0.0,0.0,99.999,0.438,-0.562,0.0
10794,1,2019-02-18 11:24:34,23.866,30.111,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.983,0.0,0.0,99.999,0.438,-0.625,0.0
10795,1,2019-02-18 11:24:47,23.897,30.049,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.977,0.0,0.0,99.999,0.562,-0.5,0.0
10796,1,2019-02-18 11:25:32,23.866,30.092,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.98,0.0,0.0,99.999,0.625,-0.5,0.062
10797,1,2019-02-18 11:26:34,23.866,30.172,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.98,0.0,0.0,99.999,0.562,-0.562,0.0
10798,1,2019-02-18 11:27:28,23.866,30.086,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.979,0.0,0.0,99.999,0.5,-0.438,0.0
10799,1,2019-02-18 11:27:35,23.866,30.129,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.976,0.0,0.0,99.999,0.5,-0.312,0.062
10800,1,2019-02-18 11:29:04,23.866,30.084,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.977,0.0,0.0,99.999,0.562,-0.5,0.062
10801,1,2019-02-18 11:29:09,23.866,30.133,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.976,0.0,0.0,99.999,0.438,-0.5,0.0
10802,1,2019-02-18 11:30:12,23.85,30.191,None,0.0,None,None,None,0,1.0,2.0,0.0,0.0,0.985,0.0,0.0,99.999,0.5,-0.5,0.062
10803,1,2019-02-18 11:32:54,23.834,30.084,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.98,0.0,0.0,99.999,0.5,-0.438,0.062
10804,1,2019-02-18 11:33:39,23.834,29.959,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.978,0.0,0.0,99.999,0.562,-0.438,0.125
10805,1,2019-02-18 11:33:49,23.834,30.002,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.98,0.0,0.0,99.999,0.5,-0.438,0.0
10806,1,2019-02-18 11:34:05,23.834,29.896,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.981,0.0,0.0,99.999,0.5,-0.562,0.125
10807,1,2019-02-18 11:34:27,23.803,29.957,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.976,0.0,0.0,99.999,0.562,-0.5,0.062
10808,1,2019-02-18 11:35:56,23.834,29.877,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.98,0.0,0.0,99.999,0.625,-0.375,0.0
10809,1,2019-02-18 11:36:33,23.819,29.789,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.98,0.0,0.0,99.999,0.375,-0.625,0.0
10810,1,2019-02-18 11:37:42,23.866,29.709,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.983,0.0,0.0,99.999,0.438,-0.562,0.0
10811,1,2019-02-18 11:37:50,23.834,29.73,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.981,0.0,0.0,99.999,0.312,-0.5,0.0
10812,1,2019-02-18 11:38:23,23.834,29.75,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.978,0.0,0.0,99.999,0.5,-0.625,0.062
10813,1,2019-02-18 11:39:08,23.788,29.564,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.375,0.062
10814,1,2019-02-18 11:39:14,23.866,29.604,None,0.0,None,None,None,0,0.0,0.0,0.0,0.0,0.977,0.0,0.0,99.999,0.438,-0.688,0.0
10815,1,2019-02-18 11:41:06,23.834,29.373,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.983,0.0,0.0,99.999,0.5,-0.312,0.0
10816,1,2019-02-18 11:42:14,23.834,29.291,None,0.0,None,None,None,0,7.0,7.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.5,0.062
10817,1,2019-02-18 11:42:29,23.819,29.227,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.978,0.0,0.0,99.999,0.562,-0.438,0.0
10818,1,2019-02-18 11:43:35,23.834,29.227,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.98,0.0,0.0,99.999,0.312,-0.562,0.125
10819,1,2019-02-18 11:43:56,23.866,29.166,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.977,0.0,0.0,99.999,0.438,-0.625,0.125
10820,1,2019-02-18 11:45:56,23.85,28.998,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.978,0.0,0.0,99.999,0.5,-0.375,0.0
10821,1,2019-02-18 11:46:43,23.803,29.0,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.976,0.0,0.0,99.999,0.5,-0.438,0.062
10822,1,2019-02-18 11:47:29,23.834,28.955,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.979,0.0,0.0,99.999,0.5,-0.438,0.062
10823,1,2019-02-18 11:47:36,23.834,28.953,None,0.0,None,None,None,0,4.0,4.0,0.0,0.0,0.982,0.0,0.0,99.999,0.438,-0.5,0.062
10824,1,2019-02-18 11:48:13,23.85,28.955,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.982,0.0,0.0,99.999,0.5,-0.562,-0.062
10825,1,2019-02-18 11:50:01,23.803,28.977,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.375,0.062
10826,1,2019-02-18 11:51:15,23.803,28.893,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.976,0.0,0.0,99.999,0.5,-0.375,0.062
10827,1,2019-02-18 11:52:01,23.803,28.889,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.978,0.0,0.0,99.999,0.562,-0.562,0.062
10828,1,2019-02-18 11:52:09,23.772,28.912,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.977,0.0,0.0,99.999,0.625,-0.375,0.0
10829,1,2019-02-18 11:52:27,23.819,28.908,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.98,0.0,0.0,99.999,0.562,-0.5,0.0
10830,1,2019-02-18 11:53:07,23.788,28.885,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.976,0.0,0.0,99.999,0.5,-0.625,0.0
10831,1,2019-02-18 11:54:16,23.772,28.887,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.976,0.0,0.0,99.999,0.312,-0.562,0.0
10832,1,2019-02-18 11:56:43,23.788,28.885,None,0.0,None,None,None,0,2.0,2.0,0.0,0.0,0.974,0.0,0.0,99.999,0.562,-0.562,0.0
10833,1,2019-02-18 11:57:26,23.756,28.885,None,0.0,None,None,None,0,1.0,2.0,0.0,0.0,0.979,0.0,0.0,99.999,0.438,-0.375,0.0
10834,1,2019-02-18 11:58:09,23.772,28.906,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.982,0.0,0.0,99.999,0.438,-0.438,0.062
10835,1,2019-02-18 11:58:16,23.788,28.906,None,0.0,None,None,None,0,3.0,3.0,0.0,0.0,0.973,0.0,0.0,99.999,0.5,-0.312,0.062
10836,1,2019-02-18 12:00:11,23.756,28.883,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.98,0.0,0.0,99.999,0.5,-0.562,0.062
10837,1,2019-02-18 12:02:16,23.741,28.902,None,0.0,None,None,None,0,1.0,1.0,0.0,0.0,0.982,0.0,0.0,99.999,0.5,-0.375,0.0
10838,1,2019-02-18 18:47:20,23.163,27.813,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.312,0.0
10839,1,2019-02-18 18:47:35,23.1,27.85,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.688,-0.312,0.0
10840,1,2019-02-18 18:48:04,23.1,27.914,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.688,-0.375,0.062
10841,1,2019-02-18 18:48:08,23.116,27.914,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.5,-0.688,0.0
10842,1,2019-02-18 18:48:39,23.116,27.869,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.688,-0.5,0.062
10843,1,2019-02-18 18:48:47,23.131,27.824,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.562,-0.75,0.125
10844,1,2019-02-18 18:48:53,23.069,27.873,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.312,0.0
10845,1,2019-02-18 18:48:57,23.053,27.891,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.5,-0.375,0.0
10846,1,2019-02-18 18:49:02,23.084,27.891,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.5,-0.562,0.062
10847,1,2019-02-18 18:49:08,23.1,27.912,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.5,-0.5,0.062
10848,1,2019-02-18 18:49:12,23.1,27.953,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.562,-0.812,0.0
10849,1,2019-02-18 18:49:17,23.084,27.994,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.75,0.062
10850,1,2019-02-18 18:49:27,23.038,27.971,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.438,0.062
10851,1,2019-02-18 18:49:32,23.084,28.018,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.375,-0.688,0.0
10852,1,2019-02-18 18:49:57,23.069,28.01,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.5,0.0
10853,1,2019-02-18 18:50:07,23.069,28.018,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.438,-0.562,0.125
10854,1,2019-02-18 18:50:22,23.053,28.078,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.562,0.0
10855,1,2019-02-18 18:50:59,23.069,28.008,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.625,-0.562,0.062
10856,1,2019-02-18 18:51:06,23.022,28.014,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.5,-0.5,0.062
10857,1,2019-02-18 18:51:15,23.053,27.949,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.5,-0.438,0.062
10858,1,2019-02-18 18:51:48,23.053,28.072,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.999,0.0,0.0,99.999,0.5,-0.375,0.062
10859,1,2019-02-18 18:52:22,23.053,28.049,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.5,-0.375,0.0
10860,1,2019-02-18 18:52:28,23.069,28.096,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.989,0.0,0.0,99.999,0.5,-0.188,0.125
10861,1,2019-02-18 18:52:44,22.991,28.076,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.562,0.062
10862,1,2019-02-18 18:53:20,23.038,28.076,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,1.0,0.0,0.0,99.999,0.562,-0.5,0.0
10863,1,2019-02-18 18:53:28,23.053,28.014,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.5,0.062
10864,1,2019-02-18 18:53:38,23.084,27.975,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.625,-0.5,0.062
10865,1,2019-02-18 18:53:48,23.053,27.994,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.312,0.0
10866,1,2019-02-18 18:54:43,23.053,27.924,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.438,-0.625,0.062
10867,1,2019-02-18 18:54:47,23.006,27.889,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.688,-0.375,0.0
10868,1,2019-02-18 18:54:54,23.069,27.846,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.562,-0.5,0.062
10869,1,2019-02-18 18:54:58,23.084,27.865,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.375,0.125
10870,1,2019-02-18 18:55:19,23.038,27.93,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.625,-0.5,0.062
10871,1,2019-02-18 18:55:46,23.084,27.926,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.625,-0.312,0.062
10872,1,2019-02-18 18:56:14,23.1,27.885,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.438,-0.438,0.062
10873,1,2019-02-18 18:56:30,23.038,27.953,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.688,-0.312,0.0
10874,1,2019-02-18 18:56:36,23.069,27.891,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.625,-0.062
10875,1,2019-02-18 18:57:22,23.1,27.867,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.438,-0.562,0.0
10876,1,2019-02-18 18:57:45,23.053,27.887,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.999,0.0,0.0,99.999,0.5,-0.625,0.125
10877,1,2019-02-18 18:58:01,23.1,27.848,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.625,-0.375,0.062
10878,1,2019-02-18 18:58:24,23.1,27.891,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.25,0.0
10879,1,2019-02-18 18:58:54,23.069,27.887,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.625,-0.312,0.0
10880,1,2019-02-18 18:59:09,23.1,27.873,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.5,-0.375,0.062
10881,1,2019-02-18 18:59:14,23.084,27.852,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.5,-0.438,0.062
10882,1,2019-02-18 18:59:24,23.084,27.844,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.625,-0.188,0.0
10883,1,2019-02-18 18:59:33,23.131,27.865,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.562,-0.375,0.062
10884,1,2019-02-18 18:59:48,23.069,27.828,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.5,-0.625,0.0
10885,1,2019-02-18 18:59:55,23.1,27.846,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.625,0.0
10886,1,2019-02-18 19:00:04,23.116,27.787,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.688,0.062
10887,1,2019-02-18 19:00:47,23.116,27.781,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.562,-0.562,0.125
10888,1,2019-02-18 19:01:26,23.084,27.766,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.5,-0.438,0.062
10889,1,2019-02-18 19:02:03,23.116,27.768,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.375,0.062
10890,1,2019-02-18 19:02:09,23.131,27.764,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.562,0.125
10891,1,2019-02-18 19:02:25,23.131,27.746,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.625,-0.75,0.062
10892,1,2019-02-18 19:02:41,23.147,27.748,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.989,0.0,0.0,99.999,0.562,-0.438,0.062
10893,1,2019-02-18 19:02:51,23.116,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.438,-0.5,0.062
10894,1,2019-02-18 19:03:06,23.084,27.77,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.688,-0.375,0.125
10895,1,2019-02-18 19:03:11,23.131,27.77,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.438,-0.5,0.0
10896,1,2019-02-18 19:03:27,23.147,27.789,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.375,-0.625,0.0
10897,1,2019-02-18 19:03:42,23.084,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.5,-0.375,0.0
10898,1,2019-02-18 19:03:49,23.163,27.77,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.562,-0.188,0.0
10899,1,2019-02-18 19:04:04,23.163,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,1.002,0.0,0.0,99.999,0.562,-0.375,0.125
10900,1,2019-02-18 19:04:50,23.147,27.77,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.562,0.0
10901,1,2019-02-18 19:04:57,23.116,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.5,-0.562,0.062
10902,1,2019-02-18 19:05:12,23.178,27.813,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.562,0.0
10903,1,2019-02-18 19:05:19,23.116,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.438,-0.375,0.062
10904,1,2019-02-18 19:05:29,23.131,27.834,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.312,0.062
10905,1,2019-02-18 19:05:38,23.147,27.77,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.562,0.062
10906,1,2019-02-18 19:06:20,23.131,27.836,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.5,0.062
10907,1,2019-02-18 19:07:16,23.163,27.807,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.5,-0.438,0.062
10908,1,2019-02-18 19:07:58,23.163,27.811,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.688,-0.375,0.062
10909,1,2019-02-18 19:08:08,23.163,27.807,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.625,-0.188,0.0
10910,1,2019-02-18 19:08:30,23.147,27.834,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.625,-0.25,0.125
10911,1,2019-02-18 19:08:40,23.147,27.855,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.25,0.062
10912,1,2019-02-18 19:09:29,23.163,27.855,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.625,-0.438,0.0
10913,1,2019-02-18 19:09:44,23.178,27.875,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.25,-0.75,0.062
10914,1,2019-02-18 19:10:06,23.163,27.813,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.562,0.062
10915,1,2019-02-18 19:10:11,23.131,27.875,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.5,-0.312,0.062
10916,1,2019-02-18 19:10:17,23.194,27.813,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.312,0.062
10917,1,2019-02-18 19:10:21,23.163,27.814,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.5,-0.438,0.125
10918,1,2019-02-18 19:10:48,23.163,27.857,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.5,-0.375,0.062
10919,1,2019-02-18 19:11:04,23.116,27.836,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.5,-0.312,0.0
10920,1,2019-02-18 19:11:28,23.178,27.857,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.625,-0.312,0.062
10921,1,2019-02-18 19:11:33,23.178,27.879,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.5,0.062
10922,1,2019-02-18 19:11:43,23.178,27.896,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.987,0.0,0.0,99.999,0.5,-0.312,0.0
10923,1,2019-02-18 19:12:07,23.131,27.854,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.562,0.062
10924,1,2019-02-18 19:12:11,23.147,27.898,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.999,0.0,0.0,99.999,0.75,-0.25,0.0
10925,1,2019-02-18 19:12:15,23.194,27.857,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.625,-0.625,0.062
10926,1,2019-02-18 19:13:25,23.163,27.877,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.5,-0.562,0.062
10927,1,2019-02-18 19:13:32,23.178,27.879,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.988,0.0,0.0,99.999,0.438,-0.5,0.0
10928,1,2019-02-18 19:13:52,23.194,27.836,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.625,0.062
10929,1,2019-02-18 19:14:12,23.209,27.879,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.562,-0.562,0.125
10930,1,2019-02-18 19:14:23,23.194,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.562,0.0
10931,1,2019-02-18 19:14:42,23.225,27.791,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.5,0.062
10932,1,2019-02-18 19:15:24,23.225,27.842,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.688,-0.312,0.0
10933,1,2019-02-18 19:15:34,23.241,27.816,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.375,-0.562,0.062
10934,1,2019-02-18 19:16:14,23.225,27.863,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.562,0.062
10935,1,2019-02-18 19:17:15,23.241,27.799,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.688,-0.312,0.0
10936,1,2019-02-18 19:17:26,23.225,27.801,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.5,-0.438,0.0
10937,1,2019-02-18 19:17:30,23.241,27.797,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.5,-0.438,0.062
10938,1,2019-02-18 19:17:41,23.225,27.799,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.688,-0.312,0.062
10939,1,2019-02-18 19:18:01,23.241,27.824,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.75,0.125
10940,1,2019-02-18 19:18:06,23.225,27.824,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.75,0.0
10941,1,2019-02-18 19:18:33,23.241,27.801,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.625,-0.375,-0.062
10942,1,2019-02-18 19:18:49,23.256,27.797,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.5,-0.5,0.062
10943,1,2019-02-18 19:19:16,23.241,27.74,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.438,0.0
10944,1,2019-02-18 19:19:42,23.225,27.76,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.438,-0.438,0.062
10945,1,2019-02-18 19:19:47,23.241,27.762,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.375,-0.625,0.062
10946,1,2019-02-18 19:20:21,23.272,27.736,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,1.0,0.0,0.0,99.999,0.812,-0.25,0.0
10947,1,2019-02-18 19:20:27,23.256,27.781,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.438,-0.625,-0.062
10948,1,2019-02-18 19:21:00,23.272,27.785,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.5,-0.25,0.062
10949,1,2019-02-18 19:21:05,23.256,27.742,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.562,-0.438,0.062
10950,1,2019-02-18 19:21:31,23.225,27.719,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.625,-0.75,0.062
10951,1,2019-02-18 19:21:46,23.288,27.783,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.993,0.0,0.0,99.999,0.75,-0.438,0.0
10952,1,2019-02-18 19:21:57,23.225,27.697,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.375,-0.625,0.0
10953,1,2019-02-18 19:22:00,23.241,27.715,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.438,-0.438,0.062
10954,1,2019-02-18 19:22:19,23.241,27.74,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.562,-0.438,0.0
10955,1,2019-02-18 19:22:29,23.272,27.719,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.438,0.062
10956,1,2019-02-18 19:22:34,23.241,27.699,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.625,-0.438,0.0
10957,1,2019-02-18 19:22:48,23.225,27.803,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.562,-0.562,0.0
10958,1,2019-02-18 19:23:03,23.303,27.744,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.438,-0.5,0.062
10959,1,2019-02-18 19:23:23,23.272,27.736,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.5,-0.625,0.0
10960,1,2019-02-18 19:23:48,23.288,27.74,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.375,-0.562,0.0
10961,1,2019-02-18 19:23:56,23.288,27.738,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.991,0.0,0.0,99.999,0.5,-0.375,0.062
10962,1,2019-02-18 19:24:21,23.272,27.699,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.995,0.0,0.0,99.999,0.5,-0.438,0.0
10963,1,2019-02-18 19:24:26,23.288,27.734,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.5,-0.625,0.0
10964,1,2019-02-18 19:24:41,23.288,27.742,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.996,0.0,0.0,99.999,0.625,-0.438,0.062
10965,1,2019-02-18 19:26:06,23.288,27.779,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.994,0.0,0.0,99.999,0.5,-0.312,0.0
10966,1,2019-02-18 19:26:14,23.288,27.699,None,0.0,None,None,None,0,99.0,99.0,0.0,0.0,0.989,0.0,0.0,99.999,0.5,-0.312,0.062
10967,1,2019-02-18 19:26:30,23.288,27.764,None,0.0,None,None,None,0,97.0,97.0,0.0,0.0,0.996,0.0,0.0,99.999,0.688,-0.312,0.125
10968,1,2019-02-18 19:26:36,23.288,27.697,None,0.0,None,None,None,0,97.0,97.0,0.0,0.0,0.997,0.0,0.0,99.999,0.625,-0.375,0.062
10969,1,2019-02-18 19:26:59,23.303,27.74,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.99,0.0,0.0,99.999,0.25,-0.5,0.062
10970,1,2019-02-18 19:27:15,23.303,27.697,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.998,0.0,0.0,99.999,0.375,-0.688,0.0
10971,1,2019-02-18 19:27:45,23.272,27.742,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.992,0.0,0.0,99.999,0.5,-0.625,0.062
10972,1,2019-02-18 19:28:02,23.288,27.721,None,0.0,None,None,None,0,99.0,99.0,0.0,0.0,0.992,0.0,0.0,99.999,0.562,-0.25,0.0
10973,1,2019-02-18 19:28:24,23.272,27.721,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.375,-0.688,0.0
10974,1,2019-02-18 19:28:24,23.272,27.721,None,0.0,None,None,None,0,99.999,99.999,0.0,0.0,0.997,0.0,0.0,99.999,0.375,-0.688,0.0

Credits

GIORGIO COLAZZO

GIORGIO COLAZZO

1 project • 0 followers
edonag

edonag

0 projects • 0 followers
Thanks to makermusings.

Comments