Skip to content

Commit

Permalink
Add el-cheapo traffic board for EDDM only
Browse files Browse the repository at this point in the history
  • Loading branch information
a3li committed Nov 10, 2023
1 parent 898af21 commit 0f3a2bf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions atciss/app/views/basic_ad.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from typing import Optional

from pydantic import BaseModel


class BasicAD(BaseModel):
icao: str
iata: Optional[str]
name: str
city: str
state: str
country: str
elevation: int
lat: float
lon: float
tz: str

0 comments on commit 0f3a2bf

Please sign in to comment.