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_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
|
||||
|
||||
@@ -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
|
||||
)
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user