update benchmark
This commit is contained in:
parent
3dae0438bf
commit
9bb87b00be
@ -16,8 +16,13 @@ def native():
|
|||||||
from pyModeS.decoder import adsb
|
from pyModeS.decoder import adsb
|
||||||
from pyModeS.decoder import common
|
from pyModeS.decoder import common
|
||||||
|
|
||||||
msg0 = None
|
# airborne position
|
||||||
msg1 = None
|
m_air_0 = None
|
||||||
|
m_air_1 = None
|
||||||
|
|
||||||
|
# surface position
|
||||||
|
m_surf_0 = None
|
||||||
|
m_surf_1 = None
|
||||||
|
|
||||||
for i, r in tqdm(df_adsb.iterrows(), total=total):
|
for i, r in tqdm(df_adsb.iterrows(), total=total):
|
||||||
ts = r.ts
|
ts = r.ts
|
||||||
@ -33,19 +38,31 @@ def native():
|
|||||||
callsign = adsb.callsign(m)
|
callsign = adsb.callsign(m)
|
||||||
if tc == 19:
|
if tc == 19:
|
||||||
velocity = adsb.velocity(m)
|
velocity = adsb.velocity(m)
|
||||||
if 5 <= tc <= 18:
|
|
||||||
|
if 5 <= tc <= 8:
|
||||||
if adsb.oe_flag(m):
|
if adsb.oe_flag(m):
|
||||||
msg1 = m
|
m_surf_1 = m
|
||||||
t1 = ts
|
t1 = ts
|
||||||
else:
|
else:
|
||||||
msg0 = m
|
m_surf_0 = m
|
||||||
t0 = ts
|
t0 = ts
|
||||||
|
|
||||||
if msg0 and msg1:
|
if m_surf_0 and m_surf_1:
|
||||||
try:
|
position = adsb.surface_position(
|
||||||
position = adsb.position(msg0, msg1, t0, t1)
|
m_surf_0, m_surf_1, t0, t1, 50.01, 4.35
|
||||||
except:
|
)
|
||||||
continue
|
altitude = adsb.altitude(m)
|
||||||
|
|
||||||
|
if 9 <= tc <= 18:
|
||||||
|
if adsb.oe_flag(m):
|
||||||
|
m_air_1 = m
|
||||||
|
t1 = ts
|
||||||
|
else:
|
||||||
|
m_air_0 = m
|
||||||
|
t0 = ts
|
||||||
|
|
||||||
|
if m_air_0 and m_air_1:
|
||||||
|
position = adsb.position(m_air_0, m_air_1, t0, t1)
|
||||||
altitude = adsb.altitude(m)
|
altitude = adsb.altitude(m)
|
||||||
|
|
||||||
|
|
||||||
@ -54,8 +71,13 @@ def cython():
|
|||||||
from pyModeS.c_decoder import adsb
|
from pyModeS.c_decoder import adsb
|
||||||
from pyModeS.c_decoder import common
|
from pyModeS.c_decoder import common
|
||||||
|
|
||||||
msg0 = None
|
# airborne position
|
||||||
msg1 = None
|
m_air_0 = None
|
||||||
|
m_air_1 = None
|
||||||
|
|
||||||
|
# surface position
|
||||||
|
m_surf_0 = None
|
||||||
|
m_surf_1 = None
|
||||||
|
|
||||||
for i, r in tqdm(df_adsb.iterrows(), total=total):
|
for i, r in tqdm(df_adsb.iterrows(), total=total):
|
||||||
ts = r.ts
|
ts = r.ts
|
||||||
@ -71,19 +93,31 @@ def cython():
|
|||||||
callsign = adsb.callsign(m)
|
callsign = adsb.callsign(m)
|
||||||
if tc == 19:
|
if tc == 19:
|
||||||
velocity = adsb.velocity(m)
|
velocity = adsb.velocity(m)
|
||||||
if 5 <= tc <= 18:
|
|
||||||
|
if 5 <= tc <= 8:
|
||||||
if adsb.oe_flag(m):
|
if adsb.oe_flag(m):
|
||||||
msg1 = m
|
m_surf_1 = m
|
||||||
t1 = ts
|
t1 = ts
|
||||||
else:
|
else:
|
||||||
msg0 = m
|
m_surf_0 = m
|
||||||
t0 = ts
|
t0 = ts
|
||||||
|
|
||||||
if msg0 and msg1:
|
if m_surf_0 and m_surf_1:
|
||||||
try:
|
position = adsb.surface_position(
|
||||||
position = adsb.position(msg0, msg1, t0, t1)
|
m_surf_0, m_surf_1, t0, t1, 50.01, 4.35
|
||||||
except:
|
)
|
||||||
continue
|
altitude = adsb.altitude(m)
|
||||||
|
|
||||||
|
if 9 <= tc <= 18:
|
||||||
|
if adsb.oe_flag(m):
|
||||||
|
m_air_1 = m
|
||||||
|
t1 = ts
|
||||||
|
else:
|
||||||
|
m_air_0 = m
|
||||||
|
t0 = ts
|
||||||
|
|
||||||
|
if m_air_0 and m_air_1:
|
||||||
|
position = adsb.position(m_air_0, m_air_1, t0, t1)
|
||||||
altitude = adsb.altitude(m)
|
altitude = adsb.altitude(m)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user