4 Commits

Author SHA1 Message Date
Xavier Olive
070dc80bf4 include pyd files to wheel 2023-08-13 10:57:20 +02:00
Xavier Olive
8d9a8df9d9 minor fix 2023-07-18 13:47:06 +00:00
Xavier Olive
458a78c30b add the decoding of the gps status indicator 2023-07-18 13:42:16 +00:00
Junzi Sun
57aa7a7d9c update test 2023-07-18 13:41:54 +00:00
4 changed files with 9 additions and 5 deletions

3
pyModeS/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
decoder/flarm/decode.c
extra/demod2400/core.c
c_common.c

View File

@@ -1,5 +1,4 @@
from typing import TypedDict
from typing_extensions import Annotated
from .decode import flarm as flarm_decode
@@ -11,8 +10,8 @@ class DecodedMessage(TypedDict):
icao24: str
latitude: float
longitude: float
altitude: Annotated[int, "m"]
vertical_speed: Annotated[float, "m/s"]
altitude: int
vertical_speed: float
groundspeed: int
track: int
type: str

View File

@@ -142,5 +142,6 @@ def flarm(long timestamp, str msg, float refLat, float refLon, **kwargs):
isIcao24=magic==0x10,
noTrack=noTrack,
stealth=stealth,
gps=gps,
**kwargs
)

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyModeS"
version = "2.16"
version = "2.17"
description = "Python Mode-S and ADS-B Decoder"
authors = ["Junzi Sun <j.sun-1@tudelft.nl>"]
license = "GNU GPL v3"
@@ -22,7 +22,8 @@ include = [
"*.pxd",
"*.pyi",
"py.typed",
{ path = "pyModeS/**/*.so", format = "wheel" }
{ path = "pyModeS/**/*.so", format = "wheel" },
{ path = "pyModeS/**/*.pyd", format = "wheel" }
]
[tool.poetry.build]