-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenairParser-ExternalCallSample.py
84 lines (70 loc) · 4.03 KB
/
OpenairParser-ExternalCallSample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python3
aixmParserLocalSrc = "../../aixmParser/src/"
try:
import bpaTools
except ImportError:
### Include local modules/librairies ##
import os, sys
module_dir = os.path.dirname(__file__)
sys.path.append(os.path.join(module_dir, aixmParserLocalSrc))
import bpaTools
import OpenairReader
if __name__ == '__main__':
### Context applicatif
callingContext = "Paragliding-OpenAir-French-Files" #Your app calling context
linkContext = "http://pascal.bazile.free.fr/paraglidingFolder/divers/GPS/OpenAir-Format/"
appName = "openairParser" #or your app name
appPath = bpaTools.getFilePath(__file__) #or your app path
appVersion = bpaTools.getVersionFile() #or your app version
appId = appName + " v" + appVersion
outPath = appPath + "../out/"
logFile = outPath + "_" + appName + ".log"
bpaTools.createFolder(outPath) #Init out folder
oLog:bpaTools.Logger = bpaTools.Logger(appId,logFile,debugLevel=1) #Init logger
oLog.resetFile() #Clean du log
#### Source test file ####
sSrcPath:str = "../tst/"
#sSrcFile = sSrcPath + "20191214_FFVP_BirdsProtect.txt"
#sSrcFile = sSrcPath + "20200704_FFVP_ParcsNat_BPa.txt"
#sSrcFile = sSrcPath + "20191213_FFVP_sample_AIRSPACE_FRANCE_TXT_1911.txt"
#sSrcFile = sSrcPath + "20191213_FFVP_AIRSPACE_FRANCE_TXT_1911.txt"
#sSrcFile = sSrcPath + "20191214_BPa_FR-BPa4XCsoar.txt"
#sSrcFile = sSrcPath + "20190401_WPa_ParcCevennes.txt"
#sSrcFile = sSrcPath + "20200704_RegisF_ParcsNat_ChampagneBourgogne.txt"
#sSrcFile = sSrcPath + "20200805_PatrickB_ParcsNat_ChampagneBourgogne-BPa.txt"
#sSrcFile = sSrcPath + "20200810_BPa_ParcsNat_ChampagneBourgogne.txt"
#sSrcFile = sSrcPath + "20200729_SergeR_ParcNat_BaieDeSomme.txt"
#sSrcFile = sSrcPath + "20200729_SergeR_ParcNat_Hourtin.txt"
#sSrcFile = sSrcPath + "20201108_BPa_ZonesComplementaires.txt"
#sSrcFile = sSrcPath + "20200510_BPa_FR-ZSM_Protection-des-rapaces.txt"
#sSrcFile = sSrcPath + "20190510_FFVP_ParcBauges.txt"
#sSrcFile = sSrcPath + "20191129_FFVL_ParcPassy.txt"
#sSrcFile = sSrcPath + "20200120_FFVL_ParcAnnecyMaraisBoutDuLac.txt"
#sSrcFile = sSrcPath + "20201204_FFVL_ZonesComplementaires.txt"
#sSrcFile = sSrcPath + "20210101_sensitivearea_openair_BPa-ANSI.txt"
#sSrcFile = sSrcPath + "20210104_FFVL_ParcBauges_BPa.txt"
#sSrcFile = sSrcPath + "20210114_LTA-French1-HR_BPa-org.txt"
#sSrcFile = sSrcPath + "20210209_FFVL_ProtocolesParticuliers_BPa.txt"
#sSrcFile = sSrcPath + "20230331_AerodromeGapTallard.txt"
#sSrcFile = sSrcPath + "20230914_airspaces-freeflight-gpsWithoutTopo-geoFrenchAll.txt"
#sSrcFile = sSrcPath + "20230914_airspaces-freeflight-gpsWithoutTopo-geoFrenchAll-warning.txt"
#sSrcPath:str = "D:/_Users_/BPascal/_4_Src/GitHub/poaff/input/BPa/ZSM/makeOpenair/"
#sSrcFile = sSrcPath + "20220409_ZSM_ValdIsere-GorgesDaille.txt"
#sSrcPath:str = "D:/_Users_/BPascal/_4_Src/GitHub/poaff/input/BPa/"
#sSrcFile = sSrcPath + "20230324_Octeville_RevueDesZones_SylvainMthn-BPa.txt"
#sSrcFile = sSrcPath + "20230118_AIRSPACES_REUNION_DEF.txt"
#sSrcPath:str = "D:/_Users_/BPascal/_4_Src/GitHub/poaff/input/LPO_Biodiv/Biodiv-sports-api/"
#sSrcFile = sSrcPath + "20240101_biodiv-sports-fr_janv_Zsm-Active.txt"
#sSrcFile = sSrcPath + "20240101_biodiv-sports-fr_janv_Parc.txt"
#sSrcPath:str = "D:\_Users_\BPascal\_4_Src\GitHub\poaff\input\SpotAir/"
#sSrcFile = sSrcPath + "20231229b_zsm-export_ANSII.txt"
sSrcPath:str = "D:\_Users_\BPascal\_4_Src\GitHub\poaff\input\STAC/"
sSrcFile = sSrcPath + "20240229_ZSM-coeur-france.txt"
#Execution des traitements
oParser = OpenairReader.OpenairReader(oLog)
oParser.parseFile(sSrcFile)
oParser.oAixm.parse2Aixm4_5(outPath, sSrcFile)
#Clotures
print()
oLog.Report()
oLog.closeFile()