Added apt.dat to groundnet / twr/ threshold / ils.xml files converter, made STG object elevation recalculator accept whole directory structures as input

This commit is contained in:
TheFGFSEagle
2022-08-12 14:37:53 +02:00
parent 10ed7fd8d2
commit 7a71c4654c
14 changed files with 611 additions and 19 deletions

12
utils/unit_convert.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import math
def m2ft(m):
return m * 3.2808399
def ft2m(ft):
return ft / 3.2808399