Compare commits
4 Commits
quantities
...
v2.17
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
070dc80bf4 | ||
|
|
8d9a8df9d9 | ||
|
|
458a78c30b | ||
|
|
57aa7a7d9c |
3
pyModeS/.gitignore
vendored
Normal file
3
pyModeS/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
decoder/flarm/decode.c
|
||||||
|
extra/demod2400/core.c
|
||||||
|
c_common.c
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
from typing import TypedDict
|
from typing import TypedDict
|
||||||
from typing_extensions import Annotated
|
|
||||||
|
|
||||||
from .decode import flarm as flarm_decode
|
from .decode import flarm as flarm_decode
|
||||||
|
|
||||||
@@ -11,8 +10,8 @@ class DecodedMessage(TypedDict):
|
|||||||
icao24: str
|
icao24: str
|
||||||
latitude: float
|
latitude: float
|
||||||
longitude: float
|
longitude: float
|
||||||
altitude: Annotated[int, "m"]
|
altitude: int
|
||||||
vertical_speed: Annotated[float, "m/s"]
|
vertical_speed: float
|
||||||
groundspeed: int
|
groundspeed: int
|
||||||
track: int
|
track: int
|
||||||
type: str
|
type: str
|
||||||
|
|||||||
@@ -142,5 +142,6 @@ def flarm(long timestamp, str msg, float refLat, float refLon, **kwargs):
|
|||||||
isIcao24=magic==0x10,
|
isIcao24=magic==0x10,
|
||||||
noTrack=noTrack,
|
noTrack=noTrack,
|
||||||
stealth=stealth,
|
stealth=stealth,
|
||||||
|
gps=gps,
|
||||||
**kwargs
|
**kwargs
|
||||||
)
|
)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "pyModeS"
|
name = "pyModeS"
|
||||||
version = "2.16"
|
version = "2.17"
|
||||||
description = "Python Mode-S and ADS-B Decoder"
|
description = "Python Mode-S and ADS-B Decoder"
|
||||||
authors = ["Junzi Sun <j.sun-1@tudelft.nl>"]
|
authors = ["Junzi Sun <j.sun-1@tudelft.nl>"]
|
||||||
license = "GNU GPL v3"
|
license = "GNU GPL v3"
|
||||||
@@ -22,7 +22,8 @@ include = [
|
|||||||
"*.pxd",
|
"*.pxd",
|
||||||
"*.pyi",
|
"*.pyi",
|
||||||
"py.typed",
|
"py.typed",
|
||||||
{ path = "pyModeS/**/*.so", format = "wheel" }
|
{ path = "pyModeS/**/*.so", format = "wheel" },
|
||||||
|
{ path = "pyModeS/**/*.pyd", format = "wheel" }
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.poetry.build]
|
[tool.poetry.build]
|
||||||
|
|||||||
Reference in New Issue
Block a user