Specifications

A Past-Linear Temporal Logic (PLTL) property for a sender/receiver model taken from Bounded Verification of Past LTL:

G (sender.state = waitForAck => Y (H sender.state != waitForAck))

which states that, it Globally holds that if the sender is waitingForAck, then Yesterday (i.e. at the previous instant), Historically it held that the sender state was not waitingForAck. In other words, the sender waits for acknowledgement at most once during the execution.

The only input stream is the state of the sender at each instant.

The only output stream is the value of the property at each instant.

format CSV
use library LTL


#HASKELL
data SenderState = Get | Send | WaitForAck deriving (Generic,Read,FromJSON,Eq)
#ENDOFHASKELL


input SenderState senderState

define Bool senderNotWaiting = senderState[now] /== 'WaitForAck

output Bool property = let
  senderWaitingAck   = senderState[now] === 'WaitForAck
  startedWaiting     = yesterday (historically senderNotWaiting)
  in senderWaitingAck `implies` startedWaiting[now]

senderState
Get
Get
Get
Send
Send
Send
WaitForAck
Get
Get
Get
Send
Send
WaitForAck
WaitForAck
WaitForAck
WaitForAck
Send
Send
Send
Send
Get
Get
Get
Send
Send
WaitForAck
WaitForAck
WaitForAck
WaitForAck
Get
Get
Get
Get
Get
WaitForAck
WaitForAck
senderNotWaiting,prop
True,True
True,True
True,True
True,True
True,True
True,True
False,True
True,True
True,True
True,True
True,True
True,True
False,False
False,False
False,False
False,False
True,True
True,True
True,True
True,True
True,True
True,True
True,True
True,True
True,True
False,False
False,False
False,False
False,False
True,True
True,True
True,True
True,True
True,True
False,False
False,False
format JSON
use library LTL


#HASKELL
data SenderState = Get | Send | WaitForAck deriving (Generic,Read,FromJSON,Eq)
#ENDOFHASKELL


input SenderState senderState

define Bool senderNotWaiting = senderState[now] /== 'WaitForAck

output Bool property = let
  senderWaitingAck   = senderState[now] === 'WaitForAck
  startedWaiting     = yesterday (historically senderNotWaiting)
  in senderWaitingAck `implies` startedWaiting[now]

{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "WaitForAck"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Send"}
{"senderState": "Send"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "Get"}
{"senderState": "WaitForAck"}
{"senderState": "WaitForAck"}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":false}
{"property":false}

A Metric Temporal Logic (MTL) property to establish deadlines between environment events and the corresponding system responses taken from Some Recent Results in Metric Temporal Logic:

G (alarm => (F[0,10] allclear || F[10,10] shutdown))

The property assesses that an alarm is followed by a shutdown event in exactly 10 time units unless all clear is sounded first.

The only input stream is the event happening at each instant.

The only output stream is the value of the property at each instant.

format CSV
use library MTL


#HASKELL
data Event
    = Alarm
    | AllClear
    | Shutdown
  deriving (Generic,Read,FromJSON,Eq)
#ENDOFHASKELL


input Event event

define Bool allClear = event [now] === 'AllClear
define Bool shutdown = event [now] === 'Shutdown
define Bool alarm = event [now] === 'Alarm

output Bool property = let
  willClear = eventually (0,10) allClear
  willShutdown = eventually (10,10) shutdown
  in alarm [now] `implies` (willClear [now] || willShutdown [now])
event
Alarm
Alarm
Alarm
Alarm
AllClear
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
AllClear
AllClear
AllClear
AllClear
AllClear
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
Alarm
property
True
True
True
True
True
True
True
True
True
True
True
True
True
True
True
True
True
True
False
False
False
False
False
False
False
False
False
False
False
False
False
format JSON
use library MTL


#HASKELL
data Event
    = Alarm
    | AllClear
    | Shutdown
  deriving (Generic,Read,FromJSON,Eq)
#ENDOFHASKELL


input Event event

define Bool allClear = event [now] === 'AllClear
define Bool shutdown = event [now] === 'Shutdown
define Bool alarm = event [now] === 'Alarm

output Bool property = let
  willClear = eventually (0,10) allClear
  willShutdown = eventually (10,10) shutdown
  in alarm [now] `implies` (willClear [now] || willShutdown [now])
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "AllClear"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "AllClear"}
{"event": "AllClear"}
{"event": "AllClear"}
{"event": "AllClear"}
{"event": "AllClear"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"event": "Alarm"}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":true}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}
{"property":false}

TradingView is an online charting platform for stock exchange, which offers a series-oriented language to create customized studies and signals (called Pinescript) and run them in the company servers.

We have implemented the indicators of Pinescript in HLola as a library, and we show the implementation of a trading strategy using the HLola Pinescript library.

The input streams are the close and high values of a stock at each day.

The output streams indicate how much stock to buy or sell every day.

format CSV
use library Pinescript


#HASKELL
buy_size  = 10
sell_size = 10
#ENDOFHASKELL


input Double close
input Double high

define Bool buy = ema18 [now] < high [now] && macd_buy_sig [now]
define Bool sell = not (macd_buy_sig [-1|'False]) && macd_sell_sig [now] && positionsize [-1|0] > 0

output Double positionsize = positionsize [-1|0] + 
  if buy [now]  then buy_size  else 0 -
  if sell [now] then sell_size else 0

define Double ema18 = ema close 18 [now]
define Double signalLine = macd_signal close [now]
define Double macdLine = macd close [now]
define Bool macd_sell_sig = crossover signalLine macdLine [now]
define Bool macd_buy_sig = crossover macdLine signalLine [now]
high,close
131.00,129.04
126.44,124.81
127.49,125.01
126.99,126.52
125.18,124.82
128.79,125.86
124.87,124.37
118.39,118.28
117.16,115.71
116.00,115.56
116.09,114.61
115.00,114.91
116.04,115.01
113.28,113.01
112.48,109.38
113.78,112.73
113.68,111.11
114.41,113.90
110.39,110.06
110.79,109.67
111.64,108.94
106.42,106.26
96.30,96.19
95.23,95.04
94.55,93.25
94.90,94.81
92.97,92.61
97.08,92.85
97.97,97.27
99.25,97.00
98.50,98.36
97.15,96.33
97.40,96.52
99.25,97.72
97.25,97.06
99.96,95.48
95.98,95.92
96.32,95.75
95.38,95.34
94.65,93.17
93.94,93.46
92.62,91.03
91.84,91.03
91.50,91.20
90.54,90.44
91.33,88.41
91.25,91.21
92.20,90.01
93.10,91.63
89.86,89.72
89.14,87.43
88.36,87.93
88.85,87.90
88.30,88.02
86.42,85.75
86.95,84.70
87.76,83.97
88.69,88.21
86.40,86.00
83.40,83.36
82.94,82.88
81.40,80.58
81.55,81.28
80.86,80.83
80.59,80.46
80.29,79.49
80.86,79.56
79.68,79.53
81.06,79.18
79.81,79.72
80.22,79.21
79.88,79.81
79.63,78.29
79.13,78.74
76.97,76.93
77.45,77.39
78.99,76.91
79.92,77.85
79.26,78.75
77.59,77.53
76.29,75.93
75.81,75.16
75.25,74.39
73.42,73.29
74.75,72.27
73.63,73.45
72.42,71.93
71.46,69.64
71.14,70.79
70.75,70.74
70.44,68.76
69.47,69.03
69.31,67.09
70.42,69.23
71.74,70.70
72.05,71.67
71.58,71.11
72.06,71.76
68.43,68.31
67.52,67.00
66.84,66.52
67.93,64.86
65.78,65.62
61.42,60.35
61.29,61.23
62.18,60.23
65.62,63.57
63.88,63.70
63.97,61.94
64.67,64.61
64.56,61.38
61.92,61.72
57.13,56.09
62.96,57.31
63.21,61.19
62.50,61.67
64.40,63.22
64.77,60.55
69.98,69.49
67.50,62.06
70.31,68.86
71.61,71.33
69.52,66.54
72.71,72.26
74.89,73.23
75.85,75.68
76.00,72.33
75.36,74.70
69.60,68.34
71.50,68.38
74.47,73.16
75.63,72.02
76.04,74.54
80.11,78.26
81.16,80.07
81.14,80.90
79.94,79.75
81.50,81.24
81.56,81.22
81.81,81.80
80.97,79.90
80.39,80.39
80.85,80.01
81.31,81.30
81.19,80.36
79.91,79.71
78.37,77.17
80.67,77.38
81.02,80.97
81.96,81.08
79.60,79.42
77.94,77.24
80.83,79.58
79.89,79.81
80.00,79.43
79.75,79.14
79.68,79.68
78.93,78.81
78.88,77.83
79.39,78.17
79.27,79.24
78.17,77.58
77.61,77.41
76.11,75.80
75.22,74.60
74.99,74.95
75.14,74.36
75.15,75.09
positionsize
0.0
10.0
20.0
30.0
30.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
40.0
30.0
30.0
30.0
30.0
30.0
30.0
30.0
30.0
30.0
30.0
20.0
20.0
20.0
20.0
20.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
10.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
0.0
format JSON
use library Pinescript


#HASKELL
buy_size  = 10
sell_size = 10
#ENDOFHASKELL


input Double close
input Double high

define Bool buy = ema18 [now] < high [now] && macd_buy_sig [now]
define Bool sell = not (macd_buy_sig [-1|'False]) && macd_sell_sig [now] && positionsize [-1|0] > 0

output Double positionsize = positionsize [-1|0] + 
  if buy [now]  then buy_size  else 0 -
  if sell [now] then sell_size else 0

define Double ema18 = ema close 18 [now]
define Double signalLine = macd_signal close [now]
define Double macdLine = macd close [now]
define Bool macd_sell_sig = crossover signalLine macdLine [now]
define Bool macd_buy_sig = crossover macdLine signalLine [now]
{"high": 131.00, "close":129.04}
{"high": 126.44, "close":124.81}
{"high": 127.49, "close":125.01}
{"high": 126.99, "close":126.52}
{"high": 125.18, "close":124.82}
{"high": 128.79, "close":125.86}
{"high": 124.87, "close":124.37}
{"high": 118.39, "close":118.28}
{"high": 117.16, "close":115.71}
{"high": 116.00, "close":115.56}
{"high": 116.09, "close":114.61}
{"high": 115.00, "close":114.91}
{"high": 116.04, "close":115.01}
{"high": 113.28, "close":113.01}
{"high": 112.48, "close":109.38}
{"high": 113.78, "close":112.73}
{"high": 113.68, "close":111.11}
{"high": 114.41, "close":113.90}
{"high": 110.39, "close":110.06}
{"high": 110.79, "close":109.67}
{"high": 111.64, "close":108.94}
{"high": 106.42, "close":106.26}
{"high": 96.30, "close":96.19}
{"high": 95.23, "close":95.04}
{"high": 94.55, "close":93.25}
{"high": 94.90, "close":94.81}
{"high": 92.97, "close":92.61}
{"high": 97.08, "close":92.85}
{"high": 97.97, "close":97.27}
{"high": 99.25, "close":97.00}
{"high": 98.50, "close":98.36}
{"high": 97.15, "close":96.33}
{"high": 97.40, "close":96.52}
{"high": 99.25, "close":97.72}
{"high": 97.25, "close":97.06}
{"high": 99.96, "close":95.48}
{"high": 95.98, "close":95.92}
{"high": 96.32, "close":95.75}
{"high": 95.38, "close":95.34}
{"high": 94.65, "close":93.17}
{"high": 93.94, "close":93.46}
{"high": 92.62, "close":91.03}
{"high": 91.84, "close":91.03}
{"high": 91.50, "close":91.20}
{"high": 90.54, "close":90.44}
{"high": 91.33, "close":88.41}
{"high": 91.25, "close":91.21}
{"high": 92.20, "close":90.01}
{"high": 93.10, "close":91.63}
{"high": 89.86, "close":89.72}
{"high": 89.14, "close":87.43}
{"high": 88.36, "close":87.93}
{"high": 88.85, "close":87.90}
{"high": 88.30, "close":88.02}
{"high": 86.42, "close":85.75}
{"high": 86.95, "close":84.70}
{"high": 87.76, "close":83.97}
{"high": 88.69, "close":88.21}
{"high": 86.40, "close":86.00}
{"high": 83.40, "close":83.36}
{"high": 82.94, "close":82.88}
{"high": 81.40, "close":80.58}
{"high": 81.55, "close":81.28}
{"high": 80.86, "close":80.83}
{"high": 80.59, "close":80.46}
{"high": 80.29, "close":79.49}
{"high": 80.86, "close":79.56}
{"high": 79.68, "close":79.53}
{"high": 81.06, "close":79.18}
{"high": 79.81, "close":79.72}
{"high": 80.22, "close":79.21}
{"high": 79.88, "close":79.81}
{"high": 79.63, "close":78.29}
{"high": 79.13, "close":78.74}
{"high": 76.97, "close":76.93}
{"high": 77.45, "close":77.39}
{"high": 78.99, "close":76.91}
{"high": 79.92, "close":77.85}
{"high": 79.26, "close":78.75}
{"high": 77.59, "close":77.53}
{"high": 76.29, "close":75.93}
{"high": 75.81, "close":75.16}
{"high": 75.25, "close":74.39}
{"high": 73.42, "close":73.29}
{"high": 74.75, "close":72.27}
{"high": 73.63, "close":73.45}
{"high": 72.42, "close":71.93}
{"high": 71.46, "close":69.64}
{"high": 71.14, "close":70.79}
{"high": 70.75, "close":70.74}
{"high": 70.44, "close":68.76}
{"high": 69.47, "close":69.03}
{"high": 69.31, "close":67.09}
{"high": 70.42, "close":69.23}
{"high": 71.74, "close":70.70}
{"high": 72.05, "close":71.67}
{"high": 71.58, "close":71.11}
{"high": 72.06, "close":71.76}
{"high": 68.43, "close":68.31}
{"high": 67.52, "close":67.00}
{"high": 66.84, "close":66.52}
{"high": 67.93, "close":64.86}
{"high": 65.78, "close":65.62}
{"high": 61.42, "close":60.35}
{"high": 61.29, "close":61.23}
{"high": 62.18, "close":60.23}
{"high": 65.62, "close":63.57}
{"high": 63.88, "close":63.70}
{"high": 63.97, "close":61.94}
{"high": 64.67, "close":64.61}
{"high": 64.56, "close":61.38}
{"high": 61.92, "close":61.72}
{"high": 57.13, "close":56.09}
{"high": 62.96, "close":57.31}
{"high": 63.21, "close":61.19}
{"high": 62.50, "close":61.67}
{"high": 64.40, "close":63.22}
{"high": 64.77, "close":60.55}
{"high": 69.98, "close":69.49}
{"high": 67.50, "close":62.06}
{"high": 70.31, "close":68.86}
{"high": 71.61, "close":71.33}
{"high": 69.52, "close":66.54}
{"high": 72.71, "close":72.26}
{"high": 74.89, "close":73.23}
{"high": 75.85, "close":75.68}
{"high": 76.00, "close":72.33}
{"high": 75.36, "close":74.70}
{"high": 69.60, "close":68.34}
{"high": 71.50, "close":68.38}
{"high": 74.47, "close":73.16}
{"high": 75.63, "close":72.02}
{"high": 76.04, "close":74.54}
{"high": 80.11, "close":78.26}
{"high": 81.16, "close":80.07}
{"high": 81.14, "close":80.90}
{"high": 79.94, "close":79.75}
{"high": 81.50, "close":81.24}
{"high": 81.56, "close":81.22}
{"high": 81.81, "close":81.80}
{"high": 80.97, "close":79.90}
{"high": 80.39, "close":80.39}
{"high": 80.85, "close":80.01}
{"high": 81.31, "close":81.30}
{"high": 81.19, "close":80.36}
{"high": 79.91, "close":79.71}
{"high": 78.37, "close":77.17}
{"high": 80.67, "close":77.38}
{"high": 81.02, "close":80.97}
{"high": 81.96, "close":81.08}
{"high": 79.60, "close":79.42}
{"high": 77.94, "close":77.24}
{"high": 80.83, "close":79.58}
{"high": 79.89, "close":79.81}
{"high": 80.00, "close":79.43}
{"high": 79.75, "close":79.14}
{"high": 79.68, "close":79.68}
{"high": 78.93, "close":78.81}
{"high": 78.88, "close":77.83}
{"high": 79.39, "close":78.17}
{"high": 79.27, "close":79.24}
{"high": 78.17, "close":77.58}
{"high": 77.61, "close":77.41}
{"high": 76.11, "close":75.80}
{"high": 75.22, "close":74.60}
{"high": 74.99, "close":74.95}
{"high": 75.14, "close":74.36}
{"high": 75.15, "close":75.09}
{"positionsize":0}
{"positionsize":10}
{"positionsize":20}
{"positionsize":30}
{"positionsize":30}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":40}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":30}
{"positionsize":20}
{"positionsize":20}
{"positionsize":20}
{"positionsize":20}
{"positionsize":20}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":10}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
{"positionsize":0}
This specification is an online monitor to assess two properties over the flight of an UAV in real time:
  1. That the UAV does not fly over forbidden regions, and
  2. That the UAV is in good position when it takes a picture.

The input streams of this specification consist of the state of the UAV at every instant and the onboard camera events to detect when a picture is being captured.

The output streams are the values of properties 1. and 2.

format JSON
use theory Geometry2D
use library Utils
use haskell Data.Maybe
use haskell Data.List


#HASKELL
data Attitude = Attitude {yaw :: Double, roll :: Double, pitch :: Double} deriving (Show,Generic,Read,FromJSON,ToJSON)
data Target   = Target {x :: Double, y :: Double, mutex :: Double, num_wp :: Double} deriving (Show,Generic,Read,FromJSON,ToJSON)
data Position = Position {x :: Double, y :: Double, alt :: Double, zone :: Double} deriving (Show,Generic,Read,FromJSON,ToJSON)
#ENDOFHASKELL


-- Input streams

input     Attitude attitude

input      Vector2 velocity

input     Position position

input       Double altitude

input       Target target

input [[[Double]]] nofly

input     [String] events_within

-- Output streams

output Bool all_ok_capturing = capturing [now] `implies` 
  (height_ok [now] && near [now] && roll_ok [now] && pitch_ok [now])

output Bool flying_in_safe_zones = 'isNothing (flying_in_poly [now])

output (Maybe Double) depth_into_poly = let
  mSides = '(fmap polygonSides) (flying_in_poly [now])
  distance_from_pos = 'shortestDist (filtered_pos [now])
  in 2'fmap distance_from_pos mSides
  where
  shortestDist x = minimum.map (distancePointSegment x)

-- Intermediate streams

define Bool capturing = let
  has_capture = '(elem "capture") (events_within [now])
  in has_capture || open_capture [-1|'False]

define Bool open_capture = let
  relevant_events = '(filter isrelevant) (events_within [now])
  in 2'lastIsCapture (open_capture [-1|'False]) relevant_events
  where
  lastIsCapture dflt [] = dflt
  lastIsCapture _ xs = last xs == "capture"
  isrelevant = flip elem ["capture", "yes_person", "no_person"]

-- x_filt[i] = ( x[i] + tau * ( - x_filt[i-2] / 2 + 2 * x_filt[i-1] ) ) / (1.5* tau + 1)
define Double filtered_pos_component <(Position -> Double) accessor> <String nm> = let
  dt      = 0.1
  tau     = 6*dt
  _this   = filtered_pos_component accessor nm
  nowcomp = 'accessor (position [now])
  in if instantN [now] < 3 then nowcomp else (nowcomp + tau * (2 * _this [-1|0] - _this [-2|0] / 2)) / (1.5 * tau + 1)

define Double filtered_pos_x = filtered_pos_component x "x" [now]

define Double filtered_pos_y = filtered_pos_component y "y" [now]

define Double filtered_pos_alt = filtered_pos_component alt "alt" [now]

define Point2 filtered_pos = 'P (filtered_pos_x [now]) (filtered_pos_y [now])

define Bool near = let
  target_pos = 'targetToPoint (target [now])
  in 2'distance (filtered_pos [now]) target_pos < 1
  where 
  targetToPoint (Target x y _ _) = P x y

define Bool height_ok = filtered_pos_alt [now] > 0

define Bool roll_ok = '(abs.roll) (attitude [now]) < 0.0523

define Bool pitch_ok = '(abs.pitch) (attitude [now]) < 0.0523

define [Polygon] no_fly_polys = no_fly_polys [-1|'(map.map$createPoint) (nofly [now])]
  where
  createPoint [x,y] = P x y

-- We assume that no-fly zones are non-overlapping
define (Maybe Polygon) flying_in_poly = let
  position_in_poly = 'pointInPoly (filtered_pos [now])
  in
  2'find position_in_poly (no_fly_polys [now])
{"events_within": ["initial_config", "takeoff", "sort_locations", "takeoff_ended", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 0.17313674092292786, "roll": 0.007439206819981337, "pitch": 0.13648805022239685}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.22, "x": 4.46}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438034.7967751855, "x": 322856.3605598824, "alt": 39.958, "zone": 19.0}, "altitude": 39.958, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.148731231689453, "speed": 1.8658108711242676}}
{"events_within": [], "attitude": {"yaw": 0.17313674092292786, "roll": 0.007439206819981337, "pitch": 0.13648805022239685}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.22, "x": 4.46}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438034.7967751855, "x": 322856.3605598824, "alt": 39.958, "zone": 19.0}, "altitude": 39.958, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.148731231689453, "speed": 1.8658108711242676}}
{"events_within": [], "attitude": {"yaw": 0.16149266064167023, "roll": -0.13158294558525085, "pitch": 0.06372390687465668}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.77, "x": 4.37}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438047.914024658, "x": 322858.55107034865, "alt": 42.688, "zone": 19.0}, "altitude": 42.688, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.148731231689453, "speed": 1.8658108711242676}}
{"events_within": [], "attitude": {"yaw": 0.16149266064167023, "roll": -0.13158294558525085, "pitch": 0.06372390687465668}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.77, "x": 4.37}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438047.914024658, "x": 322858.55107034865, "alt": 42.688, "zone": 19.0}, "altitude": 42.688, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.591218948364258, "speed": 1.880706548690796}}
{"events_within": [], "attitude": {"yaw": 0.1702425479888916, "roll": -0.16701115667819977, "pitch": 0.05536281690001488}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.84, "x": 4.04}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438052.652885669, "x": 322859.2751392252, "alt": 43.44, "zone": 19.0}, "altitude": 43.44, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.591218948364258, "speed": 1.880706548690796}}
{"events_within": [], "attitude": {"yaw": 0.1702425479888916, "roll": -0.16701115667819977, "pitch": 0.05536281690001488}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912482, "velocity": {"y": 23.84, "x": 4.04}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438052.652885669, "x": 322859.2751392252, "alt": 43.44, "zone": 19.0}, "altitude": 43.44, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.88837432861328, "speed": 1.892228126525879}}
{"events_within": [], "attitude": {"yaw": 0.1702425479888916, "roll": -0.16701115667819977, "pitch": 0.05536281690001488}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.84, "x": 4.04}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438052.652885669, "x": 322859.2751392252, "alt": 43.44, "zone": 19.0}, "altitude": 43.44, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.88837432861328, "speed": 1.892228126525879}}
{"events_within": [], "attitude": {"yaw": 0.1676052063703537, "roll": -0.10290601849555969, "pitch": 0.05071267858147621}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.78, "x": 3.91}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438058.3829094805, "x": 322860.10101082723, "alt": 44.287, "zone": 19.0}, "altitude": 44.287, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.88837432861328, "speed": 1.892228126525879}}
{"events_within": [], "attitude": {"yaw": 0.16742002964019775, "roll": 0.008988788351416588, "pitch": 0.04925258830189705}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.79, "x": 3.79}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438058.3829094805, "x": 322860.10101082723, "alt": 45.164, "zone": 19.0}, "altitude": 45.164, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.88837432861328, "speed": 1.892228126525879}}
{"events_within": [], "attitude": {"yaw": 0.16742002964019775, "roll": 0.008988788351416588, "pitch": 0.04925258830189705}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.79, "x": 3.79}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438064.536043862, "x": 322860.9669576193, "alt": 45.164, "zone": 19.0}, "altitude": 45.164, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.98767852783203, "speed": 1.8991962671279907}}
{"events_within": [], "attitude": {"yaw": 0.16742002964019775, "roll": 0.008988788351416588, "pitch": 0.04925258830189705}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.79, "x": 3.79}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438064.536043862, "x": 322860.9669576193, "alt": 45.164, "zone": 19.0}, "altitude": 45.164, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 17.054811477661133, "speed": 1.9020949602127075}}
{"events_within": [], "attitude": {"yaw": 0.18850252032279968, "roll": 0.36402449011802673, "pitch": 0.04924868419766426}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912482, "velocity": {"y": 23.76, "x": 4.73}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438070.233778837, "x": 322861.8355756351, "alt": 45.99, "zone": 19.0}, "altitude": 45.99, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 17.054811477661133, "speed": 1.9020949602127075}}
{"events_within": [], "attitude": {"yaw": 0.1818120777606964, "roll": 0.39427152276039124, "pitch": 0.09566180408000946}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.71, "x": 6.17}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438076.374485949, "x": 322863.1046322796, "alt": 46.92, "zone": 19.0}, "altitude": 46.92, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.8132266998291, "speed": 1.914101481437683}}
{"events_within": [], "attitude": {"yaw": 0.1818120777606964, "roll": 0.39427152276039124, "pitch": 0.09566180408000946}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.71, "x": 6.17}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438076.374485949, "x": 322863.1046322796, "alt": 46.92, "zone": 19.0}, "altitude": 47.968, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.8132266998291, "speed": 1.914101481437683}}
{"events_within": [], "attitude": {"yaw": 0.21392689645290375, "roll": 0.21858501434326172, "pitch": 0.11693916469812393}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.72, "x": 6.57}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438082.073543979, "x": 322864.4851195577, "alt": 47.968, "zone": 19.0}, "altitude": 47.968, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.842058181762695, "speed": 1.9177740812301636}}
{"events_within": [], "attitude": {"yaw": 0.21392689645290375, "roll": 0.21858501434326172, "pitch": 0.11693916469812393}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.72, "x": 6.57}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438082.073543979, "x": 322864.4851195577, "alt": 47.968, "zone": 19.0}, "altitude": 47.968, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 17.34537696838379, "speed": 1.9254816770553589}}
{"events_within": [], "attitude": {"yaw": 0.25704821944236755, "roll": 0.2251284122467041, "pitch": 0.11567112803459167}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.79, "x": 6.87}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438088.24317715, "x": 322866.0304071264, "alt": 49.243, "zone": 19.0}, "altitude": 49.243, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 17.34537696838379, "speed": 1.9254816770553589}}
{"events_within": [], "attitude": {"yaw": 0.25704821944236755, "roll": 0.2251284122467041, "pitch": 0.11567112803459167}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.79, "x": 6.87}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438088.24317715, "x": 322866.0304071264, "alt": 49.243, "zone": 19.0}, "altitude": 49.243, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 18.024816513061523, "speed": 1.9365806579589844}}
{"events_within": [], "attitude": {"yaw": 0.27106502652168274, "roll": 0.29254767298698425, "pitch": 0.12563416361808777}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912483, "velocity": {"y": 23.740000000000002, "x": 7.5600000000000005}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438093.946919442, "x": 322867.6037967338, "alt": 50.45, "zone": 19.0}, "altitude": 50.45, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 19.14754867553711, "speed": 1.9488412141799927}}
{"events_within": [], "attitude": {"yaw": 0.3335126042366028, "roll": 0.23173825442790985, "pitch": 0.1618652492761612}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912483, "velocity": {"y": 23.25, "x": 8.96}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438111.9082326, "x": 322873.4781878132, "alt": 54.732, "zone": 19.0}, "altitude": 54.732, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 24.822189331054688, "speed": 2.013998508453369}}
{"events_within": [], "attitude": {"yaw": 0.47679033875465393, "roll": 0.8890963196754456, "pitch": 0.21272818744182587}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912483, "velocity": {"y": 21.330000000000002, "x": 13.21}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438128.690141917, "x": 322880.6484180927, "alt": 59.258, "zone": 19.0}, "altitude": 59.258, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 28.83917808532715, "speed": 2.067681074142456}}
{"events_within": [], "attitude": {"yaw": 0.6831240057945251, "roll": 0.6405964493751526, "pitch": 0.20676036179065704}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912483, "velocity": {"y": 18.400000000000002, "x": 16.73}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438143.684649209, "x": 322891.982479963, "alt": 64.795, "zone": 19.0}, "altitude": 64.795, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 31.30790901184082, "speed": 2.1015701293945312}}
{"events_within": [], "attitude": {"yaw": 0.8278421759605408, "roll": 0.6120173335075378, "pitch": 0.20211261510849}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912484, "velocity": {"y": 15.47, "x": 19.01}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438156.4531601425, "x": 322904.97348455014, "alt": 69.753, "zone": 19.0}, "altitude": 69.753, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 33.96683883666992, "speed": 2.139432668685913}}
{"events_within": [], "attitude": {"yaw": 0.9570377469062805, "roll": 0.5802993178367615, "pitch": 0.1719827800989151}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912484, "velocity": {"y": 12.81, "x": 20.56}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438167.455952387, "x": 322919.82004782767, "alt": 74.402, "zone": 19.0}, "altitude": 74.402, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 37.73513412475586, "speed": 2.198878049850464}}
{"events_within": [], "attitude": {"yaw": 1.2223448753356934, "roll": 0.8615971803665161, "pitch": 0.22066736221313477}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912484, "velocity": {"y": 6.58, "x": 23.57}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438175.42236619, "x": 322935.89005734504, "alt": 78.414, "zone": 19.0}, "altitude": 78.414, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 39.144351959228516, "speed": 2.221436023712158}}
{"events_within": [], "attitude": {"yaw": 1.436874508857727, "roll": 0.7889271974563599, "pitch": 0.18941164016723633}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912484, "velocity": {"y": 1.57, "x": 24.150000000000002}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438178.818835146, "x": 322954.0766940516, "alt": 83.09, "zone": 19.0}, "altitude": 83.09, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 39.37428665161133, "speed": 2.223940849304199}}
{"events_within": [], "attitude": {"yaw": 1.6204833984375, "roll": 0.7415361404418945, "pitch": 0.1650930941104889}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912484, "velocity": {"y": -2.81, "x": 23.66}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438178.739728666, "x": 322971.86936986685, "alt": 87.044, "zone": 19.0}, "altitude": 87.044, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 44.91986083984375, "speed": 2.316300868988037}}
{"events_within": [], "attitude": {"yaw": 1.7906467914581299, "roll": 0.6702545881271362, "pitch": 0.13510796427726746}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912485, "velocity": {"y": -6.7, "x": 22.54}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438175.437443803, "x": 322989.5976082402, "alt": 90.601, "zone": 19.0}, "altitude": 90.601, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 49.11769104003906, "speed": 2.3971097469329834}}
{"events_within": [], "attitude": {"yaw": 1.9498729705810547, "roll": 0.6870571970939636, "pitch": 0.09582722187042236}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912485, "velocity": {"y": -9.700000000000001, "x": 21.16}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438169.668902427, "x": 323005.95067202277, "alt": 93.562, "zone": 19.0}, "altitude": 93.562, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 53.35409927368164, "speed": 2.488121509552002}}
{"events_within": [], "attitude": {"yaw": 2.260504722595215, "roll": 0.7869013547897339, "pitch": 0.17113570868968964}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912485, "velocity": {"y": -16.44, "x": 16.990000000000002}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438160.18922899, "x": 323020.9000147936, "alt": 96.352, "zone": 19.0}, "altitude": 96.352, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 56.923213958740234, "speed": 2.5683035850524902}}
{"events_within": [], "attitude": {"yaw": 2.4437918663024902, "roll": 0.7502853274345398, "pitch": 0.12652651965618134}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912485, "velocity": {"y": -19.01, "x": 13.75}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438147.398771949, "x": 323032.63166481326, "alt": 99.581, "zone": 19.0}, "altitude": 99.581, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 61.18577575683594, "speed": 2.649247169494629}}
{"events_within": [], "attitude": {"yaw": 2.627061367034912, "roll": 0.6646038293838501, "pitch": 0.10643245279788971}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912485, "velocity": {"y": -20.98, "x": 10.0}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438132.394414909, "x": 323041.94140806934, "alt": 102.412, "zone": 19.0}, "altitude": 102.412, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 66.0020751953125, "speed": 2.7350013256073}}
{"events_within": [], "attitude": {"yaw": 2.7769203186035156, "roll": 0.5587683916091919, "pitch": 0.08644186705350876}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912486, "velocity": {"y": -22.01, "x": 6.76}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438116.664806409, "x": 323048.3735446949, "alt": 104.924, "zone": 19.0}, "altitude": 104.924, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 70.65953826904297, "speed": 2.8068933486938477}}
{"events_within": [], "attitude": {"yaw": 2.8872742652893066, "roll": 0.5217419862747192, "pitch": 0.004117535427212715}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912486, "velocity": {"y": -21.830000000000002, "x": 4.63}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438100.088210088, "x": 323052.86253213277, "alt": 106.937, "zone": 19.0}, "altitude": 106.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 74.77679443359375, "speed": 2.8616256713867188}}
{"events_within": [], "attitude": {"yaw": 3.1051571369171143, "roll": 0.7225338220596313, "pitch": 0.03231256827712059}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912486, "velocity": {"y": -21.91, "x": -1.1}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438084.112840217, "x": 323054.6599473125, "alt": 107.587, "zone": 19.0}, "altitude": 107.587, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 78.93333435058594, "speed": 2.9055075645446777}}
{"events_within": [], "attitude": {"yaw": -3.031148672103882, "roll": 0.6925281286239624, "pitch": -0.07556692510843277}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912486, "velocity": {"y": -20.77, "x": -3.87}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438068.001175151, "x": 323053.12914733327, "alt": 107.741, "zone": 19.0}, "altitude": 107.741, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 81.59208679199219, "speed": 2.898939847946167}}
{"events_within": [], "attitude": {"yaw": -2.8700170516967773, "roll": 0.6066595911979675, "pitch": -0.1236841008067131}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912486, "velocity": {"y": -19.38, "x": -6.890000000000001}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438053.2235789625, "x": 323049.3505760949, "alt": 106.759, "zone": 19.0}, "altitude": 106.759, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 87.42571258544922, "speed": 2.8471457958221436}}
{"events_within": [], "attitude": {"yaw": -2.725691318511963, "roll": 0.5076107382774353, "pitch": -0.1661091148853302}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912487, "velocity": {"y": -18.07, "x": -9.43}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438039.148232692, "x": 323043.38153328263, "alt": 105.047, "zone": 19.0}, "altitude": 105.047, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.3677749633789, "speed": 2.7971878051757812}}
{"events_within": [], "attitude": {"yaw": -2.605700731277466, "roll": 0.3926517367362976, "pitch": -0.1848602443933487}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912487, "velocity": {"y": -16.93, "x": -11.450000000000001}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438026.3241194775, "x": 323035.87165082933, "alt": 102.934, "zone": 19.0}, "altitude": 102.934, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.49658966064453, "speed": 2.6994237899780273}}
{"events_within": [], "attitude": {"yaw": -2.471419334411621, "roll": 0.7702059149742126, "pitch": -0.1806487888097763}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912487, "velocity": {"y": -15.4, "x": -13.65}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438018.169964283, "x": 323029.9100245009, "alt": 101.383, "zone": 19.0}, "altitude": 101.383, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 99.1380615234375, "speed": 2.5581414699554443}}
{"events_within": [], "attitude": {"yaw": -2.1887481212615967, "roll": 0.5815050601959229, "pitch": -0.12154120206832886}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912487, "velocity": {"y": -11.15, "x": -18.01}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5438005.095048637, "x": 323013.8971307323, "alt": 99.223, "zone": 19.0}, "altitude": 99.223, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 106.00108337402344, "speed": 2.250777006149292}}
{"events_within": [], "attitude": {"yaw": -2.0359702110290527, "roll": 0.4696027636528015, "pitch": -0.11916136741638184}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912487, "velocity": {"y": -8.38, "x": -19.56}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437997.69884641, "x": 322999.8024220406, "alt": 97.845, "zone": 19.0}, "altitude": 97.845, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 111.20475769042969, "speed": 1.9965945482254028}}
{"events_within": [], "attitude": {"yaw": -1.918680191040039, "roll": 0.37312477827072144, "pitch": -0.12054811418056488}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912488, "velocity": {"y": -6.2, "x": -20.57}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437992.290449764, "x": 322985.2231255978, "alt": 96.537, "zone": 19.0}, "altitude": 96.537, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 117.30491638183594, "speed": 1.7166370153427124}}
{"events_within": [], "attitude": {"yaw": -1.8149861097335815, "roll": 0.3230586349964142, "pitch": -0.11750862747430801}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 7.0}, "timestamp": 1601912488, "velocity": {"y": -4.59, "x": -21.17}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437988.156972884, "x": 322969.6226863521, "alt": 95.34700000000001, "zone": 19.0}, "altitude": 95.34700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 123.72984313964844, "speed": 1.4703744649887085}}
{"events_within": [], "attitude": {"yaw": -1.661844253540039, "roll": 0.45784541964530945, "pitch": -0.04155172035098076}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912488, "velocity": {"y": -0.24, "x": -22.05}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437986.1970754145, "x": 322953.8687948794, "alt": 94.473, "zone": 19.0}, "altitude": 94.473, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 131.13873291015625, "speed": 1.240269660949707}}
{"events_within": [], "attitude": {"yaw": -1.5019453763961792, "roll": 0.30353686213493347, "pitch": -0.0502360537648201}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912488, "velocity": {"y": 2.94, "x": -21.93}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437987.126153586, "x": 322932.1957887393, "alt": 94.021, "zone": 19.0}, "altitude": 94.021, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 139.4542694091797, "speed": 1.0285518169403076}}
{"events_within": [], "attitude": {"yaw": -1.4205211400985718, "roll": 0.268699049949646, "pitch": -0.06873775273561478}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912488, "velocity": {"y": 4.44, "x": -21.62}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437989.585007653, "x": 322915.88145779446, "alt": 93.753, "zone": 19.0}, "altitude": 93.753, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 153.47853088378906, "speed": 0.7894055247306824}}
{"events_within": [], "attitude": {"yaw": -1.3736952543258667, "roll": -0.03078526072204113, "pitch": -0.06983458250761032}, "target": {"y": 5438008.23911845, "x": 322870.52179215587, "mutex": 1.0, "num_wp": 10.0}, "timestamp": 1601912489, "velocity": {"y": 4.7, "x": -21.580000000000002}, "target_dir": {"y": 14.161232273443602, "x": 26.55765673518181}, "position": {"y": 5437992.833819548, "x": 322900.07660395635, "alt": 93.54, "zone": 19.0}, "altitude": 93.54, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 168.73634338378906, "speed": 0.6467916369438171}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.376173973083496, "roll": 0.005725627765059471, "pitch": -0.06594400852918625}, "target": {"y": 5438006.782179947, "x": 322810.54625354265, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912489, "velocity": {"y": 4.89, "x": -21.51}, "target_dir": {"y": -59.975538613216486, "x": 1.4569385033100843}, "position": {"y": 5437995.019503798, "x": 322889.44164165406, "alt": 93.446, "zone": 19.0}, "altitude": 93.446, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 178.9669189453125, "speed": 0.5959505438804626}}
{"events_within": [], "attitude": {"yaw": -1.3648258447647095, "roll": 0.15121999382972717, "pitch": -0.06360439211130142}, "target": {"y": 5438006.782179947, "x": 322810.54625354265, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912489, "velocity": {"y": 4.91, "x": -21.66}, "target_dir": {"y": -59.975538613216486, "x": 1.4569385033100843}, "position": {"y": 5437999.197809047, "x": 322868.0001585694, "alt": 93.374, "zone": 19.0}, "altitude": 93.374, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -166.17677307128906, "speed": 0.5637553334236145}}
{"events_within": [], "attitude": {"yaw": -1.3832041025161743, "roll": -0.12654048204421997, "pitch": -0.036824241280555725}, "target": {"y": 5438006.782179947, "x": 322810.54625354265, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912489, "velocity": {"y": 3.79, "x": -21.89}, "target_dir": {"y": -59.975538613216486, "x": 1.4569385033100843}, "position": {"y": 5438002.187599448, "x": 322851.5973459983, "alt": 93.473, "zone": 19.0}, "altitude": 93.473, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -147.01283264160156, "speed": 0.5804972052574158}}
{"events_within": [], "attitude": {"yaw": -1.4335800409317017, "roll": -0.17359714210033417, "pitch": -0.04183833301067352}, "target": {"y": 5438006.782179947, "x": 322810.54625354265, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912489, "velocity": {"y": 3.18, "x": -22.02}, "target_dir": {"y": -59.975538613216486, "x": 1.4569385033100843}, "position": {"y": 5438004.506223373, "x": 322835.46257209417, "alt": 93.746, "zone": 19.0}, "altitude": 93.746, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -136.06240844726562, "speed": 0.6275948286056519}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.4734865427017212, "roll": -0.13754107058048248, "pitch": -0.04232312738895416}, "target": {"y": 5438005.324747702, "x": 322750.57071122515, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912490, "velocity": {"y": 2.5, "x": -22.11}, "target_dir": {"y": -59.97554231749382, "x": 1.4574322449043393}, "position": {"y": 5438006.233227755, "x": 322818.75474094506, "alt": 94.118, "zone": 19.0}, "altitude": 94.118, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -129.60812377929688, "speed": 0.6750279664993286}}
{"events_within": [], "attitude": {"yaw": -1.511520504951477, "roll": -0.15941566228866577, "pitch": -0.03480622544884682}, "target": {"y": 5438005.324747702, "x": 322750.57071122515, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912490, "velocity": {"y": 1.6400000000000001, "x": -22.11}, "target_dir": {"y": -59.97554231749382, "x": 1.4574322449043393}, "position": {"y": 5438007.7421792215, "x": 322796.7318689361, "alt": 94.639, "zone": 19.0}, "altitude": 94.639, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -123.2065658569336, "speed": 0.7446106672286987}}
{"events_within": [], "attitude": {"yaw": -1.5374022722244263, "roll": -0.09648516029119492, "pitch": -0.03760267794132233}, "target": {"y": 5438005.324747702, "x": 322750.57071122515, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912490, "velocity": {"y": 1.16, "x": -22.1}, "target_dir": {"y": -59.97554231749382, "x": 1.4574322449043393}, "position": {"y": 5438008.2905208785, "x": 322780.43867386086, "alt": 95.132, "zone": 19.0}, "altitude": 95.132, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -117.85224914550781, "speed": 0.8305348753929138}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.5468276739120483, "roll": -0.09160134196281433, "pitch": -0.03622587397694588}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912490, "velocity": {"y": 0.72, "x": -22.09}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438008.445217587, "x": 322769.4334120834, "alt": 95.44800000000001, "zone": 19.0}, "altitude": 95.44800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -115.88182830810547, "speed": 0.8720758557319641}}
{"events_within": [], "attitude": {"yaw": -1.5738180875778198, "roll": -0.06442117691040039, "pitch": -0.0447414331138134}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912490, "velocity": {"y": 0.24, "x": -22.19}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438008.333895691, "x": 322747.48345873813, "alt": 95.98100000000001, "zone": 19.0}, "altitude": 95.98100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -113.3743896484375, "speed": 0.9386362433433533}}
{"events_within": [], "attitude": {"yaw": -1.4692472219467163, "roll": 0.30608487129211426, "pitch": 0.005621942225843668}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912491, "velocity": {"y": 3.69, "x": -22.07}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438009.4421333065, "x": 322725.43672219454, "alt": 96.628, "zone": 19.0}, "altitude": 96.628, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -112.10507202148438, "speed": 0.9782599210739136}}
{"events_within": [], "attitude": {"yaw": -1.401341438293457, "roll": 0.4236294627189636, "pitch": -0.028234923258423805}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912491, "velocity": {"y": 4.86, "x": -21.8}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438011.14282554, "x": 322714.5113522587, "alt": 97.081, "zone": 19.0}, "altitude": 97.081, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -110.2906265258789, "speed": 1.0192605257034302}}
{"events_within": [], "attitude": {"yaw": -1.306533932685852, "roll": 0.32727184891700745, "pitch": -0.027992254123091698}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912491, "velocity": {"y": 6.66, "x": -21.13}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438015.15674664, "x": 322698.20939996943, "alt": 97.645, "zone": 19.0}, "altitude": 97.645, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -108.21278381347656, "speed": 1.0604099035263062}}
{"events_within": [], "attitude": {"yaw": -1.1943714618682861, "roll": 0.4027399718761444, "pitch": -0.040070541203022}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912491, "velocity": {"y": 8.92, "x": -20.18}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438022.395906476, "x": 322677.49049366254, "alt": 98.162, "zone": 19.0}, "altitude": 98.162, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -105.82695007324219, "speed": 1.1020042896270752}}
{"events_within": [], "attitude": {"yaw": -1.1077113151550293, "roll": 0.3062911331653595, "pitch": -0.03753906115889549}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912491, "velocity": {"y": 10.59, "x": -19.32}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438029.339179307, "x": 322662.87951945694, "alt": 98.496, "zone": 19.0}, "altitude": 98.496, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -102.75799560546875, "speed": 1.1490343809127808}}
{"events_within": [], "attitude": {"yaw": -1.0291846990585327, "roll": 0.3139316141605377, "pitch": -0.039167746901512146}, "target": {"y": 5438062.403896828, "x": 322629.1604716972, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912492, "velocity": {"y": 12.26, "x": -18.37}, "target_dir": {"y": -121.4102395279333, "x": -57.07914912607521}, "position": {"y": 5438037.675721905, "x": 322648.4612104626, "alt": 98.679, "zone": 19.0}, "altitude": 98.679, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -101.2217788696289, "speed": 1.1692438125610352}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -0.9768065214157104, "roll": 0.27026844024658203, "pitch": -0.04508255794644356}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912492, "velocity": {"y": 13.040000000000001, "x": -17.78}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438043.786020905, "x": 322639.3418479537, "alt": 98.799, "zone": 19.0}, "altitude": 98.799, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -98.96680450439453, "speed": 1.1977207660675049}}
{"events_within": [], "attitude": {"yaw": -0.8868134021759033, "roll": 0.2704966366291046, "pitch": -0.04436873272061348}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912492, "velocity": {"y": 14.64, "x": -16.47}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438057.172972219, "x": 322622.01458462776, "alt": 98.95400000000001, "zone": 19.0}, "altitude": 98.95400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -95.55950927734375, "speed": 1.2367565631866455}}
{"events_within": [], "attitude": {"yaw": -0.6984562873840332, "roll": 0.6390572786331177, "pitch": 0.033673740923404694}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912492, "velocity": {"y": 18.27, "x": -12.84}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438068.771692846, "x": 322610.6385613156, "alt": 99.059, "zone": 19.0}, "altitude": 99.059, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -92.81548309326172, "speed": 1.265135407447815}}
{"events_within": [], "attitude": {"yaw": -0.47678184509277344, "roll": 0.625420868396759, "pitch": -0.01036619208753109}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912492, "velocity": {"y": 20.41, "x": -9.06}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438087.632341774, "x": 322599.12781670113, "alt": 99.889, "zone": 19.0}, "altitude": 99.889, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -89.94052124023438, "speed": 1.2853872776031494}}
{"events_within": [], "attitude": {"yaw": -0.2545894980430603, "roll": 0.6887090802192688, "pitch": 0.019368350505828857}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912493, "velocity": {"y": 22.11, "x": -4.18}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438103.595990498, "x": 322593.65406766057, "alt": 100.354, "zone": 19.0}, "altitude": 100.354, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -86.39047241210938, "speed": 1.303941011428833}}
{"events_within": [], "attitude": {"yaw": -0.13572899997234344, "roll": 0.650234043598175, "pitch": -0.0024211201816797256}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912493, "velocity": {"y": 22.32, "x": -1.67}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438114.641639137, "x": 322591.96716046415, "alt": 100.803, "zone": 19.0}, "altitude": 100.803, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -82.47625732421875, "speed": 1.318921685218811}}
{"events_within": [], "attitude": {"yaw": 0.0775248110294342, "roll": 0.5637859106063843, "pitch": -0.025565123185515404}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912493, "velocity": {"y": 21.89, "x": 2.96}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438136.700372219, "x": 322592.2781498899, "alt": 101.262, "zone": 19.0}, "altitude": 101.262, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -75.97615814208984, "speed": 1.337822437286377}}
{"events_within": [], "attitude": {"yaw": 0.20704030990600586, "roll": 0.47690263390541077, "pitch": -0.048476170748472214}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912493, "velocity": {"y": 21.22, "x": 5.66}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438152.613900701, "x": 322595.24779802293, "alt": 101.33500000000001, "zone": 19.0}, "altitude": 101.33500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -70.72505187988281, "speed": 1.3526510000228882}}
{"events_within": [], "attitude": {"yaw": 0.4647257626056671, "roll": 0.7983275651931763, "pitch": -0.0078816507011652}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912493, "velocity": {"y": 19.1, "x": 11.43}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438173.066398414, "x": 322602.59671776753, "alt": 100.921, "zone": 19.0}, "altitude": 100.921, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -66.05133056640625, "speed": 1.367397427558899}}
{"events_within": [], "attitude": {"yaw": 0.6776231527328491, "roll": 0.6587617993354797, "pitch": -0.025317780673503876}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912494, "velocity": {"y": 16.51, "x": 14.98}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438186.617494675, "x": 322612.5723701224, "alt": 101.296, "zone": 19.0}, "altitude": 101.296, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -59.39307403564453, "speed": 1.378688097000122}}
{"events_within": [], "attitude": {"yaw": 0.8395649790763855, "roll": 0.5824306607246399, "pitch": -0.03726038336753845}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912494, "velocity": {"y": 13.84, "x": 17.37}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438197.935432969, "x": 322624.364675177, "alt": 101.385, "zone": 19.0}, "altitude": 101.385, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -56.20645523071289, "speed": 1.3781914710998535}}
{"events_within": [], "attitude": {"yaw": 0.9807717800140381, "roll": 0.4979565441608429, "pitch": -0.057433873414993286}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912494, "velocity": {"y": 11.290000000000001, "x": 19.05}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438207.5428300025, "x": 322637.99448751565, "alt": 101.277, "zone": 19.0}, "altitude": 101.277, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -51.25246047973633, "speed": 1.3737835884094238}}
{"events_within": [], "attitude": {"yaw": 1.1139705181121826, "roll": 0.5206393599510193, "pitch": -0.08456055819988251}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912494, "velocity": {"y": 9.200000000000001, "x": 20.1}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438215.189281307, "x": 322652.3014131917, "alt": 100.96600000000001, "zone": 19.0}, "altitude": 100.96600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -46.915199279785156, "speed": 1.3655142784118652}}
{"events_within": [], "attitude": {"yaw": 1.3776735067367554, "roll": 0.6487305164337158, "pitch": 0.00784344132989645}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912494, "velocity": {"y": 2.8000000000000003, "x": 22.47}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438220.067598981, "x": 322668.35406078876, "alt": 100.62, "zone": 19.0}, "altitude": 100.62, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -42.463565826416016, "speed": 1.3502626419067383}}
{"events_within": [], "attitude": {"yaw": 1.5390769243240356, "roll": 0.6313905119895935, "pitch": -0.03074732795357704}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912495, "velocity": {"y": -0.64, "x": 22.5}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438221.21234806, "x": 322684.8247832076, "alt": 100.866, "zone": 19.0}, "altitude": 100.866, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -37.09225845336914, "speed": 1.299094796180725}}
{"events_within": [], "attitude": {"yaw": 1.6962933540344238, "roll": 0.5462835431098938, "pitch": -0.04685668274760246}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912495, "velocity": {"y": -4.0200000000000005, "x": 22.02}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438219.622124454, "x": 322701.6641037565, "alt": 100.89, "zone": 19.0}, "altitude": 100.89, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -33.378204345703125, "speed": 1.245589256286621}}
{"events_within": [], "attitude": {"yaw": 1.8632283210754395, "roll": 0.41658708453178406, "pitch": -0.06585592776536942}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912495, "velocity": {"y": -7.42, "x": 20.87}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438214.131357102, "x": 322723.02077214024, "alt": 100.613, "zone": 19.0}, "altitude": 100.613, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -29.195878982543945, "speed": 1.166648268699646}}
{"events_within": [], "attitude": {"yaw": 2.0048153400421143, "roll": 0.6086652278900146, "pitch": -0.0468500517308712}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912495, "velocity": {"y": -10.78, "x": 19.55}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438207.907066302, "x": 322737.967020647, "alt": 100.209, "zone": 19.0}, "altitude": 100.209, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -24.423948287963867, "speed": 1.060440182685852}}
{"events_within": [], "attitude": {"yaw": 2.1530277729034424, "roll": 0.4806433320045471, "pitch": -0.061500199139118195}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912495, "velocity": {"y": -13.200000000000001, "x": 18.03}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438199.078170224, "x": 322752.24644464743, "alt": 100.06400000000001, "zone": 19.0}, "altitude": 100.06400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -21.166324615478516, "speed": 0.9658179879188538}}
{"events_within": [], "attitude": {"yaw": 2.26163387298584, "roll": 0.36638152599334717, "pitch": -0.06684231013059616}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912496, "velocity": {"y": -14.92, "x": 16.48}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438188.966043118, "x": 322764.92059683485, "alt": 99.874, "zone": 19.0}, "altitude": 99.874, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -18.083656311035156, "speed": 0.8579925894737244}}
{"events_within": [], "attitude": {"yaw": 2.344902515411377, "roll": 0.2770683467388153, "pitch": -0.07733417302370071}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912496, "velocity": {"y": -16.12, "x": 15.22}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438177.51559877, "x": 322776.9223157399, "alt": 99.575, "zone": 19.0}, "altitude": 99.575, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -15.141695976257324, "speed": 0.7556940317153931}}
{"events_within": [], "attitude": {"yaw": 2.4037692546844482, "roll": 0.18932302296161652, "pitch": -0.08368899673223495}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912496, "velocity": {"y": -16.97, "x": 14.39}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438165.628876216, "x": 322787.8856142671, "alt": 99.187, "zone": 19.0}, "altitude": 99.187, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -11.821599960327148, "speed": 0.6438650488853455}}
{"events_within": [], "attitude": {"yaw": 2.4413540363311768, "roll": 0.07977811247110367, "pitch": -0.08098401129245758}, "target": {"y": 5438126.7731425185, "x": 322807.6309452362, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912496, "velocity": {"y": -17.31, "x": 13.950000000000001}, "target_dir": {"y": 178.47047353896778, "x": -64.36924569029361}, "position": {"y": 5438153.015596147, "x": 322798.66512596735, "alt": 98.82300000000001, "zone": 19.0}, "altitude": 98.82300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -8.350619316101074, "speed": 0.5454014539718628}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 2.459293842315674, "roll": 0.028238700702786446, "pitch": -0.07703409343957901}, "target": {"y": 5438068.234598474, "x": 322869.0646239918, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912496, "velocity": {"y": -17.52, "x": 13.81}, "target_dir": {"y": 61.43367875559488, "x": 58.538544044829905}, "position": {"y": 5438140.558036563, "x": 322808.99605032895, "alt": 98.517, "zone": 19.0}, "altitude": 98.517, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -5.06504487991333, "speed": 0.4727231562137604}}
{"events_within": [], "attitude": {"yaw": 2.447265386581421, "roll": 0.1256546974182129, "pitch": -0.06117389723658562}, "target": {"y": 5438068.234598474, "x": 322869.0646239918, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912497, "velocity": {"y": -18.25, "x": 12.91}, "target_dir": {"y": 61.43367875559488, "x": 58.538544044829905}, "position": {"y": 5438131.936453581, "x": 322815.80988329556, "alt": 98.35600000000001, "zone": 19.0}, "altitude": 98.35600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -0.14289917051792145, "speed": 0.3934570550918579}}
{"events_within": [], "attitude": {"yaw": 2.46433162689209, "roll": -0.03985365852713585, "pitch": -0.06863439083099365}, "target": {"y": 5438068.234598474, "x": 322869.0646239918, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912497, "velocity": {"y": -17.84, "x": 13.47}, "target_dir": {"y": 61.43367875559488, "x": 58.538544044829905}, "position": {"y": 5438114.760902402, "x": 322829.4778184042, "alt": 98.27, "zone": 19.0}, "altitude": 98.27, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 9.650110244750977, "speed": 0.2949475944042206}}
{"events_within": [], "attitude": {"yaw": 2.4750704765319824, "roll": -0.054363273084163666, "pitch": -0.06087595596909523}, "target": {"y": 5438068.234598474, "x": 322869.0646239918, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912497, "velocity": {"y": -17.61, "x": 13.82}, "target_dir": {"y": 61.43367875559488, "x": 58.538544044829905}, "position": {"y": 5438106.221092459, "x": 322836.4574535405, "alt": 98.22, "zone": 19.0}, "altitude": 98.22, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 16.833784103393555, "speed": 0.2535339593887329}}
{"events_within": [], "attitude": {"yaw": 2.4485039710998535, "roll": -0.06010463833808899, "pitch": -0.05277777090668678}, "target": {"y": 5438068.234598474, "x": 322869.0646239918, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912497, "velocity": {"y": -17.22, "x": 14.09}, "target_dir": {"y": 61.43367875559488, "x": 58.538544044829905}, "position": {"y": 5438089.37042675, "x": 322850.6964346475, "alt": 98.284, "zone": 19.0}, "altitude": 98.284, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 42.06251907348633, "speed": 0.18918488919734955}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 2.4343602657318115, "roll": -0.07020655274391174, "pitch": -0.05356748774647713}, "target": {"y": 5438009.695563213, "x": 322930.4973270672, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912497, "velocity": {"y": -16.990000000000002, "x": 14.280000000000001}, "target_dir": {"y": 61.43270307540661, "x": 58.53903526067734}, "position": {"y": 5438079.787487522, "x": 322859.0943908694, "alt": 98.376, "zone": 19.0}, "altitude": 98.376, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 58.96223068237305, "speed": 0.17850437760353088}}
{"events_within": [], "attitude": {"yaw": 2.424175500869751, "roll": -0.0017323412466794252, "pitch": -0.0566047839820385}, "target": {"y": 5438009.695563213, "x": 322930.4973270672, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912498, "velocity": {"y": -16.91, "x": 14.41}, "target_dir": {"y": 61.43270307540661, "x": 58.53903526067734}, "position": {"y": 5438068.711324093, "x": 322869.131416712, "alt": 98.483, "zone": 19.0}, "altitude": 98.483, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 81.10831451416016, "speed": 0.1904870718717575}}
{"events_within": [], "attitude": {"yaw": 2.4110107421875, "roll": -0.06797230988740921, "pitch": -0.054413143545389175}, "target": {"y": 5438009.695563213, "x": 322930.4973270672, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912498, "velocity": {"y": -16.5, "x": 14.9}, "target_dir": {"y": 61.43270307540661, "x": 58.53903526067734}, "position": {"y": 5438056.827118879, "x": 322880.20343667734, "alt": 98.60300000000001, "zone": 19.0}, "altitude": 98.60300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 97.81317901611328, "speed": 0.225732684135437}}
{"events_within": [], "attitude": {"yaw": 2.388944625854492, "roll": -0.07349663972854614, "pitch": -0.05885682627558708}, "target": {"y": 5438009.695563213, "x": 322930.4973270672, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912498, "velocity": {"y": -16.31, "x": 15.21}, "target_dir": {"y": 61.43270307540661, "x": 58.53903526067734}, "position": {"y": 5438044.833399851, "x": 322891.79836695147, "alt": 98.68, "zone": 19.0}, "altitude": 98.68, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 107.46710205078125, "speed": 0.26664018630981445}}
{"events_within": [], "attitude": {"yaw": 2.370333671569824, "roll": -0.07475923001766205, "pitch": -0.056990109384059906}, "target": {"y": 5438009.695563213, "x": 322930.4973270672, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912498, "velocity": {"y": -16.080000000000002, "x": 15.46}, "target_dir": {"y": 61.43270307540661, "x": 58.53903526067734}, "position": {"y": 5438033.2831455795, "x": 322903.35731533845, "alt": 98.77, "zone": 19.0}, "altitude": 98.77, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 114.21943664550781, "speed": 0.31430721282958984}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 2.3550899028778076, "roll": -0.051312658935785294, "pitch": -0.057375505566596985}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912498, "velocity": {"y": -15.860000000000001, "x": 15.71}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438021.633662122, "x": 322915.4053546884, "alt": 98.849, "zone": 19.0}, "altitude": 98.849, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 118.38813018798828, "speed": 0.3589927554130554}}
{"events_within": [], "attitude": {"yaw": 2.3438162803649902, "roll": -0.011871526949107647, "pitch": -0.05331883206963539}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912499, "velocity": {"y": -15.73, "x": 15.81}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438010.402586553, "x": 322927.3005379894, "alt": 98.95100000000001, "zone": 19.0}, "altitude": 98.95100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 120.5027847290039, "speed": 0.38974234461784363}}
{"events_within": [], "attitude": {"yaw": 2.2972631454467773, "roll": -0.45707958936691284, "pitch": -0.019413547590374947}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912499, "velocity": {"y": -13.86, "x": 17.41}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437999.322028097, "x": 322939.90532147593, "alt": 99.11500000000001, "zone": 19.0}, "altitude": 99.11500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 123.65460205078125, "speed": 0.4516455829143524}}
{"events_within": [], "attitude": {"yaw": 2.1950857639312744, "roll": -0.35676759481430054, "pitch": -0.046494245529174805}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912499, "velocity": {"y": -12.72, "x": 18.21}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437989.823572852, "x": 322953.1597729113, "alt": 99.497, "zone": 19.0}, "altitude": 99.497, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 124.50711822509766, "speed": 0.5027243494987488}}
{"events_within": [], "attitude": {"yaw": 2.116518497467041, "roll": -0.275951623916626, "pitch": -0.04229271411895752}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912499, "velocity": {"y": -11.26, "x": 19.02}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437981.196152284, "x": 322967.51752403437, "alt": 99.782, "zone": 19.0}, "altitude": 99.782, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 124.51756286621094, "speed": 0.5332205891609192}}
{"events_within": [], "attitude": {"yaw": 2.0370986461639404, "roll": -0.5054420232772827, "pitch": -0.062014564871788025}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912499, "velocity": {"y": -10.26, "x": 19.51}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437976.089032837, "x": 322977.2499184677, "alt": 99.94500000000001, "zone": 19.0}, "altitude": 99.94500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 124.14847564697266, "speed": 0.5764786005020142}}
{"events_within": [], "attitude": {"yaw": 1.8275976181030273, "roll": -0.570861279964447, "pitch": 0.02782883681356907}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912500, "velocity": {"y": -4.73, "x": 21.81}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437971.0876265485, "x": 322992.71121248044, "alt": 100.26, "zone": 19.0}, "altitude": 100.26, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 122.78987121582031, "speed": 0.6241666674613953}}
{"events_within": [], "attitude": {"yaw": 1.6777164936065674, "roll": -0.5970703959465027, "pitch": -0.009173127822577953}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912500, "velocity": {"y": -1.51, "x": 22.150000000000002}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437969.038260041, "x": 323009.4267144059, "alt": 100.931, "zone": 19.0}, "altitude": 100.931, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 120.60018920898438, "speed": 0.6599205136299133}}
{"events_within": [], "attitude": {"yaw": 1.5330394506454468, "roll": -0.5448062419891357, "pitch": -0.030322536826133728}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912500, "velocity": {"y": 1.56, "x": 22.04}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437969.558490236, "x": 323025.8280987248, "alt": 101.262, "zone": 19.0}, "altitude": 101.262, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 117.24211883544922, "speed": 0.7011325359344482}}
{"events_within": [], "attitude": {"yaw": 1.4435824155807495, "roll": -0.49302050471305847, "pitch": -0.035702209919691086}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912500, "velocity": {"y": 3.5300000000000002, "x": 21.71}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437971.188645172, "x": 323036.69764721347, "alt": 101.38, "zone": 19.0}, "altitude": 101.38, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 115.16172790527344, "speed": 0.7255070209503174}}
{"events_within": [], "attitude": {"yaw": 1.1474130153656006, "roll": -0.7591061592102051, "pitch": 0.0222766250371933}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912500, "velocity": {"y": 10.31, "x": 19.79}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437977.850109681, "x": 323057.59898770356, "alt": 101.33500000000001, "zone": 19.0}, "altitude": 101.33500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 111.83047485351562, "speed": 0.7613351345062256}}
{"events_within": [], "attitude": {"yaw": 1.0014410018920898, "roll": -0.6918953657150269, "pitch": -0.00668014120310545}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912501, "velocity": {"y": 12.76, "x": 18.330000000000002}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437983.920882096, "x": 323066.9761979736, "alt": 101.802, "zone": 19.0}, "altitude": 101.802, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 107.8483657836914, "speed": 0.7951109409332275}}
{"events_within": [], "attitude": {"yaw": 0.8245378136634827, "roll": -0.643855094909668, "pitch": -0.021313728764653206}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912501, "velocity": {"y": 15.74, "x": 15.620000000000001}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5437995.1354839, "x": 323079.57689999894, "alt": 102.135, "zone": 19.0}, "altitude": 102.135, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 103.69023132324219, "speed": 0.8268573880195618}}
{"events_within": [], "attitude": {"yaw": 0.6673644185066223, "roll": -0.5740986466407776, "pitch": -0.04076807573437691}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912501, "velocity": {"y": 17.86, "x": 12.86}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438007.935021981, "x": 323089.7391791988, "alt": 102.22500000000001, "zone": 19.0}, "altitude": 102.22500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 98.87973022460938, "speed": 0.8622077107429504}}
{"events_within": [], "attitude": {"yaw": 0.5303600430488586, "roll": -0.4866386950016022, "pitch": -0.059949539601802826}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912501, "velocity": {"y": 19.3, "x": 10.33}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438022.367867865, "x": 323098.0828413846, "alt": 102.038, "zone": 19.0}, "altitude": 102.038, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.43108367919922, "speed": 0.8956590294837952}}
{"events_within": [], "attitude": {"yaw": 0.28332266211509705, "roll": -0.7495848536491394, "pitch": -0.00015843770233914256}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912501, "velocity": {"y": 21.72, "x": 4.84}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438037.498818825, "x": 323103.60678047384, "alt": 101.624, "zone": 19.0}, "altitude": 101.624, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.01692962646484, "speed": 0.9289405941963196}}
{"events_within": [], "attitude": {"yaw": 0.08396652340888977, "roll": -0.6796796321868896, "pitch": -0.03458752855658531}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912502, "velocity": {"y": 22.29, "x": 0.77}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438054.256236507, "x": 323105.1975413278, "alt": 101.833, "zone": 19.0}, "altitude": 101.833, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 86.0568618774414, "speed": 0.9535398483276367}}
{"events_within": [], "attitude": {"yaw": -0.08621472865343094, "roll": -0.5976258516311646, "pitch": -0.04410460591316223}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912502, "velocity": {"y": 22.04, "x": -2.99}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438070.607960533, "x": 323103.8023056423, "alt": 101.74300000000001, "zone": 19.0}, "altitude": 101.74300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 81.46282196044922, "speed": 0.9772422313690186}}
{"events_within": [], "attitude": {"yaw": -0.2319243997335434, "roll": -0.5055083632469177, "pitch": -0.05964097008109093}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912502, "velocity": {"y": 21.240000000000002, "x": -6.0600000000000005}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438086.840295552, "x": 323099.77495376737, "alt": 101.511, "zone": 19.0}, "altitude": 101.511, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 78.63036346435547, "speed": 0.9891055822372437}}
{"events_within": [], "attitude": {"yaw": -0.3108196258544922, "roll": -0.4356236755847931, "pitch": -0.07084496319293976}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912502, "velocity": {"y": 20.64, "x": -7.65}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438097.12401949, "x": 323095.9841886545, "alt": 101.25, "zone": 19.0}, "altitude": 101.25, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 74.54216766357422, "speed": 1.0047483444213867}}
{"events_within": [], "attitude": {"yaw": -0.4571833312511444, "roll": -0.6086628437042236, "pitch": -0.05218619480729103}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912502, "velocity": {"y": 19.25, "x": -11.03}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438111.624999838, "x": 323088.81832309975, "alt": 100.697, "zone": 19.0}, "altitude": 100.697, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 70.3157958984375, "speed": 1.017533302307129}}
{"events_within": [], "attitude": {"yaw": -0.6065843105316162, "roll": -0.47939375042915344, "pitch": -0.06665027141571045}, "target": {"y": 5438132.597904465, "x": 323047.53702868137, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912503, "velocity": {"y": 17.68, "x": -13.47}, "target_dir": {"y": 117.03970161417965, "x": -122.90234125219285}, "position": {"y": 5438125.207821044, "x": 323079.06485602784, "alt": 100.412, "zone": 19.0}, "altitude": 100.412, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 66.49308776855469, "speed": 1.0216175317764282}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -0.7130566835403442, "roll": -0.37202486395835876, "pitch": -0.07370619475841522}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912503, "velocity": {"y": 16.22, "x": -15.200000000000001}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438137.26048247, "x": 323068.0561366515, "alt": 100.051, "zone": 19.0}, "altitude": 100.051, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 62.669639587402344, "speed": 1.018056869506836}}
{"events_within": [], "attitude": {"yaw": -0.7984291911125183, "roll": -0.2712520956993103, "pitch": -0.08206688612699509}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912503, "velocity": {"y": 15.01, "x": -16.36}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438148.536715779, "x": 323055.72352691635, "alt": 99.655, "zone": 19.0}, "altitude": 99.655, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 59.01502990722656, "speed": 1.011630892753601}}
{"events_within": [], "attitude": {"yaw": -0.9998412728309631, "roll": -0.6514812111854553, "pitch": 0.004066754598170519}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912503, "velocity": {"y": 10.71, "x": -19.91}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438157.844381994, "x": 323042.38127155195, "alt": 99.177, "zone": 19.0}, "altitude": 99.177, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 55.034603118896484, "speed": 0.9993312954902649}}
{"events_within": [], "attitude": {"yaw": -1.231823205947876, "roll": -0.6181889176368713, "pitch": -0.021849069744348526}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912503, "velocity": {"y": 6.32, "x": -21.63}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438165.879816681, "x": 323021.47523212724, "alt": 99.516, "zone": 19.0}, "altitude": 99.516, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 51.30003356933594, "speed": 0.9675691723823547}}
{"events_within": [], "attitude": {"yaw": -1.3847863674163818, "roll": -0.5235589742660522, "pitch": -0.03787911683320999}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912504, "velocity": {"y": 3.09, "x": -22.17}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438168.797241112, "x": 323004.82214224554, "alt": 99.757, "zone": 19.0}, "altitude": 99.757, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 46.08510971069336, "speed": 0.9026585817337036}}
{"events_within": [], "attitude": {"yaw": -1.5146499872207642, "roll": -0.5132262706756592, "pitch": -0.05878925323486328}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912504, "velocity": {"y": 0.38, "x": -22.38}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438169.488556387, "x": 322988.44964541704, "alt": 99.726, "zone": 19.0}, "altitude": 99.726, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 42.43506622314453, "speed": 0.8448162078857422}}
{"events_within": [], "attitude": {"yaw": -1.6449291706085205, "roll": -0.439927875995636, "pitch": -0.05380050092935562}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912504, "velocity": {"y": -2.65, "x": -22.31}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438167.947358785, "x": 322971.63621289266, "alt": 99.565, "zone": 19.0}, "altitude": 99.565, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 39.806480407714844, "speed": 0.8016554117202759}}
{"events_within": [], "attitude": {"yaw": -1.714339017868042, "roll": -0.3992168605327606, "pitch": -0.061036720871925354}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912504, "velocity": {"y": -4.16, "x": -22.05}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438165.883311095, "x": 322960.74334019405, "alt": 99.456, "zone": 19.0}, "altitude": 99.456, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 36.07032775878906, "speed": 0.7353537678718567}}
{"events_within": [], "attitude": {"yaw": -1.805245041847229, "roll": -0.3071720004081726, "pitch": -0.06601332128047943}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912504, "velocity": {"y": -5.96, "x": -21.51}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438161.588660656, "x": 322944.91147328634, "alt": 99.263, "zone": 19.0}, "altitude": 99.263, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 31.671741485595703, "speed": 0.6569169163703918}}
{"events_within": [], "attitude": {"yaw": -1.8717138767242432, "roll": -0.21468676626682281, "pitch": -0.07543623447418213}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912505, "velocity": {"y": -7.26, "x": -21.1}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438156.049700108, "x": 322929.0762655643, "alt": 99.0, "zone": 19.0}, "altitude": 99.0, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 27.288249969482422, "speed": 0.5892794728279114}}
{"events_within": [], "attitude": {"yaw": -1.9102673530578613, "roll": 0.00786875281482935, "pitch": -0.08209425956010818}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912505, "velocity": {"y": -7.46, "x": -21.13}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438150.093394139, "x": 322913.89738452586, "alt": 98.694, "zone": 19.0}, "altitude": 98.694, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 21.90543556213379, "speed": 0.5195930600166321}}
{"events_within": [], "attitude": {"yaw": -1.8884629011154175, "roll": 0.21411408483982086, "pitch": -0.07101888209581375}, "target": {"y": 5438128.230073613, "x": 322867.60747165076, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912505, "velocity": {"y": -7.11, "x": -21.27}, "target_dir": {"y": -179.92955703061307, "x": 4.367830852046609}, "position": {"y": 5438143.946995218, "x": 322898.21124039456, "alt": 98.404, "zone": 19.0}, "altitude": 98.404, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 15.755332946777344, "speed": 0.4609717130661011}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.8489186763763428, "roll": 0.17536620795726776, "pitch": -0.05702955275774002}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912505, "velocity": {"y": -6.24, "x": -21.400000000000002}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438138.637513545, "x": 322882.68102380086, "alt": 98.363, "zone": 19.0}, "altitude": 98.363, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 6.899817943572998, "speed": 0.4062153100967407}}
{"events_within": [], "attitude": {"yaw": -1.8395109176635742, "roll": -0.02626046910881996, "pitch": -0.056041277945041656}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912505, "velocity": {"y": -5.43, "x": -21.59}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438134.003509474, "x": 322866.6057368219, "alt": 98.396, "zone": 19.0}, "altitude": 98.396, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -0.11888797581195831, "speed": 0.379093199968338}}
{"events_within": [], "attitude": {"yaw": -1.7896380424499512, "roll": 0.2569355368614197, "pitch": -0.03748789057135582}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912506, "velocity": {"y": -3.93, "x": -21.87}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438129.987431159, "x": 322850.8175637829, "alt": 98.449, "zone": 19.0}, "altitude": 98.449, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -10.722268104553223, "speed": 0.3556576371192932}}
{"events_within": [], "attitude": {"yaw": -1.7182543277740479, "roll": 0.2450459897518158, "pitch": -0.0589313842356205}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912506, "velocity": {"y": -3.0700000000000003, "x": -22.13}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438126.833121974, "x": 322834.37908502214, "alt": 98.521, "zone": 19.0}, "altitude": 98.521, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -24.61882209777832, "speed": 0.3506721556186676}}
{"events_within": [], "attitude": {"yaw": -1.6657440662384033, "roll": 0.17717233300209045, "pitch": -0.052745476365089417}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912506, "velocity": {"y": -2.13, "x": -22.16}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438124.617687287, "x": 322818.17795450496, "alt": 98.636, "zone": 19.0}, "altitude": 98.636, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -34.15857696533203, "speed": 0.3643231987953186}}
{"events_within": [], "attitude": {"yaw": -1.643045425415039, "roll": 0.15160581469535828, "pitch": -0.05591551586985588}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912506, "velocity": {"y": -1.54, "x": -22.25}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438123.4950672705, "x": 322807.178381281, "alt": 98.708, "zone": 19.0}, "altitude": 98.708, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -39.43521499633789, "speed": 0.3783479332923889}}
{"events_within": [], "attitude": {"yaw": -1.5964607000350952, "roll": 0.11484476923942566, "pitch": -0.052477844059467316}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912506, "velocity": {"y": -0.58, "x": -22.240000000000002}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438122.015022717, "x": 322785.1270803168, "alt": 98.816, "zone": 19.0}, "altitude": 98.816, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -46.247005462646484, "speed": 0.40648648142814636}}
{"events_within": [], "attitude": {"yaw": -1.5696121454238892, "roll": 0.08764592558145523, "pitch": -0.057527393102645874}, "target": {"y": 5438125.315717683, "x": 322747.6544151163, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912507, "velocity": {"y": -0.04, "x": -22.27}, "target_dir": {"y": -119.95305653446121, "x": 2.914355929940939}, "position": {"y": 5438121.429578718, "x": 322768.34927971475, "alt": 98.928, "zone": 19.0}, "altitude": 98.928, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -51.32107925415039, "speed": 0.4379410445690155}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.5532128810882568, "roll": 0.05781962350010872, "pitch": -0.055100198835134506}, "target": {"y": 5438123.857799109, "x": 322687.67788129207, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912507, "velocity": {"y": 0.28, "x": -22.23}, "target_dir": {"y": -59.97653382422868, "x": 1.457918574102223}, "position": {"y": 5438121.1972622, "x": 322753.7615530824, "alt": 99.033, "zone": 19.0}, "altitude": 99.033, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -54.35019302368164, "speed": 0.4622716009616852}}
{"events_within": [], "attitude": {"yaw": -1.5470845699310303, "roll": 0.18107105791568756, "pitch": -0.048114098608493805}, "target": {"y": 5438123.857799109, "x": 322687.67788129207, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912507, "velocity": {"y": 1.48, "x": -22.14}, "target_dir": {"y": -59.97653382422868, "x": 1.457918574102223}, "position": {"y": 5438121.270423079, "x": 322735.2893791744, "alt": 99.153, "zone": 19.0}, "altitude": 99.153, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -59.58271789550781, "speed": 0.5195739269256592}}
{"events_within": [], "attitude": {"yaw": -1.5101135969161987, "roll": 0.06918634474277496, "pitch": -0.05706332251429558}, "target": {"y": 5438123.857799109, "x": 322687.67788129207, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912507, "velocity": {"y": 0.97, "x": -22.17}, "target_dir": {"y": -59.97653382422868, "x": 1.457918574102223}, "position": {"y": 5438121.54066961, "x": 322718.985892422, "alt": 99.3, "zone": 19.0}, "altitude": 99.3, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -62.02531433105469, "speed": 0.5579801201820374}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.5209474563598633, "roll": -0.05527240410447121, "pitch": -0.055497702211141586}, "target": {"y": 5438122.399386793, "x": 322627.701343761, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912507, "velocity": {"y": 0.8300000000000001, "x": -22.17}, "target_dir": {"y": -59.97653753106715, "x": 1.458412315696478}, "position": {"y": 5438121.783282156, "x": 322707.94474712014, "alt": 99.35600000000001, "zone": 19.0}, "altitude": 99.35600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -63.35097885131836, "speed": 0.582031786441803}}
{"events_within": [], "attitude": {"yaw": -1.519830346107483, "roll": 0.08653359115123749, "pitch": -0.05609126389026642}, "target": {"y": 5438122.399386793, "x": 322627.701343761, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912508, "velocity": {"y": 1.24, "x": -22.12}, "target_dir": {"y": -59.97653753106715, "x": 1.458412315696478}, "position": {"y": 5438122.093062879, "x": 322685.9590258751, "alt": 99.45700000000001, "zone": 19.0}, "altitude": 99.45700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -65.69176483154297, "speed": 0.6301707029342651}}
{"events_within": [], "attitude": {"yaw": -1.5148203372955322, "roll": -0.0031358201522380114, "pitch": -0.055276814848184586}, "target": {"y": 5438122.399386793, "x": 322627.701343761, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912508, "velocity": {"y": 0.76, "x": -22.12}, "target_dir": {"y": -59.97653753106715, "x": 1.458412315696478}, "position": {"y": 5438122.3305944735, "x": 322669.2283388199, "alt": 99.572, "zone": 19.0}, "altitude": 99.572, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -67.05069732666016, "speed": 0.6640220880508423}}
{"events_within": [], "attitude": {"yaw": -1.525480031967163, "roll": -0.04486708715558052, "pitch": -0.05650939792394638}, "target": {"y": 5438122.399386793, "x": 322627.701343761, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912508, "velocity": {"y": 0.5700000000000001, "x": -22.13}, "target_dir": {"y": -59.97653753106715, "x": 1.458412315696478}, "position": {"y": 5438122.446076697, "x": 322652.96216612146, "alt": 99.659, "zone": 19.0}, "altitude": 99.659, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -68.44615173339844, "speed": 0.7017386555671692}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -1.5376907587051392, "roll": -0.03492977097630501, "pitch": -0.05701516196131706}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912508, "velocity": {"y": 0.44, "x": -22.12}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438122.407694443, "x": 322635.85215689713, "alt": 99.768, "zone": 19.0}, "altitude": 99.768, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -69.49845886230469, "speed": 0.7325552105903625}}
{"events_within": [], "attitude": {"yaw": -1.5457125902175903, "roll": -0.023175805807113647, "pitch": -0.05702463537454605}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912508, "velocity": {"y": 0.28, "x": -22.09}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438122.244436793, "x": 322620.003956716, "alt": 99.82600000000001, "zone": 19.0}, "altitude": 99.82600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -70.5492172241211, "speed": 0.7653560042381287}}
{"events_within": [], "attitude": {"yaw": -1.5825908184051514, "roll": -0.3646053075790405, "pitch": -0.03473050519824028}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912509, "velocity": {"y": -1.67, "x": -22.01}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438121.445351629, "x": 322598.11231638887, "alt": 99.895, "zone": 19.0}, "altitude": 99.895, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -71.53324127197266, "speed": 0.7983387112617493}}
{"events_within": [], "attitude": {"yaw": -1.6742446422576904, "roll": -0.31384047865867615, "pitch": -0.05233178660273552}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912509, "velocity": {"y": -2.99, "x": -21.93}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438119.376253253, "x": 322581.5552104651, "alt": 100.087, "zone": 19.0}, "altitude": 100.087, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -72.94660949707031, "speed": 0.836970329284668}}
{"events_within": [], "attitude": {"yaw": -1.741683006286621, "roll": -0.26046910881996155, "pitch": -0.05035610869526863}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912509, "velocity": {"y": -4.39, "x": -21.68}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438116.198840369, "x": 322565.5621524339, "alt": 100.177, "zone": 19.0}, "altitude": 100.177, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -74.3208999633789, "speed": 0.8669911623001099}}
{"events_within": [], "attitude": {"yaw": -1.8043460845947266, "roll": -0.22500009834766388, "pitch": -0.05415727570652962}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912509, "velocity": {"y": -5.74, "x": -21.37}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438111.896179241, "x": 322549.4370396041, "alt": 100.21900000000001, "zone": 19.0}, "altitude": 100.21900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -75.50199127197266, "speed": 0.8899776339530945}}
{"events_within": [], "attitude": {"yaw": -1.9028213024139404, "roll": -0.7952787280082703, "pitch": -0.06267417967319489}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912509, "velocity": {"y": -7.98, "x": -20.75}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438108.409089482, "x": 322538.98175438517, "alt": 100.186, "zone": 19.0}, "altitude": 100.186, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -76.35919189453125, "speed": 0.9048017263412476}}
{"events_within": [], "attitude": {"yaw": -2.1235244274139404, "roll": -0.5654993057250977, "pitch": 0.0012233237503096461}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912510, "velocity": {"y": -12.64, "x": -18.61}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438099.997568026, "x": 322524.7441160069, "alt": 100.659, "zone": 19.0}, "altitude": 100.659, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -78.3505630493164, "speed": 0.928862988948822}}
{"events_within": [], "attitude": {"yaw": -2.2667734622955322, "roll": -0.5627100467681885, "pitch": -0.009786596521735191}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912510, "velocity": {"y": -15.200000000000001, "x": -16.35}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438089.149874909, "x": 322511.7406502219, "alt": 101.10600000000001, "zone": 19.0}, "altitude": 101.10600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -80.78833770751953, "speed": 0.9491457939147949}}
{"events_within": [], "attitude": {"yaw": -2.4023725986480713, "roll": -0.5135998129844666, "pitch": -0.02631635032594204}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912510, "velocity": {"y": -17.1, "x": -14.05}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438076.865270875, "x": 322500.8617508623, "alt": 101.417, "zone": 19.0}, "altitude": 101.417, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -83.82115173339844, "speed": 0.9694277048110962}}
{"events_within": [], "attitude": {"yaw": -2.643550395965576, "roll": -0.8672118186950684, "pitch": -0.016460180282592773}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912510, "velocity": {"y": -20.2, "x": -9.41}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438058.270803478, "x": 322489.07071446313, "alt": 101.358, "zone": 19.0}, "altitude": 101.358, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -88.01908111572266, "speed": 0.9946436285972595}}
{"events_within": [], "attitude": {"yaw": -2.893554210662842, "roll": -0.7088354825973511, "pitch": -0.004436066374182701}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912510, "velocity": {"y": -22.13, "x": -4.28}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438041.877199113, "x": 322484.63608563284, "alt": 101.82600000000001, "zone": 19.0}, "altitude": 101.82600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -90.36260223388672, "speed": 1.0050702095031738}}
{"events_within": [], "attitude": {"yaw": -3.0151724815368652, "roll": -0.6753766536712646, "pitch": -0.008670574985444546}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912511, "velocity": {"y": -22.39, "x": -1.47}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438030.718568955, "x": 322483.5062744225, "alt": 102.022, "zone": 19.0}, "altitude": 102.022, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -94.08094787597656, "speed": 1.01670241355896}}
{"events_within": [], "attitude": {"yaw": 3.100346088409424, "roll": -0.6095201373100281, "pitch": -0.02708994597196579}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912511, "velocity": {"y": -22.12, "x": 2.22}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438014.286219228, "x": 322484.3258403108, "alt": 102.18, "zone": 19.0}, "altitude": 102.18, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -98.6939697265625, "speed": 1.027798056602478}}
{"events_within": [], "attitude": {"yaw": 2.9540343284606934, "roll": -0.5208007097244263, "pitch": -0.04752610996365547}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912511, "velocity": {"y": -21.41, "x": 5.34}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437997.884662049, "x": 322487.77965048363, "alt": 102.107, "zone": 19.0}, "altitude": 102.107, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -103.05999755859375, "speed": 1.0378499031066895}}
{"events_within": [], "attitude": {"yaw": 2.634483814239502, "roll": -0.7375228404998779, "pitch": 0.013986902311444283}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912511, "velocity": {"y": -18.8, "x": 12.36}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437977.734133874, "x": 322496.49397297925, "alt": 101.652, "zone": 19.0}, "altitude": 101.652, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -109.27910614013672, "speed": 1.0506900548934937}}
{"events_within": [], "attitude": {"yaw": 2.5005829334259033, "roll": -0.697251558303833, "pitch": -0.021421480923891068}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912511, "velocity": {"y": -17.16, "x": 14.48}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437969.0270769205, "x": 322503.43601701513, "alt": 101.891, "zone": 19.0}, "altitude": 101.891, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -112.31295013427734, "speed": 1.0515111684799194}}
{"events_within": [], "attitude": {"yaw": 2.3286917209625244, "roll": -0.6305966377258301, "pitch": -0.03494739532470703}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912512, "velocity": {"y": -14.35, "x": 17.17}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437957.83445217, "x": 322515.51548872574, "alt": 101.892, "zone": 19.0}, "altitude": 101.892, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -116.61566925048828, "speed": 1.0455728769302368}}
{"events_within": [], "attitude": {"yaw": 2.1316890716552734, "roll": -0.5184867978096008, "pitch": -0.05964593589305878}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912512, "velocity": {"y": -10.72, "x": 19.54}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437946.03922388, "x": 322534.3312904787, "alt": 101.542, "zone": 19.0}, "altitude": 101.542, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -120.50718688964844, "speed": 1.0353472232818604}}
{"events_within": [], "attitude": {"yaw": 1.9800639152526855, "roll": -0.6089534163475037, "pitch": -0.08892282098531723}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912512, "velocity": {"y": -8.25, "x": 20.56}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437939.4484616015, "x": 322549.7224830171, "alt": 101.09400000000001, "zone": 19.0}, "altitude": 101.09400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -124.86444854736328, "speed": 1.0165830850601196}}
{"events_within": [], "attitude": {"yaw": 1.814439058303833, "roll": -0.7582184076309204, "pitch": -0.005057508125901222}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912512, "velocity": {"y": -3.65, "x": 22.330000000000002}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437936.743502522, "x": 322560.45405801636, "alt": 100.624, "zone": 19.0}, "altitude": 100.624, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -128.45315551757812, "speed": 0.9959170818328857}}
{"events_within": [], "attitude": {"yaw": 1.618891716003418, "roll": -0.6600683331489563, "pitch": -0.03106125257909298}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912512, "velocity": {"y": 0.38, "x": 22.68}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437936.160224898, "x": 322577.1172314603, "alt": 100.743, "zone": 19.0}, "altitude": 100.743, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -131.62327575683594, "speed": 0.9548471570014954}}
{"events_within": [], "attitude": {"yaw": 1.45534086227417, "roll": -0.5671334862709045, "pitch": -0.041202303022146225}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912513, "velocity": {"y": 3.98, "x": 22.19}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437938.425839474, "x": 322593.9880189827, "alt": 100.653, "zone": 19.0}, "altitude": 100.653, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -134.36614990234375, "speed": 0.904603123664856}}
{"events_within": [], "attitude": {"yaw": 1.32526433467865, "roll": -0.4677133560180664, "pitch": -0.05800769850611687}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912513, "velocity": {"y": 6.72, "x": 21.34}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437942.9667498935, "x": 322609.86360681907, "alt": 100.455, "zone": 19.0}, "altitude": 100.455, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -136.98316955566406, "speed": 0.8362816572189331}}
{"events_within": [], "attitude": {"yaw": 1.1795676946640015, "roll": -0.6790487766265869, "pitch": -0.09084741771221161}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912513, "velocity": {"y": 9.24, "x": 20.31}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437949.387066554, "x": 322625.36622698593, "alt": 100.04, "zone": 19.0}, "altitude": 100.04, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -139.0359649658203, "speed": 0.7682514786720276}}
{"events_within": [], "attitude": {"yaw": 0.9641798138618469, "roll": -0.5667461156845093, "pitch": -0.015953805297613144}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912513, "velocity": {"y": 14.08, "x": 17.740000000000002}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437958.6274909945, "x": 322638.97930072155, "alt": 99.82300000000001, "zone": 19.0}, "altitude": 99.82300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -140.44821166992188, "speed": 0.6846887469291687}}
{"events_within": [], "attitude": {"yaw": 0.8259654641151428, "roll": -0.5325115919113159, "pitch": -0.041039854288101196}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912513, "velocity": {"y": 16.27, "x": 15.530000000000001}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437970.388181464, "x": 322651.16327942745, "alt": 99.83, "zone": 19.0}, "altitude": 99.83, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -140.58299255371094, "speed": 0.5990351438522339}}
{"events_within": [], "attitude": {"yaw": 0.6894893646240234, "roll": -0.5287979245185852, "pitch": -0.061079204082489014}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912514, "velocity": {"y": 17.94, "x": 13.36}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437983.220628777, "x": 322661.2820600363, "alt": 99.675, "zone": 19.0}, "altitude": 99.675, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -139.3075408935547, "speed": 0.5059534907341003}}
{"events_within": [], "attitude": {"yaw": 0.5792085528373718, "roll": -0.3135784864425659, "pitch": -0.07159272581338882}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912514, "velocity": {"y": 19.240000000000002, "x": 11.48}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5437997.584229648, "x": 322669.9538430646, "alt": 99.412, "zone": 19.0}, "altitude": 99.412, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -136.53501892089844, "speed": 0.42726391553878784}}
{"events_within": [], "attitude": {"yaw": 0.5122195482254028, "roll": -0.24342404305934906, "pitch": -0.06997598707675934}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912514, "velocity": {"y": 19.990000000000002, "x": 9.950000000000001}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438012.192546156, "x": 322677.26864765165, "alt": 98.97500000000001, "zone": 19.0}, "altitude": 98.97500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -130.89297485351562, "speed": 0.34717756509780884}}
{"events_within": [], "attitude": {"yaw": 0.48622262477874756, "roll": 0.074264295399189, "pitch": -0.07161962985992432}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912514, "velocity": {"y": 20.23, "x": 9.26}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438027.517295081, "x": 322683.8947268615, "alt": 98.58500000000001, "zone": 19.0}, "altitude": 98.58500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -124.84464263916016, "speed": 0.2958388328552246}}
{"events_within": [], "attitude": {"yaw": 0.4864666759967804, "roll": 0.08901312947273254, "pitch": -0.07000186294317245}, "target": {"y": 5438063.8623128515, "x": 322689.13651532866, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912514, "velocity": {"y": 19.900000000000002, "x": 9.89}, "target_dir": {"y": 61.43517156766029, "x": 58.537073941901326}, "position": {"y": 5438042.300061555, "x": 322690.61793024675, "alt": 98.285, "zone": 19.0}, "altitude": 98.285, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -112.83941650390625, "speed": 0.23803575336933136}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 0.4984269440174103, "roll": 0.18117055296897888, "pitch": -0.07295537739992142}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912515, "velocity": {"y": 19.73, "x": 10.23}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438047.480630355, "x": 322693.0598502787, "alt": 98.19, "zone": 19.0}, "altitude": 98.19, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -102.54853057861328, "speed": 0.20890237390995026}}
{"events_within": [], "attitude": {"yaw": 0.5486343502998352, "roll": 0.1910964697599411, "pitch": -0.05946534499526024}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912515, "velocity": {"y": 19.16, "x": 11.38}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438066.970240887, "x": 322703.3022975177, "alt": 97.917, "zone": 19.0}, "altitude": 97.917, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -79.8278579711914, "speed": 0.17950385808944702}}
{"events_within": [], "attitude": {"yaw": 0.7052229046821594, "roll": 0.7382394671440125, "pitch": 0.012933487072587013}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912515, "velocity": {"y": 16.46, "x": 15.280000000000001}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438080.609593294, "x": 322712.3443322405, "alt": 97.777, "zone": 19.0}, "altitude": 97.777, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -49.010162353515625, "speed": 0.18466797471046448}}
{"events_within": [], "attitude": {"yaw": 0.9351789951324463, "roll": 0.743668258190155, "pitch": 0.02588759735226631}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912515, "velocity": {"y": 12.75, "x": 18.55}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438092.069884549, "x": 322724.9723131535, "alt": 98.533, "zone": 19.0}, "altitude": 98.533, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -30.425107955932617, "speed": 0.19960148632526398}}
{"events_within": [], "attitude": {"yaw": 1.130397915840149, "roll": 0.7135351896286011, "pitch": 0.015832284465432167}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912515, "velocity": {"y": 8.870000000000001, "x": 20.59}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438100.396063027, "x": 322739.3716527113, "alt": 99.403, "zone": 19.0}, "altitude": 99.403, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -14.016611099243164, "speed": 0.21639899909496307}}
{"events_within": [], "attitude": {"yaw": 1.3639004230499268, "roll": 0.632195770740509, "pitch": -0.007554702460765839}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912516, "velocity": {"y": 3.77, "x": 21.95}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438107.060113215, "x": 322760.80179029854, "alt": 100.304, "zone": 19.0}, "altitude": 100.304, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 3.969728469848633, "speed": 0.23751775920391083}}
{"events_within": [], "attitude": {"yaw": 1.5149974822998047, "roll": 0.5550476312637329, "pitch": -0.03192472085356712}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912516, "velocity": {"y": 0.44, "x": 22.2}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438108.90136169, "x": 322777.5993933064, "alt": 100.638, "zone": 19.0}, "altitude": 100.638, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 12.01351547241211, "speed": 0.24757075309753418}}
{"events_within": [], "attitude": {"yaw": 1.6061943769454956, "roll": 0.4968739449977875, "pitch": -0.0439293272793293}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912516, "velocity": {"y": -1.51, "x": 22.04}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438108.804401228, "x": 322788.69571187865, "alt": 100.70700000000001, "zone": 19.0}, "altitude": 100.70700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 24.01146697998047, "speed": 0.26284027099609375}}
{"events_within": [], "attitude": {"yaw": 1.7163169384002686, "roll": 0.3926311433315277, "pitch": -0.06261927634477615}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912516, "velocity": {"y": -3.79, "x": 21.62}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438107.053926048, "x": 322804.8924586897, "alt": 100.678, "zone": 19.0}, "altitude": 100.678, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 35.93169403076172, "speed": 0.28044024109840393}}
{"events_within": [], "attitude": {"yaw": 1.8267607688903809, "roll": 0.24522238969802856, "pitch": -0.0812869593501091}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912516, "velocity": {"y": -5.94, "x": 21.14}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438102.472648255, "x": 322826.201433241, "alt": 100.342, "zone": 19.0}, "altitude": 100.342, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 45.72404861450195, "speed": 0.3009829521179199}}
{"events_within": [], "attitude": {"yaw": 1.8793402910232544, "roll": 0.1424025297164917, "pitch": -0.08600502461194992}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912517, "velocity": {"y": -6.88, "x": 20.88}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438097.904237317, "x": 322842.0973631408, "alt": 99.979, "zone": 19.0}, "altitude": 99.979, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 57.730716705322266, "speed": 0.3355221748352051}}
{"events_within": [], "attitude": {"yaw": 1.9081331491470337, "roll": 0.06077990308403969, "pitch": -0.08240723609924316}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912517, "velocity": {"y": -7.37, "x": 20.79}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438092.967887844, "x": 322857.48191736185, "alt": 99.60000000000001, "zone": 19.0}, "altitude": 99.60000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 63.17892837524414, "speed": 0.3570343852043152}}
{"events_within": [], "attitude": {"yaw": 1.9168833494186401, "roll": 0.009480713866651058, "pitch": -0.07940223813056946}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912517, "velocity": {"y": -7.44, "x": 20.77}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438089.530636951, "x": 322867.81175999326, "alt": 99.405, "zone": 19.0}, "altitude": 99.405, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 69.87793731689453, "speed": 0.390586793422699}}
{"events_within": [], "attitude": {"yaw": 1.9127448797225952, "roll": -0.0408763587474823, "pitch": -0.07855122536420822}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912517, "velocity": {"y": -7.41, "x": 20.81}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438086.105492483, "x": 322878.1832566811, "alt": 99.214, "zone": 19.0}, "altitude": 99.214, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 73.85047149658203, "speed": 0.4162973165512085}}
{"events_within": [], "attitude": {"yaw": 1.9073350429534912, "roll": -0.11944377422332764, "pitch": -0.07091312855482101}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912517, "velocity": {"y": -6.96, "x": 21.0}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438082.803681223, "x": 322888.6020980163, "alt": 99.068, "zone": 19.0}, "altitude": 99.068, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 75.11327362060547, "speed": 0.4256035089492798}}
{"events_within": [], "attitude": {"yaw": 1.865666151046753, "roll": -0.19860033690929413, "pitch": -0.06464090198278427}, "target": {"y": 5438069.691039533, "x": 322929.04065280594, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912518, "velocity": {"y": -5.91, "x": 21.44}, "target_dir": {"y": 239.9041374772787, "x": -5.828726681880653}, "position": {"y": 5438078.350640516, "x": 322904.67975333263, "alt": 98.893, "zone": 19.0}, "altitude": 98.893, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 80.2593002319336, "speed": 0.4729466438293457}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 1.7981101274490356, "roll": -0.2015804797410965, "pitch": -0.05727069079875946}, "target": {"y": 5438071.146986852, "x": 322989.01667791884, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912518, "velocity": {"y": -4.5200000000000005, "x": 21.79}, "target_dir": {"y": 59.97602511290461, "x": -1.4559473190456629}, "position": {"y": 5438074.032078628, "x": 322924.924820601, "alt": 98.775, "zone": 19.0}, "altitude": 98.775, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 82.39418029785156, "speed": 0.4999537765979767}}
{"events_within": [], "attitude": {"yaw": 1.7736892700195312, "roll": 0.03593367710709572, "pitch": -0.05768264830112457}, "target": {"y": 5438071.146986852, "x": 322989.01667791884, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912518, "velocity": {"y": -4.48, "x": 21.78}, "target_dir": {"y": 59.97602511290461, "x": -1.4559473190456629}, "position": {"y": 5438072.029764864, "x": 322937.1666443683, "alt": 98.77, "zone": 19.0}, "altitude": 98.77, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 85.22671508789062, "speed": 0.549431324005127}}
{"events_within": [], "attitude": {"yaw": 1.7410272359848022, "roll": -0.16137424111366272, "pitch": -0.04035555198788643}, "target": {"y": 5438071.146986852, "x": 322989.01667791884, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912518, "velocity": {"y": -2.75, "x": 22.06}, "target_dir": {"y": 59.97602511290461, "x": -1.4559473190456629}, "position": {"y": 5438069.922874819, "x": 322953.33833384083, "alt": 98.73700000000001, "zone": 19.0}, "altitude": 98.73700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 86.7563705444336, "speed": 0.586635410785675}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 1.6857855319976807, "roll": -0.18916594982147217, "pitch": -0.05224264785647392}, "target": {"y": 5438072.602440432, "x": 323048.9926993317, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912518, "velocity": {"y": -1.87, "x": 22.16}, "target_dir": {"y": 59.976021412876435, "x": -1.455453579314053}, "position": {"y": 5438068.563360728, "x": 322970.0960744909, "alt": 98.765, "zone": 19.0}, "altitude": 98.765, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 87.73190307617188, "speed": 0.6198869943618774}}
{"events_within": [], "attitude": {"yaw": 1.6219648122787476, "roll": -0.2525862753391266, "pitch": -0.05479949340224266}, "target": {"y": 5438072.602440432, "x": 323048.9926993317, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912519, "velocity": {"y": -1.11, "x": 22.2}, "target_dir": {"y": 59.976021412876435, "x": -1.455453579314053}, "position": {"y": 5438067.917317176, "x": 322986.50081924093, "alt": 98.807, "zone": 19.0}, "altitude": 98.807, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 88.46472930908203, "speed": 0.6572009921073914}}
{"events_within": [], "attitude": {"yaw": 1.586560845375061, "roll": -0.04091103374958038, "pitch": -0.0525674931704998}, "target": {"y": 5438072.602440432, "x": 323048.9926993317, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912519, "velocity": {"y": -0.55, "x": 22.19}, "target_dir": {"y": 59.976021412876435, "x": -1.455453579314053}, "position": {"y": 5438068.036779357, "x": 323003.3233499156, "alt": 98.879, "zone": 19.0}, "altitude": 98.879, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 88.84442138671875, "speed": 0.690845787525177}}
{"events_within": [], "attitude": {"yaw": 1.5816186666488647, "roll": -0.03283992037177086, "pitch": -0.050020746886730194}, "target": {"y": 5438072.602440432, "x": 323048.9926993317, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912519, "velocity": {"y": 0.07, "x": 22.16}, "target_dir": {"y": 59.976021412876435, "x": -1.455453579314053}, "position": {"y": 5438068.467383475, "x": 323019.693565603, "alt": 98.937, "zone": 19.0}, "altitude": 98.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.08100128173828, "speed": 0.7253521084785461}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 1.571301817893982, "roll": -0.061485763639211655, "pitch": -0.05103564262390137}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912519, "velocity": {"y": 0.33, "x": 22.16}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438068.8914592555, "x": 323030.76036330056, "alt": 98.992, "zone": 19.0}, "altitude": 98.992, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.18611907958984, "speed": 0.7486367225646973}}
{"events_within": [], "attitude": {"yaw": 1.5599756240844727, "roll": -0.025534579530358315, "pitch": -0.05141603946685791}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912519, "velocity": {"y": 0.53, "x": 22.12}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438069.959572024, "x": 323052.8047043431, "alt": 99.108, "zone": 19.0}, "altitude": 99.108, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.27688598632812, "speed": 0.7924447059631348}}
{"events_within": [], "attitude": {"yaw": 1.5833500623703003, "roll": 0.15788747370243073, "pitch": -0.055423758924007416}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912520, "velocity": {"y": 0.74, "x": 22.13}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438070.944048788, "x": 323069.5726760591, "alt": 99.165, "zone": 19.0}, "altitude": 99.165, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.29039001464844, "speed": 0.8224271535873413}}
{"events_within": [], "attitude": {"yaw": 1.6242969036102295, "roll": 0.213034987449646, "pitch": -0.03152281790971756}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912520, "velocity": {"y": -1.47, "x": 22.080000000000002}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438070.885187779, "x": 323085.9211968073, "alt": 99.33200000000001, "zone": 19.0}, "altitude": 99.33200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.38856506347656, "speed": 0.8523960709571838}}
{"events_within": [], "attitude": {"yaw": 1.6919310092926025, "roll": 0.2832443416118622, "pitch": -0.03771529719233513}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912520, "velocity": {"y": -3.08, "x": 21.93}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438069.701989988, "x": 323102.6326552138, "alt": 99.519, "zone": 19.0}, "altitude": 99.519, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.68461608886719, "speed": 0.8786076307296753}}
{"events_within": [], "attitude": {"yaw": 1.7611730098724365, "roll": 0.271756649017334, "pitch": -0.04485926777124405}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912520, "velocity": {"y": -4.43, "x": 21.72}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438067.384807729, "x": 323118.8513214254, "alt": 99.724, "zone": 19.0}, "altitude": 99.724, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.16319274902344, "speed": 0.9048538208007812}}
{"events_within": [], "attitude": {"yaw": 1.8795711994171143, "roll": 0.6757846474647522, "pitch": -0.06575387716293335}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912520, "velocity": {"y": -6.44, "x": 21.17}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438063.896438107, "x": 323135.3333455688, "alt": 99.857, "zone": 19.0}, "altitude": 99.857, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.72804260253906, "speed": 0.928837776184082}}
{"events_within": [], "attitude": {"yaw": 2.092756986618042, "roll": 0.5581547617912292, "pitch": 0.018006345257163048}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912521, "velocity": {"y": -11.73, "x": 19.07}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438057.228246013, "x": 323150.33160126157, "alt": 100.348, "zone": 19.0}, "altitude": 100.348, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 91.72177124023438, "speed": 0.9528042078018188}}
{"events_within": [], "attitude": {"yaw": 2.1806466579437256, "roll": 0.6285879611968994, "pitch": -0.004120796453207731}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912521, "velocity": {"y": -13.4, "x": 17.79}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438051.292194285, "x": 323159.79033582535, "alt": 100.831, "zone": 19.0}, "altitude": 100.831, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 92.57028198242188, "speed": 0.9667389392852783}}
{"events_within": [], "attitude": {"yaw": 2.3353164196014404, "roll": 0.566786527633667, "pitch": -0.02098456211388111}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912521, "velocity": {"y": -15.84, "x": 15.52}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438040.443457765, "x": 323172.8087637329, "alt": 101.34700000000001, "zone": 19.0}, "altitude": 101.34700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.07188415527344, "speed": 0.9870889782905579}}
{"events_within": [], "attitude": {"yaw": 2.4705796241760254, "roll": 0.505569577217102, "pitch": -0.03446294739842415}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912521, "velocity": {"y": -17.68, "x": 13.21}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438028.255385335, "x": 323183.73653109814, "alt": 101.643, "zone": 19.0}, "altitude": 101.643, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 95.22119140625, "speed": 1.0001071691513062}}
{"events_within": [], "attitude": {"yaw": 2.7197325229644775, "roll": 0.7890085577964783, "pitch": 0.022207047790288925}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912521, "velocity": {"y": -20.75, "x": 8.07}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5438014.063066554, "x": 323192.640113626, "alt": 101.70400000000001, "zone": 19.0}, "altitude": 101.70400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 97.63463592529297, "speed": 1.0246042013168335}}
{"events_within": [], "attitude": {"yaw": 2.9257004261016846, "roll": 0.7153915166854858, "pitch": -0.007828131318092346}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912522, "velocity": {"y": -21.85, "x": 3.91}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437998.337284373, "x": 323197.4018032019, "alt": 102.392, "zone": 19.0}, "altitude": 102.392, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 101.48678588867188, "speed": 1.051824688911438}}
{"events_within": [], "attitude": {"yaw": 3.113974094390869, "roll": 0.6493401527404785, "pitch": -0.024035323411226273}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912522, "velocity": {"y": -22.01, "x": -0.19}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437981.64971176, "x": 323199.1490257153, "alt": 102.797, "zone": 19.0}, "altitude": 102.797, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 104.86408996582031, "speed": 1.0704777240753174}}
{"events_within": [], "attitude": {"yaw": -3.0119621753692627, "roll": 0.5808779001235962, "pitch": -0.04734320193529129}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912522, "velocity": {"y": -21.57, "x": -3.59}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437965.469923817, "x": 323198.01400606683, "alt": 102.901, "zone": 19.0}, "altitude": 102.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 108.55491638183594, "speed": 1.0877593755722046}}
{"events_within": [], "attitude": {"yaw": -2.8726816177368164, "roll": 0.49797606468200684, "pitch": -0.07512447983026505}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912522, "velocity": {"y": -20.900000000000002, "x": -6.390000000000001}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437949.364601897, "x": 323194.4520220503, "alt": 102.676, "zone": 19.0}, "altitude": 102.676, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 111.88028717041016, "speed": 1.102367877960205}}
{"events_within": [], "attitude": {"yaw": -2.6149704456329346, "roll": 0.7576860785484314, "pitch": -0.007411585655063391}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912522, "velocity": {"y": -18.62, "x": -12.13}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437934.506115322, "x": 323188.2500506396, "alt": 102.151, "zone": 19.0}, "altitude": 102.151, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 115.83758544921875, "speed": 1.117336630821228}}
{"events_within": [], "attitude": {"yaw": -2.4109385013580322, "roll": 0.6803840398788452, "pitch": -0.03965515270829201}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912523, "velocity": {"y": -15.98, "x": -15.42}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437921.203246912, "x": 323177.94048698316, "alt": 102.342, "zone": 19.0}, "altitude": 102.342, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 119.3235092163086, "speed": 1.1218690872192383}}
{"events_within": [], "attitude": {"yaw": -2.240971326828003, "roll": 0.5999248027801514, "pitch": -0.05503302067518234}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912523, "velocity": {"y": -13.16, "x": -17.81}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437910.2995589, "x": 323165.78538817534, "alt": 102.27, "zone": 19.0}, "altitude": 102.27, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 123.22879028320312, "speed": 1.118776559829712}}
{"events_within": [], "attitude": {"yaw": -2.0942649841308594, "roll": 0.5040884017944336, "pitch": -0.06886327266693115}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912523, "velocity": {"y": -10.41, "x": -19.37}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437901.205601981, "x": 323151.7570856208, "alt": 102.001, "zone": 19.0}, "altitude": 102.001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 126.89216613769531, "speed": 1.1113221645355225}}
{"events_within": [], "attitude": {"yaw": -1.957507848739624, "roll": 0.5169456601142883, "pitch": -0.10029744356870651}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912523, "velocity": {"y": -8.290000000000001, "x": -20.32}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437894.186651003, "x": 323137.1750015314, "alt": 101.565, "zone": 19.0}, "altitude": 101.565, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 130.88885498046875, "speed": 1.0966110229492188}}
{"events_within": [], "attitude": {"yaw": -1.6982264518737793, "roll": 0.6405982971191406, "pitch": -0.012441465631127357}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912523, "velocity": {"y": -1.9100000000000001, "x": -22.36}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437890.041696525, "x": 323121.0882864975, "alt": 101.075, "zone": 19.0}, "altitude": 101.075, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 134.26931762695312, "speed": 1.0774891376495361}}
{"events_within": [], "attitude": {"yaw": -1.535436987876892, "roll": 0.621525228023529, "pitch": -0.04879903793334961}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912524, "velocity": {"y": 1.54, "x": -22.27}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437889.56527057, "x": 323104.65246280015, "alt": 101.157, "zone": 19.0}, "altitude": 101.157, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 137.38671875, "speed": 1.035649299621582}}
{"events_within": [], "attitude": {"yaw": -1.382171869277954, "roll": 0.5313364863395691, "pitch": -0.0668754056096077}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912524, "velocity": {"y": 4.79, "x": -21.75}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437891.803791946, "x": 323087.9409877831, "alt": 101.018, "zone": 19.0}, "altitude": 101.018, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 140.11477661132812, "speed": 0.9874500632286072}}
{"events_within": [], "attitude": {"yaw": -1.2561147212982178, "roll": 0.43311795592308044, "pitch": -0.07459299266338348}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912524, "velocity": {"y": 7.33, "x": -20.88}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437896.110537803, "x": 323072.2282627791, "alt": 100.70700000000001, "zone": 19.0}, "altitude": 100.70700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 142.02476501464844, "speed": 0.9449641704559326}}
{"events_within": [], "attitude": {"yaw": -1.1109563112258911, "roll": 0.750999391078949, "pitch": -0.09825272113084793}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912524, "velocity": {"y": 10.17, "x": -19.73}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437902.266748703, "x": 323056.73917165963, "alt": 100.233, "zone": 19.0}, "altitude": 100.233, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 145.06277465820312, "speed": 0.8603385090827942}}
{"events_within": [], "attitude": {"yaw": -0.9023044109344482, "roll": 0.5547959804534912, "pitch": -0.04667140170931816}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912524, "velocity": {"y": 14.36, "x": -17.35}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437911.34645778, "x": 323043.15951837203, "alt": 100.086, "zone": 19.0}, "altitude": 100.086, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 146.69107055664062, "speed": 0.7823167443275452}}
{"events_within": [], "attitude": {"yaw": -0.7649703621864319, "roll": 0.5005342960357666, "pitch": -0.05730597674846649}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912525, "velocity": {"y": 16.52, "x": -15.06}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437922.788159333, "x": 323030.7812467057, "alt": 100.017, "zone": 19.0}, "altitude": 100.017, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 147.46788024902344, "speed": 0.6978539824485779}}
{"events_within": [], "attitude": {"yaw": -0.6352823972702026, "roll": 0.5458757877349854, "pitch": -0.06251577287912369}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912525, "velocity": {"y": 18.3, "x": -12.6}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437935.366512685, "x": 323020.38093924813, "alt": 99.857, "zone": 19.0}, "altitude": 99.857, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 147.2974853515625, "speed": 0.599608838558197}}
{"events_within": [], "attitude": {"yaw": -0.5285182595252991, "roll": 0.33478307723999023, "pitch": -0.09050755947828293}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912525, "velocity": {"y": 19.23, "x": -11.1}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437949.333937873, "x": 323011.3734562213, "alt": 99.69200000000001, "zone": 19.0}, "altitude": 99.69200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 146.08656311035156, "speed": 0.5183107256889343}}
{"events_within": [], "attitude": {"yaw": -0.46391695737838745, "roll": 0.21477334201335907, "pitch": -0.09298159927129745}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912525, "velocity": {"y": 20.02, "x": -9.9}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437963.564626611, "x": 323003.60150956246, "alt": 99.242, "zone": 19.0}, "altitude": 99.242, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 143.43759155273438, "speed": 0.43644586205482483}}
{"events_within": [], "attitude": {"yaw": -0.4350576102733612, "roll": -0.1540839821100235, "pitch": -0.08889304846525192}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912525, "velocity": {"y": 20.05, "x": -9.870000000000001}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437978.548730839, "x": 322996.205654695, "alt": 98.804, "zone": 19.0}, "altitude": 98.804, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 140.72354125976562, "speed": 0.3821902871131897}}
{"events_within": [], "attitude": {"yaw": -0.44764477014541626, "roll": -0.059650421142578125, "pitch": -0.08174512535333633}, "target": {"y": 5438011.151514233, "x": 322990.47285827785, "mutex": 1.0, "num_wp": 10.0}, "timestamp": 1601912526, "velocity": {"y": 20.01, "x": -9.94}, "target_dir": {"y": -58.51984105387237, "x": 61.450926198624074}, "position": {"y": 5437988.279451462, "x": 322991.14428410784, "alt": 98.563, "zone": 19.0}, "altitude": 98.563, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 135.04164123535156, "speed": 0.30834871530532837}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -0.47335541248321533, "roll": -0.062160201370716095, "pitch": -0.07123871892690659}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912526, "velocity": {"y": 19.400000000000002, "x": -11.11}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438007.41495357, "x": 322980.4084329059, "alt": 98.235, "zone": 19.0}, "altitude": 98.235, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 122.57418060302734, "speed": 0.21885347366333008}}
{"events_within": [], "attitude": {"yaw": -0.44688737392425537, "roll": 0.22096100449562073, "pitch": -0.035537831485271454}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912526, "velocity": {"y": 20.650000000000002, "x": -8.790000000000001}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438021.8287458625, "x": 322972.8585015096, "alt": 98.104, "zone": 19.0}, "altitude": 98.104, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 114.05442810058594, "speed": 0.18483933806419373}}
{"events_within": [], "attitude": {"yaw": -0.3797091543674469, "roll": 0.2976713478565216, "pitch": -0.06764349341392517}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912526, "velocity": {"y": 20.88, "x": -8.2}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438031.826205896, "x": 322968.26053324563, "alt": 98.148, "zone": 19.0}, "altitude": 98.148, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.18448638916016, "speed": 0.14783811569213867}}
{"events_within": [], "attitude": {"yaw": -0.3222951889038086, "roll": 0.20636314153671265, "pitch": -0.05909942835569382}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912526, "velocity": {"y": 21.25, "x": -7.0200000000000005}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438047.47466668, "x": 322962.1491336016, "alt": 98.168, "zone": 19.0}, "altitude": 98.168, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 62.94160461425781, "speed": 0.14900459349155426}}
{"events_within": [], "attitude": {"yaw": -0.29431405663490295, "roll": -0.09267958253622055, "pitch": -0.06110347807407379}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912527, "velocity": {"y": 21.09, "x": -7.29}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438062.860834375, "x": 322956.6734575002, "alt": 98.23400000000001, "zone": 19.0}, "altitude": 98.23400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 41.74203109741211, "speed": 0.18152010440826416}}
{"events_within": [], "attitude": {"yaw": -0.31864380836486816, "roll": -0.09931111335754395, "pitch": -0.06247438117861748}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912527, "velocity": {"y": 21.080000000000002, "x": -7.42}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438078.539227902, "x": 322950.88017158816, "alt": 98.187, "zone": 19.0}, "altitude": 98.187, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 29.459320068359375, "speed": 0.22317101061344147}}
{"events_within": [], "attitude": {"yaw": -0.35242998600006104, "roll": -0.16308516263961792, "pitch": -0.06298740208148956}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912527, "velocity": {"y": 21.02, "x": -7.82}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438093.7577388, "x": 322944.90501712693, "alt": 98.142, "zone": 19.0}, "altitude": 98.142, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 20.78693962097168, "speed": 0.27434197068214417}}
{"events_within": [], "attitude": {"yaw": -0.4085390269756317, "roll": -0.2504041790962219, "pitch": -0.036995284259319305}, "target": {"y": 5438129.686510969, "x": 322927.5839943623, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912527, "velocity": {"y": 20.26, "x": -9.78}, "target_dir": {"y": -62.88886391551932, "x": -118.53499673586339}, "position": {"y": 5438109.058355043, "x": 322937.7362126879, "alt": 98.197, "zone": 19.0}, "altitude": 98.197, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 15.174857139587402, "speed": 0.32173943519592285}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -0.46946999430656433, "roll": -0.31385377049446106, "pitch": -0.03936971724033356}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912527, "velocity": {"y": 19.55, "x": -10.92}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438120.699773451, "x": 322931.3023906209, "alt": 98.367, "zone": 19.0}, "altitude": 98.367, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 11.233610153198242, "speed": 0.36085477471351624}}
{"events_within": [], "attitude": {"yaw": -0.5830214619636536, "roll": -0.7459843754768372, "pitch": -0.038019001483917236}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912528, "velocity": {"y": 18.12, "x": -13.27}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438132.55244954, "x": 322923.5039455771, "alt": 98.519, "zone": 19.0}, "altitude": 98.519, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 7.414096832275391, "speed": 0.4024590849876404}}
{"events_within": [], "attitude": {"yaw": -0.8187805414199829, "roll": -0.6172727346420288, "pitch": -0.009095663204789162}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912528, "velocity": {"y": 14.530000000000001, "x": -17.330000000000002}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438148.0919708675, "x": 322907.4171332384, "alt": 99.245, "zone": 19.0}, "altitude": 99.245, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 1.9047483205795288, "speed": 0.4514314830303192}}
{"events_within": [], "attitude": {"yaw": -0.9506915807723999, "roll": -0.7475332617759705, "pitch": -0.015694929286837578}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912528, "velocity": {"y": 12.33, "x": -18.990000000000002}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438154.499501606, "x": 322898.1731793446, "alt": 99.499, "zone": 19.0}, "altitude": 99.499, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -1.0669599771499634, "speed": 0.4718146324157715}}
{"events_within": [], "attitude": {"yaw": -1.2805418968200684, "roll": -0.7252966165542603, "pitch": 0.02866685763001442}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912528, "velocity": {"y": 5.16, "x": -22.12}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438162.359641892, "x": 322876.92714865285, "alt": 100.369, "zone": 19.0}, "altitude": 100.369, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -8.146613121032715, "speed": 0.5049028396606445}}
{"events_within": [], "attitude": {"yaw": -1.462626576423645, "roll": -0.6774786114692688, "pitch": 0.006637139245867729}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912528, "velocity": {"y": 1.0, "x": -22.490000000000002}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438164.122809352, "x": 322859.87403264793, "alt": 101.019, "zone": 19.0}, "altitude": 101.019, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -13.841883659362793, "speed": 0.5194503664970398}}
{"events_within": [], "attitude": {"yaw": -1.626530408859253, "roll": -0.6122449040412903, "pitch": -0.014166195876896381}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912529, "velocity": {"y": -2.67, "x": -22.12}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438162.921310667, "x": 322843.33768753556, "alt": 101.325, "zone": 19.0}, "altitude": 101.325, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -20.68023681640625, "speed": 0.53086918592453}}
{"events_within": [], "attitude": {"yaw": -1.768473744392395, "roll": -0.5300853848457336, "pitch": -0.043289728462696075}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912529, "velocity": {"y": -5.71, "x": -21.48}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438159.15513652, "x": 322826.86364830093, "alt": 101.279, "zone": 19.0}, "altitude": 101.279, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -26.833702087402344, "speed": 0.538547158241272}}
{"events_within": [], "attitude": {"yaw": -1.9468988180160522, "roll": -0.6797780394554138, "pitch": -0.02075999602675438}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912529, "velocity": {"y": -9.790000000000001, "x": -20.080000000000002}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438153.17478079, "x": 322811.61827628163, "alt": 100.931, "zone": 19.0}, "altitude": 100.931, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -33.993221282958984, "speed": 0.5456392765045166}}
{"events_within": [], "attitude": {"yaw": -2.1131932735443115, "roll": -0.551949679851532, "pitch": -0.03806985914707184}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912529, "velocity": {"y": -12.72, "x": -18.3}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438144.1406477075, "x": 322797.3366604552, "alt": 100.916, "zone": 19.0}, "altitude": 100.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -40.69017028808594, "speed": 0.5506750345230103}}
{"events_within": [], "attitude": {"yaw": -2.2389419078826904, "roll": -0.45160555839538574, "pitch": -0.05178944766521454}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912529, "velocity": {"y": -14.780000000000001, "x": -16.53}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438133.582426961, "x": 322784.79565414414, "alt": 100.738, "zone": 19.0}, "altitude": 100.738, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -48.296356201171875, "speed": 0.5565986633300781}}
{"events_within": [], "attitude": {"yaw": -2.3070015907287598, "roll": -0.38731712102890015, "pitch": -0.06460747867822647}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912530, "velocity": {"y": -15.82, "x": -15.52}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438125.763150656, "x": 322777.0805578055, "alt": 100.516, "zone": 19.0}, "altitude": 100.516, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -52.46583938598633, "speed": 0.5605769157409668}}
{"events_within": [], "attitude": {"yaw": -2.394150495529175, "roll": -0.28111159801483154, "pitch": -0.07199603319168091}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912530, "velocity": {"y": -16.97, "x": -14.23}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438113.045967883, "x": 322766.2116973474, "alt": 100.025, "zone": 19.0}, "altitude": 100.025, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -59.34312438964844, "speed": 0.5700649619102478}}
{"events_within": [], "attitude": {"yaw": -2.4527812004089355, "roll": -0.18084780871868134, "pitch": -0.075376495718956}, "target": {"y": 5438065.320235134, "x": 322749.1125552539, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912530, "velocity": {"y": -17.66, "x": -13.31}, "target_dir": {"y": -178.47143910842715, "x": 64.36627583485097}, "position": {"y": 5438100.001009466, "x": 322756.4837334342, "alt": 99.569, "zone": 19.0}, "altitude": 99.569, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -66.11677551269531, "speed": 0.5837664604187012}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -2.4915995597839355, "roll": -0.09361664950847626, "pitch": -0.07096296548843384}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912530, "velocity": {"y": -18.06, "x": -12.75}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438086.25201038, "x": 322747.0414533383, "alt": 99.116, "zone": 19.0}, "altitude": 99.116, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -72.25962829589844, "speed": 0.601392924785614}}
{"events_within": [], "attitude": {"yaw": -2.5082764625549316, "roll": -0.004706766456365585, "pitch": -0.07016404718160629}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912530, "velocity": {"y": -18.19, "x": -12.58}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438072.671272721, "x": 322738.1238013134, "alt": 98.798, "zone": 19.0}, "altitude": 98.798, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -78.1184310913086, "speed": 0.6240798234939575}}
{"events_within": [], "attitude": {"yaw": -2.6252543926239014, "roll": -0.5064460039138794, "pitch": 0.017979469150304794}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912531, "velocity": {"y": -20.6, "x": -9.0}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438053.651054085, "x": 322727.08102238405, "alt": 98.467, "zone": 19.0}, "altitude": 98.467, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -82.83565521240234, "speed": 0.6485968828201294}}
{"events_within": [], "attitude": {"yaw": -2.770669460296631, "roll": -0.5701800584793091, "pitch": -0.03247075155377388}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912531, "velocity": {"y": -21.38, "x": -6.9}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438037.789580218, "x": 322721.22313002055, "alt": 98.833, "zone": 19.0}, "altitude": 98.833, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -88.01265716552734, "speed": 0.6737313270568848}}
{"events_within": [], "attitude": {"yaw": -2.8996260166168213, "roll": -0.6662171483039856, "pitch": 0.004147280473262072}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912531, "velocity": {"y": -22.32, "x": -3.75}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438026.877160222, "x": 322718.79465282266, "alt": 98.927, "zone": 19.0}, "altitude": 98.927, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -92.35472869873047, "speed": 0.6938313841819763}}
{"events_within": [], "attitude": {"yaw": -3.0663111209869385, "roll": -0.5797967910766602, "pitch": -0.003531381022185087}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912531, "velocity": {"y": -22.56, "x": -0.22}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438010.345864286, "x": 322717.82866221445, "alt": 99.423, "zone": 19.0}, "altitude": 99.423, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -97.58517456054688, "speed": 0.7109261155128479}}
{"events_within": [], "attitude": {"yaw": 3.0752134323120117, "roll": -0.5150182247161865, "pitch": -0.017992276698350906}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912531, "velocity": {"y": -22.16, "x": 2.88}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437993.509556667, "x": 322719.3959880086, "alt": 99.793, "zone": 19.0}, "altitude": 99.793, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -102.29706573486328, "speed": 0.7241300940513611}}
{"events_within": [], "attitude": {"yaw": 2.959090232849121, "roll": -0.4414987564086914, "pitch": -0.03187297657132149}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912532, "velocity": {"y": -21.55, "x": 5.36}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437977.5223606555, "x": 322722.9902331009, "alt": 99.935, "zone": 19.0}, "altitude": 99.935, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -107.6304702758789, "speed": 0.7358983755111694}}
{"events_within": [], "attitude": {"yaw": 2.805554151535034, "roll": -0.8216100931167603, "pitch": -0.058120839297771454}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912532, "velocity": {"y": -20.63, "x": 8.5}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437961.724954968, "x": 322728.451187069, "alt": 99.805, "zone": 19.0}, "altitude": 99.805, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -111.87785339355469, "speed": 0.7441489100456238}}
{"events_within": [], "attitude": {"yaw": 2.5562894344329834, "roll": -0.6348537802696228, "pitch": 0.0047257086262106895}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912532, "velocity": {"y": -18.12, "x": 13.76}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437947.837005045, "x": 322737.5160616222, "alt": 100.038, "zone": 19.0}, "altitude": 100.038, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -114.74478912353516, "speed": 0.7464991211891174}}
{"events_within": [], "attitude": {"yaw": 2.4524893760681152, "roll": -0.6367295384407043, "pitch": -0.0007052406435832381}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912532, "velocity": {"y": -16.38, "x": 15.64}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437939.444983572, "x": 322745.0878798665, "alt": 100.265, "zone": 19.0}, "altitude": 100.265, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -119.41082763671875, "speed": 0.7398526072502136}}
{"events_within": [], "attitude": {"yaw": 2.3000142574310303, "roll": -0.5619397163391113, "pitch": -0.021991685032844543}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912532, "velocity": {"y": -13.76, "x": 17.79}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437928.476273176, "x": 322758.16845382575, "alt": 100.479, "zone": 19.0}, "altitude": 100.479, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -123.92311096191406, "speed": 0.7276915907859802}}
{"events_within": [], "attitude": {"yaw": 2.1698341369628906, "roll": -0.47534796595573425, "pitch": -0.03498823195695877}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912533, "velocity": {"y": -11.27, "x": 19.23}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437919.7298523635, "x": 322772.1851881832, "alt": 100.471, "zone": 19.0}, "altitude": 100.471, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -129.18260192871094, "speed": 0.7074167132377625}}
{"events_within": [], "attitude": {"yaw": 2.006117105484009, "roll": -0.7855709195137024, "pitch": -0.03232492879033089}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912533, "velocity": {"y": -7.8, "x": 21.0}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437912.692465374, "x": 322787.5030097485, "alt": 100.248, "zone": 19.0}, "altitude": 100.248, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -133.7394256591797, "speed": 0.6890071630477905}}
{"events_within": [], "attitude": {"yaw": 1.8040090799331665, "roll": -0.6094719767570496, "pitch": -0.018446652218699455}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912533, "velocity": {"y": -3.64, "x": 22.37}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437909.187837558, "x": 322803.74194878555, "alt": 100.397, "zone": 19.0}, "altitude": 100.397, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -138.9191436767578, "speed": 0.6593372225761414}}
{"events_within": [], "attitude": {"yaw": 1.7076044082641602, "roll": -0.5724411010742188, "pitch": -0.020831890404224396}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912533, "velocity": {"y": -1.34, "x": 22.55}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437908.2717195125, "x": 322814.95856239495, "alt": 100.415, "zone": 19.0}, "altitude": 100.415, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -142.25669860839844, "speed": 0.6353923678398132}}
{"events_within": [], "attitude": {"yaw": 1.5436702966690063, "roll": -0.6216270923614502, "pitch": -0.01778939925134182}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912533, "velocity": {"y": 2.46, "x": 22.3}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437909.095925734, "x": 322831.9650309519, "alt": 100.416, "zone": 19.0}, "altitude": 100.416, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -147.63507080078125, "speed": 0.5962693095207214}}
{"events_within": [], "attitude": {"yaw": 1.4036487340927124, "roll": -0.5095638632774353, "pitch": -0.03825058788061142}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912534, "velocity": {"y": 5.32, "x": 21.7}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437912.497257719, "x": 322848.05295691954, "alt": 100.447, "zone": 19.0}, "altitude": 100.447, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -153.73898315429688, "speed": 0.5480251312255859}}
{"events_within": [], "attitude": {"yaw": 1.2858617305755615, "roll": -0.41144198179244995, "pitch": -0.048639506101608276}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912534, "velocity": {"y": 7.72, "x": 20.81}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437917.949225739, "x": 322863.95682063815, "alt": 100.262, "zone": 19.0}, "altitude": 100.262, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -159.88653564453125, "speed": 0.5016704797744751}}
{"events_within": [], "attitude": {"yaw": 1.197483777999878, "roll": -0.31943392753601074, "pitch": -0.06542687118053436}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912534, "velocity": {"y": 9.4, "x": 20.080000000000002}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437924.69707807, "x": 322878.7886757136, "alt": 99.917, "zone": 19.0}, "altitude": 99.917, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -164.02110290527344, "speed": 0.4721629023551941}}
{"events_within": [], "attitude": {"yaw": 1.1270171403884888, "roll": -0.22014978528022766, "pitch": -0.0631067082285881}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912534, "velocity": {"y": 10.64, "x": 19.400000000000002}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437932.695389234, "x": 322893.4223564097, "alt": 99.493, "zone": 19.0}, "altitude": 99.493, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -174.23500061035156, "speed": 0.41208869218826294}}
{"events_within": [], "attitude": {"yaw": 1.0799068212509155, "roll": -0.1308474987745285, "pitch": -0.06504467129707336}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912534, "velocity": {"y": 11.34, "x": 18.900000000000002}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437941.174334679, "x": 322907.2639773702, "alt": 99.156, "zone": 19.0}, "altitude": 99.156, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 179.44406127929688, "speed": 0.3840082585811615}}
{"events_within": [], "attitude": {"yaw": 1.0611779689788818, "roll": -0.08391931653022766, "pitch": -0.06653066724538803}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912535, "velocity": {"y": 11.66, "x": 18.75}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437947.1524144765, "x": 322916.4754475254, "alt": 98.916, "zone": 19.0}, "altitude": 98.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 169.79855346679688, "speed": 0.35224834084510803}}
{"events_within": [], "attitude": {"yaw": 1.0448824167251587, "roll": -0.021053427830338478, "pitch": -0.06118509918451309}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912535, "velocity": {"y": 11.82, "x": 18.67}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437956.365697135, "x": 322930.3664234091, "alt": 98.60900000000001, "zone": 19.0}, "altitude": 98.60900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 159.0156707763672, "speed": 0.3313803970813751}}
{"events_within": [], "attitude": {"yaw": 1.042131781578064, "roll": 0.028011379763484, "pitch": -0.05798153206706047}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912535, "velocity": {"y": 11.8, "x": 18.740000000000002}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437965.392763019, "x": 322943.9095059929, "alt": 98.436, "zone": 19.0}, "altitude": 98.436, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 147.44140625, "speed": 0.3228157162666321}}
{"events_within": [], "attitude": {"yaw": 1.0490771532058716, "roll": 0.05790179595351219, "pitch": -0.05145828425884247}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912535, "velocity": {"y": 11.6, "x": 18.87}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437974.609655783, "x": 322957.95151049667, "alt": 98.308, "zone": 19.0}, "altitude": 98.308, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 137.06216430664062, "speed": 0.32660847902297974}}
{"events_within": [], "attitude": {"yaw": 1.061719298362732, "roll": 0.07309436798095703, "pitch": -0.0501282773911953}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912535, "velocity": {"y": 11.34, "x": 19.1}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437983.375708897, "x": 322971.7275688804, "alt": 98.291, "zone": 19.0}, "altitude": 98.291, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 127.46841430664062, "speed": 0.3408200144767761}}
{"events_within": [], "attitude": {"yaw": 1.0961307287216187, "roll": 0.29315853118896484, "pitch": -0.04038248583674431}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912536, "velocity": {"y": 10.26, "x": 19.64}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437992.0574884415, "x": 322986.15186158766, "alt": 98.383, "zone": 19.0}, "altitude": 98.383, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 119.29739379882812, "speed": 0.36313772201538086}}
{"events_within": [], "attitude": {"yaw": 1.1562912464141846, "roll": 0.231161966919899, "pitch": -0.038455769419670105}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912536, "velocity": {"y": 9.22, "x": 20.05}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5437999.630430238, "x": 323000.6618405519, "alt": 98.629, "zone": 19.0}, "altitude": 98.629, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 111.66053009033203, "speed": 0.3995133340358734}}
{"events_within": [], "attitude": {"yaw": 1.226425290107727, "roll": 0.3914794325828552, "pitch": -0.03659331798553467}, "target": {"y": 5438012.606971514, "x": 323050.4483857891, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912536, "velocity": {"y": 7.6000000000000005, "x": 20.6}, "target_dir": {"y": 301.3358305352158, "x": 52.71326361969113}, "position": {"y": 5438006.476379211, "x": 323015.8859988038, "alt": 98.921, "zone": 19.0}, "altitude": 98.921, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 106.52159881591797, "speed": 0.43759435415267944}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": 1.3075975179672241, "roll": 0.3166970908641815, "pitch": -0.03955495357513428}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912536, "velocity": {"y": 5.87, "x": 21.25}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438011.748410507, "x": 323031.25746798195, "alt": 99.267, "zone": 19.0}, "altitude": 99.267, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 103.3471908569336, "speed": 0.47414663434028625}}
{"events_within": [], "attitude": {"yaw": 1.3819935321807861, "roll": 0.30017000436782837, "pitch": -0.04065195098519325}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912536, "velocity": {"y": 4.15, "x": 21.740000000000002}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438015.929507851, "x": 323047.4526361048, "alt": 99.47, "zone": 19.0}, "altitude": 99.47, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 101.74280548095703, "speed": 0.4998916983604431}}
{"events_within": [], "attitude": {"yaw": 1.4250725507736206, "roll": -0.27643144130706787, "pitch": -0.04582427069544792}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912537, "velocity": {"y": 4.47, "x": 21.54}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438019.094966449, "x": 323063.45427751134, "alt": 99.768, "zone": 19.0}, "altitude": 99.768, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 99.62630462646484, "speed": 0.5533953309059143}}
{"events_within": [], "attitude": {"yaw": 1.3807339668273926, "roll": -0.1539756804704666, "pitch": -0.05651286989450455}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912537, "velocity": {"y": 4.64, "x": 21.42}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438022.800015301, "x": 323079.719765267, "alt": 99.96300000000001, "zone": 19.0}, "altitude": 99.96300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 98.66270446777344, "speed": 0.5807363390922546}}
{"events_within": [], "attitude": {"yaw": 1.3567345142364502, "roll": -0.10942091792821884, "pitch": -0.058897942304611206}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912537, "velocity": {"y": 5.29, "x": 21.28}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438026.877130318, "x": 323095.29651550297, "alt": 100.058, "zone": 19.0}, "altitude": 100.058, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 97.45610046386719, "speed": 0.6176860332489014}}
{"events_within": [], "attitude": {"yaw": 1.2789593935012817, "roll": -0.6944292187690735, "pitch": -0.07358235865831375}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912537, "velocity": {"y": 6.95, "x": 20.86}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438029.98573611, "x": 323105.752670964, "alt": 100.053, "zone": 19.0}, "altitude": 100.053, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 96.13068389892578, "speed": 0.6589123010635376}}
{"events_within": [], "attitude": {"yaw": 1.0767464637756348, "roll": -0.5262659788131714, "pitch": -0.0031214829068630934}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912537, "velocity": {"y": 11.67, "x": 19.080000000000002}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438037.820906189, "x": 323120.5501823016, "alt": 100.46000000000001, "zone": 19.0}, "altitude": 100.46000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.81639862060547, "speed": 0.6879681348800659}}
{"events_within": [], "attitude": {"yaw": 0.9397170543670654, "roll": -0.5562304258346558, "pitch": -0.007691959850490093}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912538, "velocity": {"y": 14.32, "x": 17.1}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438047.657584531, "x": 323133.5956690291, "alt": 100.795, "zone": 19.0}, "altitude": 100.795, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 93.45722961425781, "speed": 0.7076007723808289}}
{"events_within": [], "attitude": {"yaw": 0.7966930270195007, "roll": -0.512477457523346, "pitch": -0.022674255073070526}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912538, "velocity": {"y": 16.44, "x": 14.85}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438059.6829764135, "x": 323145.2790069197, "alt": 101.06700000000001, "zone": 19.0}, "altitude": 101.06700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.3035888671875, "speed": 0.7440739870071411}}
{"events_within": [], "attitude": {"yaw": 0.6187590956687927, "roll": -0.8709914088249207, "pitch": -0.03326521813869476}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912538, "velocity": {"y": 18.900000000000002, "x": 11.76}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438072.836793343, "x": 323154.9377900023, "alt": 101.011, "zone": 19.0}, "altitude": 101.011, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 87.35523223876953, "speed": 0.7700943946838379}}
{"events_within": [], "attitude": {"yaw": 0.3408369719982147, "roll": -0.7097251415252686, "pitch": 0.022129161283373833}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912538, "velocity": {"y": 21.650000000000002, "x": 6.01}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438088.723345962, "x": 323160.9302893666, "alt": 101.395, "zone": 19.0}, "altitude": 101.395, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 84.77837371826172, "speed": 0.7857828736305237}}
{"events_within": [], "attitude": {"yaw": 0.16264387965202332, "roll": -0.6668340563774109, "pitch": 0.004983668681234121}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912538, "velocity": {"y": 22.16, "x": 1.9100000000000001}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438105.0121721225, "x": 323163.35495603416, "alt": 101.83, "zone": 19.0}, "altitude": 101.83, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 79.48464965820312, "speed": 0.8059265613555908}}
{"events_within": [], "attitude": {"yaw": -0.001564344740472734, "roll": -0.6157956123352051, "pitch": -0.023231761530041695}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912539, "velocity": {"y": 22.19, "x": -1.72}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438121.841670283, "x": 323162.8797538418, "alt": 101.918, "zone": 19.0}, "altitude": 101.918, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 75.76901245117188, "speed": 0.8157733678817749}}
{"events_within": [], "attitude": {"yaw": -0.1458839774131775, "roll": -0.5360350608825684, "pitch": -0.03909147530794144}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912539, "velocity": {"y": 21.650000000000002, "x": -4.87}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438137.910713992, "x": 323159.9054511933, "alt": 101.72200000000001, "zone": 19.0}, "altitude": 101.72200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 71.01294708251953, "speed": 0.824089765548706}}
{"events_within": [], "attitude": {"yaw": -0.40434303879737854, "roll": -0.8032932281494141, "pitch": 0.01831604167819023}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912539, "velocity": {"y": 19.81, "x": -10.75}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438153.6306140395, "x": 323153.985683796, "alt": 101.333, "zone": 19.0}, "altitude": 101.333, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 67.97538757324219, "speed": 0.8280748724937439}}
{"events_within": [], "attitude": {"yaw": -0.5675196051597595, "roll": -0.7099134922027588, "pitch": 0.008457708172500134}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912539, "velocity": {"y": 17.990000000000002, "x": -13.58}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438162.873500473, "x": 323147.58517419314, "alt": 101.633, "zone": 19.0}, "altitude": 101.633, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 62.98609924316406, "speed": 0.830056369304657}}
{"events_within": [], "attitude": {"yaw": -0.7413542866706848, "roll": -0.6573336720466614, "pitch": -0.014114884659647942}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912539, "velocity": {"y": 15.23, "x": -16.35}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438174.762084692, "x": 323136.2196539362, "alt": 101.898, "zone": 19.0}, "altitude": 101.898, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 57.47615432739258, "speed": 0.824338972568512}}
{"events_within": [], "attitude": {"yaw": -0.9517344236373901, "roll": -0.5551663637161255, "pitch": -0.04277355968952179}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912540, "velocity": {"y": 11.44, "x": -18.93}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438187.443543682, "x": 323118.15494668426, "alt": 101.78, "zone": 19.0}, "altitude": 101.78, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 52.284278869628906, "speed": 0.8159980773925781}}
{"events_within": [], "attitude": {"yaw": -1.0409846305847168, "roll": -0.4879138767719269, "pitch": -0.052350688725709915}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912540, "velocity": {"y": 9.71, "x": -19.76}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438192.382896452, "x": 323108.3677222383, "alt": 101.569, "zone": 19.0}, "altitude": 101.569, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 46.69458770751953, "speed": 0.8030107617378235}}
{"events_within": [], "attitude": {"yaw": -1.2256007194519043, "roll": -0.8622019290924072, "pitch": -0.05195259302854538}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912540, "velocity": {"y": 5.8500000000000005, "x": -21.38}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438198.139313094, "x": 323092.8793656655, "alt": 101.018, "zone": 19.0}, "altitude": 101.018, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 42.094764709472656, "speed": 0.792361319065094}}
{"events_within": [], "attitude": {"yaw": -1.4734597206115723, "roll": -0.6712165474891663, "pitch": -0.021042324602603912}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912540, "velocity": {"y": 0.6, "x": -22.62}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438199.673383695, "x": 323076.4360323695, "alt": 101.008, "zone": 19.0}, "altitude": 101.008, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 37.14375686645508, "speed": 0.7697495818138123}}
{"events_within": [], "attitude": {"yaw": -1.643563985824585, "roll": -0.5980633497238159, "pitch": -0.03054397739470005}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912540, "velocity": {"y": -3.23, "x": -22.19}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438198.1305604195, "x": 323059.547040176, "alt": 100.96900000000001, "zone": 19.0}, "altitude": 100.96900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 32.81298065185547, "speed": 0.7394974231719971}}
{"events_within": [], "attitude": {"yaw": -1.784898042678833, "roll": -0.5102957487106323, "pitch": -0.04595262557268143}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 5.0}, "timestamp": 1601912541, "velocity": {"y": -6.21, "x": -21.35}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438194.10115996, "x": 323043.64988221636, "alt": 100.79, "zone": 19.0}, "altitude": 100.79, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 28.36837387084961, "speed": 0.6978479623794556}}
{"events_within": [], "attitude": {"yaw": -1.9031939506530762, "roll": -0.4079379737377167, "pitch": -0.0641094371676445}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 6.0}, "timestamp": 1601912541, "velocity": {"y": -8.49, "x": -20.400000000000002}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438187.99059239, "x": 323028.0549951329, "alt": 100.429, "zone": 19.0}, "altitude": 100.429, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 24.235212326049805, "speed": 0.6560362577438354}}
{"events_within": [], "attitude": {"yaw": -2.064230442047119, "roll": -0.5985396504402161, "pitch": -0.03003605827689171}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 8.0}, "timestamp": 1601912541, "velocity": {"y": -10.72, "x": -19.42}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438183.031955488, "x": 323018.2729162505, "alt": 100.035, "zone": 19.0}, "altitude": 100.035, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 21.09951400756836, "speed": 0.622473955154419}}
{"events_within": [], "attitude": {"yaw": -2.206329822540283, "roll": -0.4379201829433441, "pitch": -0.05049743875861168}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912541, "velocity": {"y": -14.41, "x": -17.12}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438169.740311124, "x": 323000.65368060954, "alt": 99.72800000000001, "zone": 19.0}, "altitude": 99.72800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 15.962264060974121, "speed": 0.5539457201957703}}
{"events_within": [], "attitude": {"yaw": -2.304072856903076, "roll": -0.3489260971546173, "pitch": -0.06260519474744797}, "target": {"y": 5438131.142454586, "x": 322987.5605133721, "mutex": 1.0, "num_wp": 9.0}, "timestamp": 1601912541, "velocity": {"y": -15.860000000000001, "x": -15.68}, "target_dir": {"y": -62.88787241699174, "x": -118.53548307158053}, "position": {"y": 5438158.247802908, "x": 322988.96582994994, "alt": 99.364, "zone": 19.0}, "altitude": 99.364, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 12.215825080871582, "speed": 0.4942406117916107}}
{"events_within": ["arrived", "remove_next", "has_next", "yes_next", "go_next", "sort_locations"], "attitude": {"yaw": -2.358891248703003, "roll": -0.2793632447719574, "pitch": -0.06222286820411682}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 0.0}, "timestamp": 1601912542, "velocity": {"y": -16.59, "x": -14.790000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438149.994835673, "x": 322981.68062247237, "alt": 99.10900000000001, "zone": 19.0}, "altitude": 99.10900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 9.374788284301758, "speed": 0.4518486559391022}}
{"events_within": [], "attitude": {"yaw": -2.4131524562835693, "roll": -0.1477629542350769, "pitch": -0.06877762824296951}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912542, "velocity": {"y": -17.31, "x": -13.89}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438136.900382248, "x": 322971.2737069469, "alt": 98.724, "zone": 19.0}, "altitude": 98.724, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 5.353422164916992, "speed": 0.3962075710296631}}
{"events_within": [], "attitude": {"yaw": -2.3037843704223633, "roll": 0.27334582805633545, "pitch": -0.041426341980695724}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912542, "velocity": {"y": -15.11, "x": -16.34}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438120.448691496, "x": 322956.65172454657, "alt": 98.4, "zone": 19.0}, "altitude": 98.4, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -1.9009953737258911, "speed": 0.3271370828151703}}
{"events_within": [], "attitude": {"yaw": -2.221770763397217, "roll": 0.35495924949645996, "pitch": -0.0355832576751709}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912542, "velocity": {"y": -13.32, "x": -17.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438109.608605157, "x": 322944.3859337, "alt": 98.301, "zone": 19.0}, "altitude": 98.301, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -10.957108497619629, "speed": 0.28790849447250366}}
{"events_within": [], "attitude": {"yaw": -2.1296844482421875, "roll": 0.3503066599369049, "pitch": -0.038120243698358536}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912542, "velocity": {"y": -11.68, "x": -18.830000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438099.723006048, "x": 322930.7123615366, "alt": 98.357, "zone": 19.0}, "altitude": 98.357, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -21.518733978271484, "speed": 0.2666211724281311}}
{"events_within": [], "attitude": {"yaw": -2.0486674308776855, "roll": 0.30562570691108704, "pitch": -0.044153500348329544}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912543, "velocity": {"y": -10.21, "x": -19.650000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438091.293112542, "x": 322916.60067430534, "alt": 98.48400000000001, "zone": 19.0}, "altitude": 98.48400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -34.43912124633789, "speed": 0.26210087537765503}}
{"events_within": [], "attitude": {"yaw": -1.975955843925476, "roll": 0.2604214549064636, "pitch": -0.047858353704214096}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912543, "velocity": {"y": -8.81, "x": -20.29}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438083.774198383, "x": 322901.57736995, "alt": 98.616, "zone": 19.0}, "altitude": 98.616, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -44.979530334472656, "speed": 0.2734197974205017}}
{"events_within": [], "attitude": {"yaw": -1.9367657899856567, "roll": 0.22483354806900024, "pitch": -0.050980668514966965}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 1.0}, "timestamp": 1601912543, "velocity": {"y": -8.02, "x": -20.63}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438079.362760989, "x": 322891.4633329975, "alt": 98.68900000000001, "zone": 19.0}, "altitude": 98.68900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -50.56208801269531, "speed": 0.2864946722984314}}
{"events_within": [], "attitude": {"yaw": -1.880321741104126, "roll": 0.20799802243709564, "pitch": -0.055459294468164444}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912543, "velocity": {"y": -7.11, "x": -21.0}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438073.459641165, "x": 322876.19103955204, "alt": 98.785, "zone": 19.0}, "altitude": 98.785, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -58.46962356567383, "speed": 0.3166472315788269}}
{"events_within": [], "attitude": {"yaw": -1.8229129314422607, "roll": 0.21521393954753876, "pitch": -0.0435059554874897}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 2.0}, "timestamp": 1601912543, "velocity": {"y": -5.54, "x": -21.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438068.373274093, "x": 322860.24437412503, "alt": 98.923, "zone": 19.0}, "altitude": 98.923, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -63.887447357177734, "speed": 0.3503556251525879}}
{"events_within": [], "attitude": {"yaw": -1.7556415796279907, "roll": 0.34846222400665283, "pitch": -0.05243608355522156}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 3.0}, "timestamp": 1601912544, "velocity": {"y": -4.05, "x": -21.73}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438064.3238700405, "x": 322844.457157628, "alt": 99.086, "zone": 19.0}, "altitude": 99.086, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -66.60157775878906, "speed": 0.37592965364456177}}
{"events_within": ["arrived", "remove_next", "has_next", "no_next", "land"], "attitude": {"yaw": -1.6815232038497925, "roll": 0.25937172770500183, "pitch": -0.05003965273499489}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912544, "velocity": {"y": -2.65, "x": -21.990000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438061.403097878, "x": 322828.02994043514, "alt": 99.269, "zone": 19.0}, "altitude": 99.269, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -70.13915252685547, "speed": 0.42700421810150146}}
{"events_within": [], "attitude": {"yaw": -1.7002944946289062, "roll": -0.9712198972702026, "pitch": -0.14608605206012726}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912544, "velocity": {"y": -3.85, "x": -22.75}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438059.2522205785, "x": 322811.7434713999, "alt": 99.35900000000001, "zone": 19.0}, "altitude": 99.35900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -71.82905578613281, "speed": 0.47162750363349915}}
{"events_within": [], "attitude": {"yaw": -2.277740478515625, "roll": -0.9823580384254456, "pitch": 0.04336032643914223}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912544, "velocity": {"y": -18.59, "x": -18.84}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438046.506179667, "x": 322790.99829861114, "alt": 99.775, "zone": 19.0}, "altitude": 99.775, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -76.08614349365234, "speed": 0.5217874050140381}}
{"events_within": [], "attitude": {"yaw": -2.4817099571228027, "roll": -0.9284448027610779, "pitch": 0.05758258327841759}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912544, "velocity": {"y": -22.44, "x": -15.08}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438036.122568926, "x": 322782.90084733884, "alt": 100.618, "zone": 19.0}, "altitude": 100.618, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -79.81725311279297, "speed": 0.5364950299263}}
{"events_within": [], "attitude": {"yaw": -2.7305867671966553, "roll": -0.8874017000198364, "pitch": 0.045384425669908524}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912545, "velocity": {"y": -25.48, "x": -9.02}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438017.54430198, "x": 322774.49905678903, "alt": 101.94, "zone": 19.0}, "altitude": 101.94, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -85.95446014404297, "speed": 0.5510574579238892}}
{"events_within": [], "attitude": {"yaw": -2.994840145111084, "roll": -0.8326396346092224, "pitch": 0.004341688472777605}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912545, "velocity": {"y": -26.93, "x": -1.99}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437990.98573436, "x": 322770.0423289222, "alt": 102.908, "zone": 19.0}, "altitude": 102.908, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -95.94991302490234, "speed": 0.5614085793495178}}
{"events_within": [], "attitude": {"yaw": 3.041905641555786, "roll": -0.7877076268196106, "pitch": 0.03435538709163666}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912545, "velocity": {"y": -24.53, "x": 4.34}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437971.909397542, "x": 322771.77306142135, "alt": 103.558, "zone": 19.0}, "altitude": 103.558, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -101.22850036621094, "speed": 0.5656546354293823}}
{"events_within": [], "attitude": {"yaw": 2.8036348819732666, "roll": -0.944293737411499, "pitch": 0.014822288416326046}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912545, "velocity": {"y": -22.29, "x": 9.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437954.220389357, "x": 322777.56518745876, "alt": 104.023, "zone": 19.0}, "altitude": 104.023, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -110.1920166015625, "speed": 0.5679789185523987}}
{"events_within": [], "attitude": {"yaw": 2.418487310409546, "roll": -1.090618371963501, "pitch": 0.03447984904050827}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912545, "velocity": {"y": -17.59, "x": 17.96}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437939.612883415, "x": 322788.1075806564, "alt": 104.375, "zone": 19.0}, "altitude": 104.375, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -118.3695068359375, "speed": 0.571543276309967}}
{"events_within": [], "attitude": {"yaw": 1.8841849565505981, "roll": -1.1099369525909424, "pitch": 0.09096665680408478}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912546, "velocity": {"y": -6.33, "x": 25.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437930.727598631, "x": 322805.0982939033, "alt": 105.412, "zone": 19.0}, "altitude": 105.412, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -127.97018432617188, "speed": 0.5657677054405212}}
{"events_within": [], "attitude": {"yaw": 1.526965856552124, "roll": -0.845824658870697, "pitch": 0.10532843321561813}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912546, "velocity": {"y": 3.48, "x": 25.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437930.55527444, "x": 322824.067484847, "alt": 107.151, "zone": 19.0}, "altitude": 107.151, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -135.6968231201172, "speed": 0.5426432490348816}}
{"events_within": [], "attitude": {"yaw": 1.4537386894226074, "roll": 0.20705242455005646, "pitch": -0.17011262476444244}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912546, "velocity": {"y": 2.62, "x": 22.580000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437933.801398201, "x": 322841.99698651885, "alt": 107.539, "zone": 19.0}, "altitude": 107.539, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -144.54981994628906, "speed": 0.49070650339126587}}
{"events_within": [], "attitude": {"yaw": 1.4915399551391602, "roll": 0.29411348700523376, "pitch": -0.19733059406280518}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912546, "velocity": {"y": 2.09, "x": 22.17}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437935.580031056, "x": 322853.02229586116, "alt": 106.059, "zone": 19.0}, "altitude": 106.059, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -149.3577117919922, "speed": 0.4673148989677429}}
{"events_within": [], "attitude": {"yaw": 1.5908554792404175, "roll": 0.47856348752975464, "pitch": -0.17875456809997559}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912546, "velocity": {"y": -0.28, "x": 22.650000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437937.045332233, "x": 322869.4426253843, "alt": 103.443, "zone": 19.0}, "altitude": 103.443, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -157.9596710205078, "speed": 0.4416993260383606}}
{"events_within": [], "attitude": {"yaw": 1.7667028903961182, "roll": 0.6283932328224182, "pitch": -0.12677519023418427}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912547, "velocity": {"y": -4.5, "x": 22.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437935.987308582, "x": 322886.71305122215, "alt": 101.05, "zone": 19.0}, "altitude": 101.05, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -166.29910278320312, "speed": 0.4374576210975647}}
{"events_within": [], "attitude": {"yaw": 1.9832278490066528, "roll": 0.7372534871101379, "pitch": -0.07878586649894714}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912547, "velocity": {"y": -9.6, "x": 21.580000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437931.372733319, "x": 322903.45725050464, "alt": 99.46300000000001, "zone": 19.0}, "altitude": 99.46300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -175.52947998046875, "speed": 0.46074312925338745}}
{"events_within": [], "attitude": {"yaw": 2.235865354537964, "roll": 0.8220517635345459, "pitch": -0.041777558624744415}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912547, "velocity": {"y": -15.19, "x": 18.72}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437922.350706043, "x": 322919.4021570586, "alt": 98.624, "zone": 19.0}, "altitude": 98.624, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 178.52731323242188, "speed": 0.4999064803123474}}
{"events_within": [], "attitude": {"yaw": 2.509460210800171, "roll": 0.8749070763587952, "pitch": -0.009708130732178688}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912547, "velocity": {"y": -20.09, "x": 13.94}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437909.508966201, "x": 322932.21740595705, "alt": 98.423, "zone": 19.0}, "altitude": 98.423, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 173.92373657226562, "speed": 0.5622347593307495}}
{"events_within": [], "attitude": {"yaw": 2.7949392795562744, "roll": 0.896452009677887, "pitch": 0.00918321032077074}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912547, "velocity": {"y": -23.41, "x": 7.6000000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437892.9287180975, "x": 322941.12900331954, "alt": 98.763, "zone": 19.0}, "altitude": 98.763, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 171.8718719482422, "speed": 0.6222456097602844}}
{"events_within": [], "attitude": {"yaw": 3.0569522380828857, "roll": 0.8966069221496582, "pitch": 0.007180814165621996}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912548, "velocity": {"y": -24.71, "x": 1.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437874.946469237, "x": 322944.9138166014, "alt": 99.379, "zone": 19.0}, "altitude": 99.379, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 171.30776977539062, "speed": 0.6831351518630981}}
{"events_within": [], "attitude": {"yaw": -2.882039785385132, "roll": 0.8784518837928772, "pitch": -0.0017696742434054613}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912548, "velocity": {"y": -23.63, "x": -7.24}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437850.334570421, "x": 322942.38973389147, "alt": 100.16, "zone": 19.0}, "altitude": 100.16, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 171.67628479003906, "speed": 0.7357593774795532}}
{"events_within": [], "attitude": {"yaw": -2.6414973735809326, "roll": 0.8463518023490906, "pitch": -0.019132401794195175}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912548, "velocity": {"y": -21.1, "x": -12.58}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437833.038134446, "x": 322935.07274624135, "alt": 100.616, "zone": 19.0}, "altitude": 100.616, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 172.9270782470703, "speed": 0.7911584973335266}}
{"events_within": [], "attitude": {"yaw": -2.4172215461730957, "roll": 0.8115126490592957, "pitch": -0.03538278490304947}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912548, "velocity": {"y": -17.7, "x": -16.81}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.425121297, "x": 322924.35083844303, "alt": 100.82600000000001, "zone": 19.0}, "altitude": 100.82600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 174.5131378173828, "speed": 0.8342627286911011}}
{"events_within": [], "attitude": {"yaw": -2.2070693969726562, "roll": 0.7652878165245056, "pitch": -0.054033175110816956}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912548, "velocity": {"y": -13.780000000000001, "x": -20.03}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437806.199826071, "x": 322910.39902642346, "alt": 100.775, "zone": 19.0}, "altitude": 100.775, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 176.843505859375, "speed": 0.8757083415985107}}
{"events_within": [], "attitude": {"yaw": -2.0138862133026123, "roll": 0.7213643789291382, "pitch": -0.07028655707836151}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912549, "velocity": {"y": -9.76, "x": -22.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437797.276791438, "x": 322894.73912303546, "alt": 100.45, "zone": 19.0}, "altitude": 100.45, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 179.0347442626953, "speed": 0.904990017414093}}
{"events_within": [], "attitude": {"yaw": -1.828822135925293, "roll": 0.6858794689178467, "pitch": -0.08005432784557343}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912549, "velocity": {"y": -5.5600000000000005, "x": -23.82}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437791.219960539, "x": 322877.2558313274, "alt": 99.861, "zone": 19.0}, "altitude": 99.861, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -178.1996612548828, "speed": 0.92950439453125}}
{"events_within": [], "attitude": {"yaw": -1.654337763786316, "roll": 0.6447356343269348, "pitch": -0.07975783199071884}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912549, "velocity": {"y": -1.3900000000000001, "x": -24.45}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437788.419431543, "x": 322859.3745916515, "alt": 99.262, "zone": 19.0}, "altitude": 99.262, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -175.18804931640625, "speed": 0.9460260272026062}}
{"events_within": [], "attitude": {"yaw": -1.4869606494903564, "roll": 0.612514317035675, "pitch": -0.07803129404783249}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912549, "velocity": {"y": 2.66, "x": -24.38}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437788.645209779, "x": 322840.7737017409, "alt": 98.688, "zone": 19.0}, "altitude": 98.688, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -170.4464569091797, "speed": 0.9571962356567383}}
{"events_within": [], "attitude": {"yaw": -1.3374402523040771, "roll": 0.5944145917892456, "pitch": -0.08275418728590012}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912549, "velocity": {"y": 6.23, "x": -23.85}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437791.678206295, "x": 322822.9521364421, "alt": 98.20100000000001, "zone": 19.0}, "altitude": 98.20100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -168.07179260253906, "speed": 0.9574198126792908}}
{"events_within": [], "attitude": {"yaw": -1.182496428489685, "roll": 0.5870881676673889, "pitch": -0.07793629169464111}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912550, "velocity": {"y": 9.870000000000001, "x": -22.79}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437797.500902283, "x": 322805.1886385404, "alt": 97.703, "zone": 19.0}, "altitude": 97.703, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -163.89556884765625, "speed": 0.9523410201072693}}
{"events_within": [], "attitude": {"yaw": -1.080605149269104, "roll": 0.5847809910774231, "pitch": -0.07108164578676224}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912550, "velocity": {"y": 12.19, "x": -21.72}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437802.816785117, "x": 322793.99953940226, "alt": 97.459, "zone": 19.0}, "altitude": 97.459, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -159.85072326660156, "speed": 0.9418644309043884}}
{"events_within": [], "attitude": {"yaw": -0.9327457547187805, "roll": 0.5864933729171753, "pitch": -0.06433123350143433}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912550, "velocity": {"y": 15.23, "x": -19.75}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437812.629151504, "x": 322778.5893343856, "alt": 97.24000000000001, "zone": 19.0}, "altitude": 97.24000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -156.86302185058594, "speed": 0.9302741885185242}}
{"events_within": [], "attitude": {"yaw": -0.7806753516197205, "roll": 0.5983811616897583, "pitch": -0.05948663130402565}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912550, "velocity": {"y": 18.080000000000002, "x": -17.240000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437824.981188101, "x": 322764.3760834311, "alt": 97.117, "zone": 19.0}, "altitude": 97.117, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -150.220947265625, "speed": 0.8993809819221497}}
{"events_within": [], "attitude": {"yaw": -0.6282391548156738, "roll": 0.6090778708457947, "pitch": -0.054720960557460785}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912550, "velocity": {"y": 20.580000000000002, "x": -14.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437838.978519084, "x": 322752.49758672266, "alt": 97.11, "zone": 19.0}, "altitude": 97.11, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -146.84457397460938, "speed": 0.8820480108261108}}
{"events_within": [], "attitude": {"yaw": -0.46964946389198303, "roll": 0.6309388875961304, "pitch": -0.049870580434799194}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912551, "velocity": {"y": 22.7, "x": -11.01}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437855.101911956, "x": 322742.62328787113, "alt": 97.181, "zone": 19.0}, "altitude": 97.181, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -141.6876678466797, "speed": 0.8509238958358765}}
{"events_within": [], "attitude": {"yaw": -0.30780377984046936, "roll": 0.6424320340156555, "pitch": -0.04251328110694885}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912551, "velocity": {"y": 24.17, "x": -7.23}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437872.205607653, "x": 322735.60341455985, "alt": 97.34400000000001, "zone": 19.0}, "altitude": 97.34400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -136.2926025390625, "speed": 0.8170714974403381}}
{"events_within": [], "attitude": {"yaw": -0.14074575901031494, "roll": 0.6544771194458008, "pitch": -0.03930389881134033}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912551, "velocity": {"y": 25.060000000000002, "x": -3.12}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437890.743178561, "x": 322731.35982729576, "alt": 97.59100000000001, "zone": 19.0}, "altitude": 97.59100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -128.7548370361328, "speed": 0.766030490398407}}
{"events_within": [], "attitude": {"yaw": 0.025307118892669678, "roll": 0.6686328053474426, "pitch": -0.0373474545776844}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912551, "velocity": {"y": 25.21, "x": 1.05}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437909.2017637, "x": 322730.26498390257, "alt": 97.875, "zone": 19.0}, "altitude": 97.875, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -122.027099609375, "speed": 0.7180352807044983}}
{"events_within": [], "attitude": {"yaw": 0.14023666083812714, "roll": 0.6686275601387024, "pitch": -0.036210574209690094}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912551, "velocity": {"y": 24.900000000000002, "x": 3.95}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437921.658503836, "x": 322731.33001431485, "alt": 98.105, "zone": 19.0}, "altitude": 98.105, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -118.1450424194336, "speed": 0.6893384456634521}}
{"events_within": [], "attitude": {"yaw": 0.3110770881175995, "roll": 0.6797261834144592, "pitch": -0.038736552000045776}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912552, "velocity": {"y": 23.86, "x": 8.15}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437940.192657622, "x": 322735.62914291024, "alt": 98.427, "zone": 19.0}, "altitude": 98.427, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -111.92596435546875, "speed": 0.6438190937042236}}
{"events_within": [], "attitude": {"yaw": 0.4848845601081848, "roll": 0.6853480935096741, "pitch": -0.039744023233652115}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912552, "velocity": {"y": 22.12, "x": 12.16}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437957.20950176, "x": 322742.8602902295, "alt": 98.683, "zone": 19.0}, "altitude": 98.683, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -104.97528076171875, "speed": 0.590847909450531}}
{"events_within": [], "attitude": {"yaw": 0.6637279987335205, "roll": 0.6844773292541504, "pitch": -0.03498953580856323}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912552, "velocity": {"y": 19.5, "x": 15.870000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437973.149152281, "x": 322753.30648161937, "alt": 98.98100000000001, "zone": 19.0}, "altitude": 98.98100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -98.2887191772461, "speed": 0.539423942565918}}
{"events_within": [], "attitude": {"yaw": 0.8332722783088684, "roll": 0.6908988952636719, "pitch": -0.03942015394568443}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912552, "velocity": {"y": 16.5, "x": 18.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437986.587223882, "x": 322765.9533899419, "alt": 99.261, "zone": 19.0}, "altitude": 99.261, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -91.19953155517578, "speed": 0.4819362461566925}}
{"events_within": [], "attitude": {"yaw": 1.011096715927124, "roll": 0.6894211173057556, "pitch": -0.04447044059634209}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912552, "velocity": {"y": 12.89, "x": 21.56}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437997.910355609, "x": 322781.1692421795, "alt": 99.476, "zone": 19.0}, "altitude": 99.476, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -84.2578353881836, "speed": 0.4274873733520508}}
{"events_within": [], "attitude": {"yaw": 1.185676097869873, "roll": 0.6865055561065674, "pitch": -0.0429258830845356}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912553, "velocity": {"y": 8.89, "x": 23.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.177980845, "x": 322797.73491971625, "alt": 99.642, "zone": 19.0}, "altitude": 99.642, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -75.97144317626953, "speed": 0.36201804876327515}}
{"events_within": [], "attitude": {"yaw": 1.3667408227920532, "roll": 0.68711918592453, "pitch": -0.042696017771959305}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912553, "velocity": {"y": 4.51, "x": 24.650000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.495921055, "x": 322815.89119272545, "alt": 99.792, "zone": 19.0}, "altitude": 99.792, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -67.63304138183594, "speed": 0.30012786388397217}}
{"events_within": [], "attitude": {"yaw": 1.5377131700515747, "roll": 0.6858252882957458, "pitch": -0.04754576086997986}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912553, "velocity": {"y": 0.24, "x": 25.0}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.506543196, "x": 322834.1781837556, "alt": 99.916, "zone": 19.0}, "altitude": 99.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -61.491390228271484, "speed": 0.25719350576400757}}
{"events_within": [], "attitude": {"yaw": 1.653257131576538, "roll": 0.6864012479782104, "pitch": -0.049218229949474335}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912553, "velocity": {"y": -2.67, "x": 24.93}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.064618186, "x": 322846.62539952004, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -50.28550338745117, "speed": 0.19388028979301453}}
{"events_within": [], "attitude": {"yaw": 1.8318724632263184, "roll": 0.6877173185348511, "pitch": -0.05113853141665459}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912553, "velocity": {"y": -7.08, "x": 24.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438009.650808698, "x": 322865.2371584971, "alt": 99.964, "zone": 19.0}, "altitude": 99.964, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -35.340152740478516, "speed": 0.13624398410320282}}
{"events_within": [], "attitude": {"yaw": 2.0086781978607178, "roll": 0.6830198168754578, "pitch": -0.04773641377687454}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912554, "velocity": {"y": -11.19, "x": 22.44}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438003.17220476, "x": 322882.53031140607, "alt": 99.967, "zone": 19.0}, "altitude": 99.967, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -4.360728740692139, "speed": 0.08143918961286545}}
{"events_within": [], "attitude": {"yaw": 2.184624433517456, "roll": 0.6787044405937195, "pitch": -0.04933122172951698}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912554, "velocity": {"y": -14.950000000000001, "x": 20.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437993.525328573, "x": 322898.81784569623, "alt": 100.017, "zone": 19.0}, "altitude": 100.017, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 50.61241912841797, "speed": 0.0700790211558342}}
{"events_within": [], "attitude": {"yaw": 2.3578810691833496, "roll": 0.6805698871612549, "pitch": -0.04859618470072746}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912554, "velocity": {"y": -18.22, "x": 17.23}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437981.566808028, "x": 322912.7782399717, "alt": 100.015, "zone": 19.0}, "altitude": 100.015, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 93.97124481201172, "speed": 0.11327169090509415}}
{"events_within": [], "attitude": {"yaw": 2.532670736312866, "roll": 0.6794337034225464, "pitch": -0.05227229744195938}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912554, "velocity": {"y": -20.94, "x": 13.81}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437966.961240575, "x": 322924.7804782437, "alt": 99.998, "zone": 19.0}, "altitude": 99.998, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 111.3465576171875, "speed": 0.16744016110897064}}
{"events_within": [], "attitude": {"yaw": 2.7034568786621094, "roll": 0.6801213622093201, "pitch": -0.0547502301633358}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912554, "velocity": {"y": -23.05, "x": 10.07}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437950.917984618, "x": 322933.84694678243, "alt": 99.909, "zone": 19.0}, "altitude": 99.909, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 122.61788177490234, "speed": 0.22447583079338074}}
{"events_within": [], "attitude": {"yaw": 2.884514570236206, "roll": 0.6799427270889282, "pitch": -0.048930007964372635}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912555, "velocity": {"y": -24.51, "x": 5.75}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437933.063236484, "x": 322940.13778538874, "alt": 99.833, "zone": 19.0}, "altitude": 99.833, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 128.6552276611328, "speed": 0.26566416025161743}}
{"events_within": [], "attitude": {"yaw": 3.0550150871276855, "roll": 0.675057590007782, "pitch": -0.04894094914197922}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912555, "velocity": {"y": -25.080000000000002, "x": 1.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437914.828292283, "x": 322943.12315890205, "alt": 99.84100000000001, "zone": 19.0}, "altitude": 99.84100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 138.58343505859375, "speed": 0.3431255519390106}}
{"events_within": [], "attitude": {"yaw": -3.0527281761169434, "roll": 0.674341082572937, "pitch": -0.049090445041656494}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912555, "velocity": {"y": -24.91, "x": -2.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437895.915428522, "x": 322942.89423601935, "alt": 99.873, "zone": 19.0}, "altitude": 99.873, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 142.7401580810547, "speed": 0.37854018807411194}}
{"events_within": [], "attitude": {"yaw": -2.883676528930664, "roll": 0.6824333071708679, "pitch": -0.0535239577293396}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912555, "velocity": {"y": -24.18, "x": -7.04}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437877.837411836, "x": 322939.531794006, "alt": 99.843, "zone": 19.0}, "altitude": 99.843, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 150.06356811523438, "speed": 0.44349175691604614}}
{"events_within": [], "attitude": {"yaw": -2.7635176181793213, "roll": 0.6835706830024719, "pitch": -0.04797101765871048}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912555, "velocity": {"y": -23.14, "x": -9.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437866.008482657, "x": 322935.49736924935, "alt": 99.818, "zone": 19.0}, "altitude": 99.818, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 153.90260314941406, "speed": 0.4773283898830414}}
{"events_within": [], "attitude": {"yaw": -2.583796501159668, "roll": 0.677735447883606, "pitch": -0.0471213273704052}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912556, "velocity": {"y": -20.93, "x": -13.8}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437849.14392326, "x": 322926.75173016445, "alt": 99.864, "zone": 19.0}, "altitude": 99.864, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 159.3281707763672, "speed": 0.522817075252533}}
{"events_within": [], "attitude": {"yaw": -2.4178273677825928, "roll": 0.6739788055419922, "pitch": -0.04963058978319168}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912556, "velocity": {"y": -18.36, "x": -17.11}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437834.531003576, "x": 322915.5766698801, "alt": 99.907, "zone": 19.0}, "altitude": 99.907, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 164.2996063232422, "speed": 0.5604014992713928}}
{"events_within": [], "attitude": {"yaw": -2.2412798404693604, "roll": 0.686044454574585, "pitch": -0.04978857934474945}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912556, "velocity": {"y": -15.14, "x": -20.16}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437821.59493942, "x": 322901.6337080314, "alt": 99.858, "zone": 19.0}, "altitude": 99.858, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 168.99554443359375, "speed": 0.593293309211731}}
{"events_within": [], "attitude": {"yaw": -2.0668578147888184, "roll": 0.6825312972068787, "pitch": -0.048728667199611664}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912556, "velocity": {"y": -11.42, "x": -22.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437811.562264653, "x": 322886.0259040616, "alt": 99.878, "zone": 19.0}, "altitude": 99.878, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 173.91062927246094, "speed": 0.6222187876701355}}
{"events_within": [], "attitude": {"yaw": -1.8903400897979736, "roll": 0.6889587640762329, "pitch": -0.05011947453022003}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912556, "velocity": {"y": -7.32, "x": -24.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437804.169263428, "x": 322868.41560081544, "alt": 99.909, "zone": 19.0}, "altitude": 99.909, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 178.54373168945312, "speed": 0.6441189050674438}}
{"events_within": [], "attitude": {"yaw": -1.7132753133773804, "roll": 0.686009407043457, "pitch": -0.048347365111112595}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912557, "velocity": {"y": -2.96, "x": -25.05}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.072082708, "x": 322850.2049975456, "alt": 99.953, "zone": 19.0}, "altitude": 99.953, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -175.98651123046875, "speed": 0.6621871590614319}}
{"events_within": [], "attitude": {"yaw": -1.5353162288665771, "roll": 0.6817898154258728, "pitch": -0.048553939908742905}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912557, "velocity": {"y": 1.52, "x": -25.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.232318039, "x": 322831.18521680776, "alt": 100.027, "zone": 19.0}, "altitude": 100.027, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -170.9503631591797, "speed": 0.6747595071792603}}
{"events_within": [], "attitude": {"yaw": -1.3641945123672485, "roll": 0.6839891672134399, "pitch": -0.050460122525691986}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912557, "velocity": {"y": 5.75, "x": -24.54}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.606073811, "x": 322812.7502795979, "alt": 100.063, "zone": 19.0}, "altitude": 100.063, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -164.9562530517578, "speed": 0.6825149655342102}}
{"events_within": [], "attitude": {"yaw": -1.186366319656372, "roll": 0.6811092495918274, "pitch": -0.05082963407039642}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912557, "velocity": {"y": 10.01, "x": -23.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437807.306513984, "x": 322794.5281888782, "alt": 100.074, "zone": 19.0}, "altitude": 100.074, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -159.4770965576172, "speed": 0.6849405169487}}
{"events_within": [], "attitude": {"yaw": -1.014906644821167, "roll": 0.6856576800346375, "pitch": -0.04995966702699661}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912557, "velocity": {"y": 13.83, "x": -21.1}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.838230213, "x": 322778.0749904827, "alt": 100.101, "zone": 19.0}, "altitude": 100.101, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -153.52874755859375, "speed": 0.6806206703186035}}
{"events_within": [], "attitude": {"yaw": -0.8312193751335144, "roll": 0.6884313225746155, "pitch": -0.04573213681578636}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912558, "velocity": {"y": 17.42, "x": -18.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437827.423784737, "x": 322762.9489070453, "alt": 100.126, "zone": 19.0}, "altitude": 100.126, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -147.34262084960938, "speed": 0.6723406910896301}}
{"events_within": [], "attitude": {"yaw": -0.6611068844795227, "roll": 0.6801139116287231, "pitch": -0.0516253262758255}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912558, "velocity": {"y": 20.2, "x": -14.96}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437841.1290824525, "x": 322750.4817055638, "alt": 100.166, "zone": 19.0}, "altitude": 100.166, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -140.0639190673828, "speed": 0.6567713618278503}}
{"events_within": [], "attitude": {"yaw": -0.48275232315063477, "roll": 0.6812901496887207, "pitch": -0.05125725641846657}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912558, "velocity": {"y": 22.53, "x": -11.120000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437857.113333044, "x": 322740.3674276673, "alt": 100.171, "zone": 19.0}, "altitude": 100.171, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -133.501708984375, "speed": 0.64030522108078}}
{"events_within": [], "attitude": {"yaw": -0.3152105510234833, "roll": 0.6808160543441772, "pitch": -0.05558072030544281}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912558, "velocity": {"y": 24.14, "x": -7.2}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437874.173432852, "x": 322733.382173226, "alt": 100.117, "zone": 19.0}, "altitude": 100.117, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -126.5807876586914, "speed": 0.6181914210319519}}
{"events_within": [], "attitude": {"yaw": -0.13766278326511383, "roll": 0.6855294108390808, "pitch": -0.0550006665289402}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912558, "velocity": {"y": 25.17, "x": -2.82}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437892.760100847, "x": 322729.3303918771, "alt": 99.998, "zone": 19.0}, "altitude": 99.998, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -120.03263092041016, "speed": 0.5961350798606873}}
{"events_within": [], "attitude": {"yaw": 0.03808104619383812, "roll": 0.6842238903045654, "pitch": -0.04892399534583092}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912559, "velocity": {"y": 25.26, "x": 1.6600000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437911.2617783025, "x": 322728.63729180023, "alt": 99.899, "zone": 19.0}, "altitude": 99.899, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -112.39600372314453, "speed": 0.5667439103126526}}
{"events_within": [], "attitude": {"yaw": 0.21710194647312164, "roll": 0.6852658987045288, "pitch": -0.04716859385371208}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912559, "velocity": {"y": 24.55, "x": 6.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437930.178681937, "x": 322731.31591419637, "alt": 99.884, "zone": 19.0}, "altitude": 99.884, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -105.08636474609375, "speed": 0.5368974208831787}}
{"events_within": [], "attitude": {"yaw": 0.3834986984729767, "roll": 0.6843473315238953, "pitch": -0.050478558987379074}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912559, "velocity": {"y": 23.22, "x": 10.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.782606911, "x": 322737.1061944094, "alt": 99.914, "zone": 19.0}, "altitude": 99.914, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -97.70299530029297, "speed": 0.5038195848464966}}
{"events_within": [], "attitude": {"yaw": 0.5635058879852295, "roll": 0.6897560954093933, "pitch": -0.04522552713751793}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912559, "velocity": {"y": 21.0, "x": 14.22}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437964.664618861, "x": 322746.10287561524, "alt": 99.85600000000001, "zone": 19.0}, "altitude": 99.85600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -89.54759979248047, "speed": 0.46804484724998474}}
{"events_within": [], "attitude": {"yaw": 0.73432856798172, "roll": 0.6839398741722107, "pitch": -0.04592429846525192}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912559, "velocity": {"y": 18.19, "x": 17.57}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437979.254072665, "x": 322757.672816013, "alt": 99.917, "zone": 19.0}, "altitude": 99.917, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -83.58098602294922, "speed": 0.44239047169685364}}
{"events_within": [], "attitude": {"yaw": 0.9094943404197693, "roll": 0.6869597434997559, "pitch": -0.04737858846783638}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912560, "velocity": {"y": 14.85, "x": 20.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.941371992, "x": 322771.88205556525, "alt": 99.924, "zone": 19.0}, "altitude": 99.924, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -70.7503890991211, "speed": 0.3884181082248688}}
{"events_within": [], "attitude": {"yaw": 1.0847936868667603, "roll": 0.6888953447341919, "pitch": -0.046020638197660446}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912560, "velocity": {"y": 11.040000000000001, "x": 22.73}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438001.701002403, "x": 322787.67298766004, "alt": 99.937, "zone": 19.0}, "altitude": 99.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -59.963951110839844, "speed": 0.3468676209449768}}
{"events_within": [], "attitude": {"yaw": 1.2587801218032837, "roll": 0.6895789504051208, "pitch": -0.049914874136447906}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912560, "velocity": {"y": 6.94, "x": 24.37}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.730252233, "x": 322805.39325514203, "alt": 99.956, "zone": 19.0}, "altitude": 99.956, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -49.457366943359375, "speed": 0.3130694627761841}}
{"events_within": [], "attitude": {"yaw": 1.4333856105804443, "roll": 0.6903144121170044, "pitch": -0.04774775728583336}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912560, "velocity": {"y": 2.58, "x": 25.27}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.482948139, "x": 322823.59595718223, "alt": 99.926, "zone": 19.0}, "altitude": 99.926, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -41.10087203979492, "speed": 0.2895900011062622}}
{"events_within": [], "attitude": {"yaw": 1.6134297847747803, "roll": 0.695411741733551, "pitch": -0.04747796058654785}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912560, "velocity": {"y": -1.96, "x": 25.34}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.037110165, "x": 322842.7491085519, "alt": 99.85600000000001, "zone": 19.0}, "altitude": 99.85600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -22.96109962463379, "speed": 0.24712170660495758}}
{"events_within": [], "attitude": {"yaw": 1.7339251041412354, "roll": 0.6877110004425049, "pitch": -0.04596066102385521}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912561, "velocity": {"y": -4.98, "x": 24.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.49766961, "x": 322855.29011413164, "alt": 99.868, "zone": 19.0}, "altitude": 99.868, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -12.22523021697998, "speed": 0.2280692607164383}}
{"events_within": [], "attitude": {"yaw": 1.908113718032837, "roll": 0.6846524477005005, "pitch": -0.04173434153199196}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912561, "velocity": {"y": -9.22, "x": 23.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.5444865655, "x": 322873.18400022667, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 7.656949996948242, "speed": 0.20625771582126617}}
{"events_within": [], "attitude": {"yaw": 2.0762479305267334, "roll": 0.6930046081542969, "pitch": -0.051916345953941345}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912561, "velocity": {"y": -13.09, "x": 21.740000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.398681643, "x": 322890.4421011538, "alt": 99.937, "zone": 19.0}, "altitude": 99.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 26.00139617919922, "speed": 0.19842153787612915}}
{"events_within": [], "attitude": {"yaw": 2.3166964054107666, "roll": 0.6912331581115723, "pitch": -0.045585762709379196}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912561, "velocity": {"y": -17.91, "x": 17.990000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437983.256720833, "x": 322910.5469850064, "alt": 99.882, "zone": 19.0}, "altitude": 99.882, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 46.27278518676758, "speed": 0.20016224682331085}}
{"events_within": [], "attitude": {"yaw": 2.491396188735962, "roll": 0.6888452768325806, "pitch": -0.04469827190041542}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912561, "velocity": {"y": -20.7, "x": 14.56}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437969.267283272, "x": 322922.76084410236, "alt": 99.94200000000001, "zone": 19.0}, "altitude": 99.94200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 64.84324645996094, "speed": 0.21459807455539703}}
{"events_within": [], "attitude": {"yaw": 2.6057186126708984, "roll": 0.686425507068634, "pitch": -0.046831123530864716}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912562, "velocity": {"y": -22.22, "x": 12.11}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437958.734574945, "x": 322929.56205252017, "alt": 99.96000000000001, "zone": 19.0}, "altitude": 99.96000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 82.70442199707031, "speed": 0.24001792073249817}}
{"events_within": [], "attitude": {"yaw": 2.7830750942230225, "roll": 0.6880763173103333, "pitch": -0.047464314848184586}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912562, "velocity": {"y": -23.990000000000002, "x": 7.99}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437941.385020252, "x": 322937.443435948, "alt": 99.985, "zone": 19.0}, "altitude": 99.985, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 96.19573974609375, "speed": 0.2695513963699341}}
{"events_within": [], "attitude": {"yaw": 2.9573922157287598, "roll": 0.6902079582214355, "pitch": -0.045868437737226486}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912562, "velocity": {"y": -25.04, "x": 3.69}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437923.478036218, "x": 322942.0404293338, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 108.09708404541016, "speed": 0.3014576733112335}}
{"events_within": [], "attitude": {"yaw": 3.1334574222564697, "roll": 0.6899820566177368, "pitch": -0.05139349400997162}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912562, "velocity": {"y": -25.35, "x": -0.73}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437904.482548954, "x": 322943.44147446076, "alt": 99.95, "zone": 19.0}, "altitude": 99.95, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 117.63677978515625, "speed": 0.3325096666812897}}
{"events_within": [], "attitude": {"yaw": -2.971296787261963, "roll": 0.6892430186271667, "pitch": -0.044874485582113266}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912562, "velocity": {"y": -24.82, "x": -5.22}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437886.029176777, "x": 322941.54826545547, "alt": 99.901, "zone": 19.0}, "altitude": 99.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 127.5865478515625, "speed": 0.36735934019088745}}
{"events_within": [], "attitude": {"yaw": -2.7919113636016846, "roll": 0.6878148913383484, "pitch": -0.04458020627498627}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912563, "velocity": {"y": -23.43, "x": -9.55}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437867.704279349, "x": 322936.2533883996, "alt": 99.922, "zone": 19.0}, "altitude": 99.922, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 133.32228088378906, "speed": 0.38785552978515625}}
{"events_within": [], "attitude": {"yaw": -2.6217947006225586, "roll": 0.6893753409385681, "pitch": -0.04828009381890297}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912563, "velocity": {"y": -21.52, "x": -13.42}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437851.019288804, "x": 322928.04044064455, "alt": 99.92, "zone": 19.0}, "altitude": 99.92, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 140.6828155517578, "speed": 0.41559073328971863}}
{"events_within": [], "attitude": {"yaw": -2.500197410583496, "roll": 0.6903682351112366, "pitch": -0.04573297128081322}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912563, "velocity": {"y": -19.72, "x": -15.9}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437840.670348119, "x": 322920.90722434677, "alt": 99.904, "zone": 19.0}, "altitude": 99.904, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 148.94285583496094, "speed": 0.44546061754226685}}
{"events_within": [], "attitude": {"yaw": -2.324240207672119, "roll": 0.6872485280036926, "pitch": -0.04799458011984825}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912563, "velocity": {"y": -16.62, "x": -19.080000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437826.745570846, "x": 322907.8777471866, "alt": 99.919, "zone": 19.0}, "altitude": 99.919, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 156.23777770996094, "speed": 0.47041067481040955}}
{"events_within": [], "attitude": {"yaw": -2.09122896194458, "roll": 0.6874310374259949, "pitch": -0.04962972179055214}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912563, "velocity": {"y": -11.76, "x": -22.44}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437812.282791732, "x": 322887.3342537216, "alt": 99.916, "zone": 19.0}, "altitude": 99.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 163.32907104492188, "speed": 0.4915560483932495}}
{"events_within": [], "attitude": {"yaw": -1.9748414754867554, "roll": 0.6882539391517639, "pitch": -0.04839272052049637}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912564, "velocity": {"y": -9.07, "x": -23.66}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437806.9410695825, "x": 322875.9677080397, "alt": 99.893, "zone": 19.0}, "altitude": 99.893, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 170.14788818359375, "speed": 0.5104542970657349}}
{"events_within": [], "attitude": {"yaw": -1.8005211353302002, "roll": 0.6885321736335754, "pitch": -0.04745772108435631}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912564, "velocity": {"y": -4.84, "x": -24.87}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.53108292, "x": 322858.1330340988, "alt": 99.893, "zone": 19.0}, "altitude": 99.893, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 177.84121704101562, "speed": 0.5275093913078308}}
{"events_within": [], "attitude": {"yaw": -1.618714451789856, "roll": 0.6839557886123657, "pitch": -0.04495888575911522}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912564, "velocity": {"y": -0.26, "x": -25.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.302936147, "x": 322839.1218053325, "alt": 99.914, "zone": 19.0}, "altitude": 99.914, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -175.83499145507812, "speed": 0.5391955971717834}}
{"events_within": [], "attitude": {"yaw": -1.4486939907073975, "roll": 0.6941673755645752, "pitch": -0.049053631722927094}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912564, "velocity": {"y": 3.98, "x": -25.03}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.318355683, "x": 322820.5604375306, "alt": 99.89, "zone": 19.0}, "altitude": 99.89, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -171.17564392089844, "speed": 0.5446934103965759}}
{"events_within": [], "attitude": {"yaw": -1.3278778791427612, "roll": 0.6851319670677185, "pitch": -0.04500199481844902}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912564, "velocity": {"y": 7.0, "x": -24.38}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437802.862437836, "x": 322808.2219366024, "alt": 99.91, "zone": 19.0}, "altitude": 99.91, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -164.01235961914062, "speed": 0.5510658621788025}}
{"events_within": [], "attitude": {"yaw": -1.1501582860946655, "roll": 0.6910895705223083, "pitch": -0.0459400899708271}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912565, "velocity": {"y": 11.200000000000001, "x": -22.76}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.434351483, "x": 322790.2052303659, "alt": 99.921, "zone": 19.0}, "altitude": 99.921, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -157.29318237304688, "speed": 0.553458034992218}}
{"events_within": [], "attitude": {"yaw": -0.9781208038330078, "roll": 0.685757577419281, "pitch": -0.046413883566856384}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912565, "velocity": {"y": 14.93, "x": -20.5}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.797414125, "x": 322774.1346080551, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -149.94004821777344, "speed": 0.5506736636161804}}
{"events_within": [], "attitude": {"yaw": -0.8009101748466492, "roll": 0.6889345645904541, "pitch": -0.0449991412460804}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912565, "velocity": {"y": 18.31, "x": -17.52}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437831.106555455, "x": 322759.52798045403, "alt": 99.968, "zone": 19.0}, "altitude": 99.968, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -142.8392333984375, "speed": 0.5461726784706116}}
{"events_within": [], "attitude": {"yaw": -0.6269712448120117, "roll": 0.6861174702644348, "pitch": -0.04767906665802002}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912565, "velocity": {"y": 21.02, "x": -14.08}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437845.41454053, "x": 322747.63352249854, "alt": 100.01, "zone": 19.0}, "altitude": 100.01, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -134.4584197998047, "speed": 0.5370019674301147}}
{"events_within": [], "attitude": {"yaw": -0.44898316264152527, "roll": 0.6858658790588379, "pitch": -0.04826352000236511}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912565, "velocity": {"y": 23.19, "x": -10.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437861.927026397, "x": 322738.2280638027, "alt": 100.016, "zone": 19.0}, "altitude": 100.016, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -127.10588836669922, "speed": 0.5272428393363953}}
{"events_within": [], "attitude": {"yaw": -0.27640247344970703, "roll": 0.6852681636810303, "pitch": -0.04963214695453644}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912566, "velocity": {"y": 24.650000000000002, "x": -6.0}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.40637912, "x": 322732.0381974196, "alt": 99.989, "zone": 19.0}, "altitude": 99.989, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -122.22041320800781, "speed": 0.5185797214508057}}
{"events_within": [], "attitude": {"yaw": -0.15964961051940918, "roll": 0.6912184357643127, "pitch": -0.0500497929751873}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912566, "velocity": {"y": 25.240000000000002, "x": -3.06}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437891.755496706, "x": 322729.58977575647, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -113.90337371826172, "speed": 0.5023789405822754}}
{"events_within": [], "attitude": {"yaw": 0.021625258028507233, "roll": 0.6843119263648987, "pitch": -0.04574475437402725}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912566, "velocity": {"y": 25.39, "x": 1.53}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437910.809232884, "x": 322728.7573829449, "alt": 99.937, "zone": 19.0}, "altitude": 99.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -106.33895874023438, "speed": 0.4860140383243561}}
{"events_within": [], "attitude": {"yaw": 0.19629138708114624, "roll": 0.688983678817749, "pitch": -0.04417992755770683}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912566, "velocity": {"y": 24.69, "x": 5.95}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437929.265844317, "x": 322731.2374040401, "alt": 99.928, "zone": 19.0}, "altitude": 99.928, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -97.67639923095703, "speed": 0.4637076258659363}}
{"events_within": [], "attitude": {"yaw": 0.37403684854507446, "roll": 0.6862020492553711, "pitch": -0.04517042264342308}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912566, "velocity": {"y": 23.19, "x": 10.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.449333082, "x": 322737.1059036245, "alt": 99.943, "zone": 19.0}, "altitude": 99.943, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -88.88667297363281, "speed": 0.44197776913642883}}
{"events_within": [], "attitude": {"yaw": 0.542317271232605, "roll": 0.6882627010345459, "pitch": -0.04739699512720108}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912567, "velocity": {"y": 21.14, "x": 13.97}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437963.8342810515, "x": 322745.7622168944, "alt": 99.95, "zone": 19.0}, "altitude": 99.95, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -79.03018188476562, "speed": 0.41737639904022217}}
{"events_within": [], "attitude": {"yaw": 0.7190273404121399, "roll": 0.6895557641983032, "pitch": -0.04848175868391991}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912567, "velocity": {"y": 18.43, "x": 17.55}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437978.926805497, "x": 322757.4625868036, "alt": 99.916, "zone": 19.0}, "altitude": 99.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -70.25747680664062, "speed": 0.3966200351715088}}
{"events_within": [], "attitude": {"yaw": 0.8932675719261169, "roll": 0.6952383518218994, "pitch": -0.04843568429350853}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912567, "velocity": {"y": 15.15, "x": 20.57}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.471909557, "x": 322771.30604752287, "alt": 99.851, "zone": 19.0}, "altitude": 99.851, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -60.882347106933594, "speed": 0.3728901147842407}}
{"events_within": [], "attitude": {"yaw": 1.0122339725494385, "roll": 0.6957964301109314, "pitch": -0.04434022679924965}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912567, "velocity": {"y": 12.56, "x": 22.240000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.4817762105, "x": 322781.82669047185, "alt": 99.831, "zone": 19.0}, "altitude": 99.831, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -53.75974655151367, "speed": 0.35640817880630493}}
{"events_within": [], "attitude": {"yaw": 1.2504922151565552, "roll": 0.6890907287597656, "pitch": -0.04114885628223419}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912567, "velocity": {"y": 6.94, "x": 24.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.555158813, "x": 322805.04505861807, "alt": 99.884, "zone": 19.0}, "altitude": 99.884, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -39.125919342041016, "speed": 0.3238433301448822}}
{"events_within": [], "attitude": {"yaw": 1.4253125190734863, "roll": 0.6948397755622864, "pitch": -0.044576890766620636}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912568, "velocity": {"y": 2.58, "x": 25.310000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.454734933, "x": 322823.8064348026, "alt": 99.936, "zone": 19.0}, "altitude": 99.936, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -31.537391662597656, "speed": 0.308533638715744}}
{"events_within": [], "attitude": {"yaw": 1.5390182733535767, "roll": 0.6928791999816895, "pitch": -0.048360008746385574}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912568, "velocity": {"y": -0.33, "x": 25.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.194156883, "x": 322836.40956977534, "alt": 99.936, "zone": 19.0}, "altitude": 99.936, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -19.76021385192871, "speed": 0.2893468141555786}}
{"events_within": [], "attitude": {"yaw": 1.7193257808685303, "roll": 0.6957473754882812, "pitch": -0.041505977511405945}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912568, "velocity": {"y": -4.92, "x": 25.01}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.570089323, "x": 322855.07017126505, "alt": 99.922, "zone": 19.0}, "altitude": 99.922, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -5.07843017578125, "speed": 0.2701551914215088}}
{"events_within": [], "attitude": {"yaw": 1.8966494798660278, "roll": 0.6945781111717224, "pitch": -0.04229222610592842}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912568, "velocity": {"y": -9.23, "x": 23.67}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.5427541835, "x": 322873.57005941786, "alt": 99.962, "zone": 19.0}, "altitude": 99.962, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 9.653351783752441, "speed": 0.25767722725868225}}
{"events_within": [], "attitude": {"yaw": 2.131892681121826, "roll": 0.6924666166305542, "pitch": -0.045407913625240326}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912568, "velocity": {"y": -14.44, "x": 20.85}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437995.111143513, "x": 322895.9597371224, "alt": 99.989, "zone": 19.0}, "altitude": 99.989, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 25.944631576538086, "speed": 0.24975094199180603}}
{"events_within": [], "attitude": {"yaw": 2.2510900497436523, "roll": 0.691055417060852, "pitch": -0.04227244481444359}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912569, "velocity": {"y": -16.85, "x": 18.990000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437987.511591974, "x": 322905.9793063261, "alt": 99.996, "zone": 19.0}, "altitude": 99.996, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 40.55355453491211, "speed": 0.2508583962917328}}
{"events_within": [], "attitude": {"yaw": 2.4224047660827637, "roll": 0.6948719620704651, "pitch": -0.04587814211845398}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912569, "velocity": {"y": -19.86, "x": 15.870000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437974.275279798, "x": 322919.01405748853, "alt": 99.985, "zone": 19.0}, "altitude": 99.985, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 57.163963317871094, "speed": 0.2581374943256378}}
{"events_within": [], "attitude": {"yaw": 2.659522533416748, "roll": 0.6880475878715515, "pitch": -0.04652372747659683}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912569, "velocity": {"y": -23.02, "x": 10.76}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437953.175335, "x": 322932.5669636382, "alt": 100.021, "zone": 19.0}, "altitude": 100.021, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 70.31830596923828, "speed": 0.27025899291038513}}
{"events_within": [], "attitude": {"yaw": 2.7718985080718994, "roll": 0.694628894329071, "pitch": -0.05045052245259285}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912569, "velocity": {"y": -24.150000000000002, "x": 8.11}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437941.55175883, "x": 322937.44777922356, "alt": 99.97500000000001, "zone": 19.0}, "altitude": 99.97500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 83.0106201171875, "speed": 0.2841416001319885}}
{"events_within": [], "attitude": {"yaw": 3.012033700942993, "roll": 0.6950265169143677, "pitch": -0.04214153438806534}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912569, "velocity": {"y": -25.36, "x": 2.11}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437917.035009056, "x": 322942.9604919606, "alt": 99.86500000000001, "zone": 19.0}, "altitude": 99.86500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 99.4454116821289, "speed": 0.309148371219635}}
{"events_within": [], "attitude": {"yaw": -3.0932607650756836, "roll": 0.6877884864807129, "pitch": -0.04174426198005676}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912570, "velocity": {"y": -25.29, "x": -2.4}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437897.920974739, "x": 322943.13924737385, "alt": 99.908, "zone": 19.0}, "altitude": 99.908, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 109.74502563476562, "speed": 0.328596830368042}}
{"events_within": [], "attitude": {"yaw": -2.9206249713897705, "roll": 0.6946364045143127, "pitch": -0.04373173788189888}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912570, "velocity": {"y": -24.54, "x": -6.72}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.595545929, "x": 322940.1100799647, "alt": 99.9, "zone": 19.0}, "altitude": 99.9, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 121.06865692138672, "speed": 0.35145336389541626}}
{"events_within": [], "attitude": {"yaw": -2.8021140098571777, "roll": 0.6893429756164551, "pitch": -0.04219786822795868}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912570, "velocity": {"y": -23.51, "x": -9.55}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437867.626563028, "x": 322936.255275365, "alt": 99.893, "zone": 19.0}, "altitude": 99.893, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 127.49871063232422, "speed": 0.36497366428375244}}
{"events_within": [], "attitude": {"yaw": -2.5660181045532227, "roll": 0.6881932616233826, "pitch": -0.04200253635644913}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912570, "velocity": {"y": -20.56, "x": -14.75}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437845.488730243, "x": 322924.44891046255, "alt": 99.964, "zone": 19.0}, "altitude": 99.964, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 137.02366638183594, "speed": 0.387048602104187}}
{"events_within": [], "attitude": {"yaw": -2.3908233642578125, "roll": 0.6872281432151794, "pitch": -0.04496648907661438}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912570, "velocity": {"y": -18.73, "x": -17.02}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437835.636237372, "x": 322916.7162464098, "alt": 99.993, "zone": 19.0}, "altitude": 99.993, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 146.5412139892578, "speed": 0.40955835580825806}}
{"events_within": [], "attitude": {"yaw": -2.275359630584717, "roll": 0.6920623183250427, "pitch": -0.04822295904159546}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912571, "velocity": {"y": -15.540000000000001, "x": -20.07}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437822.514898235, "x": 322902.9204347392, "alt": 99.97200000000001, "zone": 19.0}, "altitude": 99.97200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 154.5454559326172, "speed": 0.4283508062362671}}
{"events_within": [], "attitude": {"yaw": -2.0992062091827393, "roll": 0.6914061307907104, "pitch": -0.04613726586103439}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912571, "velocity": {"y": -11.790000000000001, "x": -22.54}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437812.227891125, "x": 322887.3607614659, "alt": 99.901, "zone": 19.0}, "altitude": 99.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 162.71766662597656, "speed": 0.4446755349636078}}
{"events_within": [], "attitude": {"yaw": -1.9185938835144043, "roll": 0.68993079662323, "pitch": -0.045041780918836594}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912571, "velocity": {"y": -7.5600000000000005, "x": -24.310000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437804.657867009, "x": 322869.7799296493, "alt": 99.901, "zone": 19.0}, "altitude": 99.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 170.0662384033203, "speed": 0.45880791544914246}}
{"events_within": [], "attitude": {"yaw": -1.7437236309051514, "roll": 0.6892322897911072, "pitch": -0.0433853380382061}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912571, "velocity": {"y": -3.21, "x": -25.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.394358485, "x": 322851.5817565755, "alt": 99.915, "zone": 19.0}, "altitude": 99.915, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 178.647216796875, "speed": 0.47168147563934326}}
{"events_within": [], "attitude": {"yaw": -1.5641592741012573, "roll": 0.6818882822990417, "pitch": -0.040639422833919525}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912571, "velocity": {"y": 1.34, "x": -25.29}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.385006196, "x": 322832.4402236061, "alt": 99.953, "zone": 19.0}, "altitude": 99.953, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -173.48175048828125, "speed": 0.4817020893096924}}
{"events_within": [], "attitude": {"yaw": -1.3952409029006958, "roll": 0.6852380037307739, "pitch": -0.04458749294281006}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912572, "velocity": {"y": 5.57, "x": -24.7}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.625740901, "x": 322814.01691019326, "alt": 99.98100000000001, "zone": 19.0}, "altitude": 99.98100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -165.53298950195312, "speed": 0.48853564262390137}}
{"events_within": [], "attitude": {"yaw": -1.218475580215454, "roll": 0.68986976146698, "pitch": -0.04436260089278221}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912572, "velocity": {"y": 9.86, "x": -23.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437807.1358142, "x": 322795.73231492465, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -157.86334228515625, "speed": 0.4942179322242737}}
{"events_within": [], "attitude": {"yaw": -1.0434584617614746, "roll": 0.6888251304626465, "pitch": -0.04218864440917969}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912572, "velocity": {"y": 13.76, "x": -21.29}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.552229745, "x": 322779.10569978354, "alt": 99.95700000000001, "zone": 19.0}, "altitude": 99.95700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -149.1420135498047, "speed": 0.49743831157684326}}
{"events_within": [], "attitude": {"yaw": -0.8686959743499756, "roll": 0.6867985129356384, "pitch": -0.045970987528562546}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912572, "velocity": {"y": 17.31, "x": -18.6}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437827.013622395, "x": 322763.89872154326, "alt": 99.985, "zone": 19.0}, "altitude": 99.985, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -142.12374877929688, "speed": 0.49843618273735046}}
{"events_within": [], "attitude": {"yaw": -0.6969147324562073, "roll": 0.6966598629951477, "pitch": -0.045711860060691833}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912572, "velocity": {"y": 20.28, "x": -15.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437840.589865399, "x": 322751.149348472, "alt": 99.909, "zone": 19.0}, "altitude": 99.909, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -134.28646850585938, "speed": 0.4949018955230713}}
{"events_within": [], "attitude": {"yaw": -0.5121139883995056, "roll": 0.6908020973205566, "pitch": -0.04104657098650932}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912573, "velocity": {"y": 22.71, "x": -11.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437856.6669030255, "x": 322740.73911430204, "alt": 99.906, "zone": 19.0}, "altitude": 99.906, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -126.52229309082031, "speed": 0.49041858315467834}}
{"events_within": [], "attitude": {"yaw": -0.3379957675933838, "roll": 0.6892135143280029, "pitch": -0.04012150689959526}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912573, "velocity": {"y": 24.35, "x": -7.26}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437873.8117446285, "x": 322733.58397046715, "alt": 99.928, "zone": 19.0}, "altitude": 99.928, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -117.60611724853516, "speed": 0.4815810024738312}}
{"events_within": [], "attitude": {"yaw": -0.162229523062706, "roll": 0.6867522597312927, "pitch": -0.042174458503723145}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912573, "velocity": {"y": 25.21, "x": -2.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437892.45249734, "x": 322729.47213414626, "alt": 99.996, "zone": 19.0}, "altitude": 99.996, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -109.58633422851562, "speed": 0.4723491072654724}}
{"events_within": [], "attitude": {"yaw": 0.008050866425037384, "roll": 0.6944966912269592, "pitch": -0.04106183722615242}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912573, "velocity": {"y": 25.37, "x": 1.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437910.950912976, "x": 322728.64484840445, "alt": 99.98100000000001, "zone": 19.0}, "altitude": 99.98100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -101.171630859375, "speed": 0.4599124491214752}}
{"events_within": [], "attitude": {"yaw": 0.18447469174861908, "roll": 0.6960975527763367, "pitch": -0.045204147696495056}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912573, "velocity": {"y": 24.77, "x": 5.91}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437929.863739402, "x": 322731.1557377175, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -92.9594955444336, "speed": 0.44757625460624695}}
{"events_within": [], "attitude": {"yaw": 0.35945019125938416, "roll": 0.6945065855979919, "pitch": -0.04459383338689804}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912574, "velocity": {"y": 23.36, "x": 10.15}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.642447898, "x": 322736.82428610435, "alt": 99.911, "zone": 19.0}, "altitude": 99.911, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -86.86957550048828, "speed": 0.43776535987854004}}
{"events_within": [], "attitude": {"yaw": 0.5396069288253784, "roll": 0.6940792798995972, "pitch": -0.04196169227361679}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912574, "velocity": {"y": 21.17, "x": 14.17}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437964.522625642, "x": 322745.7454863107, "alt": 99.881, "zone": 19.0}, "altitude": 99.881, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -74.83734130859375, "speed": 0.41641271114349365}}
{"events_within": [], "attitude": {"yaw": 0.7125751376152039, "roll": 0.6953303813934326, "pitch": -0.0402308851480484}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912574, "velocity": {"y": 18.400000000000002, "x": 17.650000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437979.221268901, "x": 322757.2372471681, "alt": 99.902, "zone": 19.0}, "altitude": 99.902, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -68.78779602050781, "speed": 0.40455156564712524}}
{"events_within": [], "attitude": {"yaw": 0.8320308327674866, "roll": 0.6958697438240051, "pitch": -0.04106708988547325}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912574, "velocity": {"y": 16.17, "x": 19.66}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437987.942223655, "x": 322766.3987848392, "alt": 99.914, "zone": 19.0}, "altitude": 99.914, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -57.84373092651367, "speed": 0.38401439785957336}}
{"events_within": [], "attitude": {"yaw": 1.064628005027771, "roll": 0.6905968189239502, "pitch": -0.042346447706222534}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912574, "velocity": {"y": 11.13, "x": 22.8}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438001.782076899, "x": 322787.3521337916, "alt": 99.986, "zone": 19.0}, "altitude": 99.986, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -47.65324783325195, "speed": 0.36707180738449097}}
{"events_within": [], "attitude": {"yaw": 1.181861162185669, "roll": 0.6920574903488159, "pitch": -0.042889732867479324}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912575, "velocity": {"y": 8.41, "x": 23.97}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.794729924, "x": 322798.8863779204, "alt": 99.98700000000001, "zone": 19.0}, "altitude": 99.98700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -36.42936706542969, "speed": 0.3485746681690216}}
{"events_within": [], "attitude": {"yaw": 1.4173367023468018, "roll": 0.6900535821914673, "pitch": -0.043485257774591446}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912575, "velocity": {"y": 2.56, "x": 25.26}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.588266397, "x": 322823.358431266, "alt": 100.014, "zone": 19.0}, "altitude": 100.014, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -20.606538772583008, "speed": 0.32846492528915405}}
{"events_within": [], "attitude": {"yaw": 1.5338404178619385, "roll": 0.6939225792884827, "pitch": -0.04661732539534569}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912575, "velocity": {"y": -0.36, "x": 25.41}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.325651741, "x": 322835.8776990848, "alt": 100.018, "zone": 19.0}, "altitude": 100.018, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -12.231534004211426, "speed": 0.3204715847969055}}
{"events_within": [], "attitude": {"yaw": 1.7166997194290161, "roll": 0.689094066619873, "pitch": -0.04147712141275406}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912575, "velocity": {"y": -4.99, "x": 24.93}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.611239198, "x": 322854.9349047835, "alt": 99.97200000000001, "zone": 19.0}, "altitude": 99.97200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 0.02836489863693714, "speed": 0.31096330285072327}}
{"events_within": [], "attitude": {"yaw": 1.887771487236023, "roll": 0.6839570999145508, "pitch": -0.04256092756986618}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912575, "velocity": {"y": -9.17, "x": 23.67}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.670788899, "x": 322872.8956156244, "alt": 100.011, "zone": 19.0}, "altitude": 100.011, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 12.859604835510254, "speed": 0.30288612842559814}}
{"events_within": [], "attitude": {"yaw": 2.064699649810791, "roll": 0.6935110688209534, "pitch": -0.04525427520275116}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912576, "velocity": {"y": -13.200000000000001, "x": 21.740000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.558291633, "x": 322890.152908322, "alt": 99.98400000000001, "zone": 19.0}, "altitude": 99.98400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 25.403705596923828, "speed": 0.29975584149360657}}
{"events_within": [], "attitude": {"yaw": 2.1846842765808105, "roll": 0.6874788403511047, "pitch": -0.04183024913072586}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912576, "velocity": {"y": -15.68, "x": 19.98}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.558780103, "x": 322900.6362416006, "alt": 99.977, "zone": 19.0}, "altitude": 99.977, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 34.94304656982422, "speed": 0.29976457357406616}}
{"events_within": [], "attitude": {"yaw": 2.3597447872161865, "roll": 0.6841024160385132, "pitch": -0.041311509907245636}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912576, "velocity": {"y": -18.93, "x": 16.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437979.073355542, "x": 322914.39963252854, "alt": 100.012, "zone": 19.0}, "altitude": 100.012, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 47.4771842956543, "speed": 0.3010921776294708}}
{"events_within": [], "attitude": {"yaw": 2.5323832035064697, "roll": 0.6942755579948425, "pitch": -0.04433414712548256}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912576, "velocity": {"y": -21.61, "x": 13.450000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437964.049872153, "x": 322926.118304181, "alt": 99.96900000000001, "zone": 19.0}, "altitude": 99.96900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 58.994876861572266, "speed": 0.30619683861732483}}
{"events_within": [], "attitude": {"yaw": 2.706183671951294, "roll": 0.6903044581413269, "pitch": -0.04406607151031494}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912576, "velocity": {"y": -23.650000000000002, "x": 9.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.575359333, "x": 322934.8092235995, "alt": 99.94500000000001, "zone": 19.0}, "altitude": 99.94500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 71.4842758178711, "speed": 0.313292920589447}}
{"events_within": [], "attitude": {"yaw": 2.8882060050964355, "roll": 0.6898750066757202, "pitch": -0.039565060287714005}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912577, "velocity": {"y": -24.93, "x": 5.0600000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437929.331524886, "x": 322940.6311840606, "alt": 99.95, "zone": 19.0}, "altitude": 99.95, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 79.22504425048828, "speed": 0.3182424008846283}}
{"events_within": [], "attitude": {"yaw": 3.0060970783233643, "roll": 0.6912344098091125, "pitch": -0.04168526455760002}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912577, "velocity": {"y": -25.32, "x": 2.1}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437916.948740788, "x": 322942.61014063586, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.46353149414062, "speed": 0.32841017842292786}}
{"events_within": [], "attitude": {"yaw": -3.103820323944092, "roll": 0.6899955868721008, "pitch": -0.039493635296821594}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912577, "velocity": {"y": -25.25, "x": -2.3000000000000003}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437898.402757894, "x": 322942.850629151, "alt": 99.991, "zone": 19.0}, "altitude": 99.991, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 102.5069580078125, "speed": 0.3410578966140747}}
{"events_within": [], "attitude": {"yaw": -2.9304234981536865, "roll": 0.6899053454399109, "pitch": -0.043615639209747314}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912577, "velocity": {"y": -24.52, "x": -6.640000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.598299734, "x": 322939.76596059673, "alt": 99.999, "zone": 19.0}, "altitude": 99.999, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 112.56279754638672, "speed": 0.35373225808143616}}
{"events_within": [], "attitude": {"yaw": -2.755781888961792, "roll": 0.6932662725448608, "pitch": -0.04143430292606354}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912577, "velocity": {"y": -23.02, "x": -10.83}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437862.09762927, "x": 322933.6454967678, "alt": 99.959, "zone": 19.0}, "altitude": 99.959, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 122.75125122070312, "speed": 0.36598020792007446}}
{"events_within": [], "attitude": {"yaw": -2.5745182037353516, "roll": 0.6965827345848083, "pitch": -0.04192683473229408}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912578, "velocity": {"y": -20.740000000000002, "x": -14.790000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437845.450332205, "x": 322924.2400556724, "alt": 99.935, "zone": 19.0}, "altitude": 99.935, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 132.3057098388672, "speed": 0.3789661228656769}}
{"events_within": [], "attitude": {"yaw": -2.3993449211120605, "roll": 0.6895699501037598, "pitch": -0.039318595081567764}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912578, "velocity": {"y": -17.73, "x": -18.13}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437831.130148205, "x": 322912.3110566973, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 139.52011108398438, "speed": 0.3889649510383606}}
{"events_within": [], "attitude": {"yaw": -2.224097967147827, "roll": 0.6916609406471252, "pitch": -0.0427103228867054}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912578, "velocity": {"y": -14.33, "x": -21.0}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.845960202, "x": 322897.76487369416, "alt": 99.986, "zone": 19.0}, "altitude": 99.986, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 148.60711669921875, "speed": 0.40039321780204773}}
{"events_within": [], "attitude": {"yaw": -2.0481057167053223, "roll": 0.6970267295837402, "pitch": -0.04352325573563576}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912578, "velocity": {"y": -10.47, "x": -23.2}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.444990562, "x": 322881.6382507014, "alt": 99.913, "zone": 19.0}, "altitude": 99.913, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 160.7599334716797, "speed": 0.41523027420043945}}
{"events_within": [], "attitude": {"yaw": -1.8680591583251953, "roll": 0.6855055093765259, "pitch": -0.039820291101932526}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912578, "velocity": {"y": -6.11, "x": -24.72}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437802.964712427, "x": 322863.644953673, "alt": 99.94200000000001, "zone": 19.0}, "altitude": 99.94200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 166.6534881591797, "speed": 0.4223894774913788}}
{"events_within": [], "attitude": {"yaw": -1.7527306079864502, "roll": 0.6951358914375305, "pitch": -0.04479817673563957}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912579, "velocity": {"y": -3.2600000000000002, "x": -25.27}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.420331302, "x": 322851.2790337298, "alt": 99.926, "zone": 19.0}, "altitude": 99.926, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 174.58595275878906, "speed": 0.4301762580871582}}
{"events_within": [], "attitude": {"yaw": -1.5789711475372314, "roll": 0.6917388439178467, "pitch": -0.04119737446308136}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912579, "velocity": {"y": 1.16, "x": -25.47}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.377775096, "x": 322832.59983669047, "alt": 99.909, "zone": 19.0}, "altitude": 99.909, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -176.73367309570312, "speed": 0.43512263894081116}}
{"events_within": [], "attitude": {"yaw": -1.398348093032837, "roll": 0.686561107635498, "pitch": -0.036353327333927155}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912579, "velocity": {"y": 5.76, "x": -24.79}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.703148421, "x": 322813.5451083691, "alt": 99.958, "zone": 19.0}, "altitude": 99.958, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -168.66551208496094, "speed": 0.4397823214530945}}
{"events_within": [], "attitude": {"yaw": -1.2292901277542114, "roll": 0.6927568912506104, "pitch": -0.04332493618130684}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912579, "velocity": {"y": 9.85, "x": -23.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437807.124100492, "x": 322795.70742520085, "alt": 99.96900000000001, "zone": 19.0}, "altitude": 99.96900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -159.50680541992188, "speed": 0.44208449125289917}}
{"events_within": [], "attitude": {"yaw": -1.0455400943756104, "roll": 0.6938837170600891, "pitch": -0.03798074647784233}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912579, "velocity": {"y": 13.96, "x": -21.27}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.817763292, "x": 322778.60415024986, "alt": 99.953, "zone": 19.0}, "altitude": 99.953, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -151.17498779296875, "speed": 0.4432830214500427}}
{"events_within": [], "attitude": {"yaw": -0.8749070167541504, "roll": 0.6953943967819214, "pitch": -0.04262700304389}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912580, "velocity": {"y": 17.36, "x": -18.6}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437827.043871992, "x": 322763.7721141469, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -145.63681030273438, "speed": 0.44235938787460327}}
{"events_within": [], "attitude": {"yaw": -0.6941672563552856, "roll": 0.6908734440803528, "pitch": -0.04089278727769852}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912580, "velocity": {"y": 20.44, "x": -15.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437841.081112928, "x": 322750.7933569229, "alt": 99.97, "zone": 19.0}, "altitude": 99.97, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -136.2489471435547, "speed": 0.44015398621559143}}
{"events_within": [], "attitude": {"yaw": -0.576366662979126, "roll": 0.6904711127281189, "pitch": -0.03893071040511131}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912580, "velocity": {"y": 22.080000000000002, "x": -12.63}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437851.506605415, "x": 322743.70087654924, "alt": 99.967, "zone": 19.0}, "altitude": 99.967, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -127.5447006225586, "speed": 0.4370254576206207}}
{"events_within": [], "attitude": {"yaw": -0.40685832500457764, "roll": 0.6866942644119263, "pitch": -0.04021380469202995}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912580, "velocity": {"y": 23.85, "x": -8.700000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437868.184320428, "x": 322735.6088557409, "alt": 99.98, "zone": 19.0}, "altitude": 99.98, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -118.21726989746094, "speed": 0.4311571717262268}}
{"events_within": [], "attitude": {"yaw": -0.2299896627664566, "roll": 0.6939208507537842, "pitch": -0.04091813042759895}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912580, "velocity": {"y": 25.04, "x": -4.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437886.497789698, "x": 322730.3721228262, "alt": 99.979, "zone": 19.0}, "altitude": 99.979, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -109.3646240234375, "speed": 0.4263880252838135}}
{"events_within": [], "attitude": {"yaw": -0.05504664406180382, "roll": 0.691615641117096, "pitch": -0.04126352816820145}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912581, "velocity": {"y": 25.44, "x": 0.05}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437904.9707224695, "x": 322728.49651162524, "alt": 99.98, "zone": 19.0}, "altitude": 99.98, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -99.32890319824219, "speed": 0.41942325234413147}}
{"events_within": [], "attitude": {"yaw": 0.1237412765622139, "roll": 0.6922013759613037, "pitch": -0.04118682071566582}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912581, "velocity": {"y": 25.07, "x": 4.6000000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437923.969089783, "x": 322729.95636858454, "alt": 99.96300000000001, "zone": 19.0}, "altitude": 99.96300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -90.33979797363281, "speed": 0.4129287302494049}}
{"events_within": [], "attitude": {"yaw": 0.30078017711639404, "roll": 0.6952188611030579, "pitch": -0.03829590603709221}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912581, "velocity": {"y": 23.81, "x": 8.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437941.968199779, "x": 322734.6377321189, "alt": 99.965, "zone": 19.0}, "altitude": 99.965, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -83.86351776123047, "speed": 0.4069717824459076}}
{"events_within": [], "attitude": {"yaw": 0.475829154253006, "roll": 0.6883553862571716, "pitch": -0.039739664644002914}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912581, "velocity": {"y": 22.580000000000002, "x": 11.6}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437953.529991335, "x": 322739.5595067603, "alt": 99.98700000000001, "zone": 19.0}, "altitude": 99.98700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -72.93206024169922, "speed": 0.3980121910572052}}
{"events_within": [], "attitude": {"yaw": 0.5914971232414246, "roll": 0.6885685920715332, "pitch": -0.04268117994070053}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912581, "velocity": {"y": 20.22, "x": 15.35}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437969.767670559, "x": 322749.4697681938, "alt": 99.982, "zone": 19.0}, "altitude": 99.982, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -62.92317199707031, "speed": 0.39099031686782837}}
{"events_within": [], "attitude": {"yaw": 0.7646846175193787, "roll": 0.6907345056533813, "pitch": -0.041779566556215286}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912582, "velocity": {"y": 17.27, "x": 18.650000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437983.6741813095, "x": 322761.7360460433, "alt": 99.93900000000001, "zone": 19.0}, "altitude": 99.93900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -52.73801040649414, "speed": 0.382904589176178}}
{"events_within": [], "attitude": {"yaw": 0.9447342157363892, "roll": 0.6936579346656799, "pitch": -0.040700413286685944}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912582, "velocity": {"y": 13.65, "x": 21.43}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437995.568936939, "x": 322776.70302814804, "alt": 99.903, "zone": 19.0}, "altitude": 99.903, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -42.244712829589844, "speed": 0.3766917288303375}}
{"events_within": [], "attitude": {"yaw": 1.11844003200531, "roll": 0.687851071357727, "pitch": -0.03958762064576149}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912582, "velocity": {"y": 9.75, "x": 23.47}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438004.353083766, "x": 322793.0379614047, "alt": 99.947, "zone": 19.0}, "altitude": 99.947, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -34.965274810791016, "speed": 0.3732737898826599}}
{"events_within": [], "attitude": {"yaw": 1.2928510904312134, "roll": 0.6958814859390259, "pitch": -0.04229721054434776}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912582, "velocity": {"y": 5.5200000000000005, "x": 24.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438010.403993518, "x": 322811.18481059885, "alt": 99.911, "zone": 19.0}, "altitude": 99.911, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -24.595834732055664, "speed": 0.36666154861450195}}
{"events_within": [], "attitude": {"yaw": 1.4695663452148438, "roll": 0.6958535313606262, "pitch": -0.040322959423065186}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912582, "velocity": {"y": 1.08, "x": 25.45}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.119371767, "x": 322829.6728612908, "alt": 99.857, "zone": 19.0}, "altitude": 99.857, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -14.211234092712402, "speed": 0.362240731716156}}
{"events_within": [], "attitude": {"yaw": 1.6504545211791992, "roll": 0.6924684047698975, "pitch": -0.0408884733915329}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912583, "velocity": {"y": -3.48, "x": 25.22}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.505939596, "x": 322848.77885040746, "alt": 99.886, "zone": 19.0}, "altitude": 99.886, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -2.611952304840088, "speed": 0.3577108681201935}}
{"events_within": [], "attitude": {"yaw": 1.8260740041732788, "roll": 0.6916638612747192, "pitch": -0.03809180483222008}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912583, "velocity": {"y": -7.8500000000000005, "x": 24.23}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.649967249, "x": 322867.02372044406, "alt": 99.921, "zone": 19.0}, "altitude": 99.921, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 11.726871490478516, "speed": 0.35338857769966125}}
{"events_within": [], "attitude": {"yaw": 2.003014087677002, "roll": 0.6911434531211853, "pitch": -0.04116198793053627}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912583, "velocity": {"y": -12.01, "x": 22.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438001.438705581, "x": 322884.7962044691, "alt": 99.968, "zone": 19.0}, "altitude": 99.968, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 18.465524673461914, "speed": 0.3511718511581421}}
{"events_within": [], "attitude": {"yaw": 2.1187870502471924, "roll": 0.6908406019210815, "pitch": -0.04107742756605148}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912583, "velocity": {"y": -14.55, "x": 20.95}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437995.0700970935, "x": 322895.6418507985, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 28.422908782958984, "speed": 0.34990617632865906}}
{"events_within": [], "attitude": {"yaw": 2.2930843830108643, "roll": 0.6975577473640442, "pitch": -0.04187466576695442}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912583, "velocity": {"y": -18.0, "x": 18.17}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437983.404414646, "x": 322910.22451602237, "alt": 99.895, "zone": 19.0}, "altitude": 99.895, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 39.066741943359375, "speed": 0.3480665981769562}}
{"events_within": [], "attitude": {"yaw": 2.4757299423217773, "roll": 0.6969487071037292, "pitch": -0.036587826907634735}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912584, "velocity": {"y": -20.990000000000002, "x": 14.57}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437968.892858636, "x": 322922.8958100249, "alt": 99.85900000000001, "zone": 19.0}, "altitude": 99.85900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 50.10490036010742, "speed": 0.3464330732822418}}
{"events_within": [], "attitude": {"yaw": 2.651595115661621, "roll": 0.6839519143104553, "pitch": -0.032646771520376205}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912584, "velocity": {"y": -23.07, "x": 10.58}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437952.893093291, "x": 322932.38080945605, "alt": 99.96900000000001, "zone": 19.0}, "altitude": 99.96900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 62.178829193115234, "speed": 0.3447752892971039}}
{"events_within": [], "attitude": {"yaw": 2.8236629962921143, "roll": 0.6876791715621948, "pitch": -0.04134710133075714}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912584, "velocity": {"y": -24.51, "x": 6.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437935.104242669, "x": 322939.09802411625, "alt": 100.05, "zone": 19.0}, "altitude": 100.05, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 72.68236541748047, "speed": 0.3469652235507965}}
{"events_within": [], "attitude": {"yaw": 2.9959468841552734, "roll": 0.696765124797821, "pitch": -0.042582917958498}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912584, "velocity": {"y": -25.41, "x": 2.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437916.881923185, "x": 322942.60337132704, "alt": 99.98, "zone": 19.0}, "altitude": 99.98, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 79.89079284667969, "speed": 0.3492615520954132}}
{"events_within": [], "attitude": {"yaw": 3.1167562007904053, "roll": 0.6952396035194397, "pitch": -0.04009152948856354}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912584, "velocity": {"y": -25.51, "x": -0.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437904.341787124, "x": 322943.1344045567, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 90.8724594116211, "speed": 0.3512674868106842}}
{"events_within": [], "attitude": {"yaw": -3.104090452194214, "roll": 0.6923938989639282, "pitch": -0.03725278750061989}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912585, "velocity": {"y": -25.38, "x": -2.47}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437897.790704363, "x": 322942.8067484009, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.25686645507812, "speed": 0.353371262550354}}
{"events_within": [], "attitude": {"yaw": -2.931506633758545, "roll": 0.6913968920707703, "pitch": -0.039998557418584824}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912585, "velocity": {"y": -24.560000000000002, "x": -6.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.429321291, "x": 322939.6693650326, "alt": 99.98400000000001, "zone": 19.0}, "altitude": 99.98400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 104.59649658203125, "speed": 0.35580170154571533}}
{"events_within": [], "attitude": {"yaw": -2.7551121711730957, "roll": 0.6951743960380554, "pitch": -0.039858270436525345}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912585, "velocity": {"y": -22.98, "x": -11.01}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437861.465717165, "x": 322933.2412647377, "alt": 99.979, "zone": 19.0}, "altitude": 99.979, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 114.68257141113281, "speed": 0.3599218726158142}}
{"events_within": [], "attitude": {"yaw": -2.576333999633789, "roll": 0.6913572549819946, "pitch": -0.034720610827207565}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912585, "velocity": {"y": -20.61, "x": -14.870000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437845.310791317, "x": 322923.98330791615, "alt": 99.989, "zone": 19.0}, "altitude": 99.989, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 122.28129577636719, "speed": 0.36351242661476135}}
{"events_within": [], "attitude": {"yaw": -2.4039719104766846, "roll": 0.6914891004562378, "pitch": -0.043485913425683975}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912585, "velocity": {"y": -17.79, "x": -18.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437830.659881997, "x": 322911.7015076655, "alt": 100.009, "zone": 19.0}, "altitude": 100.009, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 132.49533081054688, "speed": 0.3671157658100128}}
{"events_within": [], "attitude": {"yaw": -2.2258076667785645, "roll": 0.6925563812255859, "pitch": -0.03809405490756035}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912586, "velocity": {"y": -14.27, "x": -21.1}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.694297632, "x": 322897.46646443504, "alt": 99.952, "zone": 19.0}, "altitude": 99.952, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 145.93075561523438, "speed": 0.3737342655658722}}
{"events_within": [], "attitude": {"yaw": -2.047010898590088, "roll": 0.6928156614303589, "pitch": -0.037592872977256775}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912586, "velocity": {"y": -10.28, "x": -23.32}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.181184739, "x": 322880.8390789252, "alt": 99.95, "zone": 19.0}, "altitude": 99.95, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 155.54690551757812, "speed": 0.37855538725852966}}
{"events_within": [], "attitude": {"yaw": -1.8713710308074951, "roll": 0.690340518951416, "pitch": -0.03819023072719574}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912586, "velocity": {"y": -6.03, "x": -24.73}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437802.899015092, "x": 322863.22697732213, "alt": 99.959, "zone": 19.0}, "altitude": 99.959, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 166.52281188964844, "speed": 0.38332346081733704}}
{"events_within": [], "attitude": {"yaw": -1.637656331062317, "roll": 0.6880105137825012, "pitch": -0.0371151864528656}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912586, "velocity": {"y": -0.1, "x": -25.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.451338119, "x": 322838.3713617241, "alt": 100.005, "zone": 19.0}, "altitude": 100.005, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 176.4983367919922, "speed": 0.388561487197876}}
{"events_within": [], "attitude": {"yaw": -1.5234678983688354, "roll": 0.6855176091194153, "pitch": -0.04076961800456047}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912586, "velocity": {"y": 2.7600000000000002, "x": -25.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.912793536, "x": 322825.8149437121, "alt": 100.01, "zone": 19.0}, "altitude": 100.01, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -172.82786560058594, "speed": 0.39301568269729614}}
{"events_within": [], "attitude": {"yaw": -1.3463021516799927, "roll": 0.689780592918396, "pitch": -0.04112542048096657}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912587, "velocity": {"y": 7.18, "x": -24.35}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437803.35653378, "x": 322807.06869385415, "alt": 99.98700000000001, "zone": 19.0}, "altitude": 99.98700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -163.6403350830078, "speed": 0.3991395831108093}}
{"events_within": [], "attitude": {"yaw": -1.171014666557312, "roll": 0.6928784847259521, "pitch": -0.039938829839229584}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912587, "velocity": {"y": 11.32, "x": -22.79}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.832298585, "x": 322789.66689812485, "alt": 99.94, "zone": 19.0}, "altitude": 99.94, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -153.26950073242188, "speed": 0.40480053424835205}}
{"events_within": [], "attitude": {"yaw": -0.9376868009567261, "roll": 0.688120424747467, "pitch": -0.03973018750548363}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912587, "velocity": {"y": 16.330000000000002, "x": -19.52}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437823.245711864, "x": 322768.3874306523, "alt": 99.925, "zone": 19.0}, "altitude": 99.925, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -144.17681884765625, "speed": 0.40959498286247253}}
{"events_within": [], "attitude": {"yaw": -0.8204630613327026, "roll": 0.6920869946479797, "pitch": -0.03727405518293381}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912587, "velocity": {"y": 18.5, "x": -17.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437831.68478755, "x": 322759.09435240127, "alt": 99.904, "zone": 19.0}, "altitude": 99.904, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -134.39987182617188, "speed": 0.41247400641441345}}
{"events_within": [], "attitude": {"yaw": -0.6435727477073669, "roll": 0.6919463872909546, "pitch": -0.03533341363072395}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912587, "velocity": {"y": 21.3, "x": -13.91}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437846.443686893, "x": 322747.01271106733, "alt": 99.901, "zone": 19.0}, "altitude": 99.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -125.5428237915039, "speed": 0.41619986295700073}}
{"events_within": [], "attitude": {"yaw": -0.4721713960170746, "roll": 0.6951369047164917, "pitch": -0.039090000092983246}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912588, "velocity": {"y": 23.400000000000002, "x": -10.1}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437862.674646296, "x": 322737.9077962861, "alt": 99.907, "zone": 19.0}, "altitude": 99.907, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -115.9281234741211, "speed": 0.4185638129711151}}
{"events_within": [], "attitude": {"yaw": -0.29396259784698486, "roll": 0.6974782943725586, "pitch": -0.039392001926898956}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912588, "velocity": {"y": 24.89, "x": -5.8}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437880.695974496, "x": 322731.62083877996, "alt": 99.889, "zone": 19.0}, "altitude": 99.889, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -107.48123168945312, "speed": 0.4198349416255951}}
{"events_within": [], "attitude": {"yaw": -0.1164313331246376, "roll": 0.6972112059593201, "pitch": -0.03737856447696686}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912588, "velocity": {"y": 25.48, "x": -1.33}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437899.098811368, "x": 322728.6895976061, "alt": 99.904, "zone": 19.0}, "altitude": 99.904, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -101.76725006103516, "speed": 0.4190545678138733}}
{"events_within": [], "attitude": {"yaw": 0.06497053056955338, "roll": 0.6907371878623962, "pitch": -0.03199215978384018}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912588, "velocity": {"y": 25.23, "x": 3.3000000000000003}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437918.2162301345, "x": 322729.1060018032, "alt": 99.924, "zone": 19.0}, "altitude": 99.924, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -88.92237854003906, "speed": 0.41683831810951233}}
{"events_within": [], "attitude": {"yaw": 0.23167291283607483, "roll": 0.6943888664245605, "pitch": -0.04064519330859184}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912588, "velocity": {"y": 24.38, "x": 7.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437936.379209962, "x": 322732.75959893735, "alt": 99.95100000000001, "zone": 19.0}, "altitude": 99.95100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -79.34622955322266, "speed": 0.4141714572906494}}
{"events_within": [], "attitude": {"yaw": 0.41479000449180603, "roll": 0.6948549747467041, "pitch": -0.034145601093769073}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912589, "velocity": {"y": 22.6, "x": 11.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437954.200412132, "x": 322739.7194354041, "alt": 99.903, "zone": 19.0}, "altitude": 99.903, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -73.10809326171875, "speed": 0.41135722398757935}}
{"events_within": [], "attitude": {"yaw": 0.5876620411872864, "roll": 0.6909052729606628, "pitch": -0.03471299260854721}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912589, "velocity": {"y": 20.19, "x": 15.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437970.034738041, "x": 322749.4884520628, "alt": 99.959, "zone": 19.0}, "altitude": 99.959, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -59.971107482910156, "speed": 0.4062213897705078}}
{"events_within": [], "attitude": {"yaw": 0.7610190510749817, "roll": 0.6926919221878052, "pitch": -0.03827046975493431}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912589, "velocity": {"y": 17.22, "x": 18.72}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437984.261489907, "x": 322762.13296396367, "alt": 100.022, "zone": 19.0}, "altitude": 100.022, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -50.45703125, "speed": 0.4028652012348175}}
{"events_within": [], "attitude": {"yaw": 0.9375700354576111, "roll": 0.6950676441192627, "pitch": -0.035217780619859695}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912589, "velocity": {"y": 13.63, "x": 21.45}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437995.802289701, "x": 322776.7057491044, "alt": 100.036, "zone": 19.0}, "altitude": 100.036, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -39.52823257446289, "speed": 0.3984113931655884}}
{"events_within": [], "attitude": {"yaw": 1.116037368774414, "roll": 0.6952928900718689, "pitch": -0.03891400247812271}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912589, "velocity": {"y": 9.66, "x": 23.54}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438004.842914988, "x": 322793.5379517148, "alt": 100.048, "zone": 19.0}, "altitude": 100.048, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -33.45124053955078, "speed": 0.395600289106369}}
{"events_within": [], "attitude": {"yaw": 1.2912256717681885, "roll": 0.6945070624351501, "pitch": -0.038846928626298904}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912590, "velocity": {"y": 5.41, "x": 24.900000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438010.6155491, "x": 322811.2048456596, "alt": 100.032, "zone": 19.0}, "altitude": 100.032, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -20.1051025390625, "speed": 0.3897548019886017}}
{"events_within": [], "attitude": {"yaw": 1.4717861413955688, "roll": 0.6863595247268677, "pitch": -0.03604713827371597}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912590, "velocity": {"y": 0.85, "x": 25.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.253722058, "x": 322830.1730987191, "alt": 100.02, "zone": 19.0}, "altitude": 100.02, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -10.14708137512207, "speed": 0.38606032729148865}}
{"events_within": [], "attitude": {"yaw": 1.6442294120788574, "roll": 0.689146876335144, "pitch": -0.03713352978229523}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912590, "velocity": {"y": -3.5, "x": 25.16}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.593128457, "x": 322848.70959901426, "alt": 100.016, "zone": 19.0}, "altitude": 100.016, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -2.914680242538452, "speed": 0.3837661147117615}}
{"events_within": [], "attitude": {"yaw": 1.8205410242080688, "roll": 0.6927575469017029, "pitch": -0.041277848184108734}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912590, "velocity": {"y": -7.88, "x": 24.25}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.614520797, "x": 322867.3938152795, "alt": 100.01, "zone": 19.0}, "altitude": 100.01, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 10.234342575073242, "speed": 0.37907636165618896}}
{"events_within": [], "attitude": {"yaw": 1.9952280521392822, "roll": 0.694843590259552, "pitch": -0.03721342608332634}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912590, "velocity": {"y": -12.0, "x": 22.52}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438001.603203717, "x": 322884.70829273737, "alt": 99.961, "zone": 19.0}, "altitude": 99.961, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 20.786344528198242, "speed": 0.37389472126960754}}
{"events_within": [], "attitude": {"yaw": 2.174689531326294, "roll": 0.6911304593086243, "pitch": -0.03807751461863518}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912591, "velocity": {"y": -15.76, "x": 19.990000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.4425607165, "x": 322900.8824219238, "alt": 99.98700000000001, "zone": 19.0}, "altitude": 99.98700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 27.926807403564453, "speed": 0.3720991909503937}}
{"events_within": [], "attitude": {"yaw": 2.345792055130005, "roll": 0.6903274059295654, "pitch": -0.04000312462449074}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912591, "velocity": {"y": -18.990000000000002, "x": 17.04}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437978.92464331, "x": 322914.6801677553, "alt": 99.971, "zone": 19.0}, "altitude": 99.971, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 37.415828704833984, "speed": 0.3694206774234772}}
{"events_within": [], "attitude": {"yaw": 2.527949094772339, "roll": 0.6914342641830444, "pitch": -0.03494827821850777}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912591, "velocity": {"y": -21.75, "x": 13.27}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437963.7566255685, "x": 322926.39395636483, "alt": 99.967, "zone": 19.0}, "altitude": 99.967, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 48.141910552978516, "speed": 0.3647257387638092}}
{"events_within": [], "attitude": {"yaw": 2.699289321899414, "roll": 0.6896476745605469, "pitch": -0.03972431644797325}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912591, "velocity": {"y": -23.7, "x": 9.4}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.290364013, "x": 322934.96719206555, "alt": 99.982, "zone": 19.0}, "altitude": 99.982, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 61.87469482421875, "speed": 0.3607366681098938}}
{"events_within": [], "attitude": {"yaw": 2.8795509338378906, "roll": 0.6936593055725098, "pitch": -0.036890894174575806}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912591, "velocity": {"y": -25.02, "x": 4.96}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437929.055391965, "x": 322940.69662938674, "alt": 99.96600000000001, "zone": 19.0}, "altitude": 99.96600000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 69.29867553710938, "speed": 0.35937240719795227}}
{"events_within": [], "attitude": {"yaw": 2.995079755783081, "roll": 0.6898534297943115, "pitch": -0.0366319976747036}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912592, "velocity": {"y": -25.39, "x": 2.05}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437916.594280678, "x": 322942.6523128107, "alt": 99.98100000000001, "zone": 19.0}, "altitude": 99.98100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 79.77857971191406, "speed": 0.3577622175216675}}
{"events_within": [], "attitude": {"yaw": -3.054034471511841, "roll": 0.6941954493522644, "pitch": -0.03621887415647507}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912592, "velocity": {"y": -25.16, "x": -3.89}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437891.5873621795, "x": 322942.1601635566, "alt": 99.994, "zone": 19.0}, "altitude": 99.994, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.34071350097656, "speed": 0.35658949613571167}}
{"events_within": [], "attitude": {"yaw": -2.937055826187134, "roll": 0.6924550533294678, "pitch": -0.03646154701709747}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912592, "velocity": {"y": -24.53, "x": -6.8}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.2744995225, "x": 322939.69829861796, "alt": 100.015, "zone": 19.0}, "altitude": 100.015, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 101.4461669921875, "speed": 0.3561057150363922}}
{"events_within": [], "attitude": {"yaw": -2.702691078186035, "roll": 0.6912012100219727, "pitch": -0.03831605985760689}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912592, "velocity": {"y": -22.25, "x": -12.290000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437855.946662662, "x": 322930.5809020406, "alt": 100.032, "zone": 19.0}, "altitude": 100.032, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 116.13501739501953, "speed": 0.3578275144100189}}
{"events_within": [], "attitude": {"yaw": -2.5277645587921143, "roll": 0.6919550895690918, "pitch": -0.03845672681927681}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912592, "velocity": {"y": -19.740000000000002, "x": -15.98}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437840.403386649, "x": 322920.4353923964, "alt": 100.01, "zone": 19.0}, "altitude": 100.01, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 128.0178985595703, "speed": 0.36071208119392395}}
{"events_within": [], "attitude": {"yaw": -2.3481509685516357, "roll": 0.6878855228424072, "pitch": -0.03512285649776459}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912593, "velocity": {"y": -16.53, "x": -19.240000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437826.53228719, "x": 322907.32908984803, "alt": 100.005, "zone": 19.0}, "altitude": 100.005, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 135.31243896484375, "speed": 0.3625481426715851}}
{"events_within": [], "attitude": {"yaw": -2.178067684173584, "roll": 0.6892986297607422, "pitch": -0.039046481251716614}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912593, "velocity": {"y": -13.06, "x": -21.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.5068294555, "x": 322892.46704451006, "alt": 99.997, "zone": 19.0}, "altitude": 99.997, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 149.1946563720703, "speed": 0.36905863881111145}}
{"events_within": [], "attitude": {"yaw": -2.000835657119751, "roll": 0.6941255331039429, "pitch": -0.03981877118349075}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912593, "velocity": {"y": -9.040000000000001, "x": -23.82}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437806.927421739, "x": 322875.405812576, "alt": 99.93900000000001, "zone": 19.0}, "altitude": 99.93900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 156.2830352783203, "speed": 0.3730955421924591}}
{"events_within": [], "attitude": {"yaw": -1.826158881187439, "roll": 0.6942105889320374, "pitch": -0.035798121243715286}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912593, "velocity": {"y": -4.72, "x": -25.05}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.593723981, "x": 322857.5105457085, "alt": 99.912, "zone": 19.0}, "altitude": 99.912, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 169.74961853027344, "speed": 0.3799658715724945}}
{"events_within": [], "attitude": {"yaw": -1.7090734243392944, "roll": 0.6931633949279785, "pitch": -0.037081021815538406}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912593, "velocity": {"y": -1.78, "x": -25.41}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.7915587835, "x": 322845.05946710217, "alt": 99.91, "zone": 19.0}, "altitude": 99.91, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 176.1449737548828, "speed": 0.3826824426651001}}
{"events_within": [], "attitude": {"yaw": -1.5303577184677124, "roll": 0.6943297982215881, "pitch": -0.03671381622552872}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912594, "velocity": {"y": 2.77, "x": -25.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.848624615, "x": 322825.91720007174, "alt": 99.89, "zone": 19.0}, "altitude": 99.89, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -174.6149444580078, "speed": 0.38770273327827454}}
{"events_within": [], "attitude": {"yaw": -1.355355978012085, "roll": 0.692486584186554, "pitch": -0.035185307264328}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912594, "velocity": {"y": 7.15, "x": -24.490000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437803.18969667, "x": 322807.5174945267, "alt": 99.87, "zone": 19.0}, "altitude": 99.87, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -164.09930419921875, "speed": 0.39229169487953186}}
{"events_within": [], "attitude": {"yaw": -1.177890658378601, "roll": 0.6918016076087952, "pitch": -0.03345036506652832}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912594, "velocity": {"y": 11.370000000000001, "x": -22.78}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.84115914, "x": 322789.57437676366, "alt": 99.894, "zone": 19.0}, "altitude": 99.894, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -154.36961364746094, "speed": 0.3968195617198944}}
{"events_within": [], "attitude": {"yaw": -1.0074646472930908, "roll": 0.6925314664840698, "pitch": -0.03393346816301346}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912594, "velocity": {"y": 15.08, "x": -20.490000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437819.260751192, "x": 322773.54433620884, "alt": 99.932, "zone": 19.0}, "altitude": 99.932, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -144.6554718017578, "speed": 0.3996160924434662}}
{"events_within": [], "attitude": {"yaw": -0.8292270302772522, "roll": 0.6947801113128662, "pitch": -0.034686680883169174}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912594, "velocity": {"y": 18.490000000000002, "x": -17.51}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437831.63752456, "x": 322758.9780203086, "alt": 99.929, "zone": 19.0}, "altitude": 99.929, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -135.4781036376953, "speed": 0.4037282466888428}}
{"events_within": [], "attitude": {"yaw": -0.5963992476463318, "roll": 0.7006540894508362, "pitch": -0.0371098592877388}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912595, "velocity": {"y": 22.12, "x": -12.83}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437851.447832154, "x": 322743.5680409657, "alt": 99.897, "zone": 19.0}, "altitude": 99.897, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -123.66043853759766, "speed": 0.4070132374763489}}
{"events_within": [], "attitude": {"yaw": -0.41770637035369873, "roll": 0.6975478529930115, "pitch": -0.03262228146195412}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912595, "velocity": {"y": 24.060000000000002, "x": -8.67}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437868.244614826, "x": 322735.3472526809, "alt": 99.858, "zone": 19.0}, "altitude": 99.858, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -117.15514373779297, "speed": 0.40811705589294434}}
{"events_within": [], "attitude": {"yaw": -0.30198535323143005, "roll": 0.695219099521637, "pitch": -0.03388458117842674}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912595, "velocity": {"y": 24.900000000000002, "x": -5.8100000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437880.272454921, "x": 322731.5640013864, "alt": 99.881, "zone": 19.0}, "altitude": 99.881, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -108.2942886352539, "speed": 0.40711790323257446}}
{"events_within": [], "attitude": {"yaw": -0.06511014699935913, "roll": 0.6957994699478149, "pitch": -0.03272533416748047}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912595, "velocity": {"y": 25.53, "x": 0.16}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437905.18808024, "x": 322728.298221825, "alt": 99.884, "zone": 19.0}, "altitude": 99.884, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -99.13346862792969, "speed": 0.4062584638595581}}
{"events_within": [], "attitude": {"yaw": 0.11009673774242401, "roll": 0.6951171159744263, "pitch": -0.0357026606798172}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912595, "velocity": {"y": 25.09, "x": 4.62}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437924.265387108, "x": 322729.8065090671, "alt": 99.932, "zone": 19.0}, "altitude": 99.932, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -86.5051040649414, "speed": 0.40311282873153687}}
{"events_within": [], "attitude": {"yaw": 0.28213614225387573, "roll": 0.6989724636077881, "pitch": -0.03661637008190155}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912596, "velocity": {"y": 23.97, "x": 8.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437942.252579438, "x": 322734.45459571434, "alt": 99.92, "zone": 19.0}, "altitude": 99.92, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -76.74562072753906, "speed": 0.40009641647338867}}
{"events_within": [], "attitude": {"yaw": 0.46389487385749817, "roll": 0.699474036693573, "pitch": -0.03540094569325447}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912596, "velocity": {"y": 22.01, "x": 13.07}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437959.676556442, "x": 322742.439485754, "alt": 99.882, "zone": 19.0}, "altitude": 99.882, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -67.59962463378906, "speed": 0.3967151939868927}}
{"events_within": [], "attitude": {"yaw": 0.642687976360321, "roll": 0.6938298940658569, "pitch": -0.03273046016693115}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912596, "velocity": {"y": 19.31, "x": 16.740000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437974.978591034, "x": 322753.16131834296, "alt": 99.932, "zone": 19.0}, "altitude": 99.932, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -57.721336364746094, "speed": 0.390805721282959}}
{"events_within": [], "attitude": {"yaw": 0.8183218240737915, "roll": 0.6965909004211426, "pitch": -0.036628395318984985}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912596, "velocity": {"y": 16.09, "x": 19.84}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437988.471778321, "x": 322766.704798617, "alt": 99.98, "zone": 19.0}, "altitude": 99.98, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -51.082603454589844, "speed": 0.3879591226577759}}
{"events_within": [], "attitude": {"yaw": 0.992702841758728, "roll": 0.7007353901863098, "pitch": -0.03658551350235939}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912596, "velocity": {"y": 12.41, "x": 22.35}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437999.175215744, "x": 322782.0196315754, "alt": 99.933, "zone": 19.0}, "altitude": 99.933, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -41.622554779052734, "speed": 0.38293135166168213}}
{"events_within": [], "attitude": {"yaw": 1.1752779483795166, "roll": 0.6889640092849731, "pitch": -0.031006639823317528}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912597, "velocity": {"y": 8.08, "x": 24.12}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438007.164269099, "x": 322799.4648167649, "alt": 99.992, "zone": 19.0}, "altitude": 99.992, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -30.569408416748047, "speed": 0.37586143612861633}}
{"events_within": [], "attitude": {"yaw": 1.3454575538635254, "roll": 0.689206063747406, "pitch": -0.033882733434438705}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912597, "velocity": {"y": 3.89, "x": 25.080000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.82207341, "x": 322817.42733921274, "alt": 100.06, "zone": 19.0}, "altitude": 100.06, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -19.882888793945312, "speed": 0.3715440332889557}}
{"events_within": [], "attitude": {"yaw": 1.523097276687622, "roll": 0.6896556615829468, "pitch": -0.03569652885198593}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912597, "velocity": {"y": -0.58, "x": 25.41}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.372609117, "x": 322836.4388014339, "alt": 100.081, "zone": 19.0}, "altitude": 100.081, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -5.666866779327393, "speed": 0.3674721419811249}}
{"events_within": [], "attitude": {"yaw": 1.6962939500808716, "roll": 0.6956254839897156, "pitch": -0.03720830753445625}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912597, "velocity": {"y": -4.95, "x": 25.04}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.666750847, "x": 322854.93355639407, "alt": 100.021, "zone": 19.0}, "altitude": 100.021, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 5.343449592590332, "speed": 0.3652208745479584}}
{"events_within": [], "attitude": {"yaw": 1.8762115240097046, "roll": 0.694999635219574, "pitch": -0.034743040800094604}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912597, "velocity": {"y": -9.33, "x": 23.7}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438006.605294274, "x": 322873.4007069342, "alt": 100.009, "zone": 19.0}, "altitude": 100.009, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 12.458588600158691, "speed": 0.3633117377758026}}
{"events_within": [], "attitude": {"yaw": 2.0503575801849365, "roll": 0.6889415979385376, "pitch": -0.0376105010509491}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912598, "velocity": {"y": -13.280000000000001, "x": 21.740000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.570819693, "x": 322890.21134573186, "alt": 100.037, "zone": 19.0}, "altitude": 100.037, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 22.504980087280273, "speed": 0.36280640959739685}}
{"events_within": [], "attitude": {"yaw": 2.166081428527832, "roll": 0.6903342008590698, "pitch": -0.037804003804922104}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912598, "velocity": {"y": -15.700000000000001, "x": 20.03}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.581799418, "x": 322900.6692492246, "alt": 100.023, "zone": 19.0}, "altitude": 100.023, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 34.15587615966797, "speed": 0.36205077171325684}}
{"events_within": [], "attitude": {"yaw": 2.3442859649658203, "roll": 0.6886077523231506, "pitch": -0.03722205013036728}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912598, "velocity": {"y": -19.0, "x": 16.9}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437978.760552136, "x": 322914.78485195, "alt": 99.994, "zone": 19.0}, "altitude": 99.994, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 44.66120147705078, "speed": 0.3627285063266754}}
{"events_within": [], "attitude": {"yaw": 2.5204524993896484, "roll": 0.6856042146682739, "pitch": -0.033738866448402405}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912598, "velocity": {"y": -21.650000000000002, "x": 13.280000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437964.038973459, "x": 322926.1269604328, "alt": 99.97800000000001, "zone": 19.0}, "altitude": 99.97800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 55.74225997924805, "speed": 0.3630411624908447}}
{"events_within": [], "attitude": {"yaw": 2.692634344100952, "roll": 0.6915767192840576, "pitch": -0.03877205774188042}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912598, "velocity": {"y": -23.64, "x": 9.41}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.211833197, "x": 322934.93553236197, "alt": 99.956, "zone": 19.0}, "altitude": 99.956, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 65.800048828125, "speed": 0.3657309114933014}}
{"events_within": [], "attitude": {"yaw": 2.8673453330993652, "roll": 0.6966890692710876, "pitch": -0.03784821555018425}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912599, "velocity": {"y": -25.01, "x": 5.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437929.519246405, "x": 322940.58466844296, "alt": 99.897, "zone": 19.0}, "altitude": 99.897, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 76.7988510131836, "speed": 0.36857178807258606}}
{"events_within": [], "attitude": {"yaw": 3.0482535362243652, "roll": 0.6915229558944702, "pitch": -0.03372573107481003}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912599, "velocity": {"y": -25.51, "x": 0.56}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437910.527007085, "x": 322943.0345833894, "alt": 99.904, "zone": 19.0}, "altitude": 99.904, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 83.35697174072266, "speed": 0.3697969317436218}}
{"events_within": [], "attitude": {"yaw": -3.1205227375030518, "roll": 0.6929188370704651, "pitch": -0.03551235422492027}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912599, "velocity": {"y": -25.39, "x": -2.33}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437898.00164865, "x": 322942.8016268764, "alt": 99.913, "zone": 19.0}, "altitude": 99.913, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 93.43206024169922, "speed": 0.37301042675971985}}
{"events_within": [], "attitude": {"yaw": -2.944518804550171, "roll": 0.689931333065033, "pitch": -0.03210695460438728}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912599, "velocity": {"y": -24.52, "x": -6.73}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437879.68671114, "x": 322939.7470309545, "alt": 99.96300000000001, "zone": 19.0}, "altitude": 99.96300000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 104.76942443847656, "speed": 0.3768713176250458}}
{"events_within": [], "attitude": {"yaw": -2.769291639328003, "roll": 0.6933857798576355, "pitch": -0.03501967713236809}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912599, "velocity": {"y": -22.95, "x": -10.92}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437861.713226554, "x": 322933.3695191286, "alt": 99.983, "zone": 19.0}, "altitude": 99.983, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 115.08072662353516, "speed": 0.38143107295036316}}
{"events_within": [], "attitude": {"yaw": -2.5982203483581543, "roll": 0.6908160448074341, "pitch": -0.03582972288131714}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912600, "velocity": {"y": -20.75, "x": -14.71}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437845.638664563, "x": 322924.21869961504, "alt": 99.986, "zone": 19.0}, "altitude": 99.986, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 124.91690826416016, "speed": 0.3851049244403839}}
{"events_within": [], "attitude": {"yaw": -2.420332431793213, "roll": 0.6999055743217468, "pitch": -0.037365131080150604}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912600, "velocity": {"y": -17.88, "x": -18.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437830.924400191, "x": 322912.0727003607, "alt": 99.937, "zone": 19.0}, "altitude": 99.937, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 131.7507781982422, "speed": 0.3887065351009369}}
{"events_within": [], "attitude": {"yaw": -2.242550849914551, "roll": 0.6974685192108154, "pitch": -0.03391984850168228}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912600, "velocity": {"y": -14.43, "x": -21.080000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.836283583, "x": 322897.8238489085, "alt": 99.901, "zone": 19.0}, "altitude": 99.901, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 144.53256225585938, "speed": 0.39376282691955566}}
{"events_within": [], "attitude": {"yaw": -2.1253879070281982, "roll": 0.6955323219299316, "pitch": -0.03335592523217201}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912600, "velocity": {"y": -11.82, "x": -22.61}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437812.211085592, "x": 322887.12620896846, "alt": 99.909, "zone": 19.0}, "altitude": 99.909, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 150.45472717285156, "speed": 0.3951817452907562}}
{"events_within": [], "attitude": {"yaw": -1.945692777633667, "roll": 0.6944443583488464, "pitch": -0.03136373683810234}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912600, "velocity": {"y": -7.57, "x": -24.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437804.629143746, "x": 322869.51210109115, "alt": 99.933, "zone": 19.0}, "altitude": 99.933, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 159.66017150878906, "speed": 0.39801257848739624}}
{"events_within": [], "attitude": {"yaw": -1.7729517221450806, "roll": 0.6978117823600769, "pitch": -0.03206007555127144}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912601, "velocity": {"y": -3.24, "x": -25.240000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.343429878, "x": 322851.3144676122, "alt": 99.95700000000001, "zone": 19.0}, "altitude": 99.95700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 170.36669921875, "speed": 0.40000104904174805}}
{"events_within": [], "attitude": {"yaw": -1.5950345993041992, "roll": 0.6941412687301636, "pitch": -0.03363402187824249}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912601, "velocity": {"y": 1.26, "x": -25.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.280398959, "x": 322832.24976185773, "alt": 100.008, "zone": 19.0}, "altitude": 100.008, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 179.22579956054688, "speed": 0.40201684832572937}}
{"events_within": [], "attitude": {"yaw": -1.423275113105774, "roll": 0.7001647353172302, "pitch": -0.03553425520658493}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912601, "velocity": {"y": 5.62, "x": -24.93}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.484973387, "x": 322813.7098469614, "alt": 99.991, "zone": 19.0}, "altitude": 99.991, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -174.9860076904297, "speed": 0.4019889235496521}}
{"events_within": [], "attitude": {"yaw": -1.242666244506836, "roll": 0.6982117891311646, "pitch": -0.03247225657105446}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912601, "velocity": {"y": 10.02, "x": -23.490000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437807.070112964, "x": 322795.3143387247, "alt": 99.933, "zone": 19.0}, "altitude": 99.933, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -165.00167846679688, "speed": 0.4017656445503235}}
{"events_within": [], "attitude": {"yaw": -1.0677415132522583, "roll": 0.6897466778755188, "pitch": -0.031675033271312714}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912601, "velocity": {"y": 13.950000000000001, "x": -21.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.577180532, "x": 322778.76104332285, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -152.45037841796875, "speed": 0.40056145191192627}}
{"events_within": [], "attitude": {"yaw": -0.8932577967643738, "roll": 0.7013744115829468, "pitch": -0.034013550728559494}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912602, "velocity": {"y": 17.5, "x": -18.63}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437827.114046718, "x": 322763.4599238285, "alt": 99.93900000000001, "zone": 19.0}, "altitude": 99.93900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -143.2664794921875, "speed": 0.3990149199962616}}
{"events_within": [], "attitude": {"yaw": -0.7752347588539124, "roll": 0.6978927254676819, "pitch": -0.03333521634340286}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912602, "velocity": {"y": 19.59, "x": -16.44}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437836.130546518, "x": 322754.6143323701, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -137.3349609375, "speed": 0.3969823718070984}}
{"events_within": [], "attitude": {"yaw": -0.5398736596107483, "roll": 0.6924811005592346, "pitch": -0.0320705771446228}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912602, "velocity": {"y": 22.88, "x": -11.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437856.926428044, "x": 322740.4474944377, "alt": 99.979, "zone": 19.0}, "altitude": 99.979, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -124.53194427490234, "speed": 0.39232882857322693}}
{"events_within": [], "attitude": {"yaw": -0.42237553000450134, "roll": 0.6984062194824219, "pitch": -0.034827716648578644}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912602, "velocity": {"y": 24.02, "x": -8.63}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437868.420621298, "x": 322735.2758421238, "alt": 99.983, "zone": 19.0}, "altitude": 99.983, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -117.5162124633789, "speed": 0.38999825716018677}}
{"events_within": [], "attitude": {"yaw": -0.2487422078847885, "roll": 0.695245623588562, "pitch": -0.035023000091314316}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912602, "velocity": {"y": 25.17, "x": -4.3500000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437886.338075897, "x": 322730.19978260226, "alt": 99.96000000000001, "zone": 19.0}, "altitude": 99.96000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -107.58715057373047, "speed": 0.38491764664649963}}
{"events_within": [], "attitude": {"yaw": -0.009703477844595909, "roll": 0.6908704042434692, "pitch": -0.029802560806274414}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912603, "velocity": {"y": 25.42, "x": 1.75}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437911.324722739, "x": 322728.48471328063, "alt": 99.95, "zone": 19.0}, "altitude": 99.95, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -97.22295379638672, "speed": 0.38139596581459045}}
{"events_within": [], "attitude": {"yaw": 0.16397514939308167, "roll": 0.6934027075767517, "pitch": -0.03592127561569214}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912603, "velocity": {"y": 24.76, "x": 6.1000000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437930.218606329, "x": 322731.1303284799, "alt": 99.95700000000001, "zone": 19.0}, "altitude": 99.95700000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -86.31336975097656, "speed": 0.3774833083152771}}
{"events_within": [], "attitude": {"yaw": 0.33780691027641296, "roll": 0.6939393281936646, "pitch": -0.03612625226378441}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912603, "velocity": {"y": 23.400000000000002, "x": 10.32}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437947.854411485, "x": 322736.8610920383, "alt": 99.926, "zone": 19.0}, "altitude": 99.926, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -76.73070526123047, "speed": 0.37528201937675476}}
{"events_within": [], "attitude": {"yaw": 0.519047200679779, "roll": 0.6972947120666504, "pitch": -0.03079293668270111}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912603, "velocity": {"y": 21.150000000000002, "x": 14.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437964.747933769, "x": 322745.87427631964, "alt": 99.896, "zone": 19.0}, "altitude": 99.896, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -66.50382995605469, "speed": 0.37102895975112915}}
{"events_within": [], "attitude": {"yaw": 0.6336091160774231, "roll": 0.6914600133895874, "pitch": -0.03482883796095848}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912603, "velocity": {"y": 19.400000000000002, "x": 16.7}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437974.873886563, "x": 322753.42400431226, "alt": 99.926, "zone": 19.0}, "altitude": 99.926, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -56.96384048461914, "speed": 0.3685418665409088}}
{"events_within": [], "attitude": {"yaw": 0.8700979948043823, "roll": 0.6964722871780396, "pitch": -0.03148829936981201}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912604, "velocity": {"y": 14.92, "x": 20.77}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437992.182362294, "x": 322771.7419323721, "alt": 99.911, "zone": 19.0}, "altitude": 99.911, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -45.82864761352539, "speed": 0.3649566173553467}}
{"events_within": [], "attitude": {"yaw": 1.0475026369094849, "roll": 0.6913689970970154, "pitch": -0.029904251918196678}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912604, "velocity": {"y": 11.0, "x": 22.990000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438001.9226414375, "x": 322787.65081858326, "alt": 99.974, "zone": 19.0}, "altitude": 99.974, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -31.11336898803711, "speed": 0.36139604449272156}}
{"events_within": [], "attitude": {"yaw": 1.226027011871338, "roll": 0.6935088038444519, "pitch": -0.03184047341346741}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912604, "velocity": {"y": 6.73, "x": 24.5}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.932131913, "x": 322805.47226692253, "alt": 99.996, "zone": 19.0}, "altitude": 99.996, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -19.552125930786133, "speed": 0.36090806126594543}}
{"events_within": [], "attitude": {"yaw": 1.3995864391326904, "roll": 0.6898954510688782, "pitch": -0.03332892432808876}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912604, "velocity": {"y": 2.42, "x": 25.22}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438012.572581789, "x": 322823.62734633015, "alt": 100.04, "zone": 19.0}, "altitude": 100.04, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -7.781583309173584, "speed": 0.36117395758628845}}
{"events_within": [], "attitude": {"yaw": 1.5721304416656494, "roll": 0.6910131573677063, "pitch": -0.039749033749103546}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912604, "velocity": {"y": -1.95, "x": 25.39}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.0346654095, "x": 322842.6484676991, "alt": 100.042, "zone": 19.0}, "altitude": 100.042, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 2.021104097366333, "speed": 0.364482045173645}}
{"events_within": [], "attitude": {"yaw": 1.7497104406356812, "roll": 0.6940357089042664, "pitch": -0.03419075906276703}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912605, "velocity": {"y": -6.41, "x": 24.7}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438010.282320524, "x": 322861.05115404207, "alt": 99.985, "zone": 19.0}, "altitude": 99.985, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 13.303277015686035, "speed": 0.36814406514167786}}
{"events_within": [], "attitude": {"yaw": 1.930375337600708, "roll": 0.6902904510498047, "pitch": -0.03329180181026459}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912605, "velocity": {"y": -10.72, "x": 23.12}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438004.145451697, "x": 322879.1500054644, "alt": 99.989, "zone": 19.0}, "altitude": 99.989, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 20.230777740478516, "speed": 0.3697679340839386}}
{"events_within": [], "attitude": {"yaw": 2.047454595565796, "roll": 0.6881664991378784, "pitch": -0.031154921278357506}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912605, "velocity": {"y": -13.34, "x": 21.66}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.373625532, "x": 322890.32522633637, "alt": 99.997, "zone": 19.0}, "altitude": 99.997, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 30.306838989257812, "speed": 0.37427398562431335}}
{"events_within": [], "attitude": {"yaw": 2.2812159061431885, "roll": 0.6917927265167236, "pitch": -0.03319043666124344}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912605, "velocity": {"y": -17.990000000000002, "x": 18.0}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437983.206201931, "x": 322910.2964623608, "alt": 99.997, "zone": 19.0}, "altitude": 99.997, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 41.284610748291016, "speed": 0.3788391947746277}}
{"events_within": [], "attitude": {"yaw": 2.3984854221343994, "roll": 0.6885068416595459, "pitch": -0.03226199746131897}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912605, "velocity": {"y": -19.96, "x": 15.74}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437973.970425803, "x": 322918.8116689953, "alt": 100.008, "zone": 19.0}, "altitude": 100.008, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 51.21448516845703, "speed": 0.38390523195266724}}
{"events_within": [], "attitude": {"yaw": 2.5688624382019043, "roll": 0.69130939245224, "pitch": -0.03309581056237221}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912606, "velocity": {"y": -22.37, "x": 12.120000000000001}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437958.650546049, "x": 322929.3039526702, "alt": 100.006, "zone": 19.0}, "altitude": 100.006, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 61.44805908203125, "speed": 0.3876607120037079}}
{"events_within": [], "attitude": {"yaw": 2.746922492980957, "roll": 0.6909859776496887, "pitch": -0.03403323143720627}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912606, "velocity": {"y": -24.150000000000002, "x": 7.98}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437941.344790067, "x": 322937.15909846115, "alt": 99.99000000000001, "zone": 19.0}, "altitude": 99.99000000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 70.93673706054688, "speed": 0.3932037949562073}}
{"events_within": [], "attitude": {"yaw": 2.919570207595825, "roll": 0.693988025188446, "pitch": -0.035949546843767166}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912606, "velocity": {"y": -25.27, "x": 3.74}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437923.3594790185, "x": 322941.73281951866, "alt": 99.985, "zone": 19.0}, "altitude": 99.985, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 77.19134521484375, "speed": 0.39661887288093567}}
{"events_within": [], "attitude": {"yaw": 3.101572275161743, "roll": 0.6933947205543518, "pitch": -0.03241351991891861}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912606, "velocity": {"y": -25.53, "x": -0.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437904.27496952, "x": 322943.12763526407, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 89.61116790771484, "speed": 0.4009735584259033}}
{"events_within": [], "attitude": {"yaw": -3.009821891784668, "roll": 0.6952425837516785, "pitch": -0.034488506615161896}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912606, "velocity": {"y": -25.03, "x": -5.26}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437885.786864891, "x": 322941.176529701, "alt": 99.928, "zone": 19.0}, "altitude": 99.928, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 98.70233154296875, "speed": 0.4019356071949005}}
{"events_within": [], "attitude": {"yaw": -2.8302133083343506, "roll": 0.6956546306610107, "pitch": -0.03303622454404831}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912607, "velocity": {"y": -23.67, "x": -9.65}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437867.394538649, "x": 322935.8497249211, "alt": 99.907, "zone": 19.0}, "altitude": 99.907, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 107.69828033447266, "speed": 0.40321531891822815}}
{"events_within": [], "attitude": {"yaw": -2.6555533409118652, "roll": 0.6934099197387695, "pitch": -0.029569832608103752}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912607, "velocity": {"y": -21.59, "x": -13.64}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437850.674000594, "x": 322927.54533518536, "alt": 99.934, "zone": 19.0}, "altitude": 99.934, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 117.74171447753906, "speed": 0.4030231535434723}}
{"events_within": [], "attitude": {"yaw": -2.477742910385132, "roll": 0.6959884166717529, "pitch": -0.03016537055373192}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912607, "velocity": {"y": -18.84, "x": -17.22}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437835.301032408, "x": 322916.17894029233, "alt": 99.961, "zone": 19.0}, "altitude": 99.961, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 126.81656646728516, "speed": 0.4026066064834595}}
{"events_within": [], "attitude": {"yaw": -2.2411417961120605, "roll": 0.6950116753578186, "pitch": -0.029845746234059334}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912607, "velocity": {"y": -14.24, "x": -21.150000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.569116867, "x": 322897.3436326809, "alt": 99.989, "zone": 19.0}, "altitude": 99.989, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 136.61856079101562, "speed": 0.39975205063819885}}
{"events_within": [], "attitude": {"yaw": -2.1229283809661865, "roll": 0.6947780251502991, "pitch": -0.03239935636520386}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912607, "velocity": {"y": -11.65, "x": -22.66}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437811.998411377, "x": 322886.6027127906, "alt": 100.008, "zone": 19.0}, "altitude": 100.008, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 146.06686401367188, "speed": 0.398232638835907}}
{"events_within": [], "attitude": {"yaw": -1.951926827430725, "roll": 0.6932336091995239, "pitch": -0.03473292291164398}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912608, "velocity": {"y": -7.6000000000000005, "x": -24.34}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437804.684451703, "x": 322869.50236622593, "alt": 100.025, "zone": 19.0}, "altitude": 100.025, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 156.45079040527344, "speed": 0.3955502212047577}}
{"events_within": [], "attitude": {"yaw": -1.7726235389709473, "roll": 0.6920050382614136, "pitch": -0.03400212898850441}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912608, "velocity": {"y": -3.12, "x": -25.35}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.353207153, "x": 322850.8023521496, "alt": 99.982, "zone": 19.0}, "altitude": 99.982, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 165.9064178466797, "speed": 0.3931165337562561}}
{"events_within": [], "attitude": {"yaw": -1.5970085859298706, "roll": 0.6906474232673645, "pitch": -0.029152993112802505}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912608, "velocity": {"y": 1.3800000000000001, "x": -25.45}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.411793218, "x": 322832.1710466582, "alt": 99.956, "zone": 19.0}, "altitude": 99.956, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 176.1106719970703, "speed": 0.38891515135765076}}
{"events_within": [], "attitude": {"yaw": -1.423622965812683, "roll": 0.6952570676803589, "pitch": -0.031968213617801666}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912608, "velocity": {"y": 5.7700000000000005, "x": -24.85}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437801.761611583, "x": 322813.20802998426, "alt": 99.938, "zone": 19.0}, "altitude": 99.938, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -174.10292053222656, "speed": 0.3864157795906067}}
{"events_within": [], "attitude": {"yaw": -1.2487248182296753, "roll": 0.6936569213867188, "pitch": -0.03080495074391365}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912608, "velocity": {"y": 10.02, "x": -23.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437807.249176848, "x": 322795.368727666, "alt": 99.927, "zone": 19.0}, "altitude": 99.927, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -163.43975830078125, "speed": 0.38351336121559143}}
{"events_within": [], "attitude": {"yaw": -1.0710488557815552, "roll": 0.6948710083961487, "pitch": -0.03331149369478226}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912609, "velocity": {"y": 14.030000000000001, "x": -21.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437815.989490128, "x": 322778.3566243878, "alt": 99.931, "zone": 19.0}, "altitude": 99.931, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -153.8142547607422, "speed": 0.38130828738212585}}
{"events_within": [], "attitude": {"yaw": -0.8970159292221069, "roll": 0.6911064386367798, "pitch": -0.03053727000951767}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912609, "velocity": {"y": 17.53, "x": -18.56}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437827.304620843, "x": 322763.53081541194, "alt": 99.91, "zone": 19.0}, "altitude": 99.91, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -143.37342834472656, "speed": 0.3770645260810852}}
{"events_within": [], "attitude": {"yaw": -0.7145402431488037, "roll": 0.6936014890670776, "pitch": -0.028756137937307358}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912609, "velocity": {"y": 20.59, "x": -15.07}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437841.398188413, "x": 322750.58425419556, "alt": 99.888, "zone": 19.0}, "altitude": 99.888, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -135.90480041503906, "speed": 0.37558889389038086}}
{"events_within": [], "attitude": {"yaw": -0.5437484979629517, "roll": 0.6895462870597839, "pitch": -0.033134713768959045}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912609, "velocity": {"y": 22.87, "x": -11.35}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437857.075854705, "x": 322740.6536502389, "alt": 99.908, "zone": 19.0}, "altitude": 99.908, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -122.11019134521484, "speed": 0.37277907133102417}}
{"events_within": [], "attitude": {"yaw": -0.4270683526992798, "roll": 0.6931081414222717, "pitch": -0.034116171300411224}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912609, "velocity": {"y": 24.05, "x": -8.63}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437868.5597611945, "x": 322735.51581434486, "alt": 99.891, "zone": 19.0}, "altitude": 99.891, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -115.54133605957031, "speed": 0.370973140001297}}
{"events_within": [], "attitude": {"yaw": -0.24406935274600983, "roll": 0.6918737292289734, "pitch": -0.028244884684681892}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912610, "velocity": {"y": 25.23, "x": -4.0600000000000005}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437886.9988217475, "x": 322730.4186844855, "alt": 99.872, "zone": 19.0}, "altitude": 99.872, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -105.22518157958984, "speed": 0.36996856331825256}}
{"events_within": [], "attitude": {"yaw": -0.07385638356208801, "roll": 0.6940048933029175, "pitch": -0.03103562444448471}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912610, "velocity": {"y": 25.5, "x": 0.25}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437905.453423282, "x": 322728.70295888116, "alt": 99.905, "zone": 19.0}, "altitude": 99.905, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -93.87665557861328, "speed": 0.3689384460449219}}
{"events_within": [], "attitude": {"yaw": 0.15968400239944458, "roll": 0.6962022185325623, "pitch": -0.032860130071640015}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912610, "velocity": {"y": 24.810000000000002, "x": 6.15}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437930.370683365, "x": 322731.44551270193, "alt": 99.857, "zone": 19.0}, "altitude": 99.857, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -79.77216339111328, "speed": 0.36883544921875}}
{"events_within": [], "attitude": {"yaw": 0.28051185607910156, "roll": 0.691392719745636, "pitch": -0.029557088389992714}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912610, "velocity": {"y": 23.88, "x": 9.1}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437942.45538518, "x": 322735.0286875438, "alt": 99.846, "zone": 19.0}, "altitude": 99.846, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -72.74763488769531, "speed": 0.36853981018066406}}
{"events_within": [], "attitude": {"yaw": 0.4593338668346405, "roll": 0.6927180886268616, "pitch": -0.02856387384235859}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912610, "velocity": {"y": 21.82, "x": 13.17}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437959.725559618, "x": 322743.08445055794, "alt": 99.852, "zone": 19.0}, "altitude": 99.852, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -62.11858367919922, "speed": 0.3706374168395996}}
{"events_within": [], "attitude": {"yaw": 0.6289053559303284, "roll": 0.6892121434211731, "pitch": -0.03303593024611473}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912611, "velocity": {"y": 19.32, "x": 16.69}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437974.904856065, "x": 322753.78409261844, "alt": 99.877, "zone": 19.0}, "altitude": 99.877, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -51.229793548583984, "speed": 0.37297937273979187}}
{"events_within": [], "attitude": {"yaw": 0.808142364025116, "roll": 0.6974535584449768, "pitch": -0.03209357336163521}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912611, "velocity": {"y": 16.080000000000002, "x": 19.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437988.431552978, "x": 322767.3351511015, "alt": 99.85900000000001, "zone": 19.0}, "altitude": 99.85900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -41.23008346557617, "speed": 0.37604841589927673}}
{"events_within": [], "attitude": {"yaw": 0.984042763710022, "roll": 0.6973131895065308, "pitch": -0.03152317926287651}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912611, "velocity": {"y": 12.370000000000001, "x": 22.37}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437999.045355206, "x": 322782.6185962374, "alt": 99.873, "zone": 19.0}, "altitude": 99.873, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -31.432741165161133, "speed": 0.3776739835739136}}
{"events_within": [], "attitude": {"yaw": 1.1671675443649292, "roll": 0.6981973052024841, "pitch": -0.025327168405056}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912611, "velocity": {"y": 8.09, "x": 24.21}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438007.056815561, "x": 322800.0716288897, "alt": 99.913, "zone": 19.0}, "altitude": 99.913, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -21.14581871032715, "speed": 0.38059964776039124}}
{"events_within": [], "attitude": {"yaw": 1.3370256423950195, "roll": 0.6926175355911255, "pitch": -0.03007603995501995}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912611, "velocity": {"y": 3.9, "x": 25.16}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.716044678, "x": 322818.0928585295, "alt": 100.003, "zone": 19.0}, "altitude": 100.003, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -10.565423965454102, "speed": 0.38370391726493835}}
{"events_within": [], "attitude": {"yaw": 1.512653112411499, "roll": 0.6986358761787415, "pitch": -0.035563331097364426}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912612, "velocity": {"y": -0.54, "x": 25.560000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438013.278292195, "x": 322837.12921102706, "alt": 100.009, "zone": 19.0}, "altitude": 100.009, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -1.1704282760620117, "speed": 0.38659676909446716}}
{"events_within": [], "attitude": {"yaw": 1.6944613456726074, "roll": 0.6938241720199585, "pitch": -0.027435271069407463}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912612, "velocity": {"y": -5.18, "x": 25.04}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438011.464260891, "x": 322855.7440765554, "alt": 100.029, "zone": 19.0}, "altitude": 100.029, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 4.893180847167969, "speed": 0.38760843873023987}}
{"events_within": [], "attitude": {"yaw": 1.8078575134277344, "roll": 0.694250226020813, "pitch": -0.03160823509097099}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912612, "velocity": {"y": -7.96, "x": 24.28}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5438008.418039294, "x": 322867.9943967408, "alt": 100.074, "zone": 19.0}, "altitude": 100.074, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 15.188932418823242, "speed": 0.38914206624031067}}
{"events_within": [], "attitude": {"yaw": 2.044522523880005, "roll": 0.6988588571548462, "pitch": -0.030441027134656906}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912612, "velocity": {"y": -13.42, "x": 21.71}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437998.223180901, "x": 322890.9918215093, "alt": 100.09100000000001, "zone": 19.0}, "altitude": 100.09100000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 28.126611709594727, "speed": 0.3902428150177002}}
{"events_within": [], "attitude": {"yaw": 2.1632039546966553, "roll": 0.6959844827651978, "pitch": -0.032932817935943604}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912612, "velocity": {"y": -15.870000000000001, "x": 19.96}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437991.145544568, "x": 322901.460267304, "alt": 100.11500000000001, "zone": 19.0}, "altitude": 100.11500000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 34.40531921386719, "speed": 0.3899708688259125}}
{"events_within": [], "attitude": {"yaw": 2.3417677879333496, "roll": 0.6926371455192566, "pitch": -0.032573968172073364}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912613, "velocity": {"y": -19.14, "x": 16.79}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437978.233440707, "x": 322915.4941575312, "alt": 100.125, "zone": 19.0}, "altitude": 100.125, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 44.1448974609375, "speed": 0.390764057636261}}
{"events_within": [], "attitude": {"yaw": 2.515756845474243, "roll": 0.6921511292457581, "pitch": -0.03288673982024193}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912613, "velocity": {"y": -21.77, "x": 13.25}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437963.465415319, "x": 322926.7534753048, "alt": 100.09, "zone": 19.0}, "altitude": 100.09, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 54.414588928222656, "speed": 0.39087745547294617}}
{"events_within": [], "attitude": {"yaw": 2.6945531368255615, "roll": 0.6934245824813843, "pitch": -0.03242284804582596}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912613, "velocity": {"y": -23.79, "x": 9.14}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437946.459211692, "x": 322935.50765153044, "alt": 100.043, "zone": 19.0}, "altitude": 100.043, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 60.94429397583008, "speed": 0.3900288939476013}}
{"events_within": [], "attitude": {"yaw": 2.868185520172119, "roll": 0.6908661127090454, "pitch": -0.033248066902160645}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912613, "velocity": {"y": -24.98, "x": 4.88}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437928.749820826, "x": 322940.92222947936, "alt": 100.018, "zone": 19.0}, "altitude": 100.018, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 74.24129486083984, "speed": 0.3899563252925873}}
{"events_within": [], "attitude": {"yaw": 3.0464367866516113, "roll": 0.694480299949646, "pitch": -0.03232007473707199}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912613, "velocity": {"y": -25.53, "x": 0.37}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437909.831632605, "x": 322943.2192975038, "alt": 99.973, "zone": 19.0}, "altitude": 99.973, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 83.48046112060547, "speed": 0.390129029750824}}
{"events_within": [], "attitude": {"yaw": -3.0596022605895996, "roll": 0.6916760206222534, "pitch": -0.032864537090063095}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912614, "velocity": {"y": -25.2, "x": -4.09}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437891.242579056, "x": 322942.14335999195, "alt": 99.947, "zone": 19.0}, "altitude": 99.947, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 94.32955932617188, "speed": 0.38888028264045715}}
{"events_within": [], "attitude": {"yaw": -2.88314151763916, "roll": 0.6893507838249207, "pitch": -0.032516684383153915}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912614, "velocity": {"y": -24.060000000000002, "x": -8.47}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437872.7050996255, "x": 322937.7011813592, "alt": 99.949, "zone": 19.0}, "altitude": 99.949, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 100.64013671875, "speed": 0.3877052366733551}}
{"events_within": [], "attitude": {"yaw": -2.7098541259765625, "roll": 0.693142831325531, "pitch": -0.0335574597120285}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912614, "velocity": {"y": -22.29, "x": -12.52}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437855.650467564, "x": 322930.27760854113, "alt": 99.916, "zone": 19.0}, "altitude": 99.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 109.9719467163086, "speed": 0.3870653212070465}}
{"events_within": [], "attitude": {"yaw": -2.5279366970062256, "roll": 0.688678503036499, "pitch": -0.027175650000572205}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912614, "velocity": {"y": -19.580000000000002, "x": -16.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437839.739697635, "x": 322919.637534835, "alt": 99.936, "zone": 19.0}, "altitude": 99.936, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 121.08244323730469, "speed": 0.3854350745677948}}
{"events_within": [], "attitude": {"yaw": -2.359969139099121, "roll": 0.6937338709831238, "pitch": -0.032921768724918365}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912614, "velocity": {"y": -16.57, "x": -19.36}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437826.318799826, "x": 322906.77204602043, "alt": 99.97200000000001, "zone": 19.0}, "altitude": 99.97200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 130.9639434814453, "speed": 0.384467214345932}}
{"events_within": [], "attitude": {"yaw": -2.241790294647217, "roll": 0.689877986907959, "pitch": -0.029712004587054253}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912615, "velocity": {"y": -14.13, "x": -21.18}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437818.590610768, "x": 322896.85640609136, "alt": 99.97200000000001, "zone": 19.0}, "altitude": 99.97200000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 141.0413055419922, "speed": 0.3826969563961029}}
{"events_within": [], "attitude": {"yaw": -2.0659868717193604, "roll": 0.6953884959220886, "pitch": -0.032501623034477234}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912615, "velocity": {"y": -10.22, "x": -23.38}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437809.165500337, "x": 322880.1933182842, "alt": 99.95400000000001, "zone": 19.0}, "altitude": 99.95400000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 148.3822479248047, "speed": 0.38249877095222473}}
{"events_within": [], "attitude": {"yaw": -1.890538215637207, "roll": 0.6937533020973206, "pitch": -0.028810584917664528}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912615, "velocity": {"y": -5.96, "x": -24.810000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437802.97357378, "x": 322862.637765182, "alt": 99.946, "zone": 19.0}, "altitude": 99.946, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 162.09597778320312, "speed": 0.38186925649642944}}
{"events_within": [], "attitude": {"yaw": -1.6566611528396606, "roll": 0.6924096941947937, "pitch": -0.02932792901992798}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912615, "velocity": {"y": -0.02, "x": -25.490000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437799.590063886, "x": 322837.6798932501, "alt": 99.929, "zone": 19.0}, "altitude": 99.929, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": 172.27859497070312, "speed": 0.3821055293083191}}
{"events_within": [], "attitude": {"yaw": -1.5400620698928833, "roll": 0.6923601031303406, "pitch": -0.029985299333930016}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912615, "velocity": {"y": 2.94, "x": -25.330000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437800.1064185165, "x": 322825.096966702, "alt": 99.93900000000001, "zone": 19.0}, "altitude": 99.93900000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -177.6554718017578, "speed": 0.3813197612762451}}
{"events_within": [], "attitude": {"yaw": -1.3100926876068115, "roll": 0.6985721588134766, "pitch": -0.029874533414840698}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912616, "velocity": {"y": 8.69, "x": -24.03}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437805.441681786, "x": 322800.5314357581, "alt": 99.933, "zone": 19.0}, "altitude": 99.933, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -167.89801025390625, "speed": 0.3821270167827606}}
{"events_within": [], "attitude": {"yaw": -1.1282457113265991, "roll": 0.7008112072944641, "pitch": -0.027956169098615646}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912616, "velocity": {"y": 12.89, "x": -22.080000000000002}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437813.269674213, "x": 322783.0044608064, "alt": 99.916, "zone": 19.0}, "altitude": 99.916, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -157.14532470703125, "speed": 0.3823138475418091}}
{"events_within": [], "attitude": {"yaw": -0.9535496830940247, "roll": 0.6950652599334717, "pitch": -0.02895941585302353}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912616, "velocity": {"y": 16.52, "x": -19.46}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437823.760076057, "x": 322767.6113054456, "alt": 99.938, "zone": 19.0}, "altitude": 99.938, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -143.1387939453125, "speed": 0.38243767619132996}}
{"events_within": [], "attitude": {"yaw": -0.7752603888511658, "roll": 0.6896098256111145, "pitch": -0.025313308462500572}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912616, "velocity": {"y": 19.69, "x": -16.12}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437837.137081092, "x": 322753.97728925303, "alt": 99.964, "zone": 19.0}, "altitude": 99.964, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -132.8776092529297, "speed": 0.38376694917678833}}
{"events_within": [], "attitude": {"yaw": -0.6061605215072632, "roll": 0.696302056312561, "pitch": -0.03078487701714039}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912616, "velocity": {"y": 22.16, "x": -12.58}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437852.238230804, "x": 322743.1796024845, "alt": 99.961, "zone": 19.0}, "altitude": 99.961, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -122.31241607666016, "speed": 0.3841360807418823}}
{"events_within": [], "attitude": {"yaw": -0.4280344545841217, "roll": 0.6969155073165894, "pitch": -0.029911234974861145}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912617, "velocity": {"y": 24.09, "x": -8.48}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437869.391307047, "x": 322734.992109495, "alt": 99.926, "zone": 19.0}, "altitude": 99.926, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -115.50221252441406, "speed": 0.3863087296485901}}
{"events_within": [], "attitude": {"yaw": -0.2517205774784088, "roll": 0.6990072131156921, "pitch": -0.027767205610871315}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912617, "velocity": {"y": 25.25, "x": -4.12}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437887.323329484, "x": 322730.05835105886, "alt": 99.9, "zone": 19.0}, "altitude": 99.9, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -102.20730590820312, "speed": 0.3886522948741913}}
{"events_within": [], "attitude": {"yaw": -0.07120415568351746, "roll": 0.6952999234199524, "pitch": -0.027374766767024994}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912617, "velocity": {"y": 25.580000000000002, "x": 0.47000000000000003}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437906.356271607, "x": 322728.3705238843, "alt": 99.929, "zone": 19.0}, "altitude": 99.929, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -92.71292877197266, "speed": 0.390492707490921}}
{"events_within": [], "attitude": {"yaw": 0.10288812220096588, "roll": 0.6975808143615723, "pitch": -0.029194848611950874}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912617, "velocity": {"y": 25.1, "x": 4.86}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437924.858907313, "x": 322730.0018716608, "alt": 99.946, "zone": 19.0}, "altitude": 99.946, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -86.48182678222656, "speed": 0.390594482421875}}
{"events_within": [], "attitude": {"yaw": 0.28105297684669495, "roll": 0.6936920881271362, "pitch": -0.02996658720076084}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912617, "velocity": {"y": 23.82, "x": 9.24}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437943.288467833, "x": 322735.02522089565, "alt": 99.959, "zone": 19.0}, "altitude": 99.959, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -73.28406524658203, "speed": 0.3919046223163605}}
{"events_within": [], "attitude": {"yaw": 0.45244988799095154, "roll": 0.6983834505081177, "pitch": -0.03162327781319618}, "target": {"y": 5438066.777663674, "x": 322809.0885914752, "mutex": 1.0, "num_wp": 4.0}, "timestamp": 1601912618, "velocity": {"y": 21.990000000000002, "x": 13.17}, "target_dir": {"y": -178.47192189691123, "x": 64.36479091178626}, "position": {"y": 5437960.088471195, "x": 322742.93297185516, "alt": 99.94800000000001, "zone": 19.0}, "altitude": 99.94800000000001, "nofly": [[[322796.16375333746, 5438250.825848085], [322678.1268212263, 5437956.05416451], [323075.4336759561, 5437889.640751129], [323001.00459137175, 5438272.032294986], [322796.16375333746, 5438250.825848085]]], "wind": {"speed_z": 0.0, "direction": -63.774837493896484, "speed": 0.3924412727355957}}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":107.05067509635319}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":107.05067509635319}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":114.05009266797336}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":118.47077745081577}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":122.68045363713533}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":124.64119363177475}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":125.2148700194009}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":128.31379692401768}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":130.180433434218}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":130.1275815354656}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":129.60109303406352}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":128.72722791536154}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":127.67706032364711}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":127.15177528480977}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":126.5453040984552}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":126.2452094081451}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":125.69935858533307}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":125.40199406952429}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":124.95317904565849}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":124.07272100317246}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":123.8074575352109}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":125.35406922546508}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":112.33829293610935}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":101.50529498689899}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":92.80239509900291}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":74.91260920173184}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":57.09316152549503}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":39.83676583577733}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":23.88331531126892}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.762240842598333}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":6.832409699878833}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":15.249724323145735}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":28.73407952377402}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":43.94681151325844}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":59.50155395888818}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.39874457016866}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":78.04298946553828}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":74.2470837138753}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.60764573801742}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.48660857095169}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.88079732486784}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.45731050621407}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.88787856199991}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.87233021373076}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.24122387362891}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.71737966775349}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":69.7254186575324}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.83327469528489}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":55.718607709176865}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":36.46953567486465}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":21.234938327556193}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":5.901971645452493}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":0.2004480199739073}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":15.180695186066858}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":29.915099789270585}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":44.340759412250016}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":56.141276894197446}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.35506506554226}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":84.18160492812437}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":100.13441365690518}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":114.16277987450228}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":127.5750867916957}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":138.48450605925527}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":128.71579271132313}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":119.06304275697694}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":109.50705881495352}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":100.19781729757015}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":91.1688448330211}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.15559029394069}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":76.28749260511815}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.40834738942998}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":68.15656757884288}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":59.001375757341044}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":43.256916894179675}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":29.815888001068856}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":12.34487299801239}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":5.911283022469695}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":22.163404839678286}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":38.70321049455034}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":52.41831341912379}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.07985569814294}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.91200309392566}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":99.03693674093348}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":114.06018033837144}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":118.14408709814778}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":116.65113484931922}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":103.57945184704482}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":89.93138764722057}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.89311219696789}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":64.02705728806792}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":48.26461558668994}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":32.09991029775641}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":17.29733972813064}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":1.460877299873003}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":10.875979856719438}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":25.99793367919226}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":38.84039808943115}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":52.81994316447379}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":70.92924343554363}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":88.81994763108125}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":105.74265502066827}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":119.32548448451396}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":130.96974243172164}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":141.91599070222398}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":139.75570595093137}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":123.4710944591634}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":109.00642387736981}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":94.2993278616371}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":78.77384300068495}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":62.88038020271709}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":46.59091687683778}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":30.311837936457515}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":16.842355616578487}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":7.311990027781002}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":12.305316553219656}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":19.949821587934792}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":29.61661838810075}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":40.98399203467786}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":53.34998154451441}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":58.19198464882026}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":61.94698087175772}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.1853502523196}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.35196316334985}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":76.15808112645703}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.32989935426143}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.0138693424894}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":84.62457609076297}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":87.40624079636088}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":90.91585489587845}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":94.84647882147077}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":99.61181357156906}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":108.74906765326324}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":111.968236598044}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":101.94906088695136}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":95.55323613741231}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":85.75893031557189}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":70.98023437404095}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":57.94542627057675}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":46.83596322522248}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":37.81580709777725}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":31.633264183819705}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":26.330368105388448}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":21.7565646840985}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":17.781680931849234}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":14.293354191401665}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":11.04367184478213}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.783200955509749}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":10.448708436941667}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":13.83045070229188}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":19.921058827802533}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":28.117869942085655}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":22.790273854425934}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.301682919663648}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":6.299249157109479}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":16.661803536403365}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":25.59017828998707}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":35.58107722801423}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":46.34263765618045}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":57.56499998686436}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":68.6995975711031}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.51062736114477}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":61.82237298168616}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":45.82227457444138}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":29.722691665765165}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":13.293674585047913}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.247134345946687}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":24.61328562175685}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":36.33986721362049}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":48.01304251625162}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":62.74233590714493}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.62870641904125}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":92.7630484465344}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":108.1091623863328}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":123.92922978139886}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":137.16649554702298}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":146.88952630478465}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":134.9321812038023}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":122.11282309344595}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":108.44952795184403}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":94.30746512207918}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.89072482681044}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.0935436749838}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.34352931499404}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":65.02168946029406}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":43.59476335157009}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":24.943723684765427}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.879179738128432}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":0.17152296898144195}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":1.3623661511414946}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":5.728152583610202}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":10.136255924099771}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":13.180383954126905}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":13.464456399132555}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.863375702109956}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":1.9898748511440563}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":0.9473176803736054}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":18.633285372559577}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":35.09002937947231}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":49.8895753161121}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":62.36753438976765}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.24769354861644}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.1481738564726}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.79703786638244}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.85490541723078}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.08437072027559}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.20462749775959}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":69.40582210558053}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":58.710291303644304}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":45.64508143094192}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":30.359386625380942}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":13.561245465293105}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":8.7614435522721}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":25.994198010189567}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":41.79908303672168}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":55.496756618908414}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":66.8390532971524}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.36742172429979}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":80.91254749562027}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.35724251575402}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.00718349513423}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.66905631817764}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.50023632176064}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":60.665803459919346}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":50.23532062903786}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":37.03586707294021}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":21.449438290049905}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":3.950269109607989}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":8.017046225568226}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":25.432671319440075}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":41.26828410158495}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":53.07172535408836}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":65.27015709906937}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":74.76305781782139}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":80.3099795356585}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.09060776845101}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.96652567919517}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":78.45766326511468}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":72.55396761999866}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":63.797182314915595}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":49.42152963943146}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":36.114398656340654}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":17.731129068176443}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":8.54863407728997}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":25.84457355726107}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":39.18636647862673}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":53.88448968575719}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":64.66392785762926}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":74.28228767109775}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":80.12416357464738}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.0587851645596}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.98370658304512}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.75911474496246}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.01053151526948}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.23353430160817}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":56.28951560340674}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":42.80746341884632}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":27.055068239650502}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":12.97858840883679}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":15.470902967229717}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":31.449393020928227}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":46.486535040718444}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":59.43817904740202}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":69.95966887905857}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.57370281296362}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.06074921859809}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.27395960887637}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":81.13045298382885}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.22019597073272}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":70.29860129406558}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":60.11088105750924}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":47.286781024848196}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":32.144392313854844}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":15.450364373276978}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":0.8340012995363649}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":15.01210897474896}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":31.87802445398463}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":46.95106339239049}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":59.961550955991605}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":70.32843280119037}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":77.83711950305546}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.20814341044807}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.3391726189772}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":81.2261320419909}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.8419736814763}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.47416616385814}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":56.181904672299105}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":42.56726690977883}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":26.78269112001958}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":12.664141066565342}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":3.0489473329886345}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":20.744744718372004}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":37.13524652857311}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":51.57830073872717}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":63.773274881998994}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.17149703092025}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.63630654334924}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.95475275412238}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.00486185098983}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.80047649230633}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.04812826611553}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":67.12179563879789}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":56.20810097287097}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":42.59593575693403}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":27.02773911297876}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.697951106288512}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":8.85086044607284}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":23.426785271146812}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":40.276382878023476}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":55.05356425217766}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":66.91122327800458}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":75.53223429368558}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":80.9952422271733}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.2524549865369}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.20027093628377}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.15282402817827}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":71.25363813112929}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":62.690343480179244}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":51.48689706139574}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":37.461114938407846}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":21.432161283274212}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":3.7372224737491813}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":3.9888509550485876}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":20.975366436383883}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":37.16631349137516}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":51.5460705259234}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":63.74488887948218}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":73.1613671612442}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.64533947703231}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":82.92727444165315}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":83.45797120035762}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":79.97825096355311}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":74.93103779941501}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":66.80769320900262}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":55.784832338037724}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":42.03715288600277}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":26.37152820603479}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":9.026781383982899}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":true,"all_ok_capturing":true,"depth_into_poly":null}
{"flying_in_safe_zones":false,"all_ok_capturing":true,"depth_into_poly":3.754815869121738}

This specification estimates the trajectory of a flying UAV to assess if it will reach its target destination.

The input streams are data on the state of the vehicle at every instant and its target destination.

The output stream shows how close to the target destination will the vehicle fly.

format JSON
use theory Geometry2D
use theory SimulatedGuidance
use theory GuidanceTheory
use haskell Data.Either


#HASKELL
fst3 (x,_,_) = x
snd3 (_,y,_) = y
thd3 (_,_,z) = z

fst5 (x,_,_,_,_) = x
#ENDOFHASKELL


input NonLinearData navigation_data
input        Point2 target
input       Vector2 target_dir
input       Vector2 velocity
input        Point2 position

output Double intersDistance = let
  r0 = '(,) (position [now]) (velocity [now])
  r1 = '(,) (target [now])   (target_dir [now])
  in '(fromRight (-1)) (2'intersectionDistance r0 r1)

define (Matrix, Double, Double) kfuStream = let
  inroll            = 'initial_roll (navigation_data [now])
  prev_initial_roll = 'initial_roll (navigation_data [-1|navigation_data [now]])
  dt                = 0.05
  kfp               = 3'kalman_filter_predict (navigation_data [now]) 1 (tau [-1|0.5])
  roll_pred         = 'fst kfp
  tau_pred          = 'snd kfp
  dfltM             = '(M [[0.01,0],[0,0.01]])
  in
  7'kalman_filter_update (matrix_kfiltered [-1| dfltM]) prev_initial_roll (tau [-1|0.5]) inroll roll_pred tau_pred dt

define Matrix matrix_kfiltered = 'fst3 (kfuStream [now])

define Double tau = 'thd3 (kfuStream [now])

define ([Point2], Double, Bool, Double, Double) simulated_guidance = 3'simulate_guidance_logic (navigation_data [now]) (tau [now]) 200

define [Point2] simulated_guidance_wps = 'fst5 (simulated_guidance [now])

define (Double, Double) speed_integral = 'getVelIntegral (set_speed [-1|21]) (integral_for_speed [-1|0]) (simulated_guidance [now])

define Double set_speed = 'fst (speed_integral [now])

define Double integral_for_speed = 'snd (speed_integral [now])

define Estimation estim_data = 'simulate_guidance (tau [now]) (navigation_data [now])

define Double err = 21 - 'dist (estim_data [now]) / 'time (estim_data [now])

define Double err_int = if 3'isSaturated (pi_controller [-1|21]) 15 30 then
  err_int [-1|0] else err_int [-1|0] + err [now] * 0.03

define Double pi_controller = 3'saturate (21 + err [now] * 0.5 + err_int [now]) 15 30
{"taginfo": {"evcount": 0, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438101.718241488, "x": 322868.7745176164}, "initial_roll": 0.2884671986103058, "vel_w": 1.8544114828109741, "initial_yaw": 0.30131933093070984, "vel_a": 25.107425689697266, "gamma": 3.4105344563402102}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": 23.740000000000002, "x": 7.82}, "timestamp": 1601570633, "position": {"y": 5438101.718241488, "x": 322868.7745176164, "alt": 51.656, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 15.40923023223877, "speed": 1.8544114828109741}}
{"taginfo": {"evcount": 1, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438182.979960147, "x": 322929.6308589338}, "initial_roll": 0.6305708885192871, "vel_w": 2.1837520599365234, "initial_yaw": 1.040719747543335, "vel_a": 24.76082992553711, "gamma": 3.865705887666229}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": 11.39, "x": 21.14}, "timestamp": 1601570634, "position": {"y": 5438182.979960147, "x": 322929.6308589338, "alt": 78.212, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 41.48863220214844, "speed": 2.1837520599365234}}
{"taginfo": {"evcount": 2, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438168.033789219, "x": 323029.21059812297}, "initial_roll": 0.7678788304328918, "vel_w": 2.5750961303710938, "initial_yaw": 2.3385415077209473, "vel_a": 23.34532356262207, "gamma": 4.176011226032728}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": -17.61, "x": 15.69}, "timestamp": 1601570635, "position": {"y": 5438168.033789219, "x": 323029.21059812297, "alt": 98.84400000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 59.267818450927734, "speed": 2.5750961303710938}}
{"taginfo": {"evcount": 3, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438080.984757278, "x": 323057.5974267876}, "initial_roll": 0.7021136283874512, "vel_w": 2.849799156188965, "initial_yaw": -3.0283796787261963, "vel_a": 20.660261154174805, "gamma": 4.586231044806001}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": -20.53, "x": -3.84}, "timestamp": 1601570636, "position": {"y": 5438080.984757278, "x": 323057.5974267876, "alt": 107.16, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 82.77168273925781, "speed": 2.849799156188965}}
{"taginfo": {"evcount": 4, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 6.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 6, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438010.844227709, "x": 323003.61207937193}, "initial_roll": 0.48114845156669617, "vel_w": 1.921356439590454, "initial_yaw": -2.036437511444092, "vel_a": 20.92540168762207, "gamma": 5.101421954526811}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": -8.4, "x": -19.79}, "timestamp": 1601570637, "position": {"y": 5438010.844227709, "x": 323003.61207937193, "alt": 97.105, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 112.28994750976562, "speed": 1.921356439590454}}
{"taginfo": {"evcount": 5, "target_vel": 0.0}, "target": {"y": 5438034.325887911, "x": 322848.4117724543, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438106.1950552575, "x": 322866.46851858794}, {"y": 5438162.076785277, "x": 322899.7948357579}, {"y": 5438178.017417591, "x": 322962.8627746825}, {"y": 5438144.678940883, "x": 323018.72708957247}, {"y": 5438081.5910283355, "x": 323034.66281210195}, {"y": 5438025.709928604, "x": 323001.3359146542}, {"y": 5438009.76958635, "x": 322938.2692520943}, {"y": 5438020.2017910285, "x": 322908.1814650013}, {"y": 5438023.267078768, "x": 322902.855541394}, {"y": 5438034.568689749, "x": 322858.4076323426}, {"y": 5438034.325887911, "x": 322848.4117724543}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438007.473661177, "x": 322908.70017996186}, "initial_roll": 0.2652641832828522, "vel_w": 0.7102599143981934, "initial_yaw": -1.313069462776184, "vel_a": 21.79585075378418, "gamma": 5.924790403482173}, "target_dir": {"y": -7.9164803455933, "x": 2.4919187230989337}, "velocity": {"y": 6.76, "x": -21.11}, "timestamp": 1601570638, "position": {"y": 5438007.473661177, "x": 322908.70017996186, "alt": 93.851, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 159.46548461914062, "speed": 0.7102599143981934}}
{"taginfo": {"evcount": 6, "target_vel": 0.0}, "target": {"y": 5438032.868774355, "x": 322788.4360135609, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438034.325887911, "x": 322848.4117724543}, {"y": 5438033.111658483, "x": 322798.43187406857}, {"y": 5438032.868774355, "x": 322788.4360135609}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5438032.009814106, "x": 322824.40549432836}, "initial_roll": -0.16993293166160583, "vel_w": 0.6403441429138184, "initial_yaw": -1.4010504484176636, "vel_a": 22.02594757080078, "gamma": 1.0044909667980324}, "target_dir": {"y": -59.975758893357124, "x": 1.4571135556325316}, "velocity": {"y": 4.4, "x": -21.75}, "timestamp": 1601570639, "position": {"y": 5438032.009814106, "x": 322824.40549432836, "alt": 94.35600000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -122.44690704345703, "speed": 0.6403441429138184}}
{"taginfo": {"evcount": 7, "target_vel": 0.0}, "target": {"y": 5438029.953066018, "x": 322668.4844846572, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438031.411167058, "x": 322728.4602509605}, {"y": 5438030.196114677, "x": 322678.48034440563}, {"y": 5438029.953066018, "x": 322668.4844846572}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5438035.975483987, "x": 322736.6240817893}, "initial_roll": -0.060506246984004974, "vel_w": 0.9624744653701782, "initial_yaw": -1.5991255044937134, "vel_a": 21.907516479492188, "gamma": 1.2669103384989524}, "target_dir": {"y": -59.975766303308774, "x": 1.4581010397523642}, "velocity": {"y": -0.16, "x": -22.04}, "timestamp": 1601570640, "position": {"y": 5438035.975483987, "x": 322736.6240817893, "alt": 96.815, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -107.41138458251953, "speed": 0.9624744653701782}}
{"taginfo": {"evcount": 8, "target_vel": 0.0}, "target": {"y": 5438028.494471235, "x": 322608.50871464855, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438029.953066018, "x": 322668.4844846572}, {"y": 5438028.737602157, "x": 322618.5045738731}, {"y": 5438028.494471235, "x": 322608.50871464855}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5438030.41425675, "x": 322644.0475236156}, "initial_roll": -0.01618478074669838, "vel_w": 1.198974609375, "initial_yaw": -1.6485973596572876, "vel_a": 21.722055435180664, "gamma": 1.3158085061158427}, "target_dir": {"y": -59.975770008633845, "x": 1.4585947832092643}, "velocity": {"y": -0.72, "x": -21.86}, "timestamp": 1601570641, "position": {"y": 5438030.41425675, "x": 322644.0475236156, "alt": 98.739, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -104.60972595214844, "speed": 1.198974609375}}
{"taginfo": {"evcount": 9, "target_vel": 0.0}, "target": {"y": 5438025.57580044, "x": 322488.5571635042, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438027.0353827095, "x": 322548.5329409302}, {"y": 5438025.819095884, "x": 322498.5530217072}, {"y": 5438025.57580044, "x": 322488.5571635042}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5438026.849001377, "x": 322552.73994826636}, "initial_roll": -0.004591325763612986, "vel_w": 1.3641365766525269, "initial_yaw": -1.5998001098632812, "vel_a": 21.47724151611328, "gamma": 1.340867919867107}, "target_dir": {"y": -59.975777426036075, "x": 1.459582269191742}, "velocity": {"y": -0.1, "x": -21.94}, "timestamp": 1601570642, "position": {"y": 5438026.849001377, "x": 322552.73994826636, "alt": 99.547, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -103.1739273071289, "speed": 1.3641365766525269}}
{"taginfo": {"evcount": 10, "target_vel": 0.0}, "target": {"y": 5437845.589266872, "x": 322492.938162594, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437999.219115229, "x": 322429.0834473481}, {"y": 5437988.976569421, "x": 322419.3310975485}, {"y": 5437928.270933539, "x": 322395.9089757091}, {"y": 5437868.777327028, "x": 322422.25800268643}, {"y": 5437845.345955884, "x": 322482.9425523502}, {"y": 5437845.589266872, "x": 322492.938162594}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438025.285252367, "x": 322464.29557773215}, "initial_roll": -0.6628363728523254, "vel_w": 1.4543323516845703, "initial_yaw": -1.6910622119903564, "vel_a": 21.7386417388916, "gamma": 1.356689094112995}, "target_dir": {"y": 4.380999089800753, "x": 179.9865335682407}, "velocity": {"y": -3.74, "x": -21.71}, "timestamp": 1601570643, "position": {"y": 5438025.285252367, "x": 322464.29557773215, "alt": 99.882, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -102.26744079589844, "speed": 1.4543323516845703}}
{"taginfo": {"evcount": 11, "target_vel": 0.0}, "target": {"y": 5437845.589266872, "x": 322492.938162594, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437999.219115229, "x": 322429.0834473481}, {"y": 5437988.976569421, "x": 322419.3310975485}, {"y": 5437928.270933539, "x": 322395.9089757091}, {"y": 5437868.777327028, "x": 322422.25800268643}, {"y": 5437845.345955884, "x": 322482.9425523502}, {"y": 5437845.589266872, "x": 322492.938162594}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437966.532316077, "x": 322390.0161832642}, "initial_roll": -0.4417053461074829, "vel_w": 1.5727146863937378, "initial_yaw": -2.6488523483276367, "vel_a": 21.381752014160156, "gamma": 1.259620068172915}, "target_dir": {"y": 4.380999089800753, "x": 179.9865335682407}, "velocity": {"y": -19.25, "x": -9.93}, "timestamp": 1601570644, "position": {"y": 5437966.532316077, "x": 322390.0161832642, "alt": 102.27, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -107.82908630371094, "speed": 1.5727146863937378}}
{"taginfo": {"evcount": 12, "target_vel": 0.0}, "target": {"y": 5437845.589266872, "x": 322492.938162594, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437999.219115229, "x": 322429.0834473481}, {"y": 5437988.976569421, "x": 322419.3310975485}, {"y": 5437928.270933539, "x": 322395.9089757091}, {"y": 5437868.777327028, "x": 322422.25800268643}, {"y": 5437845.345955884, "x": 322482.9425523502}, {"y": 5437845.589266872, "x": 322492.938162594}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437882.503472455, "x": 322394.5381756473}, "initial_roll": -0.6343178749084473, "vel_w": 1.7379114627838135, "initial_yaw": 2.7255239486694336, "vel_a": 21.627885818481445, "gamma": 0.997772210841926}, "target_dir": {"y": 4.380999089800753, "x": 179.9865335682407}, "velocity": {"y": -20.03, "x": 8.58}, "timestamp": 1601570645, "position": {"y": 5437882.503472455, "x": 322394.5381756473, "alt": 101.598, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -122.83186340332031, "speed": 1.7379114627838135}}
{"taginfo": {"evcount": 13, "target_vel": 0.0}, "target": {"y": 5437845.589266872, "x": 322492.938162594, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437999.219115229, "x": 322429.0834473481}, {"y": 5437988.976569421, "x": 322419.3310975485}, {"y": 5437928.270933539, "x": 322395.9089757091}, {"y": 5437868.777327028, "x": 322422.25800268643}, {"y": 5437845.345955884, "x": 322482.9425523502}, {"y": 5437845.589266872, "x": 322492.938162594}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437832.871051957, "x": 322470.364320326}, "initial_roll": -0.452547162771225, "vel_w": 1.8208097219467163, "initial_yaw": 1.7942825555801392, "vel_a": 22.077573776245117, "gamma": 0.6658573841792794}, "target_dir": {"y": 4.380999089800753, "x": 179.9865335682407}, "velocity": {"y": -4.47, "x": 21.830000000000002}, "timestamp": 1601570646, "position": {"y": 5437832.871051957, "x": 322470.364320326, "alt": 100.4, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -141.84918212890625, "speed": 1.8208097219467163}}
{"taginfo": {"evcount": 14, "target_vel": 0.0}, "target": {"y": 5437848.507959924, "x": 322612.88675025234, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437847.048860271, "x": 322552.9124582762}, {"y": 5437848.264813565, "x": 322602.89114320325}, {"y": 5437848.507959924, "x": 322612.88675025234}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437837.864364899, "x": 322557.7662741223}, "initial_roll": -0.15798400342464447, "vel_w": 1.6347410678863525, "initial_yaw": 1.4113504886627197, "vel_a": 21.738353729248047, "gamma": 0.40938644908916055}, "target_dir": {"y": 59.97429197613383, "x": -1.4590996522456408}, "velocity": {"y": 2.73, "x": 22.29}, "timestamp": 1601570647, "position": {"y": 5437837.864364899, "x": 322557.7662741223, "alt": 98.768, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -156.54388427734375, "speed": 1.6347410678863525}}
{"taginfo": {"evcount": 15, "target_vel": 0.0}, "target": {"y": 5437911.4201792255, "x": 322731.3769498747, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437859.393321828, "x": 322652.47329729924}, {"y": 5437888.708205093, "x": 322704.59414103266}, {"y": 5437904.177905205, "x": 322724.48080537416}, {"y": 5437911.4201792255, "x": 322731.3769498747}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437854.4714360945, "x": 322649.5263261296}, "initial_roll": -0.3073395788669586, "vel_w": 1.4402176141738892, "initial_yaw": 1.2927041053771973, "vel_a": 22.129117965698242, "gamma": 0.1321790764872488}, "target_dir": {"y": 118.49019962234888, "x": -62.91221930179745}, "velocity": {"y": 6.68, "x": 21.5}, "timestamp": 1601570648, "position": {"y": 5437854.4714360945, "x": 322649.5263261296, "alt": 98.652, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -172.42669677734375, "speed": 1.4402176141738892}}
{"taginfo": {"evcount": 16, "target_vel": 0.0}, "target": {"y": 5437972.873286584, "x": 322789.8938611932, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437911.4201792255, "x": 322731.3769498768}, {"y": 5437965.631069977, "x": 322782.99759672955}, {"y": 5437972.873286584, "x": 322789.8938611932}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437897.607489146, "x": 322726.2922954198}, "initial_roll": -0.2811119258403778, "vel_w": 1.1440346240997314, "initial_yaw": 0.8965500593185425, "vel_a": 21.798072814941406, "gamma": 6.1475403928497085}, "target_dir": {"y": 58.51691131852567, "x": -61.45310735888779}, "velocity": {"y": 14.18, "x": 17.35}, "timestamp": 1601570649, "position": {"y": 5437897.607489146, "x": 322726.2922954198, "alt": 99.46300000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 172.22811889648438, "speed": 1.1440346240997314}}
{"taginfo": {"evcount": 17, "target_vel": 0.0}, "target": {"y": 5438035.782507726, "x": 322908.38752764615, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437996.362326927, "x": 322829.4616697803}, {"y": 5438005.051772284, "x": 322861.9228854064}, {"y": 5438028.540408074, "x": 322901.49108632974}, {"y": 5438035.782507726, "x": 322908.38752764615}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437958.057672945, "x": 322782.3306901211}, "initial_roll": -0.007845671847462654, "vel_w": 0.7973976731300354, "initial_yaw": 0.7099307179450989, "vel_a": 21.901857376098633, "gamma": 5.791045920906175}, "target_dir": {"y": 118.49366645293776, "x": -62.90922114159912}, "velocity": {"y": 16.84, "x": 14.8}, "timestamp": 1601570650, "position": {"y": 5437958.057672945, "x": 322782.3306901211, "alt": 99.654, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 151.802490234375, "speed": 0.7973976731300354}}
{"taginfo": {"evcount": 18, "target_vel": 0.0}, "target": {"y": 5438035.782507726, "x": 322908.38752764615, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437996.362326927, "x": 322829.4616697803}, {"y": 5438005.051772284, "x": 322861.9228854064}, {"y": 5438028.540408074, "x": 322901.49108632974}, {"y": 5438035.782507726, "x": 322908.38752764615}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438017.637461867, "x": 322859.7228407668}, "initial_roll": 0.11071763932704926, "vel_w": 0.6953837275505066, "initial_yaw": 1.1324243545532227, "vel_a": 22.09992218017578, "gamma": 5.305362037115117}, "target_dir": {"y": 118.49366645293776, "x": -62.90922114159912}, "velocity": {"y": 9.21, "x": 20.34}, "timestamp": 1601570651, "position": {"y": 5438017.637461867, "x": 322859.7228407668, "alt": 99.977, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 123.974853515625, "speed": 0.6953837275505066}}
{"taginfo": {"evcount": 19, "target_vel": 0.0}, "target": {"y": 5437980.153935465, "x": 323089.7701491237, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438062.135220594, "x": 322967.86306196975}, {"y": 5438038.699316958, "x": 323028.5471691446}, {"y": 5437987.168895414, "x": 323082.40910110186}, {"y": 5437980.153935465, "x": 323089.7701491237}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438055.757938093, "x": 322926.75315505126}, "initial_roll": -0.2166450321674347, "vel_w": 0.7815759778022766, "initial_yaw": 0.9471078515052795, "vel_a": 21.956222534179688, "gamma": 5.072920937698838}, "target_dir": {"y": 181.38262147753267, "x": 55.62857226096094}, "velocity": {"y": 13.06, "x": 18.16}, "timestamp": 1601570652, "position": {"y": 5438055.757938093, "x": 322926.75315505126, "alt": 99.645, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 110.6569595336914, "speed": 0.7815759778022766}}
{"taginfo": {"evcount": 20, "target_vel": 0.0}, "target": {"y": 5437980.153935465, "x": 323089.7701491237, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438062.135220594, "x": 322967.86306196975}, {"y": 5438038.699316958, "x": 323028.5471691446}, {"y": 5437987.168895414, "x": 323082.40910110186}, {"y": 5437980.153935465, "x": 323089.7701491237}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438064.446682122, "x": 323016.5183622525}, "initial_roll": 0.6866697072982788, "vel_w": 0.9457527995109558, "initial_yaw": 1.8988065719604492, "vel_a": 21.914445877075195, "gamma": 4.989649882524512}, "target_dir": {"y": 181.38262147753267, "x": 55.62857226096094}, "velocity": {"y": -8.16, "x": 20.55}, "timestamp": 1601570653, "position": {"y": 5438064.446682122, "x": 323016.5183622525, "alt": 101.517, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 105.88587951660156, "speed": 0.9457527995109558}}
{"taginfo": {"evcount": 21, "target_vel": 0.0}, "target": {"y": 5437980.153935465, "x": 323089.7701491237, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438062.135220594, "x": 322967.86306196975}, {"y": 5438038.699316958, "x": 323028.5471691446}, {"y": 5437987.168895414, "x": 323082.40910110186}, {"y": 5437980.153935465, "x": 323089.7701491237}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438008.031278119, "x": 323083.17456730746}, "initial_roll": 0.13814571499824524, "vel_w": 1.1485105752944946, "initial_yaw": 2.4474267959594727, "vel_a": 22.19318962097168, "gamma": 5.120396977293625}, "target_dir": {"y": 181.38262147753267, "x": 55.62857226096094}, "velocity": {"y": -17.62, "x": 13.51}, "timestamp": 1601570654, "position": {"y": 5438008.031278119, "x": 323083.17456730746, "alt": 99.45100000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 113.37713623046875, "speed": 1.1485105752944946}}
{"taginfo": {"evcount": 22, "target_vel": 0.0}, "target": {"y": 5437914.334914897, "x": 322851.32649573055, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437920.657998132, "x": 323116.11353143887}, {"y": 5437859.954771578, "x": 323092.6860036835}, {"y": 5437833.6030305205, "x": 323033.21178098023}, {"y": 5437840.837816932, "x": 322996.7862822232}, {"y": 5437891.235393304, "x": 322882.82364042616}, {"y": 5437907.43613539, "x": 322858.56626749143}, {"y": 5437914.334914897, "x": 322851.32649573055}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437925.124193865, "x": 323148.60084391246}, "initial_roll": 1.130473256111145, "vel_w": 1.3305723667144775, "initial_yaw": 2.53895902633667, "vel_a": 22.06268882751465, "gamma": 5.2314344163092255}, "target_dir": {"y": -238.44365339312935, "x": 65.81902056839317}, "velocity": {"y": -19.32, "x": 11.36}, "timestamp": 1601570655, "position": {"y": 5437925.124193865, "x": 323148.60084391246, "alt": 98.60900000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 119.7391128540039, "speed": 1.3305723667144775}}
{"taginfo": {"evcount": 23, "target_vel": 0.0}, "target": {"y": 5437914.334914897, "x": 322851.32649573055, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437920.657998132, "x": 323116.11353143887}, {"y": 5437859.954771578, "x": 323092.6860036835}, {"y": 5437833.6030305205, "x": 323033.21178098023}, {"y": 5437840.837816932, "x": 322996.7862822232}, {"y": 5437891.235393304, "x": 322882.82364042616}, {"y": 5437907.43613539, "x": 322858.56626749143}, {"y": 5437914.334914897, "x": 322851.32649573055}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437841.809200578, "x": 323128.0482647682}, "initial_roll": 0.38697579503059387, "vel_w": 1.465044617652893, "initial_yaw": -2.528071641921997, "vel_a": 21.807676315307617, "gamma": 5.403131474421888}, "target_dir": {"y": -238.44365339312935, "x": 65.81902056839317}, "velocity": {"y": -17.2, "x": -13.68}, "timestamp": 1601570656, "position": {"y": 5437841.809200578, "x": 323128.0482647682, "alt": 102.005, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 129.57662963867188, "speed": 1.465044617652893}}
{"taginfo": {"evcount": 24, "target_vel": 0.0}, "target": {"y": 5437914.334914897, "x": 322851.32649573055, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437920.657998132, "x": 323116.11353143887}, {"y": 5437859.954771578, "x": 323092.6860036835}, {"y": 5437833.6030305205, "x": 323033.21178098023}, {"y": 5437840.837816932, "x": 322996.7862822232}, {"y": 5437891.235393304, "x": 322882.82364042616}, {"y": 5437907.43613539, "x": 322858.56626749143}, {"y": 5437914.334914897, "x": 322851.32649573055}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437812.768107202, "x": 323030.4134055072}, "initial_roll": 0.4672236740589142, "vel_w": 1.3740930557250977, "initial_yaw": -1.484136939048767, "vel_a": 22.329519271850586, "gamma": 5.692261286591867}, "target_dir": {"y": -238.44365339312935, "x": 65.81902056839317}, "velocity": {"y": 3.86, "x": -22.43}, "timestamp": 1601570657, "position": {"y": 5437812.768107202, "x": 323030.4134055072, "alt": 99.403, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 146.14254760742188, "speed": 1.3740930557250977}}
{"taginfo": {"evcount": 25, "target_vel": 0.0}, "target": {"y": 5437914.334914897, "x": 322851.32649573055, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437920.657998132, "x": 323116.11353143887}, {"y": 5437859.954771578, "x": 323092.6860036835}, {"y": 5437833.6030305205, "x": 323033.21178098023}, {"y": 5437840.837816932, "x": 322996.7862822232}, {"y": 5437891.235393304, "x": 322882.82364042616}, {"y": 5437907.43613539, "x": 322858.56626749143}, {"y": 5437914.334914897, "x": 322851.32649573055}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437850.363581209, "x": 322944.04215319274}, "initial_roll": 0.06504108756780624, "vel_w": 0.9722950458526611, "initial_yaw": -1.0562361478805542, "vel_a": 21.844701766967773, "gamma": 5.937311255347181}, "target_dir": {"y": -238.44365339312935, "x": 65.81902056839317}, "velocity": {"y": 12.22, "x": -18.85}, "timestamp": 1601570658, "position": {"y": 5437850.363581209, "x": 322944.04215319274, "alt": 98.214, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 160.18287658691406, "speed": 0.9722950458526611}}
{"taginfo": {"evcount": 26, "target_vel": 0.0}, "target": {"y": 5437971.4156755805, "x": 322729.9185924998, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437935.874754328, "x": 322810.6650257215}, {"y": 5437942.977574619, "x": 322777.8203963795}, {"y": 5437964.5170153845, "x": 322737.1585340424}, {"y": 5437971.4156755805, "x": 322729.9185924998}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437905.217704107, "x": 322860.72482692474}, "initial_roll": 0.17790499329566956, "vel_w": 0.5869798064231873, "initial_yaw": -0.9459784626960754, "vel_a": 22.137224197387695, "gamma": 0.04599039518068748}, "target_dir": {"y": -121.40790323074907, "x": -57.080760683864355}, "velocity": {"y": 14.3, "x": -17.32}, "timestamp": 1601570659, "position": {"y": 5437905.217704107, "x": 322860.72482692474, "alt": 98.675, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -177.3649444580078, "speed": 0.5869798064231873}}
{"taginfo": {"evcount": 27, "target_vel": 0.0}, "target": {"y": 5437971.4156755805, "x": 322729.9185924998, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437935.874754328, "x": 322810.6650257215}, {"y": 5437942.977574619, "x": 322777.8203963795}, {"y": 5437964.5170153845, "x": 322737.1585340424}, {"y": 5437971.4156755805, "x": 322729.9185924998}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437965.739583745, "x": 322783.47828587936}, "initial_roll": -0.33081188797950745, "vel_w": 0.3974015712738037, "initial_yaw": -1.1181671619415283, "vel_a": 22.001638412475586, "gamma": 0.8130670755428264}, "target_dir": {"y": -121.40790323074907, "x": -57.080760683864355}, "velocity": {"y": 9.790000000000001, "x": -19.73}, "timestamp": 1601570660, "position": {"y": 5437965.739583745, "x": 322783.47828587936, "alt": 100.297, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -133.41468811035156, "speed": 0.3974015712738037}}
{"taginfo": {"evcount": 28, "target_vel": 0.0}, "target": {"y": 5438089.948556318, "x": 322667.0256650512, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438010.996852832, "x": 322706.4362485792}, {"y": 5438043.468872632, "x": 322697.7485011824}, {"y": 5438083.049954947, "x": 322674.26577707933}, {"y": 5438089.948556318, "x": 322667.0256650512}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438003.094450081, "x": 322704.68732903607}, "initial_roll": 0.20163166522979736, "vel_w": 0.5218819975852966, "initial_yaw": -1.052800178527832, "vel_a": 21.595964431762695, "gamma": 1.279756761807222}, "target_dir": {"y": -62.8929274486145, "x": -118.53288073744625}, "velocity": {"y": 12.05, "x": -18.64}, "timestamp": 1601570661, "position": {"y": 5438003.094450081, "x": 322704.68732903607, "alt": 100.60000000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -106.67533874511719, "speed": 0.5218819975852966}}
{"taginfo": {"evcount": 29, "target_vel": 0.0}, "target": {"y": 5438085.571301869, "x": 322487.0968621882, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438113.381501567, "x": 322606.33981709403}, {"y": 5438109.431083184, "x": 322582.7200855161}, {"y": 5438089.765296329, "x": 322520.7124283113}, {"y": 5438085.814596747, "x": 322497.09280485555}, {"y": 5438085.571301869, "x": 322487.0968621882}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438076.856884659, "x": 322651.66232443484}, "initial_roll": -0.11357150971889496, "vel_w": 0.6322466731071472, "initial_yaw": -0.45739924907684326, "vel_a": 21.832256317138672, "gamma": 1.724424635859698}, "target_dir": {"y": -179.92880286299624, "x": 4.377254448831081}, "velocity": {"y": 20.04, "x": -9.26}, "timestamp": 1601570662, "position": {"y": 5438076.856884659, "x": 322651.66232443484, "alt": 100.57000000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -81.19774627685547, "speed": 0.6322466731071472}}
{"taginfo": {"evcount": 30, "target_vel": 0.0}, "target": {"y": 5438085.571301869, "x": 322487.0968621882, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438113.381501567, "x": 322606.33981709403}, {"y": 5438109.431083184, "x": 322582.7200855161}, {"y": 5438089.765296329, "x": 322520.7124283113}, {"y": 5438085.814596747, "x": 322497.09280485555}, {"y": 5438085.571301869, "x": 322487.0968621882}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438147.250474384, "x": 322601.7309024319}, "initial_roll": -0.7878386974334717, "vel_w": 0.7668067812919617, "initial_yaw": -1.1854044198989868, "vel_a": 22.99620246887207, "gamma": 2.02161357296242}, "target_dir": {"y": -179.92880286299624, "x": 4.377254448831081}, "velocity": {"y": 8.18, "x": -21.16}, "timestamp": 1601570663, "position": {"y": 5438147.250474384, "x": 322601.7309024319, "alt": 100.265, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -64.17007446289062, "speed": 0.7668067812919617}}
{"taginfo": {"evcount": 31, "target_vel": 0.0}, "target": {"y": 5438085.571301869, "x": 322487.0968621882, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438113.381501567, "x": 322606.33981709403}, {"y": 5438109.431083184, "x": 322582.7200855161}, {"y": 5438089.765296329, "x": 322520.7124283113}, {"y": 5438085.814596747, "x": 322497.09280485555}, {"y": 5438085.571301869, "x": 322487.0968621882}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438125.661729515, "x": 322509.78631258983}, "initial_roll": -0.25588345527648926, "vel_w": 0.9733409881591797, "initial_yaw": -2.1869585514068604, "vel_a": 21.45343780517578, "gamma": 1.8163493666801265}, "target_dir": {"y": -179.92880286299624, "x": 4.377254448831081}, "velocity": {"y": -12.83, "x": -17.36}, "timestamp": 1601570664, "position": {"y": 5438125.661729515, "x": 322509.78631258983, "alt": 102.619, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -75.93084716796875, "speed": 0.9733409881591797}}
{"taginfo": {"evcount": 32, "target_vel": 0.0}, "target": {"y": 5437905.584782941, "x": 322491.4778137072, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438059.214622402, "x": 322427.6226446888}, {"y": 5438048.972080179, "x": 322417.8702112894}, {"y": 5437988.266451547, "x": 322394.44786648045}, {"y": 5437928.772847457, "x": 322420.7970804123}, {"y": 5437905.341472555, "x": 322481.4821204401}, {"y": 5437905.584782941, "x": 322491.4778137072}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438082.365309475, "x": 322423.33030437713}, "initial_roll": -0.2036534696817398, "vel_w": 1.125247597694397, "initial_yaw": -1.8602811098098755, "vel_a": 21.96347999572754, "gamma": 1.6540673819692215}, "target_dir": {"y": 4.380951519007795, "x": 179.98651892784983}, "velocity": {"y": -4.6000000000000005, "x": -21.79}, "timestamp": 1601570665, "position": {"y": 5438082.365309475, "x": 322423.33030437713, "alt": 98.909, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -85.22891998291016, "speed": 1.125247597694397}}
{"taginfo": {"evcount": 33, "target_vel": 0.0}, "target": {"y": 5437905.584782941, "x": 322491.4778137072, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438059.214622402, "x": 322427.6226446888}, {"y": 5438048.972080179, "x": 322417.8702112894}, {"y": 5437988.266451547, "x": 322394.44786648045}, {"y": 5437928.772847457, "x": 322420.7970804123}, {"y": 5437905.341472555, "x": 322481.4821204401}, {"y": 5437905.584782941, "x": 322491.4778137072}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438003.690227074, "x": 322370.80050197546}, "initial_roll": -0.8007225394248962, "vel_w": 1.265268087387085, "initial_yaw": -3.03298282623291, "vel_a": 21.698774337768555, "gamma": 1.4587293097018716}, "target_dir": {"y": 4.380951519007795, "x": 179.98651892784983}, "velocity": {"y": -22.22, "x": -1.31}, "timestamp": 1601570666, "position": {"y": 5438003.690227074, "x": 322370.80050197546, "alt": 100.665, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -96.42096710205078, "speed": 1.265268087387085}}
{"taginfo": {"evcount": 34, "target_vel": 0.0}, "target": {"y": 5437905.584782941, "x": 322491.4778137072, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438059.214622402, "x": 322427.6226446888}, {"y": 5438048.972080179, "x": 322417.8702112894}, {"y": 5437988.266451547, "x": 322394.44786648045}, {"y": 5437928.772847457, "x": 322420.7970804123}, {"y": 5437905.341472555, "x": 322481.4821204401}, {"y": 5437905.584782941, "x": 322491.4778137072}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437921.080578665, "x": 322408.9637203894}, "initial_roll": -0.5913545489311218, "vel_w": 1.2900177240371704, "initial_yaw": 2.3079757690429688, "vel_a": 22.012664794921875, "gamma": 1.1659718726530417}, "target_dir": {"y": 4.380951519007795, "x": 179.98651892784983}, "velocity": {"y": -14.61, "x": 17.02}, "timestamp": 1601570667, "position": {"y": 5437921.080578665, "x": 322408.9637203894, "alt": 100.044, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -113.19473266601562, "speed": 1.2900177240371704}}
{"taginfo": {"evcount": 35, "target_vel": 0.0}, "target": {"y": 5437907.044372631, "x": 322551.4526033094, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437905.584782941, "x": 322491.4778137072}, {"y": 5437906.801144608, "x": 322541.45691369055}, {"y": 5437907.044372631, "x": 322551.4526033094}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437892.607058147, "x": 322491.0386992891}, "initial_roll": -0.33438608050346375, "vel_w": 1.0916354656219482, "initial_yaw": 1.651105284690857, "vel_a": 22.100845336914062, "gamma": 0.8561170745639575}, "target_dir": {"y": 59.97478960221633, "x": -1.4595896899700165}, "velocity": {"y": -1.49, "x": 22.400000000000002}, "timestamp": 1601570668, "position": {"y": 5437892.607058147, "x": 322491.0386992891, "alt": 99.26, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -130.94810485839844, "speed": 1.0916354656219482}}
{"taginfo": {"evcount": 36, "target_vel": 0.0}, "target": {"y": 5437907.044372631, "x": 322551.4526033094, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437905.584782941, "x": 322491.4778137072}, {"y": 5437906.801144608, "x": 322541.45691369055}, {"y": 5437907.044372631, "x": 322551.4526033094}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437943.624607667, "x": 322572.9747814235}, "initial_roll": -0.9533740878105164, "vel_w": 0.6246006488800049, "initial_yaw": 0.06866072118282318, "vel_a": 23.02745246887207, "gamma": 0.6738865485497594}, "target_dir": {"y": 59.97478960221633, "x": -1.4595896899700165}, "velocity": {"y": 22.96, "x": 0.7000000000000001}, "timestamp": 1601570669, "position": {"y": 5437943.624607667, "x": 322572.9747814235, "alt": 103.294, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -141.38914489746094, "speed": 0.6246006488800049}}
{"taginfo": {"evcount": 37, "target_vel": 0.0}, "target": {"y": 5437907.044372631, "x": 322551.4526033094, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437905.584782941, "x": 322491.4778137072}, {"y": 5437906.801144608, "x": 322541.45691369055}, {"y": 5437907.044372631, "x": 322551.4526033094}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437996.291081708, "x": 322507.6564166376}, "initial_roll": -0.9302308559417725, "vel_w": 0.559460461139679, "initial_yaw": -1.6947804689407349, "vel_a": 22.36027717590332, "gamma": 1.1934391835039009}, "target_dir": {"y": 59.97478960221633, "x": -1.4595896899700165}, "velocity": {"y": -4.01, "x": -22.11}, "timestamp": 1601570670, "position": {"y": 5437996.291081708, "x": 322507.6564166376, "alt": 104.693, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -111.6209716796875, "speed": 0.559460461139679}}
{"taginfo": {"evcount": 38, "target_vel": 0.0}, "target": {"y": 5437907.044372631, "x": 322551.4526033094, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437905.584782941, "x": 322491.4778137072}, {"y": 5437906.801144608, "x": 322541.45691369055}, {"y": 5437907.044372631, "x": 322551.4526033094}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437916.277861862, "x": 322474.9716194384}, "initial_roll": -0.8563554286956787, "vel_w": 0.7788318991661072, "initial_yaw": 2.7205822467803955, "vel_a": 21.775196075439453, "gamma": 1.0042980207770564}, "target_dir": {"y": 59.97478960221633, "x": -1.4595896899700165}, "velocity": {"y": -19.85, "x": 10.23}, "timestamp": 1601570671, "position": {"y": 5437916.277861862, "x": 322474.9716194384, "alt": 101.805, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -122.45796203613281, "speed": 0.7788318991661072}}
{"taginfo": {"evcount": 39, "target_vel": 0.0}, "target": {"y": 5437908.503468575, "x": 322611.42738920497, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437907.044372631, "x": 322551.4526033094}, {"y": 5437908.260322811, "x": 322601.431698946}, {"y": 5437908.503468575, "x": 322611.42738920497}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437882.034475326, "x": 322557.3544526735}, "initial_roll": -0.40796852111816406, "vel_w": 0.7115370631217957, "initial_yaw": 1.5637613534927368, "vel_a": 21.809432983398438, "gamma": 0.5348599522676989}, "target_dir": {"y": 59.974785895552486, "x": -1.4590959437191486}, "velocity": {"y": 1.18, "x": 22.29}, "timestamp": 1601570672, "position": {"y": 5437882.034475326, "x": 322557.3544526735, "alt": 96.883, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -149.3547821044922, "speed": 0.7115370631217957}}
{"taginfo": {"evcount": 40, "target_vel": 0.0}, "target": {"y": 5437909.962070773, "x": 322671.4021713919, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437908.503468575, "x": 322611.42738920497}, {"y": 5437909.719007275, "x": 322661.4064807391}, {"y": 5437909.962070773, "x": 322671.4021713919}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437900.25468325, "x": 322640.533212423}, "initial_roll": 0.10466286540031433, "vel_w": 0.531451940536499, "initial_yaw": 1.3877791166305542, "vel_a": 22.270328521728516, "gamma": 0.017373397687241}, "target_dir": {"y": 59.97478218690958, "x": -1.4586021983996034}, "velocity": {"y": 4.34, "x": 22.23}, "timestamp": 1601570673, "position": {"y": 5437900.25468325, "x": 322640.533212423, "alt": 94.075, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -179.00457763671875, "speed": 0.531451940536499}}
{"taginfo": {"evcount": 41, "target_vel": 0.0}, "target": {"y": 5437909.962070773, "x": 322671.4021713919, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437908.503468575, "x": 322611.42738920497}, {"y": 5437909.719007275, "x": 322661.4064807391}, {"y": 5437909.962070773, "x": 322671.4021713919}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437944.032544662, "x": 322694.80288633425}, "initial_roll": -0.9661532044410706, "vel_w": 0.3981134593486786, "initial_yaw": 0.21475312113761902, "vel_a": 23.206148147583008, "gamma": 5.674721707652605}, "target_dir": {"y": 59.97478218690958, "x": -1.4586021983996034}, "velocity": {"y": 22.95, "x": 3.7800000000000002}, "timestamp": 1601570674, "position": {"y": 5437944.032544662, "x": 322694.80288633425, "alt": 99.465, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 145.13760375976562, "speed": 0.3981134593486786}}
{"taginfo": {"evcount": 42, "target_vel": 0.0}, "target": {"y": 5437909.962070773, "x": 322671.4021713919, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437908.503468575, "x": 322611.42738920497}, {"y": 5437909.719007275, "x": 322661.4064807391}, {"y": 5437909.962070773, "x": 322671.4021713919}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5438003.610308654, "x": 322625.85162230424}, "initial_roll": -0.915625274181366, "vel_w": 0.015447468496859074, "initial_yaw": -1.761486291885376, "vel_a": 22.108396530151367, "gamma": 4.118253387259416}, "target_dir": {"y": 59.97478218690958, "x": -1.4586021983996034}, "velocity": {"y": -5.57, "x": -21.650000000000002}, "timestamp": 1601570675, "position": {"y": 5438003.610308654, "x": 322625.85162230424, "alt": 104.238, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 55.95853805541992, "speed": 0.015447468496859074}}
{"taginfo": {"evcount": 43, "target_vel": 0.0}, "target": {"y": 5437909.962070773, "x": 322671.4021713919, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437908.503468575, "x": 322611.42738920497}, {"y": 5437909.719007275, "x": 322661.4064807391}, {"y": 5437909.962070773, "x": 322671.4021713919}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437918.33885454, "x": 322599.83889943897}, "initial_roll": -0.8240606188774109, "vel_w": 0.324114054441452, "initial_yaw": 2.626113176345825, "vel_a": 21.776628494262695, "gamma": 0.4563433054294377}, "target_dir": {"y": 59.97478218690958, "x": -1.4586021983996034}, "velocity": {"y": -18.57, "x": 11.97}, "timestamp": 1601570676, "position": {"y": 5437918.33885454, "x": 322599.83889943897, "alt": 101.529, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -153.85345458984375, "speed": 0.324114054441452}}
{"taginfo": {"evcount": 44, "target_vel": 0.0}, "target": {"y": 5437912.877793933, "x": 322791.3517246556, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437909.962070773, "x": 322671.4021713919}, {"y": 5437912.634894984, "x": 322781.35603396036}, {"y": 5437912.877793933, "x": 322791.3517246556}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437887.70793058, "x": 322677.79478482483}, "initial_roll": -0.4052792191505432, "vel_w": 0.4702207148075104, "initial_yaw": 1.598114013671875, "vel_a": 21.57444190979004, "gamma": 6.093273159317164}, "target_dir": {"y": 119.94955326372292, "x": -2.9157231599092484}, "velocity": {"y": 0.43, "x": 22.09}, "timestamp": 1601570677, "position": {"y": 5437887.70793058, "x": 322677.79478482483, "alt": 97.086, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 169.11883544921875, "speed": 0.4702207148075104}}
{"taginfo": {"evcount": 45, "target_vel": 0.0}, "target": {"y": 5437912.877793933, "x": 322791.3517246556, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437909.962070773, "x": 322671.4021713919}, {"y": 5437912.634894984, "x": 322781.35603396036}, {"y": 5437912.877793933, "x": 322791.3517246556}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437905.278046433, "x": 322769.93501352565}, "initial_roll": 0.08454275131225586, "vel_w": 0.5705462098121643, "initial_yaw": 1.4107908010482788, "vel_a": 21.9266300201416, "gamma": 5.519417338155762}, "target_dir": {"y": 119.94955326372292, "x": -2.9157231599092484}, "velocity": {"y": 3.77, "x": 22.150000000000002}, "timestamp": 1601570678, "position": {"y": 5437905.278046433, "x": 322769.93501352565, "alt": 94.534, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 136.23931884765625, "speed": 0.5705462098121643}}
{"taginfo": {"evcount": 46, "target_vel": 0.0}, "target": {"y": 5437975.787027362, "x": 322909.8443874659, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437923.762166238, "x": 322830.9388383782}, {"y": 5437953.075731711, "x": 322883.06080405967}, {"y": 5437968.544927268, "x": 322902.9480067631}, {"y": 5437975.787027362, "x": 322909.8443874659}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437922.229836709, "x": 322857.24867185066}, "initial_roll": -0.4358559846878052, "vel_w": 0.7244485020637512, "initial_yaw": 1.2378244400024414, "vel_a": 22.1948299407959, "gamma": 5.237751434414894}, "target_dir": {"y": 118.49266281031305, "x": -62.909233428537846}, "velocity": {"y": 8.45, "x": 20.85}, "timestamp": 1601570679, "position": {"y": 5437922.229836709, "x": 322857.24867185066, "alt": 96.741, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 120.1010513305664, "speed": 0.7244485020637512}}
{"taginfo": {"evcount": 47, "target_vel": 0.0}, "target": {"y": 5437969.957570835, "x": 322669.9433201041, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438036.490866763, "x": 322933.2708778426}, {"y": 5438095.986193883, "x": 322906.925627784}, {"y": 5438119.421111377, "x": 322846.24061271455}, {"y": 5438093.067410274, "x": 322786.7649784788}, {"y": 5437977.313621399, "x": 322676.9475711968}, {"y": 5437969.957570835, "x": 322669.9433201041}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437987.808438542, "x": 322936.96246307273}, "initial_roll": -0.12030985206365585, "vel_w": 0.8628658056259155, "initial_yaw": 0.722450852394104, "vel_a": 21.768659591674805, "gamma": 4.877803641485855}, "target_dir": {"y": -239.9010673618177, "x": 5.829456526786089}, "velocity": {"y": 16.77, "x": 14.36}, "timestamp": 1601570680, "position": {"y": 5437987.808438542, "x": 322936.96246307273, "alt": 99.107, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 99.4775619506836, "speed": 0.8628658056259155}}
{"taginfo": {"evcount": 48, "target_vel": 0.0}, "target": {"y": 5437969.957570835, "x": 322669.9433201041, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438036.490866763, "x": 322933.2708778426}, {"y": 5438095.986193883, "x": 322906.925627784}, {"y": 5438119.421111377, "x": 322846.24061271455}, {"y": 5438093.067410274, "x": 322786.7649784788}, {"y": 5437977.313621399, "x": 322676.9475711968}, {"y": 5437969.957570835, "x": 322669.9433201041}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438079.001907674, "x": 322947.059083639}, "initial_roll": -0.4943394660949707, "vel_w": 0.9090436100959778, "initial_yaw": -0.3628785014152527, "vel_a": 21.653032302856445, "gamma": 4.471933896616144}, "target_dir": {"y": -239.9010673618177, "x": 5.829456526786089}, "velocity": {"y": 20.05, "x": -8.58}, "timestamp": 1601570681, "position": {"y": 5438079.001907674, "x": 322947.059083639, "alt": 102.605, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 76.22293853759766, "speed": 0.9090436100959778}}
{"taginfo": {"evcount": 49, "target_vel": 0.0}, "target": {"y": 5437969.957570835, "x": 322669.9433201041, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438036.490866763, "x": 322933.2708778426}, {"y": 5438095.986193883, "x": 322906.925627784}, {"y": 5438119.421111377, "x": 322846.24061271455}, {"y": 5438093.067410274, "x": 322786.7649784788}, {"y": 5437977.313621399, "x": 322676.9475711968}, {"y": 5437969.957570835, "x": 322669.9433201041}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438131.441907844, "x": 322875.02620489604}, "initial_roll": -0.6797432899475098, "vel_w": 0.8223307132720947, "initial_yaw": -1.2889008522033691, "vel_a": 21.46026039123535, "gamma": 3.938422302808352}, "target_dir": {"y": -239.9010673618177, "x": 5.829456526786089}, "velocity": {"y": 5.8500000000000005, "x": -21.150000000000002}, "timestamp": 1601570682, "position": {"y": 5438131.441907844, "x": 322875.02620489604, "alt": 101.11, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 45.65497589111328, "speed": 0.8223307132720947}}
{"taginfo": {"evcount": 50, "target_vel": 0.0}, "target": {"y": 5437969.957570835, "x": 322669.9433201041, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438036.490866763, "x": 322933.2708778426}, {"y": 5438095.986193883, "x": 322906.925627784}, {"y": 5438119.421111377, "x": 322846.24061271455}, {"y": 5438093.067410274, "x": 322786.7649784788}, {"y": 5437977.313621399, "x": 322676.9475711968}, {"y": 5437969.957570835, "x": 322669.9433201041}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438108.633676087, "x": 322787.1557687738}, "initial_roll": -0.4195210039615631, "vel_w": 0.5612466931343079, "initial_yaw": -2.128041982650757, "vel_a": 21.878509521484375, "gamma": 3.506307571449101}, "target_dir": {"y": -239.9010673618177, "x": 5.829456526786089}, "velocity": {"y": -12.42, "x": -18.5}, "timestamp": 1601570683, "position": {"y": 5438108.633676087, "x": 322787.1557687738, "alt": 99.936, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 20.896625518798828, "speed": 0.5612466931343079}}
{"taginfo": {"evcount": 51, "target_vel": 0.0}, "target": {"y": 5437969.957570835, "x": 322669.9433201041, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438036.490866763, "x": 322933.2708778426}, {"y": 5438095.986193883, "x": 322906.925627784}, {"y": 5438119.421111377, "x": 322846.24061271455}, {"y": 5438093.067410274, "x": 322786.7649784788}, {"y": 5437977.313621399, "x": 322676.9475711968}, {"y": 5437969.957570835, "x": 322669.9433201041}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438040.423235926, "x": 322724.4570598502}, "initial_roll": -0.029596516862511635, "vel_w": 0.22810600697994232, "initial_yaw": -2.460646390914917, "vel_a": 21.76140022277832, "gamma": 2.9283527126063897}, "target_dir": {"y": -239.9010673618177, "x": 5.829456526786089}, "velocity": {"y": -17.43, "x": -13.82}, "timestamp": 1601570684, "position": {"y": 5438040.423235926, "x": 322724.4570598502, "alt": 98.71600000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -12.217748641967773, "speed": 0.22810600697994232}}
{"taginfo": {"evcount": 52, "target_vel": 0.0}, "target": {"y": 5437965.580294129, "x": 322490.0174806772, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437943.602368307, "x": 322610.46950162033}, {"y": 5437946.399684699, "x": 322586.6861695394}, {"y": 5437963.02655339, "x": 322523.7967019628}, {"y": 5437965.823590232, "x": 322500.01325818687}, {"y": 5437965.580294129, "x": 322490.0174806772}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437971.429059478, "x": 322670.2122004882}, "initial_roll": 0.06531862169504166, "vel_w": 0.22288432717323303, "initial_yaw": -2.422548532485962, "vel_a": 21.92730712890625, "gamma": 1.3119318756750689}, "target_dir": {"y": -179.92583942686906, "x": 4.3772767055779696}, "velocity": {"y": -16.8, "x": -14.76}, "timestamp": 1601570685, "position": {"y": 5437971.429059478, "x": 322670.2122004882, "alt": 98.59100000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -104.83184051513672, "speed": 0.22288432717323303}}
{"taginfo": {"evcount": 53, "target_vel": 0.0}, "target": {"y": 5437965.580294129, "x": 322490.0174806772, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437943.602368307, "x": 322610.46950162033}, {"y": 5437946.399684699, "x": 322586.6861695394}, {"y": 5437963.02655339, "x": 322523.7967019628}, {"y": 5437965.823590232, "x": 322500.01325818687}, {"y": 5437965.580294129, "x": 322490.0174806772}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437923.239971664, "x": 322593.9882083176}, "initial_roll": 0.6411148905754089, "vel_w": 0.4688199460506439, "initial_yaw": -1.6295310258865356, "vel_a": 22.222801208496094, "gamma": 1.0686000452970195}, "target_dir": {"y": -179.92583942686906, "x": 4.3772767055779696}, "velocity": {"y": -0.29, "x": -22.23}, "timestamp": 1601570686, "position": {"y": 5437923.239971664, "x": 322593.9882083176, "alt": 101.406, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -118.77372741699219, "speed": 0.4688199460506439}}
{"taginfo": {"evcount": 54, "target_vel": 0.0}, "target": {"y": 5437965.580294129, "x": 322490.0174806772, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437943.602368307, "x": 322610.46950162033}, {"y": 5437946.399684699, "x": 322586.6861695394}, {"y": 5437963.02655339, "x": 322523.7967019628}, {"y": 5437965.823590232, "x": 322500.01325818687}, {"y": 5437965.580294129, "x": 322490.0174806772}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437948.032810319, "x": 322504.8700720789}, "initial_roll": -0.124393031001091, "vel_w": 0.6922949552536011, "initial_yaw": -1.2014572620391846, "vel_a": 21.475927352905273, "gamma": 1.4276590082122442}, "target_dir": {"y": -179.92583942686906, "x": 4.3772767055779696}, "velocity": {"y": 7.98, "x": -20.46}, "timestamp": 1601570687, "position": {"y": 5437948.032810319, "x": 322504.8700720789, "alt": 100.047, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -98.20116424560547, "speed": 0.6922949552536011}}
{"taginfo": {"evcount": 55, "target_vel": 0.0}, "target": {"y": 5438087.030880428, "x": 322547.0731335181, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437965.0212772, "x": 322467.0525026751}, {"y": 5437988.452551087, "x": 322406.3669252325}, {"y": 5438047.946110091, "x": 322380.01741889573}, {"y": 5438108.651775838, "x": 322403.4398819281}, {"y": 5438135.008640495, "x": 322462.9144401633}, {"y": 5438111.576868596, "x": 322523.6009892076}, {"y": 5438105.094244505, "x": 322529.7265510513}, {"y": 5438100.411988217, "x": 322533.7073503415}, {"y": 5438093.929356118, "x": 322539.8328941801}, {"y": 5438087.030880428, "x": 322547.0731335181}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437975.390381601, "x": 322404.7880006145}, "initial_roll": 0.713349461555481, "vel_w": 0.9010665416717529, "initial_yaw": -1.0050159692764282, "vel_a": 22.41463851928711, "gamma": 1.5828234285938034}, "target_dir": {"y": 57.05565284087788, "x": -121.45058629848063}, "velocity": {"y": 13.14, "x": -18.43}, "timestamp": 1601570688, "position": {"y": 5437975.390381601, "x": 322404.7880006145, "alt": 100.33200000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -89.31089782714844, "speed": 0.9010665416717529}}
{"taginfo": {"evcount": 56, "target_vel": 0.0}, "target": {"y": 5438087.030880428, "x": 322547.0731335181, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437965.0212772, "x": 322467.0525026751}, {"y": 5437988.452551087, "x": 322406.3669252325}, {"y": 5438047.946110091, "x": 322380.01741889573}, {"y": 5438108.651775838, "x": 322403.4398819281}, {"y": 5438135.008640495, "x": 322462.9144401633}, {"y": 5438111.576868596, "x": 322523.6009892076}, {"y": 5438105.094244505, "x": 322529.7265510513}, {"y": 5438100.411988217, "x": 322533.7073503415}, {"y": 5438093.929356118, "x": 322539.8328941801}, {"y": 5438087.030880428, "x": 322547.0731335181}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438055.65600904, "x": 322363.88712941983}, "initial_roll": 0.6219703555107117, "vel_w": 1.0526671409606934, "initial_yaw": 0.040497224777936935, "vel_a": 22.272212982177734, "gamma": 1.8360342550355018}, "target_dir": {"y": 57.05565284087788, "x": -121.45058629848063}, "velocity": {"y": 22.13, "x": 2.2}, "timestamp": 1601570689, "position": {"y": 5438055.65600904, "x": 322363.88712941983, "alt": 101.54, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -74.80298614501953, "speed": 1.0526671409606934}}
{"taginfo": {"evcount": 57, "target_vel": 0.0}, "target": {"y": 5438087.030880428, "x": 322547.0731335181, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437965.0212772, "x": 322467.0525026751}, {"y": 5437988.452551087, "x": 322406.3669252325}, {"y": 5438047.946110091, "x": 322380.01741889573}, {"y": 5438108.651775838, "x": 322403.4398819281}, {"y": 5438135.008640495, "x": 322462.9144401633}, {"y": 5438111.576868596, "x": 322523.6009892076}, {"y": 5438105.094244505, "x": 322529.7265510513}, {"y": 5438100.411988217, "x": 322533.7073503415}, {"y": 5438093.929356118, "x": 322539.8328941801}, {"y": 5438087.030880428, "x": 322547.0731335181}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438107.112922851, "x": 322381.69165531296}, "initial_roll": 0.6458143591880798, "vel_w": 1.0939819812774658, "initial_yaw": 0.623680591583252, "vel_a": 22.13939666748047, "gamma": 2.0181565235513883}, "target_dir": {"y": 57.05565284087788, "x": -121.45058629848063}, "velocity": {"y": 17.39, "x": 14.530000000000001}, "timestamp": 1601570690, "position": {"y": 5438107.112922851, "x": 322381.69165531296, "alt": 100.502, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -64.36814880371094, "speed": 1.0939819812774658}}
{"taginfo": {"evcount": 58, "target_vel": 0.0}, "target": {"y": 5438087.030880428, "x": 322547.0731335181, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437965.0212772, "x": 322467.0525026751}, {"y": 5437988.452551087, "x": 322406.3669252325}, {"y": 5438047.946110091, "x": 322380.01741889573}, {"y": 5438108.651775838, "x": 322403.4398819281}, {"y": 5438135.008640495, "x": 322462.9144401633}, {"y": 5438111.576868596, "x": 322523.6009892076}, {"y": 5438105.094244505, "x": 322529.7265510513}, {"y": 5438100.411988217, "x": 322533.7073503415}, {"y": 5438093.929356118, "x": 322539.8328941801}, {"y": 5438087.030880428, "x": 322547.0731335181}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438146.18507923, "x": 322474.85499358736}, "initial_roll": 0.5553920269012451, "vel_w": 0.9583517909049988, "initial_yaw": 1.672271966934204, "vel_a": 22.30365562438965, "gamma": 2.3990145252533472}, "target_dir": {"y": 57.05565284087788, "x": -121.45058629848063}, "velocity": {"y": -3.61, "x": 22.22}, "timestamp": 1601570691, "position": {"y": 5438146.18507923, "x": 322474.85499358736, "alt": 100.127, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -42.546592712402344, "speed": 0.9583517909049988}}
{"taginfo": {"evcount": 59, "target_vel": 0.0}, "target": {"y": 5437968.498972344, "x": 322609.9680440036, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438047.450188066, "x": 322570.55658010143}, {"y": 5438014.978295322, "x": 322579.24490751355}, {"y": 5437975.397508027, "x": 322602.7279739247}, {"y": 5437968.498972344, "x": 322609.9680440036}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438100.916812361, "x": 322555.2176042473}, "initial_roll": 0.2606608271598816, "vel_w": 0.5467816591262817, "initial_yaw": 2.360675096511841, "vel_a": 21.809123992919922, "gamma": 2.643912394220904}, "target_dir": {"y": 62.894910485483706, "x": 118.5319080837071}, "velocity": {"y": -16.61, "x": 15.08}, "timestamp": 1601570692, "position": {"y": 5438100.916812361, "x": 322555.2176042473, "alt": 99.042, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -28.514978408813477, "speed": 0.5467816591262817}}
{"taginfo": {"evcount": 60, "target_vel": 0.0}, "target": {"y": 5437968.498972344, "x": 322609.9680440036, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438047.450188066, "x": 322570.55658010143}, {"y": 5438014.978295322, "x": 322579.24490751355}, {"y": 5437975.397508027, "x": 322602.7279739247}, {"y": 5437968.498972344, "x": 322609.9680440036}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438024.21222182, "x": 322596.86904947984}, "initial_roll": -0.002886309754103422, "vel_w": 0.12476427853107452, "initial_yaw": 2.8539507389068604, "vel_a": 21.704904556274414, "gamma": 2.4534863561366373}, "target_dir": {"y": 62.894910485483706, "x": 118.5319080837071}, "velocity": {"y": -21.45, "x": 5.87}, "timestamp": 1601570693, "position": {"y": 5438024.21222182, "x": 322596.86904947984, "alt": 98.949, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -39.42558670043945, "speed": 0.12476427853107452}}
{"taginfo": {"evcount": 61, "target_vel": 0.0}, "target": {"y": 5437974.330403844, "x": 322849.86912618007, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437945.06603032, "x": 322670.6527126577}, {"y": 5437946.446730492, "x": 322683.97909314977}, {"y": 5437972.707174938, "x": 322826.5469088063}, {"y": 5437974.087587798, "x": 322839.8733536294}, {"y": 5437974.330403844, "x": 322849.86912618007}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437946.629224583, "x": 322635.7550086707}, "initial_roll": -0.6587950587272644, "vel_w": 0.2328060269355774, "initial_yaw": 2.3288004398345947, "vel_a": 22.445520401000977, "gamma": 6.161031700615941}, "target_dir": {"y": 239.9010821764823, "x": -5.831431499682367}, "velocity": {"y": -15.07, "x": 16.67}, "timestamp": 1601570694, "position": {"y": 5437946.629224583, "x": 322635.7550086707, "alt": 99.403, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 173.00111389160156, "speed": 0.2328060269355774}}
{"taginfo": {"evcount": 62, "target_vel": 0.0}, "target": {"y": 5437974.330403844, "x": 322849.86912618007, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437945.06603032, "x": 322670.6527126577}, {"y": 5437946.446730492, "x": 322683.97909314977}, {"y": 5437972.707174938, "x": 322826.5469088063}, {"y": 5437974.087587798, "x": 322839.8733536294}, {"y": 5437974.330403844, "x": 322849.86912618007}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437930.853676213, "x": 322725.2659440624}, "initial_roll": -0.3742094933986664, "vel_w": 0.4198032319545746, "initial_yaw": 1.4100470542907715, "vel_a": 21.680295944213867, "gamma": 5.4607023592866755}, "target_dir": {"y": 239.9010821764823, "x": -5.831431499682367}, "velocity": {"y": 4.17, "x": 21.45}, "timestamp": 1601570695, "position": {"y": 5437930.853676213, "x": 322725.2659440624, "alt": 101.229, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 132.8751983642578, "speed": 0.4198032319545746}}
{"taginfo": {"evcount": 63, "target_vel": 0.0}, "target": {"y": 5437974.330403844, "x": 322849.86912618007, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437945.06603032, "x": 322670.6527126577}, {"y": 5437946.446730492, "x": 322683.97909314977}, {"y": 5437972.707174938, "x": 322826.5469088063}, {"y": 5437974.087587798, "x": 322839.8733536294}, {"y": 5437974.330403844, "x": 322849.86912618007}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437959.885096078, "x": 322807.70453030826}, "initial_roll": 0.1402527093887329, "vel_w": 0.5790113806724548, "initial_yaw": 1.2481460571289062, "vel_a": 21.852598190307617, "gamma": 5.034676612864755}, "target_dir": {"y": 239.9010821764823, "x": -5.831431499682367}, "velocity": {"y": 6.98, "x": 21.16}, "timestamp": 1601570696, "position": {"y": 5437959.885096078, "x": 322807.70453030826, "alt": 98.909, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 108.4657211303711, "speed": 0.5790113806724548}}
{"taginfo": {"evcount": 64, "target_vel": 0.0}, "target": {"y": 5437977.243157137, "x": 322969.81964505103, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437974.330403844, "x": 322849.86912618007}, {"y": 5437977.00050558, "x": 322959.82387001766}, {"y": 5437977.243157137, "x": 322969.81964505103}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437979.041472133, "x": 322899.362584706}, "initial_roll": 0.15746751427650452, "vel_w": 0.7736803293228149, "initial_yaw": 1.496517300605774, "vel_a": 21.900732040405273, "gamma": 4.86012411343131}, "target_dir": {"y": 119.95051887095906, "x": -2.9127532932907343}, "velocity": {"y": 1.25, "x": 22.09}, "timestamp": 1601570697, "position": {"y": 5437979.041472133, "x": 322899.362584706, "alt": 99.065, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 98.464599609375, "speed": 0.7736803293228149}}
{"taginfo": {"evcount": 65, "target_vel": 0.0}, "target": {"y": 5437978.698793172, "x": 323029.7948989376, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5437977.243157137, "x": 322969.81964505103}, {"y": 5437978.4562238455, "x": 323019.79912214674}, {"y": 5437978.698793172, "x": 323029.7948989376}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 20.0], "initial_pos": {"y": 5437980.734928741, "x": 322987.41690035205}, "initial_roll": 0.23891358077526093, "vel_w": 0.9443860054016113, "initial_yaw": 1.6211575269699097, "vel_a": 21.92012596130371, "gamma": 4.823033336823395}, "target_dir": {"y": 59.975253886543214, "x": -1.455636034719646}, "velocity": {"y": -1.49, "x": 22.11}, "timestamp": 1601570698, "position": {"y": 5437980.734928741, "x": 322987.41690035205, "alt": 99.401, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 96.3394546508789, "speed": 0.9443860054016113}}
{"taginfo": {"evcount": 66, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437979.844213999, "x": 323069.73524951783}, "initial_roll": -0.8097411394119263, "vel_w": 1.061325192451477, "initial_yaw": 1.506667137145996, "vel_a": 21.848997116088867, "gamma": 4.814729733702581}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": 1.16, "x": 22.1}, "timestamp": 1601570699, "position": {"y": 5437979.844213999, "x": 323069.73524951783, "alt": 99.76, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 95.86369323730469, "speed": 1.061325192451477}}
{"taginfo": {"evcount": 67, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438050.252393685, "x": 323132.9453212256}, "initial_roll": -0.7235919237136841, "vel_w": 1.1926884651184082, "initial_yaw": 0.20507550239562988, "vel_a": 22.04570960998535, "gamma": 4.632035551342601}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": 22.13, "x": 3.0700000000000003}, "timestamp": 1601570700, "position": {"y": 5438050.252393685, "x": 323132.9453212256, "alt": 102.302, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 85.39608764648438, "speed": 1.1926884651184082}}
{"taginfo": {"evcount": 68, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438137.924309617, "x": 323096.33720854146}, "initial_roll": -0.6014407873153687, "vel_w": 1.2171273231506348, "initial_yaw": -0.8324222564697266, "vel_a": 22.19357681274414, "gamma": 4.287440216307596}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": 14.040000000000001, "x": -17.490000000000002}, "timestamp": 1601570701, "position": {"y": 5438137.924309617, "x": 323096.33720854146, "alt": 100.985, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 65.65222930908203, "speed": 1.2171273231506348}}
{"taginfo": {"evcount": 69, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438162.555522245, "x": 323013.12209872884}, "initial_roll": -0.40413567423820496, "vel_w": 1.0615005493164062, "initial_yaw": -1.548467755317688, "vel_a": 22.097131729125977, "gamma": 3.972752779525427}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": -0.61, "x": -22.35}, "timestamp": 1601570702, "position": {"y": 5438162.555522245, "x": 323013.12209872884, "alt": 99.563, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 47.62196731567383, "speed": 1.0615005493164062}}
{"taginfo": {"evcount": 70, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438140.658738298, "x": 322916.5097468975}, "initial_roll": 0.024852205067873, "vel_w": 0.7004742622375488, "initial_yaw": -1.8044114112854004, "vel_a": 21.931188583374023, "gamma": 3.6295131599328414}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": -5.54, "x": -21.73}, "timestamp": 1601570703, "position": {"y": 5438140.658738298, "x": 322916.5097468975, "alt": 98.119, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 27.955785751342773, "speed": 0.7004742622375488}}
{"taginfo": {"evcount": 71, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438118.857440998, "x": 322824.79637357936}, "initial_roll": 0.05974162742495537, "vel_w": 0.5178638100624084, "initial_yaw": -1.7240796089172363, "vel_a": 22.181901931762695, "gamma": 3.14885797654626}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": -3.64, "x": -22.03}, "timestamp": 1601570704, "position": {"y": 5438118.857440998, "x": 322824.79637357936, "alt": 98.518, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 0.4162723422050476, "speed": 0.5178638100624084}}
{"taginfo": {"evcount": 72, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 5.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 5, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438105.682364864, "x": 322743.42228490167}, "initial_roll": 0.01741909794509411, "vel_w": 0.532232403755188, "initial_yaw": -1.67610502243042, "vel_a": 22.06926155090332, "gamma": 2.6506143722621434}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": -2.64, "x": -22.03}, "timestamp": 1601570705, "position": {"y": 5438105.682364864, "x": 322743.42228490167, "alt": 99.361, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -28.130983352661133, "speed": 0.532232403755188}}
{"taginfo": {"evcount": 73, "target_vel": 0.0}, "target": {"y": 5438088.489965244, "x": 322607.0494011398, "mutex": 1.0, "num_wp": 7.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438005.050519508, "x": 323089.27033440256}, {"y": 5438065.753730154, "x": 323112.69839691895}, {"y": 5438125.249659714, "x": 323086.3545581305}, {"y": 5438148.686057938, "x": 323025.669966778}, {"y": 5438147.771655608, "x": 323015.1314883846}, {"y": 5438089.648077288, "x": 322627.58372291486}, {"y": 5438088.733095673, "x": 322617.045347878}, {"y": 5438088.489965244, "x": 322607.0494011398}], "navl1_p": 15.0, "num_wp": 7, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438091.812678223, "x": 322645.39920451236}, "initial_roll": 0.10159262269735336, "vel_w": 0.6628462076187134, "initial_yaw": -1.6611350774765015, "vel_a": 21.974376678466797, "gamma": 2.290622337569496}, "target_dir": {"y": -422.74549779779045, "x": -109.79117207229137}, "velocity": {"y": -2.22, "x": -22.05}, "timestamp": 1601570706, "position": {"y": 5438091.812678223, "x": 322645.39920451236, "alt": 99.84100000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -48.75700759887695, "speed": 0.6628462076187134}}
{"taginfo": {"evcount": 74, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 0.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 0, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438084.939588832, "x": 322551.91394993407}, "initial_roll": 0.039833709597587585, "vel_w": 0.8180589079856873, "initial_yaw": -1.5694141387939453, "vel_a": 21.832294464111328, "gamma": 2.1294174683614733}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -0.23, "x": -22.07}, "timestamp": 1601570707, "position": {"y": 5438084.939588832, "x": 322551.91394993407, "alt": 100.124, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -57.99336624145508, "speed": 0.8180589079856873}}
{"taginfo": {"evcount": 75, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 1.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 1, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438083.215068262, "x": 322458.6894612635}, "initial_roll": 0.0212954580783844, "vel_w": 0.972978949546814, "initial_yaw": -1.5372259616851807, "vel_a": 21.654842376708984, "gamma": 2.0537556636327494}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 0.45, "x": -22.080000000000002}, "timestamp": 1601570708, "position": {"y": 5438083.215068262, "x": 322458.6894612635, "alt": 100.139, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -62.328468322753906, "speed": 0.972978949546814}}
{"taginfo": {"evcount": 76, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 2.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 2, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438064.363958161, "x": 322367.476509404}, "initial_roll": -0.5513898730278015, "vel_w": 1.0881810188293457, "initial_yaw": -2.0766677856445312, "vel_a": 22.301223754882812, "gamma": 1.9636176475876552}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -12.02, "x": -18.990000000000002}, "timestamp": 1601570709, "position": {"y": 5438064.363958161, "x": 322367.476509404, "alt": 100.705, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -67.49299621582031, "speed": 1.0881810188293457}}
{"taginfo": {"evcount": 77, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 3.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 3, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437986.060133576, "x": 322323.3636461758}, "initial_roll": -0.647844135761261, "vel_w": 1.1055946350097656, "initial_yaw": -3.0928850173950195, "vel_a": 22.147327423095703, "gamma": 1.6482100254677015}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -22.32, "x": 0.31}, "timestamp": 1601570710, "position": {"y": 5437986.060133576, "x": 322323.3636461758, "alt": 102.148, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -85.56452178955078, "speed": 1.1055946350097656}}
{"taginfo": {"evcount": 78, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 4.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 4, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437913.25554696, "x": 322366.36543465836}, "initial_roll": -0.5634593367576599, "vel_w": 1.0521570444107056, "initial_yaw": 2.2129154205322266, "vel_a": 21.897960662841797, "gamma": 1.1312096309442374}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -12.13, "x": 18.68}, "timestamp": 1601570711, "position": {"y": 5437913.25554696, "x": 322366.36543465836, "alt": 101.652, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -115.18646240234375, "speed": 1.0521570444107056}}
{"taginfo": {"evcount": 79, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 7.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 7, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437909.982430544, "x": 322461.8745280991}, "initial_roll": -0.4559361934661865, "vel_w": 0.8219297528266907, "initial_yaw": 1.2483166456222534, "vel_a": 21.8446102142334, "gamma": 0.7998071964753217}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 8.0, "x": 20.82}, "timestamp": 1601570712, "position": {"y": 5437909.982430544, "x": 322461.8745280991, "alt": 100.008, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -134.17442321777344, "speed": 0.8219297528266907}}
{"taginfo": {"evcount": 80, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437954.700635681, "x": 322537.8380183294}, "initial_roll": 0.3064616918563843, "vel_w": 0.4019888937473297, "initial_yaw": 1.1614271402359009, "vel_a": 22.33026885986328, "gamma": 0.7024140638305791}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 9.290000000000001, "x": 20.400000000000002}, "timestamp": 1601570713, "position": {"y": 5437954.700635681, "x": 322537.8380183294, "alt": 97.947, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -139.754638671875, "speed": 0.4019888937473297}}
{"taginfo": {"evcount": 81, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437963.805013203, "x": 322644.4925703325}, "initial_roll": 0.24804559350013733, "vel_w": 0.28219693899154663, "initial_yaw": 1.745193600654602, "vel_a": 26.19400978088379, "gamma": 6.03823547328126}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -4.58, "x": 25.32}, "timestamp": 1601570714, "position": {"y": 5437963.805013203, "x": 322644.4925703325, "alt": 97.837, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 165.9654083251953, "speed": 0.28219693899154663}}
{"taginfo": {"evcount": 82, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437962.848498889, "x": 322751.3666159991}, "initial_roll": -0.46248215436935425, "vel_w": 0.5125160217285156, "initial_yaw": 1.2932547330856323, "vel_a": 24.12040138244629, "gamma": 5.457682068294417}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 7.78, "x": 23.13}, "timestamp": 1601570715, "position": {"y": 5437962.848498889, "x": 322751.3666159991, "alt": 100.036, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 132.7021484375, "speed": 0.5125160217285156}}
{"taginfo": {"evcount": 83, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437994.240670197, "x": 322848.68546706054}, "initial_roll": 0.6209639310836792, "vel_w": 0.6522217988967896, "initial_yaw": 1.557237982749939, "vel_a": 24.45928192138672, "gamma": 5.097728150094871}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -0.46, "x": 24.64}, "timestamp": 1601570716, "position": {"y": 5437994.240670197, "x": 322848.68546706054, "alt": 99.23700000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 112.07830810546875, "speed": 0.6522217988967896}}
{"taginfo": {"evcount": 84, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437939.735242927, "x": 322938.5827904042}, "initial_roll": 0.7546706199645996, "vel_w": 0.9022044539451599, "initial_yaw": 2.6807217597961426, "vel_a": 24.481111526489258, "gamma": 5.219518900959994}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -22.650000000000002, "x": 10.03}, "timestamp": 1601570717, "position": {"y": 5437939.735242927, "x": 322938.5827904042, "alt": 101.925, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 119.05640411376953, "speed": 0.9022044539451599}}
{"taginfo": {"evcount": 85, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437840.412798606, "x": 322927.6854034703}, "initial_roll": 0.6935719847679138, "vel_w": 1.1478694677352905, "initial_yaw": -2.5300800800323486, "vel_a": 24.44576644897461, "gamma": 5.51993585562}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -19.7, "x": -15.05}, "timestamp": 1601570718, "position": {"y": 5437840.412798606, "x": 322927.6854034703, "alt": 101.825, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 136.26902770996094, "speed": 1.1478694677352905}}
{"taginfo": {"evcount": 86, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437796.939147816, "x": 322836.47718784306}, "initial_roll": 0.6525413393974304, "vel_w": 1.208342432975769, "initial_yaw": -1.5606353282928467, "vel_a": 24.371915817260742, "gamma": 5.83539128148152}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 1.1500000000000001, "x": -24.98}, "timestamp": 1601570719, "position": {"y": 5437796.939147816, "x": 322836.47718784306, "alt": 100.186, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 154.34329223632812, "speed": 1.208342432975769}}
{"taginfo": {"evcount": 87, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437846.728474504, "x": 322746.8463503548}, "initial_roll": 0.6736971735954285, "vel_w": 0.7987423539161682, "initial_yaw": -0.6027566194534302, "vel_a": 25.031169891357422, "gamma": 6.146090035320052}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 21.37, "x": -13.63}, "timestamp": 1601570720, "position": {"y": 5437846.728474504, "x": 322746.8463503548, "alt": 99.516, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 172.14501953125, "speed": 0.7987423539161682}}
{"taginfo": {"evcount": 88, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437948.235058189, "x": 322737.4392532512}, "initial_roll": 0.6865313649177551, "vel_w": 0.24060389399528503, "initial_yaw": 0.38304728269577026, "vel_a": 25.233835220336914, "gamma": 6.1523500617783915}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 23.16, "x": 10.27}, "timestamp": 1601570721, "position": {"y": 5437948.235058189, "x": 322737.4392532512, "alt": 99.569, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 172.50369262695312, "speed": 0.24060389399528503}}
{"taginfo": {"evcount": 89, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438012.076105088, "x": 322817.8239684457}, "initial_roll": 0.6900384426116943, "vel_w": 0.2957960069179535, "initial_yaw": 1.378666877746582, "vel_a": 25.215513229370117, "gamma": 4.4265737385074235}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 3.93, "x": 24.97}, "timestamp": 1601570722, "position": {"y": 5438012.076105088, "x": 322817.8239684457, "alt": 99.717, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 73.62399291992188, "speed": 0.2957960069179535}}
{"taginfo": {"evcount": 90, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437979.763427498, "x": 322914.9115494281}, "initial_roll": 0.6880953907966614, "vel_w": 0.5669541358947754, "initial_yaw": 2.368624448776245, "vel_a": 24.837114334106445, "gamma": 4.750339691708591}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -18.71, "x": 17.02}, "timestamp": 1601570723, "position": {"y": 5437979.763427498, "x": 322914.9115494281, "alt": 99.782, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 92.1744155883789, "speed": 0.5669541358947754}}
{"taginfo": {"evcount": 91, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437886.913077172, "x": 322942.26525985636}, "initial_roll": 0.6885128021240234, "vel_w": 0.7505941390991211, "initial_yaw": -2.9775748252868652, "vel_a": 25.112321853637695, "gamma": 5.208714589575596}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -24.79, "x": -5.0}, "timestamp": 1601570724, "position": {"y": 5437886.913077172, "x": 322942.26525985636, "alt": 99.784, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 118.43736267089844, "speed": 0.7505941390991211}}
{"taginfo": {"evcount": 92, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437807.157409515, "x": 322877.5568283555}, "initial_roll": 0.6836605668067932, "vel_w": 0.8239707946777344, "initial_yaw": -1.982496976852417, "vel_a": 24.712690353393555, "gamma": 5.691321457043177}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -9.39, "x": -23.5}, "timestamp": 1601570725, "position": {"y": 5437807.157409515, "x": 322877.5568283555, "alt": 99.9, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 146.0886993408203, "speed": 0.8239707946777344}}
{"taginfo": {"evcount": 93, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437814.427139349, "x": 322780.34980421566}, "initial_roll": 0.6919412016868591, "vel_w": 0.6770632266998291, "initial_yaw": -1.0431245565414429, "vel_a": 25.029056549072266, "gamma": 6.134726326948683}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 13.46, "x": -21.580000000000002}, "timestamp": 1601570726, "position": {"y": 5437814.427139349, "x": 322780.34980421566, "alt": 100.036, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 171.49392700195312, "speed": 0.6770632266998291}}
{"taginfo": {"evcount": 94, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437909.027762969, "x": 322728.59089796594}, "initial_roll": 0.6829448938369751, "vel_w": 0.2929149568080902, "initial_yaw": 0.017044343054294586, "vel_a": 25.196386337280273, "gamma": 0.46259347819174446}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 25.26, "x": 1.17}, "timestamp": 1601570727, "position": {"y": 5437909.027762969, "x": 322728.59089796594, "alt": 100.046, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -153.49534606933594, "speed": 0.2929149568080902}}
{"taginfo": {"evcount": 95, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437997.340759394, "x": 322779.67258220806}, "initial_roll": 0.6900097131729126, "vel_w": 0.13797008991241455, "initial_yaw": 0.9974386096000671, "vel_a": 25.17110824584961, "gamma": 3.3826926883953288}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 13.08, "x": 21.77}, "timestamp": 1601570728, "position": {"y": 5437997.340759394, "x": 322779.67258220806, "alt": 99.837, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 13.814014434814453, "speed": 0.13797008991241455}}
{"taginfo": {"evcount": 96, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438003.078701383, "x": 322882.33957382676}, "initial_roll": 0.6931442618370056, "vel_w": 0.4062899649143219, "initial_yaw": 2.00429630279541, "vel_a": 25.141176223754883, "gamma": 4.273325196214067}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -11.36, "x": 22.63}, "timestamp": 1601570729, "position": {"y": 5438003.078701383, "x": 322882.33957382676, "alt": 99.872, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 64.84349822998047, "speed": 0.4062899649143219}}
{"taginfo": {"evcount": 97, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437914.268996412, "x": 322943.4220511493}, "initial_roll": 0.6835305690765381, "vel_w": 0.5873668789863586, "initial_yaw": 3.0527889728546143, "vel_a": 24.94319725036621, "gamma": 4.8960846444725945}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.240000000000002, "x": 1.44}, "timestamp": 1601570730, "position": {"y": 5437914.268996412, "x": 322943.4220511493, "alt": 99.958, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 100.52498626708984, "speed": 0.5873668789863586}}
{"taginfo": {"evcount": 98, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437817.229305129, "x": 322896.1510184767}, "initial_roll": 0.684786856174469, "vel_w": 0.6519413590431213, "initial_yaw": -2.172013998031616, "vel_a": 25.295894622802734, "gamma": 5.512769555442706}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -13.68, "x": -21.3}, "timestamp": 1601570731, "position": {"y": 5437817.229305129, "x": 322896.1510184767, "alt": 99.937, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 135.85842895507812, "speed": 0.6519413590431213}}
{"taginfo": {"evcount": 99, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437807.412646299, "x": 322794.32421493344}, "initial_roll": 0.6878725290298462, "vel_w": 0.5456495881080627, "initial_yaw": -1.1845332384109497, "vel_a": 25.080169677734375, "gamma": 6.197631789793009}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 10.16, "x": -23.26}, "timestamp": 1601570732, "position": {"y": 5437807.412646299, "x": 322794.32421493344, "alt": 100.07900000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 175.09814453125, "speed": 0.5456495881080627}}
{"taginfo": {"evcount": 100, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437887.456761349, "x": 322730.0634991128}, "initial_roll": 0.6904736161231995, "vel_w": 0.318806529045105, "initial_yaw": -0.18673425912857056, "vel_a": 25.052988052368164, "gamma": 0.7405236327135039}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 25.02, "x": -4.1}, "timestamp": 1601570733, "position": {"y": 5437887.456761349, "x": 322730.0634991128, "alt": 100.116, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -137.5711212158203, "speed": 0.318806529045105}}
{"taginfo": {"evcount": 101, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437988.788661941, "x": 322767.40199749335}, "initial_roll": 0.6871339678764343, "vel_w": 0.18032066524028778, "initial_yaw": 0.8652613162994385, "vel_a": 25.16769027709961, "gamma": 2.542776355111623}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 15.89, "x": 19.740000000000002}, "timestamp": 1601570734, "position": {"y": 5437988.788661941, "x": 322767.40199749335, "alt": 99.98100000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -34.30964660644531, "speed": 0.18032066524028778}}
{"taginfo": {"evcount": 102, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438008.763637431, "x": 322868.0447444569}, "initial_roll": 0.6916482448577881, "vel_w": 0.3268599808216095, "initial_yaw": 1.8590649366378784, "vel_a": 24.932701110839844, "gamma": 3.9280040832029894}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -7.91, "x": 24.060000000000002}, "timestamp": 1601570735, "position": {"y": 5438008.763637431, "x": 322868.0447444569, "alt": 99.95700000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 45.05805587768555, "speed": 0.3268599808216095}}
{"taginfo": {"evcount": 103, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437935.06827864, "x": 322939.9044897697}, "initial_roll": 0.6940871477127075, "vel_w": 0.4666207432746887, "initial_yaw": 2.8592700958251953, "vel_a": 25.220197677612305, "gamma": 4.701934608367529}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -24.59, "x": 6.4}, "timestamp": 1601570736, "position": {"y": 5437935.06827864, "x": 322939.9044897697, "alt": 99.937, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 89.40100860595703, "speed": 0.4666207432746887}}
{"taginfo": {"evcount": 104, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437830.605382492, "x": 322912.6594588008}, "initial_roll": 0.690570592880249, "vel_w": 0.5349781513214111, "initial_yaw": -2.370469808578491, "vel_a": 24.986984252929688, "gamma": 5.465625212561687}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -17.66, "x": -18.11}, "timestamp": 1601570737, "position": {"y": 5437830.605382492, "x": 322912.6594588008, "alt": 100.042, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 133.15725708007812, "speed": 0.5349781513214111}}
{"taginfo": {"evcount": 105, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437800.950845021, "x": 322814.5871438595}, "initial_roll": 0.6899465918540955, "vel_w": 0.49951159954071045, "initial_yaw": -1.375000238418579, "vel_a": 25.10382652282715, "gamma": 6.15385927516814}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 5.47, "x": -24.71}, "timestamp": 1601570738, "position": {"y": 5437800.950845021, "x": 322814.5871438595, "alt": 100.058, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 172.5901641845703, "speed": 0.49951159954071045}}
{"taginfo": {"evcount": 106, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437866.922935404, "x": 322735.8157391745}, "initial_roll": 0.6823933720588684, "vel_w": 0.36767473816871643, "initial_yaw": -0.3773011267185211, "vel_a": 25.175745010375977, "gamma": 0.8023196226477025}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 23.66, "x": -8.81}, "timestamp": 1601570739, "position": {"y": 5437866.922935404, "x": 322735.8157391745, "alt": 100.127, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -134.0304718017578, "speed": 0.36767473816871643}}
{"taginfo": {"evcount": 107, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437968.16464034, "x": 322748.4178161195}, "initial_roll": 0.6844386458396912, "vel_w": 0.26737600564956665, "initial_yaw": 0.6064084768295288, "vel_a": 24.83746910095215, "gamma": 2.0642100356499102}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 20.39, "x": 14.92}, "timestamp": 1601570740, "position": {"y": 5437968.16464034, "x": 322748.4178161195, "alt": 99.964, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -61.72947692871094, "speed": 0.26737600564956665}}
{"taginfo": {"evcount": 108, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438012.88687971, "x": 322847.082868078}, "initial_roll": 0.6942048668861389, "vel_w": 0.30836042761802673, "initial_yaw": 1.6560771465301514, "vel_a": 24.982587814331055, "gamma": 3.380760764761558}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -2.92, "x": 25.240000000000002}, "timestamp": 1601570741, "position": {"y": 5438012.88687971, "x": 322847.082868078, "alt": 99.88, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 13.703323364257812, "speed": 0.30836042761802673}}
{"taginfo": {"evcount": 109, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437960.480597835, "x": 322929.18399368215}, "initial_roll": 0.6955563426017761, "vel_w": 0.388394832611084, "initial_yaw": 2.599522590637207, "vel_a": 25.035852432250977, "gamma": 4.298764243578723}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -22.17, "x": 12.43}, "timestamp": 1601570742, "position": {"y": 5437960.480597835, "x": 322929.18399368215, "alt": 99.94, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 66.3010482788086, "speed": 0.388394832611084}}
{"taginfo": {"evcount": 110, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437887.678934398, "x": 322942.23827392573}, "initial_roll": 0.6861911416053772, "vel_w": 0.4391891062259674, "initial_yaw": -2.9826736450195312, "vel_a": 24.92470359802246, "gamma": 4.985245546713739}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -24.82, "x": -4.83}, "timestamp": 1601570743, "position": {"y": 5437887.678934398, "x": 322942.23827392573, "alt": 100.014, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 105.63352966308594, "speed": 0.4391891062259674}}
{"taginfo": {"evcount": 111, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437816.503380304, "x": 322895.07775901747}, "initial_roll": 0.6867770552635193, "vel_w": 0.46662548184394836, "initial_yaw": -2.162712335586548, "vel_a": 25.104427337646484, "gamma": 5.623033213003584}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -13.43, "x": -21.44}, "timestamp": 1601570744, "position": {"y": 5437816.503380304, "x": 322895.07775901747, "alt": 99.95, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 142.1760711669922, "speed": 0.46662548184394836}}
{"taginfo": {"evcount": 112, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437808.2568135625, "x": 322792.49114705826}, "initial_roll": 0.6838953495025635, "vel_w": 0.44687336683273315, "initial_yaw": -1.1670325994491577, "vel_a": 25.199853897094727, "gamma": 0.1808496769889918}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 10.66, "x": -23.0}, "timestamp": 1601570745, "position": {"y": 5437808.2568135625, "x": 322792.49114705826, "alt": 99.912, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -169.63807678222656, "speed": 0.44687336683273315}}
{"taginfo": {"evcount": 113, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437876.756700944, "x": 322732.7151884467}, "initial_roll": 0.6798257231712341, "vel_w": 0.385772705078125, "initial_yaw": -0.2963162362575531, "vel_a": 24.805898666381836, "gamma": 1.0778243032066723}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 24.37, "x": -6.61}, "timestamp": 1601570746, "position": {"y": 5437876.756700944, "x": 322732.7151884467, "alt": 99.999, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -118.2452163696289, "speed": 0.385772705078125}}
{"taginfo": {"evcount": 114, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437976.99425429, "x": 322755.1934588667}, "initial_roll": 0.6873975396156311, "vel_w": 0.3316192626953125, "initial_yaw": 0.6991696953773499, "vel_a": 25.1124267578125, "gamma": 2.0771342232620102}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 18.82, "x": 17.0}, "timestamp": 1601570747, "position": {"y": 5437976.99425429, "x": 322755.1934588667, "alt": 99.973, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -60.988975524902344, "speed": 0.3316192626953125}}
{"taginfo": {"evcount": 115, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438013.549743322, "x": 322838.7002540586}, "initial_roll": 0.6880631446838379, "vel_w": 0.3270663917064667, "initial_yaw": 1.5736030340194702, "vel_a": 25.00526237487793, "gamma": 3.147219355893926}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -1.03, "x": 25.2}, "timestamp": 1601570748, "position": {"y": 5438013.549743322, "x": 322838.7002540586, "alt": 100.069, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 0.3223862946033478, "speed": 0.3270663917064667}}
{"taginfo": {"evcount": 116, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437967.759696083, "x": 322924.26598496124}, "initial_roll": 0.6900017261505127, "vel_w": 0.37683340907096863, "initial_yaw": 2.506141424179077, "vel_a": 24.977991104125977, "gamma": 4.19056613375931}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -21.05, "x": 14.26}, "timestamp": 1601570749, "position": {"y": 5437967.759696083, "x": 322924.26598496124, "alt": 99.906, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 60.10175323486328, "speed": 0.37683340907096863}}
{"taginfo": {"evcount": 117, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437871.904607068, "x": 322938.13180154347}, "initial_roll": 0.6947677731513977, "vel_w": 0.42190417647361755, "initial_yaw": -2.8426172733306885, "vel_a": 25.02261734008789, "gamma": 5.090068366167585}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -23.92, "x": -8.46}, "timestamp": 1601570750, "position": {"y": 5437871.904607068, "x": 322938.13180154347, "alt": 100.013, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 111.63943481445312, "speed": 0.42190417647361755}}
{"taginfo": {"evcount": 118, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437803.96830076, "x": 322868.8316629606}, "initial_roll": 0.6929149627685547, "vel_w": 0.43697306513786316, "initial_yaw": -1.9041111469268799, "vel_a": 25.10346031188965, "gamma": 5.906383432975872}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -7.32, "x": -24.36}, "timestamp": 1601570751, "position": {"y": 5437803.96830076, "x": 322868.8316629606, "alt": 99.936, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 158.4108428955078, "speed": 0.43697306513786316}}
{"taginfo": {"evcount": 119, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437815.779049942, "x": 322777.9253823046}, "initial_roll": 0.6898247003555298, "vel_w": 0.4186451733112335, "initial_yaw": -1.0281661748886108, "vel_a": 25.052398681640625, "gamma": 0.4154350205569486}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 13.97, "x": -21.2}, "timestamp": 1601570752, "position": {"y": 5437815.779049942, "x": 322777.9253823046, "alt": 100.035, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -156.19732666015625, "speed": 0.4186451733112335}}
{"taginfo": {"evcount": 120, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437899.141589784, "x": 322728.6214252006}, "initial_roll": 0.685306191444397, "vel_w": 0.3783218562602997, "initial_yaw": -0.089839406311512, "vel_a": 25.006664276123047, "gamma": 1.2893647812299556}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 25.3, "x": -1.2}, "timestamp": 1601570753, "position": {"y": 5437899.141589784, "x": 322728.6214252006, "alt": 99.946, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -106.12483978271484, "speed": 0.3783218562602997}}
{"taginfo": {"evcount": 121, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437983.832467483, "x": 322761.84968243254}, "initial_roll": 0.687232255935669, "vel_w": 0.34881871938705444, "initial_yaw": 0.7843145728111267, "vel_a": 24.944902420043945, "gamma": 2.2963096512354144}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 17.16, "x": 18.740000000000002}, "timestamp": 1601570754, "position": {"y": 5437983.832467483, "x": 322761.84968243254, "alt": 99.861, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -48.431148529052734, "speed": 0.34881871938705444}}
{"taginfo": {"evcount": 122, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438008.83127116, "x": 322867.1703670629}, "initial_roll": 0.6888106465339661, "vel_w": 0.3570933938026428, "initial_yaw": 1.8347834348678589, "vel_a": 24.942380905151367, "gamma": 3.4597736250899285}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -7.75, "x": 24.21}, "timestamp": 1601570755, "position": {"y": 5438008.83127116, "x": 322867.1703670629, "alt": 99.96000000000001, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 18.230426788330078, "speed": 0.3570933938026428}}
{"taginfo": {"evcount": 123, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437941.749564544, "x": 322937.3590606517}, "initial_roll": 0.689622163772583, "vel_w": 0.38510966300964355, "initial_yaw": 2.7699193954467773, "vel_a": 24.727497100830078, "gamma": 4.403239919984476}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -24.080000000000002, "x": 8.06}, "timestamp": 1601570756, "position": {"y": 5437941.749564544, "x": 322937.3590606517, "alt": 99.958, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 72.28706359863281, "speed": 0.38510966300964355}}
{"taginfo": {"evcount": 124, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437845.438513265, "x": 322924.6683084856}, "initial_roll": 0.7000266909599304, "vel_w": 0.39794614911079407, "initial_yaw": -2.5763509273529053, "vel_a": 25.106399536132812, "gamma": 5.266771634497378}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -20.830000000000002, "x": -14.66}, "timestamp": 1601570757, "position": {"y": 5437845.438513265, "x": 322924.6683084856, "alt": 99.946, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 121.76378631591797, "speed": 0.39794614911079407}}
{"taginfo": {"evcount": 125, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437798.92026297, "x": 322839.3744537931}, "initial_roll": 0.6884313821792603, "vel_w": 0.3943956196308136, "initial_yaw": -1.6319018602371216, "vel_a": 24.791629791259766, "gamma": 6.181853359282616}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -0.32, "x": -25.37}, "timestamp": 1601570758, "position": {"y": 5437798.92026297, "x": 322839.3744537931, "alt": 100.026, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 174.19410705566406, "speed": 0.3943956196308136}}
{"taginfo": {"evcount": 126, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437835.296349482, "x": 322755.0290078535}, "initial_roll": 0.6947128176689148, "vel_w": 0.3807181715965271, "initial_yaw": -0.7544835805892944, "vel_a": 25.161413192749023, "gamma": 0.746837721341973}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 19.37, "x": -16.46}, "timestamp": 1601570759, "position": {"y": 5437835.296349482, "x": 322755.0290078535, "alt": 99.933, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -137.2093505859375, "speed": 0.3807181715965271}}
{"taginfo": {"evcount": 127, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437934.866328765, "x": 322732.2173524525}, "initial_roll": 0.6913552284240723, "vel_w": 0.3717838525772095, "initial_yaw": 0.23898497223854065, "vel_a": 25.12521743774414, "gamma": 1.7788442022065951}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 24.41, "x": 7.2700000000000005}, "timestamp": 1601570760, "position": {"y": 5437934.866328765, "x": 322732.2173524525, "alt": 99.894, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -78.0797348022461, "speed": 0.3717838525772095}}
{"taginfo": {"evcount": 128, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438001.2349968515, "x": 322786.32485947583}, "initial_roll": 0.6903268098831177, "vel_w": 0.37636542320251465, "initial_yaw": 1.0546584129333496, "vel_a": 24.966459274291992, "gamma": 2.6588559570190706}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 11.34, "x": 22.7}, "timestamp": 1601570761, "position": {"y": 5438001.2349968515, "x": 322786.32485947583, "alt": 99.914, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -27.658775329589844, "speed": 0.37636542320251465}}
{"taginfo": {"evcount": 129, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438007.246889724, "x": 322871.91658051976}, "initial_roll": 0.6860804557800293, "vel_w": 0.38694727420806885, "initial_yaw": 1.877123475074768, "vel_a": 24.964338302612305, "gamma": 3.464011380174517}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -8.91, "x": 23.76}, "timestamp": 1601570762, "position": {"y": 5438007.246889724, "x": 322871.91658051976, "alt": 99.973, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 18.47323226928711, "speed": 0.38694727420806885}}
{"taginfo": {"evcount": 130, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437942.900541678, "x": 322937.18006681104}, "initial_roll": 0.6957024931907654, "vel_w": 0.39413297176361084, "initial_yaw": 2.756598949432373, "vel_a": 25.01774024963379, "gamma": 4.257960421199992}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -24.080000000000002, "x": 8.28}, "timestamp": 1601570763, "position": {"y": 5437942.900541678, "x": 322937.18006681104, "alt": 99.943, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 63.96316146850586, "speed": 0.39413297176361084}}
{"taginfo": {"evcount": 131, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437841.931828242, "x": 322922.0765745569}, "initial_roll": 0.6924432516098022, "vel_w": 0.39437559247016907, "initial_yaw": -2.5340123176574707, "vel_a": 25.03901481628418, "gamma": 5.306930372681064}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -20.06, "x": -15.63}, "timestamp": 1601570764, "position": {"y": 5437841.931828242, "x": 322922.0765745569, "alt": 99.986, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 124.06471252441406, "speed": 0.39437559247016907}}
{"taginfo": {"evcount": 132, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437799.324943158, "x": 322840.9422135311}, "initial_roll": 0.6943445205688477, "vel_w": 0.3926638960838318, "initial_yaw": -1.6582225561141968, "vel_a": 24.820463180541992, "gamma": 6.150202488675351}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -0.8, "x": -25.45}, "timestamp": 1601570765, "position": {"y": 5437799.324943158, "x": 322840.9422135311, "alt": 99.976, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 172.38064575195312, "speed": 0.3926638960838318}}
{"taginfo": {"evcount": 133, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437839.004895529, "x": 322752.2116347875}, "initial_roll": 0.6965571045875549, "vel_w": 0.3805672526359558, "initial_yaw": -0.7237923741340637, "vel_a": 25.053970336914062, "gamma": 0.7973570882724492}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 20.02, "x": -15.73}, "timestamp": 1601570766, "position": {"y": 5437839.004895529, "x": 322752.2116347875, "alt": 99.971, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -134.31480407714844, "speed": 0.3805672526359558}}
{"taginfo": {"evcount": 134, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437927.357857741, "x": 322730.4362315217}, "initial_roll": 0.6896184682846069, "vel_w": 0.37415528297424316, "initial_yaw": 0.1597922146320343, "vel_a": 24.963703155517578, "gamma": 1.7114627645181733}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 24.86, "x": 5.54}, "timestamp": 1601570767, "position": {"y": 5437927.357857741, "x": 322730.4362315217, "alt": 99.913, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -81.9404067993164, "speed": 0.37415528297424316}}
{"taginfo": {"evcount": 135, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438006.090581094, "x": 322796.88109170436}, "initial_roll": 0.6893540024757385, "vel_w": 0.36982855200767517, "initial_yaw": 1.1559159755706787, "vel_a": 25.00132942199707, "gamma": 2.6581848737138842}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": 8.86, "x": 23.85}, "timestamp": 1601570768, "position": {"y": 5438006.090581094, "x": 322796.88109170436, "alt": 99.968, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": -27.69722557067871, "speed": 0.36982855200767517}}
{"taginfo": {"evcount": 136, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5438002.861950573, "x": 322882.56302140496}, "initial_roll": 0.692453145980835, "vel_w": 0.3741796612739563, "initial_yaw": 1.9738245010375977, "vel_a": 24.91974449157715, "gamma": 3.5123261823546255}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -11.36, "x": 22.740000000000002}, "timestamp": 1601570769, "position": {"y": 5438002.861950573, "x": 322882.56302140496, "alt": 100.011, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 21.241466522216797, "speed": 0.3741796612739563}}
{"taginfo": {"evcount": 137, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437926.123144848, "x": 322941.6321542084}, "initial_roll": 0.6893606781959534, "vel_w": 0.3942911624908447, "initial_yaw": 2.9096481800079346, "vel_a": 25.119163513183594, "gamma": 4.527255209308142}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.05, "x": 4.33}, "timestamp": 1601570770, "position": {"y": 5437926.123144848, "x": 322941.6321542084, "alt": 99.941, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 79.39261627197266, "speed": 0.3942911624908447}}
{"taginfo": {"evcount": 138, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437901.180880713, "x": 322943.34541283135}, "initial_roll": 0.6866534948348999, "vel_w": 0.39996445178985596, "initial_yaw": -3.1348443031311035, "vel_a": 24.754878997802734, "gamma": 4.758676051710812}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.32, "x": -1.72}, "timestamp": 1601570771, "position": {"y": 5437901.180880713, "x": 322943.34541283135, "alt": 99.932, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 92.65205383300781, "speed": 0.39996445178985596}}
{"taginfo": {"evcount": 139, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437901.180880713, "x": 322943.34541283135}, "initial_roll": 0.6866534948348999, "vel_w": 0.39996445178985596, "initial_yaw": -3.1348443031311035, "vel_a": 24.754878997802734, "gamma": 4.758676051710812}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.32, "x": -1.72}, "timestamp": 1601570772, "position": {"y": 5437901.180880713, "x": 322943.34541283135, "alt": 99.932, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 92.65205383300781, "speed": 0.39996445178985596}}
{"taginfo": {"evcount": 140, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437901.180880713, "x": 322943.34541283135}, "initial_roll": 0.6866534948348999, "vel_w": 0.39996445178985596, "initial_yaw": -3.1348443031311035, "vel_a": 24.754878997802734, "gamma": 4.758676051710812}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.32, "x": -1.72}, "timestamp": 1601570773, "position": {"y": 5437901.180880713, "x": 322943.34541283135, "alt": 99.932, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 92.65205383300781, "speed": 0.39996445178985596}}
{"taginfo": {"evcount": 141, "target_vel": 0.0}, "target": {"y": 5437967.039880109, "x": 322549.99276419403, "mutex": 1.0, "num_wp": 9.0}, "navigation_data": {"navl1_d": 0.75, "wp_list": [{"y": 5438083.853896863, "x": 322416.5520770947}, {"y": 5438057.496633828, "x": 322357.0780962703}, {"y": 5437996.79079725, "x": 322333.6562085413}, {"y": 5437937.297395031, "x": 322360.005951063}, {"y": 5437913.866513705, "x": 322420.6912872103}, {"y": 5437938.179279821, "x": 322478.1512077064}, {"y": 5437942.484388179, "x": 322482.5366551485}, {"y": 5437966.796652575, "x": 322539.9969869072}, {"y": 5437967.039880109, "x": 322549.99276419403}], "navl1_p": 15.0, "num_wp": 9, "radius_list": [40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 20.0], "initial_pos": {"y": 5437901.180880713, "x": 322943.34541283135}, "initial_roll": 0.6866534948348999, "vel_w": 0.39996445178985596, "initial_yaw": -3.1348443031311035, "vel_a": 24.754878997802734, "gamma": 4.758676051710812}, "target_dir": {"y": -57.05663694575196, "x": 121.45008513517678}, "velocity": {"y": -25.32, "x": -1.72}, "timestamp": 1601570774, "position": {"y": 5437901.180880713, "x": 322943.34541283135, "alt": 99.932, "zone": 19.0}, "wind": {"speed_z": 0.0, "direction": 92.65205383300781, "speed": 0.39996445178985596}}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":418.78610906400866}
{"intersDistance":82.63863793056282}
{"intersDistance":8.798102618288903}
{"intersDistance":6.451224945743985}
{"intersDistance":5.528414282234254}
{"intersDistance":0.7488700298421505}
{"intersDistance":0.9808447350942705}
{"intersDistance":1248.4606312537758}
{"intersDistance":167.46135422138184}
{"intersDistance":81.75950581528714}
{"intersDistance":-1}
{"intersDistance":3.882218948356241}
{"intersDistance":30.63185992793523}
{"intersDistance":18.17034270913699}
{"intersDistance":46.3774868067383}
{"intersDistance":3.55106803047196}
{"intersDistance":258.7827431600751}
{"intersDistance":51.47518259815047}
{"intersDistance":14.401070923782756}
{"intersDistance":-1}
{"intersDistance":323.79710191059667}
{"intersDistance":77.05373706733842}
{"intersDistance":4.884698632344941}
{"intersDistance":33.27361338896363}
{"intersDistance":18.726223151570338}
{"intersDistance":60.11729154389852}
{"intersDistance":366.84619124841237}
{"intersDistance":107.03217422645503}
{"intersDistance":22.916541021676586}
{"intersDistance":1023.8691037246988}
{"intersDistance":126.6804499685744}
{"intersDistance":62.70328828362378}
{"intersDistance":18.491316844279567}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":146.10882730011693}
{"intersDistance":23.58306310640202}
{"intersDistance":3.6644782800184346}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":106.70111018716082}
{"intersDistance":22.95530443231389}
{"intersDistance":3.9394252153326184}
{"intersDistance":30.040021533489167}
{"intersDistance":-1}
{"intersDistance":802.4034258199912}
{"intersDistance":219.75077330037948}
{"intersDistance":59.03993152645113}
{"intersDistance":1.6616651542432954}
{"intersDistance":193.93955629146535}
{"intersDistance":43.69572722788098}
{"intersDistance":11.870652951275021}
{"intersDistance":968.1086921084532}
{"intersDistance":190.0705470352366}
{"intersDistance":144.5295327309292}
{"intersDistance":-1}
{"intersDistance":50.019427270072114}
{"intersDistance":2.1228144218754723}
{"intersDistance":226.3027180140933}
{"intersDistance":19.168278562543232}
{"intersDistance":0.5324596354625752}
{"intersDistance":5.779011409444763}
{"intersDistance":0.8213161127361823}
{"intersDistance":-1}
{"intersDistance":4536.319061685547}
{"intersDistance":378.0592975000308}
{"intersDistance":65.53653526341004}
{"intersDistance":29.571920072053206}
{"intersDistance":6.0567244609174224}
{"intersDistance":0.9063427690733173}
{"intersDistance":0.5711494735900933}
{"intersDistance":271.2113204777205}
{"intersDistance":281.0344533377255}
{"intersDistance":213.2550984042823}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":30.011293909191977}
{"intersDistance":8.125402326310601}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":525.2482840226339}
{"intersDistance":385.7354820052507}
{"intersDistance":-1}
{"intersDistance":189.49233151691465}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":726.4090600533593}
{"intersDistance":412.20222580288674}
{"intersDistance":-1}
{"intersDistance":64.11869412572796}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":6962.436602029088}
{"intersDistance":443.2364227050514}
{"intersDistance":369.72514724535716}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":480.3345100812205}
{"intersDistance":374.7394327207036}
{"intersDistance":-1}
{"intersDistance":198.91612575638328}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":563.2472447976292}
{"intersDistance":412.70721901906643}
{"intersDistance":369.5950934679472}
{"intersDistance":-1}
{"intersDistance":200.3567628289628}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":607.3489337289208}
{"intersDistance":399.6146998128148}
{"intersDistance":-1}
{"intersDistance":6.201791320409661}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":496.7435885116952}
{"intersDistance":382.16140907572753}
{"intersDistance":-1}
{"intersDistance":171.18543913553964}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":499.26764081814866}
{"intersDistance":379.78202880769857}
{"intersDistance":-1}
{"intersDistance":177.9676949621521}
{"intersDistance":-1}
{"intersDistance":-1}
{"intersDistance":7496.57686819167}
{"intersDistance":462.44426115020383}
{"intersDistance":425.94763171252004}
{"intersDistance":425.94763171252004}
{"intersDistance":425.94763171252004}
{"intersDistance":425.94763171252004}

This specification is ECG.

The input streams of this specification consist of the timestamp and the measurement.

The output streams are the timestamp and if it is a peak.

format CSV
use theory ECG
use library Utils
use library Lola
use innerspec headismax

input Double ecg_measurement
input Int timestamp

define (Double, (D2, D2)) bandpassed_all = let
  butterargs = ((0.16020035, 0, -0.16020035), (1, -1.6795993, 0.6795993))
  in '(iir_df1 butterargs) bp_st [-1|'((0,0),(0,0))] ecg_measurement[now]
define Double bandpassed = 'fst bandpassed_all[now]
define (D2, D2) bp_st = 'snd bandpassed_all[now]

define Double stompedbandpassed = if instantN[now] <= 5 then stompedbandpassed [-1|bandpassed [5| 'undefined]else bandpassed[now]

define Double differentiated = stompedbandpassed [1| stompedbandpassed[now]] - stompedbandpassed[now]
define Double squared = '(^2) differentiated[now]
define Double convolved = convolved [-1|0] + squared[now] - squared [-15|0]

define [Double] rprev50 = 'shift rprev50 [-1| '(replicate 50 (-1e-6))] convolved[now]
  where shift r x = x:init r
define Bool peak_candidate = let
  nextm50 = convolved [:50]
  in convolved[now]>0.35 && 'headisspike rprev50[now] && 'headisspike nextm50
  where
  headisspike = runSpec.headismax

define Bool ispeak = peak_candidate[now] && instantN[now] - last_qrs_index[now] > 120
define Bool isqrs = convolved[now] > threshold_value[now]
output Bool is_qrs_peak = isqrs[now] && ispeak[now]
define Double qrs_peak_value = let
  qrs_peak_filtering_factor = 0.125
  in if ispeak[now] && isqrs[now] then qrs_peak_filtering_factor * convolved[now] + (1 - qrs_peak_filtering_factor) * qrs_peak_value [-1|0] else qrs_peak_value [-1|0]
define Double noise_peak_value = let
  noise_peak_filtering_factor = 0.125
  in if ispeak[now] && not isqrs[now] then noise_peak_filtering_factor * convolved[now] + (1 - noise_peak_filtering_factor) * noise_peak_value [-1|0] else noise_peak_value [-1|0]
define Double next_threshold_value = if ispeak[now] then noise_peak_value[now] + 0.25 * (qrs_peak_value[now] - noise_peak_value[now]else threshold_value [-1|0]
define Double threshold_value = next_threshold_value [-1|0]
define Int last_qrs_index = next_last_qrs_index [-1|-120]
define Int next_last_qrs_index = if ispeak[now] && isqrs[now] then instantN[now] else last_qrs_index[now]

output Int ts = timestamp[now]
innerspec here
timestamp,ecg_measurement
6034140,1.5933528900
6038012,1.6764417648
6041904,1.7155425548
6045784,1.7302052974
6049652,1.7644183635
6053532,1.8035190582
6057412,1.8328446388
6061296,1.8377322196
6065180,1.8181818962
6069064,1.8328446388
6072948,1.8768328666
6076836,1.9012707710
6080708,1.9012707710
6084572,1.8817204475
6088452,1.8866080284
6092320,1.9012707710
6096192,1.9257086753
6100064,1.9257086753
6103940,1.9012707710
6107816,1.9012707710
6111688,1.9257086753
6115568,1.9648094177
6119444,1.9696969985
6123312,1.9501466751
6127200,1.9354838371
6131088,1.9648094177
6134964,2.0039100646
6138820,2.0234603881
6142692,2.0039100646
6146548,2.0039100646
6150412,2.0136852264
6154280,2.0625610351
6158148,2.0967741012
6162020,2.0869989395
6165892,2.0723361968
6169772,2.0918865203
6173636,2.1358749866
6177516,2.1798632144
6181396,2.1896383762
6185276,2.1896383762
6189156,2.1994135379
6193036,2.2482893466
6196924,2.3020527362
6200804,2.2971651554
6204692,2.2776148319
6208572,2.2776148319
6212452,2.3118278980
6216324,2.3509285449
6220196,2.3509285449
6224076,2.3069403171
6227948,2.2825024127
6231828,2.3069403171
6235700,2.3167154788
6239580,2.2971651554
6243460,2.2287390232
6247324,2.1700880527
6251196,2.1163244247
6255084,2.0772237777
6258964,2.0185728073
6262832,1.9257086753
6266700,1.8328446388
6270580,1.7790811061
6274456,1.7546432018
6278328,1.7302052974
6282196,1.6813293457
6286084,1.6373411178
6289972,1.6177907943
6293856,1.6226783752
6297740,1.6373411178
6301620,1.6324535369
6305504,1.5933528900
6309364,1.5884653091
6313248,1.6080156326
6317116,1.6422286987
6320996,1.6324535369
6324888,1.6129032135
6328772,1.6177907943
6332652,1.6324535369
6336532,1.6715541839
6340404,1.6568914413
6344292,1.6275659561
6348184,1.6226783752
6352068,1.6373411178
6355948,1.6666666030
6359832,1.6813293457
6363720,1.6715541839
6367608,1.6715541839
6371492,1.6959922313
6375364,1.7350928783
6379248,1.7497556209
6383128,1.7399804592
6387008,1.7399804592
6390876,1.7595307826
6394748,1.7937438488
6398640,1.8084066390
6402504,1.8035190582
6406364,1.7888562679
6410252,1.8035190582
6414116,1.8230694770
6417992,1.8426198005
6421864,1.8328446388
6425744,1.8279570579
6429616,1.8426198005
6433480,1.8670577049
6437344,1.8866080284
6441212,1.8963831901
6445092,1.8670577049
6448956,1.8817204475
6452836,1.8817204475
6456716,1.8914956092
6460600,1.8719452857
6464472,1.8426198005
6468332,1.8328446388
6472224,1.8377322196
6476112,1.8621701240
6479984,1.8377322196
6483864,1.8377322196
6487748,1.8132943153
6491640,1.8279570579
6495512,1.8426198005
6499380,1.8426198005
6503244,1.8181818962
6507136,1.8035190582
6511008,1.8084066390
6514872,1.8279570579
6518740,1.8328446388
6522620,1.8132943153
6526500,1.7986314296
6530384,1.8084066390
6534248,1.8426198005
6538108,1.8523949623
6542000,1.8279570579
6545876,1.7986314296
6549756,1.8035190582
6553636,1.8328446388
6557504,1.8572825431
6561384,1.8377322196
6565260,1.7986314296
6569140,1.7937438488
6573016,1.8279570579
6576884,1.8768328666
6580768,1.8719452857
6584656,1.8377322196
6588524,1.8328446388
6592400,1.8621701240
6596280,1.9012707710
6600148,1.9159335136
6604040,1.8963831901
6607916,1.8866080284
6611780,1.9110459327
6615664,1.9599218368
6619544,1.9941349029
6623416,1.9696969985
6627288,1.9452590942
6631168,1.9354838371
6635056,1.9354838371
6638944,1.9305962562
6642824,1.8866080284
6646688,1.8475073814
6650560,1.8084066390
6654428,1.7986314296
6658312,1.7888562679
6662188,1.7693059444
6666056,1.7253177165
6669940,1.7057673931
6673824,1.7008798122
6677696,1.7155425548
6681568,1.7106549739
6685444,1.6911046504
6689312,1.6715541839
6693196,1.6764417648
6697084,1.6959922313
6700964,1.6959922313
6704844,1.6813293457
6708732,1.6666666030
6712608,1.6715541839
6716476,1.6959922313
6720348,1.6959922313
6724240,1.7008798122
6728112,1.7399804592
6731984,1.8572825431
6735860,2.0674486160
6739732,2.3704788684
6743612,2.7077224254
6747484,3.0205278396
6751340,3.2551319599
6755220,3.3137829303
6759100,3.1280548572
6762980,2.7614858150
6766860,2.2629520893
6770736,1.7595307826
6774604,1.3929618644
6778480,1.1583577394
6782356,1.0850440216
6786220,1.0850440216
6790080,1.1583577394
6793964,1.2658846378
6797844,1.3880742835
6801728,1.4956011772
6805596,1.5640274047
6809468,1.5884653091
6813340,1.6324535369
6817228,1.6617790222
6821108,1.6959922313
6824996,1.6959922313
6828868,1.6911046504
6832740,1.7057673931
6836624,1.7302052974
6840484,1.7546432018
6844348,1.7644183635
6848236,1.7595307826
6852108,1.7693059444
6855980,1.8035190582
6859856,1.8279570579
6863728,1.8475073814
6867608,1.8328446388
6871480,1.8426198005
6875352,1.8670577049
6879212,1.8963831901
6883092,1.9110459327
6886976,1.9159335136
6890860,1.9012707710
6894736,1.9159335136
6898616,1.9403715133
6902488,1.9648094177
6906360,1.9648094177
6910240,1.9696969985
6914112,1.9843597412
6917988,2.0234603881
6921860,2.0478982925
6925732,2.0576734542
6929612,2.0723361968
6933476,2.0821113586
6937348,2.1260998249
6941228,2.1554253101
6945108,2.1896383762
6948996,2.1847507953
6952868,2.2091886997
6956740,2.2434017658
6960620,2.2776148319
6964500,2.2873899936
6968368,2.2873899936
6972236,2.2922775745
6976116,2.3167154788
6979996,2.3460409641
6983868,2.3362658023
6987740,2.3118278980
6991620,2.3020527362
6995484,2.3069403171
6999348,2.3167154788
7003228,2.2873899936
7007100,2.2385141849
7010980,2.1749756336
7014868,2.1309874057
7018740,2.0918865203
7022616,2.0234603881
7026480,1.9550342559
7030352,1.8621701240
7034228,1.7986314296
7038116,1.7546432018
7041996,1.7057673931
7045876,1.6520038604
7049740,1.5982404708
7053612,1.5738025665
7057476,1.5689149856
7061340,1.5591397285
7065220,1.5444769859
7069100,1.5200390815
7072964,1.5200390815
7076828,1.5347018241
7080708,1.5591397285
7084588,1.5591397285
7088476,1.5542521476
7092348,1.5689149856
7096228,1.5884653091
7100108,1.6177907943
7103992,1.6226783752
7107876,1.6177907943
7111748,1.6177907943
7115620,1.6422286987
7119500,1.6764417648
7123380,1.6764417648
7127264,1.6715541839
7131148,1.6666666030
7135024,1.6862169265
7138912,1.7106549739
7142792,1.7155425548
7146680,1.7106549739
7150552,1.7008798122
7154416,1.7106549739
7158296,1.7302052974
7162168,1.7399804592
7166040,1.7302052974
7169912,1.7253177165
7173796,1.7350928783
7177676,1.7644183635
7181556,1.7937438488
7185444,1.7741935253
7189316,1.7595307826
7193196,1.7546432018
7197076,1.7693059444
7200956,1.7888562679
7204836,1.7741935253
7208724,1.7595307826
7212608,1.7497556209
7216480,1.7644183635
7220356,1.7839686870
7224224,1.7790811061
7228100,1.7644183635
7231988,1.7644183635
7235876,1.7839686870
7239740,1.7986314296
7243620,1.7986314296
7247492,1.7790811061
7251356,1.7839686870
7255232,1.7888562679
7259108,1.8132943153
7263000,1.8084066390
7266860,1.7937438488
7270748,1.7741935253
7274628,1.7839686870
7278496,1.8035190582
7282364,1.8132943153
7286252,1.8132943153
7290140,1.7839686870
7294012,1.7937438488
7297896,1.8084066390
7301764,1.8181818962
7305656,1.8084066390
7309508,1.7986314296
7313380,1.7986314296
7317264,1.8279570579
7321144,1.8426198005
7325024,1.8377322196
7328912,1.8279570579
7332784,1.8279570579
7336664,1.8523949623
7340540,1.8768328666
7344412,1.8817204475
7348284,1.8768328666
7352156,1.8817204475
7356040,1.9061583518
7359920,1.9305962562
7363800,1.9354838371
7366660,1.9159335136
7371560,1.9159335136
7375444,1.9354838371
7379328,1.9648094177
7383208,1.9745845794
7387080,1.9599218368
7390968,1.9452590942
7394848,1.9501466751
7398728,1.9599218368
7402600,1.9452590942
7406468,1.9159335136
7410348,1.8817204475
7414232,1.8719452857
7418112,1.8719452857
7421996,1.8523949623
7425876,1.8181818962
7429764,1.7888562679
7433644,1.7790811061
7437508,1.7986314296
7441380,1.7937438488
7445260,1.7888562679
7449140,1.7644183635
7453028,1.7693059444
7456908,1.7888562679
7460792,1.8084066390
7464652,1.7986314296
7468524,1.7839686870
7472392,1.7790811061
7476268,1.7839686870
7480132,1.7937438488
7484020,1.7937438488
7487908,1.8328446388
7491800,1.9403715133
7495676,2.1554253101
7499560,2.4682307243
7503428,2.8005865097
7507292,3.1329424381
7511172,3.4115347862
7515052,3.5190615653
7518932,3.3577711582
7522824,2.9765396118
7526708,2.4437928199
7530576,1.9061583518
7534436,1.5151515007
7538316,1.2952101230
7542196,1.2316715717
7546084,1.2463343143
7549972,1.3294233083
7553848,1.4369501113
7557724,1.5591397285
7561604,1.6422286987
7565484,1.6862169265
7569360,1.7106549739
7573236,1.7204301357
7577116,1.7546432018
7580996,1.7741935253
7584876,1.7741935253
7588756,1.7693059444
7592636,1.7741935253
7596520,1.8084066390
7600384,1.8279570579
7604260,1.8328446388
7608132,1.8230694770
7612004,1.8181818962
7615896,1.8475073814
7619776,1.8719452857
7623652,1.8768328666
7627528,1.8670577049
7631400,1.8572825431
7635284,1.8768328666
7639168,1.9061583518
7643036,1.9110459327
7646920,1.9061583518
7650796,1.9012707710
7654672,1.9159335136
7658548,1.9452590942
7662416,1.9648094177
7666296,1.9648094177
7670176,1.9599218368
7674056,1.9745845794
7677932,2.0039100646
7681796,2.0234603881
7685668,2.0234603881
7689532,2.0185728073
7693396,2.0381231307
7697268,2.0772237777
7701148,2.1114368438
7705028,2.1163244247
7708916,2.1212120056
7712792,2.1407625675
7716668,2.1652004718
7720540,2.1994135379
7724420,2.2091886997
7728292,2.2140762805
7732156,2.2091886997
7736028,2.2434017658
7739908,2.2580645084
7743780,2.2678396701
7747652,2.2287390232
7751516,2.2189638614
7755396,2.2091886997
7759276,2.2140762805
7763148,2.1847507953
7767020,2.1407625675
7770900,2.0821113586
7774780,2.0381231307
7778664,1.9941349029
7782536,1.9403715133
7786408,1.8523949623
7790292,1.7741935253
7794184,1.7106549739
7798064,1.6715541839
7801940,1.6324535369
7805820,1.5786901473
7809700,1.5249266624
7813576,1.4956011772
7817452,1.4907135963
7821324,1.4907135963
7825200,1.4858260154
7829080,1.4858260154
7832960,1.4907135963
7836844,1.5249266624
7840724,1.5640274047
7844588,1.5884653091
7848468,1.5982404708
7852332,1.6324535369
7856212,1.6959922313
7860092,1.7839686870
7863964,1.8523949623
7867856,1.8963831901
7871736,1.9305962562
7875620,1.9794721603
7879492,2.0332355499
7883364,2.0625610351
7887244,2.0527858734
7891116,2.0332355499
7894988,2.0332355499
7898868,2.0723361968
7902748,2.0772237777
7906628,2.0674486160
7910500,2.0576734542
7914364,2.0772237777
7918244,2.1065492630
7922124,2.1016616821
7926012,2.0625610351
7929892,2.0381231307
7933764,2.0283479690
7937636,2.0332355499
7941508,2.0136852264
7945384,1.9745845794
7949256,1.9501466751
7953144,1.9501466751
7957032,1.9599218368
7960912,1.9501466751
7964800,1.9257086753
7968668,1.9110459327
7972544,1.9061583518
7976412,1.9110459327
7980292,1.9110459327
7984172,1.8768328666
7988048,1.8572825431
7991936,1.8670577049
7995816,1.8866080284
7999684,1.8914956092
8003552,1.8523949623
8007432,1.8230694770
8011304,1.8279570579
8015180,1.8523949623
8019064,1.8621701240
8022936,1.8377322196
8026824,1.8230694770
8030696,1.8084066390
8034552,1.8230694770
8038412,1.8475073814
8042288,1.8279570579
8046156,1.8132943153
8050044,1.8035190582
8053924,1.8132943153
8057804,1.8181818962
8061696,1.8084066390
8065548,1.7888562679
8069420,1.7790811061
8073292,1.7888562679
8077176,1.8084066390
8081044,1.8181818962
8084932,1.7937438488
8088812,1.7937438488
8092700,1.8084066390
8096552,1.8377322196
8100432,1.8426198005
8104304,1.8426198005
8108176,1.8475073814
8112048,1.8670577049
8115920,1.8866080284
8119788,1.8963831901
8123672,1.8866080284
8127532,1.8768328666
8131400,1.8866080284
8135272,1.9061583518
8139152,1.8963831901
8143032,1.8670577049
8146896,1.8279570579
8150772,1.8035190582
8154648,1.7888562679
8158524,1.7741935253
8162404,1.7350928783
8166276,1.6959922313
8170168,1.6911046504
8174040,1.6862169265
8177928,1.7008798122
8181796,1.6813293457
8185676,1.6617790222
8189552,1.6520038604
8193412,1.6764417648
8197292,1.6911046504
8201164,1.6911046504
8205040,1.6715541839
8208916,1.6666666030
8212788,1.6764417648
8216668,1.6813293457
8220540,1.6764417648
8224416,1.7008798122
8228284,1.7790811061
8232160,1.9550342559
8236028,2.2238514423
8239916,2.5513195991
8243804,2.8836755752
8247688,3.1867058277
8251556,3.3724339008
8255420,3.3040077686
8259284,3.0058650970
8263140,2.5366568565
8267024,1.9892473220
8270896,1.5444769859
8274772,1.2512218952
8278660,1.1192570924
8282528,1.0997067642
8286392,1.1485825777
8290268,1.2609970569
8294140,1.3782991170
8298024,1.4809384346
8301900,1.5395894050
8305764,1.5591397285
8309644,1.5786901473
8313520,1.6129032135
8317396,1.6324535369
8321284,1.6324535369
8325168,1.6226783752
8329044,1.6177907943
8332924,1.6324535369
8336804,1.6617790222
8340688,1.6862169265
8344560,1.6715541839
8348436,1.6813293457
8352324,1.6911046504
8356196,1.7204301357
8360080,1.7302052974
8363944,1.7253177165
8367832,1.7155425548
8371720,1.7253177165
8375596,1.7595307826
8379468,1.7741935253
8383340,1.7839686870
8387220,1.7644183635
8391104,1.7790811061
8394972,1.7937438488
8398860,1.8084066390
8402728,1.8084066390
8406592,1.8084066390
8410452,1.8230694770
8414320,1.8475073814
8418188,1.8768328666
8422072,1.8963831901
8425948,1.8914956092
8429824,1.9159335136
8433708,1.9305962562
8437576,1.9648094177
8441448,1.9648094177
8445328,1.9648094177
8449208,1.9745845794
8453076,2.0039100646
8456940,2.0381231307
8460812,2.0723361968
8464684,2.0625610351
8468540,2.0674486160
8472396,2.0918865203
8476268,2.1114368438
8480156,2.1163244247
8484044,2.1065492630
8487916,2.0674486160
8491788,2.0772237777
8495668,2.0625610351
8499532,2.0576734542
8503396,2.0039100646
8507256,1.9501466751
8511132,1.9012707710
8515008,1.8621701240
8518888,1.8084066390
8522756,1.7302052974
8526628,1.6471162796
8530516,1.5835777282
8534388,1.5395894050
8538256,1.4956011772
8542124,1.4467253684
8546004,1.3978494453
8549888,1.3587487936
8553772,1.3489736318
8557652,1.3489736318
8561528,1.3391984701
8565396,1.3147605657
8569276,1.3049852848
8573156,1.3098728656
8577036,1.3294233083
8580908,1.3294233083
8584788,1.3196481466
8588676,1.3196481466
8592556,1.3343108892
8596432,1.3587487936
8600320,1.3734115362
8604212,1.3782991170
8608092,1.3880742835
8611976,1.3978494453
8615844,1.4271749496
8619724,1.4418377876
8623604,1.4418377876
8627492,1.4320625305
8631356,1.4418377876
8635240,1.4760508537
8639112,1.4858260154
8642992,1.4760508537
8646860,1.4711632728
8650744,1.4907135963
8654612,1.5004887580
8658476,1.5200390815
8662332,1.5200390815
8666196,1.5053763389
8670068,1.5053763389
8673948,1.5200390815
8677812,1.5444769859
8681692,1.5347018241
8685564,1.5249266624
8689436,1.5151515007
8693316,1.5249266624
8697196,1.5347018241
8701084,1.5200390815
8704948,1.5004887580
8708816,1.4858260154
8712696,1.4956011772
8716564,1.5102639198
8720432,1.5151515007
8724300,1.5053763389
8728184,1.4907135963
8732064,1.4907135963
8735940,1.5053763389
8739812,1.5102639198
8743692,1.5004887580
8747552,1.4809384346
8751424,1.4809384346
8755304,1.4907135963
8759180,1.5004887580
8763048,1.4956011772
8766928,1.4809384346
8770808,1.4858260154
8774684,1.4907135963
8778552,1.4956011772
8782432,1.4809384346
8786312,1.4662756919
8790200,1.4565005302
8794060,1.4613881111
8797956,1.4711632728
8801848,1.4662756919
8805728,1.4565005302
8809584,1.4516129493
8813452,1.4613881111
8817344,1.4956011772
8821232,1.4858260154
8825112,1.4858260154
8828984,1.4809384346
8832856,1.4858260154
8836736,1.4956011772
8840604,1.5053763389
8844484,1.4907135963
8848360,1.4907135963
8852236,1.5004887580
8856100,1.5200390815
8859964,1.5200390815
8863828,1.5053763389
8867704,1.4662756919
8871584,1.4369501113
8875460,1.4027370452
8879332,1.3782991170
8883212,1.3343108892
8887084,1.2952101230
8890964,1.2707722187
8894852,1.2658846378
8898732,1.2707722187
8902604,1.2658846378
8906484,1.2805473804
8910348,1.2756597995
8914228,1.2903225421
8918100,1.3098728656
8921972,1.3196481466
8925860,1.3196481466
8929748,1.3294233083
8933620,1.3391984701
8937500,1.3587487936
8941376,1.3685239553
8945260,1.3636363744
8949152,1.3685239553
8953036,1.4173997879
8956916,1.5200390815
8960792,1.7106549739
8964672,1.9696969985
8968540,2.3167154788
8972420,2.6783969402
8976292,3.0303030014
8980156,3.1720430850
8984028,3.0498533248
8987904,2.7174975872
8991788,2.2336266040
8995664,1.7399804592
8999532,1.3440860509
9003384,1.0703812837
9007268,0.9481915473
9011140,0.9481915473
9015016,1.0312805175
9018888,1.1485825777
9022772,1.2707722187
9026648,1.3587487936
9030524,1.4222873687
9034396,1.4711632728
9038284,1.5102639198
9042164,1.5298142433
9046052,1.5395894050
9049916,1.5493645668
9053796,1.5640274047
9057668,1.5786901473
9061540,1.5982404708
9065400,1.6080156326
9069280,1.6226783752
9073164,1.6373411178
9077052,1.6568914413
9080936,1.6715541839
9084816,1.6715541839
9088700,1.6764417648
9092584,1.6862169265
9096464,1.7106549739
9100336,1.7302052974
9104208,1.7399804592
9108084,1.7595307826
9111964,1.7546432018
9115844,1.7741935253
9119724,1.7839686870
9123596,1.7937438488
9127476,1.7888562679
9131356,1.7986314296
9135244,1.8328446388
9139128,1.8426198005
9143000,1.8572825431
9146888,1.8621701240
9150768,1.8719452857
9154648,1.8866080284
9158516,1.9159335136
9162400,1.9354838371
9166288,1.9550342559
9170168,1.9794721603
9174044,1.9892473220
9177916,2.0136852264
9181796,2.0332355499
9185676,2.0527858734
9189548,2.0625610351
9193412,2.0723361968
9197292,2.0821113586
9201172,2.0918865203
9205044,2.0918865203
9208908,2.0918865203
9212780,2.0869989395
9216660,2.0967741012
9220532,2.0869989395
9224396,2.0821113586
9228268,2.0430107116
9232140,2.0234603881
9236016,1.9696969985
9239896,1.9354838371
9243784,1.8621701240
9247652,1.7986314296
9251536,1.7253177165
9255412,1.6666666030
9259292,1.6177907943
9263164,1.5542521476
9267044,1.5102639198
9270924,1.4613881111
9274820,1.4320625305
9278700,1.4125122070
9282580,1.3880742835
9286444,1.3636363744
9290332,1.3440860509
9294196,1.3440860509
9298060,1.3538612127
9301940,1.3636363744
9305828,1.3636363744
9309720,1.3734115362
9313596,1.3880742835
9317460,1.4076246261
9321332,1.4125122070
9325212,1.4173997879
9329100,1.4222873687
9332980,1.4320625305
9336860,1.4565005302
9340728,1.4809384346
9344600,1.4907135963
9348472,1.4956011772
9352356,1.5004887580
9356212,1.5102639198
9360092,1.5249266624
9363972,1.5298142433
9367860,1.5347018241
9371732,1.5347018241
9375596,1.5542521476
9379476,1.5493645668
9383364,1.5591397285
9387244,1.5591397285
9391132,1.5591397285
9395012,1.5689149856
9398900,1.5689149856
9402780,1.5689149856
9406660,1.5640274047
9410532,1.5689149856
9414412,1.5786901473
9418296,1.5933528900
9422164,1.6031280517
9426044,1.6031280517
9429916,1.6031280517
9433800,1.6129032135
9437688,1.6226783752
9441564,1.6177907943
9445432,1.6226783752
9449312,1.6080156326
9453192,1.6080156326
9457068,1.6129032135
9460960,1.6129032135
9464844,1.6129032135
9468724,1.6031280517
9472596,1.6031280517
9476468,1.6177907943
9480356,1.6275659561
9484236,1.6275659561
9488124,1.6275659561
9492012,1.6324535369
9495900,1.6422286987
9499788,1.6471162796
9503668,1.6617790222
9507540,1.6471162796
9511420,1.6471162796
9515308,1.6520038604
9519176,1.6715541839
9523052,1.6666666030
9526928,1.6715541839
9530812,1.6764417648
9534700,1.6911046504
9538572,1.7057673931
9542444,1.7204301357
9546328,1.7302052974
9550200,1.7302052974
9554080,1.7399804592
9557948,1.7546432018
9561828,1.7693059444
9565712,1.7790811061
9569580,1.7839686870
9573444,1.7937438488
9577324,1.8181818962
9581212,1.8230694770
9585092,1.8230694770
9588964,1.8132943153
9592860,1.8035190582
9596724,1.7986314296
9600604,1.7741935253
9604488,1.7497556209
9608368,1.7253177165
9612244,1.6959922313
9616132,1.6911046504
9620016,1.6715541839
9623900,1.6617790222
9627788,1.6471162796
9631676,1.6373411178
9635556,1.6520038604
9639420,1.6471162796
9643308,1.6617790222
9647184,1.6520038604
9651044,1.6568914413
9654932,1.6617790222
9658820,1.6764417648
9662708,1.6764417648
9666588,1.6666666030
9670444,1.6520038604
9674308,1.6617790222
9678200,1.7106549739
9682084,1.8132943153
9685968,1.9990224838
9689844,2.2580645084
9693716,2.6050829887
9697580,2.9716520309
9701444,3.2844574451
9705324,3.4017596244
9709204,3.2404692173
9713096,2.8739002227
9716964,2.3851418495
9720852,1.8768328666
9724728,1.4760508537
9728596,1.2072336673
9732464,1.0948191833
9736348,1.1143695116
9740228,1.1974585056
9744108,1.3000977039
9747972,1.4076246261
9751864,1.4858260154
9755732,1.5542521476
9759604,1.5982404708
9763468,1.6275659561
9767356,1.6568914413
9771244,1.6666666030
9775116,1.6911046504
9778980,1.7057673931
9782864,1.7302052974
9786736,1.7253177165
9790620,1.7350928783
9794496,1.7497556209
9798372,1.7644183635
9802260,1.7839686870
9806140,1.7888562679
9810012,1.7986314296
9813896,1.8084066390
9817768,1.8426198005
9821632,1.8426198005
9825496,1.8475073814
9829372,1.8523949623
9833264,1.8572825431
9837152,1.8670577049
9841020,1.8914956092
9844904,1.8866080284
9848764,1.9110459327
9852636,1.9110459327
9856516,1.9403715133
9860392,1.9452590942
9864264,1.9550342559
9868136,1.9501466751
9872024,1.9648094177
9875904,1.9892473220
9879780,2.0185728073
9883644,2.0430107116
9887516,2.0723361968
9891388,2.0723361968
9895268,2.0918865203
9899140,2.1114368438
9903020,2.1260998249
9906900,2.1358749866
9910788,2.1505377292
9914668,2.1652004718
9918540,2.1798632144
9922412,2.2043011188
9926292,2.1945259571
9930180,2.1945259571
9934068,2.1945259571
9937956,2.1945259571
9941836,2.1896383762
9945716,2.1700880527
9949580,2.1700880527
9953452,2.1260998249
9957324,2.1114368438
9961212,2.0674486160
9965084,2.0136852264
9968968,1.9452590942
9972836,1.8817204475
9976708,1.8230694770
9980580,1.7693059444
9984452,1.7057673931
9988332,1.6520038604
9992204,1.6031280517
9996076,1.5689149856
9999956,1.5395894050
10003828,1.5151515007
10007752,1.4907135963
10011676,1.4809384346
10015584,1.4760508537
10019496,1.4858260154
10023416,1.4662756919
10027336,1.4662756919
10031264,1.4760508537
10035168,1.4907135963
10039084,1.5053763389
10042996,1.5298142433
10046924,1.5347018241
10050844,1.5444769859
10054756,1.5591397285
10058676,1.5835777282
10062588,1.5884653091
10066500,1.5884653091
10070424,1.5933528900
10074332,1.6031280517
10078252,1.6226783752
10082172,1.6373411178
10086100,1.6422286987
10090020,1.6520038604
10093924,1.6471162796
10097852,1.6764417648
10101780,1.6911046504
10105688,1.6813293457
10109604,1.6764417648
10113524,1.6813293457
10117448,1.6862169265
10121376,1.6911046504
10125276,1.6911046504
10129200,1.7008798122
10133112,1.6862169265
10137036,1.7057673931
10140968,1.7106549739
10144880,1.7008798122
10148788,1.6959922313
10152720,1.7106549739
10156632,1.7253177165
10160556,1.7350928783
10164468,1.7350928783
10168384,1.7155425548
10172304,1.7106549739
10176224,1.7106549739
10180140,1.7350928783
10184060,1.7204301357
10187972,1.7204301357
10191892,1.7204301357
10195808,1.7302052974
10199720,1.7399804592
10203632,1.7448680400
10207532,1.7399804592
10211436,1.7350928783
10215348,1.7350928783
10219272,1.7399804592
10223192,1.7448680400
10227096,1.7497556209
10231012,1.7546432018
10234932,1.7546432018
10238844,1.7790811061
10242764,1.7741935253
10246684,1.7839686870
10250588,1.7790811061
10254500,1.7937438488
10258416,1.8084066390
10262320,1.8181818962
10266236,1.8181818962
10270156,1.8230694770
10274068,1.8328446388
10277984,1.8426198005
10281892,1.8523949623
10285824,1.8621701240
10289744,1.8719452857
10293652,1.8768328666
10297564,1.8914956092
10301476,1.9061583518
10305388,1.9159335136
10309320,1.9208210945
10313232,1.9257086753
10317152,1.9305962562
10321072,1.9208210945
10324972,1.9110459327
10328892,1.8914956092
10332808,1.8670577049
10336720,1.8377322196
10340636,1.8132943153
10344556,1.7839686870
10348460,1.7644183635
10352380,1.7546432018
10356300,1.7595307826
10360220,1.7693059444
10364132,1.7693059444
10368048,1.7644183635
10371964,1.7644183635
10375884,1.7693059444
10379796,1.7790811061
10383708,1.7790811061
10387620,1.7741935253
10391540,1.7693059444
10395452,1.7644183635
10399372,1.7693059444
10403284,1.7888562679
10407208,1.8475073814
10411120,1.9745845794
10415028,2.1994135379
10418956,2.5219941139
10422884,2.8885631561
10426804,3.2355816364
10430732,3.4555230140
10434636,3.4261975288
10438556,3.1476051807
10442460,2.6930596828
10446380,2.1700880527
10450296,1.7106549739
10454212,1.3831867027
10458128,1.2023460865
10462032,1.1730204820
10465940,1.2316715717
10469868,1.3294233083
10473788,1.4418377876
10477716,1.5493645668
10481628,1.6275659561
10485548,1.6715541839
10489472,1.7008798122
10493384,1.7302052974
10497292,1.7546432018
10501204,1.7790811061
10505108,1.7888562679
10509028,1.7937438488
10512948,1.7937438488
10516876,1.8132943153
10520808,1.8230694770
10524716,1.8279570579
10528620,1.8230694770
10532532,1.8230694770
10536440,1.8426198005
10540352,1.8670577049
10544264,1.8866080284
10548168,1.8866080284
10552080,1.8866080284
10555992,1.9012707710
10559900,1.9110459327
10563824,1.9208210945
10567728,1.9305962562
10571640,1.9354838371
10575564,1.9550342559
10579472,1.9745845794
10583392,1.9843597412
10587320,1.9892473220
10591236,1.9941349029
10595148,2.0039100646
10599044,2.0283479690
10602948,2.0527858734
10606860,2.0576734542
10610772,2.0674486160
10614676,2.0869989395
10618580,2.1163244247
10622500,2.1456501483
10626420,2.1603128910
10630340,2.1700880527
10634252,2.1847507953
10638156,2.1994135379
10642084,2.2140762805
10645996,2.2238514423
10649924,2.2287390232
10653844,2.2385141849
10657764,2.2482893466
10661684,2.2531769275
10665604,2.2434017658
10669516,2.2287390232
10673436,2.2189638614
10677356,2.2140762805
10681268,2.1994135379
10685188,2.1652004718
10689100,2.1163244247
10693028,2.0576734542
10696944,1.9990224838
10700856,1.9452590942
10704764,1.8817204475
10708684,1.8132943153
10712604,1.7644183635
10716532,1.7057673931
10720448,1.6715541839
10724372,1.6226783752
10728292,1.5835777282
10732220,1.5640274047
10736132,1.5493645668
10740060,1.5493645668
10743988,1.5493645668
10747916,1.5395894050
10751820,1.5395894050
10755732,1.5493645668
10759652,1.5689149856
10763572,1.5786901473
10767484,1.5835777282
10771396,1.5884653091
10775316,1.6031280517
10779232,1.6226783752
10783156,1.6324535369
10787076,1.6422286987
10790988,1.6422286987
10794900,1.6520038604
10798808,1.6715541839
10802736,1.6862169265
10806652,1.6959922313
10810572,1.6959922313
10814492,1.7106549739
10818408,1.7253177165
10822332,1.7350928783
10826256,1.7399804592
10830168,1.7302052974
10834088,1.7302052974
10837996,1.7350928783
10841920,1.7448680400
10845824,1.7448680400
10849728,1.7399804592
10853640,1.7448680400
10857540,1.7546432018
10861444,1.7595307826
10865356,1.7595307826
10869268,1.7595307826
10873180,1.7546432018
10877100,1.7595307826
10881012,1.7644183635
10884940,1.7644183635
10888868,1.7546432018
10892788,1.7644183635
10896708,1.7741935253
10900628,1.7839686870
10904540,1.7839686870
10908444,1.7790811061
10912356,1.7693059444
10916276,1.7839686870
10920188,1.7937438488
10924100,1.8035190582
10928012,1.7937438488
10931940,1.7888562679
10935860,1.7937438488
10939780,1.7986314296
10943708,1.7986314296
10947628,1.7937438488
10951540,1.7986314296
10955464,1.8084066390
10959372,1.8132943153
10963300,1.8132943153
10967232,1.8035190582
10971148,1.8035190582
10975056,1.8084066390
10978968,1.8279570579
10982880,1.8377322196
10986796,1.8328446388
10990720,1.8328446388
10994632,1.8426198005
10998540,1.8572825431
11002460,1.8768328666
11006380,1.8817204475
11010304,1.8866080284
11014204,1.9012707710
11018112,1.9208210945
11022032,1.9305962562
11025948,1.9305962562
11029872,1.9305962562
11033792,1.9550342559
11037708,1.9599218368
11041616,1.9696969985
11045528,1.9648094177
11049448,1.9550342559
11053368,1.9452590942
11057280,1.9354838371
11061200,1.9208210945
11065108,1.8963831901
11069032,1.8572825431
11072956,1.8230694770
11076872,1.8084066390
11080764,1.7986314296
11084676,1.7888562679
11088592,1.7790811061
11092492,1.7741935253
11096420,1.7790811061
11100340,1.7986314296
11104252,1.8035190582
11108164,1.8035190582
11112076,1.7888562679
11115996,1.7986314296
11119916,1.8230694770
11123828,1.8035190582
11127732,1.7839686870
11131636,1.7741935253
11135564,1.7986314296
11139476,1.8768328666
11143396,2.0087976455
11147308,2.2287390232
11151220,2.5317692756
11155140,2.9032258987
11159060,3.2697947025
11162972,3.5141739845
11166904,3.4799609184
11170812,3.1964809894
11174728,2.7468230724
11178636,2.2336266040
11182548,1.7839686870
11186456,1.4369501113
11190372,1.2365591526
11194288,1.1876833438
11198212,1.2658846378
11202136,1.3587487936
11206056,1.4760508537
11209964,1.5738025665
11213876,1.6520038604
11217784,1.7155425548
11221704,1.7497556209
11225612,1.7644183635
11229524,1.7741935253
11233452,1.7839686870
11237368,1.8035190582
11241280,1.8279570579
11245192,1.8328446388
11249116,1.8328446388
11253048,1.8426198005
11256960,1.8621701240
11260868,1.8817204475
11264792,1.8866080284
11268700,1.8866080284
11272608,1.8963831901
11276516,1.9159335136
11280440,1.9354838371
11284360,1.9452590942
11288280,1.9452590942
11292200,1.9550342559
11296120,1.9745845794
11300040,1.9941349029
11303952,2.0039100646
11307856,1.9941349029
11311776,1.9990224838
11315684,2.0136852264
11319596,2.0381231307
11323500,2.0527858734
11327412,2.0625610351
11331324,2.0723361968
11335236,2.0918865203
11339148,2.1163244247
11343076,2.1358749866
11346996,2.1456501483
11350908,2.1603128910
11354828,2.1798632144
11358748,2.2043011188
11362652,2.2287390232
11366580,2.2336266040
11370476,2.2336266040
11374396,2.2482893466
11378316,2.2678396701
11382236,2.2922775745
11386156,2.2727272510
11390076,2.2678396701
11393988,2.2727272510
11397908,2.2825024127
11401828,2.2825024127
11405748,2.2727272510
11409660,2.2482893466
11413572,2.2287390232
11417484,2.2091886997
11421396,2.1652004718
11425316,2.1065492630
11429236,2.0332355499
11433152,1.9696969985
11437068,1.9208210945
11440984,1.8670577049
11444896,1.8035190582
11448808,1.7448680400
11452712,1.7008798122
11456612,1.6520038604
11460508,1.6275659561
11464436,1.5982404708
11468348,1.5689149856
11472268,1.5542521476
11476188,1.5591397285
11480108,1.5640274047
11484012,1.5591397285
11487940,1.5542521476
11491868,1.5542521476
11495788,1.5689149856
11499708,1.5884653091
11503612,1.5982404708
11507516,1.5982404708
11511432,1.6080156326
11515340,1.6324535369
11519268,1.6471162796
11523196,1.6568914413
11527116,1.6568914413
11531036,1.6666666030
11534948,1.6911046504
11538864,1.7106549739
11542780,1.7204301357
11546684,1.7204301357
11550592,1.7155425548
11554512,1.7253177165
11558440,1.7399804592
11562352,1.7497556209
11566272,1.7497556209
11570188,1.7399804592
11574104,1.7399804592
11578016,1.7448680400
11581920,1.7497556209
11585840,1.7448680400
11589736,1.7399804592
11593640,1.7497556209
11597556,1.7790811061
11601468,1.7741935253
11605396,1.7693059444
11609308,1.7693059444
11613228,1.7741935253
11617148,1.7790811061
11621072,1.7790811061
11624980,1.7888562679
11628900,1.7741935253
11632828,1.7790811061
11636732,1.7839686870
11640644,1.7986314296
11644572,1.8035190582
11648476,1.7937438488
11652404,1.7888562679
11656324,1.7986314296
11660244,1.8035190582
11664156,1.7986314296
11668084,1.7888562679
11672008,1.7888562679
11675924,1.7986314296
11679836,1.8132943153
11683756,1.8132943153
11687676,1.8035190582
11691596,1.8035190582
11695504,1.8084066390
11699412,1.8230694770
11703324,1.8328446388
11707248,1.8328446388
11711176,1.8377322196
11715100,1.8523949623
11719032,1.8719452857
11722948,1.8817204475
11726868,1.8719452857
11730792,1.8670577049
11734692,1.8768328666
11738616,1.8866080284
11742516,1.8963831901
11746440,1.9012707710
11750340,1.9110459327
11754264,1.9257086753
11758184,1.9501466751
11762104,1.9648094177
11766024,1.9696969985
11769936,1.9599218368
11773848,1.9648094177
11777768,1.9745845794
11781676,1.9696969985
11785596,1.9501466751
11789520,1.9159335136
11793444,1.8914956092
11797348,1.8817204475
11801272,1.8719452857
11805188,1.8523949623
11809108,1.8328446388
11813028,1.8035190582
11816932,1.7986314296
11820860,1.8035190582
11824772,1.8035190582
11828684,1.7986314296
11832604,1.7986314296
11836520,1.8084066390
11840420,1.8181818962
11844340,1.8132943153
11848272,1.8084066390
11852172,1.8035190582
11856084,1.8035190582
11860004,1.8084066390
11863900,1.8230694770
11867816,1.8719452857
11871736,1.9843597412
11875652,2.1847507953
11879572,2.4975562095
11883476,2.8347995758
11887396,3.1915934085
11891316,3.4652981758
11895244,3.5239491462
11899164,3.3137829303
11903080,2.8983383178
11906996,2.3753666877
11910916,1.8768328666
11914836,1.5102639198
11918756,1.3000977039
11922652,1.2170088291
11926568,1.2414467334
11930484,1.3245357275
11934412,1.4418377876
11938340,1.5640274047
11942252,1.6617790222
11946172,1.7057673931
11950092,1.7350928783
11954004,1.7595307826
11957924,1.7937438488
11961844,1.8132943153
11965772,1.8230694770
11969676,1.8230694770
11973588,1.8328446388
11977500,1.8523949623
11981432,1.8719452857
11985348,1.8768328666
11989268,1.8768328666
11993180,1.8866080284
11997096,1.9061583518
12001016,1.9208210945
12004928,1.9305962562
12008848,1.9305962562
12012768,1.9354838371
12016684,1.9501466751
12020600,1.9648094177
12024512,1.9648094177
12028432,1.9648094177
12032352,1.9648094177
12036272,1.9843597412
12040188,2.0087976455
12044092,2.0283479690
12047996,2.0087976455
12051900,2.0185728073
12055812,2.0332355499
12059724,2.0576734542
12063628,2.0723361968
12067540,2.0772237777
12071460,2.0869989395
12075372,2.1016616821
12079292,2.1309874057
12083196,2.1554253101
12087124,2.1798632144
12091044,2.1847507953
12094964,2.2140762805
12098876,2.2482893466
12102796,2.2727272510
12106700,2.2629520893
12110612,2.2629520893
12114524,2.2678396701
12118444,2.2825024127
12122364,2.2873899936
12126276,2.2776148319
12130196,2.2629520893
12134116,2.2531769275
12138044,2.2482893466
12141964,2.2385141849
12145884,2.2043011188
12149804,2.1554253101
12153716,2.1016616821
12157636,2.0576734542
12161548,2.0039100646
12165444,1.9403715133
12169376,1.8670577049
12173280,1.8084066390
12177180,1.7693059444
12181092,1.7204301357
12185016,1.6862169265
12188940,1.6373411178
12192864,1.6226783752
12196780,1.5982404708
12200684,1.5835777282
12204604,1.5689149856
12208516,1.5542521476
12212444,1.5493645668
12216368,1.5591397285
12220284,1.5786901473
12224204,1.5835777282
12228132,1.5835777282
12232056,1.5933528900
12235968,1.6080156326
12239884,1.6324535369
12243804,1.6520038604
12247708,1.6568914413
12251628,1.6617790222
12255548,1.6764417648
12259476,1.6959922313
12263400,1.7008798122
12267312,1.7008798122
12271232,1.7008798122
12275152,1.7155425548
12279080,1.7399804592
12282988,1.7546432018
12286904,1.7497556209
12290824,1.7399804592
12294736,1.7399804592
12298636,1.7546432018
12302548,1.7693059444
12306468,1.7644183635
12310380,1.7644183635
12314300,1.7693059444
12318212,1.7839686870
12322132,1.7986314296
12326060,1.7937438488
12329980,1.7888562679
12333900,1.7937438488
12337820,1.8035190582
12341736,1.8084066390
12345628,1.8035190582
12349524,1.7986314296
12353436,1.7937438488
12357356,1.8035190582
12361268,1.8132943153
12365200,1.8084066390
12369100,1.7986314296
12373028,1.7986314296
12376952,1.8084066390
12380852,1.8230694770
12384768,1.8279570579
12388680,1.8279570579
12392588,1.8181818962
12396500,1.8328446388
12400432,1.8572825431
12404360,1.8621701240
12408272,1.8572825431
12412200,1.8475073814
12416112,1.8523949623
12420032,1.8670577049
12423944,1.8719452857
12427864,1.8621701240
12431776,1.8475073814
12435688,1.8572825431
12439608,1.8719452857
12443516,1.8817204475
12447440,1.8719452857
12451360,1.8719452857
12455276,1.8866080284
12459192,1.9159335136
12463116,1.9305962562
12467032,1.9257086753
12470952,1.9208210945
12474864,1.9354838371
12478792,1.9599218368
12482712,1.9745845794
12486624,1.9794721603
12490536,1.9794721603
12494456,1.9941349029
12498364,2.0136852264
12502284,2.0136852264
12506200,1.9990224838
12510112,1.9696969985
12514032,1.9550342559
12517952,1.9501466751
12521880,1.9403715133
12525796,1.9110459327
12529712,1.8768328666
12533624,1.8475073814
12537536,1.8426198005
12541448,1.8426198005
12545360,1.8377322196
12549292,1.8181818962
12552196,1.8084066390
12557116,1.8181818962
12561048,1.8279570579
12564960,1.8328446388
12568876,1.8181818962
12572796,1.8181818962
12576712,1.8279570579
12580624,1.8279570579
12584532,1.8132943153
12588460,1.7986314296
12592388,1.8035190582
12596296,1.8621701240
12600208,1.9941349029
12604124,2.2091886997
12608036,2.5024437904
12611952,2.8592374801
12615868,3.2160313129
12619796,3.4946236610
12623700,3.5092864036
12627612,3.2600195407
12631516,2.8299119949
12635436,2.3118278980
12639360,1.8426198005
12643264,1.4907135963
12647180,1.2707722187
12651100,1.2072336673
12655020,1.2414467334
12658948,1.3489736318
12662872,1.4662756919
12666788,1.5640274047
12670700,1.6422286987
12674624,1.7008798122
12678532,1.7546432018
12682452,1.7839686870
12686364,1.7839686870
12690268,1.7888562679
12694188,1.7986314296
12698112,1.8181818962
12702036,1.8328446388
12705960,1.8426198005
12709872,1.8426198005
12713784,1.8572825431
12717704,1.8719452857
12721620,1.8914956092
12725532,1.8914956092
12729448,1.8866080284
12733356,1.8914956092
12737280,1.9061583518
12741200,1.9208210945
12745120,1.9257086753
12749040,1.9305962562
12752952,1.9354838371
12756872,1.9550342559
12760792,1.9696969985
12764704,1.9794721603
12768624,1.9843597412
12772544,1.9941349029
12776456,2.0234603881
12780364,2.0527858734
12784284,2.0674486160
12788196,2.0723361968
12792116,2.0772237777
12796036,2.0967741012
12799940,2.1114368438
12803868,2.1260998249
12807788,2.1407625675
12811700,2.1505377292
12815620,2.1749756336
12819532,2.2043011188
12823444,2.2238514423
12827364,2.2336266040
12831276,2.2482893466
12835196,2.2678396701
12839116,2.2922775745
12843036,2.3020527362
12846948,2.2971651554
12850868,2.2873899936
12854788,2.2873899936
12858700,2.2971651554
12862624,2.2922775745
12866532,2.2727272510
12870452,2.2385141849
12874372,2.2043011188
12878284,2.1603128910
12882196,2.1163244247
12886116,2.0527858734
12890032,1.9843597412
12893960,1.9159335136
12897888,1.8621701240
12901800,1.8084066390
12905696,1.7497556209
12909612,1.6959922313
12913524,1.6520038604
12917428,1.6324535369
12921356,1.6177907943
12925276,1.5982404708
12929188,1.5786901473
12933100,1.5640274047
12937012,1.5591397285
12940940,1.5689149856
12944860,1.5738025665
12948780,1.5689149856
12952692,1.5786901473
12956604,1.5982404708
12960508,1.6177907943
12964428,1.6324535369
12968348,1.6324535369
12972268,1.6324535369
12976188,1.6471162796
12980112,1.6715541839
12984036,1.6764417648
12987956,1.6764417648
12991880,1.6715541839
12995804,1.6813293457
12999724,1.7008798122
13003628,1.7204301357
13007544,1.7253177165
13011472,1.7253177165
13015396,1.7350928783
13019316,1.7546432018
13023228,1.7595307826
13027152,1.7497556209
13031072,1.7448680400
13034972,1.7595307826
13038892,1.7595307826
13042812,1.7741935253
13046724,1.7790811061
13050628,1.7595307826
13054540,1.7595307826
13058460,1.7741935253
13062388,1.7888562679
13066300,1.7741935253
13070220,1.7693059444
13074132,1.7693059444
13078044,1.7839686870
13081964,1.7937438488
13085884,1.7937438488
13089812,1.7839686870
13093716,1.7741935253
13097636,1.7839686870
13101548,1.7937438488
13105476,1.7937438488
13109408,1.7888562679
13113320,1.7888562679
13117236,1.8035190582
13121148,1.8181818962
13125080,1.8181818962
13129000,1.8084066390
13132892,1.7986314296
13136804,1.8035190582
13140708,1.8181818962
13144632,1.8181818962
13148548,1.8181818962
13152472,1.8084066390
13156380,1.8132943153
13160304,1.8279570579
13164224,1.8377322196
13168140,1.8328446388
13172064,1.8279570579
13175980,1.8523949623
13179908,1.8572825431
13183832,1.8670577049
13187744,1.8719452857
13191656,1.8670577049
13195560,1.8621701240
13199468,1.8817204475
13203384,1.9012707710
13207292,1.9110459327
13211212,1.9110459327
13215136,1.9208210945
13219048,1.9403715133
13222960,1.9501466751
13226880,1.9452590942
13230792,1.9305962562
13234704,1.9159335136
13238628,1.9159335136
13242552,1.9012707710
13246452,1.8768328666
13250376,1.8426198005
13254288,1.8279570579
13258196,1.8035190582
13262108,1.7986314296
13266020,1.7839686870
13269932,1.7741935253
13273860,1.7693059444
13277772,1.7839686870
13281676,1.7937438488
13285604,1.7937438488
13289520,1.7888562679
13293436,1.7839686870
13297348,1.7937438488
13301280,1.8084066390
13305184,1.8035190582
13309100,1.7888562679
13313020,1.7741935253
13316940,1.7888562679
13320864,1.8426198005
13324776,1.9550342559
13328684,2.1407625675
13332596,2.4242424964
13336500,2.7859237194
13340428,3.1671555042
13344348,3.4750733375
13348268,3.5337243080
13352180,3.3333332538
13356104,2.9276638031
13360020,2.4242424964
13363944,1.9452590942
13367852,1.5395894050
13371756,1.2903225421
13375668,1.2023460865
13379564,1.2365591526
13383484,1.3245357275
13387416,1.4369501113
13391332,1.5347018241
13395256,1.6226783752
13399184,1.6911046504
13403084,1.7350928783
13407004,1.7546432018
13410924,1.7644183635
13414844,1.7790811061
13418756,1.8035190582
13422656,1.8279570579
13426560,1.8279570579
13430472,1.8279570579
13434380,1.8328446388
13438300,1.8523949623
13442232,1.8670577049
13446136,1.8719452857
13450056,1.8719452857
13453980,1.8768328666
13457900,1.8914956092
13461820,1.9110459327
13465732,1.9159335136
13469648,1.9208210945
13473552,1.9257086753
13477472,1.9403715133
13481392,1.9599218368
13485312,1.9696969985
13489220,1.9696969985
13493136,1.9745845794
13497056,1.9941349029
13500972,2.0136852264
13504892,2.0283479690
13508796,2.0430107116
13512692,2.0381231307
13516604,2.0576734542
13520516,2.0772237777
13524428,2.0869989395
13528340,2.0967741012
13532244,2.1065492630
13536156,2.1309874057
13540068,2.1603128910
13543980,2.1700880527
13547884,2.1798632144
13551812,2.1896383762
13555732,2.2043011188
13559644,2.2287390232
13563556,2.2385141849
13567484,2.2336266040
13571396,2.2287390232
13575316,2.2287390232
13579228,2.2385141849
13583148,2.2336266040
13587060,2.2189638614
13590988,2.1945259571
13594916,2.1700880527
13598820,2.1456501483
13602724,2.1065492630
13606636,2.0478982925
13610544,1.9843597412
13614472,1.9159335136
13618400,1.8523949623
13622320,1.7986314296
13626236,1.7350928783
13630156,1.6764417648
13634076,1.6177907943
13637996,1.5786901473
13641916,1.5542521476
13645844,1.5298142433
13649756,1.5004887580
13653656,1.4809384346
13657568,1.4760508537
13661480,1.4809384346
13665392,1.4809384346
13669304,1.4760508537
13673216,1.4760508537
13677128,1.4809384346
13681044,1.5053763389
13684956,1.5200390815
13688868,1.5249266624
13692788,1.5347018241
13696700,1.5591397285
13700628,1.5786901473
13704544,1.5933528900
13708464,1.5933528900
13712368,1.5933528900
13716280,1.6129032135
13720208,1.6226783752
13724132,1.6422286987
13728052,1.6422286987
13731972,1.6422286987
13735884,1.6471162796
13739812,1.6617790222
13743732,1.6666666030
13747648,1.6764417648
13751568,1.6715541839
13755484,1.6813293457
13759408,1.7008798122
13763328,1.7155425548
13767256,1.7008798122
13771164,1.6959922313
13775084,1.6959922313
13779004,1.7057673931
13782928,1.7008798122
13786836,1.7057673931
13790756,1.7057673931
13794668,1.6959922313
13798580,1.7057673931
13801476,1.7155425548
13806416,1.7155425548
13810336,1.7106549739
13814256,1.7106549739
13818176,1.7155425548
13822104,1.7155425548
13826024,1.7155425548
13829952,1.7057673931
13833868,1.7057673931
13837792,1.7155425548
13841708,1.7204301357
13845620,1.7253177165
13849536,1.7204301357
13853452,1.7204301357
13857368,1.7302052974
13861280,1.7497556209
13865196,1.7546432018
13869112,1.7448680400
13873008,1.7399804592
13876928,1.7399804592
13880848,1.7497556209
13884764,1.7546432018
13888676,1.7595307826
13892580,1.7644183635
13896500,1.7741935253
13900432,1.7888562679
13904348,1.8035190582
13908260,1.7986314296
13912188,1.8132943153
13916108,1.8328446388
13920032,1.8621701240
13923944,1.8719452857
13927864,1.8719452857
13931784,1.8719452857
13935692,1.8768328666
13939600,1.8963831901
13943516,1.9110459327
13947440,1.9061583518
13951360,1.8866080284
13955272,1.8670577049
13959180,1.8523949623
13963100,1.8328446388
13967028,1.8035190582
13970948,1.7693059444
13974864,1.7448680400
13978764,1.7350928783
13982668,1.7350928783
13986584,1.7302052974
13990492,1.7204301357
13994408,1.7106549739
13998328,1.7204301357
14002236,1.7350928783
14006152,1.7302052974
14010072,1.7204301357
14013992,1.7155425548
14017916,1.7204301357
14021840,1.7302052974
14025748,1.7302052974
14029652,1.7155425548
14033568,1.7106549739
14037488,1.7448680400
14041392,1.8377322196
14045320,1.9892473220
14049228,2.2238514423
14053156,2.5464320182
14057080,2.9178886413
14061004,3.2697947025
14064920,3.4604105949
14068828,3.3675463199
14072740,3.0449657440
14076652,2.5806450843
14080556,2.0527858734
14084480,1.6226783752
14088404,1.3294233083
14092320,1.1534701585
14096224,1.1339198350
14100148,1.2072336673
14104068,1.3147605657
14107988,1.4173997879
14111916,1.5004887580
14115812,1.5689149856
14119728,1.6129032135
14123652,1.6422286987
14127564,1.6568914413
14131488,1.6715541839
14135404,1.6959922313
14139328,1.7155425548
14143244,1.7350928783
14147168,1.7399804592
14151088,1.7448680400
14154992,1.7497556209
14158900,1.7693059444
14162812,1.7839686870
14166724,1.7986314296
14170652,1.8132943153
14174572,1.8181818962
14178500,1.8328446388
14182420,1.8475073814
14186332,1.8523949623
14190256,1.8426198005
14194168,1.8475073814
14198088,1.8572825431
14202012,1.8768328666
14205928,1.8866080284
14209840,1.9012707710
14213740,1.8914956092
14217660,1.9061583518
14221576,1.9257086753
14225488,1.9452590942
14229400,1.9599218368
14233328,1.9745845794
14237248,1.9941349029
14241164,2.0234603881
14245076,2.0381231307
14248992,2.0478982925
14252900,2.0576734542
14256820,2.0821113586
14260732,2.1114368438
14264660,2.1358749866
14268580,2.1407625675
14272492,2.1456501483
14276412,2.1554253101
14280340,2.1798632144
14284268,2.1896383762
14288196,2.1896383762
14292116,2.1847507953
14296028,2.1896383762
14299948,2.1945259571
14303876,2.1945259571
14307804,2.1700880527
14311708,2.1456501483
14315620,2.1163244247
14319532,2.0869989395
14323444,2.0430107116
14327360,1.9843597412
14331284,1.9110459327
14335208,1.8426198005
14339120,1.7839686870
14343028,1.7350928783
14346948,1.6764417648
14350880,1.6226783752
14354804,1.5786901473
14358716,1.5493645668
14362644,1.5249266624
14366556,1.5053763389
14370480,1.4809384346
14374396,1.4711632728
14378328,1.4711632728
14382256,1.4809384346
14386168,1.4907135963
14390088,1.4907135963
14394008,1.4956011772
14397932,1.5102639198
14401852,1.5347018241
14405772,1.5493645668
14409684,1.5591397285
14413604,1.5689149856
14417524,1.5884653091
14421444,1.6031280517
14425368,1.6080156326
14429280,1.6129032135
14433200,1.6226783752
14437124,1.6373411178
14441052,1.6568914413
14444980,1.6666666030
14448896,1.6715541839
14452816,1.6715541839
14456724,1.6813293457
14460652,1.6959922313
14464564,1.7057673931
14468488,1.7008798122
14472400,1.7008798122
14476308,1.7106549739
14480224,1.7155425548
14484148,1.7204301357
14488064,1.7253177165
14491992,1.7155425548
14495920,1.7106549739
14499832,1.7253177165
14503752,1.7302052974
14507668,1.7302052974
14511572,1.7057673931
14515496,1.7008798122
14519408,1.7106549739
14523320,1.7204301357
14527232,1.7204301357
14531152,1.7106549739
14535072,1.7155425548
14539000,1.7253177165
14542924,1.7350928783
14546840,1.7302052974
14550752,1.7253177165
14554672,1.7253177165
14558588,1.7350928783
14562512,1.7399804592
14566428,1.7350928783
14570336,1.7302052974
14574252,1.7350928783
14578176,1.7497556209
14582092,1.7644183635
14586020,1.7644183635
14589940,1.7546432018
14593864,1.7497556209
14597780,1.7546432018
14601692,1.7741935253
14605612,1.7839686870
14609524,1.7790811061
14613428,1.7839686870
14617340,1.7986314296
14621260,1.8181818962
14625192,1.8279570579
14629112,1.8279570579
14633024,1.8279570579
14636936,1.8426198005
14640848,1.8719452857
14644760,1.8866080284
14648668,1.8866080284
14652580,1.8914956092
14656496,1.9061583518
14660416,1.9159335136
14664344,1.9159335136
14668268,1.8914956092
14672184,1.8621701240
14676104,1.8475073814
14680016,1.8377322196
14683944,1.8181818962
14687868,1.7888562679
14691788,1.7546432018
14695704,1.7399804592
14699604,1.7350928783
14703516,1.7350928783
14707440,1.7253177165
14711364,1.7204301357
14715288,1.7204301357
14719208,1.7302052974
14723120,1.7448680400
14727020,1.7546432018
14730944,1.7497556209
14734864,1.7399804592
14738784,1.7497556209
14742692,1.7741935253
14746608,1.7448680400
14750512,1.7448680400
14754412,1.7790811061
14758328,1.8719452857
14762244,2.0478982925
14766148,2.3069403171
14770052,2.6539590358
14773964,3.0205278396
14777876,3.3528835773
14781804,3.5288367271
14785728,3.3724339008
14789620,3.0107526779
14793532,2.5024437904
14797448,1.9941349029
14801364,1.5835777282
14805292,1.3049852848
14809208,1.1730204820
14813112,1.1730204820
14817028,1.2512218952
14820956,1.3636363744
14824888,1.4809384346
14828804,1.5591397285
14832712,1.6129032135
14836620,1.6568914413
14840540,1.6959922313
14844464,1.7155425548
14848388,1.7204301357
14852312,1.7302052974
14856220,1.7497556209
14860132,1.7644183635
14864052,1.7888562679
14867972,1.7937438488
14871896,1.7888562679
14875820,1.7986314296
14879732,1.8181818962
14883660,1.8377322196
14887580,1.8328446388
14891512,1.8377322196
14895440,1.8475073814
14899368,1.8670577049
14903268,1.8817204475
14907192,1.8866080284
14911104,1.8963831901
14915024,1.9012707710
14918936,1.9257086753
14922848,1.9452590942
14926752,1.9501466751
14930676,1.9501466751
14934592,1.9501466751
14938512,1.9648094177
14942432,1.9794721603
14946356,1.9941349029
14950264,1.9990224838
14954180,2.0136852264
14958100,2.0381231307
14962012,2.0625610351
14965932,2.0821113586
14969844,2.0869989395
14973748,2.1016616821
14977676,2.1260998249
14981580,2.1554253101
14985508,2.1798632144
14989436,2.1896383762
14993356,2.1945259571
14997284,2.2091886997
15001204,2.2287390232
15005124,2.2336266040
15009044,2.2189638614
15012956,2.1994135379
15016876,2.1945259571
15020804,2.1945259571
15024724,2.1847507953
15028644,2.1554253101
15032556,2.1114368438
15036476,2.0723361968
15040388,2.0332355499
15044304,1.9794721603
15048224,1.9159335136
15052152,1.8426198005
15056068,1.7741935253
15059996,1.7204301357
15063908,1.6666666030
15067828,1.6177907943
15071740,1.5689149856
15075668,1.5298142433
15079588,1.5102639198
15083500,1.5053763389
15087424,1.4809384346
15091344,1.4662756919
15095264,1.4662756919
15099180,1.4711632728
15103112,1.4858260154
15107032,1.4858260154
15110952,1.4809384346
15114872,1.4858260154
15118780,1.5053763389
15122692,1.5347018241
15126604,1.5395894050
15130508,1.5444769859
15134428,1.5444769859
15138348,1.5542521476
15142276,1.5738025665
15146196,1.5786901473
15150116,1.5786901473
15154028,1.5786901473
15157952,1.5933528900
15161872,1.6129032135
15165800,1.6226783752
15169720,1.6226783752
15173628,1.6275659561
15177556,1.6422286987
15181484,1.6617790222
15185404,1.6666666030
15189316,1.6666666030
15193228,1.6666666030
15197140,1.6764417648
15201060,1.6959922313
15204984,1.7106549739
15208904,1.7057673931
15212820,1.6959922313
15216736,1.6862169265
15220652,1.6959922313
15224568,1.7008798122
15228476,1.7057673931
15232408,1.7008798122
15236320,1.7008798122
15240228,1.7106549739
15244144,1.7106549739
15248060,1.7057673931
15251980,1.6959922313
15255908,1.6959922313
15259836,1.7057673931
15263756,1.7106549739
15267668,1.7057673931
15271592,1.7008798122
15275508,1.7057673931
15279440,1.7253177165
15283376,1.7399804592
15287288,1.7399804592
15291208,1.7302052974
15295128,1.7253177165
15299052,1.7350928783
15302976,1.7448680400
15306888,1.7448680400
15310784,1.7399804592
15314696,1.7497556209
15318604,1.7595307826
15322524,1.7839686870
15326444,1.7937438488
15330364,1.7986314296
15334284,1.7986314296
15338216,1.8181818962
15342144,1.8279570579
15346064,1.8475073814
15349980,1.8523949623
15353908,1.8572825431
15357832,1.8621701240
15361740,1.8817204475
15365660,1.8914956092
15369576,1.9012707710
15373488,1.8866080284
15377388,1.8768328666
15381312,1.8719452857
15385240,1.8621701240
15389160,1.8377322196
15393084,1.8132943153
15397016,1.8084066390
15400916,1.7790811061
15404828,1.7644183635
15408740,1.7350928783
15412660,1.7204301357
15416568,1.7155425548
15420488,1.7253177165
15424408,1.7302052974
15428316,1.7204301357
15432240,1.7106549739
15436160,1.7057673931
15440080,1.7155425548
15444004,1.7253177165
15447928,1.7302052974
15451844,1.7204301357
15455760,1.7155425548
15459684,1.7204301357
15463600,1.7350928783
15467508,1.7790811061
15471420,1.8768328666
15475340,2.0674486160
15479252,2.3655912876
15483184,2.7321603298
15487100,3.1133918762
15491020,3.3968720436
15494940,3.4750733375
15498860,3.2795698642
15502772,2.8934507369
15506692,2.3558161258
15510608,1.8523949623
15514528,1.4613881111
15518452,1.2218964099
15522368,1.1485825777
15526292,1.1632453203
15530212,1.2463343143
15534132,1.3489736318
15538056,1.4565005302
15541964,1.5591397285
15545888,1.6129032135
15549812,1.6568914413
15553736,1.6715541839
15557660,1.7008798122
15561568,1.7302052974
15565480,1.7302052974
15569392,1.7399804592
15573312,1.7497556209
15577228,1.7595307826
15581140,1.7790811061
15585052,1.7937438488
15588972,1.7937438488
15592892,1.7937438488
15596812,1.8035190582
15600708,1.8230694770
15604616,1.8475073814
15608532,1.8523949623
15612464,1.8572825431
15616392,1.8621701240
15620300,1.8817204475
15624220,1.8963831901
15628136,1.8963831901
15632056,1.9012707710
15635968,1.9208210945
15639880,1.9305962562
15643792,1.9452590942
15647696,1.9599218368
15651616,1.9648094177
15655536,1.9794721603
15659452,2.0039100646
15663356,2.0332355499
15667268,2.0430107116
15671172,2.0478982925
15675092,2.0576734542
15679012,2.0869989395
15682924,2.1212120056
15686844,2.1505377292
15690748,2.1456501483
15694668,2.1554253101
15698580,2.1749756336
15702508,2.2043011188
15706420,2.2189638614
15710340,2.2140762805
15714252,2.2140762805
15718172,2.2140762805
15722084,2.2287390232
15726004,2.2287390232
15729924,2.2140762805
15733836,2.1945259571
15737748,2.1798632144
15741668,2.1652004718
15745572,2.1309874057
15749484,2.0772237777
15753404,2.0136852264
15757324,1.9550342559
15761236,1.8963831901
15765160,1.8377322196
15769084,1.7644183635
15773016,1.7008798122
15776932,1.6471162796
15780856,1.6080156326
15784756,1.5786901473
15788676,1.5347018241
15792592,1.4956011772
15796520,1.4858260154
15800432,1.4760508537
15804336,1.4662756919
15808252,1.4613881111
15812184,1.4516129493
15816112,1.4662756919
15820032,1.4760508537
15823936,1.4907135963
15827852,1.5053763389
15831764,1.5053763389
15835684,1.5151515007
15839596,1.5347018241
15843516,1.5542521476
15847444,1.5591397285
15851364,1.5689149856
15855284,1.5786901473
15859204,1.5982404708
15863120,1.6226783752
15867044,1.6373411178
15870964,1.6373411178
15874892,1.6373411178
15878820,1.6471162796
15882740,1.6617790222
15886660,1.6715541839
15890580,1.6666666030
15894492,1.6666666030
15898404,1.6764417648
15902332,1.6911046504
15906248,1.7008798122
15910156,1.6959922313
15914076,1.6911046504
15917988,1.6959922313
15921916,1.7057673931
15925848,1.7106549739
15929760,1.7057673931
15933676,1.7008798122
15937580,1.6959922313
15941504,1.7106549739
15945420,1.7204301357
15949344,1.7106549739
15953264,1.7008798122
15957180,1.6959922313
15961108,1.7106549739
15965024,1.7204301357
15968944,1.7204301357
15972864,1.7106549739
15976772,1.7057673931
15980692,1.7204301357
15984596,1.7350928783
15988516,1.7350928783
15992440,1.7302052974
15996360,1.7253177165
16000284,1.7350928783
16004200,1.7497556209
16008112,1.7399804592
16012024,1.7302052974
16015936,1.7302052974
16019848,1.7399804592
16023756,1.7595307826
16027676,1.7693059444
16031572,1.7693059444
16035484,1.7790811061
16039404,1.7888562679
16043328,1.8035190582
16047240,1.8181818962
16051160,1.8084066390
16055060,1.8035190582
16058972,1.8181818962
16062896,1.8426198005
16066800,1.8572825431
16070712,1.8621701240
16074616,1.8670577049
16078524,1.8768328666
16082448,1.8963831901
16086368,1.9012707710
16090280,1.8866080284
16094184,1.8621701240
16098092,1.8523949623
16102024,1.8475073814
16105944,1.8279570579
16109852,1.7986314296
16113764,1.7693059444
16117676,1.7546432018
16121588,1.7546432018
16125512,1.7497556209
16129428,1.7350928783
16133352,1.7253177165
16137272,1.7253177165
16141192,1.7399804592
16145112,1.7497556209
16149032,1.7448680400
16152936,1.7399804592
16156852,1.7350928783
16160760,1.7497556209
16164676,1.7546432018
16168592,1.7497556209
16172512,1.7155425548
16176440,1.7302052974
16180348,1.7839686870
16184260,1.8866080284
16188172,2.0674486160
16192084,2.3313782215
16196012,2.6783969402
16199924,3.0645160675
16203828,3.3870968818
16207736,3.4995112419
16211652,3.3235580921
16215576,2.9374389648
16219500,2.4291300773
16223416,1.9305962562
16227324,1.5249266624
16231244,1.2561094760
16235152,1.1436949968
16239076,1.1632453203
16242996,1.2512218952
16246920,1.3734115362
16250836,1.4711632728
16254756,1.5444769859
16258676,1.6080156326
16262580,1.6568914413
16266500,1.6911046504
16270408,1.7008798122
16274320,1.7106549739
16278240,1.7253177165
16282168,1.7497556209
16286084,1.7644183635
16290004,1.7693059444
16293924,1.7741935253
16297844,1.7888562679
16301760,1.8084066390
16305652,1.8230694770
16309564,1.8328446388
16313496,1.8377322196
16317416,1.8426198005
16321336,1.8621701240
16325244,1.8768328666
16329164,1.8817204475
16333084,1.8817204475
16336996,1.8914956092
16340912,1.9208210945
16344824,1.9354838371
16348744,1.9305962562
16352656,1.9305962562
16356576,1.9403715133
16360500,1.9648094177
16364408,1.9892473220
16368324,2.0039100646
16372228,2.0136852264
16376148,2.0234603881
16380068,2.0430107116
16383972,2.0674486160
16387892,2.0821113586
16391804,2.0967741012
16395716,2.1163244247
16399636,2.1456501483
16403548,2.1798632144
16407468,2.1945259571
16411396,2.1994135379
16415316,2.2091886997
16419228,2.2287390232
16423148,2.2531769275
16427060,2.2580645084
16430964,2.2336266040
16434876,2.2238514423
16438796,2.2238514423
16442716,2.2287390232
16446628,2.2140762805
16450532,2.1847507953
16454444,2.1505377292
16458364,2.1163244247
16462292,2.0821113586
16466212,2.0283479690
16470120,1.9599218368
16474036,1.8817204475
16477956,1.8132943153
16481884,1.7595307826
16485792,1.7008798122
16489700,1.6422286987
16493612,1.5835777282
16497524,1.5444769859
16501444,1.5200390815
16505356,1.5053763389
16509272,1.4858260154
16513188,1.4613881111
16517112,1.4565005302
16521024,1.4662756919
16524952,1.4760508537
16528864,1.4760508537
16532764,1.4711632728
16536684,1.4809384346
16540592,1.4956011772
16544508,1.5249266624
16548428,1.5347018241
16552348,1.5444769859
16556268,1.5542521476
16560188,1.5738025665
16564100,1.6031280517
16568016,1.6129032135
16571940,1.6177907943
16575864,1.6226783752
16579780,1.6422286987
16583700,1.6520038604
16587596,1.6568914413
16591516,1.6520038604
16595420,1.6568914413
16599352,1.6715541839
16603280,1.6862169265
16607196,1.6911046504
16611120,1.6862169265
16615036,1.6813293457
16618968,1.6862169265
16622884,1.6959922313
16626800,1.7008798122
16630700,1.6862169265
16634612,1.6764417648
16638544,1.6862169265
is_qrs_peak,ts
False,6034140
False,6038012
False,6041904
False,6045784
False,6049652
False,6053532
False,6057412
False,6061296
False,6065180
False,6069064
False,6072948
False,6076836
False,6080708
False,6084572
False,6088452
False,6092320
False,6096192
False,6100064
False,6103940
False,6107816
False,6111688
False,6115568
False,6119444
False,6123312
False,6127200
False,6131088
False,6134964
False,6138820
False,6142692
False,6146548
False,6150412
False,6154280
False,6158148
False,6162020
False,6165892
False,6169772
False,6173636
False,6177516
False,6181396
False,6185276
False,6189156
False,6193036
False,6196924
False,6200804
False,6204692
False,6208572
False,6212452
False,6216324
False,6220196
False,6224076
False,6227948
False,6231828
False,6235700
False,6239580
False,6243460
False,6247324
False,6251196
False,6255084
False,6258964
False,6262832
False,6266700
False,6270580
False,6274456
False,6278328
False,6282196
False,6286084
False,6289972
False,6293856
False,6297740
False,6301620
False,6305504
False,6309364
False,6313248
False,6317116
False,6320996
False,6324888
False,6328772
False,6332652
False,6336532
False,6340404
False,6344292
False,6348184
False,6352068
False,6355948
False,6359832
False,6363720
False,6367608
False,6371492
False,6375364
False,6379248
False,6383128
False,6387008
False,6390876
False,6394748
False,6398640
False,6402504
False,6406364
False,6410252
False,6414116
False,6417992
False,6421864
False,6425744
False,6429616
False,6433480
False,6437344
False,6441212
False,6445092
False,6448956
False,6452836
False,6456716
False,6460600
False,6464472
False,6468332
False,6472224
False,6476112
False,6479984
False,6483864
False,6487748
False,6491640
False,6495512
False,6499380
False,6503244
False,6507136
False,6511008
False,6514872
False,6518740
False,6522620
False,6526500
False,6530384
False,6534248
False,6538108
False,6542000
False,6545876
False,6549756
False,6553636
False,6557504
False,6561384
False,6565260
False,6569140
False,6573016
False,6576884
False,6580768
False,6584656
False,6588524
False,6592400
False,6596280
False,6600148
False,6604040
False,6607916
False,6611780
False,6615664
False,6619544
False,6623416
False,6627288
False,6631168
False,6635056
False,6638944
False,6642824
False,6646688
False,6650560
False,6654428
False,6658312
False,6662188
False,6666056
False,6669940
False,6673824
False,6677696
False,6681568
False,6685444
False,6689312
False,6693196
False,6697084
False,6700964
False,6704844
False,6708732
False,6712608
False,6716476
False,6720348
False,6724240
False,6728112
False,6731984
False,6735860
False,6739732
False,6743612
False,6747484
False,6751340
False,6755220
False,6759100
False,6762980
False,6766860
False,6770736
False,6774604
False,6778480
False,6782356
True,6786220
False,6790080
False,6793964
False,6797844
False,6801728
False,6805596
False,6809468
False,6813340
False,6817228
False,6821108
False,6824996
False,6828868
False,6832740
False,6836624
False,6840484
False,6844348
False,6848236
False,6852108
False,6855980
False,6859856
False,6863728
False,6867608
False,6871480
False,6875352
False,6879212
False,6883092
False,6886976
False,6890860
False,6894736
False,6898616
False,6902488
False,6906360
False,6910240
False,6914112
False,6917988
False,6921860
False,6925732
False,6929612
False,6933476
False,6937348
False,6941228
False,6945108
False,6948996
False,6952868
False,6956740
False,6960620
False,6964500
False,6968368
False,6972236
False,6976116
False,6979996
False,6983868
False,6987740
False,6991620
False,6995484
False,6999348
False,7003228
False,7007100
False,7010980
False,7014868
False,7018740
False,7022616
False,7026480
False,7030352
False,7034228
False,7038116
False,7041996
False,7045876
False,7049740
False,7053612
False,7057476
False,7061340
False,7065220
False,7069100
False,7072964
False,7076828
False,7080708
False,7084588
False,7088476
False,7092348
False,7096228
False,7100108
False,7103992
False,7107876
False,7111748
False,7115620
False,7119500
False,7123380
False,7127264
False,7131148
False,7135024
False,7138912
False,7142792
False,7146680
False,7150552
False,7154416
False,7158296
False,7162168
False,7166040
False,7169912
False,7173796
False,7177676
False,7181556
False,7185444
False,7189316
False,7193196
False,7197076
False,7200956
False,7204836
False,7208724
False,7212608
False,7216480
False,7220356
False,7224224
False,7228100
False,7231988
False,7235876
False,7239740
False,7243620
False,7247492
False,7251356
False,7255232
False,7259108
False,7263000
False,7266860
False,7270748
False,7274628
False,7278496
False,7282364
False,7286252
False,7290140
False,7294012
False,7297896
False,7301764
False,7305656
False,7309508
False,7313380
False,7317264
False,7321144
False,7325024
False,7328912
False,7332784
False,7336664
False,7340540
False,7344412
False,7348284
False,7352156
False,7356040
False,7359920
False,7363800
False,7366660
False,7371560
False,7375444
False,7379328
False,7383208
False,7387080
False,7390968
False,7394848
False,7398728
False,7402600
False,7406468
False,7410348
False,7414232
False,7418112
False,7421996
False,7425876
False,7429764
False,7433644
False,7437508
False,7441380
False,7445260
False,7449140
False,7453028
False,7456908
False,7460792
False,7464652
False,7468524
False,7472392
False,7476268
False,7480132
False,7484020
False,7487908
False,7491800
False,7495676
False,7499560
False,7503428
False,7507292
False,7511172
False,7515052
False,7518932
False,7522824
False,7526708
False,7530576
False,7534436
False,7538316
False,7542196
True,7546084
False,7549972
False,7553848
False,7557724
False,7561604
False,7565484
False,7569360
False,7573236
False,7577116
False,7580996
False,7584876
False,7588756
False,7592636
False,7596520
False,7600384
False,7604260
False,7608132
False,7612004
False,7615896
False,7619776
False,7623652
False,7627528
False,7631400
False,7635284
False,7639168
False,7643036
False,7646920
False,7650796
False,7654672
False,7658548
False,7662416
False,7666296
False,7670176
False,7674056
False,7677932
False,7681796
False,7685668
False,7689532
False,7693396
False,7697268
False,7701148
False,7705028
False,7708916
False,7712792
False,7716668
False,7720540
False,7724420
False,7728292
False,7732156
False,7736028
False,7739908
False,7743780
False,7747652
False,7751516
False,7755396
False,7759276
False,7763148
False,7767020
False,7770900
False,7774780
False,7778664
False,7782536
False,7786408
False,7790292
False,7794184
False,7798064
False,7801940
False,7805820
False,7809700
False,7813576
False,7817452
False,7821324
False,7825200
False,7829080
False,7832960
False,7836844
False,7840724
False,7844588
False,7848468
False,7852332
False,7856212
False,7860092
False,7863964
False,7867856
False,7871736
False,7875620
False,7879492
False,7883364
False,7887244
False,7891116
False,7894988
False,7898868
False,7902748
False,7906628
False,7910500
False,7914364
False,7918244
False,7922124
False,7926012
False,7929892
False,7933764
False,7937636
False,7941508
False,7945384
False,7949256
False,7953144
False,7957032
False,7960912
False,7964800
False,7968668
False,7972544
False,7976412
False,7980292
False,7984172
False,7988048
False,7991936
False,7995816
False,7999684
False,8003552
False,8007432
False,8011304
False,8015180
False,8019064
False,8022936
False,8026824
False,8030696
False,8034552
False,8038412
False,8042288
False,8046156
False,8050044
False,8053924
False,8057804
False,8061696
False,8065548
False,8069420
False,8073292
False,8077176
False,8081044
False,8084932
False,8088812
False,8092700
False,8096552
False,8100432
False,8104304
False,8108176
False,8112048
False,8115920
False,8119788
False,8123672
False,8127532
False,8131400
False,8135272
False,8139152
False,8143032
False,8146896
False,8150772
False,8154648
False,8158524
False,8162404
False,8166276
False,8170168
False,8174040
False,8177928
False,8181796
False,8185676
False,8189552
False,8193412
False,8197292
False,8201164
False,8205040
False,8208916
False,8212788
False,8216668
False,8220540
False,8224416
False,8228284
False,8232160
False,8236028
False,8239916
False,8243804
False,8247688
False,8251556
False,8255420
False,8259284
False,8263140
False,8267024
False,8270896
False,8274772
False,8278660
False,8282528
True,8286392
False,8290268
False,8294140
False,8298024
False,8301900
False,8305764
False,8309644
False,8313520
False,8317396
False,8321284
False,8325168
False,8329044
False,8332924
False,8336804
False,8340688
False,8344560
False,8348436
False,8352324
False,8356196
False,8360080
False,8363944
False,8367832
False,8371720
False,8375596
False,8379468
False,8383340
False,8387220
False,8391104
False,8394972
False,8398860
False,8402728
False,8406592
False,8410452
False,8414320
False,8418188
False,8422072
False,8425948
False,8429824
False,8433708
False,8437576
False,8441448
False,8445328
False,8449208
False,8453076
False,8456940
False,8460812
False,8464684
False,8468540
False,8472396
False,8476268
False,8480156
False,8484044
False,8487916
False,8491788
False,8495668
False,8499532
False,8503396
False,8507256
False,8511132
False,8515008
False,8518888
False,8522756
False,8526628
False,8530516
False,8534388
False,8538256
False,8542124
False,8546004
False,8549888
False,8553772
False,8557652
False,8561528
False,8565396
False,8569276
False,8573156
False,8577036
False,8580908
False,8584788
False,8588676
False,8592556
False,8596432
False,8600320
False,8604212
False,8608092
False,8611976
False,8615844
False,8619724
False,8623604
False,8627492
False,8631356
False,8635240
False,8639112
False,8642992
False,8646860
False,8650744
False,8654612
False,8658476
False,8662332
False,8666196
False,8670068
False,8673948
False,8677812
False,8681692
False,8685564
False,8689436
False,8693316
False,8697196
False,8701084
False,8704948
False,8708816
False,8712696
False,8716564
False,8720432
False,8724300
False,8728184
False,8732064
False,8735940
False,8739812
False,8743692
False,8747552
False,8751424
False,8755304
False,8759180
False,8763048
False,8766928
False,8770808
False,8774684
False,8778552
False,8782432
False,8786312
False,8790200
False,8794060
False,8797956
False,8801848
False,8805728
False,8809584
False,8813452
False,8817344
False,8821232
False,8825112
False,8828984
False,8832856
False,8836736
False,8840604
False,8844484
False,8848360
False,8852236
False,8856100
False,8859964
False,8863828
False,8867704
False,8871584
False,8875460
False,8879332
False,8883212
False,8887084
False,8890964
False,8894852
False,8898732
False,8902604
False,8906484
False,8910348
False,8914228
False,8918100
False,8921972
False,8925860
False,8929748
False,8933620
False,8937500
False,8941376
False,8945260
False,8949152
False,8953036
False,8956916
False,8960792
False,8964672
False,8968540
False,8972420
False,8976292
False,8980156
False,8984028
False,8987904
False,8991788
False,8995664
False,8999532
False,9003384
False,9007268
True,9011140
False,9015016
False,9018888
False,9022772
False,9026648
False,9030524
False,9034396
False,9038284
False,9042164
False,9046052
False,9049916
False,9053796
False,9057668
False,9061540
False,9065400
False,9069280
False,9073164
False,9077052
False,9080936
False,9084816
False,9088700
False,9092584
False,9096464
False,9100336
False,9104208
False,9108084
False,9111964
False,9115844
False,9119724
False,9123596
False,9127476
False,9131356
False,9135244
False,9139128
False,9143000
False,9146888
False,9150768
False,9154648
False,9158516
False,9162400
False,9166288
False,9170168
False,9174044
False,9177916
False,9181796
False,9185676
False,9189548
False,9193412
False,9197292
False,9201172
False,9205044
False,9208908
False,9212780
False,9216660
False,9220532
False,9224396
False,9228268
False,9232140
False,9236016
False,9239896
False,9243784
False,9247652
False,9251536
False,9255412
False,9259292
False,9263164
False,9267044
False,9270924
False,9274820
False,9278700
False,9282580
False,9286444
False,9290332
False,9294196
False,9298060
False,9301940
False,9305828
False,9309720
False,9313596
False,9317460
False,9321332
False,9325212
False,9329100
False,9332980
False,9336860
False,9340728
False,9344600
False,9348472
False,9352356
False,9356212
False,9360092
False,9363972
False,9367860
False,9371732
False,9375596
False,9379476
False,9383364
False,9387244
False,9391132
False,9395012
False,9398900
False,9402780
False,9406660
False,9410532
False,9414412
False,9418296
False,9422164
False,9426044
False,9429916
False,9433800
False,9437688
False,9441564
False,9445432
False,9449312
False,9453192
False,9457068
False,9460960
False,9464844
False,9468724
False,9472596
False,9476468
False,9480356
False,9484236
False,9488124
False,9492012
False,9495900
False,9499788
False,9503668
False,9507540
False,9511420
False,9515308
False,9519176
False,9523052
False,9526928
False,9530812
False,9534700
False,9538572
False,9542444
False,9546328
False,9550200
False,9554080
False,9557948
False,9561828
False,9565712
False,9569580
False,9573444
False,9577324
False,9581212
False,9585092
False,9588964
False,9592860
False,9596724
False,9600604
False,9604488
False,9608368
False,9612244
False,9616132
False,9620016
False,9623900
False,9627788
False,9631676
False,9635556
False,9639420
False,9643308
False,9647184
False,9651044
False,9654932
False,9658820
False,9662708
False,9666588
False,9670444
False,9674308
False,9678200
False,9682084
False,9685968
False,9689844
False,9693716
False,9697580
False,9701444
False,9705324
False,9709204
False,9713096
False,9716964
False,9720852
False,9724728
False,9728596
False,9732464
True,9736348
False,9740228
False,9744108
False,9747972
False,9751864
False,9755732
False,9759604
False,9763468
False,9767356
False,9771244
False,9775116
False,9778980
False,9782864
False,9786736
False,9790620
False,9794496
False,9798372
False,9802260
False,9806140
False,9810012
False,9813896
False,9817768
False,9821632
False,9825496
False,9829372
False,9833264
False,9837152
False,9841020
False,9844904
False,9848764
False,9852636
False,9856516
False,9860392
False,9864264
False,9868136
False,9872024
False,9875904
False,9879780
False,9883644
False,9887516
False,9891388
False,9895268
False,9899140
False,9903020
False,9906900
False,9910788
False,9914668
False,9918540
False,9922412
False,9926292
False,9930180
False,9934068
False,9937956
False,9941836
False,9945716
False,9949580
False,9953452
False,9957324
False,9961212
False,9965084
False,9968968
False,9972836
False,9976708
False,9980580
False,9984452
False,9988332
False,9992204
False,9996076
False,9999956
False,10003828
False,10007752
False,10011676
False,10015584
False,10019496
False,10023416
False,10027336
False,10031264
False,10035168
False,10039084
False,10042996
False,10046924
False,10050844
False,10054756
False,10058676
False,10062588
False,10066500
False,10070424
False,10074332
False,10078252
False,10082172
False,10086100
False,10090020
False,10093924
False,10097852
False,10101780
False,10105688
False,10109604
False,10113524
False,10117448
False,10121376
False,10125276
False,10129200
False,10133112
False,10137036
False,10140968
False,10144880
False,10148788
False,10152720
False,10156632
False,10160556
False,10164468
False,10168384
False,10172304
False,10176224
False,10180140
False,10184060
False,10187972
False,10191892
False,10195808
False,10199720
False,10203632
False,10207532
False,10211436
False,10215348
False,10219272
False,10223192
False,10227096
False,10231012
False,10234932
False,10238844
False,10242764
False,10246684
False,10250588
False,10254500
False,10258416
False,10262320
False,10266236
False,10270156
False,10274068
False,10277984
False,10281892
False,10285824
False,10289744
False,10293652
False,10297564
False,10301476
False,10305388
False,10309320
False,10313232
False,10317152
False,10321072
False,10324972
False,10328892
False,10332808
False,10336720
False,10340636
False,10344556
False,10348460
False,10352380
False,10356300
False,10360220
False,10364132
False,10368048
False,10371964
False,10375884
False,10379796
False,10383708
False,10387620
False,10391540
False,10395452
False,10399372
False,10403284
False,10407208
False,10411120
False,10415028
False,10418956
False,10422884
False,10426804
False,10430732
False,10434636
False,10438556
False,10442460
False,10446380
False,10450296
False,10454212
False,10458128
False,10462032
True,10465940
False,10469868
False,10473788
False,10477716
False,10481628
False,10485548
False,10489472
False,10493384
False,10497292
False,10501204
False,10505108
False,10509028
False,10512948
False,10516876
False,10520808
False,10524716
False,10528620
False,10532532
False,10536440
False,10540352
False,10544264
False,10548168
False,10552080
False,10555992
False,10559900
False,10563824
False,10567728
False,10571640
False,10575564
False,10579472
False,10583392
False,10587320
False,10591236
False,10595148
False,10599044
False,10602948
False,10606860
False,10610772
False,10614676
False,10618580
False,10622500
False,10626420
False,10630340
False,10634252
False,10638156
False,10642084
False,10645996
False,10649924
False,10653844
False,10657764
False,10661684
False,10665604
False,10669516
False,10673436
False,10677356
False,10681268
False,10685188
False,10689100
False,10693028
False,10696944
False,10700856
False,10704764
False,10708684
False,10712604
False,10716532
False,10720448
False,10724372
False,10728292
False,10732220
False,10736132
False,10740060
False,10743988
False,10747916
False,10751820
False,10755732
False,10759652
False,10763572
False,10767484
False,10771396
False,10775316
False,10779232
False,10783156
False,10787076
False,10790988
False,10794900
False,10798808
False,10802736
False,10806652
False,10810572
False,10814492
False,10818408
False,10822332
False,10826256
False,10830168
False,10834088
False,10837996
False,10841920
False,10845824
False,10849728
False,10853640
False,10857540
False,10861444
False,10865356
False,10869268
False,10873180
False,10877100
False,10881012
False,10884940
False,10888868
False,10892788
False,10896708
False,10900628
False,10904540
False,10908444
False,10912356
False,10916276
False,10920188
False,10924100
False,10928012
False,10931940
False,10935860
False,10939780
False,10943708
False,10947628
False,10951540
False,10955464
False,10959372
False,10963300
False,10967232
False,10971148
False,10975056
False,10978968
False,10982880
False,10986796
False,10990720
False,10994632
False,10998540
False,11002460
False,11006380
False,11010304
False,11014204
False,11018112
False,11022032
False,11025948
False,11029872
False,11033792
False,11037708
False,11041616
False,11045528
False,11049448
False,11053368
False,11057280
False,11061200
False,11065108
False,11069032
False,11072956
False,11076872
False,11080764
False,11084676
False,11088592
False,11092492
False,11096420
False,11100340
False,11104252
False,11108164
False,11112076
False,11115996
False,11119916
False,11123828
False,11127732
False,11131636
False,11135564
False,11139476
False,11143396
False,11147308
False,11151220
False,11155140
False,11159060
False,11162972
False,11166904
False,11170812
False,11174728
False,11178636
False,11182548
False,11186456
False,11190372
False,11194288
True,11198212
False,11202136
False,11206056
False,11209964
False,11213876
False,11217784
False,11221704
False,11225612
False,11229524
False,11233452
False,11237368
False,11241280
False,11245192
False,11249116
False,11253048
False,11256960
False,11260868
False,11264792
False,11268700
False,11272608
False,11276516
False,11280440
False,11284360
False,11288280
False,11292200
False,11296120
False,11300040
False,11303952
False,11307856
False,11311776
False,11315684
False,11319596
False,11323500
False,11327412
False,11331324
False,11335236
False,11339148
False,11343076
False,11346996
False,11350908
False,11354828
False,11358748
False,11362652
False,11366580
False,11370476
False,11374396
False,11378316
False,11382236
False,11386156
False,11390076
False,11393988
False,11397908
False,11401828
False,11405748
False,11409660
False,11413572
False,11417484
False,11421396
False,11425316
False,11429236
False,11433152
False,11437068
False,11440984
False,11444896
False,11448808
False,11452712
False,11456612
False,11460508
False,11464436
False,11468348
False,11472268
False,11476188
False,11480108
False,11484012
False,11487940
False,11491868
False,11495788
False,11499708
False,11503612
False,11507516
False,11511432
False,11515340
False,11519268
False,11523196
False,11527116
False,11531036
False,11534948
False,11538864
False,11542780
False,11546684
False,11550592
False,11554512
False,11558440
False,11562352
False,11566272
False,11570188
False,11574104
False,11578016
False,11581920
False,11585840
False,11589736
False,11593640
False,11597556
False,11601468
False,11605396
False,11609308
False,11613228
False,11617148
False,11621072
False,11624980
False,11628900
False,11632828
False,11636732
False,11640644
False,11644572
False,11648476
False,11652404
False,11656324
False,11660244
False,11664156
False,11668084
False,11672008
False,11675924
False,11679836
False,11683756
False,11687676
False,11691596
False,11695504
False,11699412
False,11703324
False,11707248
False,11711176
False,11715100
False,11719032
False,11722948
False,11726868
False,11730792
False,11734692
False,11738616
False,11742516
False,11746440
False,11750340
False,11754264
False,11758184
False,11762104
False,11766024
False,11769936
False,11773848
False,11777768
False,11781676
False,11785596
False,11789520
False,11793444
False,11797348
False,11801272
False,11805188
False,11809108
False,11813028
False,11816932
False,11820860
False,11824772
False,11828684
False,11832604
False,11836520
False,11840420
False,11844340
False,11848272
False,11852172
False,11856084
False,11860004
False,11863900
False,11867816
False,11871736
False,11875652
False,11879572
False,11883476
False,11887396
False,11891316
False,11895244
False,11899164
False,11903080
False,11906996
False,11910916
False,11914836
False,11918756
False,11922652
True,11926568
False,11930484
False,11934412
False,11938340
False,11942252
False,11946172
False,11950092
False,11954004
False,11957924
False,11961844
False,11965772
False,11969676
False,11973588
False,11977500
False,11981432
False,11985348
False,11989268
False,11993180
False,11997096
False,12001016
False,12004928
False,12008848
False,12012768
False,12016684
False,12020600
False,12024512
False,12028432
False,12032352
False,12036272
False,12040188
False,12044092
False,12047996
False,12051900
False,12055812
False,12059724
False,12063628
False,12067540
False,12071460
False,12075372
False,12079292
False,12083196
False,12087124
False,12091044
False,12094964
False,12098876
False,12102796
False,12106700
False,12110612
False,12114524
False,12118444
False,12122364
False,12126276
False,12130196
False,12134116
False,12138044
False,12141964
False,12145884
False,12149804
False,12153716
False,12157636
False,12161548
False,12165444
False,12169376
False,12173280
False,12177180
False,12181092
False,12185016
False,12188940
False,12192864
False,12196780
False,12200684
False,12204604
False,12208516
False,12212444
False,12216368
False,12220284
False,12224204
False,12228132
False,12232056
False,12235968
False,12239884
False,12243804
False,12247708
False,12251628
False,12255548
False,12259476
False,12263400
False,12267312
False,12271232
False,12275152
False,12279080
False,12282988
False,12286904
False,12290824
False,12294736
False,12298636
False,12302548
False,12306468
False,12310380
False,12314300
False,12318212
False,12322132
False,12326060
False,12329980
False,12333900
False,12337820
False,12341736
False,12345628
False,12349524
False,12353436
False,12357356
False,12361268
False,12365200
False,12369100
False,12373028
False,12376952
False,12380852
False,12384768
False,12388680
False,12392588
False,12396500
False,12400432
False,12404360
False,12408272
False,12412200
False,12416112
False,12420032
False,12423944
False,12427864
False,12431776
False,12435688
False,12439608
False,12443516
False,12447440
False,12451360
False,12455276
False,12459192
False,12463116
False,12467032
False,12470952
False,12474864
False,12478792
False,12482712
False,12486624
False,12490536
False,12494456
False,12498364
False,12502284
False,12506200
False,12510112
False,12514032
False,12517952
False,12521880
False,12525796
False,12529712
False,12533624
False,12537536
False,12541448
False,12545360
False,12549292
False,12552196
False,12557116
False,12561048
False,12564960
False,12568876
False,12572796
False,12576712
False,12580624
False,12584532
False,12588460
False,12592388
False,12596296
False,12600208
False,12604124
False,12608036
False,12611952
False,12615868
False,12619796
False,12623700
False,12627612
False,12631516
False,12635436
False,12639360
False,12643264
False,12647180
False,12651100
True,12655020
False,12658948
False,12662872
False,12666788
False,12670700
False,12674624
False,12678532
False,12682452
False,12686364
False,12690268
False,12694188
False,12698112
False,12702036
False,12705960
False,12709872
False,12713784
False,12717704
False,12721620
False,12725532
False,12729448
False,12733356
False,12737280
False,12741200
False,12745120
False,12749040
False,12752952
False,12756872
False,12760792
False,12764704
False,12768624
False,12772544
False,12776456
False,12780364
False,12784284
False,12788196
False,12792116
False,12796036
False,12799940
False,12803868
False,12807788
False,12811700
False,12815620
False,12819532
False,12823444
False,12827364
False,12831276
False,12835196
False,12839116
False,12843036
False,12846948
False,12850868
False,12854788
False,12858700
False,12862624
False,12866532
False,12870452
False,12874372
False,12878284
False,12882196
False,12886116
False,12890032
False,12893960
False,12897888
False,12901800
False,12905696
False,12909612
False,12913524
False,12917428
False,12921356
False,12925276
False,12929188
False,12933100
False,12937012
False,12940940
False,12944860
False,12948780
False,12952692
False,12956604
False,12960508
False,12964428
False,12968348
False,12972268
False,12976188
False,12980112
False,12984036
False,12987956
False,12991880
False,12995804
False,12999724
False,13003628
False,13007544
False,13011472
False,13015396
False,13019316
False,13023228
False,13027152
False,13031072
False,13034972
False,13038892
False,13042812
False,13046724
False,13050628
False,13054540
False,13058460
False,13062388
False,13066300
False,13070220
False,13074132
False,13078044
False,13081964
False,13085884
False,13089812
False,13093716
False,13097636
False,13101548
False,13105476
False,13109408
False,13113320
False,13117236
False,13121148
False,13125080
False,13129000
False,13132892
False,13136804
False,13140708
False,13144632
False,13148548
False,13152472
False,13156380
False,13160304
False,13164224
False,13168140
False,13172064
False,13175980
False,13179908
False,13183832
False,13187744
False,13191656
False,13195560
False,13199468
False,13203384
False,13207292
False,13211212
False,13215136
False,13219048
False,13222960
False,13226880
False,13230792
False,13234704
False,13238628
False,13242552
False,13246452
False,13250376
False,13254288
False,13258196
False,13262108
False,13266020
False,13269932
False,13273860
False,13277772
False,13281676
False,13285604
False,13289520
False,13293436
False,13297348
False,13301280
False,13305184
False,13309100
False,13313020
False,13316940
False,13320864
False,13324776
False,13328684
False,13332596
False,13336500
False,13340428
False,13344348
False,13348268
False,13352180
False,13356104
False,13360020
False,13363944
False,13367852
False,13371756
False,13375668
True,13379564
False,13383484
False,13387416
False,13391332
False,13395256
False,13399184
False,13403084
False,13407004
False,13410924
False,13414844
False,13418756
False,13422656
False,13426560
False,13430472
False,13434380
False,13438300
False,13442232
False,13446136
False,13450056
False,13453980
False,13457900
False,13461820
False,13465732
False,13469648
False,13473552
False,13477472
False,13481392
False,13485312
False,13489220
False,13493136
False,13497056
False,13500972
False,13504892
False,13508796
False,13512692
False,13516604
False,13520516
False,13524428
False,13528340
False,13532244
False,13536156
False,13540068
False,13543980
False,13547884
False,13551812
False,13555732
False,13559644
False,13563556
False,13567484
False,13571396
False,13575316
False,13579228
False,13583148
False,13587060
False,13590988
False,13594916
False,13598820
False,13602724
False,13606636
False,13610544
False,13614472
False,13618400
False,13622320
False,13626236
False,13630156
False,13634076
False,13637996
False,13641916
False,13645844
False,13649756
False,13653656
False,13657568
False,13661480
False,13665392
False,13669304
False,13673216
False,13677128
False,13681044
False,13684956
False,13688868
False,13692788
False,13696700
False,13700628
False,13704544
False,13708464
False,13712368
False,13716280
False,13720208
False,13724132
False,13728052
False,13731972
False,13735884
False,13739812
False,13743732
False,13747648
False,13751568
False,13755484
False,13759408
False,13763328
False,13767256
False,13771164
False,13775084
False,13779004
False,13782928
False,13786836
False,13790756
False,13794668
False,13798580
False,13801476
False,13806416
False,13810336
False,13814256
False,13818176
False,13822104
False,13826024
False,13829952
False,13833868
False,13837792
False,13841708
False,13845620
False,13849536
False,13853452
False,13857368
False,13861280
False,13865196
False,13869112
False,13873008
False,13876928
False,13880848
False,13884764
False,13888676
False,13892580
False,13896500
False,13900432
False,13904348
False,13908260
False,13912188
False,13916108
False,13920032
False,13923944
False,13927864
False,13931784
False,13935692
False,13939600
False,13943516
False,13947440
False,13951360
False,13955272
False,13959180
False,13963100
False,13967028
False,13970948
False,13974864
False,13978764
False,13982668
False,13986584
False,13990492
False,13994408
False,13998328
False,14002236
False,14006152
False,14010072
False,14013992
False,14017916
False,14021840
False,14025748
False,14029652
False,14033568
False,14037488
False,14041392
False,14045320
False,14049228
False,14053156
False,14057080
False,14061004
False,14064920
False,14068828
False,14072740
False,14076652
False,14080556
False,14084480
False,14088404
False,14092320
False,14096224
True,14100148
False,14104068
False,14107988
False,14111916
False,14115812
False,14119728
False,14123652
False,14127564
False,14131488
False,14135404
False,14139328
False,14143244
False,14147168
False,14151088
False,14154992
False,14158900
False,14162812
False,14166724
False,14170652
False,14174572
False,14178500
False,14182420
False,14186332
False,14190256
False,14194168
False,14198088
False,14202012
False,14205928
False,14209840
False,14213740
False,14217660
False,14221576
False,14225488
False,14229400
False,14233328
False,14237248
False,14241164
False,14245076
False,14248992
False,14252900
False,14256820
False,14260732
False,14264660
False,14268580
False,14272492
False,14276412
False,14280340
False,14284268
False,14288196
False,14292116
False,14296028
False,14299948
False,14303876
False,14307804
False,14311708
False,14315620
False,14319532
False,14323444
False,14327360
False,14331284
False,14335208
False,14339120
False,14343028
False,14346948
False,14350880
False,14354804
False,14358716
False,14362644
False,14366556
False,14370480
False,14374396
False,14378328
False,14382256
False,14386168
False,14390088
False,14394008
False,14397932
False,14401852
False,14405772
False,14409684
False,14413604
False,14417524
False,14421444
False,14425368
False,14429280
False,14433200
False,14437124
False,14441052
False,14444980
False,14448896
False,14452816
False,14456724
False,14460652
False,14464564
False,14468488
False,14472400
False,14476308
False,14480224
False,14484148
False,14488064
False,14491992
False,14495920
False,14499832
False,14503752
False,14507668
False,14511572
False,14515496
False,14519408
False,14523320
False,14527232
False,14531152
False,14535072
False,14539000
False,14542924
False,14546840
False,14550752
False,14554672
False,14558588
False,14562512
False,14566428
False,14570336
False,14574252
False,14578176
False,14582092
False,14586020
False,14589940
False,14593864
False,14597780
False,14601692
False,14605612
False,14609524
False,14613428
False,14617340
False,14621260
False,14625192
False,14629112
False,14633024
False,14636936
False,14640848
False,14644760
False,14648668
False,14652580
False,14656496
False,14660416
False,14664344
False,14668268
False,14672184
False,14676104
False,14680016
False,14683944
False,14687868
False,14691788
False,14695704
False,14699604
False,14703516
False,14707440
False,14711364
False,14715288
False,14719208
False,14723120
False,14727020
False,14730944
False,14734864
False,14738784
False,14742692
False,14746608
False,14750512
False,14754412
False,14758328
False,14762244
False,14766148
False,14770052
False,14773964
False,14777876
False,14781804
False,14785728
False,14789620
False,14793532
False,14797448
False,14801364
False,14805292
False,14809208
False,14813112
True,14817028
False,14820956
False,14824888
False,14828804
False,14832712
False,14836620
False,14840540
False,14844464
False,14848388
False,14852312
False,14856220
False,14860132
False,14864052
False,14867972
False,14871896
False,14875820
False,14879732
False,14883660
False,14887580
False,14891512
False,14895440
False,14899368
False,14903268
False,14907192
False,14911104
False,14915024
False,14918936
False,14922848
False,14926752
False,14930676
False,14934592
False,14938512
False,14942432
False,14946356
False,14950264
False,14954180
False,14958100
False,14962012
False,14965932
False,14969844
False,14973748
False,14977676
False,14981580
False,14985508
False,14989436
False,14993356
False,14997284
False,15001204
False,15005124
False,15009044
False,15012956
False,15016876
False,15020804
False,15024724
False,15028644
False,15032556
False,15036476
False,15040388
False,15044304
False,15048224
False,15052152
False,15056068
False,15059996
False,15063908
False,15067828
False,15071740
False,15075668
False,15079588
False,15083500
False,15087424
False,15091344
False,15095264
False,15099180
False,15103112
False,15107032
False,15110952
False,15114872
False,15118780
False,15122692
False,15126604
False,15130508
False,15134428
False,15138348
False,15142276
False,15146196
False,15150116
False,15154028
False,15157952
False,15161872
False,15165800
False,15169720
False,15173628
False,15177556
False,15181484
False,15185404
False,15189316
False,15193228
False,15197140
False,15201060
False,15204984
False,15208904
False,15212820
False,15216736
False,15220652
False,15224568
False,15228476
False,15232408
False,15236320
False,15240228
False,15244144
False,15248060
False,15251980
False,15255908
False,15259836
False,15263756
False,15267668
False,15271592
False,15275508
False,15279440
False,15283376
False,15287288
False,15291208
False,15295128
False,15299052
False,15302976
False,15306888
False,15310784
False,15314696
False,15318604
False,15322524
False,15326444
False,15330364
False,15334284
False,15338216
False,15342144
False,15346064
False,15349980
False,15353908
False,15357832
False,15361740
False,15365660
False,15369576
False,15373488
False,15377388
False,15381312
False,15385240
False,15389160
False,15393084
False,15397016
False,15400916
False,15404828
False,15408740
False,15412660
False,15416568
False,15420488
False,15424408
False,15428316
False,15432240
False,15436160
False,15440080
False,15444004
False,15447928
False,15451844
False,15455760
False,15459684
False,15463600
False,15467508
False,15471420
False,15475340
False,15479252
False,15483184
False,15487100
False,15491020
False,15494940
False,15498860
False,15502772
False,15506692
False,15510608
False,15514528
False,15518452
False,15522368
True,15526292
False,15530212
False,15534132
False,15538056
False,15541964
False,15545888
False,15549812
False,15553736
False,15557660
False,15561568
False,15565480
False,15569392
False,15573312
False,15577228
False,15581140
False,15585052
False,15588972
False,15592892
False,15596812
False,15600708
False,15604616
False,15608532
False,15612464
False,15616392
False,15620300
False,15624220
False,15628136
False,15632056
False,15635968
False,15639880
False,15643792
False,15647696
False,15651616
False,15655536
False,15659452
False,15663356
False,15667268
False,15671172
False,15675092
False,15679012
False,15682924
False,15686844
False,15690748
False,15694668
False,15698580
False,15702508
False,15706420
False,15710340
False,15714252
False,15718172
False,15722084
False,15726004
False,15729924
False,15733836
False,15737748
False,15741668
False,15745572
False,15749484
False,15753404
False,15757324
False,15761236
False,15765160
False,15769084
False,15773016
False,15776932
False,15780856
False,15784756
False,15788676
False,15792592
False,15796520
False,15800432
False,15804336
False,15808252
False,15812184
False,15816112
False,15820032
False,15823936
False,15827852
False,15831764
False,15835684
False,15839596
False,15843516
False,15847444
False,15851364
False,15855284
False,15859204
False,15863120
False,15867044
False,15870964
False,15874892
False,15878820
False,15882740
False,15886660
False,15890580
False,15894492
False,15898404
False,15902332
False,15906248
False,15910156
False,15914076
False,15917988
False,15921916
False,15925848
False,15929760
False,15933676
False,15937580
False,15941504
False,15945420
False,15949344
False,15953264
False,15957180
False,15961108
False,15965024
False,15968944
False,15972864
False,15976772
False,15980692
False,15984596
False,15988516
False,15992440
False,15996360
False,16000284
False,16004200
False,16008112
False,16012024
False,16015936
False,16019848
False,16023756
False,16027676
False,16031572
False,16035484
False,16039404
False,16043328
False,16047240
False,16051160
False,16055060
False,16058972
False,16062896
False,16066800
False,16070712
False,16074616
False,16078524
False,16082448
False,16086368
False,16090280
False,16094184
False,16098092
False,16102024
False,16105944
False,16109852
False,16113764
False,16117676
False,16121588
False,16125512
False,16129428
False,16133352
False,16137272
False,16141192
False,16145112
False,16149032
False,16152936
False,16156852
False,16160760
False,16164676
False,16168592
False,16172512
False,16176440
False,16180348
False,16184260
False,16188172
False,16192084
False,16196012
False,16199924
False,16203828
False,16207736
False,16211652
False,16215576
False,16219500
False,16223416
False,16227324
False,16231244
False,16235152
True,16239076
False,16242996
False,16246920
False,16250836
False,16254756
False,16258676
False,16262580
False,16266500
False,16270408
False,16274320
False,16278240
False,16282168
False,16286084
False,16290004
False,16293924
False,16297844
False,16301760
False,16305652
False,16309564
False,16313496
False,16317416
False,16321336
False,16325244
False,16329164
False,16333084
False,16336996
False,16340912
False,16344824
False,16348744
False,16352656
False,16356576
False,16360500
False,16364408
False,16368324
False,16372228
False,16376148
False,16380068
False,16383972
False,16387892
False,16391804
False,16395716
False,16399636
False,16403548
False,16407468
False,16411396
False,16415316
False,16419228
False,16423148
False,16427060
False,16430964
False,16434876
False,16438796
False,16442716
False,16446628
False,16450532
False,16454444
False,16458364
False,16462292
False,16466212
False,16470120
False,16474036
False,16477956
False,16481884
False,16485792
False,16489700
False,16493612
False,16497524
False,16501444
False,16505356
False,16509272
False,16513188
False,16517112
False,16521024
False,16524952
False,16528864
False,16532764
False,16536684
False,16540592
False,16544508
False,16548428
False,16552348
False,16556268
False,16560188
False,16564100
False,16568016
False,16571940
False,16575864
False,16579780
False,16583700
False,16587596
False,16591516
False,16595420
False,16599352
False,16603280
False,16607196
False,16611120
False,16615036
False,16618968
False,16622884
False,16626800
False,16630700
False,16634612
False,16638544

Libraries

library LTL
use library Utils

output Bool historically <Stream Bool p> = p[now] && historically p [-1|'True]

output Bool once <Stream Bool p> = p[now] || once p[-1|'False]

output Bool since <Stream Bool p> <Stream Bool q> = q[now] || (p[now] && p `since` q [-1|'False])

output Bool yesterday <Stream Bool p> = p[-1|'False]
output Bool zesterday <Stream Bool p> = p[-1|'True]

output Int nViolations <Stream Bool p> = nViolations p[-1|0] + if p[now] then 1 else 0

output Double percentViolations <Stream Bool p> = nViolations p [now] `intdivide` (instantN [now])
library MTL

output Bool until <(Int, Int) (a,b)> <Stream Bool phi> <Stream Bool psi> = until' a
  where
  until' a
    | a == b = psi[b| 'False]
    | otherwise = psi[a| 'False] || (phi[a| 'True] && until' (a+1))

output Bool eventually <(Int, Int) (a,b)> <Stream Bool phi> = foldl (||) 'False [phi[i|'False] | i <- [a..b]]

output Bool historically <Int k> <Stream Bool p> = consecutiveTrue p [now] > 'k

output Int consecutiveTrue <Stream Bool p> = if not (p[now]then 0 else consecutiveTrue p[-1|0] + 1
library QMTL

use library Utils

output (Eq a, Fractional a, Streamable a) => a meanLast <Int k> <Stream a str> = let
  denom = '(fromIntegral.min k) (instantN[now])
  numerator = foldl (+) 0 [str [i|0] | i <- [(1-k)..0]]
  in numerator / denom
library Pinescript
use library Utils

output (Num a, Eq a, Streamable a) => a sumLast <Stream a str> <Int n> = sumLast str n [-1|0] + str[now] - str[-n|0]

output (Fractional a, Eq a, Streamable a) => a sma <Stream a str> <Int n> = let
  denominator = '(fromIntegral.min n) (instantN[now])
  in sumLast str n [now] / denominator

output (Fractional a, Eq a, Streamable a) => a wma <Stream a str> <Int n> = let
  slots = '(min n) (instantN[now])
  sumFirstN = 'fromIntegral (2'div (slots * (slots + 1)) 2)
  in foldl (+) 0 [str [-i|0] * '(fromIntegral (n-i)) | i<-[0..n-1]] / sumFirstN

output (Fractional a, Eq a, Streamable a) => a ema <Stream a str> <Int n> = let
  emaprev = ema str n [-1|0]
  multiplier = '((2 P./).fromIntegral.min n) (instantN[now])
  in (str[now] - emaprev) * multiplier + emaprev

output (Fractional a, Eq a, Streamable a) => a macd <Stream a str> = ema str 12[now] - ema str 26 [now]

output (Fractional a, Eq a, Streamable a) => a macd_signal <Stream a str> = ema (macd str) 9 [now]

output (Num a, Ord a, Eq a, Streamable a) => Bool crossover <Stream a str0> <Stream a str1> = str1[now] <= str0[now] && str0[-1|0] <= str1 [-1|0]